﻿:root {
    --toastifyError: var(--bs-danger, #DC3545);
    --toastifyErrorDark: #80080c;
    --toastifyWarning: var(--bs-warning, #FFFFFF);
    --toastifyWarningDark: #af8c0e;
    --toastifySuccess: var(--bs-success, #28A745);
    --toastifySuccessDark: #279063;
    --toastifyPrimary: var(--bs-primary, #0061F2);
    --toastifyPrimaryDark: var(--bs-secondary, #8039da);
}

.toastifyTitle {
    color: white !important;
    margin: 0 !important;
    font-size: 18px;
}

.toastifyMessage {
    color: white !important;
    margin: 5px 0 0 0 !important;
    font-size: 15px;
}

.toastifyBorderError {
    border: 1px solid var(--toastifyError) !important;
}

.toastifyBorderWarning {
    border: 1px solid var(--toastifyWarning) !important;
}

.toastifyBorderSuccess {
    border: 1px solid var(--toastifySuccess) !important;
}

.toastifyBorderPrimary {
    border: 1px solid var(--toastifyPrimary) !important;
}

.toast-close {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 1;
    padding: 2px 0 2px 2px;
    width: 30px;
    height: 30px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 0px 0px 0px 15px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
    font-size: 30px;
}

.toastifyRefreshBar {
    width: 0;
    height: 5px;
    background: white;
    position: absolute;
    bottom: 0;
    left: 0;
}