/* Сброс стилей и базовые настройки */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'MMC', 'Inter', Arial, sans-serif;
    background: #fff;
    color: #222;
    min-height: 100vh;
}

/* Здесь будут стили для всех блоков */

.container-md{
    max-width: 80%;
}

.hero {
    background-image: url("../img/check-vin-inner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 540px;
    color: #fff;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 48px 32px 32px 32px;
    position: relative;
}

.hero__content {
    z-index: 2;
    max-width: 68%;
}

.hero__title {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 120px;
}

.hero__brand {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.hero__button {
    background: #e60000;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    border: none;
    border-radius: 2px;
    padding: 14px 32px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
    width: 400px;
}
.hero__button:hover {
    background: #b80000;
}

.hero__image {
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 320px;
    position: relative;
}
.hero__key {
    width: 180px;
    margin-right: 24px;
}
.hero__shield {
    position: absolute;
    top: 24px;
    right: 32px;
    width: 80px;
    opacity: 0.8;
}

.main-content {
    background: #fff;
    padding: 40px 32px 32px 32px;
    display: flex;
    justify-content: center;
}

.vin-section {
    width: 85%;
}

.vin-section__desc {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #222;

}

.vin-form {
    display: flex;
    margin: 24px 0 32px 0;
    justify-content: space-between;
}
.vin-form__input {
    padding: 12px 16px;
    font-size: 1rem;
    height: 65px;
    border: 1px solid #bbb;
    border-radius: 2px 0 0 2px;
    outline: none;
    width: 70%;
}
.vin-form__input:focus {
    border-color: #e60000;
}
.vin-form__button {
    background: #e60000;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    border: none;
    height: 65px;
    border-radius: 0 2px 2px 0;
    padding: 0 32px;
    cursor: pointer;
    transition: background 0.2s;
    width: 20%;

}
.vin-form__button:hover {
    background: #b80000;
}

.vin-result__vin {
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
    font-size: 20px;
    line-height: 1.4;
}
.vin-result__desc {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.4;

}
.vin-result__list {
    margin-bottom: 22px;
    padding-left: 18px;
    font-size: 20px;
    line-height: 1.4;

}
.vin-result__list li {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.4;


}
.vin-result__list b {
    font-weight: 600;
}
.vin-result__note {
    color: #222;
    font-size: 20px;
    line-height: 1.4;
}

/* Скрываем блок результатов по умолчанию */
.vin-result {
    display: none;
}

/* Класс для отображения блока результатов */
.vin-result.show {
    display: block;
}

/* Адаптивные стили для основного содержимого */

/* Планшеты и средние экраны */
@media (max-width: 1200px) {
    .container-md {
        max-width: 90%;
    }

    .hero {
        height: 480px;
        padding: 40px 24px 28px 24px;
    }

    .hero__content {
        max-width: 75%;
    }

    .hero__title {
        font-size: 2rem;
        margin-bottom: 100px;
    }

    .hero__brand {
        font-size: 1.8rem;
    }

    .hero__button {
        font-size: 18px;
        width: 350px;
    }

    .main-content {
        padding: 32px 24px 24px 24px;
    }

    .vin-section {
        width: 90%;
    }

    .vin-section__desc {
        font-size: 18px;
    }

    .vin-result__vin,
    .vin-result__desc,
    .vin-result__list,
    .vin-result__list li,
    .vin-result__note {
        font-size: 18px;
    }
}

@media (max-width: 900px) {
    .container-md {
        max-width: 95%;
    }

    .hero {
        height: 420px;
        padding: 32px 20px 24px 20px;
        background-size: cover;
        background-position: center;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__title {
        font-size: 1.8rem;
        margin-bottom: 80px;
    }

    .hero__brand {
        font-size: 1.6rem;
    }

    .hero__button {
        font-size: 16px;
        width: 300px;
        padding: 12px 24px;
    }

    .hero__image {
        display: none;
    }

    .main-content {
        padding: 24px 20px 20px 20px;
    }

    .vin-section {
        width: 100%;
    }

    .vin-form {
        flex-direction: column;
        gap: 12px;
    }

    .vin-form__input {
        width: 100%;
        border-radius: 2px;
    }

    .vin-form__button {
        width: 100%;
        border-radius: 2px;
        padding: 12px 24px;
    }
}

@media (max-width: 600px) {
    .container-md {
        max-width: 100%;
        padding: 0 16px;
    }



    .sign_up-item-textarea {

        height: 280px !important;
    }

    .hero {
        height: 360px;
        padding: 24px 16px 20px 16px;
    }

    .hero__title {
        font-size: 1.5rem;
        margin-bottom: 60px;
    }

    .hero__brand {
        font-size: 1.3rem;
    }

    .hero__button {
        font-size: 14px;
        width: 100%;
        padding: 10px 20px;
    }

    .main-content, .hero {
        padding: 20px 16px 16px 16px;
    }

    .vin-section__desc {
        font-size: 16px;
    }

    .vin-form {
        margin: 20px 0 24px 0;
    }

    .vin-form__input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .vin-form__button {
        padding: 10px 20px;
        font-size: 14px;
    }

.vin-form__input, .vin-form__button{
    margin: 0 0 20px 0;
    height: 50px;
}

    .vin-result__vin,
    .vin-result__desc,
    .vin-result__list,
    .vin-result__list li,
    .vin-result__note {
        font-size: 16px;
    }

    .vin-result__list {
        padding-left: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 320px;
        padding: 20px 12px 16px 12px;
    }

    .hero__title {
        font-size: 1.3rem;
        margin-bottom: 50px;
    }

    .hero__brand {
        font-size: 1.1rem;
    }

    .hero__button {
        font-size: 13px;
        padding: 8px 16px;
    }

    .main-content {
        padding: 16px 12px 12px 12px;
    }

    .vin-section__desc {
        font-size: 14px;
    }

    .vin-form__input,
    .vin-form__button {
        font-size: 14px;
        padding: 8px 12px;
    }

    .vin-result__vin,
    .vin-result__desc,
    .vin-result__list,
    .vin-result__list li,
    .vin-result__note {
        font-size: 14px;
    }

    .vin-result__list {
        padding-left: 12px;
    }
}

@media (max-width: 900px) and (orientation: landscape) {
    .hero {
        height: 300px;
        padding: 20px 16px 16px 16px;
    }

    .hero__title {
        font-size: 1.4rem;
        margin-bottom: 40px;
    }

    .hero__brand {
        font-size: 1.2rem;
    }

    .hero__button {
        font-size: 13px;
        width: 250px;
        padding: 8px 16px;
    }
}

@media (max-width: 360px) {
    .hero {
        height: 280px;
        padding: 16px 8px 12px 8px;
    }

    .hero__title {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .hero__brand {
        font-size: 1rem;
    }

    .hero__button {
        font-size: 12px;
        padding: 6px 12px;
    }

    .main-content {
        padding: 12px 8px 8px 8px;
    }

    .vin-section__desc {
        font-size: 13px;
    }

    .vin-form__input,
    .vin-form__button {
        font-size: 12px;
        padding: 6px 8px;
    }

    .vin-result__vin,
    .vin-result__desc,
    .vin-result__list,
    .vin-result__list li,
    .vin-result__note {
        font-size: 13px;
    }
}

/* Стили для формы записи на сервис */
.sign_up-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.sign_up-col {
    display: flex;
    flex-direction: column;
    width: 49%;
}
.sign_up-item-textarea {
    height: 100%;
    font-size:16px;
    margin: 16px 0 4px 0;
}
.sign_up-item-textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid #686D71;
    box-sizing: border-box;
    margin: 16px 0 4px 0;
    resize: none;
}
.sign_up-item input{
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #686D71;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 135%;
    color: #686D71;
    width:100%;
    margin: 16px 0 25px 0;
    padding: 0 0 0 4px;
}

.sign_up-item select{
    height: 65px;
    background: #FFFFFF;
    border: 1px solid #686D71;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 135%;
    color: #686D71;
    width:100%;
    margin: 0 0 25px 0;
    padding: 0 0 0 4px;
}

.sign_up-b {
    background: #ed0000;
    color: white;
    font-size: 16px;
    padding: 16px 50px;
    text-transform: uppercase;
    margin: 40px 0 10px 0;
    cursor: pointer;
    transition: .3s;
    border: 1px solid #ed0000;
}

.sign_up-row_b{
    margin: 0 0 160px 0;
    flex-direction: column;
}

.sign_up-b:hover {
    background: white;
    color: #ED0000;
}
.sign_up-title {
    font-size: 48px;
    font-weight: bold;
    color: #000000;
    line-height: 110%;
    margin-top: 4px;
    margin-bottom: 44px;
    text-align: center;
}
.sign_up-assent {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.sign_up-assent label {
    margin: 0 0 0 15px;
    font-weight: 500;
}
.sign_up-assent br {
    display:none;
}
.sign_up-assent a {
    color:black;
    transition: 0.3s;
    text-decoration: underline;
}
.sign_up-assent a:hover {
    color: red;
}

/* Адаптивные стили для формы записи на сервис */
@media (max-width: 768px) {
    .sign_up-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .sign_up-item input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .sign_up-b {
        font-size: 16px;
        padding: 12px 24px;
        width: 100%;
    }

    .sign_up-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .sign_up-assent label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .sign_up-item input {
        padding: 8px 10px;
        font-size: 13px;
    }

    .sign_up-b {
        font-size: 14px;
        padding: 10px 20px;
    }

    .sign_up-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .sign_up-assent {
        margin-bottom: 20px;
    }

    .sign_up-assent label {
        font-size: 12px;
    }
}

/* Дополнительные улучшения для доступности */
@media (prefers-reduced-motion: reduce) {
    .hero__button,
    .vin-form__button,
    .sign_up-b,
    .vin-form__input,
    .sign_up-item input {
        transition: none;
    }
}

/* Стили для экранов с высоким DPI */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero {
        background-image: url("../img/check-vin-inner.png");
        background-size: cover;
        background-position: center;
    }
}

/* Стили для печати */
@media print {
    .hero__button,
    .vin-form__button,
    .sign_up-b {
        display: none;
    }

    .hero {
        background: none;
        color: #000;
        height: auto;
        padding: 20px;
    }

    .main-content {
        background: #fff;
        color: #000;
    }
}












#calculator .btn_all {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
}
.container.bg-calc > container_inner  {
    padding: 42px 45px;
}
.mobile {
    display:none;
}
#calculator .calc_title {
    font-family: MMC;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 110%;
}
.bg-calc .container_inner {
    background: #F5F5F5;
}
.bg-calc__wrapper {
    padding: 42px 45px;
}
.calc_setting-col {
    width:49%
}
.calc_car_age h3 {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    margin: 0 0 20px 0;
}
.calc_car_age p {
    font-size: 12px;
    line-height: 14px;
}
.age-list {
    display:flex;
    margin:40px 0 50px;
    padding: 0 0 0 23px;
}
.age-list > div {
    margin: 0 7% 0 0;
    cursor: pointer;
}
.age-list input{
    appearance: none;
}
.age-list label {
    cursor: pointer;
    position: relative;
    font-size:16px
}
.age-list label:before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    background: white;
    border: 1px solid black;
    border-radius: 50%;
    top: 3px;
    left: -22px;
}
.age-list .active-age label:after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    background: #ED0000;
    border-radius: 50%;
    top: 6px;
    z-index: 2;
    left: -19px;
}
.age-list .active-age label:before {
    border: 1px solid #ED0000;
}
#calculator .select_to .calc_select {
    width: 49%;
}
.select_dop_work > p {
    font-size: 12px;
    line-height: 14px;
    padding: 20px 0 0 0;
}
.wrap_add_work, .wrap_add_accessories {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 0 40px 22px;
}
.wrap_add_accessories > div, .wrap_add_work > div {
    width: 31%;
    margin:5px 0;
}
.wrap_add_accessories input, .wrap_add_work input {
    appearance: none;
    display: none;
}
.wrap_add_accessories label, .wrap_add_work label {
    position: relative;
    cursor:pointer;
}
.wrap_add_accessories label.withImg:before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    background: white;
    border: 1px solid black;
    top: 3px;
    left: -55px;
}

