.hotspot_component {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .hotspot_component {
    display: flex;
    flex-direction: column;
  }
  .hotspot_component:before {
    content: "";
    pointer-events: none;
    width: 340px;
    position: absolute;
    z-index: 2;
    top: -3rem;
    bottom: -3rem;
    left: 0;
    box-shadow: 0 0 1.3rem 0 rgba(21, 28, 53, 0.37);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hotspot_component {
    height: 445px;
  }
}
@media (min-width: 1025px) {
  .hotspot_component {
    height: 595px;
  }
}

.hotspot_area img {
  width: 100%;
}
@media (min-width: 768px) {
  .hotspot_area img {
    max-width: 100%;
    height: revert-layer;
  }
}

.hotspot_content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background: #FFFFFF;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .hotspot_content {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 340px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hotspot_content {
    left: 182px;
  }
}

.hotspot_grab {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: auto;
  min-width: 20rem;
  padding: 0;
  cursor: grab;
  overflow: hidden;
  background: #fff;
}
@media (min-width: 576px) {
  .hotspot_grab {
    height: auto;
    max-height: 40rem;
    min-width: unset;
  }
}
@media (min-width: 768px) {
  .hotspot_grab {
    max-height: 52rem;
    height: auto;
  }
}
@media (min-width: 768px) {
  .hotspot_grab {
    height: 100%;
    width: 100%;
    min-width: unset;
    border-left: 2px solid #CCCCCD;
    background: #E5E5E5;
  }
}

.hotspot__header {
  background: #CCCCCD;
  position: relative;
  z-index: 2;
}
@media (min-width: 1025px) {
  .hotspot__header {
    padding: 20px 40px;
    max-width: 340px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hotspot__header {
    padding: 15px 20px 17px 20px;
    max-width: 182px;
  }
}

.hotspot__header__title {
  font-size: 14px;
  line-height: 25px;
  font-weight: 300;
  letter-spacing: 0.2px;
  text-align: left;
  margin: 0;
}
@media (min-width: 1025px) {
  .hotspot__header__title {
    font-size: 20px;
  }
}

.hotspot__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0.9rem;
  position: absolute;
  z-index: 0;
  left: -999.9rem;
  margin-top: -2.7rem;
  margin-left: -2.7rem;
  cursor: pointer;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  backface-visibility: hidden;
  box-sizing: content-box;
}
.hotspot__item:hover, .hotspot__item.hover, .hotspot__item.active {
  z-index: 2;
  opacity: 1;
}
.hotspot__item:hover:before, .hotspot__item.hover:before, .hotspot__item.active:before {
  transform: scale(1.62);
}
@media (min-width: 768px) {
  .hotspot__item:hover:before, .hotspot__item.hover:before, .hotspot__item.active:before {
    transform: scale(1.25);
  }
}
.hotspot__item:hover:after, .hotspot__item.hover:after, .hotspot__item.active:after {
  left: 0;
  bottom: 0;
  right: 0;
  top: 0px;
  color: #fff;
  text-align: center;
  font-family: EMprint;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
@media (min-width: 768px) {
  .hotspot__item:hover:after, .hotspot__item.hover:after, .hotspot__item.active:after {
    font-size: 22px;
  }
}
.hotspot__item:hover span:before, .hotspot__item.hover span:before, .hotspot__item.active span:before {
  width: 110%;
  height: 110%;
  border: 5px solid white;
  animation-name: scaleInPulse;
  animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1.25);
  /* animation-timing-function: cubic-bezier(.36, .11, .89, .32); */
  animation-duration: 2.25s;
  animation-timing-function: ease-in-out;
  /* animation-timing-function: cubic-bezier(0, .5, .300, 1); */
  animation-iteration-count: infinite;
}
@media (max-width: 767.5px) {
  .hotspot__item:hover span:before, .hotspot__item.hover span:before, .hotspot__item.active span:before {
    width: 175%;
    height: 175%;
  }
}
.hotspot__item:hover span:after, .hotspot__item.hover span:after, .hotspot__item.active span:after {
  transform: scale(1.5);
  background: #0D6EFD;
}
@media (min-width: 768px) {
  .hotspot__item:hover span:after, .hotspot__item.hover span:after, .hotspot__item.active span:after {
    transform: scale(1.3);
  }
}

