.toast-warning {
    background-color: #FFEFDA !important;
    font-family: Open Sans;
    color: #333333 !important;
    font-weight: 400 !important;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;
    line-height: 20px;
    display: flex;
    border: 1px solid #FFA500;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    width: fit-content;
    height: 64px;
    padding: 20px;
    box-sizing: border-box;
}

    .toast-warning .toast-message {
        padding-left: 0 !important;
    }

button.toast-close-button {
    display: none !important;
}


#toast-container .toast-warning #toastmessage {
    display: inline-block;
    word-break: break-word;
    white-space: normal;
}

.toast-warning .toast-icon, toast toast-warning {
    display: flex !important;
}

div#toast-container > div.toast-warning {
    background-image: url("/assets/img/faces/warning.png") !important;
    background-position: 15px center !important;
    background-size: 24px 24px !important;
}

#toast-container .toast-warning .toast-message {
    display: flex !important;
}

.toast-error {
    background-color: #FFE5E5 !important;
    font-family: Open Sans;
    color: #333333 !important;
    font-weight: 400 !important;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0px;
    line-height: 20px;
    display: flex;
    border: 1px solid #EB5757;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    width: fit-content;
    width: 254px;
    height: 64px;
    padding: 20px;
    box-sizing: border-box;
}

    .toast-error .toast-message {
        padding-left: 0 !important;
    }

#toast-container .toast-error #toastmessage {
    display: inline-block !important;
    word-break: break-word;
    white-space: normal;
}

.toast-error .toast-icon {
    display: flex !important;
}

div#toast-container > div.toast-error {
    background-image: url("/assets/img/faces/error.png") !important;
    background-position: 15px center !important;
    background-size: 24px 24px !important;
}

#toast-container .toast-error .toast-message {
    display: flex !important;
}

.toast-success {
    width: 271px;
    height: 64px;
    padding: 20px;
    gap: 10px;
    border-radius: 5px;
    border: 1px solid #8CD024;
    background: #DFF0D0;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    font-family: Open Sans !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px; 
    letter-spacing: 0px;
    color: #333333 !important;
}
div#toast-container > div.toast-success {
    background-image: url("/assets/img/faces/Success.png") !important;
    background-position: 15px center !important;
    background-size: 24px 24px !important;
}

.toast-success .toast-message {
    padding-left: 0 !important;
}

.toast-success .toast-message {
    display: inline-block;
    white-space: normal;
    word-break: break-word;
    padding-left: 0;
}

.toast-success .toast-icon {
    display: flex !important;
}

#toast-container.toast-top-center > div {
    width: fit-content;
    max-width: 90vw;
    padding: 16px 16px 16px 48px;
    height: auto;
    display: flex;
    align-items: center;
}

.toast-top-center {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
}
#toast-container > div.toast-success,
#toast-container > div.toast-error,
#toast-container > div.toast-warning,
#toast-container > div.toast-info,
#toast-container > div.toast,
#toast-container > div.toast:hover {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important; 
}
@media screen and (max-width: 768px) {
    #toast-container.toast-top-center > div {
        width: 50%;
        padding: 14px 14px 14px 42px;
        font-size: 13px;
        background-size: 18px 18px;
        background-position: 12px center;
    }
}
@media screen and (max-width: 320px) {
    #toast-container.toast-top-center > div {
        width: 70vw;
        padding: 10px 10px 10px 38px;
        font-size: 12px;
        background-size: 16px 16px;
        background-position: 10px center;
        text-align:center;
    }
}
