div#alertContainer {
    position: fixed;
    z-index: 999999999;
    right: 20px;
    top: 20px;
    width: 85%;
    margin: 0 auto;
}
.toasts.show {
  opacity: 1;
  visibility: visible;
  margin-bottom: 1rem;
}
.toasts.hide {
  opacity: 0;
  visibility: hidden;
}

.toasts {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.toast__overlayBG {
    background: #3b3b3b1a;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100dvh;
    z-index: 999999999;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    transition: opacity 0.5s ease;
    margin: 0 auto;
    max-width: 450px;
}
span.toast_text__inner {
    font-size: 1.1rem;
    margin-left: .15rem;
    line-height: 2;
    width: 100%;
    display: flex;
}
.toasts.show {
    position: relative; 
    border-radius: .24rem;
    background: #ffffffe8;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.slowlyOut {
    opacity: 0;
}
.toasts.warning.show.slideIn {
    animation: .5s slideOut 
ease;
}

@keyframes slideIn {
    0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    }
    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@keyframes slideOut {
    0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    }
    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes slideOut {
    0% {
        -webkit-transform: translate3d(0, 0, 100%);
        transform: translate3d(0, 0, 100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
.toast.slideOut {
    -webkit-animation-duration: .25s;
    animation-duration: .25s;
    -webkit-animation-duration: .25s;
    animation-duration: .25s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0s;
    -webkit-animation-name: slideOut;
    animation-name: slideOut;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: inset 0 0 5px #fff;
    border-radius: 6px;
}

.toasts.show.slideIn {
    -webkit-animation-duration: .25s;
    animation-duration: .25s;
    -webkit-animation-duration: .25s;
    animation-duration: .25s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0s;
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: inset 0 0 5px #fff;
    border-radius: 6px;
}

.toast_body {
    width: 100%;
    display: flex;
    text-align: start;
    font-size: 1rem;
}
.toast_header {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.toast_close.toasts-close {
    position: absolute;
    right: 5px;
    top: 2px;
    font-size: 1.5rem;
    padding: .5rem;
}
span.toast_text {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.25rem;
}
.toast_overlay {
    position: fixed;
    width: 300vw;
    height: 300dvh;
    left: -300%;
    top: -100%;
    z-index: 10;
    background: #00000017;
}
svg.toast_icon {
    width: 100%;
    height: 1.85rem;
    position: relative;
    top: 1px;
}
.error-bg {
    background: #ff5757;
}
.success-bg {
    background: #1ea97c;
}
.warning-bg {
    background: #cc8925;
}
.info-bg {
    background: #3b82f6;
}
.toasts.success.show {
    background: #fff;
    color: #1ea97c;
    z-index: 99;
} 
.toasts.error.show {
    background: #fff;
    color: #ff5757;
    z-index: 99;
}
.toasts.warning.show {
    background: #fff;
    color: #af6200;
    z-index: 99;
}
.toasts.info.show {
    background: #fff;
    color: #3b82f6;
    z-index: 99;
}
