.features__item {
    display: grid;
}
.d-none {
    display: none;
}
.notification.notification_warning {
    margin-top: 2px;
    font-size: 12px;
    color: #ff0000;
    position: absolute;
}
.alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    max-width: 350px;
}

.alert-container .alert a {
    color: #ffffff;
    border-bottom: 1px solid transparent;
}

.alert-container .alert a:hover {
    border-bottom: 1px solid #ffffff;
}

.alert {
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: white;
    font: 400 16px / 20px Geist, sans-serif;;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    animation: slideInRight 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-left: 4px solid #2E7D32;
}
.alert-danger,
.alert-error {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    border-left: 4px solid #B71C1C;
}

.alert-message {
    flex: 1;
    margin-right: 15px;
}

.alert-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.header__col:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.langs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: 40px;
    gap: 25px;
}

.langs li a svg:nth-child(2) {
    display: none;
}
.langs li a.active svg:nth-child(2),
.langs li a:hover svg:nth-child(2) {
    display: inline;
}

.langs li a.active svg:nth-child(1),
.langs li a:hover svg:nth-child(1) {
    display: none;
}

@media (max-width: 767px) {
    .header__col .langs {
        display: none;
    }
    .langs {
        justify-content: center;
        margin-left: 0;
        margin-top: 10px;
    }
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo svg {
    margin-right: 17px;
}
@media (max-width: 340px) {
    .logo svg {
        margin-right: 10px;
    }
}