@font-face {
  font-family: "Proxima Nova ExCn Lt";
  src: url("ProximaNovaExCn-Light.eot");
  src: local("Proxima Nova Extra Condensed Light"),
    local("ProximaNovaExCn-Light"),
    url("ProximaNovaExCn-Light.eot?#iefix") format("embedded-opentype"),
    url("ProximaNovaExCn-Light.woff2") format("woff2"),
    url("ProximaNovaExCn-Light.woff") format("woff"),
    url("ProximaNovaExCn-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Proxima Nova ExCn Lt";
  src: url("ProximaNovaExCn-Semibold.eot");
  src: local("Proxima Nova Extra Condensed Semibold"),
    local("ProximaNovaExCn-Semibold"),
    url("ProximaNovaExCn-Semibold.eot?#iefix") format("embedded-opentype"),
    url("ProximaNovaExCn-Semibold.woff2") format("woff2"),
    url("ProximaNovaExCn-Semibold.woff") format("woff"),
    url("ProximaNovaExCn-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Proxima Nova ExCn Rg";
  src: url("ProximaNovaExCn-Bold.eot");
  src: local("Proxima Nova Extra Condensed Bold"), local("ProximaNovaExCn-Bold"),
    url("ProximaNovaExCn-Bold.eot?#iefix") format("embedded-opentype"),
    url("ProximaNovaExCn-Bold.woff2") format("woff2"),
    url("ProximaNovaExCn-Bold.woff") format("woff"),
    url("ProximaNovaExCn-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Proxima Nova ExCn Bl";
  src: url("ProximaNovaExCn-BlackIt.eot");
  src: local("Proxima Nova Extra Condensed Black Italic"),
    local("ProximaNovaExCn-BlackIt"),
    url("ProximaNovaExCn-BlackIt.eot?#iefix") format("embedded-opentype"),
    url("ProximaNovaExCn-BlackIt.woff2") format("woff2"),
    url("ProximaNovaExCn-BlackIt.woff") format("woff"),
    url("ProximaNovaExCn-BlackIt.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

:root {
  --main-color: #454546;
  --blue-color: #474fa0;
  --btn-color: #675b80;
  --white-color: #ffffff;
  --red-color: #df2424;
  --green-color: #8bfe99;
  --black-color: #000000;

  --bg-color: #f9fcff;
  --bg-card: #fcfcfa;

  --box-shadow: 0px 12.5px 10px rgba(71, 79, 160, 0.035),
    0px 6.6px 5.3px rgba(71, 79, 160, 0.028),
    0px 2.7px 2.2px rgba(71, 79, 160, 0.02);

  --mask: rgba(243, 245, 247, 0.6);
}

/*  --- Mixins ---  */
/*  --- Variables ---  */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: "Proxima Nova", sans-serif;
  /* height: 100vh; */
  height: 100%;
  min-height: 100%;
  font-size: 14px;
  color: var(--main-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

body.open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-weight: 700;
}

p,
li,
span,
label,
input,
textarea {
  font-weight: 600;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: inherit;
}

input.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.form__input {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: var(--blue-color);
  background: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  border: 1px solid rgba(71, 79, 160, 0.2);
  padding: 16px 40px 16px 20px;
  width: 100%;
  margin-bottom: 20px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: var(--blue-color);
}

:-moz-placeholder {
  /* Firefox 18- */
  color: var(--blue-color);
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--blue-color);
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--blue-color);
}

::-ms-input-placeholder {
  /* Edge */
  color: var(--blue-color);
}

:-moz-placeholder-shown {
  /* Standard one last! */
  color: var(--blue-color);
}

:-ms-input-placeholder {
  /* Standard one last! */
  color: var(--blue-color);
}

:placeholder-shown {
  /* Standard one last! */
  color: var(--blue-color);
}

details {
  position: relative;
}

details summary::-webkit-details-marker,
details summary::marker {
  display: none;
  content: "";
}

details summary::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 12px;
  background: url(/img/svg/v.svg) no-repeat center;
  width: 1.5em;
  height: 1.5em;
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  -o-transition: transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}

summary {
  width: 100%;
  background: var(--white-color);
  border: 1px solid rgba(71, 79, 160, 0.12);
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: var(--blue-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

summary:hover {
  color: var(--main-color);
}

summary:focus {
  outline: none;
}

.special__info-form details p {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: var(--blue-color);
}

details[open] summary:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

details[open]>summary {
  color: var(--blue-color);
  border-bottom: transparent;
  margin: 0;
}

details[open]>summary~* {
  -webkit-animation: open 1s ease;
  animation: open 1s ease;
  background: #ffffff;
  border: 1px solid rgba(71, 79, 160, 0.12);
  border-radius: 10px;
  padding: 15px 20px;
  border-top: none;
}

@-webkit-keyframes open {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes open {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

textarea {
  resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

#link_href {
  display: none;
}

/*button.disabled,*/
/*select:disabled,*/
/*input:disabled,*/
/*button:disabled {*/
/*  opacity: 0.5;*/
/*  cursor: not-allowed;*/
/*  pointer-events: none;*/
/*}*/



/* ---------------- checkbox ----------------- */

.form__check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 10px 0;
}

.form__check-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.form__check-label p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-weight: 400;
  line-height: 16px;
  margin-left: 10px;
}

.form__check-label p a {
  text-decoration: underline;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:not(:checked)+.radio__img::before {
  background: none;
}

.radio__img {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: url(/img/svg/checkbox.svg) no-repeat center;
  min-width: 24px;
  height: 24px;
  cursor: pointer;
}

.radio__img::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 6px;
  width: 18px;
  height: 15px;
  pointer-events: none;
  background: url(/img/svg/check.svg) no-repeat center;
}

input.error {
  background: #ffdcdc !important;
}

button {
  border: none;
  cursor: pointer;
  background: inherit;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background: inherit;
  cursor: pointer;
  -ms-flex-item-align: start;
  align-self: flex-start;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
}

select:disabled {
  cursor: not-allowed;
}

input,
select,
button,
textarea {
  font-family: "Proxima Nova", sans-serif;
}

table {
  border-collapse: collapse;
}

#section2::before,
#section3::before,
#section4::before,
#section5::before,
#section6::before {
  display: block;
  content: "";
  height: 215px;
  margin: -215px 0 0;
}

@media screen and (max-width: 1199px) {

  #section2::before,
  #section3::before,
  #section4::before,
  #section5::before,
  #section6::before {
    display: block;
    content: "";
    height: 240px;
    margin: -240px 0 0;
  }
}

@media screen and (max-width: 768px) {

  #section2::before,
  #section3::before,
  #section4::before,
  #section5::before,
  #section6::before {
    display: block;
    content: "";
    height: 152px;
    margin: -152px 0 0;
  }
}

@media screen and (max-width: 767px) {

  #section2::before,
  #section3::before,
  #section4::before,
  #section5::before,
  #section6::before {
    display: block;
    content: "";
    height: 154px;
    margin: -154px 0 0;
  }
}

@media screen and (max-width: 723px) {

  #section2::before,
  #section3::before,
  #section4::before,
  #section5::before,
  #section6::before {
    display: block;
    content: "";
    height: 182px;
    margin: -182px 0 0;
  }
}