.hotspot__item:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  left: 0.9rem;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.43);
  box-shadow: 0 -3px 12px 0 rgba(16, 39, 51, 0.05);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1) 50ms;
  backface-visibility: hidden;
}

.hotspot__item:after {
  content: attr(data-numb);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 0.2rem;
  padding-right: 0.1rem;
  position: absolute;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.3px;
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  backface-visibility: hidden;
}

.hotspot__item span:after {
  z-index: 1;
  top: 0.6rem;
  right: 0.6rem;
  bottom: 0.6rem;
  left: 0.6rem;
  transform: scale(1);
  background: #0C479D;
  border: 2px solid white;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.hotspot__item span:after,
.hotspot__item span:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  backface-visibility: hidden;
}

.hotspot__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: -1;
  top: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  left: 0.9rem;
  backface-visibility: hidden;
}

.hotspot_area {
  display: flex;
  justify-content: flex-start;
  flex: 1 1 100%;
  position: relative;
}
@media (min-width: 768px) {
  .hotspot_area:after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: -999.9rem;
    right: -999.9rem;
    bottom: -999.9rem;
    left: -999.9rem;
    opacity: 0;
    background: #031125;
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .has-overlay .hotspot_area:after {
    opacity: 0.15;
  }
  .has-content .hotspot_area:after {
    opacity: 0.38;
  }
}

