

/* Start:/local/components/qualitica_redesign/banner/templates/maintenance/style.css?1726468093712*/
.costing-description__title {
    margin-bottom: 40px;
}

.costing-description__content {
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: left;

    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
}

@media screen and (max-width: 1024px) {
    .fullimage .content .fullimage-title {
        margin-top: 36px!important;
    }

    .costing-description__title {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 825px) {
    .costing-description__content {
        font-size: 16px;
        line-height: 24px;
    }
}

@media screen and (max-width: 600px) {
    .costing-description__content {
        display: none;
    }
}
/* End */


/* Start:/local/templates/geely_redesign/components/bitrix/news.list/maintenance/style.css?174789874628095*/
/* Reset styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Onest", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

[id*="wait_comp_"] {
    display: none !important;
}

textarea {
    resize: none;
}

/* Default */

.a__with-arrow {
    display: flex;
    gap: 7px;
    align-items: center;

    flex-wrap: nowrap;
}

/* Button */

.custom-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 16px;
    border-radius: 4px;
    width: max-content;

    font-family: "Onest", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.2px;

    border: none;

    cursor: pointer;

    transition: ease 0.3s;
}

.icon-btn {
    width: 4.8rem;
    height: 4.8rem;
}

.icon-btn-item::before {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
}

.btn-primary {
    background-color: #313e48;
    color: #fff;
}

.btn-primary:hover,
.btn-primary:active {
    background-color: #4c5963;
}

.btn-primary:disabled {
    background-color: #a3b0ba;
}

.btn-secondary {
    background-color: #e8edf1;
    color: #313e48;
}

.custom-btn.btn-secondary:hover,
.custom-btn.btn-secondary:active {
    background-color: #dce4eb;
}

.btn-secondary:disabled {
    background-color: #f5f8fa;
    color: #a3b0ba;
}

.btn-text {
    background-color: #fff;
    color: #313e48;
}

.custom-btn .btn-prev-icon {
    margin-right: 1.3rem;
}
.custom-btn .btn-post-icon {
    margin-left: 1.3rem;
}

.custom-btn .btn-post-icon:before,
.custom-btn .btn-prev-icon:before {
    display: flex;
    align-items: center;
}

.btn-up {
    width: 5.2rem;
    height: 5.2rem;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.07);
}

/* Scrollbar */

.custom-scroll::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f8fa;
}

.custom-scroll::-webkit-scrollbar-thumb {
    border-radius: 6px;
    background-color: #e0e6eb;
}

.custom-scroll::-webkit-scrollbar-track {
    border-radius: 6px;
    background-color: #f5f8fa;
}

/* Custom select */

/* The container must be positioned relative: */
.custom-select {
    position: relative;
}

.custom-select select {
    /*display: none; /*hide original SELECT element: */
    color: #000;
    background-color: #fff;

    font-family: "Onest", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */

    border: 1px solid #e8edf1;
    -webkit-appearance: none;
    appearance: none;
    padding: 8px 16px;
    position: relative;
    width: 100%;
}

.custom-select option {
    color: #000;
    padding: 8px 16px;
    border: 1px solid #e8edf1;
    cursor: pointer;

    font-family: "Onest", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.select-selected {
    color: #000;
    background-color: #fff;

    font-family: "Onest", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */

    border: 1px solid #e8edf1;
}

/* Style the arrow inside the select element: */
.select-selected:after,
.custom-select select:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;

    width: 6px;
    height: 6px;

    border: solid black;
    border-width: 0 1px 1px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);

    transition: all 0.3s ease;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 18px;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
    color: #000;
    padding: 8px 16px;
    border: 1px solid #e8edf1;
    cursor: pointer;

    font-family: "Onest", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover,
div.same-as-selected {
    color: #000;

    font-family: "Onest", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 21px */
}

.custom-select.no-border .select-items div,
.custom-select.no-border .select-selected {
    border: unset;
}

/* Checkbox */

input[type="checkbox"] {
    accent-color: #313e48;
    width: 1.6rem;
    height: 1.6rem;
    padding: 0.2rem;
}

/* Rounded checkbox */

.rounded-checkbox {
    display: block;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.rounded-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #eee;

    border-radius: 15px;
}

.rounded-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}

