/* new style */
.btn-strt.no_soglas input{
    cursor: not-allowed;
}

/* cookie */

#cookie_note {
    /* display: none — по умолчанию */
    display: none;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 680px;
    padding: 16px 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-sizing: border-box;
    flex-wrap: wrap;
    font-size: 12px;
}

#cookie_note.show {
    display: flex;
}

#cookie_note p {
    margin: 0;
    line-height: 1.5;
    color: #000;
    flex: 1;
}

.cookie_accept {
    background-color: #454238;
    border: none;
    color: white;
    padding: 10px 24px;
    font-size: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
}


.cookie_accept:active {
    background-color: color-mix(in srgb, #454238, white 35%);
    transform: translateY(1px);
}

@media (max-width: 780px) {
    #cookie_note {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 12px;
        max-width: calc(100% - 24px);
    }

    .cookie_accept {
        width: 100%;
    }
}

body.mobile .person_line.person_politika .input-oneline{
    display: flex;
}

body.mobile .person_line.person_politika .field-first{
    display: block;
    width: 20px;
}