.wrap_add_accessories label.notImg:before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    background: white;
    border: 1px solid black;
    top: 3px;
    left: -22px;
}

.wrap_add_accessories label.notImg {
    margin-left: 7px;
    padding-left: 33px;
}

.wrap_add_work label:before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    background: white;
    border: 1px solid black;
    top: 3px;
    left: -22px;
}

.wrap_add_accessories .active-dop_work label:after, .wrap_add_work .active-dop_work label:after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    background: red;
    /* border: 1px solid black; */
    border-radius: 50%;
    top: 7px;
    left: -18px;
}

.wrap_add_accessories .active-dop_work label.withImg:after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    background: red;
    /* border: 1px solid black; */
    border-radius: 50%;
    top: 7px;
    left: -51px;
}

.wrap_add_accessories .active-dop_work label.notImg:after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    background: red;
    /* border: 1px solid black; */
    border-radius: 50%;
    top: 7px;
    left: -18px;
}

.wrap_add_accessories .disable label:after, .wrap_add_work .disable label:after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    background:#686D71;
    border: 1px solid black;
    top: 3px;
    left: -22px;
    border-radius: 0 !important;
    z-index:4;
}

#calculator .form-group {
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
}
.table_dealers {
    display:flex;
    flex-direction: column;
    margin:40px 0 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
}
.table-header {
    display:flex;
    background: #686D71;
    color: #FFFFFF;
    padding:25px 0;
    align-items: center;
    justify-content: space-between;
}
.table-header_name {
    width:30.6%;
    padding: 0 0 0 15px;
}