.rounded-checkbox input:checked ~ .checkmark {
    background-color: #313e48;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.rounded-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.rounded-checkbox .checkmark:after {
    left: 6px;
    top: 3px;
    width: 3px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* .custom-input,
.custom-input::placeholder {
    color: #8e9ca6;
}

.custom-input {
    padding: 8px 16px;
    border: 1px solid #e8edf1;
    color: #000;

    font-family: "Onest", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
} */

section.maintenance__costing {
    height: 480px;
    background: url("/local/templates/geely_redesign/components/bitrix/news.list/maintenance/../../assets/img/calculator/calculator-header-bg.png") center
    no-repeat;
}

section.maintenance__costing .maintenance__costing-description {
    max-width: 800px;
    padding-top: 90px;
}

section.maintenance__costing .costing-description__title {
    font-family: "Wadik", sans-serif;
    font-size: 55px;
    font-weight: 400;
    line-height: 60.5px;
    letter-spacing: -0.02em;
    text-align: left;

    color: #fff;

    margin-bottom: 40px;
}

section.maintenance__costing .costing-description__content {
    font-family: "Onest";
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
    text-align: left;

    color: rgba(255, 255, 255, 0.7);
}

h2.calculator__step-header {
    color: #000;
    font-family: "Wadik", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 26.4px;
    letter-spacing: -0.264px;
    margin-bottom: 32px;
}

/* First step */

.first-step__elements {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 40px;
    width: 59%;
}

.first-step__wrapper {
    display: flex;
    gap: 32px;
}

.form-element__title {
    color: #000;

    font-family: "Wadik", sans-serif !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 21.6px */
    letter-spacing: -0.216px;

    margin-bottom: 32px;
}

.form-element__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    column-gap: 24px;
    row-gap: 24px;
}

.form-element__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-element__item label {
    color: #000;

    font-family: "Onest", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 18px */
}

.first-step__description {
    width: 39%;
    /* max-width: 400px; */
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.description__item {
    display: flex;
    flex-direction: column;
}

.custom-combobox__input {
    appearance: none;
}

.item__useful-links {
    display: flex;
    gap: 20px;
}

.item__useful-links a {
    color: #2d5071;
}

.description__item--title {
    color: #000;

    font-family: "Wadik", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 21.6px */
    letter-spacing: -0.216px;

    margin-bottom: 16px;
}

.description__item--text {
    color: #8e9ca6;
    font-family: "Onest", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 26.1px */
    letter-spacing: -0.216px;
}

.description__item--text.item__useful-links--docs div {
    flex-direction: column;
}

.description__item--image img {
    width: 100%;
    max-width: 100%;
}

.choose-dealer {
    margin-top: 56px;
}

.choose-dealer__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.6px;
    letter-spacing: -0.012em;
    text-align: left;

    margin-bottom: 32px;
}

.choose-dealer .choose-dealer__item .custom-btn.btn-secondary .btn-post-icon {
    display: none;
}

/* Third step */

.third-step__wrapper {
    width: 100%;
    display: flex;
    gap: 72px;
}

.third-step__description {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 60%;
    padding: 32px 40px;
    background-color: #f5f8fa;
}

