@charset "UTF-8";
.main {
  padding-top: 105px;
}

/* Main Menu */
.main-header__sub-holder {
  max-width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}

.footer-primary {
  display: block !important;
}

.full-height {
  height: -webkit-calc(100vh - 45px - 60px);
  height: calc(100vh - 45px - 60px);
}

.l-wrapper {
  position: relative;
  height: -webkit-calc(100vh - 45px - 60px);
  height: calc(100vh - 45px - 60px);
  padding-left: 50px;
  padding-right: 50px;
}

.l-wrapper--p {
  padding: 0;
}

.l-wrapper--s {
  overflow-y: scroll;
  min-width: 100%;
  margin-right: -17px;
}

.text-block {
  position: absolute;
  top: 35px;
  left: 50px;
  color: #ffffff;
  z-index: 15;
  font-family: 'HyundaiSansHead';
}

.text-block span {
  opacity: 0.95;
  display: block;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}

.text-block__title {
  font-size: 90px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
  overflow: hidden;
}

.text-block__title--black {
  color: #363636;
}

.text-block__text {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-top: -10px;
  overflow: hidden;
}

.text-block--small span {
  font-size: 20px;
  color: #c3bab4;
  opacity: 0.5;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.text-block--z100 {
  z-index: 100;
}

.list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.list__item {
  position: relative;
  width: 50%;
  height: -webkit-calc((100vh - 45px - 60px) / 2);
  height: calc((100vh - 45px - 60px) / 2);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  overflow: hidden;
}

.list__item--dh {
  height: -webkit-calc(100vh - 45px - 60px);
  height: calc(100vh - 45px - 60px);
}

.list__item--dw {
  width: 100%;
}

.list__item--bg {
  background-position: 0 50%;
}

.list__video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.list__back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.list__icon {
  position: absolute;
  left: 50px;
  top: 34px;
  width: 100px;
}

.list__icon img {
  max-width: 100%;
  height: auto;
}

.item-description {
  position: absolute;
  left: 50px;
  bottom: 35px;
  width: 370px;
  z-index: 10;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #b7b2b1;
  overflow: hidden;
}

.item-description__white {
  color: #fff;
}

.item-description__black {
  color: #252525;
}

.video-shade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.video-shade--small {
  background-image: url("/assets/img/tucson/video/video_shade_small.png");
}

.video-shade--large {
  background-image: url("/assets/img/tucson/video/video_shade_large.png");
}

/* Next Button */
.next-button {
  position: absolute;
  bottom: 15px;
  left: 50%;
  margin-left: -25px;
  display: block;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  border: 2px solid #fff;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.next-button:hover {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.next-button::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-top: 14px;
  width: 30%;
  height: 30%;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.active .show.next-button {
  opacity: 0.7;
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
  -webkit-animation-duration: 450ms;
          animation-duration: 450ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.active .show.next-button:hover {
  opacity: 1;
}

@-webkit-keyframes bounceIn {
  0% {
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.89);
            transform: scale(0.89);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.89);
            transform: scale(0.89);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* slide1 */
.slide1 {
  position: relative;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  font-family: 'HyundaiSansHead';
}

.blue-b {
  position: absolute;
  bottom: 40px;
  left: 0;
  padding: 20px 50px;
  background-color: #003469;
  letter-spacing: -0.02em;
}

.blue-b__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.35);
}

.blue-b__price {
  font-size: 54px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  padding-bottom: 26px;
  margin-bottom: 10px;
  border-bottom: 2px solid #fff;
}

.blue-b__price span {
  font-size: 36px;
}

.blue-b__note {
  font-size: 20px;
  color: #fff;
}

/* Sub menu */
.sub-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 45px;
  background-color: #f1efee;
  padding-left: 50px;
  z-index: 199;
  font-family: 'HyundaiSansHead';
}

.sub-menu__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.sub-menu__test, .sub-menu__conf {
  display: block;
  height: 100%;
  line-height: 45px;
  background-color: #af9c91;
  padding: 0 35px;
  font-size: 11px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.02em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
}

