body, html {
    min-height: 100%;
	scrollbar-color: #444c46 #222626;
	-webkit-overflow-scrolling: touch;
    color: #898177;
}
body::-webkit-scrollbar {
	background: #222626;
}
body::-webkit-scrollbar-corner {
	background: #222626;
}
body::-webkit-scrollbar-thumb {
	background: #444c46;
}
body::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(to right, #6c6946, #4e4c32);
}
body::-webkit-scrollbar-thumb:active {
	background: linear-gradient(to right, #6c6946, #4e4c32);
}
:focus:not(:focus-visible){
    outline: none;
}
img {
	max-width: 100%;
}

.header {
	position: sticky;
	top: -1px;
	z-index: 48;

}
.header--scroll[data=vehicle] {
    padding-bottom: 1px;
}

.menu {
    background-color: transparent;
    font-family: CoreSansD47, sans-serif;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    max-width: 872px;
    margin: 0 auto;
    line-height:1;
}
@media (max-width:923px) {
    .menu {
        max-width: 573px;
    }
}
.menu__buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100%;
    width: 71%;
    padding: 0px;
    cursor: default;
    gap: 10px;
    padding: 19px 0 18px 0;
}

.menu__button {
    text-transform: uppercase;
    font-family: CoreSansD47, sans-serif;
    font-size: 16px;
    color: #898177;
    background-color: transparent;
    border: 0;
    padding: 0;
    display: none;
}
.menu__button:hover,
.menu__button--current {
    color: #fbfbfb;
}
.menu__button--current {
    font-size: 17px;
}

.items_layout {
	width: 872px;
	position: relative;
	margin: 0 auto;
    overflow: hidden;
}
@media (max-width:923px) {
    .items_layout {
        width: 573px;
    }
}
.items_layout > .items {
    width: 897px;
    /*gap: 25px;*/
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-bottom: 9px;
}
@media (max-width:923px) {
    .items_layout > .items {
        width: 598px;
    }
}

