.climate-journey {

  .journey-overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    overflow: hidden;
    background-color: rgba(38,46,67,0);
    pointer-events: none;
    z-index: 10000;
    transition: background-color 300ms ease-out;
  }
  .journey-overlay._open {
      background-color: rgba(38,46,67,0.5);
      pointer-events: all;
  }
  .more-info-box {
      width: 100%;
      max-width: 560px;
      min-width: 300px;
      background: #fff;
      position: absolute;
      top: 0;
      height: 100%;
      right: 0;
      transform: translateX(100%);
      transition: transform 300ms ease-out;
      padding: 60px 20px 91px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }
  .more-info-box-wrapper {
      width: 100%;
  }
  .more-info-icon {
      width: 80px;
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 30px;
  }
  .more-info-icon svg {
      width: 100%;
      height: 100%;
  }
  .more-info-box._open {
      transform: translateX(0);
  }
  .more-info-box h3 {
      font-size: 2.6rem;
      line-height: 3.2rem;
  }
  .more-info-box p,
  .more-info-box li {
      font-size: 1.8rem;
      color: $primary-color;
  }
  .more-info-box ul,
  .more-info-box ol {
      padding-left: 20px;
  }
  .more-info-box ol li::marker {
      font-weight: bold;
      font-size: 1.4rem;
  }
  .more-info-box ul li {
      list-style: disc;
  }
  .more-info-box .std-button {
      display: inline-block;
      margin-top: 20px;
      min-width: 188px;
      height: 48px;
      border-radius: 24px;
      line-height: 4.8rem;
      transition: opacity 250ms ease-out;
  }
  .more-info-box .std-button:hover {
      opacity: 0.85;
  }
  .more-info-box .std-button:active {
      opacity: 0.3;
  }
  .more-info-box .slide-action {
      display: flex;
      justify-content: center;
  }
  .swiper-pagination-bullet {
      width: 6px;
      height: 6px;
      background: $gray-bluish;
      margin: 0 4px;
      opacity: 1;
  }

  .swiper-container .slide-content {
      max-width: 320px;
      margin: auto;
  }
  .swiper-container .slide-content a {
      text-decoration: underline;
  }
  .swiper-container .slide {
      opacity: 0;
      transition: opacity 200ms linear;
  }
  .swiper-container .swiper-slide-active {
      opacity: 1;
  }
  .journey-button.close-button {
      background-color: rgba(235,241,244,1);
      color: $primary-color;
      position: absolute;
      top: 20px;
      right: 25px;
      margin: 0;
  }
  .slides-nav {
      display: flex;
      justify-content: space-between;
      width: 100%;
      max-width: 320px;
      align-items: center;
      position: absolute;
      bottom: 32px;
  }
  .slide-nav-btn {
      display: block;
      position: relative;
      background-color: rgba(235,241,244,1);
      color: $primary-color;
      width: 54px;
      height: 54px;
      border-radius: 50%;
  }
  .slide-nav-btn:before {
      content: '';
      display: block;
      position: absolute;
      top: 21px;
      left: 18px;
      width: 12px;
      height: 12px;
      border-top: 1px solid $primary-color;
      border-right: 1px solid $primary-color;
      transform: rotate(45deg);
  }
  .slide-nav-btn.slide-prev:before {
      transform: rotate(-135deg);
      left: 22px;
  }
  .journey-button.close-button:hover,
  .slide-nav-btn:hover {
      background-color: rgba(235,241,244,0.85);
  }
  .journey-button.close-button:active,
  .slide-nav-btn:active {
      background-color: rgba(235,241,244,0.3);
  }

  .slide-dots {
    flex: 1;
    text-align: center;
  }

  .image-title {
      font-weight: bold;
      margin-bottom: 3px;
  }
  .image-link a {
      color: $white;
      text-decoration: underline;
  }
}
