.callback-modal,
.callback-modal *,
.callback-modal *:before,
.callback-modal *:after {
    box-sizing: border-box;
}

.callback-modal__blackout {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(4,61,96, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    transition-property: visiblity, opacity;
}
.callback-modal__box {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    /*transform: translate(0, -50%);*/
    z-index: 101;
    width: 90%;
    max-width: 705px;
    background: #e6e4e9;
    border-radius: 0 60px 0 0;
    font-size: 14px;
    line-height: 1.2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    transition-property: visiblity, opacity;
    padding: 40px 65px 35px 65px;
}
.callback-modal_opened .callback-modal__blackout,
.callback-modal_opened .callback-modal__box {
    opacity: 1;
    visibility: visible;
}
.callback-modal__close {
    position: absolute;
    top: 0;
    right: 0;
    background: url('/bitrix/templates/abr/img/closeModal.png') center no-repeat;
    width: 63px;
    height: 54px;
}

.callback-modal__title {
    font-family: PFDinTextCondPro, Arial, sans-serif;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 500;
    color: #cd1f45;
    margin-bottom: 30px;
}
.callback-modal__subtitle {
    font-size: 26px;
    line-height: 30px;
    font-family: PFDinTextCondPro, Arial, sans-serif;
    color: #043d60;
    margin-top: 10px;
    margin-bottom: 25px;
}
.callback-modal__phone {
    font-size: 45px;
    line-height: 50px;
    font-weight: 500;
    font-family: PFDinTextCondPro, Arial, sans-serif;
    color: #cd1f45;
    margin-bottom: 15px;
}
.callback-modal__phone a {
    text-decoration: none;
    color: inherit;
}
.callback-modal__text {
    font-size: 14px;
    line-height: 15px;
    font-family: PFDinTextCondPro, Arial, sans-serif;
    color: #043d60;
}

.callback-form {
    font-size: 18px;
    line-height: 1;
}
.callback-form__row {
    margin-bottom: 10px;
}
.callback-form__row_client-type {
    margin-bottom: 30px;
}
.callback-form__row_client-type .callback-form__input-line {
    width: auto;
}
.callback-form__row_client-type .callback-form__radio {
    margin-right: 20px;
}
.callback-form__item ~ .callback-form__item {
    margin-left: 15px;
}
.callback-form__input-line {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.callback-form__input-line > * {
    display: table-cell;
    vertical-align: top;
}
.callback-form__input-line > .callback-form__label {
    width: 225px;
    padding-right: 15px;
}
.callback-form__label {
    font-size: 18px;
    font-family: PFDinTextCondPro, Arial, sans-serif;
    color: #043d60;
}
.callback-form__radio {
    font-family: PFDinTextCondPro, Arial, sans-serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #043d60;
    font-weight: 400;
}
.callback-form__radio-input {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
.callback-form__radio-dot {
    width: 17px;
    height: 17px;
    border: 1px solid #bfbfc1;
    box-shadow: inset 0 0 5px rgba(65, 52, 46, 0.3);
    display: block;
    border-radius: 50%;
    position: relative;
    background: #fff;
}
input:checked ~ .callback-form__radio-dot:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    background: #073d59;
    border-radius: 50%;
}
.callback-form__radio-caption {
    color: #06416a;
    padding-left: 8px;
}
.callback-form__error {
    font-family: PFDinTextCondPro, Arial, sans-serif;
    font-size: 14px;
    margin-top: 5px;
    color: #cd1f45;
}
.callback-form-captcha {
    display: table;
    width: 100%;
}
.callback-form-captcha > * {
    display: table-cell;
    vertical-align: top;
}
.callback-form-captcha__image {
    width: 200px;
    padding-left: 20px;
}
.callback-form-captcha__image img {
    display: block;
}

.callback-form__input {
    display: block;
    width: 100%;
}
.callback-form__input-description {
    font-size: 13px;
    line-height: 12px;
    color: rgba(124, 124, 124, 0.8);
}
.callback-form__input-line .callback-form__input-description {
    width: 100px;
    padding-left: 20px;
    vertical-align: middle;
}
.callback-form__input,
.callback-form__select {
    display: block;
    width: 100%;
    border: 1px solid #bdbdbf;
    box-shadow: inset 0 0 4px rgba(144,150,156, 0.35);
    font-size: 16px;
    line-height: 1.3;
    padding: 3px 10px;
    border-radius: 3px;
}
.callback-form__button,
.callback-form__button.button-gradient {
    display: inline-block;
    vertical-align: top;
    font-size: 23px;
    line-height: 30px;
    padding: 10px 45px;
    text-transform: uppercase;
}

.callback-form__submit {
    text-align: right;
    margin-top: 22px;
}

.callback-modal .Select {
    position: relative;
    user-select: none;
}
.callback-modal .Select__wrapper {
    width: 100%;
}
.callback-modal .Select_opened .Select__list {
    display: block;
}
.callback-modal .Select__head {
    display: block;
    width: 100%;
    border: 1px solid #bdbdbf;
    box-shadow: inset 0 0 4px rgba(144,150,156, 0.35);
    color: #9c9c9c;
    font-size: 13px;
    line-height: 1.3;
    padding: 5px 20px 5px 10px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    background: #fff;
}
.callback-modal .Select__head:after {
    content: '';
    background: url('/bitrix/templates/abr/img/select.png');
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    width: 17px;
    height: 17px;
    margin: auto;
}
.callback-modal .Select__list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #bdbdbf;
    border-radius: 3px;
    display: none;
    overflow: auto;
    max-height: 200px;
    z-index: 1;
}
.callback-modal .Select__option {
    font-size: 13px;
    line-height: 1.3;
    padding: 4px 10px 5px;
    cursor: pointer;
}
.callback-modal .Select__option[data-selected] {
    background: #eee;
}
.callback-modal .Select__option[data-disabled] {
    color: #9c9c9c;
    cursor: default;
}
.callback-modal .Select__option:not([data-disabled]):hover {
    background: #f0f0f0;
}
.callback-modal__info {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #a2b2c0;
    display: table;
    width: 100%;
    table-layout: fixed;
}
.callback-modal__info-column {
    display: table-cell;
    vertical-align: top;
    padding: 0 20px;
}
.callback-modal__info-column:first-child {
    padding-left: 0;
}
.callback-modal__info-column:last-child {
    padding-right: 0;
}
.callback-modal__politics {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #a2b2c0;
    font-size: 13px;
    line-height: 1;
}
.callback-modal__politics a {
    color: rgba(4, 61, 96, 0.7);
}