.table-header_adress {
    width:33%;
}
.table-header_detalis {
    width:11%;
}

.table-header_work {
    width:11%;
}
.table-header_total {
    width:11%;
    cursor:pointer;
}
.table-header_name img {
    vertical-align: baseline;
    transform: rotateY(180deg);
}
.table-header_name.rotateY-img img {
    transform: rotateY(0);
}
.table-header_total img {
    vertical-align: baseline;
}
.table-header_total.rotateY-img img {
    transform: rotateY(180deg);
}
.table_row {
    display:flex;
    padding:25px 0;
    height: 114px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #BFC2C4;
}
.table-wrapper {
    display:flex;
    flex-direction: column;
    max-height: 448px;
    overflow: auto;
}
.table_details_wrapper {
    display: flex;
    flex-direction: column;
}
.details_tab {
    width: 50%;
    border: 1px solid #686D71;
    display: flex;
}
.table-wrapper_name {
    width:30.6%;
    padding: 0 0 0 15px;
}
.table-wrapper_name span {
    font-size: 12px;
    font-weight: 400;
}
.table-wrapper_adress {
    width:33%;
    font-size: 12px;
    font-weight: 400;
}
.table-wrapper_detalis,
.table-wrapper_work,
.table-wrapper_total {
    display: flex;
    flex-direction: column;
    width:11%;
}
.table-wrapper_detalis span:nth-child(2),
.table-wrapper_work span:nth-child(2),
.table-wrapper_total span:nth-child(2) {
    color: #BFC2C4;
    text-decoration-line: line-through;
    display: none;
}
.table-wrapper_detalis span:nth-child(2).show,
.table-wrapper_work span:nth-child(2).show,
.table-wrapper_total span:nth-child(2).show {
    display: block;
}
.table_row {
    cursor: pointer;
}
.table_row.selectedDC {
    background: red;
    color:white;
}
.list-city-input {
    color: #686D71;
}
.list-city-input::placeholder {
    font-size:16px;
    color: #686D71;
}

