@charset "UTF-8";
/* CSS Document */
$buttonRadius: 24px;
$labelPaddingX: $buttonRadius * 1;
$labelBorderRadius: 2px;
$labelFade: 0.1s;
$colorButton: #e30613;
$colorHoverAdd: #11174c;
$colorText: #333;
$colorHeadingBackground: #555;

body {
  margin: 0;
}

* {
  box-sizing: border-box;
}

.container {
  width: 100%;
  padding: 1em;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}

.lg-container {
  max-width: 1000px;
  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;
}
  .lg-hotspot:hover .lg-hotspot__button,
  .lg-hotspot:active .lg-hotspot__button {
      border-color: #e30613 ;
		}
    .lg-hotspot:hover  .lg-hotspot__button:after, 
    .lg-hotspot:active  .lg-hotspot__button:after {
        background-color: #11174c ;
      }

  
  .lg-hotspot--selected {
    z-index: 999;
}
    .lg-hotspot--selected .lg-hotspot__label {
      opacity: 1;
    }
 
  .lg-hotspot__button {
    height: 44px;
    width: 44px;
    padding: 0px;
    border-radius: 100%;
    border: 1px solid #e30613;
	  background-color: rgba(52,58,64,0.10);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 999;
	  transition: all 0.5s;
    animation: button-pulse 1.2s ease-in-out infinite;
	  /*animation: pulse 3s infinite ease-out;*/
}
    lg-hotspot__button:after {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      content: "";
      display: block;
      height: calc(24px * 0.7);
      width: calc(24px * 0.7);
      border-radius: 100%;
      border: 3px solid white;
      background-color: #e30613;
      transition: border-color 1s linear;
    }
.lg-hotspot__button:hover{
	height: 38px;
    width: 38px;
	cursor: pointer;
}
  
  .lg-hotspot__label {
    position: absolute;
    padding: 0 0;
    width: 26em;
    max-width: 58vw;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: "Open Sans", sans-serif;
    font-size: 14.5px;
    line-height: 1.45em;
    z-index: -1;
    pointer-events: none;
    border-radius: 2px;
    user-select: none;
    opacity: 0;
    transition: all 0.1s linear;
}
 .lg-hotspot__label   h3 {
      margin: 0;
      padding: 0.65em calc(24px * 1);
      background-color: #5a524c;
      font-size: 1.3em;
      font-weight: normal;
      letter-spacing: 0.02em;
      color: white;
      border-radius: 2px 2px 0 0;
    }
  .lg-hotspot__label  p {
      margin: 0;
      padding: 1.1em calc(24px * 1) 0 calc(24px * 1);
      color: #333;
    }

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

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

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

.lg-hotspot--bottom-left .lg-hotspot__label {
  bottom: 24px;
  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;
  }
}

