.c-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0 15px;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    color: #E40C25;
    text-decoration: none;
    outline: none;
    text-transform: none;
    border: 0;
    background: none;
    transition: all .15s;
    outline: none;
}

.c-btn:not([disabled]):hover {
    color: #E40C25;
    text-decoration: underline;
}

.c-btn:focus {
    outline: none;
}

.c-btn .icon {
    display: inline-block;
    width: 5px;
    height: 8px;
    margin: 4px 0 0 25px;
    transition: all .15s;
}

.c-btn:not([disabled]):hover .icon {
    transform: scale(1.4) translateX(-5px);
}

.c-btn.--border {
    padding: 12px 25px 15px;
    font-weight: bold;
    border: 1px solid #E40C25;
    border-radius: 2px;
}

.c-btn:not([disabled]).--border:hover {
    /* color: #fff;
    background: #E40C25; */
    background: #F4F4F4;
    text-decoration: none;
}

.c-btn.--border:disabled {
    background: #F4F4F4;
    color: #bbb;
    border-color: #bbb;
}

.c-btn.--green {
    padding: 15px 40px;
    font-size: 14px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #4BCA81;
    border-radius: 2px;
}

.c-btn:not([disabled]).--green:hover {
    color: #fff;
    background: #1d884a;
}

.c-btn.--green:disabled {
    background: #F4F4F4;
    color: #bbb;
    border-color: #bbb;
}

.btn-txt:focus,  .btn-txt:active{
    outline: none!important;
}

.btn-txt {
    display: inline-block;
    color: #E40C25;
    font-weight: bold;
    text-decoration: none;
    border: 0;
    background: none;
    outline: none;
}

.btn-txt:hover {
    text-decoration: underline;
}

.svg-icon {
    display: inline-block;
    width: 19px;
    height: 19px;
    margin: .1em;
}

.hidden {
    position: absolute;
    height: 0;
    width: 0;
    top: -100px;
    left: -100px;
}

.consultation-page-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 10px 0;
    min-height: 60px;
    text-align: center;
    background: #202020 url(../../img/consultation/title-bg.jpg) center;
    background-size: cover;
    color: #fff;
}

.consultation-page-header__title {
    margin: 0;
    font-weight: bold;
    font-size: 12px;
    line-height: 150%;
    text-transform: uppercase;
    color: #fff;
}

.consultation-page-header__title span {
    color: #E40C25;
}

@media (min-width: 576px) {
    .consultation-page-header {
        padding: 15px 0;
        min-height: 142px;
    }

    .consultation-page-header__title {
        font-size: 28px;
    }
}

@media (min-width: 1050px) {
    .consultation-page-header {
        padding: 20px 0;
        min-height: 267px;
    }

    .consultation-page-header__title {
        font-size: 52px;
    }
}

.consultation-steps {
    margin: 0 0 20px;
    background: #FFFFFF;
    box-shadow: 0px 4px 52px rgba(0, 0, 0, 0.09);
}

.consultation-steps__list {
    /* display: flex; */
    list-style: none;
    padding: 0;
    margin: 0;
}

.consultation-steps__item {
    flex: 1;
    padding: 8px 0;
    cursor: default;
}

.consultation-steps__item:first-child {
}

.consultation-steps__item:nth-child(2) {
    text-align: center;
    flex: 1.6;
}

.consultation-steps__item:nth-child(3) {
    text-align: right;
}

.consultation-steps__item.--passed {
    cursor: pointer;
}

.consultation-steps__item:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 27px;
    width: 1px;
    background: #E4E3E3;
}

.consultation-steps__item:first-child:before {
    display: none;
}

.consultation-steps__item.--passed:hover {
}

.consultation-steps__num {
    display: inline-block;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    text-align: center;
    font-size: 14px;
    line-height: 29px;
    color: #8B8B8B;
    background: #F4F4F4;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: all .15s;
}

.consultation-steps__item.--active .consultation-steps__num {
    border-color: #E40C25;
}

.consultation-steps__item.--passed:hover .consultation-steps__num {
    background: #E40C25;
    color: #fff;
}

