:root{
	--header_bg_color: #e60000;
	--body_bg_color: #F7F8FA;
	--black: #2C2D2E;
	--white: #fff;
	--purple: #AE3F55;
	--red: #e60000;
	--red-text: #e60000;
	--red-text-active: #e60000;
	--blue: #2163F0;
	--darkblue: #1049c4;
	--easyblue: #F0F4F8;
	--easyblue-border: #E4ECF9;
	--lightblue: #E4ECF9;
	--lightblue-active: #d4e2fa;
	--lightgreen: #EFF6F1;
	--lightgreen-text: #55AA67;
	--green: #188935;
	--lightgray-0: #F2F3F6;
	--lightgray: #E5E5E5;
	--lightgray-2: #D5D5D5;
	--gray: #909297;
	--yellow: #ffcb00;
	--base-transition: all .2s cubic-bezier(.37,0,.63,1);
	--dropdown-transition: all .5s cubic-bezier(.37,0,.63,1);
}
html{
	overflow-x: hidden;
}
body{
	font-family: 'Golos Text', sans-serif;
	font-family: Golos UI,-apple-system,system-ui,BlinkMacSystemFont,“Segoe UI”,Roboto,“Helvetica Neue”,Arial,sans-serif;
	color: var(--black);
	background-color: var(--body_bg_color);
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}
.loader{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,.4);
	z-index: 919;
	background-repeat: no-repeat;
	background-position: center;
}
[type=search] {
	outline-offset: -2px;
}
input[type="search"]::-webkit-search-cancel-button {
	display: none;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-clear-button {
	display: none;
}
input[type="search"]::-ms-clear {
	display: none;
}
input:not([type=checkbox]):not([type=radio]), select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
h1, .heading--h1{
	color: var(--black);
	font-size: 32px;
	line-height: 36px;
	font-weight: 600;
}
a{
	color: var(--blue);
}
a, a:after, button, svg, button > i{
	transition: var(--base-transition)
}
.h-100{
	height: 100%;
}
.w-100{
	width: 100%;
}
.border-none{
	border: 0 !important;
}
.text-black,
.text-default{
	color: var(--black) !important;
}
.text-white{
	color: var(--white) !important;
}
.text-purple{
	color: var(--purple) !important;
}
.text-red,
.text-danger{
	color: var(--red-text) !important;
}
.text-red-bg{
	color: var(--red-text) !important;
}
.text-blue,
.text-primary{
	color: var(--blue) !important;
}
.text-lightblue{
	color: var(--lightblue) !important;
}
.text-lightgreen{
	color: var(--lightgreen) !important;
}
.text-green,
.text-success{
	color: var(--green) !important;
}
.text-gray,
.text-secondary{
	color: var(--gray) !important;
}
.text-lightgray{
	color: var(--lightgray) !important;
}
.bg-black{
	background-color: var(--black) !important;
}
.bg-white{
	background-color: var(--white) !important;
}
.bg-purple{
	background-color: var(--purple) !important;
}
.bg-red{
	background-color: var(--red) !important;
}
.bg-red-text{
	background-color: var(--red-text) !important;
}
.bg-blue{
	background-color: var(--blue) !important;
}
.bg-lightblue{
	background-color: var(--lightblue) !important;
}
.bg-green{
	background-color: var(--green) !important;
}
.bg-lightgreen{
	background-color: var(--lightgreen) !important;
}
.bg-gray{
	background-color: var(--gray) !important;
}
.bg-lightgray{
	background-color: var(--lightgray) !important;
}

h1, .h1{
	font-weight: 600;
	margin-bottom: calc(var(--offset) * 1.5);
}
h2, .h2{
	font-weight: 600;
	margin-bottom: var(--offset);
}
h3, .h3{
	font-weight: 600;
	margin-bottom: var(--offset);
}
h4, .h4{
	font-weight: 500;
}
h5, .h5{
	font-weight: 400;
}
.fw-100{
	font-weight: 100;
}
.fw-200{
	font-weight: 200;
}
.fw-300{
	font-weight: 300;
}
.fw-400{
	font-weight: 400;
}
.fw-500{
	font-weight: 500;
}
.fw-600{
	font-weight: 600;
}
.fw-700{
	font-weight: 700;
}
.fw-800{
	font-weight: 800;
}
.mb-0{
	margin-bottom: 0;
}
.lsfx{
	letter-spacing: -0.42px;
}
.disabled{
	pointer-events: none;
}
.mb-offset{
	margin-bottom: var(--offset);
}
.btn{
	display: inline-flex;
	align-items: center;
	gap: calc(var(--gx)*2);
	border-radius: calc(var(--gx) * 2);
	padding: calc(var(--gx) * 3) calc(var(--gx) * 5);
	transition: var(--base-transition);
	border: 1px solid;
	font-size: 1.125rem;
	font-size: 1rem;
}
.btn > svg{
	transition: none;
}
.btn-sm{
	padding: calc(var(--gx) * 2);
}
.btn-default{
	color: var(--black);
	border-color: var(--lightgray);
	background: var(--white);
}
a.btn-default:hover,
button.btn-default:hover,
a.btn-default.active,
button.btn-default.active{
	background: var(--lightgray);
}
.btn-primary{
	color: var(--blue);
	border-color: var(--lightblue);
	background: var(--lightblue);
}
a.btn-primary:hover,
button.btn-primary:hover,
.btn-primary-reverse{
	border-color: var(--blue);
	background: var(--blue);
	color: var(--white);
}
a.btn-primary-reverse:hover,
button.btn-primary-reverse:hover{
	border-color: var(--darkblue);
	background: var(--darkblue);
}
.btn-outline-primary{
	color: var(--blue);
	border-color: var(--lightblue);
	background: var(--lightblue);
}
a.btn-outline-primary:hover,
button.btn-outline-primary:hover{
	border-color: var(--lightblue-active);
	background: var(--lightblue-active);
}
.btn-danger{
	color: var(--white);
	border-color: var(--red);
	background: var(--red);
	box-shadow: 0px 4px 32px #DB3F4152;
}
a.btn-danger:hover,
button.btn-danger:hover{
	background: var(--red-text);
}
.btn-outline-danger{
	color: var(--red);
	border-color: var(--red);
	background: var(--white);
}
a.btn-outline-danger:hover,
button.btn-outline-danger:hover{
	color: var(--white);
	background: var(--red);
}
.btn-success{
	color: var(--white);
	border-color: var(--lightgreen);
	background: var(--lightgreen);
}
a.btn-success:hover,
button.btn-success:hover{
	border-color: var(--green);
	background: var(--green);
}
.btn-outline-success{
	color: var(--green);
	border-color: var(--lightgreen);
	background: var(--lightgreen);
}
a.btn-outline-success:hover,
button.btn-outline-success:hover{
	color: var(--white);
	background: var(--lightgreen-text);
	border-color: var(--lightgreen-text);
}
.btn-info,
.btn-info-reverse:hover{
	color: var(--black);
	background: var(--easyblue);
	border-color: var(--easyblue-border);
}
a.btn-info:hover,
button.btn-info:hover,
.btn-info-reverse{
	background: var(--easyblue-border);
	border-color: var(--easyblue-border);
}
.btn-secondary{
	color: var(--black);
	background: var(--lightgray-0);
	border-color: var(--lightgray-0);
}
a.btn-secondary:hover,
button.btn-secondary:hover{
	background: var(--lightgray-2);
	border-color: var(--lightgray-2);
}
a.btn-secondary.active,
button.btn-secondary.active{
	color: var(--red);
}
a.btn-secondary.active svg,
button.btn-secondary.active svg{
	fill: var(--red);
}
.table{
	width: 100%;
	border-collapse: collapse;
}
.table td{
	border: 1px solid var(--gray);
	padding: calc(var(--gx));
}
.bc-container{
	font-size: 14px;
	padding-bottom: var(--header_bottom_offset);
}

.bc-list{
	display: flex;
	white-space: nowrap;
	gap: calc(var(--gx) * 2);
}
li.bc-item > a,
li.bc-item > span{
	color: var(--gray);
}
li.bc-item a:hover{
	text-decoration: underline;
	text-underline-offset: 3px;
}
li.bc-item.active:after {
	content: "›";
	color: var(--red);
	padding-left: calc(var(--gx) * 2);
}

[data-fancybox]{
	cursor: pointer;
}
.gap-offset{
	gap: var(--offset);
}
.panel{
	height: calc(100% - var(--offset));
	background: var(--white);
	border-radius: calc(var(--gx) * 3);
	padding: var(--offset);
	box-shadow: 0px 4px 32px #0003461F;
	margin-bottom: var(--offset);
}
.panel-lg{
	padding: calc(var(--offset) * 1.5);
}
.panel > p{
	font-size: 16px;
	line-height: 24px;
}
.panel > p + p{
	margin-top: var(--offset);
}
.panel-bottom-sep{
	padding-bottom: var(--offset);
	margin-bottom: var(--offset);
	border-bottom: 1px solid var(--lightgray);
}
.panel > .row:not(.flex-row-reverse) > *[class^="col-"]:not(:first-child){
	border-left: 1px solid var(--lightgray);
}
.panel > .row.flex-row-reverse > *[class^="col-"]:not(:last-child){
	border-left: 1px solid var(--lightgray);
}
.panel > ul,
ul.cz-list{
	margin-top: var(--offset);
	list-style-type: none;
	display: flex;
	flex-direction: column;
}
.panel > ul:not(.cd__advs-list) > li,
.cz-list > li{
	position: relative;
	margin-bottom: calc(var(--gx) * 2);
	display: inline-flex;
	align-items: center;
	gap: calc(var(--gx) * 3);
}
.panel > ul:not(.cd__advs-list) > li:before,
.cz-list > li:before{
	content: "";
	width: 8px;
	height: 8px;
	background: var(--red);
	border-radius: 50%;
	display: inline-flex;
	align-self: center;
}
.tabs-list{
	display: flex;
	margin-bottom: var(--offset);
	margin-top: calc(var(--offset) * -0.5);
}
.tabs-list__item{
	flex-grow: 1;
	text-align: center;
}
.tabs-list__item-link:not(.modal__choose-car .tabs-list__item-link){
	--active_line_height: 4px;
	white-space: nowrap;
	color: var(--black);
	font-weight: 600;
	line-height: 1;
	position: relative;
	padding-top: calc(calc(var(--offset) * 1) - var(--active_line_height));
	padding-bottom: calc(var(--offset) * 1);
	display: block;
	border-bottom: 1px solid var(--lightgray);
}
.tabs-list__item .tabs-list__item-link:not(.modal__choose-car .tabs-list__item-link):after{
	content: "";
	position: absolute;
	bottom: calc(var(--active_line_height) / -2);
	left: 0;
	right: 0;
	height: var(--active_line_height);
	background: transparent;
}
.tabs-list__item .tabs-list__item-link:not(.modal__choose-car .tabs-list__item-link):hover:after,
.tabs-list__item .tabs-list__item-link.active:not(.modal__choose-car .tabs-list__item-link):after {
	background: var(--red);
}
.tab-container{
	display: none;
}
.tab-container.active{
	display: block;
}
.rating-wrap{
	display: flex;
	align-items: center;
	gap: calc(var(--gx) * 2);
}
.rating {
	aspect-ratio: 1/1;
	height: var(--size, 48px);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: var(--base-transition);
	font-weight: 600;
	letter-spacing: -0.8px;
}

.rating:after, .rating:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.rating:before {
	border-radius: 50%;
	z-index: 2;
	background: conic-gradient(var(--rating-color) calc(var(--rating-number)*1%),transparent 0);
	-webkit-mask: radial-gradient(farthest-side,transparent calc(99% - 4px),#000 calc(100% - 4px));
	mask: radial-gradient(farthest-side,transparent calc(99% - 4px),#000 calc(100% - 4px));
	-webkit-mask: radial-gradient(farthest-side,transparent calc(99% - var(--rating-border)),#000 calc(100% - var(--rating-border)));
	mask: radial-gradient(farthest-side,transparent calc(99% - var(--rating-border)),#000 calc(100% - var(--rating-border)));
}
.rating:after {
	z-index: 1;
	border-radius: 50%;
	border: 4px solid var(--lightgray)
}
.rating-label{
	color: var(--black);
}
.icon-q{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	background: currentColor;
	border-radius: 50%;
	font-size: 14px;
	line-height: 1;
	font-weight: 600;
}
.icon-q:after{
	content: "?";
	color: var(--white);
}
.form__fieldset{
	margin-bottom: calc(var(--gx) * 4);
}
.form__field-wrap + .form__field-wrap{
	display: block;
	margin-top: calc(var(--gx) * 4.2);
}
.form__field{
	width: 100%;
	padding: calc(var(--gx) * 4);
	border-radius: calc(var(--gx) * 2);
	border: 1px solid var(--lightgray);
	background: var(--white);
}
.form__checkbox-wrap{
	position: relative;
	display: flex !important;
	gap: var(--gx);
}
.form__checkbox-wrap > input[type="checkbox"]{
	width: 20px;
	height: 20px;
	opacity: 0;
}
.form__checkbox-wrap > input[type="checkbox"] + svg{
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
	border-radius: var(--gx);
	background: var(--lightgray-2);
	fill: var(--lightgray-2);
}
.form__checkbox-wrap > input[type="checkbox"]:checked + svg{
	background: var(--blue);
	fill: var(--white);
}
@media (min-width: 1260px){
	.tabs-list__item-link{
		font-size: 18px;
	}
}

.rating {
	--rating-border: 4px;
	width: var(--size, 48px);
}
.rating-label{
	font-weight: 500;
	font-size: 16px;
	letter-spacing: -0.8px;
}
body.freeze {
/*	height: 100vh;
	overflow: hidden;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;*/
}
.overlay {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #171719;
	transition: opacity .3s;
	display: block;
	z-index: 200;
	opacity: .95;
}
.overlay-link{
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0px;
}
.modal{
	--mw: 880px;
	width: 100%;
	max-width: var(--mw);
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	background: var(--white);
	z-index: 500;
	-webkit-overflow-scrolling: touch;
	pointer-events: auto;
	overflow-y: scroll;
}
.modal__heading{
	padding: calc(var(--gx) * 8);
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid var(--lightgray);
}
.modal__close{
	width: 32px;
	height: 32px;
}
.modal__close > svg{
	width: 100%;
	height: 100%;
}
.modal__body{
	padding: calc(var(--gx) * 8);
}
.modal__heading-inner-wrap{
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
}
.modal-btn-avtoteka-report{
	white-space: nowrap;
	width: 176px
}
.modal .btn-fixed{
	position: fixed;
	z-index: 2;
	justify-content: center;
	bottom: calc(var(--gx) * 8);
	left: auto;
	right: calc(var(--gx) * 8);
	max-width: calc(var(--mw) - calc(var(--gx) * 28));
}
.pagination-container{
	text-align: center;
	margin: calc(var(--gx) * 6);
}
.pagination{
	margin: 0 calc(var(--gx) * 4);
	border-radius: 6px;
	display: inline-flex;
	width: auto;
	border: 1px solid var(--lightgray-2);
}
.pagination a, .pagination span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(var(--gx) * 10);
	height: calc(var(--gx) * 10);
	aspect-ratio: 1/1;
	color: var(--lightgray-2);
	padding: 16px;
	border-right: 1px solid var(--lightgray-2);
}
.pagination a:hover,
.pagination .active span{
	color: var(--black);
}
.h-auto{
	height: auto;
}
.position-relative{
	position: relative;
}
.rating-circle text{
	font-weight: 600;
	font-size: 22px;
}
.rating-circle circle{
	transition: stroke-dasharray 1s;
}
.btn-credit,
.btn-tradein{
	white-space: nowrap;
	font-weight: 500;
	letter-spacing: .5px;
	flex-grow: 1;
	justify-content: center;
}
.btn-avtoteka {
	font-weight: 600;
	font-size: 16px;
	font-weight: 600;
}
@media (min-width: 1259px){

}
@media (min-width: 992px){
	h1, .h1{
		font-size: calc(var(--gx) * 7);
		line-height: calc(var(--gx) * 8);
	}
	h2, .h2{
		font-size: calc(var(--gx) * 6);
	}
	h3, .h3{
		font-size: calc(var(--gx) * 4.5);
		line-height: calc(var(--gx) * 5.25);
	}
	h4, .h4{
		font-size: calc(var(--gx) * 4);
		line-height: calc(var(--gx) * 5);
	}
	h5, .h5{
		font-size: calc(var(--gx) * 3.5);
		line-height: calc(var(--gx) * 4);
	}
}

@media (max-width: 991px){
	h1, .h1{
		font-size: calc(var(--gx) * 7);
		line-height: calc(var(--gx) * 8);
	}
	h2, .h2{
		font-size: calc(var(--gx) * 5.5);
	}
	h3, .h3{
		font-size: calc(var(--gx) * 4);
		line-height: calc(var(--gx) * 5);
	}
	h4, .h4{
		font-size: calc(var(--gx) * 3.5);
		line-height: calc(var(--gx) * 4.5);
	}
	h5, .h5{
		font-size: calc(var(--gx) * 3.5);
		line-height: calc(var(--gx) * 4.5);
	}
	.modal__body > .container{
		max-width: 100%;
	}
}
@media (max-width: 767px){
	.bc-list{
		font-size: 14px;
		gap: var(--gx);
	}
	li.bc-item.active:after{
		padding-left: var(--gx);
	}
	.modal__body{
		padding: calc(var(--gx) * 4);
	}
	.modal__heading{
		padding: calc(var(--gx) * 4);
	}
}
@media (max-width: 575px){
	.bc-list.with-single-bc{
		display: none;
	}
	.bc-list.bc-list-single li.bc-item > a{
		color: var(--blue);
	}
	.bc-container{
		padding-top: calc(calc(var(--header_height) * 2) + calc(var(--offset)*2)) !important;
		padding-bottom:  var(--offset);
	}
	.bc-container.exist-single{
		padding-top: calc(calc(var(--header_height) * 2) + calc(var(--header_bottom_offset)/2)) !important;
	}
}
@media (max-width: 479px){
	.modal-btn-avtoteka-report{
		padding: calc(var(--gx) * 1) calc(var(--gx) * 1);
		font-size: 12px;
		width: auto;
	}
	.modal__heading-inner-wrap{
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
	.modal__heading-h{
		font-size: calc(var(--gx) * 3.5);
		white-space: nowrap;
	}
}