.wrapper-list-city {
    position: relative;
    width: 49%;
}
#list-city {
    position: absolute;
    left: 0;
    width: 100%;
    height:0px;
    max-height: 410px;
    background: white;
    display: flex;
    flex-direction: column;
    z-index: 1;
    overflow-y: auto;
    transition: 1s;
}
.list-city-input:focus ~ #list-city {
    height: auto;
}
#list-city span {
    font-size: 16px;
    padding: 5px 10px;
    cursor: pointer;
}
#list-city span:hover {
    background: #ff0000;
    color:white;
}

.stars-containers {
    display: flex;
    align-items: flex-end;
    margin: 4px 0 0 0;
}
.stars-containers img {
    object-fit: fill;
    margin: 0 10px 0 0;
    opacity: 0.7;
}
.jstars {
    transform: translateY(4px);
}
.stars-containers p {
    font-size: 1rem;
    color: #00000078;
    font-weight: 600;
    margin: 0 0 0 10px;
    width: 30px;
    transform: translateY(4px);
}
.bonus_price {
    display:flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 10px 0 0 0;
}
.bonus_price--text {
    font-size: 18px;
    font-weight: 700;
    margin: 0 20px 0 0;
}
.table_row.selectedDC .stars-containers p {
    color: white
}
.table_row.selectedDC .jstars-empty {
    color: red !important;
}
.table_row.selectedDC .jstars-filled {
    color: white !important;
}
.stars-containers .popap {
    padding: 1px 5px;
    margin: 3px 0 0 0;
    cursor: pointer;
    transform: translateY(4px);
}
.select-str  {
    content: '';
    display: block;
    width: 20px;
    position: absolute;
    top: 0;
    right: 4%;
    /* background-repeat: no-repeat; */
    background: url(/html/mmc-2021/img/select_str.svg);
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    cursor: pointer;
    transition: 0.3s;
}
.list-city-input:focus ~ .select-str {
    transform: rotate(-180deg);
}
.bonus_price--toggle{
    width:364px;
    height:50px;
    position: relative;
    cursor: pointer;
    background: #ED0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    color: white;
    text-transform: uppercase;
}
.bonus_toogle {
    position: absolute;
    border-radius: 50%;
    background: #ED0000;
    left: 1px;
    top:1px ;
    width:22px;
    height:22px;
    transition: 0.3s;
}
.bonus_price--toggle.checked {
    background: #686D71;

}
.bonus_price--toggle.checked  .bonus_toogle {
    left: 50%;
}
.bonus_price--extra {
    display: none;
}
.bonus_price--extra.show {
    display: block;
}
.bonus_price--extra p{
    font-weight: 400;
    font-size: 14px;
    line-height: 135%;
}
.bonus_price--extra p:nth-child(1) {
    padding: 33px 0 27px;
}
.bonus_price--extra p:nth-child(2) {
    padding: 0 0 30px;
}
.bonus_price--btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bonus_price--btns a {
    width: 330px;
    height: 50px;
    background: #ED0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 135%;
    color: white;
    text-transform: uppercase;
}
.bonus_price--btns span {
    font-weight: 700;
    padding: 0 0 0 6px;
}
.table_details {
    display:flex;
    flex-direction: column;
    margin:40px 0 0;
    font-weight: 500;
}
.details-title {
    font-size: 36px;
    font-weight: bold;
    color: #000000;
    line-height: 110%;
    margin:50px 0;
}
.table-details-standart {
    width:12.5%;
    margin-right: 2%;
    display:flex;
    color: #BFC2C4;
    justify-content: flex-end;
}
.table-details-total-standart {
    width:12.5%;
    margin-right: 2%;
    display:flex;
    color: #BFC2C4;
    justify-content: flex-end;
}
.table-details-bonus {
    width:12.5%;
    display:flex;
    justify-content: flex-end;
    color: #BFC2C4;
}
.table_details_wrapper.table-h-row .table-details-bonus {
    opacity:0;
    cursor: default;
}
.table-details-total-bonus {
    width:12.5%;
    display:flex;
    justify-content: flex-end;
    line-height: 22px;
    color: #BFC2C4;
}