.consultation-steps__title {
    margin: 0;
    font-size: 10px;
    line-height: 12px;
    color: #333;
    opacity: .5;
}

.consultation-steps__item.--passed .consultation-steps__title {
    font-weight: bold;
    opacity: 1;
}

.consultation-steps__edit {
    margin: 0 0 0 auto;
    opacity: 0;
    color: #E40C25;
    transition: all .15s;
}

.consultation-steps__edit .icon {
    margin: 0;
    width: 26px;
    height: 26px;
}

.consultation-steps__item.--passed .consultation-steps__edit {
    opacity: 1;
}

.consultation-steps__item:hover .consultation-steps__edit {
    transform: scale(.78);
}

.consultation-steps__info {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 7px;
    line-height: 150%;
    color: #848484;
}

.consultation-steps__info li {
    display: inline-block;
    position: relative;
    padding: 0 0 0 6px;
    margin:  0 4px 0 0
}
.consultation-steps__info span {
    color: #E40C25;
}

.consultation-steps__info li:first-child {
    padding-left: 0;
}

.consultation-steps__info li:first-child:before {
    display: none;
}

.consultation-steps__info li:before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    left: 0;
    top: 50%;
    background: #848484;
    border-radius: 50%;
}

.consultation-steps__content,
.consultation-steps__edit {
    display: none;
}

@media (min-width: 576px) {
    .consultation-steps {
        margin-bottom: 25px;
    }

    .consultation-steps__item {
        display: flex;
        align-items: center;
        padding: 13px 15px 13px 50px;
    }

    .consultation-steps__item:first-child {
        padding-left: 0;
        flex: 1.8;
    }

    .consultation-steps__item:nth-child(2) {
        flex: 1.5;
        text-align: left;
    }

    .consultation-steps__item:nth-child(3) {
        flex: 1;
        text-align: left;
    }

    .consultation-steps__num {
        margin-right: 10px;
        width: 27px;
        height: 27px;
        flex: 0 0 27px;
        line-height: 24px;
    }

    .consultation-steps__content,
    .consultation-steps__edit {
        display: block;
    }
}

@media (min-width: 1050px) {
    .consultation-steps {
        margin-bottom: 54px;
    }

    .consultation-steps__item {
        padding-left: 96px;
        padding-top: 25px;
        padding-bottom: 25px;
        line-height: 27px;
        font-size: 12px;
    }

    .consultation-steps__num {
        margin-right: 13px;
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
        line-height: 46px;
        font-size: 20px;
    }

    .consultation-steps__title {
        font-size: 14px;
        line-height: 17px;
    }

    .consultation-steps__info {
        font-size: 11px;
    }

    .consultation-steps__edit .icon {
        width: 32px;
        height: 32px;
    }

    .consultation-steps__info li {
        padding-left: 12px;
        margin-right: 6px;
    }
}

.consultation-form-header {
    margin: 0 0 24px;
}

.consultation-form-header__title {
    margin: 0 0 20px;
    font-weight: 500;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #333333;
}

.consultation-form-header__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.consultation-form-header__actions .c-btn {
    margin-right: auto;
}

.consultation-form-header__actions .c-btn:first-child {
    margin-left: 0;
}

.consultation-form-header__actions .c-btn.--next {
    margin-right: 0;
}

