.alert-container {
    position: fixed;
    top: 30px;
    width: 50%;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    right: 10px;
    z-index: 99999;
}

@media only screen and (min-width: 600px) {
    .alert-container {
        width: 400px;
    }
}

.modal-alert {
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: none;
    padding: 20px 15px;
    border-radius: 8px;
    position: relative;
}


.modal-alert .content {
    display: flex;
    align-items: center;
    max-height: 60px;
}

.modal-alert .content svg {
    opacity: 0.9;
    margin: 0 10px;
}

.modal-alert h6 {
    opacity: 0.9;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.modal-alert .bar {
    height: 2px;
    left: 8px;
    bottom: 0px;
    background: rgb(255, 231, 15);
    position: absolute;
    border-radius: 4px 4px 0 0;
}
.alert-container span.close-alert {
    position: absolute;
    right: 5px;
    top: 5px;
    color: white;
    padding: 5px;
}
@keyframes alertProgress {
    from {
        width: 90%;
    }
    to {
        width: 0;
    }
}