.program-plus .table-details-bonus,
.program-plus .table-details-total-bonus{
    color: #000000;
}

.program-standart .table-details-standart,
.program-standart .table-details-total-standart{
    color: #000000;
}

.totalPriceStandart.plusActive ,.totalPricePlus.plusActive {
    font-weight: bold;
    font-size: 18px;
}
.disable input{
    background: #ED0000;
    appearance: none;
}
.disable label {
    text-decoration: line-through;
    color: #BFC2C4;
    cursor: default;
}
.ya-map {
    height: 465px
}
/*.baloon-wrapper {*/
/*    color: white;*/
/*    font-family: "MMC";*/
/*    width:300px;*/
/*    padding: 18px 21px 23px 21px;*/
/*}*/
/*.ymaps-2-1-79-balloon__close+.ymaps-2-1-79-balloon__content  {*/
/*    background: #000;*/
/*    margin-right: inherit;*/
/*    padding-right: 0;*/
/*    padding: 0;*/
/*}*/
/*.ymaps-2-1-79-balloon__layout,*/
/*.ymaps-2-1-79-balloon__tail:after {*/
/*    background: #000;*/

/*}*/
/*.ymaps-2-1-79-balloon__close {*/
/*    position: absolute;*/
/*    right: 0;*/
/*}*/
/*.baloon_title {*/
/*    font-weight: 500;*/
/*    font-size: 17px;*/
/*    line-height: 17px;*/
/*}*/
/*.baloon-wrapper span {*/
/*    margin: 10px 0 20px;*/
/*    display: block;*/
/*    width: 100%;*/
/*    height: 2px;*/
/*    transform: translateX(-10%);*/
/*    background: #ED0000;*/
/*}*/
/*.baloon__adress {*/
/*    width: 85%;*/
/*}*/
/*.baloon__adress, .baloon__site, .baloon__phone {*/
/*    font-weight: 400;*/
/*    font-size: 12px;*/
/*    line-height: 14px;*/
/*    color: #FFFFFF;*/
/*}*/
/*.baloon__site {*/
/*    text-decoration: underline;*/
/*    display:block;*/
/*}*/
/*.baloon__phone {*/
/*    padding:7px 0;*/
/*    display:block;*/
/*}*/
/*.baloon_price {*/
/*    margin:15px 0;*/
/*}*/
/*.baloon_button {*/
/*    font-weight: 500;*/
/*    font-size: 16px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    text-transform: uppercase;*/
/*    color: #F5F5F5;*/
/*    background: #ED0000;*/
/*    justify-content: center;*/
/*    padding: 10px 0;*/
/*    cursor: pointer;*/
/*}*/
/*.baloon_button:hover {*/
/*    color:#ED0000;*/
/*    background:  #F5F5F5;*/
/*}*/
/*.ymaps-2-1-79-balloon__close-button {*/
/*    background: url(/html/mmc-2021/img/closeBaunt.png) 60% 27% no-repeat;*/
/*    opacity: 1;*/

/*}*/
/*.baloon_price {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*}*/
/*.baloon_item {*/

