a, abbr, acronym, address, applet, article, aside, audio, b, blockquote, big, body, center, canvas, caption, cite, code, command, datalist, dd, del, details, dfn, dl, div, dt, 
em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, keygen, label, legend, li, 
meter, nav, object, ol, output, p, pre, progress, q, s, samp, section, small, span, source, strike, strong, sub, sup, table, tbody, tfoot, thead, th, tr, td, video, tt,
u, ul, var {
    border: 0 none;
    font-size: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: top;
}
ol,
ul,
li {
	list-style-type: none;
	list-style: none;
	margin: 0;
	padding: 0;	
}
blockquote,
q {
	quotes: none;
}
table,
table td {
	padding: 0;
	border: none;
	border-collapse: collapse;
}
embed { 
	vertical-align: top;
}
.video embed,
.video object,
.video iframe {
	width: 100%;
    height: auto;
}
.clearfix:before,
.clearfix:after {
    content: '';
    display: table;
}
.clearfix:after {
    clear: both;
}
.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}
article,
aside,
details,
figcaption,
main,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}
textarea {
    overflow: auto;
    vertical-align: top;
}
:focus,
:active,
:hover {
    outline: none;
}
* {
	padding: 0;
	margin: 0;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html,
body {
	min-width: 320px;
	font-family: 'Roboto', sans-serif;
	color: #2b2a29;
	font-size: 16px;
	line-height: 1;
	font-weight: 400;
	overflow-x: hidden;
}
a {
	color: #2b2a29;
	text-decoration: none;
	-webkit-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
a:hover, a:focus {
	color: #EB0100;
}

main a {
	text-decoration: underline;
	text-underline-position: under;
	text-decoration-color: #EE3433;
}

img {
	max-width: 100%;
	height: auto;
}
input,
textarea,
select,
button {
	font-family: 'Roboto', sans-serif;
}


/*----------------------------------------------------------------
Utilities (and some tailwind)
----------------------------------------------------------------*/

.inactive {
	text-decoration: none;
	color: #999999;
}

.text-left{text-align:left}
.text-center{text-align:center}
.text-right{text-align:right}
.text-justify{text-align:justify}

/*----------------------------------------------------------------
Wrapper
----------------------------------------------------------------*/

.wrapper {
	margin: 0 auto;
	width: 100%;
	max-width: 970px;
	padding: 0 15px;
}


/*----------------------------------------------------------------
Buttons
----------------------------------------------------------------*/

.btn {
	display: inline-block;
	padding: 10px 35px;
	border-radius: 3px;
	transition: all 0.4s ease 0s;
	font-size: 15px;
	line-height: 1;
	font-weight: 500;
	cursor: pointer;
}
.btn--border {
	background: #fff;
	border: 1px solid rgba(238,52,51,0.2);
	color: #EE3433;
}
.btn--fill {
	background: #EE3433;
	border: 1px solid #EE3433;
	color: #fff !important;
}
.btn--fillwhite {
	background: #fff;
	border: 1px solid #fff;
	color: #EE3333;
}
.btn--fullw {
	width: 100%;
}
.btn--big {
	padding-top: 15px;
	padding-bottom: 15px;
}
.btn--bolder {
	font-weight: 600;
}
.btn:hover {
	background: #EB0100;
	border: 1px solid #EB0100;
}
.btn--border:hover {
	color: #fff;
}
.btn:active {
	background: #B92A29;
	border: 1px solid #B92A29;
}
.btn:disabled {
	background: #979797;
	border: 1px solid #979797;
}
.btn--fillwhite:hover {
	background: #EE3433;
	color: #fff;
}
.btn--fillwhite:active {
	background: #B92A29;
	color: #fff;
}

.btn-link {
  background: none;
  border: none;
  padding: 0;
  font-size: inherit;
  color: #2b2a29;
  text-decoration: underline;
  transition: all 0.4s ease 0s;
  cursor: pointer;
}
.btn-link:hover, .btn-link:focus, .btn-link:active {
  color: #EB0100;
}


/*----------------------------------------------------------------
Header
----------------------------------------------------------------*/

.header__top {
	padding: 12px 0;
	background: #F6F6F6;
}
.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header__nav ul {
	display: flex;
	align-items: center;
}
.header-nav__item {
	position: relative;
	margin: 0 0 0 20px;
	padding: 0 0 0 25px;
}
.header-nav__item:first-child {
	padding: 0;
	margin: 0;
}
.header-nav__item:first-child:before {
	content: none;
}
.header-nav__item,
.header-nav__link {
	color: #000;
	font-size: 15px;
	font-weight: 500;
}
.header-nav__link:hover {
	color: #EE3333;
}
.header-nav__item:before {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	width: 5px;
	height: 5px;
	background: #D9D9D9;
	transform: rotate(45deg);
}
.header__favorites {
	position: relative;
	padding: 0 0 0 28px;
	background-color: transparent;
	border: none;
	color: #EE3333;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.4s ease 0s;
	text-decoration: none;
}
.header__favorites span {
	color: #333;
}
.header__favorites:before {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	width: 16px;
	height: 16px;
	background-size: 16px;
	background: url(../images/i/i-heart-red.svg) no-repeat;
	transition: all 0.4s ease 0s;
}
.header__favorites:hover {
	color: #000;
}
.header__favorites:hover:before {
	background: url(../images/i/i-heart-grey.svg) no-repeat;
}
.header__hamburger,
.header__afavorites {
	display: none;
}
.header-afavoritelnk {
	position: relative;
	display: inline-block;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(140,140,140,0.2);
	background: url(../images/i/i-heart-red.svg) center no-repeat;
	background-size: 16px;
	text-decoration: none;
}
.header-afavoritelnk__count {
	position: absolute;
	right: 0;
	top: 0;
	width: 13px;
	height: 13px;
	background: #EE3333;
	border-radius: 50%;
	color: #fff;
	font-size: 8px;
	line-height: 13px;
	font-weight: 500;
	text-align: center;
}
.header__logo img, .header__logo svg {
	width: 246px;
	height: 73px;
}
.header__langs {
	margin: 0 auto 0 30px;
	display: flex;
	align-items: center;
}
.header__lang {
	margin: 0 0 0 10px;
	flex: 0 0 40px;
	max-width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(140, 140, 140, 0.1);
	color: #585858;
	font-size: 10px;
	line-height: 40px;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	transition: all 0.4s ease 0;
}
.header__lang--active {
	border: 1px solid rgba(140, 140, 140, 0.2);
	color: #000;
}
.header__auth {
	display: flex;
	align-items: center;
}
.header__auth a {
	margin: 0 0 0 10px;
}
.header__bottom {
	padding: 5px 0 0;
}


/*----------------------------------------------------------------
Adaptive menu gamburger
----------------------------------------------------------------*/

.header__hamburger {
	display: none;
}
.adaptive-menu-toggle {
	display: block;
	position: relative;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #EE3333;
	border: none;
	cursor: pointer;
	transition: all 0.4s ease 0s;
}
.menu-toggle-inner {
	position: absolute;
	left: 13px;
	top: 15px;
	right: 13px;
	bottom: 15px;
	margin: auto;
}
.menu-toggle-line {
	position: absolute;
	background: #fff;
	display: block;
	margin: auto;
	height: 2px;
	width: 100%;
}
.menu-toggle-line--1 {
	top: 0;
	-webkit-transition: width 0.2s ease 0.4s;
	-o-transition: width 0.2s ease 0.4s;
	transition: width 0.2s ease 0.4s;
}
.menu-toggle-line--2 {
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition: width 0.2s ease 0.3s;
	-o-transition: width 0.2s ease 0.3s;
	transition: width 0.2s ease 0.3s;
}
.menu-toggle-line--3 {
	bottom: 0;
	-webkit-transition: width 0.2s ease 0.2s;
	-o-transition: width 0.2s ease 0.2s;
	transition: width 0.2s ease 0.2s;
}
.menu-toggle-line--4,
.menu-toggle-line--5 {
	opacity: 0;
	top: 5px;
}
.menu-toggle-line--4 {
	-webkit-transition: opacity 0.2s ease 0.2s, -webkit-transform 0.2s ease 0.2s;
	transition: opacity 0.2s ease 0.2s, -webkit-transform 0.2s ease 0.2s;
	-o-transition: opacity 0.2s ease 0.2s, -o-transform 0.2s ease 0.2s;
	-moz-transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s, -moz-transform 0.2s ease 0.2s;
}
.menu-toggle-line--5 {
	-webkit-transition: opacity 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
	transition: opacity 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
	-o-transition: opacity 0.2s ease 0s, -o-transform 0.2s ease 0s;
	-moz-transition: opacity 0.2s ease 0s, transform 0.2s ease 0s, -moz-transform 0.2s ease 0s;
}
.adaptive-menu-toggle--open .menu-toggle-line--1 {
	width: 0;
	-webkit-transition: width 0.2s ease 0s;
	-o-transition: width 0.2s ease 0s;
	transition: width 0.2s ease 0s;
}
.adaptive-menu-toggle--open .menu-toggle-line--2 {
	width: 0;
	-webkit-transition: width 0.2s ease 0.1s;
	-o-transition: width 0.2s ease 0.1s;
	transition: width 0.2s ease 0.1s;
}
.adaptive-menu-toggle--open .menu-toggle-line--3 {
	width: 0;
	-webkit-transition: width 0.2s ease 0.2s;
	-o-transition: width 0.2s ease 0.2s;
	transition: width 0.2s ease 0.2s;
}
.adaptive-menu-toggle--open .menu-toggle-line--4 {
	opacity: 1;
	-webkit-transform: rotate(45deg) translateZ(0);
	-ms-transform: rotate(45deg) translateZ(0);
	-o-transform: rotate(45deg) translateZ(0);
	transform: rotate(45deg) translateZ(0);
	-webkit-transition: opacity 0.2s ease 0.2s, -webkit-transform 0.2s ease 0.2s;
	transition: opacity 0.2s ease 0.2s, -webkit-transform 0.2s ease 0.2s;
	-o-transition: opacity 0.2s ease 0.2s, -o-transform 0.2s ease 0.2s;
	-moz-transition: opacity 0.2s ease 0.2s, transform 0.2s ease 0.2s, -moz-transform 0.2s ease 0.2s;
}
.adaptive-menu-toggle--open .menu-toggle-line--5 {
	opacity: 1;
	-webkit-transform: rotate(-45deg) translateZ(0);
	-ms-transform: rotate(-45deg) translateZ(0);
	-o-transform: rotate(-45deg) translateZ(0);
	transform: rotate(-45deg) translateZ(0);
	-webkit-transition: opacity 0.2s ease 0.4s, -webkit-transform 0.2s ease 0.4s;
	transition: opacity 0.2s ease 0.4s, -webkit-transform 0.2s ease 0.4s;
	-o-transition: opacity 0.2s ease 0.4s, -o-transform 0.2s ease 0.4s;
	-moz-transition: opacity 0.2s ease 0.4s, transform 0.2s ease 0.4s, -moz-transform 0.2s ease 0.4s;
}
.adaptive-container {	
	position: fixed;
	z-index: 0;
	left: 0;
	top: 70px;
	bottom: 0;
	padding: 0 0 25px;
	width: 100%;
	border-top: 1px solid #EEE;
	background: #fff;	
	-webkit-overflow-scrolling: touch;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-backface-visibility: hidden;
    backface-visibility: hidden;
	opacity: 0;
    visibility: hidden;
	overflow-y: auto;
}
.adaptive-container.adaptive-container--open {
	opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 99;
}
.adaptive-nav__link {
	display: block;
	border-bottom: 1px solid rgba(238,51,51,0.15);
	padding: 15px;
	color: #000;
	font-size: 18px;
	text-align: center;
}
.adaptive-nav__link--active,
.adaptive-nav__link:hover {
	color: #EE3333;
}
.adaptive-langs {
	margin: 60px 0 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.adaptive-lang {
	width: 90px;
	padding: 14px 0;
	background: #F2F2F2;
	color: #747474;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
}
.adaptive-lang:first-child {
	border-radius: 3px 0 0 3px;
}
.adaptive-lang:last-child {
	border-radius: 0 3px 3px 0;
}
.adaptive-lang--current {
	background: #747474;
	color: #fff;
	cursor: default;
}
.adaptive-auth {
	margin: 60px 0 0;
	padding: 0 20px;
}
.adaptive-auth__item {
	margin: 0 0 15px;
	text-align: center;
}
.adaptive-auth__item:last-child {
	margin: 0;
}


/*----------------------------------------------------------------
Middle container
----------------------------------------------------------------*/

.middle-container {
	margin: 15px 0 0;
	min-height: 50vh;
}
.middle-container__row {
	display: flex;
}
.middle-container__lside {
	flex: 0 0 300px;
	max-width: 300px;
}
.filter-trigger {
	margin: 0 0 15px;
	display: none;
	width: 100%;
	align-items: center;
	justify-content: center;
	border: none;
	padding: 12px;
	border-radius: 3px;
	background: #F0EDE7;
	cursor: pointer;
	transition: all 0.4s ease 0s;
}
.filter-trigger__ico {
	margin: 0 10px 0 0;
	flex: 0 0 21px;
	max-width: 21px;
	height: 21px;
	background: url(../images/i/i-filter-grey.svg) no-repeat;
	background-size: 21px;
	transition: all 0.4s ease 0s;
}
.filter-trigger__name {
	font-size: 15px;
	font-weight: 500;
}
.filter-trigger--active {
	background: #EE3333;
}
.filter-trigger--active .filter-trigger__ico {
	background: url(../images/i/i-filter-white.svg) no-repeat;
}
.filter-trigger--active .filter-trigger__name {
	color: #fff;
}
.filter-form {
	padding: 20px;
	background: #F0EDE7;
	border-radius: 3px;
}
.filter-form__stats {
	margin: 0 0 20px;
	font-size: 14px;
}
.filter-form__box {
	margin: 0 0 15px;
}
.filter-form__typemark,
.filter-form__region {
	margin: 0 0 5px;
}
.filter-form__stats a {
	text-decoration: underline;
}
.filter-form__stats a:hover {
	color: #EE3333;
}
.filter-form__group {
	margin: 0 0 15px;
}
.filter-form__group:last-child {
	margin: 0;
}
.filter-form__groups {
	position: relative;
	border-top: 1px solid #d5d5d5;
	padding: 10px 0 0;
	margin: 12px 0 0;
}
.filter-form__groups:first-child {
	padding: 0;
	margin: 0;
	border: none;
}
.filter-form__close {
	position: absolute;
	right: 0;
	top: 10px;
	width: 11px;
	height: 11px;
	border: 1px solid #EE3333;
	border-radius: 50%;
	background: url(../images/i/i-close-red.svg) center no-repeat;
	background-size: 5px;
	cursor: pointer;
	transition: all 0.4s ease 0s;
}
.filter-form__row {
	align-items: center;
	margin: 7px -3px 0;
}
.filter-form__col {
	display: inline-block;
}
.filter-clabel {
	display: block;
	margin-bottom: 4px;
	cursor: pointer;
}
.filter-clabel__radio {
	opacity: 0;
	cursor: pointer;
	width: 0;
	height: 0;
}
.filter-clabel__checkmark {
	padding: 3px 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #000;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	transition: all 0.4s ease 0s;
}
.filter-clabel__radio:checked ~ .filter-clabel__checkmark {
	background: #F0EDE7;
	border: 1px solid rgba(0,0,0,0.1);
}
.filter-label {
	margin: 0 0 7px;
	display: block;
	font-size: 14px;
	line-height: 1;
}
.filter-select {
	width: 100%;
	height: 34px;
	padding: 0 14px;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 3px;
	color: #4A4A4A;
	font-size: 15px;
	line-height: 32px;
	text-overflow: ellipsis;
	-webkit-appearance: none;
	-moz-appearance: none;
  appearance: none;
}
.filter-form__group--select2 .select2-container--default .select2-selection--single {
	height: 34px;
	border-radius: 3px;
}
.filter-form__group--select2 .select2-container--default .select2-selection--single .select2-selection__rendered {
	color: #4A4A4A;
	font-size: 15px;
    line-height: 32px;
}
.filter-form__group--select2 .select2-container .select2-selection--single .select2-selection__rendered {
	padding: 0 25px 0 14px;
}
.filter-form__group--select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 32px;
}
.select2-results {
	box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
}
.select2-dropdown,
.filter-form__group--select2 .select2-container--default .select2-selection--single,
.select2-container--default .select2-search--dropdown .select2-search__field {
	border-color: rgba(0,0,0,0.1);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
	border: none;
	background: url(../images/i/i-chevron-arrow-bottom.svg) no-repeat;
	width: 7px;
	height: 7px;
	background-size: 7px;
}
.select2-results__option {
	padding: 7px 14px;
	font-size: 14px;
}
.filter-form__add {
	margin: 0 0 15px;
	padding: 0 0 0 15px;
	position: relative;
	border: none;
	cursor: pointer;
	color: #4e4e4e;
	font-size: 13px;
	transition: all 0.4s ease 0s;
	background-color: unset;
}
.filter-form__add:before {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '+';
	width: 11px;
	height: 11px;
	border: 1px solid #878787;
	border-radius: 50%;
	color: #878787;
	font-size: 10px;
	line-height: 10px;
	text-align: center;
	transition: all 0.4s ease 0s;
}
.filter-form__add:hover {
	color: #EE3433;
}
.filter-form__add:hover:before {
	border-color: #EE3433;
	color: #EE3433;
}
.filter-form__inline {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 -12px;
}
.filter-form__inlinecol {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0 12px;
}
.filter-form__inlinedelimiter {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	content: '';
	margin: auto;
	width: 4px;
	height: 1px; 
	background: #878787;
}
.filter-form__input {
	width: 100%;
	height: 34px;
	border-radius: 3px;
	border: 1px solid #aaa;
	color: #4A4A4A;
	font-size: 15px;
    line-height: 32px;
	padding: 0 14px;
}
.filter-form__input:focus {
	border-color: #EE3433;
}
.filter-checkbox_group {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.save-filter {
	margin: 20px 0;
}
.filter-form__actions {
	padding: 10px 0 0;
	text-align: center;
}
.save-filter__btn {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	background: #F6F6F6;
	border-radius: 3px;
	border: none;
	padding: 14px;
	color: #EE3433;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.4s ease 0s;
}
.save-filter__btn span {
	display: inline-block;
	margin: 0 12px 0 0;
	background: url(../images/i/i-heart-red.svg) center no-repeat;
	width: 16px;
	height: 16px;
	background-size: 16px;
	transition: all 0.4s ease 0s;
}
.save-filter__btn:hover {
	background: #EE3433;
	color: #fff;
}
.save-filter__btn:active {
	background: #B92A29;
}
.save-filter__btn:hover span {
	background: url(../images/i/i-heart-white.svg) center no-repeat;
	width: 16px;
	height: 16px;
	background-size: 16px;
}
.filter-form__extendbtn {
	margin: 15px 0 0;
	border: none;
	background: transparent;
	color: #EE3433;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.4s ease 0s;
}
.filter-form__extendbtn:hover,
.filter-form__extendbtn--active {
	color: #000;
}
.filter-form__extend {
	display: none;
}
.filter-ranges__slider {
	margin: 20px 0 0;
}
.filter-ranges__slider.noUi-target {
	border: none;
	box-shadow: none;
	background: #BEBEBE;
}
.filter-ranges__slider.noUi-horizontal {
	height: 1px;
}
.filter-ranges__slider .noUi-connect {
	background: #4A4A4A;
}
.filter-ranges__slider .noUi-handle {
	border: none;
	cursor: pointer;
	background: #636363;
	box-shadow: none;
	border-radius: 50%;
}
.filter-ranges__slider .noUi-handle:after,
.filter-ranges__slider .noUi-handle:before {
	content: none;
}
.filter-ranges__slider.noUi-horizontal .noUi-handle {
	width: 13px;
	height: 13px;
	top: -6px;
	right: -6px;
}
.sidebar-box {
	margin: 0 0 25px;
}
.sidebar-box--mobile {
	display: none;
}
.sidebar-box__title {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 500;
}
.sidebar-box__clear {
	border: none;
	background: transparent;
	color: #969696;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.4s ease 0s;
}
.sidebar-box__clear:hover {
	color: #EE3433;
}
.search-finded__title {
	position: relative;
	padding: 10px 20px 10px 45px;
	border-radius: 3px;
	background: #000;
	color: #fff;
	font-size: 15px;
}
.search-finded__title:before {
	position: absolute;
	left: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	background: url(../images/i/i-car-white.svg) no-repeat;
	width: 16px;
	height: 16px;
	background-size: 16px;
}
.search-finded__body {
	border-radius: 0 0 3px 3px;
	background: #F0EDE7;
	padding: 15px 20px 20px;
}
.search-finded__subscr {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.search-finded-subscr__title {
	flex: 0 0 120px;
	max-width: 120px;
	color: #EE3333;
	font-size: 18px;
	font-weight: 600;
}
.search-finded-subscr__items {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.search-finded-subscr__item {
	margin: 0 0 0 10px;
	flex: 0 0 40px;
	max-width: 40px;
	height: 40px;
	background-size: 40px;
}
.search-finded-subscr__item:hover {
	opacity: 0.7;
}
.search-finded-subscr__item--tg {
	background: url(../images/i/i-tg.svg) no-repeat;
}
.search-finded-subscr__item--viber {
	background: url(../images/i/i-viber.svg) no-repeat;
}
.sidebar-box__favorites {
	margin: 15px 0;
}
.favorite-item {
	position: relative;
	margin: 0 0 12px;
	padding: 5px 45px 5px 15px;
	border-radius: 3px;
	overflow: hidden;
	display: flex;
	align-items: center;
	background: #F6F6F6;
	height: 40px;
}
.favorite-item__title {
	margin: 0 10px 0 0;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
}
.favorite-item__title:hover {
	color: #EE3333;
}
.favorite-item__delete {
	background: url(../images/i/i-close-black.svg) no-repeat;
	flex: 0 0 10px;
	max-width: 10px;
	width: 10px;
	height: 10px;
	background-size: 10px;
	border: none;
	cursor: pointer;
	transition: all 0.4s ease 0s;
}
.favorite-item__delete:hover {
	opacity: 0.7;
}
.favorite-item__arr {
	position: absolute;
	right: 0;
	top: 0;
	width: 40px;
	height: 100%;
	background: #EE3333 url(../images/i/i-chevron-right-white.svg) center no-repeat;
	background-size: 6px;
}
.favorite-item__arr:hover {
	background-color: #EB0100;
}
.favorite-item__arr:active {
	background-color: #B92A29;
}
.sidebar-box__moreplus {
	font-size: 14px;
	line-height: 18px;
	border-bottom: 1px solid rgba(74, 74, 74, 0.1);
}
.sidebar-box__moreplus:hover {
	color: #EE3333;
}
.search-finded__notice {
	margin: 15px 0 0;
	font-size: 15px;
	line-height: 20px;
}
.sidebar-findresults-empty {
	margin: 20px 0 0;
	padding: 30px;
	border-radius: 3px;
	background: #F6F6F6;
	text-align: center;
}
.sidebar-findresults-empty__title {
	position: relative;
	max-width: 150px;
	padding: 45px 0 0;
	margin: 0 auto;
	color: #969696;
	font-size: 15px;
	line-height: 22px;
}
.sidebar-findresults-empty__title:before {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	margin: auto;
	content: '';
	background: url(../images/i/i-favorite-sidebar.svg) no-repeat;
	width: 29px;
	height: 29px;
	background-size: 29px;
}
.sidebar-favcars {
	margin: 15px 0;
}
.sidebar-favcar {
	margin: 0 0 15px;
	display: flex;
}
.sidebar-favcar:last-child {
	margin: 0;
}
.sidebar-favcar__title {
	margin: 0 0 2px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.sidebar-favcar__link {
	margin: 0 5px 0 0;
	font-size: 15px;
	line-height: 17px;
	font-weight: 500;
}
.sidebar-favcar__link:hover {
	color: #EE3333;	
}
.car-addtofav-btn {
	flex: 0 0 22px;
	max-width: 22px;
	height: 22px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.4s ease 0s;
	background: #D0D0D0 url(../images/i/i-heart-grey.svg) center no-repeat;
	background-size: 12px;
}
.car-addtofav-btn:hover {
	background-image: url(../images/i/i-heart-red.svg);
}
.car-addtofav-btn--active {
	background: #EE3333 url(../images/i/i-heart-white.svg) center no-repeat;
	background-size: 12px;
	border-color: #EE3333;
}
.car-addtofav-btn--active:hover {
	background: #EE3333 url(../images/i/i-heart-white.svg) center no-repeat;
	background-size: 12px;
}
.sidebar-favcar__img {
	flex: 0 0 85px;
	margin: 0 15px 0 0;
}
.sidebar-favcar__img img {
	border-radius: 3px;
	width: 85px;
	height: 64px;
}
.sidebar-favcar__body {
	flex-grow: 1;
}
.sidebar-favcar__mileage {
	margin: 0 0 10px;
	color: #4A4A4A;
	font-size: 14px;
}
.sidebar-favcar__price {
	display: inline-block;
	padding: 4px 6px;
	border-radius: 3px;
	background: #EE3433;
	color: #fff;
	font-size: 13px;
}
.search-online-widget {
	padding: 30px 20px;
	border-radius: 3px;
	background: #3C3C3C;
}
.search-online-widget__ico {
	margin: 0 0 15px;
}
.search-online-widget__title {
	margin: 0 0 20px;
	font-size: 14px;
	color: #fff;
}
.search-online-widget__label {
	display: block;
	margin: 0 0 7px;
	font-size: 14px;
	color: #969696;
}
.search-online-widget__input {
	background: #fff;
	border-radius: 3px;
	padding: 0 20px;
	width: 100%;
	height: 38px;
	border: none;
	color: #969696;
	font-size: 15px;
	line-height: 36px;
}

.middle-container__content {
	margin: 0 0 0 20px;
	flex-grow: 1;
	overflow: hidden;
}
.middle-container__content h2 {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: 500;
}
.page-head {
	margin: 0 0 25px;
}
.page-head__title {
	display: flex;
	align-items: center;
	margin: 0 0 10px;
}
.page-head__titlev {
	margin: 0 10px 0 0;
	font-size: 28px;
	font-weight: 500;
}
.page-head__description {
	color: #4A4A4A;
	font-size: 20px;
}
.breadcrumbs ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.breadcrumbs__item {
	position: relative;
	margin: 0 10px 5px 0;
	padding: 0 15px 0 0;
	color: #676767;
	font-size: 13px;
}
.breadcrumbs__item:after {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	background: url(../images/i/i-chevron-right-greysm.svg) no-repeat;
	width: 3px;
	height: 6px;
	background-size: 3px 6px;
}
.breadcrumbs__item:last-child {
	padding: 0;
	margin: 0 0 5px;
}
.breadcrumbs__item:last-child:after {
	content: none;
}
.breadcrumbs__link {
	color: #969696;
	font-size: 13px;
	text-decoration: none;
}
.breadcrumbs__link:hover {
	color: #EE3333;
}
.s-sort {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 0 5px;
}
.s-sort--pages {
	margin: 30px 0 0;
	justify-content: flex-end;
}
.s-sort__col {
	display: flex;
	align-items: center;
	margin: 0 30px 10px 0;
}
.s-sort__title {
	margin: 0 5px 0 0;
	font-size: 13px;
}
.s-sort select {
	width: auto;
	height: auto;
	border-radius: unset;
	border: unset;
	line-height: normal;
	padding: initial;
	border-top: none;
	border-left: none;
	border-right: none;
	border-bottom: 1px solid rgba(74, 74, 74, 0.1);
	background: transparent;
	cursor: pointer;
	color: #888;
	font-size: 13px;
}
.favorites-tabs-nav {
	margin: 0 0 25px;
	max-width: 350px;
}
.favorites-tabs-nav ul {
	display: flex;
}
.favorites-tabs-nav__item {
	flex-grow: 1;
}
.favorites-tabs-nav__link {
	display: inline-block;
	width: 100%;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
	font-size: 15px;
	text-align: center;
	text-decoration: none;
}
.favorites-tabs-nav__link--active {
	color: #EE3333;
	border-bottom-color: #EE3333;
}
.favorites-tabs-nav__link:hover {
	color: #EE3333;
}
.favorites-tabs-item {
	display: none;
}
.favorites-tabs-item--active {
	display: block;
}
.pagination {
	margin: 40px 0 0;
}
.pagination--right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.pagination__arr {
	margin: 5px 0;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	background-color: #3A3A3A;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 6px 9px;
}
.pagination__arr--l,
.pagination__arr--r {
	flex: 0 0 40px;
	max-width: 40px;
	height: 40px;
}
.pagination__arr--l {
	margin: 5px 15px 5px 0;
	background-image: url(../images/i/i-chevron-left-white.svg);
}
.pagination__arr--r {
	margin: 5px 0 5px 15px;
	background-image: url(../images/i/i-chevron-right-white.svg);
}
.pagination__arr--l:hover,
.pagination__arr--r:hover {
	background-color: #EE3333;
}
.pagination__arr--l:active,
.pagination__arr--r:active {
	background-color: #B92A29;
}
.pagination-nav ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.pagination-nav__item {
	margin: 5px;
	text-align: center;
}
.pagination-nav__link {
	display: inline-block;
	flex: 0 0 40px;
	max-width: 40px;
	width: 40px;
	height: 40px;
	border-radius: 3px;
	background: #F0EDE7;
	line-height: 40px;
}
.pagination-nav__link:hover {
	color: #fff;
	background-color: #EE3333;
}
.pagination-nav__link.active,
.pagination-nav__link:active {
	color: #fff;
	background-color: #B92A29;
}
.search-regions {
	margin: 30px 0 0;
	padding: 30px 30px 15px;
	background: #F6F6F6;
	border-radius: 3px;
}
.search-regions__title {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: 500;
}
.search-regions-nav ul {
	display: flex;
	flex-wrap: wrap;
}
.search-regions-nav__item {
	margin: 0 0 15px;
	flex: 0 0 50%;
	max-width: 50%;
}
.search-regions-nav__link {
	position: relative;
	padding: 0 0 0 10px;
	font-size: 15px;
	text-decoration: none;
}
.search-regions-nav__link span {
	border-bottom: 1px solid rgba(74,74,74,0.1);
}
.search-regions-nav__link:hover {
	color: #EE3433;
}
.search-regions-nav__link:hover span {
	border-bottom-color: #EE3433;
}
.search-regions-nav__link:before {
	position: absolute;
	left: 0;
	top: 8px;
	content: '';
	width: 3px;
	height: 3px;
	background: #C1C1C1;
	border-radius: 3px;
}
.top-slider {
	margin-bottom: 2rem;
}
.top-slider:not(.is-horizontal) {
	display: flex;
	justify-content: center;
	margin-left: 16px;
}
.top-slider .slick-list {
	margin: 0 -8px;
}
.top-slider__item {
	max-width: 196px;
	margin-right: 16px;
}
.top-slider__item .card-car__img {
	width: 196px;
	height: 147px;
}
.top-slider__item .card-car__img img {
	width: 196px;
	height: 147px;
}
.top-slider .slick-arrow {
	position: absolute;
	top: -40px;
	width: 8px;
	height: 12px;
	border: none;
	transition: all 0.4s ease 0s;
	cursor: pointer;
	color: transparent;
}
.top-slider .slick-prev {
	background: url(../images/i/i-chevron-left-greysm.svg) no-repeat;
	background-size: 8px 12px;
	right: 20px;
}
.top-slider .slick-next {
	background: url(../images/i/i-chevron-right-greysm.svg) no-repeat;
	background-size: 8px 12px;
	right: 0;
}
.top-slider .slick-prev:hover {
	background: url(../images/i/i-chevron-left-redsm.svg) no-repeat;
}
.top-slider .slick-next:hover {	
	background: url(../images/i/i-chevron-right-redsm.svg) no-repeat;
}
.top-slider-acontrols {
	display: none;
	margin: 25px 0 0;
	text-align: center;
}
.top-slider-acontrols__inner {
	display: flex;
	align-items: center;
	justify-content: center;
}
.top-slider-acontrols__arrow {
	margin-top: 2px;
	border: none;
	flex: 0 0 12px;
	max-width: 12px;
	height: 12px;
	background-size: 8px 12px;
	transition: all 0.4s ease 0s;
	cursor: pointer;
}
.top-slider-acontrols__arrow--left {
	background: url(../images/i/i-chevron-left-greysm.svg) no-repeat;
	margin-right: 10px;
}
.top-slider-acontrols__arrow--right {
	background: url(../images/i/i-chevron-right-greysm.svg) no-repeat;
	margin-left: 10px;
}
.top-slider-acontrols__arrow--left:hover {
	background: url(../images/i/i-chevron-left-redsm.svg) no-repeat;
}
.top-slider-acontrols__arrow--right:hover {	
	background: url(../images/i/i-chevron-right-redsm.svg) no-repeat;
}
.top-slider-acontrols__dots ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.top-slider-acontrols__dots li {
	margin: 0 7px;
	display: inline-block;
	vertical-align: middle;
}
.top-slider-acontrols__dots button {
	display: inline-block;
	vertical-align: middle;
	border: none;
	border-radius: 50%;
	width: 8px;
	height: 8px;
	font-size: 0;
	line-height: 1;
	background: #D9D9D9;
	transition: all 0.4s ease 0s;
	cursor: pointer;
}
.top-slider-acontrols__dots .slick-active button {
	background: #EE3333;
}
.search-online-widget__submit {
	margin: 20px 0 0;
}
.card-car--horizontal {
	display: flex;
	margin: 0 0 15px;
	padding: 0 0 15px;
	border-bottom: 1px solid #F0F0F0;
}
.card-car--horizontal:last-child {
	margin: 0;
	padding: 0;
	border: none;
}
.card-car__img {
	position: relative;
}
.card-car__img img {
	border-radius: 3px;
	width: 100%;
}
.card-car--horizontal .card-car__img {
	flex: 0 0 220px;
	max-width: 220px;	
}
.card-car--horizontal .card-car__body {
	margin: 0 0 0 24px;
	flex-grow: 1;
}
.card-car__bodyprice {
	margin: 0 0 15px;
	display: flex;
	align-items: center;
}
.card-car__bodyusd {
	margin: 0 15px 0 0;
	padding: 5px 8px;
	border-radius: 3px;
	background: #EE3433;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
}
.card-car__bodygrn {
	font-size: 14px;
}
.card-car__numbers {
	display: flex;
	flex-wrap: wrap;
}
.card-car__number {
	margin: 0 5px 5px 0;
	padding: 6px 10px;
	border-radius: 3px;
	border: 1px solid rgba(240,237,231,1);
	font-size: 12px;
}
.card-car__imgprice {
	position: absolute;
	left: 0;
	bottom: 0;
	border-radius: 3px;
	display: inline-block;
    padding: 5px 8px;
    background: #EE3433;
    color: #fff;
    font-size: 15px;
}
.card-car__imgprice-leasing {
	padding: 3px 6px 3px;
	font-size: 12px;
	color: #fff;
	border: 1px solid #EE3433;
	background: #EE3433;
}
.card-car__body {
	margin: 10px 0 0;
}
.card-car__title {
	margin: 0 0 5px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.card-car__link {
    margin: 0 5px 0 0;
    font-size: 16px;
    font-weight: 500;
		text-decoration: none;
}
.card-car__link:hover {
	color: #EE3333;
}
.card-car__stats {
	display: flex;
	flex-wrap: wrap;
}
.card-car__stats--vertical {
	display: block;
}
.card-car__stat {
	display: flex;
	align-items: center;
	margin: 5px 14px 0 0;
}
.card-car__stats--vertical .card-car__stat {
	margin: 0 0 10px;
}
.card-car__statico {
	flex: 0 0 16px;
	margin: 0 7px 0 0;
}
.card-car__statico img {
	width: 14px;
	height: 14px;
}
.card-car__statico img[src$="/i-mileage.svg"] {
	width: 16px;
	height: 16px;
}
.card-car__statval {
	color: #4A4A4A;
	font-size: 13px;
	word-wrap: normal;
	white-space: nowrap
}
.card-car__statval span {
	color: #000;
}
.card-car__bottom {
	margin: 15px 0 0;
	display: flex;
	align-items: center;
}
.card-car__publish,
.card-car__copybtn {
	color: #888;
	font-size: 12px;
	line-height: 1;
}
.card-car__publish {
	margin: 0 20px 0 0;
}
.card-car__copybtn {
	border: none;
	background: none;
	cursor: pointer;
	transition: all 0.4s ease 0s;
}
.card-car__copybtn--active,
.card-car__copybtn:hover {
	color: #EE3433;
}
.card-cars__copies {
	display: none;
}
.card-car-copy {
	display: flex;
	margin: 0 0 15px;
	padding: 15px 24px 5px;
	border-radius: 3px;
	background: #F0F0F0;
}
.card-car-meta {
	margin: 0 0 10px;
	font-size: 15px;
}
.card-car-meta__name {
	margin: 0 0 5px;
	font-weight: 500;
}
.card-car-meta__value {
	color: #747474;
}
.card-car-copy__content {
	margin: 0 0 0 30px;
}
.ads-home-1 {
	margin: 25px 0 0;
}
.ads-search_result-1 {
	margin: 0 0 15px;
	padding: 0 0 15px;
	border-bottom: 1px solid #F0F0F0;
}
.ads-sidebar-1.in-search_result {
	display: none;
}
.ads-sidebar-1.in-card {
	margin: 25px 0;
}
.ads-sidebar-1.in-card--mobile {
	display: none;
}
.ads-card_page-in-content-mobile-1 {
	display: none;
}
.search-container {
	margin: 25px 0 0;
	display: flex;
}
.search-container__content {
	flex-grow: 1;
}
.search-container__side {
	margin: 0 0 0 30px;
	flex: 0 0 245px;
	max-width: 245px;
}
.search-container__group {
	margin: 0 0 45px;
}
.search-container__group:last-child {
	margin: 0;
}
.search-container__title {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: 500;
}
.search-container__items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.search-container__item {
	margin: 0 0 10px;
	font-size: 15px;
	text-decoration: none;
}
.search-container__item:hover {
	color: #EE3333;
}
.search-container__itemico {
	margin: 0 10px 0 0;
	flex: 0 0 17px;
	max-width: 17px;
}
.search-container__all {
	position: relative;
	margin: 10px 0 0;
}
.search-container__all--partners {
	margin: 5px 0 0;
}
.search-container__all:after {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	width: 100%;
	height: 1px;
	background: #EAEAEA;
}
.search-container__link {
	position: relative;
	display: inline-block;
	padding: 0 30px 0 0;
	color: #EE3433;
	font-size: 15px;
	background-color: #fff;
	overflow: hidden;
	z-index: 1;
}
.search-container__link:hover {
	color: #000;
}
.search-container__link:after {
	position: absolute;
	right: 15px;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	background: url(../images/i/i-chevron-right-redxm.svg) no-repeat;
	width: 4px;
	height: 6px;
	background-size: 4px 6px;
	transition: all 0.4s ease 0s;
}
.search-container__link:hover:after {
	background: url(../images/i/i-chevron-right-blacksm.svg) no-repeat;
}
.partners-container {
	margin: 30px 0;
}
.partners-container__title {
	margin: 0 0 20px;
	font-size: 20px;
    font-weight: 500;
}
.partners-container__listrow {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -8px;
}
.partners-container__listcol {
	flex: 0 0 33.3333%;
	max-width: 33.3333%;
	margin: 0 0 16px;
	padding: 0 8px;
}
.partners-container__item {
	display: flex;
	height: 95px;
	justify-content: center;
	align-items: center;
	background: #F3F6F9;
	border-radius: 3px;
	overflow: hidden;
}
.partners-container__item img {
	width: 196px;
	height: 95px;
}
.seo-container {
	margin: 20px 0 0;
	overflow-x: auto;
}
.seo-container > * {
	margin: 0 0 25px;
	color: #585858;
	font-size: 14px;
	line-height: 22px;
}
.seo-container ul, .seo-container ol, .seo-container li {
	margin-left: 10px;
	list-style: initial;
}
.seo-container p:last-child {
	margin: 0;
}
.seo-container a {
	text-decoration: underline;
}
.seo-container a:hover, .seo-container a:focus {
	color: #EB0100;
}
.seo-container h1, .seo-container h2, .seo-container h3, .seo-container h4, .seo-container h5 {
	font-weight: 400;
}
.seo-container h1 {
	font-size: 2em;
}
.seo-container h2 {
	font-size: 1.5em;
}
.seo-container h3 {
	font-size: 1.3em;
}
.seo-container h4 {
	font-size: 1.15em;
}
.seo-container h5 {
	font-size: 1.1em;
}
.seo-container > table {
	max-width: 100%;
}
.seo-container > table td,
.seo-container > table th {
	padding: 5px;
	border: 1px solid #555;
}

.faq-question + .faq-question {
	margin-top: 1rem;
}
.faq-question > [itemprop="name"] {
	cursor: pointer;
}
.faq-question > [itemprop="name"]:hover,
.faq-question > [itemprop="name"]:focus {
	color: #EB0100;
}
.faq-question > [itemprop="name"]::before {
	content: "▽";
	color: #EB0100;
	margin-right: 10px;
	float: left;
}
.faq-question > [itemprop="acceptedAnswer"] {
	margin-top: 0.5rem;
}

.faq-question.active > [itemprop="name"]::before {
	content: "▷";
	margin-top: -2px;
}

/*----------------------------------------------------------------
Single car
----------------------------------------------------------------*/

.sglcar-side {
	padding: 20px;
	border-radius: 3px;
	background: #F6F6F6;
}
.sglcar-side--mobile {
	display: none;
}
.sglcar-side__head {
	display: flex;
	flex-direction: column;
}
.sglcar-side__types {
	display: flex;
}
.sglcar-side__type {
	padding: 5px 8px;
	margin: 0 8px 8px 0;
	border-radius: 3px;
	background: #2D2D2D;
	color: #fff;
	font-size: 14px;
}
.sglcar-side__prices {
	order: 2;
	margin: 0 0 24px;
	padding: 7px 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #EE3433;
	border-radius: 3px;
}
.sglcar-side__priceusd {
	color: #fff;
	font-size: 24px;
	font-weight: 500;
}
.sglcar-side__pricegrn {
	margin: 0 0 0 12px;
	color: #EDDADA;
	font-size: 12px;
}
.sglcar-side__stats {
	margin: 0 0 20px;
}
.sglcar-side__stats .card-car__statval {
	font-size: 15px;
}
.sglcar-side_numbers {
	margin: 0 0 14px;
}
.sglcar-side__number {
	margin: 0 0 7px;
}
.sglcar-side__number:last-child {
	margin: 0;
}
.sglcar-side__numberval {
	display: inline-block;
	padding: 6px 10px;
    border-radius: 3px;
    border: 1px solid rgba(240,237,231,1);
	background: #fff;
    font-size: 12px;
}
.sglcar-side___publish {
	color: #969696;
}
.sglcar-shareside {
	margin: 20px 0 0;
	padding: 20px 25px 25px;
	border-radius: 3px;
	background: #F0EDE7;
}
.sglcar-shareside--mobile {
	display: none;
}
.sglcar-shareside__title {
	margin: 0 0 18px;
	font-size: 18px;
	font-weight: 500;
}
.sglcar-shareside__socials {
	margin: 0 0 22px;
}
.sglcar-shareside__socials .soc-nav__link {
	margin: 0 13px 0 0;
}
.sglcar-shareside__addtofav {
	padding: 12px;
}
.sglcar-galleries {
	margin: 0 0 25px;
}
.sglcar-gallery-big {
	display: flex;
	margin: 0 0 10px;
}
.sglcar-gallery-big__item {
	flex-basis: 100%;
	flex-shrink: 0;
	aspect-ratio: 620/465;
}
.sglcar-gallery-big__item img {
	border-radius: 3px;
	width: 100%;
}
.sglcar-gallery-sm:not(.slick-slider) {
	display: flex;
	justify-content: center;
}
.sglcar-gallery-sm .slick-list {
	margin: 0 -5px;
}
.sglcar-gallery-sm__item {
	flex-basis: 60px;
	flex-shrink: 0;
	margin: 0 5px;
	cursor: pointer;
}
.sglcar-gallery-sm__item img {
	border-radius: 3px;
	transition: all 0.4s ease 0s;
}
.sglcar-gallery-sm__item.slick-current img {
	opacity: 0.5;
}
.sglcar-box {
	margin: 0 0 25px;
}
.sglcar-box--related {
	margin: 0;
}
.sglcar-box__title, h2.sglcar-box__title {
	margin: 0 0 20px;
	font-size: 24px;
	font-weight: 500;
}
.sglcar-views__row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -4px;
}
.sglcar-views__row--hidden {
	display: none;
}
.sglcar-views__col {
	flex-grow: 1;
	margin: 0 0 8px;
	padding: 0 4px;
	display: grid;
}
.sglcar-views__col--more {
	flex: 0 0 58px;
	max-width: 58px;
}
.sglcar-views__row--wrap {
	flex-wrap: wrap;
}
.sglcar-views__link {
	display: flex;
	width: 100%;
	height: 60px;
	justify-content: center;
	align-items: center;
	background: #f3f6f9;
	border-radius: 3px;
	overflow: hidden;
	border: 0;
	cursor: pointer;
}
.sglcar-views__link img {
	max-height: 100%;
}
.sglcar-views__link:hover, .sglcar-views__link:focus {
	outline: 1px solid #ee3333;
}
.sglcar-views__more {
	height: 50px;
	width: 100%;
	max-width: 50px;
	border-radius: 3px;
	background: #EE3433;
	border: none;
	color: #fff;
	font-size: 15px;
	line-height: 50px;
	text-align: center;
	cursor: pointer;
	transition: all 0.4s ease 0s;
}
.sglcar-views__more:hover {
	background: #EB0100;
}
.sglcar-views__more:hover {
	background: #B92A29;
}
.sglcar-box__description,
.sglcar-box__description p {
	font-size: 15px;
	line-height: 24px;
}
.sglcar-charact {
	padding: 10px 0;
	border-bottom: 1px solid #D9D9D9;
	font-size: 15px;
	line-height: 18px;
}
.sglcar-charact:first-child {
	padding: 0 0 10px;
}
.sglcar-charact:last-child {
	padding: 10px 0 0;
	border: none;
}
.sglcar-charact span {
	color: #686868;
}
.sglcar-charact a {
	color: #068686;
}
.sglcar-charact a:hover {
	color: #EE3333;
}

.sglcar-box--sites {
	padding-top: 20px;
	padding-bottom: 20px;
	background: #F6F6F6;
	--f-carousel-dots-height: 0;
}
.sglcar-box--sites .sglcar-box__title {
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 4px;
}
.sglcar-box--sites .top-slider {
	padding: 0 20px;
	margin-bottom: 0;
}
.sglcar-box--sites .top-slider .f-carousel__viewport {
	padding: 20px;
}
.sglcar-box--sites .top-slider__item {
	max-width: 188px;
	padding: 10px;
	background: #fff;
	border-radius: 3px;
	box-shadow: rgba(0, 0, 0, 0.07) 0px 4px 12px;
}
.sglcar-box--sites .card-car__bodyprice {
	margin: 10px 0 10px;
	gap: 10px;
	flex-wrap: wrap;
}
.sglcar-box--sites .card-car__bodyusd {
	margin: 0;
}

/*----------------------------------------------------------------
Footer
----------------------------------------------------------------*/

.footer {
	margin: 40px 0 0;
	padding: 25px 0;
	background: #F3F6F9;
}
.footer__inner {
	display: flex;
}
.footer__side {
	flex: 0 0 230px;
	max-width: 230px;
}
.footer__content {
	display: flex;
	justify-content: space-between;
	flex-grow: 1;
	margin: 0 0 0 115px;
}
.footer__logo {
	margin: 0 0 25px;
}
.soc-nav {
	display: flex;
}
.footer__soc .soc-nav__link {
	margin: 0 15px 0 0;
}
.soc-nav__link {
	display: inline-block;
	flex: 0 0 38px;
	max-width: 38px;
	height: 38px;
}
.soc-nav__link:hover {
	opacity: 0.7;
}
.soc-nav__link--fb {
	background: url(../images/i/i-fb.svg) no-repeat;
	background-size: 38px;
}
.soc-nav__link--inst {
	background: url(../images/i/i-inst.svg) no-repeat;
	background-size: 38px;
}
.soc-nav__link--linkedin {
	background: url(../images/i/i-linkedin.svg) no-repeat;
	background-size: 38px;
}
.soc-nav__link--tg {
	background: url(../images/i/i-tg.svg) no-repeat;
	background-size: 38px;
}
.soc-nav__link--viber {
	background: url(../images/i/i-viber.svg) no-repeat;
	background-size: 38px;
}
.footer__navs {
	display: flex;
	flex: 0 0 300px;
	max-width: 300px;
}
.footer-nav {
	flex: 0 0 50%;
	max-width: 50%;
}
.footer-nav__item {
	margin: 0 0 15px;
}
.footer-nav__link {
	font-size: 14px;
}
.footer-nav__link:hover {
	color: #EE3333;
}
.footer-nav__item:last-child {
	margin: 0;
}
.footer__actions {
	flex: 0 0 195px;
	max-width: 195px;
}
.footer-addauto {
	margin: 0 0 25px;
}
.footer-consult__btn {
	display: inline-block;
	position: relative;
	padding: 0 0 0 35px;
	color: #EE3433;
	font-size: 15px;
	line-height: 22px;
	font-weight: 500;
	text-align: left;
}
.footer-consult__btn span {
	border-bottom: 1px solid rgba(238,52,51,0.1);
	transition: all 0.4s ease 0s;
}
.footer-consult__btn:before {
	position: absolute;
	left: 0;
	top: 5px;
	content: '';
	background: url(../images/i/i-consult-red.svg) no-repeat;
	width: 21px;
	height: 21px;
	background-size: 21px;
	transition: all 0.4s ease 0s;
}
.footer-consult__btn:hover:before {
	background: url(../images/i/i-consult-black.svg) no-repeat;
}
.footer-consult__btn:hover {
	color: #000;
}
.footer-consult__btn:hover span {
	border-bottom: 1px solid rgba(0,0,0,0.1);
}
.footer__bottom {
	margin: 35px 0 0;
}
.footer__copyright,
.footer__privacy {
	color: #535353;
	font-size: 12px;
}
.footer__privacy:hover {
	color: #EE3333;
}

#page_head_bookmark_add--floating {
	display: none;
	position: fixed;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	width: 220px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
	bottom: -4rem;
}
#page_head_bookmark_add--floating.active {
	bottom: 2rem;
}


/*----------------------------------------------------------------
Modal
----------------------------------------------------------------*/

.scroll-disable {
	overflow: hidden;
}
.fancybox-bg {
	background: rgba(0,0,0,0.6);
}
.fancybox-close-small svg path {
	color: #000;
}
.modal {
	display: none;
	max-width: 440px;
	width: 100%;
}
.modal-callback {
	padding: 40px 35px;
	background: #F0EDE7;
}
.modal__title {
	margin: 0 0 25px;
	color: #000;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}
.modal-form__group {
	margin: 0 0 20px 0;
}
.modal-form__group:last-child {
	margin: 30px 0 0;
	text-align: center;
}
.modal-form__input {
	width: 100%;
	height: 36px;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 3px;
	padding: 0 20px;
	color: #969696;
	font-size: 15px;
	line-height: 36px;
	font-weight: 400;
	text-align: left;
	transition: all 0.4s ease 0s;
}
.modal-form__input::-webkit-input-placeholder {
	color: #969696;
	opacity: 1;
}
.modal-form__input::-moz-placeholder {
	color: #969696;
	opacity: 1;
}
.modal-form__input:-ms-input-placeholder {
	color: #969696;
	opacity: 1;
}
.modal-form__input:-moz-placeholder {
	color: #969696;
	opacity: 1;
}
.modal-form__input:focus {
	border: 1px solid rgba(0,0,0,0.5);
}
.modal-form__input.error {
	border-color: red;
}

.card_floating_banner {
	position: fixed;
	z-index: 2147483647;
	left: 2vw;
	bottom: -400px;
	padding: 1.5rem;
	width: 300px;
	background: #fff;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 0px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
	transition: bottom 1s cubic-bezier(0.39, 0.58, 0.57, 1);
}
.card_floating_banner.active {
	bottom: 0;
}
.card_floating_banner__close {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 22px;
	height: 22px;
	border: 0;
	background: none;
	cursor: pointer;
}
.card_floating_banner__close svg {
	stroke: currentcolor;
	stroke-width: 2px;
}
.card_floating_banner__heading {
	padding-right: 1rem;
	margin-bottom: 1rem;
	line-height: 1.1;
}
.card_floating_banner__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr) auto;
	grid-gap: 8px;
}
.card_floating_banner__grid .btn {
	text-align: center;
	grid-area: 3 / 1 / 3 / 4;
	margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
	.card_floating_banner {
		display: none;
	}
}

.leasing_floating_banner {
	display: none;
	position: fixed;
	z-index: 2147483647;
	bottom: -200px;
	left: 0;
	right: 0;
	padding: 0.5rem 0.5rem;
	background: #3C3C3C;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 0px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
	transition: bottom 1s cubic-bezier(0.39, 0.58, 0.57, 1);
}
.leasing_floating_banner.active {
	bottom: 0;
}
@media only screen and (max-width: 767px) {
	.leasing_floating_banner {
			display: initial;
	}
}

/* Moved from site.css */

.catalog-list {
	display: grid;
	grid-gap: 10px;
	grid-column-gap: 20px;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	width: 100%;
	white-space: nowrap;
	font-size: 14px;
}
.catalog-list li {
	text-overflow: ellipsis;
	overflow: hidden;
}

/*----------------------------------------------------------------
Adaptive styles
----------------------------------------------------------------*/

@media only screen and (max-width: 1000px) {
	
	.search-container__side {
		margin: 0 0 0 15px;
		flex: 0 0 215px;
    	max-width: 215px
	}
	.search-container__item {
		font-size: 14px;
	}
	.search-container__itemico {
		margin: 0 5px 0 0;
	}
	.partners-container__listcol {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.page-head__description {
		margin: 0 30px 0 0;
	}
	.search-regions-nav__item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.footer__content {
		margin: 0 0 0 30px;
	}
	.footer__navs {
		flex: 0 0 250px;
		max-width: 250px;
	}

}


@media only screen and (max-width: 767px) {

	.header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 70px;
		z-index: 101;
		background: #fff;
		border-bottom: 1px solid #EEE;
	}
	.header__inner {
		height: 70px;
	}
	.header__logo {
		margin-top: -3px;
	}
	.header__logo img, .header__logo svg {
		width: 155px;
		height: 46px;
	}
	.header__top,
	.header__langs,
	.header__auth {
		display: none;
	}
	.header__bottom {
		padding: 0;
	}
	.header__hamburger {
		display: flex;
	}
	.header__afavorites {
		display: block;
		margin: 0 12px 0 auto;
	}
	.middle-container {
		margin: 0;
		padding: 95px 0 0;
	}
	.middle-container--favorites .middle-container__lside,
	.middle-container--sglcar .middle-container__lside {
		order: 2;
	}
	.middle-container__row {
		flex-wrap: wrap;
	}
	.middle-container__lside {
		max-width: none;
		flex: 0 0 100%;
	}
	.middle-container__content {
		margin: 25px 0 0 0;
	}
	.middle-container--favorites .middle-container__content,
	.middle-container--sglcar .middle-container__content {
		margin: 0;
	}
	.middle-container--favorites .middle-container__lside {
		margin: 25px 0 0;
	}
	.middle-container--sglcar .middle-container__lside {
		margin: 0;
	}
	.sglcar-side,
	.sglcar-shareside,
	.save-filter--desktop {
		display: none;
	}
	.sglcar-side--mobile,
	.sglcar-shareside--mobile {
		margin: 0 0 25px;
		display: block;
	}
	.sidebar-box--desktop {
		display: none;
	}
	.sidebar-box--mobile {
		display: block;
	}
	.page-head__title {
		font-size: 24px;
	}
	.page-head__description {
		font-size: 15px;
	}
	.search-container__group {
		margin: 0 0 30px;
	}
	.search-container {
		flex-wrap: wrap;
	}
	.search-container__side {
		margin: 0 0 15px 0;
		order: 1;
	}
	.search-container__content {
		order: 2;
	}
	.partners-container__item {
		height: 80px;
		padding: 5px;
	}
	.partners-container__item img {
		max-height: 100%;
	}
	.filter-trigger {
		display: flex;
	}
	.filter-form {
		display: none;
	}
	.filter-form--main {
		display: block;
	}
	.search-regions {
		margin: 25px 0;
		padding: 20px 15px 5px;
	}
	.search-regions-nav__item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.page-head__titlev {
		font-size: 24px;
	}
	.card-car--horizontal .card-car__body {
		margin: 0 0 0 15px;
	}
	.search-regions-nav__link {
		font-size: 14px;
	}
	.sglcar-box__title {
		margin: 0 0 15px;
		font-size: 18px;
	}
	.sglcar-charact {
		font-size: 14px
	}
	.top-slider__item {
		max-width: unset;
	}
	.top-slider__item .card-car__img {
		width: auto;
    height: auto;
	}
	.top-slider__item .card-car__img img {
		width: 395px;
    height: auto;
    min-height: 218px;
	}
	.top-slider-acontrols {
		display: block;
	}
	.sglcar-side__head {
		margin: 0 0 15px;
		flex-wrap: wrap;
		flex-direction: row;
	}
	.sglcar-side__prices {
		order: 0;
		margin: 0 5px 5px 0;
		height: 32px;
		padding: 0 10px;
	}
	.sglcar-side__priceusd {
		font-size: 18px;
	}
	.sglcar-side__type {
		margin: 0 5px 5px 0;
		height: 32px;
		display: flex;
    	align-items: center;
		padding: 0 10px;
	}
	.footer__inner {
		display: block;
		text-align: center;
	}
	.footer__side {
		max-width: none;
	}
	.footer .soc-nav {
		justify-content: center;
	}
	.footer__soc .soc-nav__link {
		margin: 0 5px;
	}
	.footer__content {
		margin: 24px 0 0 0;
		justify-content: center;
	}
	.footer__actions {
		flex: auto;
		max-width: none;
	}
	.footer-addauto {
		max-width: 280px;
		margin: 0 auto 25px;
	}
	.footer__navs {
		display: none;
	}
	.footer__content {
		margin: 10px 0 0;
	}
	.footer-consult__btn:before {
		top: 3px;
	}

	#page_head_bookmark_add--floating {
		display: initial;
	}

	.ads-sidebar-1.in-search_result {
		display: block;
	}
	.ads-sidebar-1.in-card {
		display: none;
	}
	.ads-sidebar-1.in-card--mobile {
		display: block;
		margin: 25px 0;
	}
	.ads-card_page-in-content-desktop-1 {
		display: none;
	}
	.ads-card_page-in-content-mobile-1 {
		display: block;
	}
}


@media only screen and (max-width: 480px) {
	
	.card-car--horizontal {
		display: block;
	}
	.card-car--horizontal .card-car__body {
		margin: 10px 0 0 0;
	}
	.card-car--horizontal .card-car__img {
		max-width: none;
	}
	.search-regions-nav__item {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.card-car-copy {
		display: block;
	}
	.card-car-copy__content {
		margin: 20px 0 0 0;
	}
	.modal-callback {
		padding: 30px 15px;
	}
	.modal__title {
		font-size: 20px;
	}

}

.leasing_side_part-widget {
	margin: 20px 0 0;
	padding: 20px;
	border-radius: 3px;
	background: #3C3C3C;
}
.leasing_side_part-widget__title {
	margin: 0 0 20px;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
}
.leasing_side_part-widget__body {
	margin-bottom: 20px;
	padding: 3px;
	border-radius: 3px;
	background: rgb(255 255 255 / 20%);
	height: 52px;
}
.leasing_side_part-widget__img {
	width: 60px;
	margin-left: 1px;
}
.leasing_side_part-widget__description_wrapper {
	font-size: 15px;
	display: inline-block;
	margin: 4px 0 0 6px;
	color: #fff;
}
.leasing_side_part-widget__bodyusd {
	display: inline-block;
	padding: 3px 6px 2px;
	margin-bottom: 3px;
	font-weight: 400;
}

.leasing_hero {
	position: relative;
	border-radius: 3px;
	padding: 24px 23px;
	color: #fff;
	background: linear-gradient(344deg,
					rgba(0, 0, 0, 0.2) -84.48%,
					rgba(0, 0, 0, 0) 103.72%),
			linear-gradient(0deg, #3c3c3c 0%, #3c3c3c 100%), #f3f6f9;
}

@media (max-width: 991px) {
	.leasing_hero {
			padding: 25px 20px 220px;
	}
}

.leasing_hero-columns {
	gap: 20px;
	display: flex;
}

@media (max-width: 991px) {
	.leasing_hero-columns {
			flex-direction: column;
			align-items: stretch;
			gap: 0px;
	}
}

.leasing_hero-column {
	display: flex;
	flex-direction: column;
	width: 50%;
}

@media (max-width: 991px) {
	.leasing_hero-column {
			width: 100%;
	}
}

.leasing_hero-title {
	font-size: 22px;
	font-weight: 500;
}

.leasing_hero-subtitle {
	line-height: 24px;
	padding: 15px 27px 20px 0;
}

.leasing_hero-bg-image {
	position: absolute;
	inset: 0;
	user-select: none;
	pointer-events: none;
}

@media (max-width: 991px) {
	.leasing_hero-bg-image {
			inset: auto;
			left: 0;
			bottom: 0;
			max-width: unset;
	}
}

.leasing_hero-label {
	font-size: 14px;
}

.leasing_hero-input {
	margin-top: 8px;
	padding: 8px 14px;
	color: #4a4a4a;
	font-size: 15px;
	border: 0;
	border-radius: 3px 3px 0px 0px;
	background-color: #fff;
}

.leasing_hero-slider.noUi-target {
	border: none;
	box-shadow: none;
	background: #d1dde8;
}
.leasing_hero-slider.noUi-horizontal {
	height: 2px;
}
.leasing_hero-slider .noUi-connect {
	background: #ee3433;
}
.leasing_hero-slider .noUi-handle {
	border: 2px solid #ee3433;
	cursor: pointer;
	background: #fff;
	box-shadow: none;
	border-radius: 50%;
}
.leasing_hero-slider .noUi-handle:after,
.leasing_hero-slider .noUi-handle:before {
	content: none;
}
.leasing_hero-slider.noUi-horizontal .noUi-handle {
	width: 13px;
	height: 13px;
	top: -6px;
	right: -6px;
}

.leasing_hero-duration-list {
	display: flex;
	justify-content: space-between;
	gap: 6px;
	margin-top: 12px;
	color: #d8cdcd;
	font-size: 13px;
}

.leasing_hero-duration-item {
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	cursor: pointer;
}

.leasing_hero-duration-item.active {
	background-color: #fff;
	color: #4a4a4a;
}

.leasing_hero-duration-item:hover:not(.active) {
	background-color: rgba(255, 255, 255, 0.5);
	color: #4a4a4a;
}

.leasing_hero-payment-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	margin-top: 10px;
	padding: 5px 0;
	font-size: 14px;
}

.leasing_hero-payment-text {
	border-radius: 3px;
	background-color: rgba(255, 255, 255, 1);
	padding: 5px 7px 4px 6px;
	color: #ee3433;
}
