.popup .form .form_head h2 {
    font-weight: 500;
}
.callback-form__checkbox {
    display: flex !important;
    align-items: flex-start;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 16px !important;
    cursor: pointer;
}
.callback-form__checkbox:last-child {
    margin-bottom: 0 !important;
}
.callback-form__checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    left: 0;
    top: 0;
}
.callback-form__checkbox span {
    font-size: 13px !important;
    color: #888;
    font-weight: 400;
}
.callback-form__checkbox svg {
    width: 24px;
    min-width: 24px;
    margin-right: 8px;
}
.callback-form__checkbox a {
    color: #2f6bb7;
    text-decoration: underline;
}
.callback-form__checkbox svg .checkbox-plane {
    stroke-width: 2px;
}
.callback-form__checkbox svg .checkbox-check {
    opacity: 0;
}
.callback-form__checkbox.active svg .checkbox-plane {
    fill: #2f6bb7;
}
.callback-form__checkbox.active svg .checkbox-check {
    opacity: 1;
}
.callback-form__checkbox.white svg .checkbox-plane {
    stroke: #fff;
}
.callback-form__checkbox.white svg .checkbox-check {
    stroke: #2f6bb7;
}
.callback-form__checkbox.white span,
.callback-form__checkbox.white a {
    color: #fff;
}
.callback-form__checkbox.white.active svg .checkbox-plane {
    fill: #fff;
}

.cookies-popup {
    background: #fff;
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 3100;
    max-width: 1080px;
    width: 100%;
    border: 2px solid #eee;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 100%);
    transition: 0.5s all;
}
.cookies-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}
.cookies-popup__top {
    color: #2f3435;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.cookies-popup__top svg {
    width: 32px;
    min-width: 32px;
    margin-right: 10px;
}
.cookies-popup__top strong {
    font-size: 15px;
    display: block;
    color: #2f3435;
}
.cookies-popup__bott {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    justify-content: space-between;
    padding-left: 42px;
}
.cookies-popup__bott-btns {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 769px) {
    .cookies-popup__bott {
        padding-left: 0;
    }
}
@media (max-width: 576px) {
    .callback-form__checkbox svg .checkbox-plane {
        stroke-width: 1px;
    }
    .callback-form__checkbox svg {
        margin-right: 4px;
    }
    .callback-form__checkbox span {
        font-size: 12px !important;
    }

    .cookies-popup {
        padding: 16px;
    }
    .cookies-popup__bott {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .cookies-popup__bott-btns {
        width: 100%;
        gap: 8px;
    }
    .cookies-popup__bott-btns .btn {
        width: 100%;
    }
}


.policy_div{
    margin-top:10px;
}