.hotspot__aside {
  background: #E5E5E5;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .hotspot__aside {
    flex-grow: 1;
    background: #E5E5E5;
    max-width: 340px;
    padding: 30px 1rem 30px 0;
    z-index: 2;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #d4d0d0 #f7f7f8;
  }
  .hotspot__aside::-webkit-scrollbar {
    width: 4px;
  }
  .hotspot__aside::-webkit-scrollbar-track {
    background: #f7f7f8;
  }
  .hotspot__aside::-webkit-scrollbar-thumb {
    border: 0;
    border-radius: 0;
    background-color: #d4d0d0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hotspot__aside {
    max-width: 182px;
    height: 395px;
    padding: 20px;
  }
}
@media (min-width: 768px) {
  .hotspot__aside .swiper-wrapper {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: unset;
    padding-left: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hotspot__aside .swiper-wrapper {
    padding-left: 0;
  }
}
.hotspot__aside__item {
  padding: 1.1rem 0.3rem;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #5a5a5a;
  font-size: 16px;
  letter-spacing: 0.16px;
  cursor: pointer;
  line-height: 20px;
}
@media (min-width: 768px) {
  .hotspot__aside__item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s, transform 0.5s;
  }
  .hotspot__aside__item:nth-child(1) {
    transition-delay: 0.27s;
  }
  .hotspot__aside__item:nth-child(2) {
    transition-delay: 0.29s;
  }
  .hotspot__aside__item:nth-child(3) {
    transition-delay: 0.31s;
  }
  .hotspot__aside__item:nth-child(4) {
    transition-delay: 0.33s;
  }
  .hotspot__aside__item:nth-child(5) {
    transition-delay: 0.35s;
  }
  .hotspot__aside__item:nth-child(6) {
    transition-delay: 0.37s;
  }
  .hotspot__aside__item:nth-child(7) {
    transition-delay: 0.39s;
  }
  .hotspot__aside__item:nth-child(8) {
    transition-delay: 0.41s;
  }
  .hotspot__aside__item:nth-child(9) {
    transition-delay: 0.43s;
  }
  .hotspot__aside__item:nth-child(10) {
    transition-delay: 0.45s;
  }
  .hotspot__aside__item:nth-child(11) {
    transition-delay: 0.47s;
  }
  .hotspot__aside__item:nth-child(12) {
    transition-delay: 0.49s;
  }
  .hotspot__loaded .hotspot__aside__item {
    opacity: 1;
    color: #2B2626;
    transform: translateY(0);
    line-height: 20px;
    font-weight: 300;
  }
}
@media (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .hotspot__loaded .hotspot__aside__item {
    margin-bottom: 8px;
  }
}
@media (min-width: 768px) {
  .hotspot__aside__item {
    width: auto;
    padding: 0 0 0 5rem;
    margin-bottom: 20px;
    text-align: left;
  }
  .hotspot__aside__item:last-child {
    margin-bottom: 0;
    z-index: -1;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hotspot__aside__item {
    padding: 0 0 0 2.8rem;
    font-size: 14px;
  }
}
.hotspot__aside__item:after {
  content: "";
  pointer-events: none;
  width: 0.3rem;
  height: 0.3rem;
  position: absolute;
  z-index: 2;
  top: -0.2rem;
  left: 50%;
  margin-left: -0.8rem;
  border-radius: 100%;
  background-color: transparent;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 768px) {
  .hotspot__aside__item:after {
    top: 0.4rem;
    left: 4.89rem;
    margin-left: 0;
  }
}
.hotspot__aside__item.hover, .hotspot__aside__item.active, .hotspot__aside__item.swiper-slide-active {
  font-weight: 600;
  color: #2B2626;
  line-height: 20px;
}
.hotspot__aside__item.hover .icon, .hotspot__aside__item.active .icon, .hotspot__aside__item.swiper-slide-active .icon {
  color: #fff;
  width: 28px;
  height: 28px;
}
@media (min-width: 768px) {
  .hotspot__aside__item.hover .icon, .hotspot__aside__item.active .icon, .hotspot__aside__item.swiper-slide-active .icon {
    top: -0.1rem;
  }
}
.hotspot__aside__item.hover .icon:before, .hotspot__aside__item.active .icon:before, .hotspot__aside__item.swiper-slide-active .icon:before {
  opacity: 1;
}
.hotspot__aside .title {
  display: inline-block;
}
@media (max-width: 767.5px) {
  .hotspot__aside .title {
    font-size: 14px;
    padding-top: 30px;
  }
}
.hotspot__aside .title br {
  display: none;
}
@media (min-width: 768px) {
  .hotspot__aside .title br {
    display: inline-block;
  }
}
.hotspot__aside .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  position: absolute;
  top: -4.7rem;
  left: 50%;
  margin-left: -1.9rem;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #2b2626;
  letter-spacing: 0.16px;
  transition: color 0.3s;
}
@media (min-width: 1025px) {
  .hotspot__aside .icon {
    top: 0rem;
    left: 25px;
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hotspot__aside .icon {
    left: 28%;
    font-size: 14px;
    top: 0;
  }
}
.hotspot__aside .icon:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s;
  border-radius: 100%;
  background: #0D6EFD;
}

