footer{
    z-index: 20;
    position: relative;
}
body
{overflow-x:hidden;}
#bx-soa-paysystem
{display:none}

/* Не верный ввод */
input:invalid {
border-color: red;
color: red;
box-shadow: none;
}

/* Не верный ввод при фокусе */
input:focus:invalid {
border-color: red;
color: red;
box-shadow: none;
}

/* Не верный ввод при фокусе обязательного input */
input:focus:required:invalid {
border-color: red;
color: red;
box-shadow: none;
}

/* Cookie notification styles */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

.cookie-notification--show {
    transform: translateY(0);
}

.cookie-notification--hide {
    transform: translateY(100%);
}

.cookie-notification__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-notification__text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.cookie-notification__link {
    color: #f24236;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-notification__link:hover {
    color: #f24236;
    text-decoration: none;
}

.cookie-notification__button {
    background: #f24236;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-notification__button:hover {
    background: #f24236;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-notification__button:active {
    transform: translateY(0);
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .cookie-notification__content {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .cookie-notification__button {
        width: 100%;
        max-width: 200px;
        padding: 12px 20px;
    }
    
    .cookie-notification__text {
        font-size: 13px;
    }
}
