.alert_container {
    position: fixed;
    top: 5px;
    z-index: 1010;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    right: -100%;
    transition: all 0.5s ease;
}

.show_alert_container {
    right: 5px;
}

.alert_container .alert {
    display: none;
    position: relative;
    padding-right: 45px;
    padding-left: 15px;
    padding-block: 10px;
    border-radius: 5px;
    background-color: var(--white);
    flex-direction: row;
    gap: 15px;
    align-items: center;
    width: 450px;
    height: 85px;
    transition: all 0.5s ease;

}

.alert .icon {
    height: 40px;
}

.alert .content_alert .title_alert {
    font-size: 1rem;
    font-family: 'Poppins-Bold';
}

.alert .content_alert .description_alert {
    font-size: 0.75rem;
    font-family: 'Poppins-Regular';
}

.alert .btn_close {
    position: absolute;
    right: 15px;
    background: none;
}

.alert .btn_close .icon {
    height: 25px;
}

.alert_container .alert.active {
    display: flex;
    right: 5px;
}

.error_alert {
    border-left: 5px solid var(--red);
}

.success_alert {
    border-left: 5px solid var(--green_alert);
}

.info_alert {
    border-left: 5px solid var(--blue_alert);
}

.warning_alert {
    border-left: 5px solid var(--yellow);
}
/* RESPONSIVE */

@media screen and (max-width: 768px) {
    .alert_container .alert {
        width: 100%;
        height: auto;
    }
    .alert .icon {
        height: 25px;
    }
}
