.car {
  min-height: 650px;
}

.car .car__section {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(47%, var(--bg-main-color)),
      color-stop(40%, var(--white-color)));
  background: -o-linear-gradient(top, var(--bg-main-color) 47%, var(--white-color) 40%);
  background: linear-gradient(to bottom, var(--bg-main-color) 47%, var(--white-color) 40%);
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .car .car__section {
    background: -webkit-gradient(linear,
        left top,
        left bottom,
        color-stop(68%, var(--white-color)),
        color-stop(40%, var(--bg-main-color)));
    background: -o-linear-gradient(top, var(--white-color) 68%, var(--bg-main-color) 40%);
    background: linear-gradient(to bottom, var(--white-color) 68%, var(--bg-main-color) 40%);
  }
}

.car .car__section .car__header {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1140px) {
  .car .car__section .car__header {
    -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;
  }
}

@media (max-width: 375px) {
  .car .car__section .car__header {
    padding: 10px;
  }
}

.car .car__section .car__header .show-title {
  display: none;
}

@media (max-width: 767px) {
  .car .car__section .car__header .show-title {
    display: block;
    font-weight: 800;
    font-size: 28px;
    line-height: 28px;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .car .car__section .car__header .show-title {
    font-size: 24px;
    line-height: 24px;
  }
}

.car .car__section .car__header .show-price {
  display: none;
}

@media (max-width: 767px) {
  .car .car__section .car__header .show-price {
    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;
    -ms-flex-item-align: end;
    align-self: flex-end;
    margin-top: 20px;
  }
}

.car .car__section .car__header .show-price .show-price__underline {
  font-size: 16px;
  line-height: 16px;
  text-decoration: line-through;
}

@media (max-width: 480px) {
  .car .car__section .car__header .show-price .show-price__underline {
    font-size: 14px;
  }
}

.car .car__section .car__header .show-price h2 {
  font-weight: 800;
  font-size: 28px;
  line-height: 28px;
}

@media (max-width: 480px) {
  .car .car__section .car__header .show-price h2 {
    font-size: 24px;
  }
}

.car .car__section .car__header .show-price .show-price__text {
  font-size: 16px;
  line-height: 16px;
  margin-top: 13px;
}

@media (max-width: 480px) {
  .car .car__section .car__header .show-price .show-price__text {
    font-size: 14px;
    line-height: 8px;
  }
}

.car .car__section .car__header .show-price .show-price__text span {
  color: var(--blue-color);
}

.car .car__section .car__header .car__left {
  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;
}

@media (max-width: 767px) {
  .car .car__section .car__header .car__left {
    margin-top: 30px;
    width: 100%;
  }
}

.car .car__section .car__header .car__left .car__guarantee {
  min-width: 134px;
  min-height: 43px;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
  text-transform: uppercase;
  color: var(--white-color);
  background: var(--blue-color);
  padding: 8px 10px;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-bottom: -44px;
}

.car .car__section .car__header .car__left .car__image {
  position: relative;
}

@media (max-width: 580px) {
  .car .car__section .car__header .car__left .car__image {
    top: -30px;
    z-index: 1;
  }
}

@media (max-width: 443px) {
  .car .car__section .car__header .car__left .car__image {
    margin-bottom: -30px;
    z-index: 1;
    top: 0;
  }
}

@media (max-width: 375px) {
  .car .car__section .car__header .car__left .car__image {
    margin-bottom: -70px;
  }
}

@media (max-width: 340px) {
  .car .car__section .car__header .car__left .car__image {
    margin-bottom: -100px;
  }
}

.car .car__section .car__header .car__left .car__image .car__round {
  width: 327px;
  height: 327px;
  background: var(--blue-color);
  border-radius: 50%;
}

@media (max-width: 580px) {
  .car .car__section .car__header .car__left .car__image .car__round {
    position: relative;
    top: -10px;
    left: -100px;
  }
}

@media (max-width: 443px) {
  .car .car__section .car__header .car__left .car__image .car__round {
    top: -50px;
    left: -250px;
  }
}

@media (max-width: 320px) {
  .car .car__section .car__header .car__left .car__image .car__round {
    left: -250px;
  }
}

.car .car__section .car__header .car__left .car__image .car__img {
  position: absolute;
  top: 60px;
  left: 50px;
  max-width: 668px;
  height: 266px;
}

@media (max-width: 767px) {
  .car .car__section .car__header .car__left .car__image .car__img {
    max-width: 400px;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 580px) {
  .car .car__section .car__header .car__left .car__image .car__img {
    top: 90px;
    left: -10px;
  }
}

@media (max-width: 443px) {
  .car .car__section .car__header .car__left .car__image .car__img {
    top: 60px;
  }
}

.car .car__section .car__header .car__left .car__color {
  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: 634px;
}

@media (max-width: 767px) {
  .car .car__section .car__header .car__left .car__color {
    max-width: 634px;
    width: 100%;
    margin-top: 25px;
  }
}

@media (max-width: 580px) {
  .car .car__section .car__header .car__left .car__color {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: 0;
    z-index: 2;
  }
}

@media (max-width: 580px) {
  .car .car__section .car__header .car__left .car__color .color__left .inside__icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
}

.car .car__section .car__header .car__left .car__color .color__left .inside__icons .inside__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 580px) {
  .car .car__section .car__header .car__left .car__color .color__left .inside__icons .inside__icon {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.car .car__section .car__header .car__left .car__color .color__left .inside__icons .inside__icon img {
  width: 42px;
  height: 37px;
  margin-right: 5px;
}

@media (max-width: 580px) {
  .car .car__section .car__header .car__left .car__color .color__left .inside__icons .inside__icon img {
    margin-right: 0;
    margin: 0 10px;
  }
}

.car .car__section .car__header .car__left .car__color .color__left .inside__icons .inside__icon div {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #595858;
  width: max-content;
}

.car .car__section .car__header .car__left .car__color .color__left .inside__icons .inside__icon div span {
  font-size: 14px;
  line-height: 8px;
}

@media (max-width: 580px) {
  .car .car__section .car__header .car__left .car__color .color__left .inside__icons .inside__icon div span {
    display: none;
  }
}

@media (max-width: 580px) {
  .car .car__section .car__header .car__left .car__color .color__left .inside__icons .inside__icon div br {
    display: none;
  }
}

.car .car__section .car__header .car__left .car__color .color__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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.car .car__section .car__header .car__left .car__color .color__right .color__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #595858;
  margin-bottom: 20px;
}

@media (max-width: 580px) {
  .car .car__section .car__header .car__left .car__color .color__right .color__title {
    margin: 10px 0;
  }
}

.car .car__section .car__header .car__left .car__color .color__right .color__btns {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 580px) {
  .car .car__section .car__header .car__left .car__color .color__right .color__btns {
    margin-bottom: 15px;
  }
}

.car .car__section .car__header .car__left .car__color .color__right .color__btns .color__btn {
  width: 30px;
  height: 30px;
  margin: 5px;
  border-radius: 50%;
  border: 1px solid var(--disabled-color);
  cursor: pointer;
  color: transparent;
}

.car .car__section .car__header .car__left .car__color .color__right .color__btns .color__btn:focus {
  background: var(--main-color);
  -webkit-box-shadow: 0px 0px 9px var(--blue-color);
  box-shadow: 0px 0px 9px var(--blue-color);
}

.car .car__section .car__header .car__left .car__color .color__right .color__btns .color__btn:disabled {
  cursor: default;
  position: relative;
}

.car .car__section .car__header .car__left .car__color .color__right .color__btns .color__btn:disabled::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 7px;
  width: 4px;
  height: 20px;
  background: #000;
  -webkit-transform: rotateZ(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotateZ(-45deg);
}

.car .car__section .car__header .car__left .car__color .color__right .inside__bottom__icons {
  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;
}

@media (max-width: 640px) {
  .car .car__section .car__header .car__left .car__color .color__right .inside__bottom__icons {
    display: none;
  }
}

.car .car__section .car__header .car__left .car__color .color__right .inside__bottom__icons .inside__bottom__icon {
  text-align: center;
}

.car .car__section .car__header .car__left .car__color .color__right .inside__bottom__icons p {
  font-weight: 700;
  font-size: 14px;
  line-height: 11px;
  color: #535353;
  margin: 0 4px;
}

.car .car__section .car__header .car__left .car__color .color__right .inside__bottom__icons p span {
  font-weight: 700;

}

.car .car__section .car__form {
  width: 446px;
  min-height: 372px;
  background: #f2f5f8;
  -webkit-box-shadow: 0px 1px 4px rgba(139, 166, 202, 0.17);
  box-shadow: 0px 1px 4px rgba(139, 166, 202, 0.17);
  border-radius: 10px;
  padding: 35px;
}

@media (max-width: 1140px) {
  .car .car__section .car__form {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .car .car__section .car__form {
    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;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .car .car__section .car__form {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 420px) {
  .car .car__section .car__form {
    padding: 10px;
  }
}

.car .car__section .car__form h3 {
  font-weight: 800;
  font-size: 28px;
  line-height: 28px;
}

@media (max-width: 767px) {
  .car .car__section .car__form h3 {
    display: none;
  }
}

.car .car__section .car__form .car__form_text {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #515151;
  margin-top: 15px;
  margin-bottom: 23px;
}

@media (max-width: 767px) {
  .car .car__section .car__form .car__form_text {
    text-align: center;
  }
}

@media (max-width: 375px) {
  .car .car__section .car__form .car__form_text {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.car .car__section .car__form .car__form_text span {
  font-weight: 700;
  color: var(--blue-color);
}

.car .car__section .car__form label {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #666666;
  width: 100%;
}

.car .car__section .car__form label input {
  width: 100%;
  height: 34px;
  background: var(--white-color);
  -webkit-box-shadow: 0px 0px 22px rgba(174, 193, 207, 0.3);
  box-shadow: 0px 0px 22px rgba(174, 193, 207, 0.3);
  border-radius: 5px;
  margin-bottom: 14px;
  padding: 0 20px;
}

@media (max-width: 420px) {
  .car .car__section .car__form label input {
    width: 100%;
    margin-bottom: 10px;
  }
}

.car .car__section .car__form p {
  color: var(--main-color);
  margin-top: 10px;
}

.car .car__section .car__form .car__price {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .car .car__section .car__form .car__price {
    display: none;
  }
}

.car .car__section .car__form .car__price .car__price_left h2 {
  font-weight: 800;
  font-size: 28px;
  line-height: 28px;
}

.car .car__section .car__form .car__price .car__price_left h2 span {
  font-weight: 800;
  color: var(--main-color);
}

.car .car__section .car__form .car__price .car__price_left .car__price_text {
  font-size: 16px;
  line-height: 16px;
  margin-top: 13px;
}

.car .car__section .car__form .car__price .car__price_left .car__price_text span {
  color: var(--blue-color);
}

.car .car__section .car__form .car__price .car__price_underline {
  font-size: 16px;
  line-height: 16px;
  text-decoration: line-through;
}

.car .car__section .car__form .car__form_button button {
  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;
  color: #fcfdfd;
  background: var(--blue-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 5px;
  margin-top: 25px;
  margin-bottom: 5px;
  padding: 10px;
  width: 100%;
}

@media (max-width: 1140px) {
  .car .car__section .car__form .car__form_button {
    width: 100%;
  }

  .car .car__section .car__form .car__form_button button {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
  }
}

@media (max-width: 420px) {
  .car .car__section .car__form .car__form_button button {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 35px;
  }
}

.car .car__section .car__form .car__form_button .blue__form_checkbox p {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

.car .car__section .car__form .car__form_button .blue__form_checkbox p a {
  text-decoration: underline;
}

.car .car__section .car__form .car__form_button .blue__form_checkbox p a:hover {
  color: var(--blue-color);
}

.car .car__section .car__form .car__bottom_btn {
  width: 100%;
  height: 35px;
  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: 20px;
}

.car .car__section .car__form .car__bottom_btn .car__bottom_left {
  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;
  height: 35px;
  background: var(--blue-color);
  max-width: 380px;
  width: 100%;
  padding-left: 5px;
}

.car .car__section .car__form .car__bottom_btn .car__bottom_left p {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: var(--white-color);
  margin-top: 0;
  text-align: center;
  padding: 0 5px;
}

.car .car__section .car__form .car__bottom_btn .car__bottom_right {
  max-width: 180px;
  height: 35px;
  font-weight: 700;
  font-size: 14px;
  line-height: 12px;
  color: #595959;
  background: var(--white-color);
  text-align: center;
  padding: 5px 0;
}

/* ---------------------- equipment__buttons ------------------ */

.car .equipment__buttons {
  max-width: 1200px;
  margin: 0 auto;
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .car .equipment__buttons {
    max-width: 800px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.car .equipment__buttons a {
  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;
  width: 280px;
  height: 45px;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: #303030;
  opacity: 0.8;
  background: #f6f8fa;
  border: 1px solid #eaeaea;
  -webkit-box-shadow: 0px 0px 5.32008px rgba(143, 153, 191, 0.08), 0px 0px 2.21381px rgba(143, 153, 191, 0.0196802);
  box-shadow: 0px 0px 5.32008px rgba(143, 153, 191, 0.08), 0px 0px 2.21381px rgba(143, 153, 191, 0.0196802);
  border-radius: 5px;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .car .equipment__buttons a {
    margin: 10px;
  }
}

.car .equipment__buttons a:focus,
.car .equipment__buttons a:active,
.car .equipment__buttons a:hover {
  color: var(--blue-color);
  background: var(--white-color);
  border: 1px solid #e7e7e7;
}

/* ---------------------- gallery section ------------------ */

.gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.photo__img {
  position: relative;
  height: 170px;
  cursor: pointer;
  overflow: hidden;
}

.photo__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}

.photo__img:hover img {
  transform: scale(1.1);
}

.slider {
  opacity: 0;
  position: fixed;
  top: 5%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.slider__open {
  opacity: 1;
  pointer-events: all;
}

.slider__open img {
  width: 100%;
  height: auto;
}

.slider__container {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white-color);
  width: 80vw;
  max-height: 80vh;
  padding: 30px;
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white-color);
}

.slider__btn_left {
  left: 10px;
}

.slider__btn_left:hover svg {
  transform: translateX(-10px);
  fill: var(--blue-color);
}

.slider__btn_right {
  right: 10px;
}

.slider__btn_right:hover svg {
  transform: translateX(10px);
  fill: var(--blue-color);
}

.slider__close {
  position: absolute;
  top: 10%;
  left: 20px;
  background: none;
}

.slider__close:hover {
  transform: scale(1.1);
  fill: var(--blue-color);
}

.slider__btn_left svg,
.slider__btn_right svg,
.slider__close svg {
  fill: var(--blue-color);
  width: 30px;
  height: 30px;
  transition: all 0.4s ease;
}

.slider__close svg {
  width: 20px;
  height: 20px;
  fill: var(--white-color);
}

@media (max-width: 767px) {

  .slider__btn_left svg,
  .slider__btn_right svg,
  .slider__close svg {
    width: 20px;
    height: 20px;
  }

  .slider__container {
    padding: 10px;
  }

  .slider__btn_left {
    left: -10px;
  }

  .slider__btn_right {
    right: -10px;
  }
}

@media (max-width: 575px) {
  .slider__btn {
    width: 35px;
    height: 35px;
  }
}

/* ---------------------- bundle section ------------------ */

.bundle__description {
  display: none;
  padding: 25px 50px;
  background: #fbfbff;
  border-radius: 0px 0px 5px 5px;
  margin-bottom: 24px;
}

.bundle__description.open {
  display: block;
  -webkit-animation: fadein 1s;
  -moz-animation: fadein 1s;
  -ms-animation: fadein 1s;
  -o-animation: fadein 1s;
  animation: fadein 1s;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-ms-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-o-keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .bundle__description {
    padding: 25px;
  }
}

@media (max-width: 375px) {
  .bundle__description {
    padding: 10px;
  }
}

.bundle__description .bundle__list-item h3 {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
}

.bundle__description .bundle__list-item .bundle__inner-list {
  -moz-columns: 3;
  -webkit-columns: 3;
  columns: 3;
  -moz-column-gap: 20px;
  -webkit-column-gap: 20px;
  column-gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .bundle__description .bundle__list-item .bundle__inner-list {
    -moz-columns: 2;
    -webkit-columns: 2;
    columns: 2;
  }
}

@media (max-width: 570px) {
  .bundle__description .bundle__list-item .bundle__inner-list {
    -moz-columns: 1;
    -webkit-columns: 1;
    columns: 1;
  }
}

.bundle__description .bundle__list-item .bundle__inner-list li {
  font-size: 14px;
  line-height: 17px;
  color: var(--main-color);
  position: relative;
}

.bundle__description .bundle__list-item .bundle__inner-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: -7px;
  width: 2px;
  height: 2px;
  background: var(--main-color);
}

.bundle__description .bundle__title {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 13px;
  color: var(--blue-color);
}

@media (max-width: 1100px) {
  .bundle__description .bundle__title {
    text-align: center;
  }
}

.bundle__description .bundle__form .bundle__form-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;
}

@media (max-width: 1100px) {
  .bundle__description .bundle__form .bundle__form-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.bundle__description .bundle__form .bundle__form-top label {
  display: -ms-grid;
  display: grid;
  font-weight: 700;
  color: #595959;
}

.bundle__description .bundle__form .bundle__form-top input {
  width: 294px;
  height: 35px;
  background: var(--white-color);
  -webkit-box-shadow: 0px 0px 22px rgba(174, 193, 207, 0.3);
  box-shadow: 0px 0px 22px rgba(174, 193, 207, 0.3);
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 0 20px;
}

@media (max-width: 460px) {
  .bundle__description .bundle__form .bundle__form-top input {
    width: 260px;
  }
}

.bundle__description .bundle__form .bundle__form-top .bundle__bottom-btn {
  width: 260px;
  height: 35px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #fcfdfd;
  background: var(--blue-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 5px;
  margin-top: 10px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-bottom: 10px;
}

@media (max-width: 1100px) {
  .bundle__description .bundle__form .bundle__form-top .bundle__bottom-btn {
    max-width: 294px;
    width: 100%;
    margin-top: 0;
  }
}

.bundle__description .bundle__form .bundle__form-top .bundle__bottom-btn:hover {
  background: var(--white-color);
  color: var(--blue-color);
  border: 1px solid var(--blue-color);
}

.bundle__description .bundle__form .bundle__form-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;
}

@media (max-width: 1100px) {
  .bundle__description .bundle__form .bundle__form-bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.bundle__description .bundle__form .bundle__form-bottom .checkbox__block p {
  color: var(--main-color);
}

.car .bundle .bundle__container {
  max-width: 1240px;
  margin: 0 auto;
  border-radius: 10px 5px 5px 10px;
  padding: 0 20px;
  width: 100%;
}

@media (max-width: 375px) {
  .car .bundle .bundle__container {
    padding: 0 10px;
  }
}

.car .bundle .bundle__container .option__top {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1180px) {
  .car .bundle .bundle__container .option__top {
    -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;
    height: auto;
  }
}

.car .bundle .bundle__container .option__top .option__left {
  width: 730px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 10px 0 0 0;
  padding: 0 10px;
}

@media (max-width: 1180px) {
  .car .bundle .bundle__container .option__top .option__left {
    width: 100%;
    border-radius: 5px 5px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .car .bundle .bundle__container .option__top .option__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.car .bundle .bundle__container .option__top .option__left label {
  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;
  position: relative;
}

@media (max-width: 1180px) {
  .car .bundle .bundle__container .option__top .option__left label {
    padding: 10px;
    max-width: 300px;
    margin: 0 auto;
    border: 1px solid var(--bg-main-color);
    border-radius: 10px;
    margin-bottom: 5px;
  }
}

.car .bundle .bundle__container .option__top .option__left label.active {
  opacity: 0.4;
}

.car .bundle .bundle__container .option__top .option__left label svg {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 35%;
  left: 6px;
}

.car .bundle .bundle__container .option__top .option__left label input {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--blue-color);
  display: none;
}

.sale__checkbox {
  position: relative;
  min-width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--blue-color);
  cursor: pointer;
}

@media (max-width: 767px) {
  .sale__checkbox {
    padding: 10px 0;
  }
}

.sale__checkbox::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 12px;
  height: 10px;
  border: 3px solid var(--white-color);
  border-top: none;
  border-right: none;
  background: transparent;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sale__checkbox.check::before {
  border: none;
}

.car .bundle .bundle__container .option__top .option__left label p {
  max-width: 90px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #535353;
  margin: 0 8px;
  text-align: center;
}

.car .bundle .bundle__container .option__top .option__left label span {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: var(--blue-color);
}

.car .bundle .bundle__container .option__top .option__right {
  width: 470px;
  color: var(--white-color);
  background: var(--blue-color);
  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: 0 30px;
  border-radius: 0 10px 0 0;
}

@media (max-width: 1180px) {
  .car .bundle .bundle__container .option__top .option__right {
    width: 100%;
    border-radius: 0 0 5px 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 10px;
  }
}

@media (max-width: 767px) {
  .car .bundle .bundle__container .option__top .option__right {
    margin-bottom: 10px;
  }
}

@media (max-width: 460px) {
  .car .bundle .bundle__container .option__top .option__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.sale-result__val,
.sale__result-val {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: var(--white-color);
}

.car .bundle .bundle__container .option__top .option__right .option-profit {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: var(--white-color);
  width: 174px;
  margin-left: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 460px) {
  .car .bundle .bundle__container .option__top .option__right .option-profit {
    text-align: center;
    margin: 0;
    width: 100%;
  }
}

.car .bundle .bundle__container .option__top .option__right .option-profit span {
  font-weight: 700;
  font-size: 14px;
  line-height: 12px;
  color: var(--white-color);
}

.car .bundle .bundle__container .option__top .option__right .option-price {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: var(--white-color);
}

.progress-bar {
  width: 100%;
  height: 14px;
  margin: 1px 0px;
  background: -webkit-linear-gradient(90deg, rgb(8, 101, 217), rgb(112, 156, 217), rgb(174, 195, 210));
  background: -moz-linear-gradient(90deg, rgb(8, 101, 217), rgb(112, 156, 217), rgb(174, 195, 210));
  background: linear-gradient(90deg, rgb(8 101 217), rgb(112 156 217), rgb(174 195 210));
}

.car .bundle .bundle__container .bundle__main {
  background: #f2f5f8;
  -webkit-box-shadow: 0px 4px 4px rgba(218, 223, 230, 0.55);
  box-shadow: 0px 4px 4px rgba(218, 223, 230, 0.55);
  border-radius: 10px;
  padding: 25px 105px;
}

@media (max-width: 1140px) {
  .car .bundle .bundle__container .bundle__main {
    padding: 25px 50px;
  }
}

@media (max-width: 767px) {
  .car .bundle .bundle__container .bundle__main {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .car .bundle .bundle__container .bundle__main .bundle__details {
    padding: 0 10px;
  }
}

.car .bundle .bundle__container .bundle__main .bundle__details .bundle__name {
  width: 220px;
  font-weight: 700;
  font-size: 14px;
  line-height: 28px;
  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;
}

@media (max-width: 767px) {
  .car .bundle .bundle__container .bundle__main .bundle__details .bundle__name {
    color: var(--white-color);
    justify-content: initial;
  }
}

@media (max-width: 460px) {
  .car .bundle .bundle__container .bundle__main .bundle__details .bundle__name {
    font-size: 14px;
    line-height: 12px;
    width: auto;
  }
}

.car .bundle .bundle__container .bundle__main .bundle__details .bundle__show-btn {
  min-width: 28px;
  height: 28px;
  background: var(--blue-color);
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
}

.car .bundle .bundle__container .bundle__main .bundle__details .bundle__show-btn.transform {
  transform: rotate(180deg);
}

/* @media (max-width: 460px) {
	.car
		.bundle
		.bundle__container
		.bundle__main
		.bundle__details
		.bundle__show-btn {
		width: 23px;
		height: 23px;
	}
} */
.car .bundle .bundle__container .bundle__main .bundle__details .bundle__show-btn::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 8px;
  width: 12px;
  height: 10px;
  border: 3px solid var(--white-color);
  border-top: none;
  border-right: none;
  background: transparent;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.car .bundle .bundle__container .bundle__main .bundle__details .bundle__show-btn.transform::before {
  height: 12px;
  top: 5px;
}

/* @media (max-width: 460px) {
	.car
		.bundle
		.bundle__container
		.bundle__main
		.bundle__details
		.bundle__show-btn::before {
		top: 6px;
		left: 7px;
		width: 10px;
		height: 8px;
	}
} */
.car .bundle .bundle__container .bundle__main .bundle__details .bundle__wrap {
  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;
  min-height: 48px;
  width: 100%;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--main-color);
}

.car .bundle .bundle__container .bundle__main .bundle__details .bundle__open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 220px;
}

@media (max-width: 460px) {
  .car .bundle .bundle__container .bundle__main .bundle__details .bundle__open {
    width: 150px;
  }
}

.car .bundle .bundle__container .bundle__main .bundle__details .bundle__open h3 {
  font-weight: 700;
  font-size: 14px;
  line-height: 28px;
  margin-left: 28px;
}

@media (max-width: 460px) {
  .car .bundle .bundle__container .bundle__main .bundle__details .bundle__open h3 {
    font-size: 14px;
    line-height: 14px;
    margin-left: 10px;
  }
}

.car .bundle .bundle__container .bundle__main .bundle__details .bundle__stock {
  width: 82px;
  font-weight: 700;
  font-size: 14px;
  line-height: 28px;
  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;
}

@media (max-width: 520px) {
  .car .bundle .bundle__container .bundle__main .bundle__details .bundle__stock {
    display: none;
  }
}

.car .bundle .bundle__container .bundle__main .bundle__details .bundle__retail {
  width: 125px;
  font-weight: 700;
  font-size: 14px;
  line-height: 28px;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #a0a0a0;
  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;
}

@media (max-width: 767px) {
  .car .bundle .bundle__container .bundle__main .bundle__details .bundle__retail {
    display: none;
  }
}

@media (max-width: 767px) {
  .car .bundle .bundle__container .bundle__main .bundle__details .bundle__show {
    padding-bottom: 10px;
  }
}

.car .bundle .bundle__container .bundle__main .bundle__details .bundle__show .bundle__discount {
  width: 130px;
  font-weight: 700;
  font-size: 14px;
  line-height: 28px;
  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;
}

@media (max-width: 767px) {
  .car .bundle .bundle__container .bundle__main .bundle__details .bundle__show .bundle__discount {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  .car .bundle .bundle__container .bundle__main .bundle__details .bundle__show .bundle__discount {
    font-size: 14px;
    line-height: 12px;
    width: auto;
  }
}

.car .bundle .bundle__container .bundle__main .bundle__details .bundle__show .bundle__discount-link {
  display: none;
}

@media (max-width: 767px) {
  .car .bundle .bundle__container .bundle__main .bundle__details .bundle__show .bundle__discount-link {
    display: block;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    color: var(--blue-color);
  }
}

.car .bundle .bundle__container .bundle__main .bundle__details .bundle__top {
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  color: var(--main-color);
}

@media (max-width: 767px) {
  .car .bundle .bundle__container .bundle__main .bundle__details .bundle__top {
    color: var(--white-color);
  }
}

@media (max-width: 520px) {
  .car .bundle .bundle__container .bundle__main .bundle__details .bundle__top:first-of-type {
    display: none;
  }
}

@media (max-width: 375px) {
  .car .bundle .bundle__container .bundle__main .bundle__details .bundle__top {
    display: none;
  }
}

.car .bundle .bundle__container .bundle__main .bundle__details .bundle__btn {
  width: 138px;
  height: 34px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: var(--white-color);
  background: var(--blue-color);
  border-radius: 5px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.car .bundle .bundle__container .bundle__main .bundle__details .bundle__btn:hover {
  background: var(--white-color);
  color: var(--blue-color);
  border: 1px solid var(--blue-color);
}

@media (max-width: 767px) {
  .car .bundle .bundle__container .bundle__main .bundle__details .bundle__btn {
    display: none;
  }
}

.car .bundle .bundle__container .bundle__main .bundle__details .bundle__empty {
  width: 138px;
}

@media (max-width: 767px) {
  .car .bundle .bundle__container .bundle__main .bundle__details .bundle__empty {
    display: none;
  }
}

.car .bundle .bundle__container .bundle__main .bundle__head {
  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;
  min-height: 48px;
  width: 100%;
  border-bottom: 1px solid var(--main-color);
  margin-bottom: 10px;
  padding: 0 10px;
}

@media (max-width: 767px) {
  .car .bundle .bundle__container .bundle__main .bundle__head {
    color: var(--white-color);
    background: var(--blue-color);
    border-radius: 5px 5px 0px 0px;
  }
}

.car .bundle .bundle__container .bundle__main .bundle__margin {
  margin-top: 50px;
}

.car .bundle .bundle__container .bundle__bottom-text {
  font-size: 14px;
  line-height: 18px;
  color: var(--main-color);
  margin: 20px 40px;
}

@media (max-width: 767px) {
  .car .bundle .bundle__container .bundle__bottom-text {
    margin: 0;
    padding: 20px;
    padding-top: 0;
  }
}

/* ------------------------------ */

.car .photos__params,
.car .stock__autos,
.car .finance__section,
.car .tech__section {
  display: none;
}

/* ---------------- photos__params section---------------- */

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

@media (max-width: 767px) {
  .photos__params {
    overflow-x: scroll;
    max-width: 540px;
  }
}

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

.tech__section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  margin-bottom: 20px;
}

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

.tech__top ul,
.tech__row ul {
  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;
}

.tech__top ul>li,
.tech__row ul>li {
  padding: 10px;
  min-width: 160px;
  text-align: center;
}

.tech__top ul>li:first-child,
.tech__row ul>li:first-child {
  width: 320px;
  text-align: left;
}

.tech__top ul>li span {
  color: var(--main-color);
  font-weight: 600;
  font-size: 14px;
}

.tech__row ul>li span {
  color: var(--main-color);
  font-size: 14px;
}

.photo__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 1200px) {
  .photo__row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.photo__img {
  max-width: 275px;
  width: 100%;
}

.photo__img img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

/* ---------------- car__choose section---------------- */

.car .car__choose {
  min-height: 480px;
  margin: 0;
  margin-bottom: 20px;
  padding: 0 20px;
}

.car .car__choose .car__choose_container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1100px) {
  .car .car__choose .car__choose_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 700px) {
  .car .car__choose .car__choose_container {
    max-width: 700px;
    width: 100%;
    background: none;
    box-shadow: none;
  }
}

.car .car__choose .car__choose_container .car__choose_left {
  background: var(--blue-color);
  border-radius: 10px 20px 20px 10px/10px 240px 240px 10px;
  width: 500px;
  height: auto;
  padding: 30px 100px 40px 70px;
}

@media (max-width: 1100px) {
  .car .car__choose .car__choose_container .car__choose_left {
    border-radius: 10px 10px 240px 240px/10px 10px 20px 20px;
    padding: 40px 60px;
  }
}

@media (max-width: 560px) {
  .car .car__choose .car__choose_container .car__choose_left {
    max-width: 500px;
    width: 100%;
    padding: 30px 60px;
  }
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_left {
    padding: 0;
    background: var(--white-color);
    box-shadow: var(--box-shadow);
    margin-bottom: 10px;
  }
}

.car .car__choose .car__choose_container .car__choose_left .equipment__show-title {
  display: none;
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_left .equipment__show-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 108px;
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: var(--white-color);
    background: var(--blue-color);
    border-radius: 10px 10px 240px 240px/10px 10px 20px 20px;
    padding: 10px;
  }
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_left .equipment__form {
    padding: 8px;
  }
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: 12px;
  color: var(--white-color);
  margin-bottom: 25px;
}

@media (max-width: 480px) {
  .car .car__choose .car__choose_container .car__choose_left .equipment__form h3 {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_left .equipment__form h3 {
    line-height: 21px;
    color: var(--blue-color);
    text-align: center;
  }
}

.select__arrow {
  top: 6px;
  right: 5px;
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form select {
  width: 100%;
  height: 35px;
  background: var(--white-color);
  margin-bottom: 6px;
  padding: 0 20px;
  border-radius: 5px;
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_left .equipment__form select {
    border: 1px solid #efefef;
    -webkit-box-shadow: 0px 0px 22px rgba(174, 193, 207, 0.31);
    box-shadow: 0px 0px 22px rgba(174, 193, 207, 0.31);
  }
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form .equipment__text {
  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;
  margin-top: 10px;
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form .equipment__text .equipment__text_left {
  font-weight: 700;
  font-size: 14px;
  line-height: 12px;
  color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_left .equipment__form .equipment__text .equipment__text_left {
    color: #545454;
  }
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form .equipment__text .equipment__text_left svg {
  margin-left: 14px;
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form .equipment__text .equipment__text_right {
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: var(--white-color);
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_left .equipment__form .equipment__text .equipment__text_right {
    font-size: 14px;
    color: var(--blue-color);
  }
}

.finance-price-payment {
  font-weight: 700;
  color: var(--white-color);
}

@media (max-width: 420px) {
  .finance-price-payment {
    color: var(--blue-color);
  }
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form .frame__text {
  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;
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_left .equipment__form .frame__text {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form .frame__text .frame__main {
  color: var(--white-color);
  width: 126px;
  height: 56px;
  padding: 8px 3px;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  border: 1px solid var(--white-color);
  border-radius: 10px;
  margin: 20px 0;
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form .frame__text .frame__main:first-child {
  min-width: 140px;
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_left .equipment__form .frame__text .frame__main {
    color: var(--secondary-color);
    border: 1px solid var(--blue-color);
  }
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form .frame__text .frame__main span {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  color: var(--white-color);
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_left .equipment__form .frame__text .frame__main span {
    color: var(--blue-color);
  }
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form .frame__text .frame__main:last-child {
  width: 76px;
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form input {
  width: 100%;
  height: 32px;
  padding: 5px 27px;
  background: var(--white-color);
  -webkit-box-shadow: 0px 0px 22px rgba(174, 193, 207, 0.31);
  box-shadow: 0px 0px 22px rgba(174, 193, 207, 0.31);
  border-radius: 5px;
  margin-bottom: 6px;
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_left .equipment__form .checkbox__hide-small {
    /* display: none; */
    margin-top: 10px;
  }
}

.checkbox__hide-small p {
  color: var(--white-color);
}

@media (max-width: 420px) {
  .checkbox__hide-small p {
    color: var(--main-color);
  }
}

.checkbox__hide-small p a {
  color: var(--white-color);
}

@media (max-width: 420px) {
  .checkbox__hide-small p a {
    color: var(--main-color);
  }
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form .car__bottom_btn {
  width: 234px;
  height: 35px;
  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: 20px;
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_left .equipment__form .car__bottom_btn {
    margin: 20px auto;
    border-radius: 5px;
    background: var(--blue-color);
    width: 100%;
    height: 44px;
  }
}

.equipment__form .equipment__form-btn {
  width: 234px;
  height: 35px;
  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: 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: var(--white-color);
  background: var(--blue-color);
  border: 1px solid var(--white-color);
  border-radius: 5px;
}

@media (max-width: 420px) {
  .equipment__form .equipment__form-btn {
    margin: 20px 0;
    width: 100%;
  }
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form .car__bottom_btn .car__bottom_left {
  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;
  min-width: 110px;
  height: 35px;
  background: var(--blue-color);
  padding: 5px;
  border: 1px solid var(--white-color);
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_left .equipment__form .car__bottom_btn .car__bottom_left {
    border: none;
    display: none;
  }
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form .car__bottom_btn .car__bottom_left p {
  font-weight: 700;
  font-size: 14px;
  line-height: 12px;
  color: var(--white-color);
}

.car .car__choose .car__choose_container .car__choose_left .equipment__form .car__bottom_btn .car__bottom_right {
  min-width: 120px;
  height: 35px;
  font-weight: 700;
  font-size: 14px;
  line-height: 12px;
  color: #595959;
  background: var(--white-color);
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_left .equipment__form .car__bottom_btn .car__bottom_right {
    color: #fff;
    background: var(--blue-color);
    background: initial;
  }
}

.car .car__choose .car__choose_container .car__choose_right {
  max-width: 700px;
  min-height: 480px;
  padding: 30px;
}

@media (max-width: 570px) {
  .car .car__choose .car__choose_container .car__choose_right {
    padding: 0;
  }
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_right {
    width: 100%;
  }
}

.car .car__choose .car__choose_container .car__choose_right .car__choose__info {
  max-width: 662px;
  min-height: 283px;
}

@media (max-width: 700px) {
  .car .car__choose .car__choose_container .car__choose_right .car__choose__info {
    background: var(--white-color);
    -webkit-box-shadow: var(--box-shadow);
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    padding: 10px;
  }
}

@media (max-width: 375px) {
  .car .car__choose .car__choose_container .car__choose_right .car__choose__info {
    padding: 0;
    background: none;
    box-shadow: none;
  }
}

.car .car__choose .car__choose_container .car__choose_right .car__choose__info .car__images {
  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;
}

@media (max-width: 767px) {
  .car .car__choose .car__choose_container .car__choose_right .car__choose__info .car__images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.car .car__choose .car__choose_container .car__choose_right .car__choose__info .car__images img {
  width: 100%;
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_right .car__choose__info .car__images .car__img-bottom {
    display: none;
  }
}

.car .car__choose .car__choose_container .car__choose_right .car__choose__info .car__images .car__img-small {
  display: none;
}

@media (max-width: 420px) {
  .car .car__choose .car__choose_container .car__choose_right .car__choose__info .car__images .car__img-small {
    display: block;
    width: 100%;
    height: auto;
  }
}

.car .car__choose .car__choose_container .car__choose_right .car__choose__info .car__images .car__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.car .car__choose .car__choose_container .car__choose_right .car__choose__info .car__images .car__icons .inside__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 48%;
}

.car .car__choose .car__choose_container .car__choose_right .car__choose__info .car__images .car__icons .inside__icon img {
  width: 42px;
  height: 37px;
}

.car .car__choose .car__choose_container .car__choose_right .car__choose__info .car__images .car__icons .inside__icon div {
  font-size: 14px;
  line-height: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 130px;
  text-align: center;
}

.car .car__choose .car__choose_container .car__choose_right .car__choose__info .car__images .car__icons .inside__icon div span {
  font-weight: 700;
  color: #595858;
}

.car .car__choose .car__choose_container .car__choose_right .car__choose__info .car__choose_main {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  margin-top: 19px;
}

.car .car__choose .car__choose_container .car__choose_right .car__choose__info .car__choose_main span {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
}

.car .car__choose .car__choose_container .car__choose_right .car__choose__info .car__choose_row .car__choose_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 31px;
}

.car .car__choose .car__choose_container .car__choose_right .car__choose__info .car__choose_row .car__choose_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
}

/* ------------------- Блок с горячими предложениями ----------------------  */

.choose .choose__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 1199px) {
  .choose .choose__container {
    max-width: 910px;
  }
}

@media (max-width: 909px) {
  .choose .choose__container {
    max-width: 613px;
  }
}

.choose .choose__container .choose__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
}

.choose .choose__container .choose__text {
  font-size: 14px;
  line-height: 24px;
}

.choose .choose__container .choose__row {
  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: 13px;
  padding-top: 20px;
  margin-bottom: 30px;
}

@media (max-width: 612px) {
  .choose .choose__container .choose__row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.choose .choose__container .choose__row .choose__card {
  width: 280px;
  height: auto;
}

.choose .choose__container .choose__row .choose__card .card__img {
  width: 100%;
  height: 210px;
  border-radius: 10px 10px 0 0;
  background: #2180fd25;
}

.choose .choose__container .choose__row .choose__card .card__img img {
  width: 280px;
  height: 100%;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
  /* object-position: bottom; */
}

.choose .choose__container .choose__row .choose__card .card__main {
  background: var(--white-color);
  -webkit-box-shadow: var(--box-shadow);
  box-shadow: var(--box-shadow);
  padding: 10px;
}

.choose .choose__container .choose__row .choose__card .card__main .card__name {
  font-weight: 700;
  font-size: 18px;
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.choose .choose__container .choose__row .choose__card .card__main .card__set {
  font-weight: 600;
  font-size: 14px;
  color: var(--blue-color);
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.choose .choose__container .choose__row .choose__card .card__main .card__price {
  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;
}

.choose .choose__container .choose__row .choose__card .card__main .card__price span {
  font-weight: 700;
  font-size: 18px;
  color: var(--secondary-color);
}

.choose .choose__container .choose__row .choose__card .card__main .card__price p {
  font-size: 14px;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: var(--secondary-color);
}

.choose .choose__container .choose__row .choose__card .card__main .card__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;
  border-top: 1px solid #e3e3e5;
  padding-top: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.choose .choose__container .choose__row .choose__card .card__main .card__bottom p {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: var(--red-color);
}

.choose .choose__container .choose__row .choose__card .card__main .card__bottom .card__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;
  width: 126px;
  height: 34px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: var(--white-color);
  background: var(--blue-color);
  border-radius: 5px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.choose .choose__container .choose__row .choose__card .card__main .card__bottom .card__btn:hover {
  color: var(--blue-color);
  background: var(--white-color);
  border: 1px solid var(--blue-color);
}

.choose .choose__container .choose__btn {
  margin-top: 215px;
  width: 267px;
  height: 35px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: var(--blue-color);
  background: var(--white-color);
  border-radius: 5px;
  padding: 5px 88px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  margin-bottom: 40px;
}

.choose .choose__container .choose__btn:hover {
  color: var(--white-color);
  background: var(--blue-color);
}

.show__btn.d-none {
  display: none;
}

.top__form_buttons {
  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;
  padding-top: 5px;
}

@media (max-width: 767px) {
  .top__form_buttons {
    padding-bottom: 20px;
  }
}

.top__form_buttons .buttons__container {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 32px;
}

.top__form_buttons a {
  position: relative;
  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: 3px 30px;
  background: var(--white-color);
  -webkit-box-shadow: var(--box-shadow-buttons);
  box-shadow: var(--box-shadow-buttons);
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 28px;
  color: var(--secondary-color);
  margin: 16px 6px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 767px) {
  .top__form_buttons a {
    width: 142px;
    height: 30px;
    margin: 8px;
  }
}

.top__form_buttons a:hover {
  transform: translateY(-5px);
}

.top__form_buttons a::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: var(--blue-color);
  border: 4px solid var(--bg-secondary-color);
}

@media (max-width: 767px) {
  .pb {
    padding: 0;
  }
}

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