#acas-toast-container {
    display: flex;
    width: 100%;
    height: fit-content;
    position: fixed;
    bottom: 50px;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    z-index: 9999999999;
    pointer-events: none;
}
.acas-toast {
    min-width: 250px;
    max-width: 50%;
    color: #000;
    border-radius: 5px;
    z-index: 9999999999;
    width: fit-content;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    pointer-events: all;
    box-shadow: 5px 5px 5px 5px rgb(0 0 0 / 20%);
}
.acas-toast-top-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 10px 10px 0;
    background: linear-gradient(to bottom right, rgb(255 255 255), rgb(255 255 255 / 50%));
}
.acas-toast-bottom-container {
    height: 6px;
    width: 100%;
    display: flex;
    align-items: center;
}
.acas-toast-progress-bar {
    height: 4px;
    background-color: rgb(255 255 255 / 75%);
    transition: width 0.5s ease;
    border-radius: 10px;
    margin-top: 2px;
    margin-bottom: 2px;
}
.acas-toast-close-btn {
    width: 10px;
    background-color: grey;
    transition: all 0.25s;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 6px;
    font-size: 25px;
    font-stretch: semi-expanded;
    font-weight: 600;
    color: transparent;
}
.acas-toast-icon {
    font-size: 25px;
    margin-left: 18px;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    align-content: center;
    align-items: center;
}
.acas-toast-content {
    text-align: left;
    font-size: 17px;
}
.acas-toast:hover .acas-toast-close-btn {
    color: white;
    width: 50px;
}
.acas-toast-success {
    background-color: #35b334;
}
.acas-toast-message {
    background-color: #24A0ED;
}
.acas-toast-warning {
    background-color: #ff9100;
}
.acas-toast-error {
    background-color: #ff0000;
}
@-webkit-keyframes fadein {
    from {
        margin-bottom: -50px;
        opacity: 0;
   }
    to {
        margin-bottom: 5px;
        opacity: 1;
   }
}
@keyframes fadein {
    from {
        margin-bottom: -50px;
        opacity: 0;
   }
    to {
        margin-bottom: 5px;
        opacity: 1;
   }
}
@-webkit-keyframes fadeout {
    from {
        margin-bottom: 5px;
        opacity: 1;
   }
    to {
        margin-bottom: -50px;
        opacity: 0;
   }
}
@keyframes fadeout {
    from {
        margin-bottom: 5px;
        opacity: 1;
   }
    to {
        margin-bottom: -50px;
        opacity: 0;
   }
}