.sub-menu__test:hover, .sub-menu__test:focus, .sub-menu__conf:hover, .sub-menu__conf:focus {
  background-color: #a08e83;
}

.sub-menu__test {
  border-right: 1px solid #c7bab2;
}

/* Navigation */
.nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: rgba(37, 37, 37, 0.5);
  letter-spacing: -0.02em;
}

.nav__item:not(:last-of-type) {
  margin-right: 30px;
}

.nav__link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav__link:hover {
  color: #363636;
}

.active .nav__link span {
  color: #363636;
}

/* Scrollbar */
.scrollbar {
  position: relative;
  height: 1px;
  background-color: #d3d1d0;
  overflow: hidden;
}

.scrollbar__indicator {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background-color: #a89489;
}

/* slide2 */
.slide2 {
  font-family: 'HyundaiSansHead';
  position: relative;
  overflow: hidden;
}

.slide2__back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.slide2__shade {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  opacity: 0;
}

.slide2__overflow {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0;
}

.slide2-anim-3 {
  -webkit-transform-origin: 61% 82%;
      -ms-transform-origin: 61% 82%;
          transform-origin: 61% 82%;
}

.slide2-anim-9 {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

.description {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  left: 50px;
  bottom: 45px;
  overflow: hidden;
  font-family: 'HyundaiSansHead';
}

.description--right {
  left: auto;
  right: 120px;
}

.description--rel {
  left: 0;
  bottom: 0;
  position: relative;
  height: auto;
}

.description__inner {
  z-index: 21;
}

.description__icon {
  position: relative;
  width: 65px;
  height: 65px;
  background-color: #ccc5b9;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  margin-bottom: 25px;
  opacity: 0;
}

.description__icon--color-1 {
  background-color: #ccc5b9;
}

.description__icon img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.description__wrapper {
  -webkit-transform: translateY(105%);
      -ms-transform: translateY(105%);
          transform: translateY(105%);
}

.description__title {
  width: 400px;
  font-size: 40px;
  line-height: 35px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  margin-bottom: 20px;
  overflow: hidden;
}

.description__title--slide7 {
  color: #363636;
}

.description__text {
  width: 400px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.45);
  overflow: hidden;
}

.description__text--slide7 {
  color: #b7b2b1;
}

.description__text--black {
  color: #363636;
}

/* slide3 */
.slide3 {
  position: relative;
  font-family: 'HyundaiSansHead';
}

.slide3__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  height: 100%;
}

.slide3__item {
  display: block;
  position: relative;
  width: 50%;
  height: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  overflow: hidden;
}

.slide3__video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.slide3__back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
}

/* Динамика */
/* slide4 */
.slide4 {
  position: relative;
  overflow: hidden;
  font-family: 'HyundaiSansHead';
}

.slide4__video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.slide4__overflow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0;
}

/* Счётчик */
.counter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 45px;
  margin-left: -25px;
}

.counter__item {
  text-align: center;
}

.counter__icon {
  display: inline-block;
  position: relative;
  padding: 0 10px;
  -webkit-border-radius: 10px;
          border-radius: 10px;
  line-height: 20px;
  background-color: #c1bbaf;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(93, 92, 88, 0.85);
}

.counter__value {
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: rgba(204, 197, 185, 0.85);
  text-align: center;
  padding-left: 25px;
  padding-right: 25px;
}

.counter__value span {
  display: inline-block;
  width: 95px;
  font-size: 56px;
  font-weight: 700;
}

.counter__value--border {
  border-right: 1px solid #62625b;
}

.counter__value--pl0 {
  padding-left: 0;
}

.counter__description {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  text-align: center;
  padding-left: 25px;
  padding-right: 25px;
}

.counter__description--border {
  border-right: 1px solid #62625b;
}

.counter__description--pl0 {
  padding-left: 0;
}