@media screen and (max-width: 520px) {

  #section2::before,
  #section3::before,
  #section4::before,
  #section5::before,
  #section6::before {
    display: block;
    content: "";
    height: 210px;
    margin: -210px 0 0;
  }
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.main__bg {
  background: -o-linear-gradient(100deg,
      #f1f8f4,
      #fff,
      #e6f1ff,
      #fff,
      #f8fcfa,
      #fff,
      #e6f1ff,
      #fff,
      #f5fafb);
  background: linear-gradient(-10deg,
      #f1f8f4,
      #fff,
      #e6f1ff,
      #fff,
      #f8fcfa,
      #fff,
      #e6f1ff,
      #fff,
      #f5fafb);
}

.sell__disabled {
  height: calc(100vh - 400px);
}

.sell__disabled .main__title {
  text-align: center;
  margin: 20px 0;
}

.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

.car__container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --------------------------- header ------------------------ */

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header.out {
  -webkit-transform: translateY(-48%);
  -ms-transform: translateY(-48%);
  transform: translateY(-48%);
}

.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
}

.header__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  width: 254px;
  margin: 0;
}

.header__title span {
  font-weight: 400;
  letter-spacing: 1.3px;
}

.header__text-show {
  display: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--btn-color);
}

.header__links-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__search {
  position: relative;
  margin-right: 40px;
}

.header__search input {
  width: 480px;
  height: 40px;
  background: var(--white-color);
  border: 1px solid var(--btn-color);
  border-radius: 30px;
  padding: 15px 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: var(--btn-color);
}

.search__btn {
  position: absolute;
  top: 7px;
  right: 14px;
  padding: 6px;
}

