.group-alert {
    position: fixed;
    top: 100px;
    right: 10px;
    z-index: 1202;
}

.alert-sate {
    position: relative;
    border-radius: 6px;
    min-width: 340px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    color: #fff;
}

.close-alert {
    color: #fff;
    text-decoration: none;
    position: absolute;
    top: 2px;
    right: 5px;
    font-size: 20px;
}

.alert-sate.error {
    background-color: rgba(170, 52, 52, 0.9);
}

.alert-sate.success {
    background-color: rgba(14, 136, 39, 0.849);
}

.alert-sate.warning {
    background-color: rgba(186, 202, 13, 0.9);
}