.blue-panel {
  position: absolute;
  left: 0;
  bottom: 48px;
  background-color: #002C5F;
  color: #fff;
  font-size: 2.0rem;
  line-height: 1.2;
  font-weight: 500;
  padding: 12px 32px 12px 43px;
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.blue-panel__inner div {
  line-height: 37px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.blue-panel__inner div:not(:last-of-type) {
  border-bottom: 1px solid #37608D;
}

.blue-panel__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #AACAE6;
}

.blue-panel__more svg {
  display: block;
  width: 7px;
  height: 12px;
  margin-left: 8px;
}

.blue-panel__inner div:nth-of-type(1) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.blue-panel__inner div:nth-of-type(2) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.blue-panel__inner div:nth-of-type(3) {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}

.blue-panel__inner div:nth-of-type(4) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.blue-panel__inner div:nth-of-type(5) {
  -webkit-transition-delay: 1.25s;
          transition-delay: 1.25s;
}

.active .blue-panel {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.active .blue-panel__inner div {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.active.fadeOut {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
}

@media only screen and (max-width: 1023px) {
  .blue-panel {
    bottom: 81px;
  }
}

@media only screen and (max-width: 767px) {
  .blue-panel {
    font-size: 16px;
    bottom: 48px;
    padding: 0px 13px 0px 18px;
  }

  .blue-panel__inner div {
    line-height: 33px;
  }
}

.df-text-main-16px,
.df-text-small-12px {
  font-family: 'HyundaiSansText';
}

.section-top {
  margin-bottom: 65px;
}

.top-bg {
  background-image: url("/images/promo1/bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 28px;
}

.main-img {
  position: relative;
  height: 545px;
  overflow: hidden;
}

.main-img-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
}

.section-title {
  position: absolute;
  top: 32px;
  left: 40px;
  line-height: 55px;
}

.section-label {
  color: #fff;
  padding: 16px 32px 12px 43px;
  background-color: #002C5F;
  position: absolute;
  left: 0;
  bottom: 32px;
}

.section-label-top {
  margin-bottom: 16px;
}

.section-label-bottom {
  padding-top: 11px;
  padding-right: 50px;
  border-top: 1px solid #37608D;
}

.df-back-link {
  margin-bottom: 28px;
}

.section-product {
  margin-bottom: 20px;
}

.df-download-link {
  color: #002C5F;
  font-size: 16px;
}

.df-download-link:hover,
.df-download-link:focus {
  color: #002C5F;
}

.product-info {
  background-color: #F6F3F2;
  margin-bottom: 16px;
  padding: 28px 80px 30px;
}

.product-info-img {
  text-align: center;
}

.product-info-price {
  color: #666;
  margin-bottom: 32px;
}

.product-info-price h5 {
  font-weight: 400;
}

.product-info-title {
  text-transform: uppercase;
}

.product-info-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6px;
}

.product-info-buttons button {
  width: calc(50% - 4px);
  margin-bottom: 8px;
  padding: 8px 0;
}

.product-info-buttons a {
  width: calc(50% - 4px);
  margin-bottom: 8px;
  padding: 8px 0;
}

.product-desc {
  width: 800px;
  margin: 0 auto 60px;
}

.star {
  width: 16px;
  height: 16px;
  background-color: #c4c4c4;
  display: inline-block;
  margin-right: 16px;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  vertical-align: top;
  line-height: 22px;
  font-size: 16px;
  position: absolute;
  top: 2px;
  left: 0;
}

.product-desc-footer {
  position: relative;
  width: 800px;
  margin: 40px auto 56px;
}

.product-desc-footer-text {
  display: inline-block;
  padding-left: 32px;
}

.product-info-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product-info-mobile {
  display: none;
}

@media (max-width: 1599px) {
  .main-img {
    height: 440px;
  }
}

@media (max-width: 1024px) {
  .section-label {
    bottom: 80px;
  }

  .product-info {
    padding: 23px 0px 30px;
  }

  .df-button--small {
    padding: 8px 0px;
  }

  h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
  }

  .product-desc {
    width: 512px;
    margin: 40px auto 60px;
  }

  .top-bg {
    padding-top: 31px;
  }

  .df-back-link {
    margin-bottom: 24px;
  }

  .product-desc-footer {
    margin: 32px auto 56px;
  }
}

@media (max-width: 767px) {
  .section-title {
    width: 45%;
    line-height: 40px;
  }

  .section-title br {
    display: none;
  }

  .section-label {
    bottom: 48px;
  }

  .section-top {
    margin-bottom: 40px;
  }

  .top-bg {
    padding-top: 14px;
  }

  .df-back-link {
    margin-bottom: 12px;
  }

  h4 {
    font-size: 20px;
    line-height: 24px;
  }

  .product-desc {
    width: 512px;
    margin: 36px auto 40px;
  }

  .product-info-img {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .product-info-title,
  .product-info-price {
    display: none;
  }

  .product-info-mobile {
    display: block;
  }

  .product-info-mobile .product-info-title,
  .product-info-mobile .product-info-price {
    display: block;
  }

  .star {
    top: 5px;
  }

  .section-label-top {
    margin-bottom: 8px;
  }

  .section-label-bottom {
    padding-top: 8px;
  }

  .product-info-img {
    margin-bottom: 25px;
  }
}

@media (max-width: 640px) {
  .main-img {
    height: 120vw;
  }

  .section-title {
    width: 50%;
  }

  .product-desc {
    width: 100%;
    margin-bottom: 32px;
  }

  .section-title {
    left: 16px;
  }

  .section-label {
    padding: 8px 16px 8px 16px;
  }

  .section-label-bottom {
    padding-right: 40px;
  }

  .product-info-buttons button {
    font-size: 14px;
  }

  .product-info {
    margin-bottom: 27px;
  }

  .product-desc-footer-text {
    font-size: 14px;
    line-height: 21px;
    padding-left: 32px;
  }

  .main-img {
    background-position: center left;
  }

  .product-info-buttons button {
    padding: 6px 0;
  }
}

@media (max-width: 500px) {
  .section-title {
    width: 75%;
  }
}

@media (max-width: 375px) {
  .section-title {
    width: 90%;
  }

  .main-img {
    background-position: center center;
  }
}