.hotspot__aside__swiper {
  padding-top: 6.6rem;
  position: relative;
}
@media (min-width: 768px) {
  .hotspot__aside__swiper {
    padding-top: 0;
  }
}
.has-mobile-content .hotspot__aside__swiper {
  padding: 0;
}
.hotspot__aside__swiper:before {
  content: "";
  width: 100%;
  height: 0.1rem;
  position: absolute;
  z-index: 0;
  top: 6.5rem;
  background: rgba(38, 45, 49, 0.2);
}
.has-mobile-content .hotspot__aside__swiper:before {
  display: none;
}
@media (min-width: 768px) {
  .hotspot__aside__swiper:before {
    width: 0.1rem;
  }
  .hotspot__loaded .hotspot__aside__swiper:before {
    opacity: 1;
  }
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.hotspot__main {
  display: block;
  background: transparent;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #929fa4 #f7f7f8;
  overflow-y: unset;
}
.hotspot__main::-webkit-scrollbar {
  width: 4px;
}
.hotspot__main::-webkit-scrollbar-track {
  background: #f7f7f8;
}
.hotspot__main::-webkit-scrollbar-thumb {
  border: 0;
  border-radius: 0;
  background-color: #929fa4;
}
@media (min-width: 768px) {
  .hotspot__main {
    display: none;
    max-height: 450px;
    width: 323px;
    position: absolute;
    z-index: 0;
    top: 0;
    left: -12rem;
  }
  .has-content .hotspot__main {
    display: block;
    left: 340px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hotspot__main {
    min-height: 360px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hotspot__main {
    width: 200px;
  }
}
@media (min-width: 992px) and (max-width: 1024px) {
  .hotspot__main {
    width: 220px;
  }
}
@media (min-width: 1025px) {
  .hotspot__main {
    max-height: 470px;
    min-height: 420px;
  }
}

.hotspot__content {
  display: none;
  flex-direction: column;
  width: 100%;
  background: #fff;
  box-shadow: 0.2rem 0 1rem 0 rgba(21, 28, 53, 0.27);
}
@media (min-width: 768px) {
  .hotspot__content {
    box-sizing: border-box;
    display: flex;
    padding: 14px 30px 30px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    height: fit-content;
  }
  .hotspot__content.active {
    opacity: 1;
    visibility: visible;
  }
}
.has-mobile-content .hotspot__content.active {
  display: flex;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hotspot__content {
    padding: 14px 15px 20px;
  }
}
@media (min-width: 1025px) {
  .hotspot__content {
    padding: 30px;
  }
}

.hotspot__content__title {
  padding: 0px 0px 20px;
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  border-bottom: 1px solid #CCCCCD;
  margin-bottom: 20px;
}
.hotspot__content__title h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  padding-top: 10px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hotspot__content__title h2 {
    font-size: 18px;
  }
}

.hotspot__content__close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 1rem;
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  color: #000;
}
.hotspot__content__close:before, .hotspot__content__close:after {
  content: "";
  width: 1rem;
  height: 0.1rem;
  position: absolute;
  background-color: #000;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.hotspot__content__close:before {
  transform: rotate(45deg);
}
.hotspot__content__close:after {
  transform: rotate(-45deg);
}
.hotspot__content__close:hover:before, .hotspot__content__close:hover:after {
  background-color: #000;
}

.hotspot__footer {
  padding: 16px;
  background-color: #217097;
  position: relative;
}
.hotspot__footer a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  padding: 16px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background-color: #343a40;
}
.hotspot__footer a:hover {
  background-color: #181a1b;
}
.hotspot__footer a:focus {
  background-color: #4a5764;
}
@media (min-width: 768px) {
  .hotspot__footer {
    background-color: #fcfcfc;
    padding: 0 32px 16px;
    max-width: 340px;
  }
  .hotspot__footer:after {
    position: absolute;
    right: 1rem;
    bottom: 100%;
    left: 0;
    height: 10rem;
    z-index: 1;
    pointer-events: none;
    content: "";
    box-shadow: inset 0 -8rem 3rem -6rem #fcfcfc;
  }
}

.has-mobile-content .hotspot__slider {
  height: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .has-mobile-content .hotspot__slider {
    height: unset;
    overflow: hidden;
  }
}

.hotspot__slider__nav {
  position: relative;
  display: none;
  justify-content: space-between;
}
.has-mobile-content .hotspot__slider__nav {
  display: none;
}
.hotspot__slider__nav .swiper-button.swiper-button--next {
  position: relative;
  top: 3px;
}
.hotspot__slider__nav .swiper-button {
  transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.hotspot__slider__nav .swiper-button:hover {
  color: black;
}

.hotspot__tab__close {
  background: #217097;
  text-align: right;
  position: relative;
  padding: 10px 32px 1px 0;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: none;
  height: 3rem;
}
.has-mobile-content .hotspot__tab__close {
  display: block;
}
.hotspot__tab__close span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 10px;
  right: 6px;
}
.hotspot__tab__close span:before, .hotspot__tab__close span:after {
  content: "";
  width: 16px;
  height: 0.2rem;
  position: absolute;
  background-color: #fff;
}
.hotspot__tab__close span:before {
  transform: rotate(45deg);
}
.hotspot__tab__close span:after {
  transform: rotate(-45deg);
}

