/*
 * Toastr - Custom modern style
 */
.toast-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}
.toast-message {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.toast-message a,
.toast-message label {
    color: #fff;
}
.toast-message a:hover {
    color: #ddd;
    text-decoration: none;
}
.toast-close-button {
    position: relative;
    inset-inline-end: -0.3em;
    top: -0.3em;
    float: right;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    opacity: 0.7;
    line-height: 1;
    transition: opacity 0.2s;
}
.toast-close-button:focus,
.toast-close-button:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
}
.rtl .toast-close-button {
    inset-inline-start: -0.3em;
    float: left;
    inset-inline-end: 0.3em;
}
button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
}
.toast-top-center {
    top: 0;
    inset-inline-end: 0;
    width: 100%;
}
.toast-bottom-center {
    bottom: 0;
    inset-inline-end: 0;
    width: 100%;
}
.toast-top-full-width {
    top: 0;
    inset-inline-end: 0;
    width: 100%;
}
.toast-bottom-full-width {
    bottom: 0;
    inset-inline-end: 0;
    width: 100%;
}
.toast-top-left {
    top: 16px;
    inset-inline-start: 16px;
}
.toast-top-right {
    top: 16px;
    inset-inline-end: 16px;
}
.toast-bottom-right {
    inset-inline-end: 16px;
    bottom: 16px;
}
.toast-bottom-left {
    bottom: 16px;
    inset-inline-start: 16px;
}
#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}
#toast-container * {
    box-sizing: border-box;
}
#toast-container > div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 8px;
    padding: 14px 16px 14px 48px;
    width: 340px;
    border-radius: 10px;
    background-position: 14px center;
    background-repeat: no-repeat;
    background-size: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.08);
    color: #fff;
    opacity: 1;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease;
}
#toast-container > div.rtl {
    direction: rtl;
    padding: 14px 48px 14px 16px;
    background-position: right 14px center;
}
#toast-container > div:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.12);
    opacity: 1;
    cursor: pointer;
}
#toast-container > .toast-info {
    background-color: #3b82f6 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='16' x2='12' y2='12'/%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'/%3E%3C/svg%3E") !important;
}
#toast-container > .toast-error {
    background-color: #ef4444 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='15' y1='9' x2='9' y2='15'/%3E%3Cline x1='9' y1='9' x2='15' y2='15'/%3E%3C/svg%3E") !important;
}
#toast-container > .toast-success {
    background-color: #10b981 !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") !important;
}
#toast-container > .toast-warning {
    background-color: #f59e0b !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10.29 3.86L1.82 18a2 2 0 0 0 1.71 3h16.94a2 2 0 0 0 1.71-3L13.71 3.86a2 2 0 0 0-3.42 0z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E") !important;
}
#toast-container.toast-bottom-center > div,
#toast-container.toast-top-center > div {
    width: 340px;
    margin-inline-start: auto;
    margin-inline-end: auto;
}
#toast-container.toast-bottom-full-width > div,
#toast-container.toast-top-full-width > div {
    width: 96%;
    margin-inline-start: auto;
    margin-inline-end: auto;
}
.toast {
    background-color: #333;
}
.toast-success {
    background-color: #10b981;
}
.toast-error {
    background-color: #ef4444;
}
.toast-info {
    background-color: #3b82f6;
}
.toast-warning {
    background-color: #f59e0b;
}
.toast-progress {
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 0 0 10px 10px;
}
@media all and (max-width: 480px) {
    #toast-container > div {
        padding: 12px 14px 12px 44px;
        width: calc(100vw - 32px);
    }
    #toast-container > div.rtl {
        padding: 12px 44px 12px 14px;
    }
    #toast-container .toast-close-button {
        inset-inline-end: -0.2em;
        top: -0.2em;
    }
    #toast-container .rtl .toast-close-button {
        inset-inline-start: -0.2em;
        inset-inline-end: 0.2em;
    }
}
