.toasts {
    display: block;
    position: fixed;
    pointer-events: none !important;
    letter-spacing: normal;
    z-index: 9000 !important;
    max-width: 40vw;
    margin: 0;
    padding: 0;
}

.toasts.top-right {
    top: 20px;
    right: 38px;
}

.toast-alert {
    display: block;
    position: relative;
    pointer-events: none !important;
    letter-spacing: normal;
    z-index: 9999 !important;
    width: auto !important;
    min-width: 250px;
    margin: 0 0 5px;
}

.alert-toasts {
    display: block;
    position: absolute;
    width: 250px;
    pointer-events: none !important;
    letter-spacing: normal;
    z-index: 9999 !important;
    width: auto !important;
    max-width: 40vw;
    margin: 0;
    padding: 0;
}

.toast-wrapper {
    font-family: arial, sans-serif;
    line-height: 17px;
    position: relative;
    pointer-events: all !important;
    width: 100%;
    padding: 10px;
    margin: 0 0 5px;
    border-radius: 4px;
    color: rgb(44, 44, 44) !important;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.toast-wrapper .close-toast-wrapper {
    font-size: 20px;
    top: 0px;
    right: 2px;
    position: absolute;
    cursor: pointer;
}

.toast-wrapper::before {
    color: rgb(255, 255, 255);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.7rem;
    margin-right: 0.3rem;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    font-family: 'Font Awesome 6 Free';
}

.message-toast {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
}

.message-toast .title {
    font-weight: 600;
    padding-bottom: 0.2rem;
    word-break: break-word;
}

.message-toast .description {
    word-break: break-word;
}

.custom-error-toast {
    display: flex;
    align-items: center;
    background-color: rgb(252, 237, 234) !important;
    border: 1px solid rgb(245, 202, 193) !important;
}

.toast-loader {
    display: block;
    position: absolute;
    top: -2px;
    height: 5px;
    left: 0;
    border-radius: 5px;
    width: 0;
}

.toast-loaded {
    width: 100%;
}

.custom-error-toast::before {
    content: '\F071';

    background-color: rgb(232, 78, 44) !important;
}

.custom-error-toast .toast-loader {
    background-color: rgb(232, 78, 44) !important;
}


.custom-success-toast {
    display: flex;
    align-items: center;
    background-color: rgb(235, 247, 238) !important;
    border: 1px solid rgb(190, 229, 200) !important;
}

.custom-success-toast::before {
    content: '\F058';

    background-color: rgb(57, 181, 91) !important;
}

.custom-success-toast .toast-loader {
    background-color: rgb(57, 181, 91) !important;
}

.custom-info-toast {
    display: flex;
    align-items: center;
    background-color: rgb(229, 239, 250) !important;
    border: 1px solid rgb(194, 218, 244) !important;
}

.custom-info-toast::before {
    content: '\F05a';

    background-color: rgb(0, 104, 220) !important;
}

.custom-info-toast .toast-loader {
    background-color: rgb(0, 104, 220) !important;
}

.custom-warning-toast {
    display: flex;
    align-items: center;
    background-color: rgb(254, 247, 234) !important;
    border: 1px solid rgb(250, 227, 189) !important;
}

.custom-warning-toast::before {
    content: '\F071';

    background-color: rgb(239, 148, 0) !important;
}

.custom-warning-toast .toast-loader {
    background-color: rgb(239, 148, 0) !important;
}