@media (min-width: 768px) {
    .consultation-form-header {
        margin-bottom: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .consultation-form-header__title {
        margin: 0 20px 0 0;
        font-size: 20px;
        text-align: left;
    }

    .consultation-form-header__actions {
        display: block;
        margin-left: 0;
    }

    .consultation-form-header__actions .c-btn {
        margin-left: 25px;
    }
}

@media (min-width: 1050px) {
    .consultation-form-header {
        margin-bottom: 26px;
    }

    .consultation-form-header__title {
        font-size: 32px;
    }
}

.test-drive-car {
}

.test-drive-car__col {
    margin-bottom: 15px;
}

.test-drive-car__col.--opened {
}

.test-drive-car__input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.test-drive-car__label {
    /* display: block; */
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 20px 8px;
    margin: 0;
    position: relative;
    text-align: center;
    border: 1px solid #BFBFBF;
    border-radius: 2px;
    transition: all .15s;
}

label.test-drive-car__label {
    cursor: pointer;
}

.test-drive-car__item {
    height: 100%;
}

.test-drive-car__item:hover .test-drive-car__label,
.test-drive-car__item:hover .test-drive-car__maps,
.test-drive-car__col.--selected .test-drive-consultant__item,
.test-drive-car__col.--selected .test-drive-car__label,
.test-drive-car__col.--selected .test-drive-car__maps {
    border-color: #E40C25;
}

.test-drive-car__check {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 16px;
    height: 16px;
    line-height: 7px;
    border: 1px solid;
    color: #9E9E9E;
    background: #fff;
    border-radius: 50%;
    z-index: 10;
}

.test-drive-car__check .check-icon {
    display: inline-block;
    width: 8px;
    height: 7px;
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}

.test-drive-car input:checked + .test-drive-car__label {
    border-color: #E40C25;
}

.test-drive-car input:checked + .test-drive-car__label .test-drive-car__check {
    color: #E40C25;
}

.test-drive-car input:checked + .test-drive-car__label .test-drive-car__btn {
    color: #E40C25;
}

.test-drive-car input:checked + .test-drive-car__label .test-drive-car__btn span {
    display: none;
}

.test-drive-car input:checked + .test-drive-car__label .test-drive-car__btn .text-checked {
    display: block;
}

.test-drive-car input:checked + .test-drive-car__label .check-icon {
    opacity: 1;
}

.test-drive-car__photo {
    margin: 0 -20px auto;
    height: 80px;
    user-select: none;
}

.test-drive-car__photo img {
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.test-drive-car__title {
    margin: 0 0 2px;
    font-weight: normal;
    font-size: 14px;
    line-height: 150%;
    color: #333333;
}

.test-drive-car__options {
    margin: 0 0 1rem;
    font-weight: 800;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.04em;
    color: #6C757D;
}

.test-drive-car__options dd {
    font-weight: 600;
    font-size: 11px;
    line-height: 12px;
    color: #999999;
}

.test-drive-car__btn {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    text-transform: uppercase;
    color: #333333;
    transition: all .15s;
}

.test-drive-car__label:hover .test-drive-car__btn {
    color: #E40C25;
}

.test-drive-car__btn .text-checked {
    display: none;
}

.test-drive-car__maps {
    flex: 1;
    max-height: 0;
    overflow: hidden;
    border: 1px solid #BFBFBF;
    border-left: 0;
    border-radius: 0 2px 2px 0;
    transition: all .15s;
    display: none;
    transition: max-height .5s;
}

.test-drive-car__maps.--opened {
    max-height: 1000px;
    padding: 0 0 10px;
}

.test-drive-car__col.--opened .test-drive-car__maps {
    display: block;
}

.test-drive-car__progress {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    text-align: center;
    /* font-weight: bold; */
    font-size: 16px;
    line-height: 40px;
    color: #E40C25;
    border: 1px solid #E40C25;
    border-radius: 50%;
    background: #fff;
    z-index: 10;
}

.test-drive-car__row {
    position: relative;
    margin-left: 0;
    margin-right: 0;
}

.test-drive-car__row .site__preloader {
    width: calc(100% - 30px);
}

.test-drive-car__toggle-btn {
    width: 100%;
    height: 43px;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    color: #333333;
    background: #F7F7F7;
    border: 0.579487px solid #DDDDDD;
    border-radius: 2px;
}

.test-drive-car__toggle-btn:after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    margin: -7px 0 0 15px;
    width: 7px;
    height: 7px;
    border: 1px solid #333333;
    border-width: 1px 1px 0 0;
    transform: rotate(135deg);
}

.test-drive-car__toggle-btn:focus {
    outline: none;
}

@media (min-width: 576px) {
    .test-drive-car {
        /* display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
        margin-bottom: 30px; */
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
    }

    .test-drive-car__col {
        margin-bottom: 30px;
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 15px;
    }

    .test-drive-car__col.--opened {
        flex-basis: 100%;
        max-width: 100%;
    }

    .test-drive-car__col.--opened .test-drive-car__item {
        display: flex;
    }

    .test-drive-car__check {
        top: 24px;
        left: 25px;
        width: 24px;
        height: 24px;
        line-height: 18px;
    }

    .test-drive-car__check .check-icon {
        width: 12px;
        height: 10px;
    }

    .test-drive-car__photo {
        height: 188px;
    }

    .test-drive-car__title {
        margin-bottom: 6px;
        font-size: 16px;
    }

    .test-drive-car__options {
        margin-bottom: 20px;
        font-size: 13px;
        line-height: 15px;
    }

    .test-drive-car__options dd {
        font-size: 10px;
        line-height: 12px;
    }

    .test-drive-car__btn {
        margin-top: 20px;
        font-size: 14px;
        line-height: 17px;
    }
}

@media (min-width: 768px) {
    .test-drive-car__progress {
        right: -3px;
    }

    .test-drive-car__maps {
        max-height: auto;
        overflow: visible;
    }

    .test-drive-car__col.--opened .test-drive-car__label {
        flex: 0 0 calc(25% - 22px);
        max-width: calc(25% - 22px);
        border-right: 0;
        border-radius: 2px 0 0 2px;
    }

    .test-drive-car__col.--opened .test-drive-car__maps {
        display: flex;
    }
}

@media (min-width: 1050px) {
    .test-drive-car {
        /* grid-template-columns: repeat(4, 1fr); */
    }

    .test-drive-car__col {
        flex-basis: 25%;
        max-width: 25%;
    }

    .test-drive-car__check {
        top: 20px;
        left: 20px;
        width: 20px;
        height: 20px;
        line-height: 13px;
    }

    .test-drive-car__check .check-icon {
        width: 10px;
        height: 8px;
    }

    .test-drive-car__title {
        margin-bottom: 2px;
    }

    .test-drive-car__options {
        margin-bottom: 1rem;
    }

    .test-drive-car__btn {
        margin-top: 1rem;
        font-size: 12px;
        line-height: 14px;
    }
}

.test-drive-map {
    display: flex;
    flex: 1;
}

.test-drive-map__content {
    flex: 1;
}

.test-drive-map__map {
    flex: 0 0 40%;
    max-width: 40%;
    margin: 0 10px 10px 0;
    display: block;
    position: relative;
    height: 105px;
    position: relative;
    cursor: pointer;
}

.test-drive-map__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test-drive-map__map .icon {
    position: absolute;
    padding: 10px;
    width: 40px;
    height: 40px;
    left: 10px;
    bottom: 10px;
    cursor: pointer;
    color: #333333;
    transition: all .18s;
}

.test-drive-map__map .icon:hover {
    color: #E40C25;
}

.test-drive-map__checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    color: #848484;
    border: 1px solid;
    box-sizing: border-box;
    border-radius: 50%;
    background: #fff;
    transition: all .1s;
}