/*}*/
/*.baloon_program {*/
/*    font-size: 12px;*/
/*    line-height: 14px;*/
/*    font-weight: 500;*/
/*    color: #686D71;*/
/*}*/
/*.ballon_sum {*/
/*    font-size: 18px;*/
/*    line-height: 21px;*/
/*    font-weight: 500;*/
/*}*/
.select-city__btn {
    font-size:16px;
    font-weight: 500;
    width:40%;
    border:1px solid #686D71;
    display:flex;
}
.select-city__btn--left,
.select-city__btn--right {
    cursor: pointer;
    width:50%;
    display:flex;
    justify-content: center;
    align-items: center;

}
.table-reglament {
    display: flex;
    flex-direction: column;
}
.details_tab--left,
.details_tab--right{
    width:50%;
    height:40px;
    display:flex;
    justify-content: center;
    align-items: center;
    cursor:pointer;
}
.active-tab {
    color:white;
    background: #686D71 ;
}
.reglament__list-wrapper {
    display: flex;
}
.reglament__title{
    font-weight: 700;
    font-size: 20px;
    text-transform: capitalize;
}
.reglament__marker {
    margin: 7px 7px 0 15px;
    width: 13px
}
.reglament__marker div{
    width: 7px;
    background: black;
    height: 7px;
    border-radius: 50%;
}
.work {
    width:100%;
}
.block-end {
    order:3;
}
.block-end ul{
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 2;
    -moz-column-gap: 2;
    column-gap: 80px;
}
.calc_preload {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffffb5;
    z-index: 10;
}
.calc_preload-wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.calc_reloader{
    width: 80px;
    height: 80px;
    border: 10px solid #d2d2d263;
    border-radius: 50%;
    border-top-color: red;
    border-bottom-color: red;
    animation: preloader 3s linear infinite;
}
.no-stars ~ p {
    width: 120px
}
.table_details_header {
    display:flex;
    background: #BFC2C4;
    color: #000000;
    padding:10.5px 0;
    align-items: center;
    justify-content: space-between;
}
.table-details_header-used{
    width: 46%;
    padding: 0 0 0 15px;
}
.table-details_header-count{
    width:11.7%;
    display:flex;
    justify-content: flex-end;
}
.table-details_header-bonus{
    width:12.5%;
    display:flex;
    justify-content: flex-end;
}
.table-details_header-standart{
    width:12.5%;
    margin-right: 2%;
    display:flex;
    justify-content: flex-end;
}
.table-details-total-used {
    width: 46%;
    padding: 0 0 0 15px;
}
.table_details_row{
    display:flex;
    border-bottom: 1px solid #BFC2C4;
    color: #000000;
    padding:10.5px 0;
    align-items: center;
    justify-content: space-between;
}
.table-details-used{
    width: 46%;
    padding: 0 0 0 15px;
}
.table-details-count{
    width:11.7%;
    display:flex;
    justify-content: flex-end;
}


@keyframes preloader {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.sign_up-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.sign_up-col {
    display: flex;
    flex-direction: column;
    width: 49%;
}
.sign_up-item-textarea {
    height: 100%;
    font-size:16px;
}
.sign_up-item-textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid #686D71;
    box-sizing: border-box;
    margin: 16px 0 4px 0;
    padding: 10px 15px;
    resize: none;
}
.sign_up-item input{
    height: 50px;
    background: #FFFFFF;
    border: 1px solid #686D71;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 135%;
    color: #686D71;
    width:100%;
    margin: 16px 0 4px 0;
    padding: 0 0 0 15px;
}
.sign_up-b {
    background: #ed0000;
    color: white;
    font-size: 16px;
    padding: 16px 50px;
    text-transform: uppercase;
    margin: 40px 0 10px 0;
    cursor: pointer;
    transition: .3s;
    border: 1px solid #ed0000;
}
.sign_up-b:hover {
    background: white;
    color: #ED0000;
}
.sign_up-title {
    font-size: 48px;
    font-weight: bold;
    color: #000000;
    line-height: 110%;
    margin-top: 4px;
    margin-bottom: 44px;
    text-align: center;
}

.sign_up-item-textarea {
    height: 244px !important;
}

.ya-map {
    margin: 0 0 0;
}
.age-list input {
    display: none;
}
.wrap_add_accessories > div, .wrap_add_work > div {
    display: flex;
}
.sign_up-assent {
    display: flex;
    align-items: center;
}
.sign_up-assent label {
    margin: 0 0 0 15px;
    font-weight: 500;
}
.sign_up-assent br {
    display:none;
}
.sign_up-assent a {
    color:black;
    transition: 0.3s;
    text-decoration: underline;
}
.sign_up-assent a:hover {
    color: red;

}
#sort-csi {
    cursor: pointer;
}
.wrap_add_work  button {
    padding: 1px 5px;
    margin: 3px 0 0 7px;
    height:16px;
    background-color: #686D71;
    color: #FFFFFF;
    border-radius: 100%;
    line-height: 14px;
    font-size: 12px;
}

.wrap_add_accessories img {
    margin: 4px 10px 0px 10px;
    height: 20px;
    width: 20px;
}


.h-class {
    opacity:0;
    cursor: default;
}

