@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

@import "https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap";
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
body {
  font-family: "Heebo", serif;
  background-color: #101213;
  color: #fff;
}
body.modal-open,
body.second-modal-open {
  overflow: hidden;
}
body.modal-open:before,
body.second-modal-open:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10;
}
body.modal-open .lang,
body.second-modal-open .lang {
  z-index: 10;
}
header {
  padding: 32px 0;
}
.header-in {
  position: relative;
}
.container {
  padding: 0 16px;
  max-width: 768px;
  margin: 0 auto;
}
.logo {
  width: 100%;
  text-align: center;
}
.lang {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 12;
}
.lang-active {
  font-size: 14px;
  position: relative;
  padding-right: 28px;
}
.lang-active i {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translate(0, -50%);
  margin-top: 1px;
}
.lang-active i svg {
  vertical-align: top;
}
.drop {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #191a1b;
  border: 1px solid rgba(240, 239, 235, 0.08);
  border-radius: 8px;
  margin-top: 6px;
  width: 103px;
  display: none;
}
.drop.open {
  display: block;
}
.drop ul {
  padding: 8px;
}
.drop ul li:last-child {
  margin-bottom: 0;
}
.drop ul li a {
  padding: 10px 8px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.choose-type {
  margin-bottom: 32px;
}
.choose-type-in {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.choose-type-in a {
  width: calc(100% - 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 32px;
  background-repeat: no-repeat;
  background-position: 6px center;
  height: 40px;
  border-radius: 12px;
  background-color: #191a1b;
  color: #fff;
  text-decoration: none;
}
.choose-type-in a.leasing {
  background-image: url(images/leasing.svg);
}
.choose-type-in a.used {
  background-image: url(images/used.svg);
}
.reserv-block {
  margin-bottom: 32px;
}
.res-tit {
  text-align: center;
  margin-bottom: 32px;
}
.res-tit h1 {
  font-size: 24px;
  margin-bottom: 4px;
}
.res-tit h4 {
  font-size: 24px;
  margin-bottom: 4px;
}
.res-tit p {
  font-size: 16px;
  color: rgba(240, 239, 235, 0.8);
}
.select-option {
  margin-bottom: 16px;
}
.select-option.town .active-option {
  background-image: url(images/location-blue.svg);
}
.select-option.date .active-option {
  background-image: url(images/date.svg);
}
.active-option {
  display: flex;
  background-color: #191a1b;
  border: 1px solid rgba(240, 239, 235, 0.08);
  border-radius: 8px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: 16px center;
  padding: 0 52px;
  color: #f0efeb;
  height: 56px;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.active-option:after {
  content: "";
  background-image: url(images/arr.svg);
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  right: 16px;
  top: 50%;
  transform: translate(0, -50%);
  position: absolute;
}
.active-option.dis {
  color: rgba(240, 239, 235, 0.56);
}
.second-modal-open .town .modal-select {
  left: 100%;
  bottom: 0%;
}
.modal-select {
  position: fixed;
  bottom: -100%;
  left: 0;
  min-height: 100%;
  max-height: 100%;
  width: 100%;
  z-index: 999;
  transition: all 0.3s;
}
.modal-select.open {
  bottom: 0%;
}
.modal-select-in {
  position: absolute;
  bottom: 0;
  top: 80px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.modal-select .modal-select-body {
  max-width: 768px;
  width: 100%;
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow-y: auto;
  overflow-x: hidden;
}
.modal-close {
  position: absolute;
  width: 56px;
  height: 56px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(images/close.svg);
  cursor: pointer;
  right: 0;
  top: 9px;
  z-index: 1;
}
.modal-title {
  background-color: #101213;
  padding: 0 48px;
  display: flex;
  align-items: center;
  height: 72px;
  background-repeat: no-repeat;
  background-position: 16px center;
}
.modal-title.location {
  background-image: url(images/location.svg);
}
.modal-title.dis {
  color: rgba(240, 239, 235, 0.56);
}
.select-wrap {
  height: calc(100vh - 80px - 72px);
  background-color: #191a1b;
}
.select-list ul li span {
  display: block;
  padding: 16px 16px 16px 52px;
  background-repeat: no-repeat;
  background-position: 16px center;
  font-size: 14px;
  line-height: 20px;
  background-image: url(images/location.svg);
}
.btn {
  border: none;
  display: flex;
  background-color: #191a1b;
  border-radius: 16px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: 16px center;
  padding: 0 52px;
  color: #f0efeb;
  height: 56px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.btn.first {
  background-color: #6c9c4a;
}
.btn.second {
  border: 1px solid rgba(106, 184, 49, 0.16);
}
.btn:disabled {
  background-color: rgba(106, 184, 49, 0.16);
  color: rgba(240, 239, 235, 0.56);
  cursor: not-allowed;
}
.one-item {
  border-radius: 12px;
  background-color: #191a1b;
}
.noUi-handle {
  background-color: #007bff !important;
}
.noUi-connect {
  background: #007bff !important;
}
.noUi-target {
  background: #ddd;
}
h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}
.carousel .one-item {
  max-width: 320px;
}
.one-item {
  border-radius: 12px;
  background-color: #191a1b;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.one-item-top {
  border-bottom: 1px solid rgba(240, 239, 235, 0.08);
  padding-top: 16px;
  width: 100%;
}
.one-item-thumb {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.one-item-thumb img {
  max-height: 120px;
  width: auto;
}
.car-type {
  position: absolute;
  top: 12px;
  right: 11px;
}
.car-type span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(240, 239, 235, 0.08);
  font-size: 11px;
  color: #fff;
  padding: 4px 12px;
  border-radius: 8px;
}
.one-item-top-info {
  padding: 12px 16px;
}
.one-item-name {
  margin-bottom: 4px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.one-item-name a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.one-item-trans {
  display: flex;
  align-items: center;
  gap: 7px;
}
.one-item-trans i {
  display: flex;
  background-color: rgba(240, 239, 235, 0.08);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}
.one-item-trans i svg {
  vertical-align: top;
}
.one-item-trans span {
  color: rgba(240, 239, 235, 0.56);
  font-size: 12px;
}
.one-item-bot {
  width: 100%;
  padding: 16px;
  background-image: url(images/arrey-right.svg);
  background-position: right 16px center;
  background-repeat: no-repeat;
}
.one-item-price {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.now-price {
  display: flex;
  align-items: center;
  margin-right: 4px;
}
.now-price i {
  font-style: normal;
  font-size: 14px;
  margin-right: 4px;
}
.now-price-number {
  font-size: 18px;
  margin-right: 4px;
}
.now-price-name {
  font-size: 14px;
}
.was-price {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: rgba(240, 239, 235, 0.56);
}
.was-price i {
  font-style: normal;
}
.was-price span {
  margin-right: 5px;
}
.was-price-number {
  text-decoration: line-through;
}
.one-item-incl {
  display: flex;
  align-items: center;
  gap: 7px;
}
.one-item-incl i {
  display: flex;
  background-color: rgba(240, 239, 235, 0.08);
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}
.one-item-incl i svg {
  vertical-align: top;
}
.one-item-incl span {
  font-size: 12px;
  color: rgba(240, 239, 235, 0.32);
}
body .litepicker .container__months .month-item-header {
  background-color: #191a1b;
  font-size: 14px;
  color: #f0efeb;
  position: sticky;
  top: 0;
  padding: 12px 0 12px;
  text-align: left;
}
body .litepicker .container__months .month-item-header .button-previous-month,
body .litepicker .container__months .month-item-header .button-next-month {
  display: none;
}
body .month-item-weekdays-row {
  display: none !important;
}
body .litepicker .container__main {
  width: 100%;
}
body .litepicker .container__months {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  box-shadow: none;
}
body .litepicker .container__months .month-item {
  width: 100%;
  margin-bottom: 40px;
  padding: 0;
}
body .litepicker .container__days .day-item {
  width: 14.2857142857%;
  padding: 14px 0;
  border-radius: 12px;
  color: rgba(240, 239, 235, 0.56);
}
body .litepicker .container__days .day-item.is-today {
  color: #191a1b;
  color: #6c9c4a !important;
}
body .litepicker .container__days .day-item.is-locked {
  text-decoration: line-through;
  color: rgba(240, 239, 235, 0.32);
}
body .litepicker .container__days .day-item.is-start-date,
body .litepicker .container__days .day-item.is-end-date {
  color: #191a1b;
  background-color: #f0efeb;
}
body .litepicker .container__days .day-item.is-in-range {
  background-color: rgba(240, 239, 235, 0.16);
}
body .litepicker .container__days {
  width: 100%;
}
body .litepicker .container__days > div,
body .litepicker .container__days > a {
  width: 14.2857142857%;
  padding: 14px 0;
  border-radius: 12px;
}
body .container__tooltip {
  color: #191a1b;
}
.select-date-top {
  max-height: var(--max-select-date-height) !important;
  overflow-y: auto !important;
  width: 100%;
  padding: 0 16px;
}
.week-top {
  display: flex;
  position: sticky;
  top: 0;
  padding: 8px 0;
  margin-bottom: 12px;
}
.week-top span {
  display: block;
  text-align: center;
  width: 14.2857142857%;
  font-size: 12px;
  padding: 5px 0px;
  color: rgba(240, 239, 235, 0.56);
}
body .noUi-horizontal .noUi-handle {
  background-color: rgba(0, 0, 0, 0) !important;
  border: none;
  box-shadow: none;
}
body .noUi-horizontal .noUi-handle::after,
body .noUi-horizontal .noUi-handle:before {
  content: normal;
}
body .noUi-tooltip {
  width: 66px;
  height: 44px;
  bottom: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: none;
  font-size: 14px;
}
body .noUi-connect {
  height: 2px;
  background-color: #333536 !important;
}
body .noUi-horizontal {
  height: 2px;
  border-radius: 0px;
  border: none;
}
body .noUi-target {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  box-shadow: none;
}
body .noUi-target:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  border-top: 2px dashed #333536;
}
.time-wrap {
  height: 280px;
  background-color: #101213;
}
.time-top {
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid rgba(240, 239, 235, 0.08);
}
.time-block {
  width: 100%;
  display: flex;
  align-items: center;
  height: 56px;
}
.time-left {
  width: 90px;
}
.time-right {
  width: calc(100% - 90px);
}
.time-bot {
  display: flex;
  padding: 24px 16px;
  align-items: center;
}
.time-bot-left {
  width: calc(100% - 72px);
}
.time-days {
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}
.time-date {
  color: rgba(240, 239, 235, 0.56);
}
.time-bot-right {
  width: 72px;
}
.done {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(106, 184, 49, 0.16);
  border-radius: 16px;
  height: 56px;
}
.done a {
  display: none;
  cursor: pointer;
}
.done.active {
  background-color: #6ab831;
  position: relative;
}
.done.active:not(.show-form) a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.choose-wrap {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(240, 239, 235, 0.08);
}
.already-choose {
  display: flex;
  align-items: center;
}
.back-choose {
  width: 40px;
  cursor: pointer;
}
.already-choose-in {
  width: calc(100% - 40px);
  border-radius: 8px;
  background-color: #191a1b;
  padding: 12px 16px;
}
.already-choose-tit {
  font-size: 12px;
}
.already-choose-data {
  color: rgba(240, 239, 235, 0.56);
  font-size: 12px;
}
.filter {
  padding: 16px 0;
  max-width: 100%;
  overflow: auto;
  margin-bottom: 16px;
}
.filter ul {
  display: flex;
  gap: 12px;
}
.filter ul li a {
  display: flex;
  border: 1px solid rgba(240, 239, 235, 0.08);
  border-radius: 12px;
  padding: 0 16px;
  height: 36px;
  cursor: pointer;
  font-size: 12px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #f0efeb;
}
.filter ul li.active a {
  color: #101213;
  background-color: #fff;
}
.cat-cars .one-item {
  margin-bottom: 16px;
}
.modal-car .modal-select-body {
  background-color: #191a1b;
  padding-top: 72px;
}
.modal-car-thumb {
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}
.modal-car-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 21px;
  margin-bottom: 30px;
}
.one-option {
  display: flex;
  align-items: center;
  gap: 13px;
}
.one-option-ico {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(240, 239, 235, 0.08);
  border-radius: 8px;
}
.one-option-title {
  color: rgba(240, 239, 235, 0.56);
  font-size: 14px;
  width: calc(100% - 43px);
}
.car-modal-order {
  padding: 0 8px;
  margin-bottom: 32px;
}
.car-modal-order-in {
  background-color: rgba(240, 239, 235, 0.04);
  border-radius: 24px;
  padding: 8px;
}
.car-modal-price {
  display: flex;
  justify-content: center;
  align-items: end;
  padding: 16px 0;
}
.car-modal-price-now {
  font-size: 18px;
  margin-right: 4px;
}
.car-modal-price-was {
  color: rgba(240, 239, 235, 0.56);
  font-size: 16px;
}
.car-modal-price-was span {
  text-decoration: line-through;
}
.swiper-wrapper {
  height: auto !important;
}
.main {
  position: relative;
}
.wrap-body {
  position: relative;
  left: 0%;
  transition: all 0.3s;
  background-color: #101213;
}
.wrap-body.hide {
  left: -100%;
}
.catalog .wrap-body {
  z-index: 9;
}
body.home:not(.modal-open) .wrap-body {
  z-index: 11;
}
.form-order {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
  display: none;
}
.form-order.show {
  display: block;
}
.form-order-in {
  padding: 19px 16px;
}
.form-order-in .container {
  padding: 0;
}
.form-order-car {
  border-radius: 12px;
  background-color: #191a1b;
  padding: 16px;
  margin-bottom: 32px;
}
.form-order-car-top {
  margin-bottom: 12px;
}
.form-order-car-tit {
  font-size: 18px;
  margin-bottom: 4px;
}
.form-order-car-info {
  color: rgba(240, 239, 235, 0.8);
  font-size: 12px;
}
.form-order-car-bot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.form-order-car-inp input,
.form-order-car-inp input:-webkit-autofill {
  width: 100%;
  padding: 0 16px 0 55px;
  background-color: rgba(240, 239, 235, 0.04);
  border: 1px solid rgba(240, 239, 235, 0.08);
  height: 56px;
  border-radius: 8px;
  color: #fff;
  background-color: rgba(240, 239, 235, 0.04) !important;
  -webkit-box-shadow: 0 0 0px 1000px rgba(240, 239, 235, 0.04) inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.form-order-car-inp input:-webkit-autofill,
.form-order-car-inp input:-webkit-autofill:hover,
.form-order-car-inp input:-webkit-autofill:focus,
.form-order-car-inp input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
}
.form-order-car-inp.full {
  width: 100%;
  position: relative;
}
.form-order-car-inp.full:before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background-image: url(images/user-ico.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
.form-order-car-inp.code {
  width: 70px;
}
.form-order-car-inp.code input {
  padding: 0 10px;
  text-align: center;
  font-weight: bold;
}
.form-order-car-inp.number {
  width: calc(100% - 82px);
}
.form-order-car-inp.number input {
  padding: 0 16px;
}
.fullflex {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.modal-thank {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 13;
  padding: 16px;
  display: none;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal-thank.open {
  display: flex;
}
.modal-thank-in {
  max-width: 343px;
  width: 100%;
  padding: 32px;
  background-color: #191a1b;
  border: 1px solid rgba(240, 239, 235, 0.08);
  border-radius: 24px;
}
.modal-thank-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 29px;
}
.modal-thank-tit {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  text-align: center;
}
.modal-thank-descr {
  margin-bottom: 24px;
  color: rgba(240, 239, 235, 0.8);
  font-size: 14px;
}
.modal-thank-call-now {
  margin-bottom: 16px;
}
.modal-thank-call-now .btn {
  height: 44px;
}
.modal-thank-back .btn {
  height: 44px;
}
input:-webkit-autofill {
  background-color: rgba(0, 0, 0, 0) !important;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.car-modal-footer-text {
	font-size: 12px;
	text-align: center;
	margin-top: 50px;
	color: #7a7676;
}


.acl-sitelinx #sitelinx-toggle-toolbar {
	border-radius: 8px;
	background: #4252DD;
	border: none;
	width: 48px;
	height: 48px;
}
.acl-sitelinx #sitelinx-toggle-toolbar img {background: transparent;}
.whatsapp-link {
	position: fixed;
	bottom: 163px;
	right: 17px;
	z-index: 100;
}
.phone-link{
	position: fixed;
	bottom: 83px;
	right: 17px;
	z-index: 100;
}