.car {
  background-color: #fafafa;
  padding-bottom: 10rem;
}
.car__content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}
.car__right {
  display: flex;
  flex-direction: column;
  width: 55rem;
}
.car__info {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-grow: 1;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid #eaeaeb;
  background: #fff;
  margin-bottom: 1.9rem;
}
.car__heading {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.9rem 1.9rem;
  background-color: #fff;
  border: 1px solid #eaeaeb;
  border-radius: 1.6rem 1.6rem 0 0;
}
.car__heading-left {
  width: 60%;
}
.car__heading-title {
  margin: 0 3rem 0 0;
}
.car__heading-title_sm {
  max-width: 75rem;
}
.car__heading-control {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.car__heading-control img,
.car__heading-control svg {
  width: 1.8rem;
  height: auto;
}
.car__heading-control:not(:last-child) {
  margin-right: 0.3rem;
}
.car__heading-controls {
  display: flex;
}
.car__heading-price {
  flex-shrink: 0;
  font-size: 3.2rem;
  font-weight: 600;
  text-align: right;
}
.car__heading-button {
  position: relative;
  z-index: 12;
  padding: 0 3rem;
}
.car__heading-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.car__heading-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.6rem;
}
.car__heading-bottom .status {
  margin-top: 0.7rem;
}
.car__action {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid #eaeaeb;
  border-radius: 0 0 1.6rem 1.6rem;
  margin: -1px 0 2rem;
}
.car__action-item {
  padding: 0.4rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f1f8fd;
  transition: 0.25s;
  position: relative;
}
.car__action-item.pointer {
  cursor: pointer;
}
.car__action-item:first-child {
  border-radius: 0 0 0 1.6rem;
}
.car__action-item:last-child {
  border-radius: 0 0 1.6rem;
}
.car__action-item_active {
  background-color: #1e5d9d;
}
.car__action-item_active .car__action-item-img svg {
  stroke: #fff;
}
.car__action-item_active .car__action-item-text {
  color: #fff;
}
.car__action-item:not(:last-child) {
  border-right: 1px solid #eaeaeb;
}
.car__action-item-img {
  width: 3.2rem;
  height: 3.2rem;
}
.car__action-item-img svg {
  width: 100%;
  height: 100%;
  stroke: #1e5d9d;
  transition: 0.25s;
}
.car__action-item-text {
  font-size: 1.2rem;
  transition: 0.25s;
}
.car__action-item .car__share-block {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  margin: 0;
  padding: 1rem 0;
}
.car__equipment {
  padding: 3rem 2.9rem 0;
  margin-bottom: 3rem;
}
.car__equipment-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: rgba(39, 39, 39, 0.3);
  font-size: 1.4rem;
}
.car__equipment-item:not(:last-child) {
  margin-bottom: 1.4rem;
}
.car__equipment-title {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 116%;
  margin-bottom: 1.8rem;
}
.car__equipment-label {
  font-weight: 400;
  line-height: 100%;
  padding-right: 2rem;
  color: rgba(39, 39, 39, 0.7);
}
.car__equipment-key {
  color: rgba(39, 39, 39, 0.9);
  line-height: 100%;
}
.car__service {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1px;
  position: relative;
  z-index: 1;
}
.car__service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0) 0,
    #000 49.98%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.2;
  z-index: -1;
}
.car__service-item {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 133%;
  background: #fff;
  padding: 2rem;
}
.car__service-item svg {
  width: 3.8rem;
  height: 3.8rem;
  margin-right: 0.8rem;
  flex-shrink: 0;
}
.car__form {
  padding: 1.6rem 1.3rem 2rem;
  background-color: #fafafa;
  border-radius: 1.6rem;
}
.car__form-heading {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5.6rem 2rem;
  margin-bottom: 2rem;
}
.car__form-group-label {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.car__form-group-label-question {
  width: 1.6rem;
  flex-shrink: 0;
  margin-left: 0.7rem;
  cursor: pointer;
}
.car__form-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.7rem;
  margin-bottom: 2rem;
}
.car__form-checkbox {
  flex-direction: column;
  align-items: flex-start !important;
  padding: 1.1rem 1.3rem;
  background-color: #fff;
  border: 1px solid #c1c1c2;
  border-radius: 1rem;
  transition: border 0.25s;
}
.car__form-checkbox_checked {
  border-color: #1e5d9d;
}
.car__form-checkbox_checked .label__price {
  color: #1e5d9d;
}
.car__form-checkbox .label__box {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
}
.car__form-checkbox .label__price {
  margin-left: 3rem;
}
.car__form-checkbox .label__text {
  font-size: 1.2rem;
  margin-top: 1rem;
}
.car__form-button {
  width: calc(50% - 0.75rem);
}
.car__form-buttons {
  display: flex;
  justify-content: space-between;
}
.car__gallery {
  width: 90rem;
}
.car__gallery-slider {
  border-radius: 1.7rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.car__gallery-slider-item {
  width: 100%;
  height: 52.2rem;
}
.car__gallery-slider-item img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.car__gallery-slider-item.video-block {
  padding-top: 0;
  padding-bottom: 0;
}
.car__gallery-slider-item.video-block .video-block__wrap {
  height: 100%;
}
.car__gallery-thumbs {
  position: relative;
}
.car__gallery-thumbs::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(50%);
  width: 5.5rem;
  height: 100%;
  background: linear-gradient(270deg, #fff 50%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
.car__gallery-thumbs-item {
  position: relative;
  width: 12.2rem;
  height: 7.2rem;
  border-radius: 0.8rem;
  overflow: hidden;
  cursor: pointer;
}
.car__gallery-thumbs-item:not(:last-child) {
  margin-right: 0.8rem;
}
.car__gallery-thumbs-item img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.car__gallery-icon-video {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 8.2rem;
  height: 4.9rem;
}
.car__gallery-icon-video.video-block {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0.6rem;
  background-color: transparent;
}
.car__gallery-icon-video .video-block__wrap {
  height: 100%;
  border-radius: 0.6rem;
}
.car__gallery-icon-video .video-block__overlay svg {
  width: 3rem;
  height: 3rem;
}
.car__gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.car__gallery-overlay svg {
  width: 3rem;
  height: 3rem;
}
.car__color {
  padding: 1.6rem 2.3rem 0.5rem;
  border: 1px solid #eaeaeb;
  border-radius: 1.6rem;
}
.car__color-title {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.car__color-item {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-bottom: 1rem;
  position: relative;
}
.car__color-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../img/svg/color-check.svg) 50% no-repeat;
  opacity: 0;
  transition: opacity 0.25s;
}
.car__color-item_light::after {
  background-image: url(../img/svg/color-check-dark.svg);
}
.car__color-item_active::after {
  opacity: 1;
}
.car__color-item:not(:last-child) {
  margin-right: 2rem;
}
.car__color-items {
  display: flex;
  flex-wrap: wrap;
}
.car__color-name {
  margin-left: 0.6rem;
}
.car__color-name-item {
  display: none;
  font-weight: 600;
}
.car__color-name-item_active {
  display: block;
}
.car-button-next,
.car-button-prev {
  background-color: rgba(255, 255, 255, 0.5);
}
.car-button-prev {
  left: 1rem;
}
.car-button-next {
  right: 1rem;
}
.car__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 8rem;
}
.car__bottom-block {
  width: 58rem;
  padding: 2rem 4rem 3.5rem 2rem;
  border: 1px solid #eaeaeb;
  background-color: #fff;
  border-radius: 1.7rem;
  position: relative;
}
.car__bottom-block-left {
  width: 35.2rem;
  display: flex;
  align-items: center;
}
.car__bottom-block-right {
  width: 67.8rem;
}
.car__bottom-block_wide {
  width: 100%;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
}
.car__bottom-block-picture {
  position: absolute;
  bottom: 0;
  left: 2.8rem;
  width: 11.6rem;
  height: auto;
  pointer-events: none;
}
.car__bottom-block-picture img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.car__bottom-block-title {
  width: 19.4rem;
  margin-left: auto;
  font-size: 2.6rem;
}
.car__bottom-block_report {
  padding: 3rem 3rem 1.5rem;
}
.car__bottom-block_report .car__bottom-block-left {
  width: 58rem;
}
.car__bottom-block_report .car__bottom-block-right {
  width: 52rem;
}
.car__bottom-block_report .car__bottom-form-button {
  width: 25rem;
}
.car__bottom-form {
  font-family: Montserrat, sans-serif;
}
.car__bottom-form-heading {
  margin-bottom: 0.7rem;
}
.car__bottom-form-title {
  margin-bottom: 1.2rem;
}
.car__bottom-form-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}
.car__bottom-form-content span {
  font-size: 4rem;
  font-weight: 600;
  line-height: 100%;
  color: #272727;
  letter-spacing: -0.125rem;
}
.car__bottom-form-content .label {
  width: 33rem;
}
.car__bottom-form-content .form-phone-2 {
  border: none;
  border-bottom: 1px solid #eaeaeb;
  padding: 0;
  border-radius: 0;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.car__bottom-form-content .form-phone-2::-moz-placeholder {
  color: rgba(39, 39, 39, 0.2);
}
.car__bottom-form-content .form-phone-2::placeholder {
  color: rgba(39, 39, 39, 0.2);
}
.car__bottom-form-tel {
  width: 30rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  border-bottom: 2px solid #eaeaeb;
}
.car__bottom-form-button {
  width: 28rem;
  flex-shrink: 0;
  margin-left: 2rem;
}
.car__bottom-form .form__privacy {
  color: #6f6f71;
}
.car__bottom-report {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.car__bottom-report-logo {
  width: 14rem;
}
.car__bottom-report-description {
  width: 39rem;
}
.car__bottom-report-title {
  margin-bottom: 1rem;
}
.car__bottom-estimate {
  position: relative;
  z-index: 1;
}
.car__bottom-estimate-img {
  position: absolute;
  top: 44%;
  right: 4rem;
  transform: translateY(-50%);
  width: 18.4rem;
  z-index: -1;
}
.car__bottom-estimate-inner {
  width: 62%;
}
.car__bottom-estimate-heading {
  margin-bottom: 1rem;
}
.car__bottom-estimate-title {
  margin-bottom: 1.1rem;
}
.car__bottom-estimate-button {
  width: 25rem;
}
.car__characteristics {
  width: 90rem;
}
.car__characteristics-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.car__characteristics .filter {
  width: 100%;
  background: #fafafa;
  border: none;
  padding: 0;
  margin-bottom: 0;
}
.car__characteristics .characteristics__body {
  border: 1px solid #eaeaeb;
  background-color: #fff;
  border-radius: 1.6rem;
}
.car__characteristics .characteristics__filter .filter__item {
  width: 50%;
  padding: 3rem;
  border-radius: 1.6rem 1.6rem 0 0;
  border: 1px solid transparent;
  border-bottom: none;
  position: relative;
  margin-bottom: -1px;
  -webkit-tap-highlight-color: transparent;
}
.car__characteristics .characteristics__filter .filter__item_active {
  border-color: #eaeaeb;
  background-color: #fff;
  color: #1e5d9d;
}
.car__characteristics .characteristics__filter .filter__item_active::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -1px;
  height: 3rem;
  width: 3rem;
  background-color: #fff;
  border-left: 1px solid #eaeaeb;
  pointer-events: none;
}
.car__characteristics
  .characteristics__filter
  .filter__item:nth-child(2).filter__item_active::before {
  content: "";
  position: absolute;
  top: 100%;
  left: auto;
  right: -1px;
  border-left: none;
  border-right: 1px solid #eaeaeb;
}
.car__characteristics .characteristics__inner {
  display: block;
  padding: 0rem 2.9rem 0.5rem;
}
.car__characteristics .characteristics__group {
  margin-bottom: 0;
}
.car__characteristics .characteristics__group:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.car__characteristics
  .characteristics__group_active
  .characteristics__item-arrow {
  background-color: #1e5d9d;
}
.car__characteristics
  .characteristics__group_active
  .characteristics__item-arrow::before {
  background-color: #fff;
}
.car__characteristics
  .characteristics__group_active
  .characteristics__item-arrow::after {
  content: none;
}
.car__characteristics .characteristics__item-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.55rem 0;
  cursor: pointer;
}
.car__characteristics .characteristics__item-title {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: 133%;
  text-transform: uppercase;
  margin-right: 2rem;
}
.car__characteristics .characteristics__item-title span {
  color: rgba(39, 39, 39, 0.5);
}
.car__characteristics .characteristics__item-arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: 0.25s;
}
.car__characteristics .characteristics__item-arrow:after,
.car__characteristics .characteristics__item-arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #1e5d9d;
  transition: background-color 0.25s;
}
.car__characteristics .characteristics__item-arrow:before {
  width: 1.6rem;
  height: 0.2rem;
}
.car__characteristics .characteristics__item-arrow::after {
  width: 0.2rem;
  height: 1.6rem;
}
.car__characteristics .characteristics__item-dropdown {
  display: none;
  padding-bottom: 2.5rem;
}
.car__characteristics .characteristics__list {
  padding-left: 2.6rem;
}
.car__characteristics-geo {
  position: sticky;
  top: 20rem;
  width: 55rem;
}
.car__views {
  position: fixed;
  z-index: 100;
  left: -100%;
  bottom: 2rem;
  width: 38.1rem;
  display: flex;
  align-items: center;
  padding: 2.3rem;
  background-color: rgba(69, 98, 118, 0.9);
  border: 1px solid rgba(234, 234, 235, 0.6);
  border-radius: 1.6rem;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  opacity: 0;
  transition: left 0.25s, opacity 0.25s;
}
.car__views_active {
  left: 2rem;
  opacity: 1;
}
.car__views_hidden {
  display: none;
}
.car__views-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.car__views-close svg {
  width: 60%;
  height: 60%;
}
.car__views-img {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(234, 234, 235, 0.5);
  margin-right: 2.4rem;
}
.car__views-img svg {
  width: 2.6rem;
  height: 2.6rem;
  stroke: #cce5ff;
  stroke-width: 1.5px;
}
.car__views-text {
  font-size: 1.6rem;
  font-weight: 500;
}
.car__views-text span {
  font-weight: 700;
}
.car__heading-tag {
  position: relative;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.7rem;
  padding: 0.6rem 0.3rem;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.2rem;
  letter-spacing: -0.07em;
  color: #fff;
  background: linear-gradient(81.55deg, #3cbe72 6.09%, #6fcf97 72.59%);
  border-radius: 0.5rem;
}
.car__heading-tag svg {
  line-height: 0;
  width: 0.9rem;
  height: 0.9rem;
  margin-left: 0.4rem;
}
.car__heading-info-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  z-index: 20;
}
.car__heading-info {
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.car__heading-info_top {
  margin-top: -1.8rem;
}
.car__price-row--no-top {
  margin-top: 0;
}
.car__heading-info_show-all .car__heading-info-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 40rem;
}
.car__heading-info_show-all .car__heading-info-wrap::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: -3rem;
  right: -3rem;
  bottom: -3rem;
  border-radius: 1.6rem;
  background-color: #fff;
  box-shadow: 0 10px 20px 0 #0000001a;
  z-index: 10;
}
.car__heading-info_show-all .car__hidden-block {
  display: flex;
  flex-direction: column;
}
.car__heading-info_show-all .car__heading-button {
  display: none;
}
.car__heading-info_show-all .car__heading-arrow {
  background-color: #1e5d9d;
}
.car__heading-info_show-all .car__heading-arrow svg {
  transform: rotate(180deg);
  stroke: #fff;
}
.car__price-row {
  position: relative;
  z-index: 12;
  display: flex;
  align-items: baseline;
}
.car__price-row--marhin {
  margin-top: ;
}
.car__heading-price-old {
  margin-right: 2rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.4rem;
  text-decoration: line-through;
  white-space: nowrap;
}
.car__heading-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.4rem;
  margin-left: 1.6rem;
  border-radius: 0.4rem;
  background-color: rgba(182, 182, 182, 0.1);
  border: 1px solid #eaeaeb;
  transition: 0.35s;
}
.car__heading-arrow svg {
  width: 1.3rem;
  height: 1.3rem;
  stroke: #272727;
  transition: 0.35s;
}
.car__heading-text {
  position: relative;
  z-index: 12;
  margin-right: 5.5rem;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.4rem;
  color: #073767b2;
}
.car__hidden-block {
  width: 100%;
  display: none;
  position: relative;
  z-index: 12;
  margin-top: 2.6rem;
}
.car__checkbox-block {
  margin-bottom: 1rem;
  cursor: pointer;
}
.car__checkbox-block input {
  display: none;
}
.car__checkbox-block input:checked + .car__checkbox-wrap .car__checkbox-text {
  position: relative;
}
.car__checkbox-block
  input:checked
  + .car__checkbox-wrap
  .car__checkbox-text::before {
  background-color: #1e5d9d;
  border-color: #1e5d9d;
}
.car__checkbox-block
  input:checked
  + .car__checkbox-wrap
  .car__checkbox-text::after {
  position: absolute;
  top: 0.4rem;
  left: 0.3rem;
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.1rem;
  background-image: url(../img/content/check.svg);
  background-size: 1.5rem 1.1rem;
}
.car__checkbox-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.3rem;
  border: 1px solid #c1c1c2;
  border-radius: 1rem;
}
.car__checkbox-text {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5rem;
}
.car__checkbox-text::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  border-radius: 0.3rem;
  border: 1px solid #c1c1c2;
}
.car__checkbox-price {
  margin-left: auto;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.1rem;
}
.car__profit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.6rem;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
  padding-right: 1rem;
}
.car__profit-text {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.1rem;
}
.car__profit-price {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 2.6rem;
}
.car__buttons-block {
  display: flex;
  flex-wrap: wrap;
}
.car__offer-btn {
  width: 100%;
}
.car__buttons-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
}
.car__buttons-row .button {
  width: 48%;
}
.car__buttons-row .button svg {
  display: block;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}
