/* ==========================================
	   CATEGORY NAVIGATION
========================================== */
.category-nav-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-slider {
    position: relative;
    padding-top: 12px;
}

.tab-slider-tabs {
    display: flex;
    gap: 24px;
}

.tab-slider-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: #fff;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), width .35s cubic-bezier(.4, 0, .2, 1);
}

/* ==========================================
   TABS
========================================== */
.vehicle-tab {
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    flex-shrink: 0;
    transition: color .3s;
}

.vehicle-tab.active {
    color: #fff;
}

.tab-category {
    display: flex;
    align-items: center;
}

.tab-title {
    font-size: 20px;
    text-transform: uppercase;
}

.vehicle-count {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .7);
    font-size: 10px;
    font-weight: 700;
}

.vehicle-tab.active .vehicle-count {
    background: #fff;
    color: #05141f;
}

/* ==========================================
   AJAX WRAPPER
========================================== */
.vehicle-ajax-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.vehicle-ajax-wrapper .vehicle-header-wrapper {
    text-align: center;
    margin-bottom: 90px;
    animation: fadeIn 5s ease-in-out;
}

.vehicle-ajax-wrapper .vehicle-header-wrapper h2 {
    padding: 20px;
    font-size: 40px;
    line-height: 46px;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================================
   CAROUSEL
========================================== */
.vehicle-carousel {
    display: none;
}

.vehicle-carousel.active {
    display: block;
}

#vehicle-carousel-container {
    position: relative;
    min-height: 350px;
}

/* ==========================================
   SLIDES
========================================== */
.vehicle-slide {
    opacity: 0;
}

.swiper-slide-active {
    transform: scale(1.15);
    opacity: 1;
    z-index: 5;
}

.swiper-slide-prev, .swiper-slide-next {
    transform: scale(1);
    opacity: 1;
}

/* ==========================================
   VEHICLE CARD
========================================== */
.vehicle-card {
    display: block;
}

.vehicle-card img {
    -webkit-transform: scale(0.35);
	transform: scale(0.35);
	height: auto;
	-webkit-transition: -webkit-transform 450ms cubic-bezier(0.3, 0, 0.3, 1);
	transition: -webkit-transform 450ms cubic-bezier(0.3, 0, 0.3, 1);
	transition: transform 450ms cubic-bezier(0.3, 0, 0.3, 1);
	transition: transform 450ms cubic-bezier(0.3, 0, 0.3, 1), -webkit-transform 450ms cubic-bezier(0.3, 0, 0.3, 1);
}

.swiper-slide-active .vehicle-card img {
    transform: scale(1);
}

.vehicle-info-panel {
    padding: 20px;
    text-align: center;
}

/* ==========================================
   AJAX TRANSITION LAYERS
========================================== */
.vehicle-layer {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
}

.vehicle-layer.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.vehicle-layer.is-leaving {
    opacity: 0;
    transform: scale(1.02);
    z-index: 1;
}

/* ==========================================
   PAGE BACKGROUND
========================================== */
.vehicle-page {
    position: relative;
    padding-top: 10vw;
    background: #fff;
}

.vehicle-page {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.vehicle-page.is-ready {
    opacity: 1;
}

.vehicle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 57%;
    overflow: hidden;
}

.vehicle-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity .8s ease;
}

.vehicle-bg-layer.is-active {
    opacity: 1;
}

/* ==========================================
   SWIPER NAVIGATION
========================================== */
.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: calc(50% + 34px);
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #cfd1d4;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 12px;
    line-height: 1;
    color: #05141f;
    opacity: .75;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: #05141f;
    border: none;
    color: #cfd1d4;
    transition: all .2s ease-out;
}

.swiper-button-next:hover:after, .swiper-button-prev:hover:after {
    color: #cfd1d4;
}

/* RTL */
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 80px);
    right: auto;
}

.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 80px);
    left: auto;
}

/* ==========================================
   VEHICLE INFO
========================================== */
.vehicle-info-container {
    padding: 30px 30px 20px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    direction: ltr;
}

@media screen and (min-width: 768px) {
    .vehicle-info-container {
        padding:85px 135px
    }
}

@media only screen and (min-width: 1024px) {
    .vehicle-info-container {
        padding:30px 220px 122px
    }
}

@media only screen and (min-width: 1440px) {
    .vehicle-info-container {
        padding:30px 400px 100px
    }
}

@media only screen and (min-width: 1920px) {
    .vehicle-info-container {
        padding:50px 500px 100px
    }
}

.vehicle-info-container .vehicle-info .vehicle-info__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.vehicle-info-container .vehicle-info--vehicle-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: center;
}

.vehicle-info-container .vehicle-info--vehicle-name .vehicle-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.vehicle-info-container .vehicle-info--vehicle-name .vehicle-info-order__value {
    font-size: 15px;
    padding-bottom: 5px;
    display: none;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset
}