.third-step__form {
    width: 50%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

.third-step__form .form___inputs {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-self: stretch;
}

.third-step__form .form__agreements {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.third-step__form .form__agreements .custom-btn {
    margin-top: 48px;
    width: 100%;
}

.rounded-checkbox {
    padding-left: 32px;
}

.description__item--text > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    font-family: "Onest", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.216px;
}

.description__item--text > div .v2-input-checkbox {
    margin: 0 !important;
}

.description-adres {
    display: flex;
    flex-direction: column;
    gap: 8px;

    color: #000;

    font-family: "Onest", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 26.1px */
    letter-spacing: -0.216px;
}

.description-adres span:last-child {
    color: #8e9ca6;
    font-family: "Onest", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 26.1px */
    letter-spacing: -0.216px;
}

.description__details .description__item--text span:last-child {
    color: #000;

    text-align: right;
    font-family: "Onest", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.264px;
}

.description__total .description__item--text span:last-child {
    color: #000;

    text-align: right;
    font-family: "Onest", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 145%; /* 31.9px */
    letter-spacing: -0.264px;
}

.description__total .description__item--text span.price-symbol {
    font-style: normal;
    font-weight: 400;
}

.third-step__form .form__item {
    display: flex;
    flex-direction: column;
    gap: 8px;

    color: #000;

    font-family: "Onest", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 21px */
}

.form__agreements {
    margin-top: 56px;
}

/* Popup */

.popup-wrapper {
    display: none;

    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background-color: rgba(0, 0, 0, 0.5);
}

.popup-wrapper.active-popup {
    display: block;
}

.calculator__popup {
    background-color: #fff;
    display: flex;
    width: 485px;
    padding: 32px 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.calculator__popup .popup__title {
    color: #000;

    font-family: "Wadik", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 33px */
    letter-spacing: -0.264px;

    margin-bottom: 16px;
}

.calculator__popup .popup__text {
    color: #000;

    font-family: "Onest", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 26.1px */
    letter-spacing: -0.216px;

    margin-bottom: 64px;
}

.popup__footer .custom-btn {
    width: 100%;
}

.calculator__popup .popup__close {
    cursor: pointer;
    position: absolute;
    top: 32px;
    right: 40px;
}

.text-uppercase {
    text-transform: uppercase;
}

.maintenance-form {
    margin: 30px 0;
}

.maintenance-form__to-link {
    color: #2c2c2c !important;
}

.maintenance-form .form-element__item .search-block {
    z-index: unset;
    position: relative !important;
    top: unset;
    right: unset;
    bottom: unset;
    left: unset;
    margin: 0;
    background-color: transparent !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 335px !important;
}

@media (max-width: 756px) {
  .maintenance-form .form-element__item .search-block {
    max-width: none !important;
  }
}

.maintenance-form .form-element__item .search-block.search-block--full {
    max-width: 100% !important;
}

.maintenance-form .form-element__item .search-block.search-block--full .search-input {
    max-width: 100% !important;
}

.maintenance-form .form-element__item .search-block.search-block--full .search-textarea {
    max-width: 100% !important;
}

.maintenance-form .form-element__item .search-block.disabled {
    pointer-events: none !important;
}

.maintenance-form .form-element__item .search-block.disabled .search-input {
    border: 1px solid #d3d3d3;
    opacity: .6;
}

.maintenance-form .form-element__item .search-block.disabled .search-block__title {
    opacity: .6;
}

.maintenance-form .form-element__item .search-block__title {
    font-family: "Onest", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.45;
    color: #0b0d0c;
}

.maintenance-form .form-element__item .search-input {
    position: relative;
    height: 40px;
    gap: 0;
    width: 100% !important;
    max-width: 335px !important;
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    flex-direction: row;
    border: 1px solid #d3d3d3;
    background: #fff;
    border-radius: 4px;
    font-family: "Onest", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.45;
    color: #0b0d0c;
    margin-top: 8px;
}
@media (max-width: 756px) {
  .maintenance-form .form-element__item .search-input {
    max-width: none !important;
  }
}

.maintenance-form .form-element__item .search-input input {
    font-size: 16px;
    padding: 0;
    padding-left: 15px;
    position: relative;
    z-index: 1;
    flex: 1;
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    font-family: "Onest", sans-serif;
    font-weight: 400;
    line-height: 1.45;
    color: #0b0d0c;
    border-radius: 4px;
    text-align: left;
}

.maintenance-form .form-element__item .search-textarea {
    position: relative;
    height: 100px;
    gap: 0;
    width: 100% !important;
    max-width: 335px !important;
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    flex-direction: row;
    border: 1px solid #d3d3d3;
    background: #fff;
    border-radius: 4px;
    font-family: "Onest", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.45;
    color: #0b0d0c;
    margin-top: 8px;
}

.maintenance-form .form-element__item .search-textarea textarea {
    font-size: 16px;
    padding: 0;
    padding-left: 15px;
    padding-top: 10px;
    position: relative;
    z-index: 1;
    flex: 1;
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    font-family: "Onest", sans-serif;
    font-weight: 400;
    line-height: 1.45;
    color: #0b0d0c;
    border-radius: 4px;
    text-align: left;
}

.maintenance-form .form-element__item .search-textarea textarea::placeholder {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: silver;
}

.maintenance-form .form-element__item .search-input input::placeholder {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: silver;
}

.maintenance-form .form-element__item .search-input.search-input--date input {
    padding-right: 10px;
}

.maintenance-form .form-element__item .search-block__error {
    position: absolute;
    bottom: -26px;
    left: 0;
}

.maintenance-form .form-element__item .search-icon {
    position: absolute;
    right: 10px;
    top: 10px;
    transform: rotate(-90deg);
    margin-left: 8px;
    z-index: 1;
    margin: 0;
    padding: 0;
    line-height: 0;
    border: 0;
    transition: all .3s ease-in-out;
    pointer-events: none;
}

.rotate {
    transform: rotate(90deg) !important;
}

.maintenance-form .form-element__item .city-list-block {
    width: 100%;
    z-index: 20;
    margin-top: 4px;
    border-radius: 4px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, .12);
    position: absolute;
    left: -1px;
    background: #fff;
    height: auto !important;
    max-height: 300px !important;
    background-color: #fff !important;
    overflow: auto;
}

.maintenance-form .form-element__item .dealer-list-title {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
    color: rgba(0, 0, 0, .75);
    font-size: 14px;
    margin-top: 10px;
}

.maintenance-form .form-element__item .list-block {
    position: relative;
    box-shadow: unset;
    margin: 0;
    width: 100%;
    overflow-y: scroll;
    background-color: #fff;
    scrollbar-width: none;
    border-radius: 4px;
    font-size: 14px;
    height: auto !important;
}

.maintenance-form .form-element__item .city-list-block::-webkit-scrollbar {
    background: #e6e6e6;
    width: 5px;
    height: 8px;
    background-color: #aaa;
}

.maintenance-form .form-element__item .city-list-block::-webkit-scrollbar-thumb {
    background: silver;
}

.maintenance-form .form-element__item .list-block::-webkit-scrollbar {
    background: #e6e6e6;
    width: 5px;
    height: 8px;
    background-color: #aaa;
}

.maintenance-form .form-element__item .list-block::-webkit-scrollbar-thumb {
    background: silver;
}

.maintenance-form .form-element__item .search-item-el {
    padding: 10px 16px;
    line-height: 20px;
    box-sizing: border-box;
    width: 100%;
    color: #0b0d0c;
    font-size: 14px;
    cursor: pointer;
    font-family: "Onest", sans-serif;
    font-weight: 400;
    height: auto !important;
}

.maintenance-form .form-element__item .list-custom-scrollbar {
    height: calc(100% - 32px);
    position: absolute;
    right: 10px;
    width: 4px;
    background: #e6e6e6;
    top: 16px;
    border-radius: 4px;
}

.maintenance-form .form-element__item .list-custom-scrollbar-thumb {
    width: 4px;
    background: silver;
    border-radius: 4px;
    right: 0;
    position: absolute;
    height: 25%;
}

.maintenance-form .form-element__item .search-input .just-validate-error-label {
    position: absolute;
    bottom: -25px;
    left: 0;
}

.v2-input-checkbox {
    flex-shrink: 0;
}

.v2-check-agreement a {
    text-decoration: underline;
}

.dealer-total-price-result-value.hide,
.dealer-additional-result-value.hide {
    display: none;
}

.description__item--additional {
    margin-top: 16px;
}

.description__item--additional .image-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.description__item--additional .image-block img {
    max-width: 100%;
}

.text-content.text-content--success-form,
.maintenance-form {
    margin-bottom: 50px;
}

.find-dealer-page__hero-section {
    padding: 0 40px !important;
}

.find-dealer-component .find-dealer__filters {
    padding: 0 40px !important;
}

.find-dealer-app__go-back-button-wrapper {
    padding: 0 40px !important;
}

.find-dealer-component .find-dealer .ymaps-container-wrapper--with-side-form .find-dealer-app__form {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.find-dealer-component .find-dealer .container {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.find-dealer-page__hero-section > .v2-heading2 {
    color: #000;
    font-family: "Wadik", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 26.4px;
    letter-spacing: -0.264px;
    margin-bottom: 32px;
}

.find-dealer-page {
    padding-top: 32px;
}

.find-dealer-component .find-dealer .dealer-map-container .search-input input {
    padding-right: 30px;
}

.just-validate-error-label {
    width: max-content;
}

.agreements__item .v2-check-agreement {
    position: relative;
}

.agreements__item .v2-check-agreement .v2-input-checkbox {
    position: static;
}

.agreements__item .v2-check-agreement .v2-input-checkbox .just-validate-error-label {
    position: absolute;
    left: 0;
    bottom: -20px;
}

.maintenance-success-message {
    padding-top: 80px;
    padding-bottom: 40px;
}
.insurance__find-dealer {
    margin-bottom: 0 !important;
}

.find-dealer-component .find-dealer .ymaps-container-wrapper--with-side-form {
    padding-bottom: 40px !important;
}

.third-step__gap {
    padding-top: 40px;
    background-color: #f8f8f8;
}

.third-step__block {
    padding-top: 64px !important;
}

.maintaince-page__text-descroption {
    max-width: 1230px;
    font-family: OpenSans-Regular, "OpenSans-Regular", Arial, sans-serif !important;
    font-weight: 400;
    font-size: 14px !important;
    line-height: 20px !important;
}

.maintaince-page .v2-key-features .v2-wrapper .v2-key-features__button:last-child {
    display: none !important;
}

@media screen and (max-width: 1025px) {
    .form-section-container {
        padding: 0 20px;
    }

    .third-step__wrapper {
        flex-direction: column;

        gap: 32px;
    }

    .third-step__description {
        width: unset;

        gap: 32px;

        padding: 20px;
    }

    .third-step__form {
        width: 100%;
        max-width: unset;
    }

    .description__item--text > div span:last-child {
        white-space: nowrap;
    }
}

@media screen and (max-width: 769px) {
    .first-step__wrapper {
        flex-direction: column;
    }

    .first-step__elements {
        width: unset;
        gap: 32px;
    }

    .first-step__description {
        width: unset;
    }

    .choose-dealer {
        margin-top: 32px;
        padding: 0 16px;
    }

    .find-dealer-page__hero-section {
        padding: 0 20px !important;
    }

    .find-dealer-component .find-dealer__filters {
        padding: 0 20px !important;
    }

    .find-dealer-app__go-back-button-wrapper {
        padding: 0 20px !important;
    }

    .find-dealer-component .find-dealer .ymaps-container-wrapper--with-side-form .find-dealer-app__form {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .find-dealer-component .find-dealer .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .maintaince-page .find-dealer-component .search-block {
        max-width: 333px !important;
        margin: 0 auto !important;
    }

    .third-step__gap {
        padding-top: 20px;
    }
}

@media screen and (max-width: 540px) {
  .maintaince-page .find-dealer-component .search-block {
    max-width: none !important;
  }
}

@media screen and (max-width: 376px) {
    section.maintenance__costing {
        background-size: 100%;
    }

    .fullimage .content .fullimage-title {
        margin-top: 10px !important;
        max-width: 280px;
    }

    section.maintenance__costing .maintenance__costing-description {
        padding: 24px 16px 0 16px;
    }

    section.maintenance__costing {
        height: 125px;
    }

    section.maintenance__costing .costing-description__title {
        font-size: 24px;
        font-weight: 400;
        line-height: 26.4px;
        letter-spacing: -0.02em;
        text-align: left;
    }

    section.maintenance__costing .costing-description__content {
        display: none;
    }

    h2.calculator__step-header {
        margin-bottom: unset;

        font-size: 18px;
        font-weight: 600;
        line-height: 21.6px;
        letter-spacing: -0.012em;
        text-align: left;
    }

    .form-element__items {
        grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    }

    .first-step__wrapper .form-element__items .form-element__item .a__with-arrow {
        display: none;
    }
    .form-element__title {
        font-size: 16px;
        font-weight: 600;
        line-height: 19.2px;
        letter-spacing: -0.012em;
        text-align: left;
    }

    .form-element__title {
        margin-bottom: 16px;
    }

    .first-step__description .description__item--text {
        font-size: 14px;
        font-weight: 400;
        line-height: 20.3px;
        letter-spacing: -0.012em;
        text-align: left;
    }

    .choose-dealer__title {
        display: none;
    }

    .choose-dealer .choose-dealer__item .custom-btn.btn-secondary {
        width: 100%;
    }

    .choose-dealer .choose-dealer__item .custom-btn.btn-secondary .btn-post-icon {
        display: block;
    }

    .third-step .calculator__step-header {
        margin-bottom: 32px;
    }

    .third-step__title {
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        text-align: left;
    }

    .description__item--title {
        font-size: 14px;
        font-weight: 600;
        line-height: 21px;
        text-align: left;
    }

    .description-adres {
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        text-align: left;
    }

    .description-adres span:last-child,
    .description__item--text > div {
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        text-align: left;
    }
    .description__details .description__item--text span:last-child {
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        text-align: left;
    }

    .description__total .description__item--text span:last-child {
        font-size: 12px;
        font-weight: 600;
        line-height: 18px;
        text-align: left;
    }

    .description__total .description__item--text span:last-child .price-symbol {
        font-weight: 400;
    }

    .calculator__popup {
        width: 343px;
        padding: 20px;
    }

    .calculator__popup .popup__header {
        font-family: "Wadik", sans-serif;
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        text-align: left;
    }

    .calculator__popup .popup__body .popup__text {
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        text-align: left;

        margin-bottom: 32px;
    }

    .calculator__popup .popup__close {
        top: 20px;
        right: 20px;
    }

    .find-dealer-page__hero-section > .v2-heading2 {
        margin-bottom: unset;
        font-size: 18px;
        font-weight: 600;
        line-height: 21.6px;
        letter-spacing: -0.012em;
        text-align: left;
    }

    .find-dealer-page {
        padding-top: 20px;
    }

    .third-step__block {
        padding-top: 50px !important;
    }
}

/* End */
/* /local/components/qualitica_redesign/banner/templates/maintenance/style.css?1726468093712 */
/* /local/templates/geely_redesign/components/bitrix/news.list/maintenance/style.css?174789874628095 */