.card {
    font-family: CoreSansD45, "Helvetica CE", Arial, sans-serif;
    background-color: rgba(31, 31, 31, 0.83);
    margin-right: 25px;
    margin-bottom: 25px;
    height: 271px;
    box-sizing: border-box;
    display: block;
    border: 1px solid #858585;
	width: 100%;
    max-width: 274px;
}
.card--2 {
    margin-left: 0;
	max-width: 573px;
}
.card__img2 {
    display: none;
}
.card--2 .card__img1 {
    display: none;
}
.card--2 .card__img2 {
    display: block;
}
.card__figure {
    position: relative;
    width: auto;
    height: 100%;
    margin: 0;
}
.card__caption {
    overflow: hidden;
    font-size: 14px;
    line-height: 1.3;
    text-align: left;
    color: #F3F3F3;
    padding: 9px 18px 18px 18px;
    width: 100%;
    max-height: 75px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    background: rgba(58, 46, 36, 0.8);
    transition: max-height 1s ease-out;
    box-sizing: border-box;
}
.card:hover .card__caption,
.card__caption:focus-within {
    max-height: 270px;
    transition: max-height 1s ease-out;
}
.card__title {
    overflow: hidden;
    white-space: nowrap;
    font-family: CoreSansD47, sans-serif;
    font-weight: normal;
    line-height: 1;
    color: #F3F3F3;
    font-size: 20px;
    line-height: 26px;
    text-transform: uppercase;
    margin: 0 0 3px 0;
    text-align: left;
    width:100%;
}
.card__description {
    margin: 0 0 3px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease-out;
}
.card:hover .card__description,
.card:focus-within .card__description {
    max-height:  56px;
    transition: max-height 0.5s;
}
.card--2:hover .card__description,
.card--2:focus-within .card__description {
    max-height: 140px;
    transition: max-height 1s ease-out;
}
ul.card__description {
    padding-left: 20px;
}
.card__price {
    font-size: 20px;
    color: #FFDC97;
}
.card__priceOld {
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    color: #7E7E7E;
    text-transform: uppercase;
    margin-left: 14px;
}
.card__footer {
    margin-top: 11px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.card__more {
    font-family: CoreSansD45, "Helvetica CE", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    color: #FFDC97;
    text-decoration-line: underline;
    margin: 0 0 2px 0;
    padding: 0;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}
.card__more:hover {
    text-decoration-line:none;
}
.card__buy {
    font-family: CoreSansD45, "Helvetica CE", Arial, sans-serif;
    background: rgba(140, 25, 25, 0.8);
    color: #FFDC97;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    padding: 11px 37px;
    transition: background 0.1s ease-out, color 0.1s ease-out;
    border: 0;
}
.card__buy:hover {
    background: rgba(140, 25, 25, 1);
    color: white;
    transition: background 0.1s ease-out, color 0.1s ease-out;
}
.card__label {
	display: flex;
	align-items: center;
	position: absolute;
	box-sizing: border-box;
	right: 0;
	top: 0;
	pointer-events: none;
	z-index: 1;
	background: rgba(190, 32, 32, 0.8);
	color: #FFFFFF;
	font-style: normal;
	font-weight: bold;
	font-size: 11px;
	line-height: 14px;
	text-transform: lowercase;
	padding: 4px 7px 5px 7px;
}
.card__labelLine {
	width: 1px;
	height: 16px;
	display: inline-block;
	background-color: white;
	margin: 0 5px;
}


.tab {
    display: none;
	margin-bottom: 60px;
    min-height: 548px;
}
.tab--active {
    display: block;
}
.tab__title {
    font-family: CoreSansD47, sans-serif;
    font-weight: normal;
    letter-spacing: 0.06em;
    color: #F3F3F3;
    font-size: 19px;
    text-transform: uppercase;
    max-width: 872px;
    margin: 0 auto 18px auto;
}
@media (max-width:923px) {
    .tab__title {
        max-width: 573px;
    }
}

.cardLarge {
    margin-bottom: 36px;
}

.cardLarge__figure {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}
.cardLarge__img {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.cardLarge__logo {
    width: 199px;
    height: auto;
}
.cardLarge__caption {
    position: relative;
    z-index: 1;
    min-height: 270px;
    font-family: CoreSansD45, "Helvetica CE", Arial, sans-serif;
    max-width: 872px;
    font-size: 14px;
    line-height: 1.3;
    text-align: left;
    margin: 0 auto;
    padding: 28px 0 34px 0;
    color: #F3F3F3;
    width: 100%;
    box-sizing: border-box;
}
@media (max-width:923px) {
    .cardLarge__caption {
        width: 573px;
    }
}
.cardLarge__title {
    font-family: CoreSansD47, sans-serif;
    font-weight: normal;
    letter-spacing: 0.06em;
    color: #F3F3F3;
    font-size: 20px;
    line-height: 26px;
    text-transform: uppercase;
    margin: 28px 0;
    text-align: left;
    width:100%;
}
.cardLarge__more {
    font-family: CoreSansD45, "Helvetica CE", Arial, sans-serif;
    background: rgba(140, 25, 25, 0.8);
    color: #FFDC97;
    font-size: 16px;
    text-transform: uppercase;
    padding: 11px 57px;
    transition: background 0.1s ease-out, color 0.1s ease-out;
    border: 0;
    text-decoration: none;
    display: inline-block;
}
.cardLarge__more:hover {
    background: rgba(140, 25, 25, 1);
    color: white;
    transition: background 0.1s ease-out, color 0.1s ease-out;
}
.iframe__load {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.filters {
    color: #C6C6C6;
	max-width: 872px;
	padding: 16px 50px;
	border: 0.5px dashed rgba(230, 230, 230, 0.3);
	margin: 0 auto 15px auto;
	box-sizing: border-box;
    display: none;
    align-items: flex-start;
}
@media (max-width:923px) {
    .filters {
        width: 573px;
    }
}
.header[data=vehicle] .filters {
    display: flex;
}
.filters_box1, .filters_box2 {
    display: inline-block;
}
.filters_box2 {
    margin-left: 31px;
}
.filters__header {
    margin: 0 0 10px 0;
    font-family: CoreSansD47, sans-serif;
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
}
.filters__list {
    display: flex;
    vertical-align: middle;
    /*gap: 14px;*/
    list-style: none;
    margin: 0;
    padding: 0;
}
.filters__item {
    position: relative;
    margin: 0 14px 0 0;
    padding: 0;
}
.filters__button {
    font-family: CoreSansD45, "Helvetica CE", Arial, sans-serif;
    font-size: 13px;
    font-weight: normal;
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    opacity: 0.3;
    color: #C6C6C6;
}
.filters__button:hover {
    opacity: 0.8;
}
.filters__button.active {
    opacity: 1;
}
.filters__button.active {
    font-weight: bold;
}
.filters__buttonIcon {
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-right: 4px;
}