.sign_up-item .empty {
    border: 1px solid red;
}
.active-form {
    background: #ED0000;
    pointer-events: auto;
}
.success-form {
    background: #ffffff;
    color:black;
    font-size:15px;
    border: 1px solid transparent;
}
@media (max-width:1230px) {
    .wrap_add_accessories > div, .wrap_add_work > div {
        width: 40%;
    }
    #calculator {
        padding-left: 20px;
        padding-right: 20px;
    }
    #calculator .bg-calc {
        padding-left: 0;
        padding-right: 0;
    }
    .bonus_price--btns a {
        width: 270px;
    }

}
@media (max-width:999px) {

    .container.bg-calc > container_inner  {
        padding: 42px 0;
    }
    .bg-calc .container_inner {
        background:white;
    }
    .wrap_add_accessories > div, .wrap_add_work > div {
        width: 100%;
    }
    #calculator {
        padding-left: 20px;
        padding-right: 20px;
    }
    #calculator .bg-calc {
        padding-left: 0;
        padding-right: 0;
    }
    .age-list {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .age-list div {
        width:40%;
    }
    .age-list div:nth-child(3){
        margin: 5% 7% 0 0;
    }
    .age-list div:nth-child(4){
        margin: 5% 7% 0 2%;
    }
    #calculator .select_wrap {
        flex-direction: column;
    }
    #calculator .calc_setting-col {
        width:100%;
    }
    #calculator .calc_setting-col:nth-child(2) {
        margin:30px 0 0  0;
    }
    #calculator .calc_select {
        width: 100%;
    }
    #calculator #period-to {
        width:100%;
    }
    #calculator .form-group {
        flex-direction: column;
        align-items: center;
    }
    #calculator .wrapper-list-city {
        width: 100%;
    }
    #calculator .select-city__btn {
        height: 40px;
        margin: 20px 0 0;
    }
    #calculator .table_row  {
        position: relative;
    }
    #calculator .table-wrapper_name span,
    #calculator .table-header_adress,
    #calculator .table-header_detalis,
    #calculator .table-wrapper_detalis,
    #calculator .table-wrapper_work,
    #calculator .table-header_work {
        display: none;
    }

    #calculator .table-wrapper_total,
    #calculator .table-header_total,
    #calculator .table-header_name {
        width: auto;
    }
    #calculator .table-wrapper_name {
        width:65%;
    }
    #calculator .table-header_total,
    #calculator .table-wrapper_total{
        margin: 0 15px 0 0;
    }
    #calculator .table-wrapper_adress {
        display: none;
    }
    #calculator .mobile {
        display:block;
        width: 100%;
    }
    .stars-containers {
        margin: 5px 0 0 0;
    }
    .select-city__btn {
        width: 75%;
    }
    .details_tab  {
        margin: 0 auto;
        width: 75%;
    }
    .program-plus .table-details_header-standart,
    .program-plus .table-details-standart,
    .program-plus .table-details-total-standart {
        display: none;
    }
    .program-standart .table-details_header-bonus,
    .program-standart .table-details-bonus,
    .program-standart .table-details-total-bonus {
        display: none;
    }
    .details_tab--left, .details_tab--right {
        width: 50%;
        height: 40px;
        display: flex;
        justify-content: center;
        text-align: center;
        align-items: center;
        cursor: pointer;
    }
    .sign_up-wrapper {
        flex-direction: column;
    }
    .sign_up-col {
        width: 100%;
    }

    .sign_up-item-textarea textarea{
        height: 204px;
        padding: 10px 0 0 15px;
    }
    .sign_up-b {
        margin: 40px 0 50px 0;
    }
    .bonus_price--btns a {
        width: 190px;
        height: 40px;
    }


}
@media (max-width: 767px) {
    .block_auto-pdf {
        justify-content: center;
    }
    .bonus_price--btns {
        flex-direction: column;
        justify-content: center;
    }
    .bonus_price--btns a {
        width: 80%;
        max-width: 330px;
        height: 40px;
    }
    .bonus_price--btns a:nth-child(2) {
        margin: 10px 0;
    }
    .bonus_price--toggle {
        width: 100%;
        max-width: 364px;
    }

}
@media (max-width:600px) {
    .bg-calc__wrapper {
        padding: 0;
    }
    .calc_setting-col {
        margin: 0 0 0 0;
    }
    .age-list {
        margin: 40px 0 50px 15px;
        padding: 0 0 0 10px;
    }
    #calculator .calc_setting-col:nth-child(2) {
        margin: 12px 0 0 0;
    }
    .calc_select:not(:last-child) {
        margin-bottom: 12px;
    }
    .select_wrap {
        margin: 0 0 20px 0 !important;
    }
    .calc_car_age p {
        font-size: 3.3vw;
        line-height: 14px;
    }
    .calc_car_age h3 {
        font-size: 5.4vw;
        margin: 0 0 5px 0;
    }
    .age-list label {
        font-size: 3.5vw;
    }
    .age-list label:before {
        top: 2px;
    }
    .age-list .active-age label:after {
        top: 5px;
    }
    #calculator .calc_title {
        font-size: 4.4vw;
    }
    .select_dop_work > p {
        font-size: 3.3vw;
    }
    .wrap_add_accessories label, .wrap_add_work label {
        font-size: 3.3vw;
    }
    .wrap_add_accessories label:before, .wrap_add_work label:before {
        top: -1px ;
    }
    .wrap_add_accessories .disable label:after, .wrap_add_work .disable label:after {
        top: -1px ;
    }
    .wrap_add_accessories .active-dop_work label:after , .wrap_add_work .active-dop_work label:after {
        top: 3px;
    }
    .wrap_add_accessories button p, .wrap_add_work  button p{
        width: 8px;
        height: 15px;
    }
    #calculator .popap {
        margin-left: 4px;
        background-color: #686D71;
        color: #FFFFFF;
        border-radius: 100%;
        line-height: 14px;
        font-size: 11px;
    }
    #calculator .table-wrapper_total{
        margin: 0 2px 0 0;
    }
    .table-wrapper_total {
        width: 34%;
        font-size: 5.5vw;
        white-space: nowrap;
    }
    #calculator .table-wrapper_name {
        line-height: 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font-size: 4.3vw;
        width:56%;
        padding: 0 0 0 2px;
    }
    .stars-containers  img {
        display:none;
    }
    #calculator .table_row {
        height:auto;
        padding: 10px 0;
    }
    .stars-containers {
        margin: 0;
    }
    .details-title {
        font-size: 4.5vw;
        line-height: 5vw;
        width: 92%;
    }
    .table_details {
        margin: 10px 0 0;
    }
    .table_details_header {
        align-items: flex-start;
    }
    .table-details_header-used {
        width: 46%;
        padding: 0 0 0 0px;
        text-align: center;
    }
    .table-details_header-count {
        width: 0.7%;
    }
    .table-details_header-bonus {
        width: 11.5%;
        white-space: nowrap;
        padding: 0 15px 0 0;
    }

    .table-details-bonus,
    .table-details-standart {
        width: 11.5%;
        white-space: nowrap;
        padding: 0;
        font-size: 4vw;
    }

    .table-details-count {
        width: 0.7%;
    }
    .table-details-total-used {
        width: 60%;
        padding: 0 0 0 15px;
    }
    .mob-mod {
        top: -4px;
    }
    .table-details-total-bonus,
    .table-details-total-standart {
        width: 27.5%;
    }
    .totalPricePlus,
    .totalPriceStandart {
        font-size: 4.5vw;
        white-space: nowrap;
    }
    .reglament__title {
        font-size: 4vw;
    }
    .block-end ul {
        column-count: 1;
    }
    .sign_up-item-textarea textarea{
        height: 110px;
        padding: 5px 0 0 15px;
        font-size: 3.5vw;
    }
    .sign_up-assent {
        text-align: left;
        display: flex;

    }
    .sign_up-assent input {
        margin: 0 15px 0 0;
    }
    .calc_title-cards {
        font-size: 6vw;
        line-height: 6vw;
    }
    .sign_up-title {
        font-size: 6vw;
        margin: 50px 0 30px;
    }
    .sign_up-assent br {
        display:block;
    }
    .sign_up-assent input {
        margin: 0 10px 0 0;
    }
    .sign_up-assent label {
        margin: 0 0 0 0;
    }
    .table-wrapper_detalis span,
    .table-wrapper_work span,
    .table-wrapper_total span {
        text-align: end;
    }
    .table-wrapper_detalis span:nth-child(2),
    .table-wrapper_work span:nth-child(2),
    .table-wrapper_total span:nth-child(2) {
        color: #BFC2C4;
        font-size: 83%;
        text-decoration-line: line-through;
        text-align: end;
        padding: 5px 0;
    }


}
sup {
    font-size: 10px;
    top: -9px;
}