.test-drive-map__map:hover .test-drive-map__checkmark {
    /* color: #4BCA81; */
}

.test-drive-map__checkmark:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    background: currentColor;
    border-radius: 50%;
    /* transition: all .1s; */
    /* transform: scale(.5); */
    /* opacity: 0; */
}

.test-drive-map input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.test-drive-map input:checked + .test-drive-map__checkmark {
    color: #E40C25;
}

.test-drive-map input:checked + .test-drive-map__checkmark:before {
    /* opacity: 1;
    transform: scale(1) translate(-50%, -50%); */
}

.test-drive-map__title {
    margin: 0 0 8px;
    font-weight: bold;
    font-size: 12px;
    line-height: 150%;
    text-transform: uppercase;
    color: #333333;
}

.test-drive-map p {
    margin: 0;
    font-size: 12px;
    line-height: 150%;
    color: #999999;
}

.test-drive-map__info {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    color: #6C757D;
}

.test-drive-map__info li {
}

.test-drive-map__info .icon {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 33px;
    height: 27px;
    color: #C7C7C7;
}

@media (min-width: 768px) {
    .test-drive-map {
        display: block;
        margin: 0 0 0 14px;
        max-width: 33%;
    }

    .test-drive-map__checkmark {
        top: 20px;
        right: 15px;
    }

    .tesdrive-count-3 .test-drive-map__checkmark{
        top: 25px;
    }

    .tesdrive-count-4 .test-drive-map__checkmark{
        top: 35px;
    }

    .tesdrive-count-5 .test-drive-map__checkmark{
        top: 45px;
    }

    .tesdrive-count-6 .test-drive-map__checkmark{
        top: 55px;
    }

    .test-drive-map__map {
        margin-right: 0;
        height: 172px;
        flex: 1;
        max-width: none;
    }
}

