.modal-hotspot {
  background: #fcfcfc;
  position: absolute;
  overflow: hidden;
  top: 300px;
  left: 300px;
  min-width: 280px;
  -webkit-box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
  -moz-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px rgb(0 0 0 / 25%);
  border-radius: 6px;
  z-index: 99;
  cursor: default;
}

.modal-hotspot-inner-container {
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
}

.hotspot-modal-main-content {
  padding: 10px;
  font-size: 14px;
  line-height: 18px;
  color: #1e1d21;
  flex-grow: 1;
  width: 300px;
}

.modal-hotspot.adjsLeft {
  left: auto !important;
  right: 10px;
}

.modal-hotspot.adjsTop {
  top: auto !important;
  /* bottom: 10px; */
}

.ht-center {
  max-height: 125px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ht-header {
  font-size: 12px;
  min-height: 12px;
  position: relative;
}

button.ht-signup-link {
  background-color: transparent;
  border: 0;
  padding: 0;
  color: var(--primary-color);
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: all 0.08s ease-in-out;
  cursor: pointer;
}

button.ht-signup-link:hover {
  color: var(--primary-color-hover);
}

.ht-pricing-msg {
  font-size: 15px;
  line-height: 18px;
  color: var(--success-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

.modal-hotspot .hotspot-modal-image-thumbnail {
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
  position: relative;
  bottom: 0;
  min-width: 220px;
  width: 220px;
}

.slide-counter-dots {
  display: flex;
  background-color: #fcfcfc;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.slide-counter-dots span {
  background-color: #d9d9d9;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 0 5px;
  width: 8px;
}

.slide-counter-dots span.active {
  background-color: var(--primary-color);
}

.ht-headertext {
  color: #1e1d21;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}

.ht-logo {
  display: none; /* hide logo for now */
}

.product-img {
  background-color: #eeeeee;
  background: linear-gradient(180deg, #eeeeee 0%, #efefea 100%);
}

.product-img img {
  height: 208px;
  object-fit: cover;
}

.img-slide {
  display: none;
  text-align: center;
}

.product-img-left,
.product-img-right {
  padding: 20px;
  position: absolute;
  inset: 0;
  cursor: pointer;
  width: 50%;
}

.product-img-right {
  transform: translateX(100%);
}

.img-slide.active {
  display: block;
}

div.closebtn-hotspot {
  position: absolute;
  top: 0px;
  right: 0px;
  transform: translate(15%, -15%);
  background: url(../images/icons/close-small.png) 0 no-repeat;
  background-position: center;
  border-radius: 15px;
  border: 0.5px solid transparent;
  width: 24px;
  height: 24px;
  margin: 0 !important;
  cursor: pointer;
  transition: all 0.08s ease-in-out;
}

div.closebtn-hotspot:hover {
  border-color: var(--primary-color);
  box-shadow: 1px 1px 2px #00000029;
}

.modal-hotspot.no-image {
  height: 194px;
}

.modal-hotspot.no-imagecaption {
  height: 396px;
}

/* SM screen < 768 */
@media all and (max-width: 768px) {
  .modal-hotspot {
    width: 96vw;
    max-width: 420px;
    min-height: max-content;
    max-height: 600px;
    border-radius: 30px;
    top: 20% !important;
    left: 50% !important;
    transform: translateX(-50%);
    box-shadow: 0px -2px 10px 5px rgb(0 0 0 / 20%);
  }

  .modal-hotspot-inner-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px;
    overflow-y: auto;
  }

  .hotspot-modal-main-content {
    width: 100%;
  }

  .ht-header {
    min-height: 18px;
  }

  .ht-headertext {
    font-size: 15px;
    font-weight: 500;
  }

  .ht-body {
    font-size: 15px !important;
    line-height: 18px !important;
  }

  .modal-hotspot .hotspot-modal-image-thumbnail {
    width: 100%;
    flex-shrink: 0;
  }

  .product-img {
    background-color: #fcfcfc;
    background: #fcfcfc;
  }

  .modal-hotspot.no-imagecaption {
    height: 272px;
  }

  .product-img-left,
  .product-img-right {
    background-image: url(../images/icons/chevron-left-solid.svg);
    background-size: 40% 40%;
    background-repeat: no-repeat;
    background-color: #2677ad7e;
    border-radius: 50%;
    background-position: 13px;
    padding: 20px;
    position: absolute;
    inset: unset;
    width: unset;
    top: 85px;
    cursor: pointer;
    box-shadow: 0px 0px 2px gray;
  }

  .product-img-left:hover,
  .product-img-right:hover {
    background-color: #2677ad9a;
  }

  .product-img-right {
    right: 0;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .product-img-left,
  .product-img-right {
    padding: 15px;
    background-position: 8.5px;
  }

  .product-img img {
    height: 244px;
    padding: 0px 44px;
    object-fit: scale-down;
  }

  .ht-center {
    max-height: 114px;
  }
}

/* LG PORTRAIT > 768+ */
@media only screen and (min-width: 768px) and (orientation: portrait) {
  .modal-hotspot {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
  }

  .modal-hotspot .hotspot-modal-image-thumbnail {
    margin-top: 10px;
  }

  .product-img-left,
  .product-img-right {
    padding: 15px;
    background-position: 8.5px;
  }


  .ht-headertext {
    font-size: 14px;
  }

  .ht-body {
    font-size: 15px;
  }
}

/* XLARGE LANDSCAPE 1024 - 1366 */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation: landscape) {
  .modal-hotspot {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
  }
  
  .product-img-left,
  .product-img-right {
    padding: 20px;
    background-position: 10px;
  }
}

/* XLARGE LANDSCAPE 1024+ */
@media only screen and (max-device-width: 1024px) and (orientation: landscape) {
  .modal-hotspot {
    /* width: 210px; */
    height: 298px;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
  }
  
  div.closebtn-hotspot {
    border: 0;
    top: 5px;
    right: 5px;
  }

  .modal-hotspot.no-imagecaption {
    height: 272px;
  }

  .ht-center {
    max-height: 114px;
  }

  .product-img-left,
  .product-img-right {
    padding: 15px;
    top: 42px;
    background-position: 8.5px;
  }

  .product-img img {
    height: 120px;
    padding: 10px 15px;
  }
}

/* SM screen < 768 */
@media only screen and (max-device-width: 768px) {
  div.closebtn-hotspot {
    border: 0;
    top: 5px;
    right: 5px;
  }
}
