<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.lg-container {
  max-width: 550px;
  position: relative;
  margin: 1rem;
  padding: 0;
}

.lg-image {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: scale-down;
}

.lg-hotspot {
  position: absolute;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  z-index: 0;
  cursor: pointer;
}
.lg-hotspot:hover .style-1.lg-hotspot__button, .lg-hotspot:active .style-1.lg-hotspot__button {
  border-color: #45b2e3;
}
.lg-hotspot:hover .style-1.lg-hotspot__button:after, .lg-hotspot:active .style-1.lg-hotspot__button:after {
  background-color: #45b2e3;
}

.lg-hotspot--selected {
  z-index: 999;
}
.lg-hotspot--selected .lg-hotspot__label {
  opacity: 1;
  display:block;
}
.style-1.lg-hotspot__button {
  height: 48px;
  display: block !important;
  width: 48px;
  padding: 0px;
  border-radius: 100%;
  border: 1px solid #30A9DF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: button-pulse 7s ease-in-out infinite;
}
.style-1.lg-hotspot__button:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  content: "";
  display: block;
  height: 16.8px;
  width: 16.8px;
  border-radius: 100%;
  border: 3px solid white;
  background-color: #30A9DF;
  transition: border-color 1s linear;
}

.lg-hotspot:hover .style-2.lg-hotspot__button, .lg-hotspot:active .style-2.lg-hotspot__button {
  border-color: #fff;
}
.lg-hotspot:hover .style-2.lg-hotspot__button:after, .lg-hotspot:active .style-2.lg-hotspot__button:after {
  background-color: #fff;
}

.style-2.lg-hotspot__button {
  height: 48px;
  display: block !important;
  width: 48px;
  padding: 0px;
  border-radius: 100%;
  border: 1px solid white;
  background-color: rgba(255, 255,255, 0.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 999;
  animation: button-pulse 7s ease-in-out infinite;
}
.style-2.lg-hotspot__button:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    content: "\002B";
    display: block;
    line-height: 1;
    height: 18px;
    width: 18px;
    border-radius: 100%;
    background-color: #fff;
    text-align: center; /* Center the content horizontally */
    vertical-align: middle; /* Center the content vertically */
    font-size: 18px; /* Adjust font size if needed */
    font-weight: lighter; /* Make the font thinner */
    color: #000; /* Set the color of the plus symbol */
    transition: border-color 1s linear;
}
.lg-hotspot__label a {
    text-align: center;
    font-size:12px;
}


.lg-hotspot--selected .style-2.lg-hotspot__button:after {
  content: "\2212";
}

.quickview-button{display:flex;justify-content: center;}
.quickview-button svg{padding-right:10px}
  
.lg-hotspot__label {
  position: absolute;
  display:none;
  padding: 0;
  width: 230px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  line-height: 1;
  z-index: -1;
  user-select: none;
  opacity: 0;
  transition: all 0.1s linear;
}
.lg-hotspot__label h4 {
  margin: 0;
  padding: 0.65em 24px;
  background-color: #555;
  font-size: 1.1em;
  font-weight: normal;
  letter-spacing: 0.02em;
  color: white;
}
.lg-hotspot__label p {
  margin: 0;
  padding: 1.1em 24px 0 24px;
  color: #333;
}

.lg-hotspot--top-left .lg-hotspot__label {
  left: 24px;
}

.lg-hotspot--top-right .lg-hotspot__label {
  right: 24px;
}

.lg-hotspot--bottom-right .lg-hotspot__label {
  right: 24px;
}

.lg-hotspot--bottom-left .lg-hotspot__label {
  left: 24px;
}

@keyframes button-pulse {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  40% {
    transform: scale(1.15, 1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}</pre></body></html>