@media screen and (min-width: 768px) {
    .vehicle-info-container .vehicle-info--vehicle-name .vehicle-info-order__value {
        font-size:14px;
        display: inline
    }
}

@media only screen and (min-width: 1024px) {
    .vehicle-info-container .vehicle-info--vehicle-name .vehicle-info-order__value {
        font-size:20px
    }
}

.vehicle-info-container .vehicle-info--vehicle-name .vehicle-info-order__text {
    font-size: 24px;
    line-height: 0.6;
    padding-top: 10px;
    text-align: left;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .vehicle-info-container .vehicle-info--vehicle-name .vehicle-info-order__text {
        font-size:30px;
        max-width: 395px;
    }
}

@media screen and (min-width: 812px) and (max-width: 896px) and (orientation: landscape) {
    .vehicle-info-container .vehicle-info--vehicle-name .vehicle-info-order__text {
        max-width:343px;
        font-size: 36px
    }
}

@media only screen and (min-width: 1024px) {
    .vehicle-info-container .vehicle-info--vehicle-name .vehicle-info-order__text {
        font-size:45px;
        max-width: 435px;
    }
}

@media only screen and (min-width: 1920px) {
    .vehicle-info-container .vehicle-info--vehicle-name .vehicle-info-order__text {
        font-size: 60px;
        max-width: 535px;
    }
}

.vehicle-info-container .vehicle-info .vehicle-usp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.vehicle-info-container .vehicle-info .vehicle-usp .vehicle-usp__label {
    color: #666;
    font-size: 10px;
    line-height: 14px;
    padding-bottom: 5px;
    white-space: nowrap
}

@media only screen and (min-width: 1024px) {
    .vehicle-info-container .vehicle-info .vehicle-usp .vehicle-usp__label {
        font-size: 16px;
    }
}

@media only screen and (min-width: 1920px) {
    .vehicle-info-container .vehicle-info .vehicle-usp .vehicle-usp__label {
        font-size: 20px;
    }
}

.vehicle-info-container .vehicle-info .vehicle-usp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    align-items: flex-start;
}

.vehicle-info-container .vehicle-info .vehicle-usp .vehicle-usp__info {
    font-size: 16px;
    line-height: 24px;
    color: #05141f;
    white-space: normal;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .vehicle-info-container .vehicle-info .vehicle-usp .vehicle-usp__info {
        font-size:20px;
        line-height: 28px
    }
}

@media only screen and (min-width: 1920px) {
    .vehicle-info-container .vehicle-info .vehicle-usp .vehicle-usp__info {
        font-size:26px;
        line-height: 30px
    }
}

.vehicle-info-container .vehicle-info .vehicle-usp sub {
    bottom: 0.8px;
    padding-right: 2px;
    vertical-align: unset;
    color: #05141f;
}

.vehicle-info-container .vehicle-info .vehicle-usp .vehicle-usp__info div {
    padding-top: 0px;
    padding-right: 0px;
    width: 90px;
    font-size: 30px;
    font-weight: bold;
}

@media screen and (min-width: 768px) {
    .vehicle-info-container .vehicle-info .vehicle-usp .vehicle-usp__info div {
        width:160px
    }
}

@media only screen and (min-width: 1024px) {
    .vehicle-info-container .vehicle-info .vehicle-usp .vehicle-usp__info div {
        width: 220px;
    }
}

@media only screen and (min-width: 1920px) {
    .vehicle-info-container .vehicle-info .vehicle-usp .vehicle-usp__info div {
        width: 240px;
    }
}

.vehicle-info-container .vehicle-info__header .disclaimer-link {
    font-size: 8px;
    border-bottom: 1px solid #05141f;
    margin-left: 20px
}

@media only screen and (min-width: 1024px) {
    .vehicle-info-container .vehicle-info__header .disclaimer-link {
        font-size:10px
    }
}

@media only screen and (min-width: 1920px) {
    .vehicle-info-container .vehicle-info__header .disclaimer-link {
        font-size:14px
    }
}

.vehicle-info-container .vehicle-cta-details {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
}

.button-v2 {
    border: 1px solid;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #05141f;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    outline: 0;
    padding: 17px 40px;
    text-align: center;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

.button-v2:active {
    outline: 0
}

.button-v2::-moz-focus-inner {
    border: 0;
    padding: 0
}

.button-v2 {
    background: #05141f;
    border: 1px solid transparent;
    color: #fff;
    -webkit-transition: background 0.3s ease-out,color 0.3s ease-out;
    transition: background 0.3s ease-out,color 0.3s ease-out
}

.button-v2:hover {
    background: #fff;
    color: #05141f;
    border: 1px solid #05141f;
}

.button-v2--outlined {
    background: transparent;
    border: 1px solid #05141f;
    color: #05141f
}

.button-v2--outlined:active {
    color: #05141f
}
.button-v2--outlined:hover {
    background: #05141f;
    color: #fff;
    border: 1px solid #05141f;
}