.car__share {
  min-height: 5rem;
  height: auto;
  flex-wrap: wrap;
  padding: 1.4rem 0;
}
.car__share:hover {
  border-color: #1e5d9d;
  background-color: transparent;
  color: #1e5d9d;
}
.car__share:hover > svg path {
  stroke: #1e5d9d;
}
.car__share-block {
  display: none;
  margin-top: 1.2rem;
}
.car__share-list {
  display: flex;
  align-items: center;
}
.car__share-item {
  width: 2.3rem;
  height: 2.3rem;
}
.car__share-item:not(:last-child) {
  margin-right: 1rem;
}
.car__share-item svg {
  margin: 0;
  width: 100% !important;
  height: 100% !important;
}
.car__gallery-slider-item--online {
  height: 81rem;
}

.car__info--online {
  flex-grow: unset;
}
.car__heading-buttons {
  display: flex;
  gap: 10px;
}
.button--credit {
  background-color: #D9012A !important;
  width: 26.3rem;
}
.car__heading-buttons--mobile {
  width: auto;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 48em) {
  .car__heading-buttons--mobile {
    width: 100%;
    flex-direction: column;
  }
  .car__heading-bottom,
  .car__heading-bottom .status {
    margin-top: 0;
  }
  .car {
    margin: -4rem 0 0;
    padding-bottom: 8rem;
  }
  .car__content {
    flex-wrap: wrap;
    margin-bottom: 3.2rem;
  }
  .car__info {
    width: 100%;
    order: +1;
    border-radius: 3.2rem;
    margin-bottom: 0;
  }
  .car__heading {
    flex-wrap: wrap;
    border-radius: 3.2rem;
    padding: 3rem 2.9rem 2.2rem;
    margin-bottom: 3.2rem;
  }
  .car__heading.mobile {
    display: flex !important;
  }
  .car__heading-left {
    width: 100%;
  }
  .car__heading-title {
    margin-bottom: 2.8rem;
  }
  .car__heading-control {
    width: 3.6rem;
    height: 3.6rem;
  }
  .car__heading-control img,
  .car__heading-control svg {
    width: 100%;
  }
  .car__heading-control:not(:last-child) {
    margin-right: 1.5rem;
  }
  .car__heading-info {
    width: 100%;
  }
  .car__heading-price {
    text-align: left;
  }
  .car__heading-button {
    margin-bottom: 0.6rem;
  }
  .car__action {
    border-radius: 1.6rem;
    margin: 1rem 0 3rem;
  }
  .car__action.mobile {
    display: grid !important;
  }
  .car__action-item {
    padding: 0.5rem;
  }
  .car__action-item-img {
    width: 5.6rem;
    height: 5.6rem;
  }
  .car__action-item-text {
    display: none;
  }
  .car__action-item .car__share-item {
    width: 4.6rem;
    height: 4.6rem;
  }
  .car__equipment {
    padding: 2.2rem 2.9rem 0;
    margin-bottom: 5rem;
  }
  .car__equipment-item {
    font-size: 2.4rem;
    grid-gap: 1rem;
  }
  .car__equipment-item:not(:last-child) {
    margin-bottom: 1.8rem;
  }
  .car__equipment-title {
    font-size: 2.8rem;
  }
  .car__equipment-label {
    padding-right: 3rem;
  }
  .car__service-item {
    font-size: 2.4rem;
    padding: 2.4rem 2.2rem;
  }
  .car__service-item svg {
    width: 5.2rem;
    height: 5.2rem;
    margin-right: 2rem;
  }
  .car__form {
    padding: 3rem;
    border-radius: 3.2rem;
  }
  .car__form-heading {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem;
    margin-bottom: 4rem;
  }
  .car__form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .car__form-group-label {
    font-size: 2rem;
    margin-bottom: 0;
  }
  .car__form-group-label-question {
    width: 3.2rem;
    margin-left: 1.4rem;
  }
  .car__form-group-price {
    flex-shrink: 0;
    margin-left: 3rem;
  }
  .car__form-content {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem;
    margin-bottom: 4rem;
  }
  .car__form-checkbox {
    height: auto !important;
    padding: 3.9rem 3rem 3.8rem 11rem;
    border-radius: 2rem;
  }
  .car__form-checkbox .label__box {
    top: 3.8rem;
    left: 3.8rem;
  }
  .car__form-checkbox .label__price {
    margin-left: 0;
  }
  .car__form-checkbox .label__text {
    font-size: 2rem;
    margin-top: 1rem;
  }
  .car__form-button {
    width: 100%;
  }
  .car__form-button:not(:last-child) {
    margin-bottom: 3rem;
  }
  .car__form-buttons {
    flex-wrap: wrap;
  }
  .car__gallery {
    width: 100%;
    margin-bottom: 2rem;
  }
  .car__gallery-slider {
    height: 39.8rem;
    border-radius: 3.4rem;
    margin-bottom: 1.6rem;
  }
  .car__gallery-slider-item {
    height: 100%;
  }
  .car__gallery-thumbs::after {
    width: 6rem;
  }
  .car__gallery-thumbs-item {
    width: 13.6rem;
    height: 8rem;
    border-radius: 1.6rem;
  }
  .car__gallery-thumbs-item:not(:last-child) {
    margin-right: 0.6rem;
  }
  .car__right {
    width: 100%;
  }
  .car__color {
    order: -1;
    padding: 2rem 2.6rem 0.5rem;
    border-radius: 3.2rem;
    margin-bottom: 2rem;
  }
  .car__color-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .car__color-item {
    width: 4.8rem;
    height: 4.8rem;
    margin-bottom: 2rem;
  }
  .car__color-item::after {
    background-size: 3.2rem;
  }
  .car__color-item:not(:last-child) {
    margin-right: 2.8rem;
  }
  .car__color-name {
    margin-left: 1.2rem;
  }
  .car__bottom {
    margin-bottom: 3.2rem;
  }
  .car__bottom-block {
    width: 100%;
    padding: 3.5rem 2.8rem 3rem;
    border-radius: 3.4rem;
  }
  .car__bottom-block-left {
    width: 100% !important;
    display: block;
  }
  .car__bottom-block-right {
    width: 100%;
  }
  .car__bottom-block_wide {
    display: block;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .car__bottom-block_report {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
  .car__bottom-block_report .car__bottom-form-content .label {
    height: 10rem;
  }
  .car__bottom-block_report .car__bottom-form-button {
    width: 100%;
    margin-top: 2rem;
  }
  .car__bottom-block-picture {
    display: none;
  }
  .car__bottom-block-title {
    width: auto;
    margin-left: 0;
    margin-bottom: 3rem;
    text-align: center;
    padding: 0 7rem;
  }
  .car__bottom-form-heading,
  .car__bottom-form-title {
    margin-bottom: 2rem;
  }
  .car__bottom-form-tel {
    width: 100%;
  }
  .car__bottom-form-content {
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
  }
  .car__bottom-form-content input {
    font-size: 2.8rem;
  }
  .car__bottom-form-content .label {
    width: 50rem;
    height: 8rem;
    margin-left: auto;
    margin-right: auto;
  }
  .car__bottom-form-content .form-phone-2 {
    font-size: 6rem;
    letter-spacing: -0.05em;
  }
  .car__bottom-form-button {
    width: 100%;
    margin-top: 4rem;
    margin-left: 0;
  }
  .car__bottom-form-privacy.form__privacy {
    text-align: left;
  }
  .car__bottom-report {
    display: block;
    margin-bottom: 3rem;
  }
  .car__bottom-report-logo {
    width: 28rem;
    margin-bottom: 4rem;
  }
  .car__bottom-report-description {
    width: 80%;
  }
  .car__bottom-report-title {
    margin-bottom: 2rem;
  }
  .car__bottom-estimate-img {
    top: 4.8rem;
    transform: none;
    width: 20.4rem;
  }
  .car__bottom-estimate-inner {
    width: 100%;
  }
  .car__bottom-estimate-heading {
    width: 57%;
    margin-bottom: 2rem;
  }
  .car__bottom-estimate-title {
    margin-bottom: 2.2rem;
  }
  .car__bottom-estimate-button {
    width: 100%;
  }
  .car__characteristics {
    width: 100%;
    margin-bottom: 3.2rem;
  }
  .car__characteristics-wrapper {
    flex-direction: column;
    gap: unset;
  }
  .car__characteristics .characteristics__body {
    border-radius: 3.2rem;
  }
  .car__characteristics .characteristics__inner {
    padding: 1.6rem 2.8rem 1.5rem;
  }
  .car__characteristics .characteristics__inner::after {
    content: none;
  }
  .car__characteristics .characteristics__filter .filter__item {
    width: 50%;
    height: 10rem;
    white-space: unset;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    border-radius: 3.2rem 3.2rem 0 0;
  }
  .car__characteristics .characteristics__item-heading {
    padding: 2.3rem 0;
  }
  .car__characteristics .characteristics__item-title {
    font-size: 2.8rem;
  }
  .car__characteristics .characteristics__item-arrow {
    width: 5.2rem;
    height: 5.2rem;
  }
  .car__characteristics .characteristics__item-arrow:before {
    width: 2.4rem;
    height: 0.4rem;
  }
  .car__characteristics .characteristics__item-arrow::after {
    width: 0.4rem;
    height: 2.4rem;
  }
  .car__characteristics .characteristics__item-dropdown {
    padding-bottom: 2rem;
  }
  .car__characteristics .characteristics__list {
    padding-left: 3.2rem;
  }
  .car__characteristics .characteristics__list-item {
    font-size: 2.6rem;
    line-height: 1;
  }
  .car__characteristics .characteristics__list-item:not(:last-child) {
    margin-bottom: 3.1rem;
  }
  .car__characteristics-geo {
    position: static;
    width: 100%;
    order: -1;
  }
  .car__views {
    position: static;
    width: 100%;
    padding: 2.8rem 2.6rem;
    background-color: #fff;
    border-radius: 3.2rem;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    color: #272727;
    margin-bottom: 3.2rem;
    opacity: 1;
  }
  .car__views_hidden {
    display: flex;
  }
  .car__views-close {
    display: none;
  }
  .car__views-img {
    width: 5.2rem;
    height: 5.2rem;
    margin-right: 2.8rem;
  }
  .car__views-img svg {
    width: 3.6rem;
    height: 3.6rem;
    stroke: #1e5d9d;
  }
  .car__views-text {
    font-size: 2.2rem;
  }
  .car__views-text span {
    color: #1e5d9d;
  }
  .car__heading-info {
    align-items: flex-start;
  }
  .car__heading-tag {
    margin-bottom: 2rem;
    padding: 0.6rem 0.4rem;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 2.2rem;
    letter-spacing: -0.07em;
    border-radius: 1rem;
  }
  .car__heading-tag svg {
    width: 1.6rem;
    height: 1.6rem;
  }
  .car__heading-price {
    order: -1;
    margin-right: auto;
    margin-bottom: 0;
    font-size: 4rem;
    line-height: 4.8rem;
  }
  .car__price-row {
    width: 100%;
    margin-bottom: 0.4rem;
  }
  .car__heading-price-old {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  .car__heading-arrow {
    width: 4rem;
    height: 4rem;
    margin-left: 1.2rem;
  }
  .car__heading-arrow svg {
    width: 2.4rem;
    height: 2.4rem;
  }
  .car__heading-text {
    font-size: 2rem;
    line-height: 2.2rem;
  }
  .car__heading-button {
    margin-top: 3.2rem;
  }
  .car__heading-info_show-all .car__fixed-info {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 3rem 2rem;
    background-color: #fff;
    box-shadow: 0 10px 20px 0 #0000001a;
    border-radius: 1.6rem 1.6rem 0 0;
    z-index: 510;
  }
  .car__heading-info_show-all .car__fixed-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 505;
  }
  .car__checkbox-block {
    width: 100%;
    margin-bottom: 1rem;
  }
  .car__checkbox-block
    input:checked
    + .car__checkbox-wrap
    .car__checkbox-text::after {
    top: 0.8rem;
    left: 0.5rem;
    width: 3rem;
    height: 2.2rem;
    background-size: 3rem 2.2rem;
  }
  .car__checkbox-block_t-indent {
    margin-top: 3.2rem;
  }
  .car__checkbox-wrap {
    padding: 2rem;
  }
  .car__checkbox-text {
    width: 100%;
    max-width: 29rem;
    font-size: 2rem;
    line-height: 2.2rem;
  }
  .car__checkbox-text::before {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    margin-right: 1.6rem;
  }
  .car__checkbox-price {
    font-size: 2.8rem;
    line-height: 3.8rem;
  }
  .car__profit {
    width: 100%;
    margin-top: 2.2rem;
    margin-bottom: 3.8rem;
  }
  .car__profit-text {
    font-size: 2.8rem;
    line-height: 3.2rem;
  }
  .car__profit-price {
    font-size: 3.6rem;
    line-height: 4.2rem;
  }
  .car__offer-btn {
    font-size: 2.6rem;
    line-height: 3.2rem;
  }
  .car__buttons-row {
    margin-top: 1rem;
  }
  .car__buttons-row .button {
    width: 49%;
    padding: 1rem;
    font-size: 2.6rem;
    line-height: 3.2rem;
  }
  .car__buttons-row .button svg {
    width: 3.2rem;
    height: 3.2rem;
  }
  .car__fixed-title-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 4rem;
  }
  .car__fixed-title {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 4.4rem;
  }
  .car__button-close {
    width: 3.2rem;
    height: 3.2rem;
    padding: 0;
    border: none;
    background-color: transparent;
  }
  .car__fixed-info,
  .car__fixed-overlay {
    display: none;
  }
  .car__share.button {
    min-height: 10rem;
    height: auto;
    padding: 3.2rem 0;
  }
  .car__share.button .car__share-block {
    margin-top: 2.4rem;
  }
  .car__share.button .car__share-item {
    width: 4.6rem;
    height: 4.6rem;
  }
  .car__share.button .car__share-item:not(:last-child) {
    margin-right: 2rem;
  }
  .car__share.button .car__share-item svg {
    margin: 0;
  }
  .car__button--online {
    display: none;
  }
  .car__gallery-slider--online {
    height: 60rem;
  }
  .car__gallery-slider-item--online {
    height: 100%;
  }
  .car__heading-info--online {
    gap: 15px;
  }
  .button--credit {
    width: 100%;
  }
}