/* График */
.graph {
  position: absolute;
  width: 320px;
  right: 50px;
  bottom: 45px;
  padding: 30px;
  z-index: 10;
}

.graph__img img {
  max-width: 100%;
}

.graph__x {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
}

.graph__x1 {
  position: absolute;
  bottom: 0;
  left: 120px;
}

.graph__x2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.graph__y {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(193, 187, 175, 0.85);
  line-height: 1;
  text-transform: uppercase;
}

.graph__y span {
  font-size: 24px;
  font-weight: 500;
}

.graph__y1 {
  position: absolute;
  top: 0;
  left: 110px;
}

.graph__y2 {
  position: absolute;
  top: 0;
  right: 0;
}

/* Комфорт */
.comfort {
  position: relative;
  overflow: hidden;
  font-family: 'HyundaiSansHead';
}

.comfort__back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: cover;
}

.comfort__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0;
}

.comfort__zone {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  opacity: 0;
}

.slide5 {
  position: relative;
}

.sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

.sidebar__back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.sidebar__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #171717;
  opacity: 0;
}

.comfort2 {
  position: relative;
  overflow: hidden;
  font-family: 'HyundaiSansHead';
}

/* Безопасность */
.safety {
  position: relative;
  font-family: 'HyundaiSansHead';
  background-color: #e8e6e4;
  overflow: hidden;
}

.safety2 {
  position: relative;
  font-family: 'HyundaiSansHead';
  overflow: hidden;
}

/* slide6 */
.slide6 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.slide6__back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 90% 100%;
  background-size: 50%;
}

.slide6__svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide6__circle1 {
  fill: #f7f6f5;
}

.slide6__circle2 {
  fill: #f2f1f0;
}

/* slide7 */
.slide7 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 106% 0%;
  background-size: 46%;
  overflow: hidden;
}

.slide7__line {
  position: absolute;
  left: 30%;
  top: -5%;
  width: 30vw;
  height: 200px;
  z-index: 20;
  overflow: hidden;
}

.slide7__line path {
  stroke: #000000;
  stroke-dasharray: 1 5;
}

/* slide8 */
.slide8 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.slide8__back {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: -4px 100%;
  background-size: 54%;
  z-index: 10;
}

.slide8__line {
  position: absolute;
  left: 34%;
  bottom: 30vw;
  width: 30vw;
  height: 200px;
  z-index: 20;
  overflow: hidden;
}

.slide8__line path {
  stroke: #000000;
  stroke-dasharray: 1 5;
}

/* slide9 */
.slide9 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 60vw 100%;
  background-size: 43%;
  overflow: hidden;
}

.slide9__line {
  position: absolute;
  left: 25%;
  bottom: 71%;
  width: 40vw;
  height: 200px;
  z-index: 20;
  overflow: hidden;
}

.slide9__line path {
  stroke: #000000;
  stroke-dasharray: 1 5;
}

/* Синий круг */
.mark {
  position: absolute;
  width: 185px;
  height: 185px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  z-index: 20;
}

.mark--slide7 {
  right: 20%;
  top: 31%;
}

.mark--slide8 {
  right: 72%;
  bottom: 18vw;
}

.mark--slide9 {
  left: 62vw;
  bottom: 40%;
}

.mark__circles {
  position: absolute;
  top: -70%;
  left: -70%;
  width: 240%;
  height: 240%;
}

.mark__inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  width: 100%;
  height: 100%;
  background-color: #41a2b5;
  overflow: hidden;
}

.mark__icon {
  width: 90px;
  opacity: 0.85;
  margin: 0 auto;
}

.mark__icon img {
  display: block;
  max-width: 100%;
  height: auto;
}