@media (min-width: 992px) {

    .test-drive-map__map img {
        object-fit: contain;
        object-position: left;
    }
}

@media (min-width: 1200px) {
    .test-drive-map__title {
        font-size: 14px;
    }
}

.consultation-form-section {
    padding: 8px 12px 18px;
    margin: 0 0 20px;
    border: 1px solid #DDDDDD;
    border-radius: 2px;
}

.test-drive-car .consultation-form-section {
    margin-bottom: 0;
}

.consultation-form-section__title {
    margin: 0 0 10px;
    font-weight: bold;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: #848484;
}

.consultation-form-section__block {
    margin: 13px 0 0;
}

.consultation-form-section__block:first-child {
    margin-top: 0;
}

.consultation-form-section__msg {
    max-width: 345px;
    margin: 0 auto 40px;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    color: #848484;
}

@media (min-width: 576px) {
    .consultation-form-section {
        padding: 23px 24px;
        margin-bottom: 30px;
    }

    .consultation-form-section__block {
        margin-top: 30px;
    }

    .consultation-form-section__title {
        margin-bottom: 10px;
        font-size: 14px;
        line-height: 17px;
    }
}
@media (min-width: 992px) {
    .test-drive-car .consultation-form-section {
        margin-bottom: 30px;
    }
}

@media (min-width: 1050px) {
    .consultation-form-section {
        min-height: 100%;
        margin-bottom: 0;
    }

    .test-drive-map__info li {
        min-width: 100px;
    }
}

.time-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    grid-column-gap: 10px;
    grid-row-gap: 8px;
}

.time-list__item {
    position: relative;
    margin: 0;
}

.time-list__item input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.time-list__value {
    display: block;
    height: 20px;
    background: #FCE7E9;
    border-radius: 1.6902px;
    text-align: center;
    font-size: 10px;
    line-height: 22px;
    color: #9E9E9E;
    cursor: pointer;
    transition: all .15s;
    user-select: none;
}

.time-list__value:hover {
    color: #000;
}

.time-list__item input:checked + .time-list__value {
    color: #fff;
    background: #E40C25;
    cursor: default;
}

.time-list__item input:disabled + .time-list__value {
    color: #fff;
    background: #D6D6D6;
    cursor: default;
    opacity: 1;
}

.time-list__item .icon {
    position: absolute;
    top: 4px;
    right: 5px;
    width: 12px;
    height: 12px;
    display: none;
}

.time-list__item input:disabled ~ .icon {
    display: block;
}

@media (min-width: 576px) {
    .time-list {
        grid-template-columns: repeat(6, 1fr);
        grid-gap: 14px;
    }

    .time-list__value {
        height: 32px;
        font-size: 14px;
        line-height: 30px;
    }
}

@media (min-width: 1050px) {
    .time-list {
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 14px;
    }
}

.date-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 26px;
    grid-column-gap: 6px;
}

.date-list__item {
    position: relative;
    margin: 0;
}

.date-list input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.date-list__value {
    display: block;
    height: 22px;
    background: #FCE7E9;
    border-radius: 1.6902px;
    text-align: center;
    font-size: 10px;
    line-height: 23px;
    color: #9E9E9E;
    cursor: pointer;
    transition: all .15s;
    user-select: none;
}

.date-list__value:hover {
    color: #000;
}

.date-list__item input:checked + .date-list__value {
    color: #fff;
    background: #E40C25;
    cursor: default;
}

.date-list__item input:disabled + .date-list__value {
    color: #9E9E9E;
    background: #EDEDED;
    cursor: default;
    opacity: .5;
}