.search__btn img {
  width: 15px;
  height: 15px;
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__buttons-show {
  display: none;
}

.pick__btn,
.sell__btn {
  display: block;
  font-weight: 700;
  line-height: 14px;
  color: var(--white-color);
  border-radius: 30px;
  padding: 15px 25px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pick__btn:hover,
.sell__btn:hover {
  border-radius: 10px;
}

.pick__btn {
  background: -webkit-gradient(linear, left top, left bottom, from(#c09ef7), to(#b289f5));
  background: -o-linear-gradient(top, #c09ef7 0%, #b289f5 100%);
  background: linear-gradient(180deg, #c09ef7 0%, #b289f5 100%);
  -webkit-box-shadow: 0px 22.3363px 17.869px rgb(71 79 160 / 4%),
    0px 12.5216px 10.0172px rgb(71 79 160 / 4%),
    0px 6.6501px 5.32008px rgb(71 79 160 / 3%),
    0px 2.76726px 2.21381px rgb(71 79 160 / 2%);
  box-shadow: 0px 22.3363px 17.869px rgb(71 79 160 / 4%),
    0px 12.5216px 10.0172px rgb(71 79 160 / 4%),
    0px 6.6501px 5.32008px rgb(71 79 160 / 3%),
    0px 2.76726px 2.21381px rgb(71 79 160 / 2%);
}

.sell__btn {
  background: -webkit-gradient(linear,
      left top, left bottom,
      from(rgba(202, 234, 148, 0.53)),
      to(#c4e888));
  background: -o-linear-gradient(top,
      rgba(202, 234, 148, 0.53) 0%,
      #c4e888 100%);
  background: linear-gradient(180deg,
      rgba(202, 234, 148, 0.53) 0%,
      #c4e888 100%);
  -webkit-box-shadow: 0px 22.3363px 17.869px rgba(71, 79, 160, 0.0417275),
    0px 12.5216px 10.0172px rgba(71, 79, 160, 0.035),
    0px 6.6501px 5.32008px rgba(71, 79, 160, 0.0282725),
    0px 2.76726px 2.21381px rgba(71, 79, 160, 0.0196802);
  box-shadow: 0px 22.3363px 17.869px rgba(71, 79, 160, 0.0417275),
    0px 12.5216px 10.0172px rgba(71, 79, 160, 0.035),
    0px 6.6501px 5.32008px rgba(71, 79, 160, 0.0282725),
    0px 2.76726px 2.21381px rgba(71, 79, 160, 0.0196802);
  margin-left: 20px;
  color: var(--blue-color);
}

.header__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
}

.header__logo {
  width: 150px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__logo img:last-child {
  display: none;
}

.errorPage {
  min-height: 460px;
  height: calc(100vh - 658px);
  position: relative;
  background: url(/img/error.webp) no-repeat center;
  background-size: cover;
}

.errorPage .container {
  min-height: inherit;
}

.errorPage__content {
  min-height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  color: var(--bg-card);
}

.errorPage__content p {
  font-weight: 400;
}

/* ----------------------- burger menu ------------------------ */

.burger {
  min-width: 32px;
  width: 32px;
  height: 5px;
  position: relative;
  border: none;
  display: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  background: var(--main-color);
  border-radius: 50px;
  margin-right: 0;
}

.burger::after {
  content: "";
  width: 32px;
  height: 5px;
  position: absolute;
  bottom: 10px;
  left: 0;
  background: var(--main-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.burger::before {
  content: "";
  width: 32px;
  height: 5px;
  position: absolute;
  top: 10px;
  left: 0;
  background: var(--main-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.burger.open {
  z-index: 6;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger.open::after {
  -webkit-transform: rotate(90deg) translate(30%);
  -ms-transform: rotate(90deg) translate(30%);
  transform: rotate(90deg) translate(30%);
}

.burger.open::before {
  opacity: 0;
  top: 0;
}

.nav__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nav__burger .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px 15px;
  margin-left: 20px;
}

.nav__burger a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 5px 0;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 1;
  margin-bottom: 1px;
}

.nav__burger a.active {
  color: var(--btn-color);
  font-weight: 900;
}

.menu__overlay {
  position: fixed;
  left: 0;
  top: 167px;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  -webkit-transition: visibility 0.5s ease, opacity 0.5s ease;
  -o-transition: visibility 0.5s ease, opacity 0.5s ease;
  transition: visibility 0.5s ease, opacity 0.5s ease;
}

.last__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.reg__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 20px;
  cursor: pointer;
}

/* -------------- user ----------------- */

svg.user circle.solid {
  stroke: var(--bg-color);
}

svg.user circle.animation {
  -webkit-transition: stroke-dashoffset 400ms linear 0ms,
    stroke-dasharray 400ms linear 0ms;
  -o-transition: stroke-dashoffset 400ms linear 0ms,
    stroke-dasharray 400ms linear 0ms;
  transition: stroke-dashoffset 400ms linear 0ms,
    stroke-dasharray 400ms linear 0ms;
  stroke: var(--blue-color);
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 2;
}

svg.toggle.user circle.animation {
  -webkit-transition: stroke-dashoffset 400ms linear 0ms,
    stroke-dasharray 400ms linear 0ms;
  -o-transition: stroke-dashoffset 400ms linear 0ms,
    stroke-dasharray 400ms linear 0ms;
  transition: stroke-dashoffset 400ms linear 0ms,
    stroke-dasharray 400ms linear 0ms;
  stroke-dasharray: 200, 0;
  stroke-dashoffset: 0;
}

svg.user rect,
svg.user path {
  -webkit-transition: fill 400ms linear 0ms;
  -o-transition: fill 400ms linear 0ms;
  transition: fill 400ms linear 0ms;
  fill: var(--bg-color);
}

svg.user:hover rect {
  opacity: 0;
}

svg.toggle.user rect,
svg.toggle.user path {
  -webkit-transition: fill 400ms linear 0ms;
  -o-transition: fill 400ms linear 0ms;
  transition: fill 400ms linear 0ms;
  fill: var(--blue-color);
}

svg.toggle.user rect {
  -webkit-animation: blink 6s ease-in-out infinite;
  animation: blink 6s ease-in-out infinite;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  31% {
    opacity: 1;
  }

  32% {
    opacity: 0;
  }

  70% {
    opacity: 0;
  }

  71% {
    opacity: 1;
  }

  72% {
    opacity: 0;
  }

  73% {
    opacity: 1;
  }

  74% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  31% {
    opacity: 1;
  }

  32% {
    opacity: 0;
  }

  70% {
    opacity: 0;
  }

  71% {
    opacity: 1;
  }

  72% {
    opacity: 0;
  }

  73% {
    opacity: 1;
  }

  74% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* .last__item-reg svg {
  width: 30px;
  height: 30px;
  display: none;
} */

/* @media (max-width: 520px) {
  .last__items {
    display: none;
  }
} */

.nav__burger .link__last {
  position: relative;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid rgba(71, 79, 160, 0.12);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 6px;
  text-align: center;
  padding: 6px;
  margin-left: 25px;
  cursor: pointer;
}

/* .nav__burger .link__last:hover {
  opacity: 0.7;
  background: #b994f6;
} */

.nav__burger .link__last img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
}

.reg__name {
  /* display: none; */
  position: absolute;
  bottom: -17px;
  right: 0;
  background: transparent;
  z-index: 5;
  max-width: 125px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

/* .reg__item {
  display: none;
} */

.menu__overlay.open {
  opacity: 1;
  visibility: visible;
}

.menu__overlay .last__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px;
  position: fixed;
  height: 100vh;
  left: 0%;
  top: 167px;
  width: 100%;
  max-width: 100%;
  opacity: 1;
  background: #000000de;
  padding: 40px;
}

.menu__overlay .last__items .last__item {
  display: block;
  background: #fff;
  border-radius: 5px;
  width: 140px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.menu__overlay .last__items .last__item:hover {
  opacity: 0.8;
}

.menu__overlay .last__items .last__item:hover svg,
.menu__overlay .last__items .last__item:hover path,
.menu__overlay .last__items .last__item:hover polygon,
.menu__overlay .last__items .last__item:hover g {
  -webkit-animation: none;
  animation: none;
}

.menu__overlay .last__items .last__item a,
.menu__overlay .last__items .last__item form {
  padding: 5px;
}

.cart__count,
.favorite__count {
  display: none;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: var(--blue-color);
  border-radius: 50%;
  pointer-events: none;
  padding: 2px;
  color: #fff;
}

.nav__burger a::after {
  height: 2px;
  width: 100%;
  background: var(--blue-color);
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav__burger .link__last::after {
  height: 0;
}

.nav__burger a:hover {
  color: var(--blue-color);
}

.nav__burger a:hover::after,
.link__item.active a::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.nav__burger .link__item {
  position: relative;
  border-bottom: 2px solid #ffffff00;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.4px;
  color: var(--btn-color);
}

.menu__show {
  display: none;
}

.fancybox-content {
  padding: 40px;
}

.fancybox-container {
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  z-index: 100;
}

/* ----------------------- footer ------------------------ */

.footer {
  background: -o-linear-gradient(100deg, #d9eafb, #f1f8f4 64%, #f8fcfa 81%);
  background: linear-gradient(-10deg, #d9eafb, #f1f8f4 64%, #f8fcfa 81%);
  padding: 40px 0;
  border-top: 1px solid rgba(71, 79, 160, 0.05);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.footer__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer__col:not(:last-of-type) ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 20px;
}

.footer__col h3 {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--blue-color);
  padding-bottom: 5px;
}

.footer__link {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 10px;
}

.footer__bottom p {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  padding-bottom: 10px;
}

.footer__bottom p:last-child {
  font-size: 10px;
}

.footer__politics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 20px;
}

.footer__bottom a {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: var(--btn-color);
  margin-bottom: 10px;
  text-decoration: underline;
}

.sub-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  overflow-x: auto;
  white-space: nowrap;
}

.sub-navbar__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
}

.sub-navbar__box::-webkit-scrollbar {
  width: 0;
}

.sub-navbar__link {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}

.sub-navbar__link a {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.sub-navbar__link:last-child {
  color: var(--blue-color);
  font-weight: 700;
}

.sub-navbar__link:hover a {
  color: var(--blue-color);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sub-navbar__link img {
  margin: 0 10px;
}

.main__title {
  font-size: 24px;
  line-height: 30px;
}

/* ---------- select --------------- */

.label {
  display: block;
  position: relative;
  background: transparent;
  min-width: 130px;
  max-width: 400px;
  width: 100%;
  height: 50px;
}

.label__hover:hover .label__arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.label__arrow {
  position: absolute;
  top: 18px;
  right: 15px;
  background: url(/img/svg/v.svg) no-repeat center;
  width: 16px;
  height: 12px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
}

.label__arrow.open {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.form__select,
.select2-container {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 50px;
  color: var(--blue-color);
  background: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  border: 1px solid rgba(71, 79, 160, 0.2);
  padding: 8px 15px;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
}

.select2-container {
  width: inherit !important;
}

.select2-container .disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

.selection {
  width: 100%;
  height: 48px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.select2-container--default .select2-selection--single {
  border: none;
  border-radius: 16px;
  width: 100%;
  height: 48px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background: inherit;
  opacity: 0.5;
}

.select2-search--dropdown {
  display: none;
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 210px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: inherit;
  font-weight: 400;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  opacity: 0;
}

.select2-container--open .select2-dropdown--below {
  top: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple,
.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--default .select2-selection--multiple {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-top: 1px !important;
  width: inherit;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove,
.select2-search .select2-search--inline,
.select2-container .select2-search--inline .select2-search__field {
  display: none !important;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
  margin-right: 15px;
  margin-top: 8px;
  max-width: calc(100% - 30px);
  height: 30px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  overflow: initial !important;
  -o-text-overflow: initial !important;
  text-overflow: initial !important;
  pointer-events: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display,
.select2-results__option--selectable {
  font-weight: 400;
}

.select2-container--default .select2-results__option--selected {
  position: relative;
  background: none !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  /*background: var(--blue-color) !important;*/
  background: #356abd !important;
}

.select2-container--default .select2-results__option--selected:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 5px;
  background: url(/img/svg/v3.svg) no-repeat center;
  width: 10px;
  height: 10px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable::after {
  background: url(/img/svg/v4.svg) no-repeat center;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 4px;
  background: #cbd0d4;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background: var(--blue-color);
}

option {
  text-transform: uppercase;
}

.select2-results__option {
  padding: 3px;
}

.select2-container--default .select2-results__group {
  color: #999;
}

.select2-container--default .select2-results__group {
  font-weight: 400;
  font-size: 14px;
  color: var(--black-color);
  background: #efefef;
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: underline;
}

/* ----------------------- cars ------------------------ */

.cars {
  /* background: linear-gradient(-10deg, #f4faf9, #ffffff, #e3f0ff 58%, #f2f9f7 75%, #f5fafb); */
  margin-bottom: 20px;
}

.form__container {
  background: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(71, 79, 160, 0.2);
  border-radius: 10px;
  padding: 17px;
}

.car__container .main__title {
  margin: 20px 0;
}

.form__container-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.cars__menu-form .label {
  max-width: 250px;
  display: block;
}

.cars__menu .select {
  max-width: initial;
  width: 230px;
  font-weight: 600;
  font-size: 16px;
  line-height: 14px;
}

.cars__menu .select-styled:after {
  background: url(/img/svg/v2.svg) no-repeat center;
}

.cars__menu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  background: var(--blue-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 14px;
  color: var(--white-color);
  padding: 18px 28px;
  width: 250px;
}

.cars__menu-btn.disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: .5;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.cars__menu-select {
  width: 250px;
  font-weight: 600;
  font-size: 16px;
}

.cars__menu-span {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3.65%, #474fa0), to(#b289f5));
  background: -o-linear-gradient(top, #474fa0 3.65%, #b289f5 100%);
  background: linear-gradient(180deg, #474fa0 3.65%, #b289f5 100%);
  border-radius: 10px 10px 10px 2px;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cars__menu-span.open {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.cars__menu-span.open::before {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.cars__menu-span::before {
  content: "";
  background: url(/img/svg/v2.svg) no-repeat center;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 18px;
  left: 18px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.cars__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 15px;
  margin-bottom: 20px;
}

.cars__card {
  position: relative;
  width: 100%;
  background: #fcfcfa;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}

.car__img {
  width: 100%;
  height: 190px;
}

.car__img-pre {
  position: relative;
}

.car__img-pre.hide::before {
  content: none;
}

.car__img-pre:before {
  content: "";
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 50px);
  background: url(/img/preloader.gif) no-repeat 50% 0;
  background-size: cover;
  width: 100px;
  height: 80px;
}

.cars__card img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.car__main {
  border-radius: 5px 5px 0 0;
  padding: 10px;
}

.tested__block {
  background: #695B7F;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(71, 79, 160, 0.03), 0px 5px 5px 0px rgba(71, 79, 160, 0.04), 0px 22px 22px 0px rgba(71, 79, 160, 0.07);
  box-shadow: 0px 2px 2px 0px rgba(71, 79, 160, 0.03), 0px 5px 5px 0px rgba(71, 79, 160, 0.04), 0px 22px 22px 0px rgba(71, 79, 160, 0.07);
  height: 25px;
}

.tested__block-empty {
  height: 25px;
}

.tested {
  position: relative;
  font-weight: 700;
  font-size: 14px;
  line-height: 15px;
  color: #FFF;
  padding: 5px 0;
  padding-right: 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.tested::after {
  content: "";
  position: absolute;
  right: 0;
  background: url(/img/svg/test-ok.svg) no-repeat center;
  background-size: contain;
  width: 15px;
  height: 15px;
}

.car__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 10px;
  gap: 5px;
}

.car__name h3,
.car__name h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  color: var(--black-color);
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.car__name .car__moderation-text {
  color: var(--red-color);
}

.car__name h4 {
  font-weight: 400;
  /* color: #9c9d9f; */
  font-size: 18px;
  color: var(--blue-color);
  height: 22px;
}

.car__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 10px;
  height: 76px;
}

.car__info-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.car__info-col p,
.car__info-col span {
  font-weight: 700;
  line-height: 14px;
  margin-bottom: 5px;
}

.car__info-col p {
  color: var(--black-color);
}

.car__info-col span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
  align-self: flex-end;
  color: #9c9d9f;
}

.car__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
  gap: 5px;
}

.car__button {
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  background: var(--btn-color);
  border-radius: 5px;
  color: #fff;
  padding: 15px 5px;
}

.car__price {
  text-align: end;
}

.car__price del {
  font-weight: 400;
  line-height: 14px;
  color: var(--black-color);
}

.car__price p {
  font-weight: 400;
  line-height: 14px;
  color: var(--red-color);
}

.car__price p span {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}

.car__discount {
  /* position: absolute;
  top: 73%;
  right: 10px; */
  font-weight: 600;
  background: #f5fff7;
  border: 1px solid rgba(71, 79, 160, 0.15);
  border-radius: 5px;
  padding: 5px;
  width: 114px;
  height: 44px;
  text-align: center;
}

/* .used__cars .car__discount {
  position: initial;
} */

.car__discount p {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: #81196a;
}

.car__discount span {
  color: #6e6e6e;
}

.car__discount b {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #81196a;
}

.show__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  font-size: 16px;
  line-height: 14px;
  color: var(--white-color);
  background: var(--blue-color);
  border-radius: 2px 2px 10px 10px;
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 18px 33px;
  margin: 0 auto;
  margin-top: 10px;
}

.car__slider {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.car__slider .slick-slide {
  height: 190px;
}

.car__slider .slick-slide button {
  position: relative;
  width: 100%;
  height: inherit;
  background: var(--green-color);
  margin-left: 2px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: var(--blue-color);
  text-align: center;
  padding: 10px;
}

.car__slider .slick-slide img {
  padding: 0 2px;
}

.car__slider .slick-slide p {
  position: sticky;
  background: initial;
  color: var(--blue-color);
  font-size: 12px;
  line-height: 14px;
  bottom: 24%;
  height: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 60px;
}

.lazy-preloader {
  width: 100px !important;
  height: 72px !important;
  margin: 0 auto;
  position: relative;
  top: calc(50% - 36px);
  -o-object-position: 50% 33%;
  object-position: 50% 33%;
}

.car__slider .slick-arrow {
  position: absolute;
  top: calc(50% - 19px);
  z-index: 10;
  font-size: 0;
  width: 38px;
  height: 38px;
}

.car__slider .slick-arrow.slick-prev {
  left: 0;
  /* background: url(/img/svg/slide__left-spec.svg) no-repeat center; */
}

.car__slider .slick-arrow.slick-next {
  right: 0;
  /* background: url(/img/svg/slide__right-spec.svg) no-repeat center; */
}

.car__slider .slick-prev:before,
.slick-next:before {
  opacity: 1;
}

/* --------------------- cars links ----------------------- */

.links__container {
  max-width: 1305px;
  margin: 20px auto;
}

.best-offers__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.best-offers__link {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 50px;
  background: #ffffff;
  border: 1px solid rgba(71, 79, 160, 0.15);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 10px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.best-offers__link:hover {
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
}

.best-offers__link.selected {
  background: var(--green-color);
}

.best-offers__links.open .best-offers__link:nth-child(n + 13) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.best-offers__link img {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 5px;
}

.best-offers__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 5px;
}

.best-offers__right span {
  height: 16px;
}

.best-offers__link p {
  font-size: 16px;
  line-height: 16px;
  /* color: #b289f5; */
  color: #8470d1;
}

.best-offers__btn {
  display: none;
  width: 200px;
  height: 50px;
  font-weight: 600;
  font-size: 16px;
  line-height: 14px;
  color: var(--white-color);
  background: #b289f5;
  -webkit-box-shadow: 0px 22px 22px rgba(71, 79, 160, 0.07),
    0px 4.91399px 4.91399px rgba(71, 79, 160, 0.0417275),
    0px 1.46302px 1.46302px rgba(71, 79, 160, 0.0282725);
  box-shadow: 0px 22px 22px rgba(71, 79, 160, 0.07),
    0px 4.91399px 4.91399px rgba(71, 79, 160, 0.0417275),
    0px 1.46302px 1.46302px rgba(71, 79, 160, 0.0282725);
  border-radius: 2px 2px 10px 10px;
  margin: 0 auto;
  margin-top: 10px;
}

/* .best-offers__link span {
  font-weight: 600;
  text-align: right;
  background: transparent;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
} */

/* ----------------------- services ------------------------ */

.services {
  margin: 20px 0 45px;
}

.services h2 {
  font-size: 36px;
  line-height: 40px;
  margin-left: 30px;
  margin-bottom: 20px;
  color: #000000;
}

.services__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.services__row::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 300px;
  background: url(/img/svg/services__arrow1.svg) no-repeat center;
  background-size: contain;
  width: 248px;
  height: 36px;
}

.services__row::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: 200px;
  background: url(/img/svg/services__arrow2.svg) no-repeat center;
  background-size: contain;
  width: 248px;
  height: 36px;
}

.services__block {
  border-radius: 14px;
  border: 1px solid rgba(71, 79, 160, 0.12);
  background: #FFF;
  -webkit-box-shadow: 0px 3px 2px 0px rgba(71, 79, 160, 0.02), 0px 6px 5px 0px rgba(71, 79, 160, 0.03), 0px 12px 10px 0px rgba(71, 79, 160, 0.04);
  box-shadow: 0px 3px 2px 0px rgba(71, 79, 160, 0.02), 0px 6px 5px 0px rgba(71, 79, 160, 0.03), 0px 12px 10px 0px rgba(71, 79, 160, 0.04);
  height: 292px;
}

.services__row-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  border-radius: 10px;
  border: 1px dashed rgba(71, 79, 160, 0.20);
  background: rgba(255, 255, 255, 0.70);
  margin: 10px;
  padding: 25px 15px;
  height: calc(100% - 20px);
}


.services__row-wrap::before,
.used__benefit-wrap:before {
  content: "";
  position: absolute;
  top: 5px;
  right: -5px;
  background: url(/img/svg/services__bg.svg) no-repeat center;
  background-size: contain;
  width: 104px;
  height: 96px;
}

.services__row-wrap::after,
.services__row-wrap2::after,
.services__row-wrap3::after,
.used__benefit-wrap4::after,
.used__benefit-wrap5::after,
.used__benefit-wrap6::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  background: url(/img/svg/services1.svg) no-repeat center;
  background-size: contain;
  width: 38px;
  height: 38px;
}

.services__row-wrap2::after {
  background: url(/img/svg/services2.svg) no-repeat center;
  background-size: contain;
}

.services__row-wrap3::after {
  background: url(/img/svg/services3.svg) no-repeat center;
  background-size: contain;
}

.used__benefit-wrap4::after {
  background: url(/img/svg/services4.svg) no-repeat center;
  background-size: contain;
}

.used__benefit-wrap5::after {
  background: url(/img/svg/services5.svg) no-repeat center;
  background-size: contain;
}

.used__benefit-wrap6::after {
  background: url(/img/svg/services6.svg) no-repeat center;
  background-size: contain;
}

.services__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 22px;
  color: var(--blue-color);
  padding-right: 80px;
}

.services__text {
  max-width: 285px;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  background: transparent;
}

.services__btn {
  position: relative;
  width: 200px;
  height: 50px;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  /* color: var(--blue-color);
  background: var(--white-color);
  border: 1px solid rgba(71, 79, 160, 0.16);
  border-radius: 10px; */
  color: var(--white-color);
  border-radius: 0px 0px 10px 10px;
  border: 1px solid rgba(71, 79, 160, 0.12);
  background: #8C77ED;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.services__btn:hover {
  color: var(--blue-color);
  background: var(--white-color);
}

/* .services__btn:hover {
  color: var(--bg-color);
  transition-delay: 0.5s;
  z-index: 1;
  background: none;
  border: none;
}

.services__btn:before,
.services__btn:after {
  content: "";
  position: absolute;
  transition: inherit;
  z-index: -1;
}

.services__btn:hover:before {
  transition-delay: 0s;
}

.services__btn:hover:after {
  color: var(--bg-color);
  background: var(--blue-color);
  transition-delay: 0.35s;
}

.services__btn:before,
.services__btn:after {
  top: 0;
  width: 0;
  height: 100%;
}

.services__btn:before {
  left: 0;
  border: 1px solid var(--blue-color);
  border-left: 0;
  border-right: 0;
}

.services__btn:after {
  right: 0;
}

.services__btn:hover:before,
.services__btn:hover:after {
  width: 100%;
} */

.used__bg {
  background: -o-linear-gradient(100deg,
      #f6fbfa,
      #f9fdfc,
      #e3f0ff 58%,
      #f2f9f7 75%,
      #f5fafb);
  background: linear-gradient(-10deg,
      #f6fbfa,
      #f9fdfc,
      #e3f0ff 58%,
      #f2f9f7 75%,
      #f5fafb);
}

.used__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 30px 0;
}

.used__left {
  display: block;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.used__show-buttons {
  display: none;
}

.used__group-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 20px;
  gap: 10px;
}

.new__btn,
.used__btn {
  display: block;
  width: 150px;
  height: 50px;
  font-weight: 400;
  font-size: 16px;
  line-height: 12px;
  background: #ffffff;
  border: 1px solid rgba(71, 79, 160, 0.15);
  -webkit-box-shadow: 0px 12.5216px 10.0172px rgb(71 79 160 / 4%),
    0px 6.6501px 5.32008px rgb(71 79 160 / 3%),
    0px 2.76726px 2.21381px rgb(71 79 160 / 2%);
  box-shadow: 0px 12.5216px 10.0172px rgb(71 79 160 / 4%),
    0px 6.6501px 5.32008px rgb(71 79 160 / 3%),
    0px 2.76726px 2.21381px rgb(71 79 160 / 2%);
  border-radius: 10px;
  text-align: center;
  padding: 18px 0;
}

.new__btn.active,
.used__btn.active {
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid var(--green-color);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.add_disable {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* .used__btn {
  background: rgba(255, 255, 255, 0.75);
  border: 2px solid var(--green-color);
  box-shadow: none;
} */

/* .used__btn,
.used__btn-used {
  margin-left: 10px;
} */

.used__left-form {
  margin-right: 35px;
  width: 100%;
}

.used__left-form .left-form-block .form__select {
  max-width: 500px;
  margin-bottom: 20px;
  color: var(--blue-color);
}

.used__left-form .form__select {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--blue-color);
  background: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  border: 1px solid rgba(71, 79, 160, 0.2);
  padding: 16px 40px 16px 20px;
  width: 100%;
  margin-bottom: 20px;
}

.used__right {
  max-width: 935px;
  width: 100%;
  margin-left: 35px;
}

.used__right .best-offers__links {
  gap: 19px;
}

.used__right .best-offers__links .best-offers__link {
  width: 140px;
}

.used__bottom-form .used__left-form {
  width: 100%;
  margin: 0;
}

.used__form-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.used__form-section div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 10px;
}

.used__form-block {
  margin-bottom: 10px;
}

.used__form-block .select {
  max-width: initial;
  color: var(--blue-color);
}

.name__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 20px;
}

.car__name-link {
  display: block;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid rgba(71, 79, 160, 0.12);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 6px;
  text-align: center;
  padding: 8px;
  cursor: pointer;
}

.remove_to_compare,
.remove_to_favorite {
  opacity: 0.7;
  background: #b994f6;
}

.car__name-link img {
  width: 100%;
}

.used__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  margin: 20px 0;
}

.used__options span {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: var(--white-color);
  background: var(--btn-color);
  border-radius: 20px;
  padding: 5px;
  height: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.used__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px 10px;
  height: 40px;
}

.used__price h4 {
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  color: #df2424;
}

.used__price h4 span {
  font-weight: 700;
}

.used__car-btn {
  font-weight: 400;
  line-height: 14px;
  margin-top: 15px;
  width: 100%;
  background: var(--main-color);
  border-radius: 5px;
  color: #fff;
  padding: 10px;
}

.used__car-btn span {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
}

/* ----------------------- modal ----------------------- */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  background: rgb(0 0 0 / 50%);
}

.modal.show {
  z-index: 10000;
  display: block !important;
}

.modal__dialog {
  position: relative;
  width: auto;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 500px;
  min-height: calc(100% - 3.5rem);
  margin: 1.75rem auto;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.modal__vin .modal__dialog {
  max-width: 880px;
  height: 100%;
  margin: 0;
  margin-left: auto;
}

.modal__content {
  position: relative;
  width: 100%;
  pointer-events: auto;
  background: #fff;
  border-radius: 5px;
  padding: 15px;
  padding-top: 30px;
  margin: 0 10px;
}

.modal__vin .modal__content {
  height: inherit;
  margin: 0;
  border-radius: 5px 0 0 5px;
  overflow-y: scroll;
}

/* .modal__content.hide {
  background: url(/img/preloader.gif) no-repeat center #fff;
} */

.modal__loader {
  display: none;
}

.modal__content.hide .modal__loader {
  display: block;
  background: url(/img/preloader.gif) no-repeat 50% 34% #fff;
  background-size: cover;
  width: 200px;
  height: 150px;
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 100px);
}

.modal__content.hide .modal__loader span {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  background: transparent;
  text-align: center;
  color: var(--blue-color);
  font-size: 16px;
}

.modal__vin-block {
  display: none;
  margin-bottom: 24px;
}

.modal__vin-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.modal__vin-list li {
  color: #919399;
}

.modal__vin-list li span {
  font-size: 16px;
  line-height: 24px;
  color: #2c2d2e;
}

.modal__vin-title {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding-left: 25px;
  margin-bottom: 8px;
}

.modal__vin-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #53a047;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-top: none;
  border-right: none;
  width: 17px;
  height: 11px;
  /* position: absolute;
  top: calc(50% - 9px);
  left: 0;
  display: block;
  background: url(/img/svg/carViewOk.svg) no-repeat center;
  background-size: contain;
  width: 16px;
  height: 16px; */
}

.modal__vin-text {
  font-weight: 400;
}

.modal__title {
  font-weight: 700;
  font-size: 28px;
  line-height: 30px;
  text-align: center;
  margin: 15px auto;
}

.modal__foto {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 10px 0;
  border-radius: 5px;
}

.modal__text {
  font-size: 20px;
  line-height: 22px;
  text-align: center;
}

.modal__text .sale-date {
  font-weight: 700;
  color: var(--blue-color);
}

.modal-dataLayer--price {
  font-weight: 700;
}

.modal__credit-form {
  margin-top: 10px;
}

.modal__btn {
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
  padding: 10px 25px;
  margin-top: 15px;
  width: 100%;
  height: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#c09ef7), to(#b289f5));
  background: -o-linear-gradient(top, #c09ef7 0%, #b289f5 100%);
  background: linear-gradient(180deg, #c09ef7 0%, #b289f5 100%);
  -webkit-box-shadow: 0px 22.3363px 17.869px rgb(71 79 160 / 4%),
    0px 12.5216px 10.0172px rgb(71 79 160 / 4%),
    0px 6.6501px 5.32008px rgb(71 79 160 / 3%),
    0px 2.76726px 2.21381px rgb(71 79 160 / 2%);
  box-shadow: 0px 22.3363px 17.869px rgb(71 79 160 / 4%),
    0px 12.5216px 10.0172px rgb(71 79 160 / 4%),
    0px 6.6501px 5.32008px rgb(71 79 160 / 3%),
    0px 2.76726px 2.21381px rgb(71 79 160 / 2%);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.modal__close::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 20px;
  height: 1px;
  border-radius: 0.25rem;
  background: black;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.modal__close::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 20px;
  height: 1px;
  border-radius: 0.25rem;
  background: black;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal__close:hover {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.modal-dataLayer--name {
  font-size: 20px;
  line-height: 22px;
}

.modal__cart .modal__foto {
  width: 200px;
}

/* ------------------ politics success ---------------- */

.politics {
  margin-bottom: 20px;
}

.politics h1,
.politics h2 {
  margin: 10px 0;
}

.politics h2 {
  font-size: 16px;
  color: var(--btn-color);
  margin-bottom: 10px;
  text-decoration: underline;
}

.politics p {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: justify;
  margin-bottom: 5px;
}

.politics a {
  font-weight: 600;
  display: initial;
  color: var(--blue-color);
  text-decoration: underline;
}

.success__container {
  height: calc(100vh - 200px);
  text-align: center;
  margin-top: 40px;
}

/* --------------------- forgot ----------------------- */

.office__content {
  max-width: 400px;
  width: 100%;
  padding: 20px;
  margin: 20px auto;
}

.office__content h1 {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.hide__form-block {
  display: none;
  margin-top: 20px;
}

#get_code,
#check_code {
  display: block;
  font-weight: 700;
  line-height: 14px;
  color: var(--white-color);
  border-radius: 5px;
  padding: 7px 15px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(202, 234, 148, 0.53)), to(#c4e888));
  background: -o-linear-gradient(top, rgba(202, 234, 148, 0.53) 0%, #c4e888 100%);
  background: linear-gradient(180deg, rgba(202, 234, 148, 0.53) 0%, #c4e888 100%);
  -webkit-box-shadow: 0px 22.3363px 17.869px rgba(71, 79, 160, 0.0417275), 0px 12.5216px 10.0172px rgba(71, 79, 160, 0.035), 0px 6.6501px 5.32008px rgba(71, 79, 160, 0.0282725), 0px 2.76726px 2.21381px rgba(71, 79, 160, 0.0196802);
  box-shadow: 0px 22.3363px 17.869px rgba(71, 79, 160, 0.0417275), 0px 12.5216px 10.0172px rgba(71, 79, 160, 0.035), 0px 6.6501px 5.32008px rgba(71, 79, 160, 0.0282725), 0px 2.76726px 2.21381px rgba(71, 79, 160, 0.0196802);
  margin-left: auto;
  color: var(--blue-color);
}

#get_code:hover,
#check_code:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#c09ef7), to(#b289f5));
  background: -o-linear-gradient(top, #c09ef7 0%, #b289f5 100%);
  background: linear-gradient(180deg, #c09ef7 0%, #b289f5 100%);
  -webkit-box-shadow: 0px 22.3363px 17.869px rgb(71 79 160 / 4%), 0px 12.5216px 10.0172px rgb(71 79 160 / 4%), 0px 6.6501px 5.32008px rgb(71 79 160 / 3%), 0px 2.76726px 2.21381px rgb(71 79 160 / 2%);
  box-shadow: 0px 22.3363px 17.869px rgb(71 79 160 / 4%), 0px 12.5216px 10.0172px rgb(71 79 160 / 4%), 0px 6.6501px 5.32008px rgb(71 79 160 / 3%), 0px 2.76726px 2.21381px rgb(71 79 160 / 2%);
  color: var(--white-color);
}

.office__content .change__form {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* .about__main {
  height: calc(100vh - 390px);
} */

.about__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 15px 0 30px;
}

.about__block {
  background: #f9fcff;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding: 5px;
}

.about__row-wrap {
  position: relative;
  background: #f9fcff;
  border: 2px dashed rgba(0, 0, 0, 0.11);
  border-radius: 10px;
  padding: 15px;
  height: inherit;
}

.about__row-wrap h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  color: var(--blue-color);
  margin-bottom: 15px;
}

.about__row-wrap p {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  color: var(--btn-color);
  margin-bottom: 10px;
  text-indent: 15px;
  text-align: justify;
}

.about__row-wrap b {
  display: block;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

.about__row-wrap ul li {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
  text-indent: 25px;
  text-align: justify;
}

.about__row-wrap ul li::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  background: url(/img/svg/star-span.svg) no-repeat center;
  background-size: contain;
  width: 15px;
  height: 15px;
}

/* ---------------------- term of use ------------------------- */

.terms {
  margin-bottom: 20px;
}

.terms h1 {
  margin-bottom: 10px;
}

.terms p {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: justify;
  margin-bottom: 5px;
}

.terms a {
  font-weight: 600;
  display: initial;
  color: var(--blue-color);
  text-decoration: underline;
}

.terms b {
  display: block;
  font-size: 16px;
  color: var(--btn-color);
  margin-bottom: 10px;
  text-decoration: underline;
}

/* -------------==================------------------- */

/* .label {
  background: #fff;
  border-radius: 10px;
}

.sel {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
  height: 50px;
  color: var(--blue-color);
  background: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  border: 1px solid rgba(71, 79, 160, 0.2);
  padding: 8px 15px;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  position: relative;
  z-index: 3;
}

.sel::before {
  position: absolute;
  top: 18px;
  right: 15px;
  background: url(/img/svg/v.svg) no-repeat center;
  width: 16px;
  height: 12px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  pointer-events: none;
}

.sel.active::before {
  transform: rotateX(-180deg);
}

.sel__placeholder {
  display: block;
  padding: 15px 0;
  pointer-events: none;
  user-select: none;
  visibility: visible;
}

.sel.active .sel__placeholder {
  visibility: hidden;
}

.sel__placeholder::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  content: attr(data-placeholder);
  visibility: hidden;
}

.sel.active .sel__placeholder::before {
  visibility: visible;
}

.sel__box {
  position: absolute;
  top: calc(100% + 4px);
  left: -4px;
  display: none;
  list-style-type: none;
  text-align: left;
  font-size: 1em;
  background-color: #FFF;
  width: calc(100% + 8px);
  box-sizing: border-box;
}

.sel.active .sel__box {
  display: block;
  animation: fadeInUp .5s;
  overflow: overlay;
  height: 300px;
  box-shadow: 4px 2px 15px rgba(71, 79, 160, 0.5);
}

.sel__box__options {
  position: relative;
  display: list-item;
  color: var(--blue-color);
  text-transform: uppercase;
  padding: 5px 15px;
  user-select: none;
  width: max-content;
  padding-right: 20px;
}

.sel__box__options::after {
  position: absolute;
  top: calc(50% - 6px);
  right: 0;
  background: url(/img/svg/check.svg) no-repeat center;
  background-size: contain;
  width: 10px;
  height: 10px;
  content: attr(data-placeholder);
  visibility: hidden;
  display: none;
}

.sel__box__options.selected::after {
  display: inline;
  visibility: visible;
}

.sel__box__options:hover {
  background-color: #ebedef;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
} */

/* ------------------------- @media ---------------------------- */

@media screen and (max-width: 1344px) {
  .links__container {
    max-width: 1140px;
  }
}

@media screen and (max-width: 1199px) {
  .header__links-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header__search {
    margin: 0;
  }

  .car__button,
  .car__price {
    width: 100%;
  }

  .services__row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .services__block {
    height: auto;
  }

  .services__row-wrap {
    height: auto;
    padding: 10px;
  }

  .services__title {
    position: relative;
    padding-right: 60px;
  }

  .services__text {
    max-width: none;
    padding-right: 80px;
  }
}

@media screen and (max-width: 1179px) {
  .links__container {
    max-width: 975px;
  }
}

@media screen and (max-width: 1024px) {
  .used__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin: 0;
  }

  .used__left {
    width: 100%;
  }

  .used__show-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 25px;
    padding-left: 90px;
  }

  .used__group-buttons {
    display: none;
  }

  .used__left-form {
    margin: 0 auto;
  }

  .used__left-form div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0 10px;
  }

  .used__left-form .left-form-block .label {
    margin-bottom: 10px;
  }

  .used__left-form .form__select {
    margin-bottom: 0;
  }

  .used__right {
    max-width: 984px;
    margin: 0;
    margin-bottom: 20px;
  }

  .used__right .best-offers__links .best-offers__link {
    width: 148px;
  }
}

@media screen and (max-width: 1014px) {
  .links__container {
    max-width: 810px;
  }
}

@media screen and (max-width: 1023px) {
  .cars__row {
    grid-template-columns: repeat(3, 1fr);
  }

  .car__button,
  .car__price {
    width: auto;
  }
}

@media screen and (max-width: 1022px) {
  .used__right {
    max-width: 875px;
  }

  .used__right .best-offers__links .best-offers__link {
    width: 130px;
  }
}

@media screen and (max-width: 914px) {
  .used__right {
    max-width: 726px;
  }
}

@media screen and (max-width: 900px) {

  .car__button,
  .car__price {
    width: 100%;
  }
}

@media screen and (max-width: 870px) {
  .header__buttons-show {
    display: none;
  }

  .nav__burger .menu {
    display: none;
  }

  .menu__show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    gap: 1px 18px;
  }

  .footer__col:not(:last-of-type) ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

@media screen and (max-width: 849px) {
  .links__container {
    max-width: 645px;
  }
}

@media screen and (max-width: 820px) {
  .header__search input {
    min-width: 450px;
    max-width: 480px;
    width: 100%;
  }

  .nav__burger .menu {
    gap: 5px 10px;
    margin-left: 10px;
  }
}

@media screen and (max-width: 780px) {
  .nav__burger .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: absolute;
    top: -1000%;
    right: 0;
    z-index: 4;
    background: #e6d6ff;
    width: 70%;
    height: 100vh;
    padding: 50px;
    overflow: scroll;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

@media screen and (max-width: 768px) {
  .header.out {
    -webkit-transform: translateY(-33%);
    -ms-transform: translateY(-33%);
    transform: translateY(-33%);
  }

  .header__top {
    padding: 10px 0;
  }

  .header__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
  }

  .header__buttons-show {
    display: none;
  }

  .pick__btn,
  .sell__btn {
    padding: 12px 10px;
    text-align: center;
  }

  .sell__btn {
    color: var(--btn-color);
    margin-left: 0;
  }

  .header__bottom {
    min-height: auto;
    padding: 10px 0;
  }

  .last__items {
    padding: 0;
    gap: 12px;
  }

  .nav__burger .link__last {
    margin-left: 0;
  }

  .nav__burger .link__item {
    letter-spacing: -0.5px;
  }

  .form__container {
    background: none;
    border: none;
    padding: 0;
  }

  .form__container-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    max-width: 400px;
    margin: 20px auto;
  }

  .cars__menu-form {
    width: 100%;
  }

  .cars__menu .select-options {
    right: 8px;
  }

  .cars__menu-form .label {
    max-width: 100%;
  }

  .cars__menu .select-styled:after {
    background: url(/img/svg/v.svg) no-repeat center;
  }

  .cars__menu-btn {
    width: 100%;
  }

  .cars__menu-select {
    width: 100%;
    font-weight: 400;
  }

  .cars__menu-span {
    background: none;
  }

  .cars__menu-span::before {
    background: url(/img/svg/v.svg) no-repeat center;
  }

  .about__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

}

@media screen and (max-width: 767px) {
  .pick__btn {
    background: -webkit-gradient(linear, left top, left bottom, from(#c09ef7), to(#b289f5));
    background: -o-linear-gradient(top, #c09ef7 0%, #b289f5 100%);
    background: linear-gradient(180deg, #c09ef7 0%, #b289f5 100%);
    -webkit-box-shadow: 0px 22.3363px 17.869px rgb(71 79 160 / 4%),
      0px 12.5216px 10.0172px rgb(71 79 160 / 4%),
      0px 6.6501px 5.32008px rgb(71 79 160 / 3%),
      0px 2.76726px 2.21381px rgb(71 79 160 / 2%);
    box-shadow: 0px 22.3363px 17.869px rgb(71 79 160 / 4%),
      0px 12.5216px 10.0172px rgb(71 79 160 / 4%),
      0px 6.6501px 5.32008px rgb(71 79 160 / 3%),
      0px 2.76726px 2.21381px rgb(71 79 160 / 2%);
    margin-left: 0;
  }

  .header__logo img:first-child {
    display: none;
  }

  .header__logo img:last-child {
    display: block;
    width: 100px;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .nav__burger .menu.open {
    top: 177px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .mask,
  .mask__cars {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    width: 100%;
    height: 100%;
    background: #e6d6ff;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }

  .mask.open,
  .mask__cars.open {
    opacity: 1;
    z-index: 1;
    top: 177px;
    height: 100vh;
  }

  .mask.open body {
    position: fixed;
  }

  .main__title {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 5px;
  }

  .cars__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .car__button,
  .car__price {
    width: auto;
  }

  .services h2 {
    font-size: 30px;
    line-height: 30px;
  }
}

@media screen and (max-width: 765px) {
  .used__right {
    max-width: 577px;
  }
}

@media screen and (max-width: 740px) {
  .header__search input {
    min-width: 230px;
    padding: 0;
    padding-left: 10px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 684px) {
  .links__container {
    max-width: 480px;
  }
}

@media screen and (max-width: 640px) {
  .footer {
    padding: 20px 0;
  }

  .footer__top {
    /* display: none; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .footer__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
  }

  .footer__col h3 {
    position: relative;
    margin-bottom: 0;
    padding: 3px 0;
    padding-right: 5px;
    color: var(--blue-color);
    text-transform: uppercase;
  }

  .footer__col h3:after {
    content: ":";
    position: absolute;
    top: 2px;
    right: -2px;
  }

  .footer__col:not(:last-of-type) ul,
  .footer__col ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px 10px;
  }

  .footer__link {
    margin-bottom: 0;
    padding: 3px 0;
    text-decoration: underline;
  }

  .services {
    margin: 15px 0 35px;
  }

  .services__row::before {
    left: initial;
    right: 20px;
    top: -25px;
    width: 170px;
    height: 25px;
  }

  .services__row::after {
    right: initial;
    left: 20px;
    bottom: -25px;
    width: 170px;
    height: 25px;
  }
}

@media screen and (max-width: 616px) {
  .used__right {
    max-width: 428px;
  }

  .used__show-buttons {
    padding-left: 0;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
}

@media screen and (max-width: 610px) {

  .car__button,
  .car__price {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .used__form-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
  }
}

@media screen and (max-width: 580px) {
  .services h2 {
    margin-left: 0;
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 28px;
  }

  .services__btn {
    width: 100%;
  }
}

@media screen and (max-width: 550px) {

  .pick__btn,
  .sell__btn {
    padding: 12px 3px;
  }

  .used__show-buttons a {
    width: 130px;
    margin: 0;
  }
}

@media screen and (max-width: 535px) {

  .menu__show,
  .nav__burger-show {
    gap: 1px 13px;
  }
}

@media screen and (max-width: 525px) {
  .car__bottom {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .car__price {
    min-width: 140px;
    width: auto;
  }

  .cars__row {
    grid-template-columns: repeat(1, 1fr);
  }

  .used__options span {
    background: var(--blue-color);
    height: auto;
  }

  .used__price {
    height: auto;
  }
}

@media screen and (max-width: 520px) {
  .header {
    border: none;
  }

  .header.out {
    -webkit-transform: translateY(-66%);
    -ms-transform: translateY(-66%);
    transform: translateY(-66%);
  }

  .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .header.out .header__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .header__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
  }

  .header__title {
    width: 100%;
    text-align: start;
    color: #b68ff5;
    font-weight: 700;
  }

  .header__title b {
    color: var(--black-color);
  }

  .header__title span {
    color: #fe975a;
    font-size: 19px;
    font-weight: 700;
  }

  .header__text-show {
    display: block;
  }

  .header__links-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%;
  }

  .header__search {
    display: none;
  }

  .header__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0;
  }

  .header__buttons-show {
    display: none;
  }

  .pick__btn,
  .sell__btn {
    padding: 12px 10px;
  }

  .burger {
    display: block;
    left: 0;
    margin-right: 20px;
  }

  .nav__burger .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .nav__burger .link__last {
    width: 34px;
    height: 34px;
  }

  .nav__burger .link__last img,
  .nav__burger .link__last svg {
    width: 20px;
    height: 20px;
  }

  .nav__burger .link__item {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
    color: var(--main-color);
  }

  .menu__show,
  .nav__burger-show {
    display: none;
  }

  .cars__menu-span {
    top: 20px;
    right: 10px;
    background: url(/img/svg/v.svg) no-repeat center;
    width: 16px;
    height: 12px;
  }

  .cars__menu-span.open {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
  }

  .cars__menu-span::before {
    content: none;
  }

  .used__left-form div {
    gap: 0 5px;
  }

  .left-form-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .used__left-form .left-form-block .label {
    max-width: 100%;
  }

  .modal__vin-block {
    margin-bottom: 10px;
  }

  .modal__vin-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .modal__title {
    font-size: 22px;
    line-height: 24px;
  }
}

@media screen and (max-width: 519px) {
  .links__container {
    max-width: 315px;
  }

  .best-offers__link:nth-child(n + 13) {
    display: none;
  }

  .best-offers__btn {
    display: block;
  }
}

@media screen and (max-width: 468px) {
  .used__right {
    max-width: 279px;
  }
}

@media screen and (max-width: 460px) {
  .cars {
    background: none;
  }

  .services h2 {
    margin-left: 0;
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 28px;
  }

  .services__title {
    font-size: 18px;
    line-height: 20px;
  }

  .services__text {
    font-size: 14px;
  }
}

@media screen and (max-width: 420px) {
  .form__container-bottom {
    margin: 0 auto;
  }
}

@media screen and (max-width: 390px) {
  .form__check-label p {
    font-size: 12px;
  }
}

@media screen and (max-width: 375px) {
  .container {
    padding: 0 10px;
  }

  .car__container {
    padding: 0 10px;
  }

  .nav__burger .menu.open {
    width: 100%;
    padding: 20px 50px;
  }

  .best-offers__links {
    gap: 10px 5px;
  }

  .best-offers__link {
    width: 49%;
  }

  .best-offers__link img {
    width: 30px;
    height: 30px;
  }

  .used__right {
    max-width: 279px;
  }

  .services__row-wrap::before,
  .used__benefit-wrap:before {
    width: 90px;
    height: 80px;
  }

  .used__benefit-wrap::after,
  .services__row-wrap::after {
    top: 15px;
    right: 16px;
    width: 34px;
    height: 34px;
  }

  .modal__content {
    padding: 8px;
    padding-top: 15px;
  }

  .modal .modal__close {
    top: 10px;
    right: 10px;
  }

  .modal .form__input {
    height: 44px;
    margin-bottom: 10px;
  }

  .modal .modal__btn {
    margin-top: 0;
  }

  .modal .radio__img {
    background-size: contain;
    min-width: 16px;
    height: 16px;
  }

  .modal .radio__img::before {
    top: 0;
    left: 5px;
    width: 11px;
    height: 14px;
    background-size: contain;
  }

  .modal .form__check {
    margin: 5px 0;
  }

  .modal .form__check-label p {
    margin-left: 0;
  }

  .modal__title {
    font-size: 20px;
  }

  .footer__container {
    padding: 0 10px;
  }

  .errorPage {
    min-height: 320px;
  }
}

@media screen and (max-width: 360px) {
  .used__show-buttons {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 20px;
  }

  .about__row-wrap p,
  .about__row-wrap ul li {
    font-size: 14px;
  }

  .nav__burger .menu.open {
    padding: 10px 50px;
    gap: 0;
  }

  .nav__burger .link__item {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 356px) {
  .menu__overlay {
    top: 195px;
  }

  .mask.open,
  .mask__cars.open {
    top: 195px;
  }

  .nav__burger .menu.open {
    top: 185px;
  }
}

@media screen and (max-width: 320px) {
  .header__buttons {
    margin-top: 0;
  }
}