.container-alerts {
    position: fixed;
    bottom: 10px;
    right: 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.alert-toast {
    position: relative;
    border-radius: 10px;
    height: 90px;
    width: 350px;
    scale: 1;
    transition: scale .3s ease, display .3s ease allow-discrete;

    @starting-style {
        scale: 0;
    }
}

.container-toast {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.header-toast {
    height: 10px;
    padding: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.title-toast {
    font-size: 14px;
}

.toast-close {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid transparent;
    cursor: pointer;
}

.article-toast {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    font-size: 16px;
}

.danger-toast {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.succes-toast {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

@media (max-width:800px) {

    .container-alerts {
        bottom: 60px;
        right: 5px;
    }
}
