:root {
--consultation-modal-primary: #267ECE;
}
body.consultation-modal-lock {
overflow: hidden;
}
#consultation-modal {
display: none;
position: fixed;
inset: 0;
z-index: 9999;
align-items: center;
justify-content: center;
padding: 20px;
}
#consultation-modal.is-open {
display: flex;
}
.consultation-modal__backdrop {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.55);
opacity: 0;
transition: opacity 0.3s ease;
}
#consultation-modal.modal-open .consultation-modal__backdrop {
opacity: 1;
}
.consultation-modal__dialog {
position: relative;
z-index: 1;
width: 100%;
max-width: 960px;
max-height: calc(100vh - 40px);
overflow-y: auto;
background: #fff;
border-radius: 12px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
padding: 32px 24px 24px;
opacity: 0;
transform: translateY(16px);
transition: opacity 0.3s ease, transform 0.3s ease;
}
#consultation-modal.modal-open .consultation-modal__dialog {
opacity: 1;
transform: translateY(0);
}
.consultation-modal__close {
display: flex !important;
position: absolute;
top: 12px;
right: 12px;
width: 40px;
height: 40px;
border: 0;
border-radius: 50%;
background: transparent;
color: #fff;
font-size: 28px;
line-height: 1;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: color 0.2s ease, background-color 0.2s ease;
}
.consultation-modal__close:hover,
.consultation-modal__close:focus {
color: var(--consultation-modal-primary);
background-color: rgba(38, 126, 206, 0.08);
outline: none;
}
.consultation-modal__content {
padding-top: 8px;
}
.consultation-modal__heading {
margin: 0 0 12px;
color: #202428;
font-size: 28px;
font-weight: 700;
letter-spacing: -0.56px;
line-height: 1.2;
}
.consultation-modal__description {
margin: 0 0 28px;
color: #4a4f55;
font-size: 16px;
line-height: 1.5;
}
.consultation-modal__columns {
display: flex;
flex-direction: column;
gap: 32px;
}
.consultation-modal__col--employees {
flex: 0 0 auto;
}
.consultation-modal__col--form {
flex: 1 1 auto;
min-width: 0;
}
.consultation-modal__employees {
display: flex;
flex-direction: column;
gap: 24px;
}
.consultation-modal__employee {
display: flex;
align-items: center;
gap: 16px;
}
.consultation-modal__employee-photo {
flex-shrink: 0;
width: 72px;
height: 72px;
border-radius: 50%;
overflow: hidden;
border: 2px solid rgba(38, 126, 206, 0.2);
}
.consultation-modal__employee-photo img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.consultation-modal__employee-details {
min-width: 0;
}
.consultation-modal__employee-name {
margin: 0 0 4px;
color: #202428;
font-size: 18px;
font-weight: 700;
line-height: 1.3;
}
.consultation-modal__employee-position {
margin: 0 0 8px;
color: #6b7280;
font-size: 14px;
line-height: 1.4;
}
.consultation-modal__employee-link {
display: block;
color: var(--consultation-modal-primary);
font-size: 14px;
font-weight: 600;
line-height: 1.5;
text-decoration: none;
}
.consultation-modal__employee-link:hover,
.consultation-modal__employee-link:focus {
text-decoration: underline;
}
.consultation-modal__form {
margin-top: 0;
}
@media (min-width: 768px) {
.consultation-modal__dialog {
padding: 40px 36px 32px;
}
.consultation-modal__columns {
flex-direction: row;
align-items: flex-start;
gap: 40px;
}
.consultation-modal__col--employees {
flex: 0 0 38%;
max-width: 38%;
padding-right: 32px;
border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.consultation-modal__col--form {
flex: 1 1 62%;
padding-left: 8px;
}
}
.block_offer_header_form .form-control,
#consultation-modal .form-control {
width: 100%;
background: transparent;
border-bottom: 2px solid rgba(0, 0, 0, 0.2);
border-radius: 0;
color: #202428;
font-weight: 700;
letter-spacing: -0.32px;
line-height: 24px;
margin-bottom: 18px;
padding: 16px 24px;
}
.block_offer_header_form textarea,
#consultation-modal textarea {
height: 100px;
}
.block_offer_header_form [contenteditable].form-control:focus,
.block_offer_header_form [type='email'].form-control:focus,
.block_offer_header_form [type='password'].form-control:focus,
.block_offer_header_form [type='tel'].form-control:focus,
.block_offer_header_form [type='text'].form-control:focus,
.block_offer_header_form input.form-control:focus,
.block_offer_header_form input[type='email']:focus,
.block_offer_header_form input[type='number']:focus,
.block_offer_header_form input[type='password']:focus,
.block_offer_header_form input[type='text']:focus,
.block_offer_header_form select.form-control:focus,
.block_offer_header_form textarea.form-control:focus,
.block_offer_header_form textarea:focus,
#consultation-modal .form-control:focus,
#consultation-modal textarea:focus,
#consultation-modal input:focus,
#consultation-modal select:focus {
-webkit-box-shadow: none;
box-shadow: none;
border-bottom-color: var(--consultation-modal-primary);
}
.block_offer_header_form .form-group p,
.block_offer_header_form p {
margin-bottom: 0;
}
.block_offer_header_form textarea {
height: 100px !important;
margin-bottom: 20px;
}
.block_offer_header_form .form-control::-webkit-input-placeholder,
#consultation-modal .form-control::-webkit-input-placeholder,
#consultation-modal textarea::-webkit-input-placeholder,
#consultation-modal input::-webkit-input-placeholder,
#consultation-modal select::-webkit-input-placeholder {
color: #202428;
opacity: 1;
}
.block_offer_header_form .form-control::-moz-placeholder,
#consultation-modal .form-control::-moz-placeholder,
#consultation-modal textarea::-moz-placeholder,
#consultation-modal input::-moz-placeholder,
#consultation-modal select::-moz-placeholder {
color: #202428;
opacity: 1;
}
.block_offer_header_form .form-control:-ms-input-placeholder,
#consultation-modal .form-control:-ms-input-placeholder,
#consultation-modal textarea:-ms-input-placeholder,
#consultation-modal input:-ms-input-placeholder,
#consultation-modal select:-ms-input-placeholder {
opacity: 1;
}
.block_offer_header_form .form-control::-ms-input-placeholder,
#consultation-modal .form-control::-ms-input-placeholder,
#consultation-modal textarea::-ms-input-placeholder,
#consultation-modal input::-ms-input-placeholder,
#consultation-modal select::-ms-input-placeholder {
opacity: 1;
}
.block_offer_header_form .form-control::placeholder,
#consultation-modal .form-control::placeholder,
#consultation-modal textarea::placeholder,
#consultation-modal input::placeholder,
#consultation-modal select::placeholder {
color: #202428;
opacity: 1;
}
.block_offer_header_form .form-control:-ms-input-placeholder,
#consultation-modal .form-control:-ms-input-placeholder,
#consultation-modal textarea:-ms-input-placeholder,
#consultation-modal input:-ms-input-placeholder,
#consultation-modal select:-ms-input-placeholder {
color: #202428;
}
.block_offer_header_form .form-control::-ms-input-placeholder,
#consultation-modal .form-control::-ms-input-placeholder,
#consultation-modal textarea::-ms-input-placeholder,
#consultation-modal input::-ms-input-placeholder,
#consultation-modal select::-ms-input-placeholder {
color: #202428;
}
.block_offer_header_form .wpcf7-form-control.wpcf7-acceptance .form-check-input,
#consultation-modal .wpcf7-form-control.wpcf7-acceptance .form-check-input {
background: hsla(0, 0%, 85%, 0.4) !important;
border: 2px solid rgba(0, 0, 0, 0.1) !important;
border-radius: 2px;
height: 24px;
margin-right: 21px;
margin-top: 0;
position: absolute;
top: -12px;
width: 24px;
}
.block_offer_header_form .form-check-input:checked[type='checkbox'],
#consultation-modal .form-check-input:checked[type='checkbox'] {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23B0B0B0' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3E%3C/svg%3E") !important;
}
.block_offer_header_form .wpcf7-list-item-label,
#consultation-modal .wpcf7-list-item-label {
color: #202428;
display: block;
font-size: 12px;
font-style: normal;
font-weight: 400;
letter-spacing: -0.24px;
line-height: 18px;
margin-bottom: 0;
margin-left: 10px;
position: relative;
}
.block_offer_header_form .wpcf7-list-item-label a,
#consultation-modal .wpcf7-list-item-label a {
color: #202428;
font-weight: 800;
}
.block_offer_header_form .wpcf7-list-item,
#consultation-modal .wpcf7-list-item {
margin-left: 0;
}
.block_offer_header_form .form-check-input:focus,
#consultation-modal .form-check-input:focus {
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
.block_offer_header_form .wpcf7-list-item label,
#consultation-modal .wpcf7-list-item label {
margin-bottom: 0;
}
.block_offer_header_form .wpcf7-list-item label:hover,
#consultation-modal .wpcf7-list-item label:hover {
cursor: pointer;
}
.block_offer_header_form .btn-primary,
#consultation-modal .wpcf7-submit,
#consultation-modal input[type='submit'],
#consultation-modal button[type='submit'] {
background-color: var(--consultation-modal-primary) !important;
border-color: var(--consultation-modal-primary) !important;
color: #fff;
font-size: 16px;
font-style: normal;
font-weight: 400;
letter-spacing: -0.32px;
line-height: 24px;
margin-top: 56px;
padding: 16px 32px;
width: 100%;
cursor: pointer;
transition: background-color 0.2s ease, border-color 0.2s ease;
}
.block_offer_header_form .btn-primary:hover,
#consultation-modal .wpcf7-submit:hover,
#consultation-modal input[type='submit']:hover,
#consultation-modal button[type='submit']:hover {
background-color: #1f6bb0 !important;
border-color: #1f6bb0 !important;
}
#consultation-modal .wpcf7-submit,
#consultation-modal input[type='submit'],
#consultation-modal button[type='submit'] {
margin-top: 15px;
}
#consultation-modal .wpcf7-form-control-wrap {
margin-top: 10px;
}
#consultation-modal .wpcf7-form-control.wpcf7-acceptance label {
display: flex;
}
#consultation-modal .wdt-cus-contact-us-submit {
margin-top: 0;
}
.price-inquiry {
margin: 25px 0 !important;
}
.price-inquiry__label {
color: #202428;
font-size: 16px;
font-weight: 700;
line-height: 1.4;
}
.price-inquiry__btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 10px 20px;
border: 1px solid var(--consultation-modal-primary);
border-radius: 4px;
background-color: var(--consultation-modal-primary);
color: #fff !important;
font-size: 14px;
font-weight: 600;
line-height: 1.4;
cursor: pointer;
transition: background-color 0.2s ease, border-color 0.2s ease;
text-transform: lowercase !important;
}
.price-inquiry__btn:hover,
.price-inquiry__btn:focus {
background-color: #1f6bb0;
border-color: #1f6bb0;
color: #fff;
outline: none;
}