.kk1-container__alerts {
    position: fixed;
    margin: 5px;
    flex-direction: column;
}

.kk1-alert__item {
    opacity: 90%;
    min-width: 210px;
    max-width: 410px;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    word-break: break-word;
    margin-bottom: 5px;
}

.alerts__controls {
    display: block;
}
.alerts__btn-close {
    position: relative;
    width: 32px;
    height: 32px;
    opacity: 0.3;
}
.alerts__btn-close:hover {
    opacity: 1;
}
.alerts__btn-close:before, .alerts__btn-close:after {
    position: relative;
    left: 15px;
}

.alerts__btn-close {
    font-size: 25px;
}

.alerts__btn-close:hover {
     cursor: pointer;
 }

.kk1-container-notice-alerts-flex {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
}

.kk1-alert-image-success {
    background-image: url("images/alerts/alert_success.png");
    background-size: 30px auto;
    width: 30px;
    height: 30px;
    padding-right: 30px;
}

.kk1-alert-image-attention {
    background-image: url("images/alerts/alert_attention.png");
    background-size: 30px auto;
    width: 30px;
    height: 30px;
    padding-right: 30px;
}

.kk1-alert-image-warning {
    background-image: url("images/alerts/alert_warning.png");
    background-size: 30px auto;
    width: 30px;
    height: 30px;
    padding-right: 30px;
}

.kk1-alert-image-error {
    background-image: url("images/alerts/alert_error.png");
    background-size: 30px auto;
    width: 30px;
    height: 30px;
    padding-right: 30px;
}

.kk1-alert-error {
    background: #FFE0E3;
}


.kk1-alert-attention {
    background: #E0F2FF;
}

.kk1-alert-warning {
    background: #FEE2D2;
}

.kk1-alert-success {
    background: #9EFAAF;
}

.kk1-alert-secondary {
    background: #E2E3E5;
}

.kk1-alert {
    max-width: 660px;
    display: flex;
    padding: 16px;
    align-items: flex-start;
    gap: 8px;
    border-radius: 10px;
}

.alert-position-screen-left {
    top: 10%;
    left: 1%;
    position: fixed;
    z-index: 1000;
}