.hotspot__titles {
  padding: 24px 16px;
  background: #e5e5e5;
}
@media (min-width: 768px) {
  .hotspot__titles {
    display: none;
  }
}
.hotspot__titles__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s;
}
.hotspot__titles__item.active {
  height: auto;
  opacity: 1;
}
.hotspot__titles__item h2 {
  margin-right: 16px;
  font-size: 18px;
  font-weight: 600;
}
.hotspot__titles__button {
  white-space: nowrap;
}
.hotspot__titles a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  padding: 16px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background-color: #217097;
}

.hotspot__content__image {
  display: none;
}
.hotspot__content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  .hotspot__content__image {
    display: block;
    height: 246px;
  }
}

.hotspot__card__image {
  width: 130px;
}
@media (min-width: 768px) {
  .hotspot__card__image {
    height: unset;
    width: 160px;
  }
}
.hotspot__card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotspot__card__title {
  font-weight: 600;
  color: #217097;
  font-size: 16px;
}
.hotspot__card__title + .hotspot__button {
  float: right;
  margin-top: 0.9rem;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.hotspot__button {
  display: block;
  text-decoration: none;
  font-size: 13px;
  padding: 8px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background-color: #217097;
}
.hotspot__button:hover {
  background-color: #0d5578;
  color: #fff;
  text-decoration: none;
}
.hotspot__button:focus {
  background-color: #083c55;
  color: #fff;
  text-decoration: none;
}

.hotspot__tabs {
  display: flex;
  z-index: 2;
  position: sticky;
  top: 53px;
  min-height: 44px;
  background: #f7f7f8;
  border-bottom: 1px solid #262d3133;
  transition: border-top 0.5s, box-shadow 0.5s;
}
.hotspot__tabs__item {
  display: block;
  font-size: 14px;
  width: auto;
  padding: 12px 0 8px;
  text-align: center;
  cursor: pointer;
  margin-right: 16px;
}
.hotspot__tabs__item.active, .hotspot__tabs__item:hover {
  font-weight: 600;
}
.has-mobile-content .hotspot__tabs__item.active, .has-mobile-content .hotspot__tabs__item:hover {
  color: #3f4959;
  opacity: 1;
}
.hotspot__tabs__item.active {
  border-bottom: 2px solid #217097;
}
.scroll-end .hotspot__tabs {
  border-top: 1px solid #262d3133;
  box-shadow: 0 1rem 0.5rem -0.5rem rgba(21, 28, 53, 0.13);
}
.has-mobile-content .hotspot__tabs {
  background: #fff;
}

.hotspot__rte__content {
  font-size: 13px;
}
@media (min-width: 768px) {
  .hotspot__rte__content {
    font-size: 16px;
  }
}

.has-mobile-content .hotspot__header,
.has-mobile-content .hotspot_content,
.has-mobile-content .hotspot__titles,
.has-mobile-content .hotspot__content__close {
  display: none;
}
@media (min-width: 768px) {
  .has-mobile-content .hotspot__header,
.has-mobile-content .hotspot_content,
.has-mobile-content .hotspot__titles,
.has-mobile-content .hotspot__content__close {
    display: block;
  }
}

@keyframes scaleInPulse {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  25% {
    transform: scale(0.25);
    opacity: 0.9;
  }
  50% {
    transform: scale(0.5);
    opacity: 0.7;
  }
  75% {
    transform: scale(0.75);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
/*new changes*/
.popper-pop {
  display: none;
  padding: 20px;
  font-size: 13px;
  display: none;
}

.popper-pop a {
  font-size: 16px;
  font-weight: 300;
  display: block;
  /*text-align: center;*/
  text-decoration: none;
}

.popper-pop[data-popper-reference-hidden] {
  visibility: hidden;
  pointer-events: none;
}

.popper-pop[show-popper] {
  display: block;
  z-index: 9999;
}

/*keep popper visible in the Divi Builder for editing*/
#et-fb-app .popper-pop {
  display: block;
}

/*build the arrow targeting the divider with class 'popper-arrow'*/
.popper-arrow,
.popper-arrow::before {
  width: 16px;
  height: 16px;
  background: #fff;
  position: absolute;
}

.popper-arrow {
  visibility: hidden;
}

.popper-arrow::before {
  visibility: visible;
  content: "";
  transform: rotate(45deg);
}

/*position arrow using popper.js data-popper-placement attribute*/
.popper-pop[data-popper-placement^=top] .popper-arrow {
  bottom: -4px;
}

.popper-pop[data-popper-placement^=bottom] .popper-arrow {
  top: -4px;
}

.popper-pop[data-popper-placement^=left] .popper-arrow {
  right: -9px;
}

.popper-pop[data-popper-placement^=right] .popper-arrow {
  left: -8px;
}

/*hide arrow when reference outside of viewport*/
.popper-pop[data-popper-reference-hidden] .popper-arrow::before {
  visibility: hidden;
}

.hotspotItem_rte {
  height: fit-content;
  overflow-y: auto;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #EEEEEE #f7f7f8;
}
.hotspotItem_rte::-webkit-scrollbar {
  width: 4px;
}
.hotspotItem_rte::-webkit-scrollbar-track {
  background: #f7f7f8;
}
.hotspotItem_rte::-webkit-scrollbar-thumb {
  border: 0;
  border-radius: 0;
  background-color: #EEEEEE;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hotspotItem_rte {
    max-height: 120px;
  }
}
.hotspotItem_rte p {
  margin: 0;
}
@media (min-width: 1025px) {
  .hotspotItem_rte {
    max-height: 160px;
  }
}

.hotspot__content__copy p,
.hotspot__content__copy span,
.hotspot__content__copy img {
  margin-bottom: 10px;
}

.hotspot__header {
  order: 1;
}

.hotspot_content {
  order: 3;
}

.hotspot__aside {
  order: 2;
}

.hotspot__tab__close {
  order: 4;
}

.hotspot__titles {
  order: 5;
}

.hotspot__main {
  order: 6;
}

.hotspot_btn_container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  column-gap: 20px;
  row-gap: 20px;
  margin-top: 20px;
  justify-content: flex-start;
  width: 100%;
}
.hotspot_btn_container .hotspot_btn {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: flex-start;
  white-space: normal;
  word-break: keep-all;
  width: auto;
  margin: 0;
}
.hotspot_btn_container .hotspot_btn a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
  padding: 8px 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.hotspot_btn_container .hotspot_btn.btn_primary > a, .hotspot_btn_container .hotspot_btn.btn_secondary a {
  background-color: #0c479d;
  color: #fff;
  border: 1px solid #0c479d;
}
.hotspot_btn_container .hotspot_btn.btn_primary > a:hover, .hotspot_btn_container .hotspot_btn.btn_secondary a:hover {
  background-color: #3474d9;
}
.hotspot_btn_container .hotspot_btn.btn_tertiary a {
  background-color: #5a5a5a;
  color: #fff;
  border: 1px solid #5a5a5a;
}
.hotspot_btn_container .hotspot_btn.btn_outline a {
  color: #0c479d;
  background: #fff;
  border: 1px solid #0c479d;
}
.hotspot_btn_container .hotspot_btn.btn_outline a:hover {
  border-color: #005cbf;
  color: #3474d9;
}
.hotspot_btn_container .hotspot_btn.btn_outline a img {
  margin: 0 0 0 8px;
  max-height: 10.5px;
  max-width: 10.5px;
  width: 100%;
  height: 100%;
}

