/**
 * КАПЧА
 */
/*@media screen and (min-width: 1360px) {
    .form__bottom .form__agreement {
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 15px;
    }
}
.politic-checkbox-label {
    position: relative;
    display: block;
    cursor: pointer;
}

.politic-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form__agreement-text {
    position: relative;
    display: inline-block;
    padding-left: 36px;
    line-height: 1.5;
    color: #fff;
}

.form__agreement-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    border: 2px solid #11438f;
    border-radius: 6px;
    background: #fff;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

.form__agreement-text::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.25s ease;
}
*/
/* Состояние checked */
/*.politic-checkbox-label input[type="checkbox"]:checked + .form__agreement-text::before {
    background: #11438f;
    border-color: #11438f;
}

.politic-checkbox-label input[type="checkbox"]:checked + .form__agreement-text::after {
    opacity: 1;
}*/

/* Hover */
/*.politic-checkbox-label:hover .form__agreement-text::before {
    box-shadow: 0 0 0 4px rgba(17, 67, 143, 0.08);
}*/

/* Focus */
/*.politic-checkbox-label input[type="checkbox"]:focus + .form__agreement-text::before {
    box-shadow: 0 0 0 4px rgba(17, 67, 143, 0.18);
}*/

/* Ссылки */
/*.form__agreement-link {
    text-decoration: underline;
}*/