.mark__description {
  width: 100%;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

/* Схема */
.schema {
  position: absolute;
  bottom: 270px;
  left: 50px;
  z-index: 20;
}

.schema--pr {
  position: relative;
  bottom: 0;
  left: 0;
  width: 400px;
}

.schema--pr img {
  max-width: 100%;
  height: auto;
}

.schema--mb {
  margin-bottom: -75px;
}

.schema--top {
  bottom: 320px;
}

.schema__slider {
  width: 510px;
  height: 310px;
  overflow: hidden;
}

.schema__slider img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

.schema__point {
  position: absolute;
  width: 70px;
  height: 70px;
}

.schema__point--tl {
  top: 7px;
  left: 29px;
}

.schema__point--bl {
  top: 81px;
  left: 29px;
}

.schema__point--br {
  top: 81px;
  left: 104px;
}

.schema__point--tr {
  top: 7px;
  left: 104px;
}

.schema__circle1 {
  fill: rgba(255, 255, 255, 0.9);
}

.schema__circle1--blue {
  fill: #41a2b5;
}

/* Видео */
.video {
  position: absolute;
  bottom: 300px;
  right: 13%;
}

.video__inner {
  position: relative;
  width: 300px;
  height: 300px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  overflow: hidden;
  background-color: #f7f6f5;
  z-index: 20;
}

.video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__svg {
  position: absolute;
  top: -125%;
  left: -125%;
  width: 350%;
  height: 350%;
}

.video__circle1 {
  fill: #f7f6f5;
}

.video__circle2 {
  fill: #f2f1f0;
}

/* Конфигуратор */
.config {
  position: relative;
  background-color: #f1efee;
  font-family: 'HyundaiSansHead';
  overflow: hidden;
}

.config__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.config__first {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.config__center {
  position: relative;
  width: 100%;
}

.config__img {
  position: relative;
  padding-right: 50px;
  width: 100vh;
  max-width: 850px;
  margin: 0 auto;
}

.config__main-img {
  position: relative;
}

.config #colorImg2 {
  display: block;
  position: relative;
  max-width: 100%;
  height: auto;
  z-index: 10;
}

.config #colorImg {
  display: block;
  position: absolute;
  max-width: 100%;
  top: 0;
  left: 0;
  height: auto;
  z-index: 10;
}

.config__name {
  position: absolute;
  top: -190px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 240px;
  font-weight: 700;
  color: #fefdfd;
  white-space: nowrap;
}