.date-list__item input:checked:disabled + .date-list__value {
    color: #fff;
    background: #D6D6D6;
    cursor: default;
    opacity: 1;
}

.date-list__item .icon {
    position: absolute;
    top: 4px;
    right: 5px;
    width: 12px;
    height: 12px;
    display: none;
}

.date-list__item input:checked:disabled ~ .icon {
    display: block;
}

.date-list__datepicker {
    position: relative;
    height: 100%;
}
.date-list__datepicker .vdatetime-input {
    cursor: pointer;
}

.date-list__btn {
    height: 100%;
    background: #D6FFE7;
    border-radius: 1.6902px;
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #4BCA81;
}

.date-list__datepicker .icon {
    width: 13px;
    height: 13px;
}

.date-list__datepicker input {
    /* bottom: 100%;
    right: 0;
    width: 0;
    height: 0; */
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.date-list__datepicker input:disabled + .date-list__btn {
    cursor: default;
    color: #9E9E9E;
    background: #EDEDED;
    opacity: .5;
}

.date-list__datepicker .vdatetime {
    height: 100%;
}

.theme-site .vdatetime-popup__header,
.theme-site .vdatetime-calendar__month__day--selected > span > span,
.theme-site .vdatetime-calendar__month__day--selected:hover > span > span {
  background: #E40C25;
}

.theme-site .vdatetime-year-picker__item--selected,
.theme-site .vdatetime-time-picker__item--selected,
.theme-site .vdatetime-popup__actions__button {
  color: #E40C25;
}

@media (min-width: 576px) {
    .date-list {
        grid-template-columns: repeat(3, 1fr) 50px;
        grid-column-gap: 12px;
    }

    .date-list__value {
        height: 42px;
        font-size: 15px;
        line-height: 42px;
    }

    .date-list__datepicker .icon {
        width: 25px;
        height: 25px;
    }
}

@media (min-width: 1050px) {
}

.consultants-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: -15px 0 0;
}

.consultants-list__item {
    flex: 0 0 50%;
    max-width: 50%;
    margin: 15px 0 0;
    text-align: center;
}

.consultants-list__label {
    width: 105px;
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 0 0 0 20px;
}

.consultants-list__label.--disabled {
    cursor: default;
}

.consultants-list__label:not(.--disabled):hover .consultants-list__checkmark,
.consultants-list__label:not(.--disabled):hover .consultants-list__name {
    color: #E40C25;
}

.consultants-list__photo {
    margin: 0 0 10px;
    height: 90px;
}

.consultants-list__photo img {
    margin: 0 auto;
    width: 75px;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.consultants-list__photo.--best {
    background: url(../../img/consultation/consultant-photo.jpg) no-repeat center;
    background-size: contain;
}

/* .consultants-list__photo.--best img {
    object-fit: contain;
} */

.consultants-list__name {
    margin: 0;
    font-weight: 500;
    font-size: 10px;
    line-height: 150%;
    color: #333333;
    transition: all .2s;
}

.consultants-list__checkbox {
    position: absolute;
    top: 0;
    left: 0;
}

.consultants-list__checkmark {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    color: #9E9E9E;
    border: 1px solid;
    box-sizing: border-box;
    border-radius: 50%;
    transition: all .2s;
    background: #fff;
}

.consultants-list__checkmark:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: auto;
    width: 10px;
    height: 10px;
    background: currentColor;
    border-radius: 50%;
    transition: all .1s;
    transform: scale(.5) translate(-50%, -50%);
    opacity: 0;
}

.consultants-list__checkbox input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.consultants-list__checkbox input:checked + .consultants-list__checkmark {
    color: #E40C25;
}

.consultants-list__checkbox input:checked + .consultants-list__checkmark:before {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
}

.consultants-list__checkbox input:checked:disabled + .consultants-list__checkmark {
    color: #D6D6D6;
}

@media (min-width: 360px) {
    .consultants-list__item {
        flex-basis: 33.33%;
        max-width: 33.33%;
    }
}

@media (min-width: 576px) {
    .consultants-list__item {
        flex-basis: 25%;
        max-width: 25%;
    }
}

