/*!*****************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./assets/src/scss/widgets/hotspot-slider.css ***!
  \*****************************************************************************************************************************************************************/
.hotspotSlider .desktop-image {
  aspect-ratio: 2/1;
  object-fit: cover;
  width: 100%;
}

.hotspotSlider .mobile-image {
  aspect-ratio: 0.68;
  object-fit: cover;
  display: none;
  width: 100%;
}

.hotspotSlider * {
  box-sizing: border-box;
}

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

.hotspotSlider__trigger {
  border-radius: 50% !important;
  border: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  padding: 0 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none !important;
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
.hotspotSlider__trigger::after {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  left: calc(50% - 7px);
  right: calc(50% - 7px);
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.hotspotSlider__trigger_active {
  background-color: rgba(0, 0, 0, 0.7);
}

.hotspotSlider__trigger_active::after {
  width: 26px;
  height: 26px;
  left: calc(50% - 13px);
  right: calc(50% - 13px);
}

.hotspotSlider__container {
  width: 37.5%;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 30px;
  position: absolute;
}

.hotspotSlider__slide {
  display: none;
  height: 100%;
  border-radius: 12px;
}

.hotspotSlider__slideContent {
  overflow: auto;
  height: 100%;
}

.hotspotSlider__textContent {
  margin-top: 20px;
}

.hotspotSlider__slideContent_reverse {
  flex-direction: column-reverse;
}

.hotspotSlider__slide_active {
  display: block;
}

.hotspotSlider__navButton {
  position: absolute;
  bottom: 50px;
  display: none;
}

.hotspotSlider__container_active .hotspotSlider__navButton {
  display: block;
  border: none !important;
  outline: none !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  padding: 0;
  width: 12px;
  height: 20px;
}

.hotspotSlider__navButton:focus {
  background-color: transparent !important;
  outline: none !important;
  color: #E36 !important;
}

.hotspotSlider__navButton_previous {
  left: 50px;
  transform: rotate(180deg);
}

.hotspotSlider__navButton_next {
  right: 50px;
}

.hotspotSlider__closeButton {
  position: absolute;
  top: 60px;
  right: 60px;
  display: none;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  width: 16px;
  padding: 0 !important;
  height: 16px;
  border-radius: 0 !important;
}

.hotspotSlider__container_active .hotspotSlider__closeButton {
  display: block;
}

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

.hotspotSlider__video {
  width: 100%;
}

@media screen and (max-width: 1080px) {
  .hotspotSlider__container {
    padding: 15px;
  }
  .hotspotSlider__trigger_active::after {
    width: 20px;
    height: 20px;
    left: calc(50% - 10px);
    right: calc(50% - 10px);
  }
  .hotspotSlider__closeButton {
    top: 30px;
    right: 30px;
  }
  .hotspotSlider__navButton {
    bottom: 30px;
  }
  .hotspotSlider__navButton_previous {
    left: 30px;
  }
  .hotspotSlider__navButton_next {
    right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .hotspotSlider .mobile-image {
    display: block;
  }
  .hotspotSlider .desktop-image {
    display: none;
  }
  .hotspotSlider__container {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    margin: 20px;
    z-index: -1;
    padding: 0;
  }
  .hotspotSlider__container_active {
    z-index: 2;
  }
  .hotspotSlider__triggers {
    width: 100%;
  }
}
