#toasts-container{
    position: fixed;
    bottom: calc(2% + 50px);
    right: 2%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
    overflow-y: auto;
    max-height: calc(100vh - 2% - 50px);
}
.toast-container {
    background-color: var(--clr-card-bg);
    border: 1px solid var(--clr-text);
    border-radius: 10px;
    text-align: center;
    max-width: 25vw;
    width: 250px;
    min-width: 200px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.toast-container.clip-in{
    transition: opacity 0.2s ease-in-out;
}
.toast-container:hover {
    opacity: 1!important;
}
.toast-inner{
    border-radius: inherit;
    position: relative;
    padding: 20px 40px;
}
.toast-inner span{
    position: absolute;
    top: 5%;
    right: 5%;
}
.toast-inner span:hover{
    color: var(--primary-accent);
    cursor: pointer;
}
#toasts-container .info{
    background-color: #C6EFCE;
    border-color: #C6EFCE!important;
}
#toasts-container .error{
    background-color: #FFC7CE;
    border-color: #FFC7CE!important;
}
#toasts-float-btn{
    position: fixed;
    bottom: 2%;
    right: 2%;
    z-index: 1000;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    opacity: 0.8;
    background-color: #D3D3D3;
    display: flex;
    justify-content: center;
    align-items: center;
}
#toasts-float-btn:hover{
    cursor: pointer;
    opacity: 1;
}
#toasts-float-btn i{
    color: #1D242D;
}