@font-face {
	font-family: 'Aeroport'; 
	src: url('../fonts/Aeroport-Light.ttf');
    font-weight: 300; 
}

@font-face {
	font-family: 'Aeroport'; 
	src: url('../fonts/Aeroport.ttf');
    font-weight: 400; 
}

@font-face {
	font-family: 'Aeroport'; 
	src: url('../fonts/Aeroport-Medium.ttf');
    font-weight: 500; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    list-style: none;
    font-family: 'Aeroport', sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: var(--first-text-color);
}

:root {
    --first-text-color: #101820;
    --second-text-color: #5A5A5A;
    --third-text-color: #8D8D8D;
    --primary-color: #E40029;
}

html,
body {
    overflow-x: hidden;
}

html.no-scroll {
    overflow-y: hidden;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.container {
    width: 1264px;
    margin: 0 auto;
}

.btn {
    height: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.btn span {
    background: var(--primary-color);
    font-size: 16px;
    line-height: 22px;
    text-align: center;
    color: #FFFFFF;
    padding: 0 8px;
    height: 100%;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn:after,
.btn:before {
    content: "";
    width: 16px;
    height: 100%;
    background-image: url('../image/btn.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

/* default btn */
.btn:hover span {
    background-color: #C20029;
}

.btn:focus span {
    border-top: 2px solid #7E0017;
    border-bottom: 2px solid #7E0017;
}

.btn:focus:hover span {
    border: none;
}

.btn:focus:active span {
    background-color: #7E0017;
}

.btn:hover:after,
.btn:hover:before {
    background-image: url('../image/btn-hover.svg');
}

.btn:focus:after,
.btn:focus:before {
    background-image: url('../image/btn-focus.svg');
}

.btn:focus:hover:after,
.btn:focus:hover:before {
    background-image: url('../image/btn-hover.svg');
}

.btn:focus:active:after,
.btn:focus:active:before {
    background-image: url('../image/btn-active.svg');
}

/* white btn */
.btn.btn_white span {
    background: white;
    color: var(--primary-color);
}

.btn.btn_white:after,
.btn.btn_white:before {
    background-image: url('../image/btn-white.svg');
    background-repeat: no-repeat;
}

.btn.btn_white:hover span {
    color: #C20029;
}

.btn.btn_white:focus span {
    color: #E40029;
    border-top: 1px solid #7E0017;
    border-bottom: 1px solid #7E0017;
}

.btn.btn_white:focus:hover span {
    color: #C20029;
}

.btn.btn_white:focus:active span {
    color: #7E0017;
    background: white;
}

.btn.btn_white:focus:after,
.btn.btn_white:focus:before {
    background-image: url('../image/btn-white-focus.svg');
}

/* transparent btn */
.btn.btn_no-fill span {
    color: var(--primary-color);
    background: transparent;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
}

.btn.btn_no-fill:after,
.btn.btn_no-fill:before {
    background-image: url('../image/btn-no-fill.svg');
    background-repeat: no-repeat;
}

.btn.btn_no-fill:hover span {
    color: #C20029;
    background-color: #FFF7F7;
    border-top: 1px solid #C20029;
    border-bottom: 1px solid #C20029;
}

.btn.btn_no-fill:focus span {
    color: var(--primary-color);
    background: white;
    border-top: 1px solid #C20029;
    border-bottom: 1px solid #C20029;
}

.btn.btn_no-fill:focus:active span {
    color: white;
    background: var(--primary-color);
    border: none;
}

.btn.btn_no-fill:hover:after,
.btn.btn_no-fill:hover:before {
    background-image: url('../image/btn-no-fill-hover.svg');
}

.btn.btn_no-fill:focus:after,
.btn.btn_no-fill:focus:before {
    background-image: url('../image/btn-white-focus.svg');
}

.btn.btn_no-fill:focus:active:after,
.btn.btn_no-fill:focus:active:before {
    background-image: url('../image/btn.svg');
}

.btn:after {
    transform: rotate(180deg);
}

.btn:disabled {
    opacity: 0.4;
    cursor: default;
}

ul.items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

ul.items li {
    padding: 0 0 0 38px;
    background-image: url('/wp-content/themes/vzd/assets/image/ul.svg');
    background-repeat: no-repeat;
    background-position: left 3px;
    background-size: 14px;
}

ol.items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

ol.items li {
    padding: 0 0 0 48px;
    position: relative;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #000000;
}

ol.items li div {
    position: absolute;
    left: 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: var(--primary-color);
}

.field {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.field.disabled {
    pointer-events: none;
}

.field.disabled label {
    color: #CDCED1;
}

.field.disabled label input {
    color: #CDCED1;
    background: #FAFAFA;
    border: 1px solid #EEEEEE;
}

.field.disabled .custom-range .custom-range__input .ui-slider-range {
    background: #CDCED1;
}

.field.disabled .custom-range .custom-range__input .ui-slider-handle {
    background: #CDCED1;
}

.field.disabled .custom-range__min-max div {
    color: #CDCED1;
}

.field label {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 8px 0;
}

.field input[type="number"]::-webkit-outer-spin-button,
.field input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"] {
    padding: 15px 20px;
    height: 50px;
    border-radius: 1px;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
}

.field input[type="text"]::placeholder,
.field input[type="tel"]::placeholder,
.field input[type="email"]::placeholder {
    color: var(--third-text-color);
}

.field input[type="text"].field-input-grey,
.field input[type="tel"].field-input-grey,
.field input[type="email"].field-input-grey {
    background: #FAFAFA;
    border: 1px solid #EEEEEE;
}

.field input[type="text"]:hover,
.field input[type="tel"]:hover,
.field input[type="email"]:hover,
.field input[type="number"]:hover,
.custom-select__total:hover {
    border: 1px solid #CDCED1 !important;
}

.field input[type="text"]:active,
.field input[type="tel"]:active,
.field input[type="email"]:active,
.field input[type="number"]:active,
.custom-select__total:active {
    border: 1px solid #5A5A5A !important;
}

.field input[type="text"]:focus,
.field input[type="tel"]:focus,
.field input[type="email"]:focus,
.field input[type="number"]:focus,
.custom-select__total:focus {
    border: 1px solid #5A5A5A !important;
}

.field__error {
    margin: 2px 0 0 0;
    display: none;
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    color: var(--primary-color);
    position: absolute;
    top: 100%;
}

.field.error input[type="text"],
.field.error input[type="tel"],
.field.error input[type="email"],
.field.error input[type="number"] {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.field.error .field__error {
    display: block;
}

select {
    display: none;
}

.custom-select {
    position: relative;
}

.custom-select__total {
    width: 100%;
    height: 50px;
    background: #FFFFFF;
    background-image: url('../image/arrow-black.svg');
    background-repeat: no-repeat;
    background-position-x: calc(100% - 10px);
    background-position-y: 50%;
    border-radius: 1px;
    border: 1px solid #EEEEEE;
    padding: 15px 20px;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.custom-select.active .custom-select__total {
    background-image: url('../image/exit.svg');
}

.custom-select ul {
    display: none;
    position: absolute;
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-top: none;
    border-radius: 0px 0px 8px 8px;
    padding: 10px;
    z-index: 2;
    top: calc(100% - 5px);
    box-shadow: 0px 8px 16px rgba(16, 24, 32, 0.06);
}

.custom-select.active ul {
    display: block;
}

.custom-select ul li {
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
}

.custom-select ul li:not(:last-child) {
    margin: 0 0 6px 0;
}

.custom-select ul li.selected {
    background: #FAFAFA;
}

.custom-select ul li:not(.selected):hover {
    background: rgb(236, 236, 236);
}

.custom-select.field-input-grey .custom-select__total {
    background-color: #FAFAFA;
    border: 1px solid #EEEEEE;
}

.custom-select.field-input-grey ul {
    background: #FAFAFA;
}

.custom-select.field-input-grey ul li.selected {
    background: #ffffff;
}

.custom-select.field-input-grey ul li:not(.selected):hover {
    background: rgb(236, 236, 236);
}

.custom-range {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.custom-range .custom-range__minus {
    position: absolute;
    top: 26px;
    right: 12px;
    width: 24px;
    height: 14px;
    background-color: transparent;
    background-image: url('../image/arrow-calc.svg');
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
    transform: rotate(180deg);
    cursor: pointer;
    transition-duration: .2s;
}

.custom-range .custom-range__plus {
    position: absolute;
    top: 11px;
    right: 12px;
    width: 24px;
    height: 14px;
    background-color: transparent;
    background-image: url('../image/arrow-calc.svg');
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
    cursor: pointer;
    transition-duration: .2s;
}

.custom-range .custom-range__minus:hover,
.custom-range .custom-range__plus:hover {
    background-color: #E7E7E7;
}

.custom-range .custom-range__input {
    position: relative;
}

.custom-range .custom-range__input:after {
    content: "";
    position: absolute;
    top: calc(100% + 4px);
    height: 4px;
    width: 100%;
    background: url('../image/scale.svg') no-repeat;
    background-size: contain;
}

.custom-range .custom-range__input .ui-slider-range {
    background: var(--primary-color);
    height: 4px;
    border-radius: 15px;
    border: none;
}

.custom-range .custom-range__input.ui-slider {
    background: #EEEEEE;
    height: 4px;
    border-radius: 15px;
    border: none;
    width: calc(100% - 8px);
    position: relative;
    top: -2px;
}

.custom-range .custom-range__input .ui-slider-handle {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 1px solid #EEEEEE;
    border-radius: 20px;
    top: -8px;
    cursor: ew-resize;
    box-shadow: 0px 0px 0px 4px white inset;
}

.custom-range__min-max {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 0 0;
    width: 100%;
}

.custom-range__min-max div {
    font-weight: 300;
    font-size: 12px;
    line-height: 16px;
    color: var(--third-text-color);
}

.custom-range input {
    width: 100%;
    padding: 15px 20px;
    height: 50px;
    border-radius: 1px;
    background: #FAFAFA;
    border: 1px solid #EEEEEE;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
}

.custom-checkbox div {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
    position: relative;
    padding: 0 0 0 44px;
}

.custom-checkbox div a {
    color: var(--primary-color);
}

.custom-checkbox div a:hover {
    text-decoration: underline;
}

.custom-checkbox input {
    display: none;
}

.custom-checkbox div:before {
    content: '';
    width: 32px;
    height: 32px;
    background: #FFF7F7;
    border-radius: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    position: absolute;
    left: 0;
    top: -5px;
}

.custom-checkbox div:after {
    content: '';
    position: absolute;
    left: 3px;
    top: -2px;
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border: 1px solid var(--primary-color);
}

.custom-checkbox input:checked + div:after {
    background-color: var(--primary-color);
    background-image: url('../image/checkbox.svg');
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
}

.custom-checkbox:hover div:after {
    background: #FFF7F7;
    border: 1px solid #C20029;
}

.custom-checkbox:hover input:checked + div:after {
    background-color: #C20029;
}

.contacts__tab-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.simple-select {
    position: relative;
}

.simple-select__total {
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.simple-select__total:hover {
    color: var(--primary-color) !important;
}

.simple-select__total:active {
    color: #C20029 !important;
}

.simple-select__total:after {
    content: "";
    width: 12px;
    height: 6px;
    background-image: url('../image/arrow-black.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.simple-select__total:hover:after {
    background-image: url('../image/arrow-red.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.simple-select__total:active:after {
    background-image: url('../image/arrow-high-red.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.simple-select__total_red {
    color: var(--primary-color);
}

.simple-select.active .simple-select__total:after {
    background-image: url('../image/exit.svg');
    background-size: 8px;
    background-position: center;
    width: 12px;
    height: 12px;
}

.simple-select ul {
    display: none;
    position: absolute;
    width: auto;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-top: none;
    border-radius: 0px 0px 8px 8px;
    padding: 10px;
    z-index: 11;
    top: calc(100% + 5px);
    box-shadow: 0px 8px 16px rgba(16, 24, 32, 0.06);
}

.simple-select.active ul {
    display: block;
}

.simple-select ul li {
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
}

.simple-select ul li:not(:last-child) {
    margin: 0 0 6px 0;
}

.simple-select ul li.selected {
    color: var(--primary-color);
}

.simple-select ul li:not(.selected):hover {
    background: #FFF7F7;
}

.simple-select ul li:not(.selected):active {
    background: #FFD1D7;
    color: #C20029;
}

.tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 24px;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 50px;
    font-weight: 300;
    font-size: 20px;
    line-height: 27px;
    cursor: pointer;
}

.tab:hover {
    background: #FFF7F7;
    border-color: var(--primary-color);
}

.tab:hover a {
    color: var(--primary-color);
}

.tab:active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.tab:active a {
    color: white;
}

.tab.tab_active {
    color: var(--primary-color);
    background: #FFF7F7;
    border: 1px solid #FFD1D7;
    cursor: default;
}

table th {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #8D8D8D;
    text-align: left;
    padding: 0 0 5px 0;
}

table th:last-child {
    text-align: right;
}

table tr td:last-child {
    text-align: right;
}

table td {
    padding: 15px 0;
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
}

table tr td:first-child {
    color: #8D8D8D;
    width: 64px;
}

table tr th:first-child {
    width: 64px;
}

table tbody tr:not(:last-child) td {
    border-bottom: 1px solid #EEEEEE;
}

table tr td:nth-child(2) {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.no-mb {
    margin-bottom: 0 !important;
}

.docs {
    display: flex;
    flex-direction: column;
    gap: 42px;
    position: relative;
}

.docs:after {
    content: "";
    position: absolute;
    background: #EEEEEE;
    width: 2px;
    left: 15px;
    top: 0;
    bottom: 0;
}

.docs li {
    padding: 0 0 0 60px;
    position: relative;
}

.docs li:after {
    padding: 2px 0;
    z-index: 1;
    content: "";
    width: 32px;
    height: 32px;
    background-image: url('../image/accuont-doc.svg');
    background-color: white;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: 0;
    top: -5px;
}

.docs a {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    text-decoration-line: underline;
    cursor: pointer;
}

.help {
    position: relative;
}

.help-initiator {
    cursor: pointer;
}

.help-initiator:hover + .help-text {
    display: block;
}

.help-text {
    position: absolute;
    top: calc(100% + 8px);
    left: -8px;
    display: none;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #FFFFFF;
    background: #111111;
    padding: 10px 12px;
    width: 280px;
    z-index: 5;
}

.help-text:after {
    content: ''; 
    position: absolute;
    top: -15px;
    left: 8px;
    border: 10px solid transparent;
    border-bottom: 10px solid #111111;
    z-index: 6;
}