.consultation-form {
}

.consultation-form__input {
    height: 40px;
    width: 100%;
    padding: 0 12px;
    background: #F7F7F7;
    border: 1px solid #DDDDDD;
    box-sizing: border-box;
    border-radius: 2px;
    font-size: 12px;
    color: #6C757D;
    transition: all .2s;
    outline: 0;
}

.consultation-form__input:focus {
    background: #fff;
}

.consultation-form__line {
    position: relative;
    margin-bottom: 25px;
}

.consultation-form__title {
    margin: 0 0 14px;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.2;
    color: #333333;
}

.consultation-form___policy-line {
    margin: 0 0 52px;
}

.consultation-form a {
    text-decoration: underline;
    font-weight: bold;
    font-size: 14px;
    line-height: 17px;
    color: #333333;
}

.consultation-form a:hover {
    color: #E40C25;
}

.consultation-form__group {
    margin: 0 0 0 -14px;
}

.consultation-form__group .check-label {
    margin: 0 0 15px 14px;
}

.check-label {
    position: relative;
    display: inline-block;
    min-height: 21px;
    padding: 0 0 0 36px;
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 17px;
    color: #6C757D;
}

.check-label input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.check-label__checkmark {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    transform: translateY(-.2em);
    width: 24px;
    height: 24px;
    background: #FFFFFF;
    border: 1px solid;
    color: #9E9E9E;
    border-radius: 2px;
    transition: all .1s;
}

.check-label__checkmark .icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    opacity: 0;
    transition: all .1s;
    transform: scaleX(.5);
}

.check-label input:checked + .check-label__checkmark {
    color: #E40C25;
}

.check-label input:checked + .check-label__checkmark .icon {
    opacity: 1;
    transform: scaleX(1);
}

.check-label__value .icon {
    color: #333;
}

.check-label__value .icon.--phone {
    margin-top: -2px;
}

.consultation-form__call-me {
    margin: 0 0 20px;
    font-weight: bold;
}

.consultation-form__submit {
    width: 100%;
    margin-top: 22px;
}

.consultation-form__info {
    margin: 96px 0 0;
    font-size: 14px;
    line-height: 17px;
    color: #9E9E9E;
}
.test-drive-consultant__item {
    border: 1px solid #DDDDDD;
}
.test-drive-consultant__item:hover {
    border-color: #E40C25;
}
.test-drive-consultant__item .consultation-form-section,
.test-drive-consultant__item .test-drive-car__label,
.test-drive-consultant__item .test-drive-car__maps{
    border: none;
}
.owl-carousel {
    position: relative;
}
.owl-nav {
    position: absolute;
    top:40%;
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: -1;
}
.owl-prev, .owl-next {
    background-color: #F3F3F3!important;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 30px!important;
    color: #9E9E9E!important;
    position: relative;
    outline: none;
}
.owl-prev:hover, .owl-next:hover {
    background: #FEE3E7!important;
    color: #E40C25!important;
}
.owl-prev:focus, .owl-next:focus {
    outline: none;
}
.owl-prev {
    left: -40px;
}
.owl-next {
    right: -40px;
}
.owl-prev span, .owl-next span {
    position: relative;
    top: -10px;
}
.owl-carousel button.owl-dot{
    width: 8px;
    height: 8px;
    background: #C4C4C4 !important;
    margin: 15px;
    border: 2px solid transparent!important;
    border-radius: 50%;
}
.owl-carousel button.owl-dot.active {
    background: #E40C25 !important;
    border: 2px solid #E40C25!important;
}
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 10px;
}

.consultants-slider {
    margin: 0 30px;
    width: auto !important;
}

.consultants-slider .consultants-list__photo img {
    width: 75px;
}

.time-preloader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 200px;
    background: #fff;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.time-preloader p {
    margin: 30px 0 0;
}

.multi-consultation-content {
    position: relative;
    min-height: 300px;
}

.modal-body a{
    font-style: inherit !important;
    font-family: 'Conv_ToyotaType-Regular', sans-serif !important;
}

@media (min-width: 767px) {
    #smsCode{
        width: 198%!important;
    }
}

