
.alerts-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
}

.alert {
    display: flex;
    align-items: center;
    padding: 0.55rem 0.65rem 0.55rem 0.75rem;
    border-radius: 1rem;
    min-width: 100%;
    justify-content: space-between;
    margin-bottom: 1rem;

    background-color: #fff;
    border: 2px solid transparent;
}


.alert-content {
    display: flex;
    align-items: center;
}

.txt_alert{
    margin-top: 0.5rem;
    margin-right: 0.5rem;

}
.alert-icon {
    padding: 0.5rem;
    margin-right: 0.5rem;
    border-radius: 50%;
    box-shadow:
        0px 3.2px 13.8px rgba(0, 0, 0, 0.02),
        0px 7.6px 33.3px rgba(0, 0, 0, 0.028),
        0px 14.4px 62.6px rgba(0, 0, 0, 0.035),
        0px 25.7px 111.7px rgba(0, 0, 0, 0.042),
        0px 48px 208.9px rgba(0, 0, 0, 0.05),
        0px 115px 500px rgba(0, 0, 0, 0.07);
}

.alert-close {
    background-color: transparent;
    border: none;
    outline: none;
    transition: all 0.2s ease-in-out;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-close:hover {
    background-color: #fff;
}

.alert-success {
    background-color: rgba(62, 189, 97, 0.2);
    border-color: #3ebd61;
}

.alert-success .alert-icon {
    background-color: #3ebd61;
}

.alert-info {
    background-color: rgba(0, 108, 227, 0.2);
    border-color: #006CE3;
}

.alert-info .alert-icon {
    background-color: #006CE3;
}

.alert-warning {
    background-color: rgba(239, 148, 0, 0.2);
    border-color: #EF9400;
}

.alert-warning .alert-icon {
    background-color: #EF9400;
}

.alert-danger {
    background-color: rgba(236, 77, 43, 0.2);
    border-color: #EC4D2B;
}

.alert-danger .alert-icon {
    background-color: #EC4D2B;
}