.hotspot__titles {
  padding: 20px;
}

.hotspot__content__copy .hotspotItem_rte p {
  font-size: 16px;
  font-weight: 300;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hotspot__content__copy .hotspotItem_rte p {
    font-size: 14px;
  }
}

.hotspotItem_rte h2 {
  font-size: 20px;
}
@media (min-width: 768px) {
  .hotspotItem_rte h2 {
    font-size: 20px;
  }
}

.tab-list-items-hotspot .content-list-items {
  margin: 0;
  padding: 0;
  border: 0;
}

@media (max-width: 767.5px) {
  .popper-pop[show-popper],
.hotspot__main,
.hotspot__item {
    display: none;
  }

  .hotspot__item.active,
.hotspot__item.hover,
.hotspot__item:hover {
    display: block;
  }

  .hotspot__slider__nav {
    display: flex;
  }
  .hotspot__slider__nav .swiper-button.swiper-button--next {
    position: relative;
    top: 3px;
  }

  .hotspot_btn_container {
    flex-direction: row;
    margin-top: 20px;
    width: auto;
  }

  .hotspot_btn_container .hotspot_btn {
    gap: 8px;
    width: 100%;
  }

  .hotspot__content__close {
    display: none;
  }

  .hotspot__aside__item {
    padding: 1.85rem 0.3rem;
  }

  .hotspotItem_rte {
    height: auto;
  }

  .hotspot__header__title {
    color: var(--grays-dark-gray-1, #2B2626);
    text-align: center;
    font-family: EMprint;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    margin: 0;
    padding: 15px;
  }

  .hotspot__aside__swiper:before {
    top: 5rem;
  }

  .hotspot__content__copy .hotspotItem_rte p {
    margin: 0;
    padding-top: 20px;
    color: var(--grays-dark-gray-1, #2B2626);
    font-family: EMprint;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
  }

  .hotspot__content__title {
    padding-bottom: 20px;
    position: sticky;
    top: 0;
    z-index: 2;
    background: #E5E5E5;
    color: var(--grays-dark-gray-1, #2B2626);
    font-family: EMprint;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    border-bottom: 1px solid #CCCCCD;
    margin-bottom: 0px;
  }

  .hotspot__aside .icon:before {
    position: absolute;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
    background: #0D6EFD;
    flex-shrink: 0;
  }

  .hotspot__aside__swiper {
    padding-top: 0rem;
  }

  .hotspot__aside .icon {
    left: 55%;
    top: -0.95rem;
    color: var(--grays-dark-gray-1, #2B2626);
    text-align: center;
    font-family: EMprint;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    width: 26.319px;
    height: 26.319px;
    position: relative;
  }

  .hotspot__aside__item {
    padding: 1.85rem 0.3rem;
  }

  .hotspotItem_rte h2 {
    color: var(--grays-dark-gray-1, #2B2626);
    font-family: EMprint;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin: 20px 0 0 0;
  }

  .hotspotItem_rte a {
    color: var(--colors-dark-blue, #0C479D);
    font-family: EMprint;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 20px;
    text-decoration-line: underline;
    background: inherit;
    text-align: left;
    padding: 0;
  }

  .tab-list-items-hotspot .content-list-items {
    margin: 0;
    padding: 0;
    border: 0;
  }

  .swiper-wrapper {
    padding-left: 4px;
    padding-top: 10px;
  }

  .hotspot__titles__item h2 {
    font-size: 20px;
  }
}
@media screen and (min-width: 577px) and (max-width: 767.5px) {
  .hotspot__slider__nav {
    display: flex;
    transform: translateY(50%);
    margin-bottom: -2.4rem;
  }
}
@media (max-width: 576px) {
  .hotspot__slider__nav {
    display: flex;
    transform: translateY(50%);
    margin-bottom: -2.4rem;
  }
}

/*# sourceMappingURL=enhanced-hotspot.css.map */