[data-accessories-group] {
    background: #F5F5F5;
}

[data-extra-group] {
    background: #F5F5F5;
}

[data-accessories-group] + [data-extra-accessories-id] {

}

[data-extra-group] + [data-extra-id] {

}

.dopworksofcalc_price {
    font-weight: bold;
    display: block;
}

/* Скрываем блок wrap_sing_up_to по умолчанию */
#wrap_sing_up_to {
    display: none;
}
#wrap_sing_up_to.show {
    display: flex !important;
    flex-direction: column;
}

/* Стили для валидации формы записи на сервис */
.has-error {
    /*border-color: #dc3545 !important;*/
    /*box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;*/
}

.has-error input {
    /*border-color: #dc3545 !important;*/
    /*box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;*/
}

.sign_up-item.has-error {
    position: relative;
}

.sign_up-item.has-error::after {
    content: "Это поле обязательно для заполнения";
    position: absolute;
    bottom: -20px;
    left: 0;
    /*color: #dc3545;*/
    font-size: 12px;
}

/* Стили для сообщений формы */
.form-message {
    margin-top: 20px;
    padding: 10px;
    text-align: center;
    font-weight: 500;
    border-radius: 0px!important;
}

/* Стили для кнопки отправки */
.sign_up-b:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Стили для чекбокса согласия */
.sign_up-assent input[type="checkbox"] {
    margin-right: 8px;
}

.sign_up-assent label {
    cursor: pointer;
    user-select: none;
}
