#callback_form_bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1116;
    display: none;
    overflow-y: auto;
}

.callback_form_box {
    width: 90%;
    max-width: 1040px;
    margin: 5% auto 0;
    height: 500px;
    display: flex;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    flex-direction: row-reverse;
    background-color: var(--color-light-cyan);
}
.callback-form-bg {
    height: 100%;
    flex: 1;
    background-color: rgb(230, 248, 250);
}

.callback-form-image-box {
    width: 600px;
    position: relative;
    height: 100%;
    background-image: url("/images/callback_form_bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.c-bg, .c-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.c-bg {
    background: linear-gradient(90deg, rgb(230, 248, 250), transparent);
    z-index: 2;
}
.c-image img {
    object-fit: cover;
    height: 100%;
}
.c-image {
    display: flex;
    justify-content: center;
}
.callback-form-content {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    box-sizing: border-box;
    padding: 50px 100px;
}
.callback-form-content .header {
    font-family: var(--font-header), sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    text-transform: uppercase;
    color: rgb(18, 70, 88);
}
.callback-form-content p {
    color: var(--color-base);
    line-height: 23px;
}
div.callback-form-content-fields > div {flex: 1;}
div.callback-form-content-fields {
    display: flex;
    column-gap: 24px;
    margin: 40px 0 0 0;
    width: 500px;
    flex-wrap: wrap;
    row-gap: 30px;
}
div.callback-form-content-fields input {
    width: 100%;
    margin: 13px 0 0 0;
    font-size: 16px;
    border: 1px solid #bceaed;
}
div.callback-form-content-fields label {
    display: block;
    font-family: var(--font-base), sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}
#cbfInput {letter-spacing: 1px; color: #aaaaaa;}
#callback_form_button {flex-basis: 100%;}
.callback-form-button-info a {
    color: var(--color-base);
    text-decoration: none;
    font-weight: 500;
}
.callback-form-button-info {
    text-align: center;
    font-family: var(--font-base), sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    opacity: 0.6;
}

.callback_form_close_button:after {background-color: var(--color-light-cyan) !important;}
.callback_form_close_button:before {background-color: var(--color-light-cyan) !important;}

.cbf-home-main-form-button-info {
    font-family: var(--font-base), sans-serif;
    font-size: 14px;
    line-height: 23px;
    text-align: center;
    color: rgba(51, 51, 51, 0.8);
    flex: unset !important;
    width: 280px;
    margin: 0 0 0 10px;
}
.cbf-personal-data-notification {
    display: flex;
    flex-basis: unset !important;
    align-items: center;
    justify-content: center;
}
.cbf-personal-data-notification label {
    display: inline !important;
    font-family: var(--font-base), sans-serif;
    font-size: 14px;
    line-height: 23px;
    text-align: center;
    color: rgba(51, 51, 51, 0.8) !important;
    opacity: 1;
    text-transform: unset !important;
    letter-spacing: unset !important;
}
.cbf-p-d-n-checkbox {
    flex: unset !important;
    width: 30px;
}
#cbf_pdn_checkbox {
    appearance: none;
    accent-color: var(--color-bright-cyan);
    width: 25px;
    height: 25px;
    cursor: pointer;
    border: 1px solid var(--color-href-on-white);
    margin: 0 !important;
    border-radius: 3px;
    position: relative;
}
#cbf_pdn_checkbox::after {
    content: "\2714";
    position: absolute;
    line-height: 25px;
    padding: 0 0 0 4px;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    font-size: 20px;
    overflow: hidden;
    box-sizing: border-box;
    color: var(--color-bright-cyan);
}
#cbf_pdn_checkbox:checked::after {
    width: 25px;
    height: 25px;
}




@media (max-width: 1040px) {
    .c-bg {background-color: rgb(230, 248, 250);}
    .c-image {display: none;}
    div.callback-form-content-fields {width: auto;}
    div.callback-form-content-fields > div {flex-basis: 100%;}
    .callback-form-content {padding: 50px 60px;}
    .callback_form_box {width: 430px; height: 670px;}
    .callback_form_close_button:after {background-color: var(--color-blue) !important;}
    .callback_form_close_button:before {background-color: var(--color-blue) !important;}
    .cbf-home-main-form-button-info {width: auto; line-height: 18px;}
    .cbf-personal-data-notification label {line-height: 18px;}
}

@media (max-width: 500px) {
    .callback_form_box {width: 100%;}
    .callback-form-content {padding: 50px 5vw;}
}