/*
 * Note that this is toastr v2.1.3, the "latest" version in url has no more maintenance,
 * please go to https://cdnjs.com/libraries/toastr.js and pick a certain version you want to use,
 * make sure you copy the url from the website since the url may change between versions.
 * */
 .toast-title {
    font-weight: 700
}

.toast-message {
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

.toast-message a,.toast-message label {
    color: #FFF
}

.toast-message a:hover {
    color: #CCC;
    text-decoration: none
}

.toast-close-button {
    position: relative;
    right: -.3em;
    top: -.3em;
    float: right;
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFF;
    -webkit-text-shadow: 0 .063rem 0 #fff;
    text-shadow: 0 .063rem 0 #fff;
    opacity: .8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
    line-height: 1
}

.toast-close-button:focus,.toast-close-button:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .4;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
    filter: alpha(opacity=40)
}

.rtl .toast-close-button {
    left: -.3em;
    float: left;
    right: .3em
}

button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none
}

.toast-top-center {
    top: 0;
    right: 0;
    width: 100%
}

.toast-bottom-center {
    bottom: 0;
    right: 0;
    width: 100%
}

.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%
}

.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%
}

.toast-top-left {
    top: .75rem;
    left: .75rem
}

.toast-top-right {
    top: .75rem;
    right: .75rem
}

.toast-bottom-right {
    right: .75rem;
    bottom: .75rem
}

.toast-bottom-left {
    bottom: .75rem;
    left: .75rem
}

#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
    padding: 1.25rem 0;
    display: flex;
    flex-direction: column-reverse;
}

#toast-container * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

#toast-container>div {
    box-shadow: 0px 0px 2rem #00000075;
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 .375rem;
    padding: 1rem;
    width: 18.75rem;
    -moz-border-radius: .375rem;
    -webkit-border-radius: .375rem;
    border-radius: 1rem;
    color: #000;
    cursor: pointer;
    padding-right: 1.125rem;
}

#toast-container>div.rtl {
    direction: rtl;
    padding: .938rem .938rem .938rem .938rem;
    background-position: right .938rem center
}

.toast-success {
    background: linear-gradient(to right, #197e75 22%, #006057);
    border: solid 1px #4cffdc;
}

.toast-error {
    background: linear-gradient(to right, #be3636 22%, #ea5050);
    border: solid 1px #ff6c6c;
}

#toast-container.toast-bottom-center>div,#toast-container.toast-top-center>div {
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

#toast-container.toast-bottom-full-width>div,#toast-container.toast-top-full-width>div {
    width: 96%;
    margin-left: auto;
    margin-right: auto
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: .2rem;
    background-color: #ffffff3b;
    opacity: 1;
    display: none;
}

@media all and (max-width: 240px) {
    #toast-container>div {
        padding:.5rem .5rem .5rem 3.125rem;
        width: 11em
    }

    #toast-container>div.rtl {
        padding: .5rem 3.125rem .5rem .5rem
    }

    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em
    }

    #toast-container .rtl .toast-close-button {
        left: -.2em;
        right: .2em
    }
}

@media all and (min-width: 241px) and (max-width:480px) {

    #toast-container>div.rtl {
        padding: .5rem 3.125rem .5rem .5rem
    }

    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em
    }

    #toast-container .rtl .toast-close-button {
        left: -.2em;
        right: .2em
    }
}

@media all and (min-width: 481px) and (max-width:768px) {

    #toast-container>div.rtl {
        padding: .938rem 3.125rem .938rem .938rem
    }
}

.toast__wrapper {display: flex;align-items: center;gap: .875rem;font-size: .875rem;color: white;padding-left: 58px;}

.toast__content {
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.toast__title {
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Roboto';
    line-height: 100%;
}

.toast__msg {font-weight: 500;color: #ffffffd4;line-height: 120%;font-size: 0.8rem;}


.toast__image {
    width: 105%;
    height: 100%;
    object-fit: contain;
}

.toast {
    transition: transform 0.25s;
}

.toast:hover {
    transform: scale(1.02);
}

.toast__image-wraper {width: 62px;height: 66px;display: flex;align-items: center;justify-content: center;border-radius: 2rem;position: absolute;left: 0;bottom: 0;}

.toast-error .toast__image-wraper { left: 5px}

.toast-error .toast__image-wraper img {
    width: 80%;
    height: 80%;
}