.config__last {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 40px;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.config-sidebar {
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 50px;
  z-index: 10;
}

.config-sidebar__row {
  position: relative;
  margin-bottom: 25px;
}

.config-sidebar__icon {
  position: absolute;
  top: 0;
  left: -50px;
}

.config-sidebar__value {
  font-size: 16px;
  line-height: 1;
  color: #363636;
  font-weight: 700;
}

.config-sidebar__value span {
  font-size: 26px;
  font-weight: 500;
}

.config-sidebar__description {
  font-size: 12px;
  color: rgba(54, 54, 54, 0.45);
  text-transform: uppercase;
}

.config-sidebar__button {
  display: block;
  position: relative;
  font-size: 14px;
  color: #003469;
  font-weight: 700;
  line-height: 50px;
  padding-left: 35px;
  padding-right: 41px;
  border: 2px solid #003469;
  margin-left: -50px;
  margin-top: 45px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.config-sidebar__button span {
  position: relative;
}

.config-sidebar__button:hover {
  color: #ffffff;
}

.config-sidebar__button:hover::before {
  height: 100%;
}

.config-sidebar__button:hover::after {
  background-image: url("/assets/img/santaFe/svg/menu_arrow-w.svg");
}

.config-sidebar__button::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background-color: #003469;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.config-sidebar__button::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 27px;
  width: 7px;
  height: 5px;
  background-image: url("/assets/img/santaFe/svg/menu_arrow.svg");
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.x-size {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  color: rgba(54, 54, 54, 0.45);
  margin-top: 45px;
}

.x-size__value {
  width: 65px;
  text-align: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.x-size__arrow-l, .x-size__arrow-r {
  width: 10px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.x-size__line-l, .x-size__line-r {
  position: relative;
  overflow: hidden;
  width: -webkit-calc(50% - 20px - 33px);
  width: calc(50% - 20px - 33px);
  margin: 0 5px;
  height: 2px;
}

.x-size__line-l svg, .x-size__line-r svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.x-size__line-l svg circle, .x-size__line-r svg circle {
  fill: #bab9b8;
}

.x-size__line-l img, .x-size__line-r img {
  display: block;
  width: 800px;
  max-width: 800px;
  height: 1px;
}

.y-size {
  position: absolute;
  top: 0;
  right: 0;
  height: 82%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  color: rgba(54, 54, 54, 0.45);
}

.y-size__value {
  text-align: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin: 10px 0;
}

.y-size__arrow-t, .y-size__arrow-b {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.y-size__line-t, .y-size__line-b {
  overflow: hidden;
  height: -webkit-calc(50% - 15px - 10px);
  height: calc(50% - 15px - 10px);
  margin: 5px 0;
  max-height: 0;
}

.y-size__line-t img, .y-size__line-b img {
  width: 1px;
  height: 280px;
}

/* Выбор цвета */
.colors {
  margin-top: 10px;
}

.colors__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.colors__list li {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.colors__list li:not(:last-of-type) {
  margin-right: 20px;
}

.colors__color div {
  display: block;
  width: 27px;
  height: 27px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.colors__color--1 {
  background-color: #d5d4d4;
}

.colors__color--2 {
  background-color: #e3e1d8;
}

.colors__color--3 {
  background-color: #675d54;
}

.colors__color--4 {
  background-color: #d2e6f0;
}

.colors__color--5 {
  background-color: #111111;
}

.colors__color--6 {
  background-color: #9c3a43;
}

.colors__color--7 {
  background-color: #c4c7c9;
}

.colors__color--8 {
  background-color: #6a6b66;
}

.colors__color--9 {
  background-color: #45545f;
}

.colors__color--10 {
  background-color: #91bdc0;
}

.colors__name {
  font-size: 16px;
  font-weight: 500;
  color: #363636;
  margin-top: 18px;
}

/* Цена */
.price {
  display: none;
  position: relative;
  padding-right: 120px;
}

.price__value {
  font-size: 54px;
  line-height: 1;
  color: #363636;
  font-weight: 700;
  margin-bottom: 10px;
}

.price__value span {
  font-size: 40px;
  font-weight: 500;
}

.price__note {
  font-size: 16px;
  font-weight: 500;
  color: #b7b2b1;
}

.price__arrow {
  display: block;
  position: absolute;
  right: 30px;
  top: 38%;
  width: 48px;
  height: 48px;
  -webkit-transform: rotate(45deg) translateY(-50%);
      -ms-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  border-top: 2px solid #c2c1c0;
  border-right: 2px solid #c2c1c0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.price:hover .price__arrow {
  border-top: 2px solid #363636;
  border-right: 2px solid #363636;
}

.active-color {
  -webkit-transform: scale(1.7) !important;
      -ms-transform: scale(1.7) !important;
          transform: scale(1.7) !important;
}

#colorImg2 {
  -webkit-transition: none;
  transition: none;
  opacity: 0;
}

#colorImg2.animate {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 1;
}

/* Таблица характеристик */
.table {
  font-family: 'HyundaiSansHead';
  background-color: #fff;
}

.table__section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 60px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
}

.table__section--bordered {
  border-bottom: 1px solid #ebebeb;
}

.table__left, .table__right {
  width: 100%;
  max-width: 600px;
}

.table__right {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  max-width: 900px;
}

.table__name {
  width: 350px;
  font-size: 32px;
  line-height: 1;
  color: #363636;
  font-weight: 500;
}

.table__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  font-weight: 500;
  color: #363636;
  margin-bottom: 31px;
}

.table__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 28px;
}

.table__row--mb {
  margin-bottom: 5px;
}

.table__row--center {
  text-align: center;
}

.table__col {
  width: 50%;
}

.table__col--25 {
  width: 25%;
}

.table__col--33 {
  width: 33.33%;
}

.table__col--100 {
  width: 100%;
}

.table__col--center {
  text-align: center;
}

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

.table__description {
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(54, 54, 54, 0.45);
  margin-bottom: 3px;
}

.table__val {
  font-size: 15px;
  line-height: 1;
  color: #231f20;
}

.table__val span {
  font-weight: 500;
}

.table__val--50 {
  display: inline-block;
  width: 49%;
}

.table__val--center {
  text-align: center;
}

.table__note {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 30px;
  padding-bottom: 40px;
  font-size: 14px;
  line-height: 16px;
  color: rgba(35, 31, 32, 0.45);
}

.table__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
  border-bottom: 1px solid #ebebeb;
}

.arrow-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  color: #003469;
  font-weight: 700;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.arrow-link:hover {
  color: #15417a;
}

.arrow-link:hover .arrow-link__square {
  background-color: #15417a;
}

.arrow-link__text {
  margin-right: 20px;
}

.arrow-link__square {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #003469;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.arrow-link__square img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 11px;
  height: 18px;
  margin: auto;
}

section.section--background {
  background-color: #ccc5b9;
}

nav.highlight-nav--full-width {
  max-width: 100%;
}

@media only screen and (max-width: 1450px) {
  .config__img {
    width: 667px;
  }
  .config__name {
    font-size: 180px;
    top: -150px;
  }
}

@media only screen and (max-width: 1300px) {
  .scrollbar {
    width: 160px;
  }
}

@media only screen and (max-width: 1250px) {
  .main-header__sub-holder {
    padding-left: 35px;
    padding-right: 35px;
  }
  .section {
    padding-left: 35px;
    padding-right: 35px;
  }
  .text-block {
    left: 35px;
    top: 25px;
  }
  .text-block__title {
    font-size: 76px;
  }
  .text-block__text {
    font-size: 26px;
  }
  .blue-b {
    padding: 15px 40px;
  }
  .blue-b__price {
    font-size: 40px;
  }
  .blue-b__price span {
    font-size: 26px;
  }
  .blue-b__text {
    font-size: 14px;
  }
  .blue-b__note {
    font-size: 16px;
  }
  .sub-menu {
    padding-left: 35px;
  }
  .sub-menu__test, .sub-menu__conf {
    padding: 0 20px;
  }
  .description {
    left: 35px;
    bottom: 35px;
  }
  .description__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 17px;
  }
  .description__title {
    font-size: 36px;
    margin-bottom: 17px;
  }
  .description__text {
    font-size: 15px;
  }
  .description--right {
    left: auto;
    right: 70px;
  }
  .item-description {
    left: 35px;
    bottom: 25px;
    font-size: 15px;
    line-height: 18px;
  }
  .counter {
    margin-top: 40px;
  }
  .counter__value {
    font-size: 46px;
  }
  .graph {
    bottom: 35px;
    right: 35px;
  }
  .graph__y {
    font-size: 20px;
  }
  .graph__y1 {
    left: 130px;
  }
  .mark {
    width: 150px;
    height: 150px;
  }
  .mark__icon {
    width: 70px;
  }
  .video {
    right: 15%;
  }
  .video__inner {
    width: 210px;
    height: 210px;
  }
  .colors__color div {
    width: 22px;
    height: 22px;
  }
  .colors__list li:not(:last-of-type) {
    margin-right: 22px;
  }
  .colors__name {
    font-size: 15px;
    margin-top: 15px;
  }
  .price__value {
    font-size: 42px;
    margin-bottom: 0;
  }
  .price__value span {
    font-size: 28px;
  }
  .price__note {
    font-size: 15px;
  }
  .config__img {
    width: 667px;
    padding-right: 30px;
  }
  .config__name {
    font-size: 180px;
    top: -150px;
  }
  .config__last {
    padding-left: 35px;
    padding-right: 35px;
  }
  .table__section, .table__note, .table__bottom {
    padding-left: 35px;
    padding-right: 35px;
  }
}
