:root {
  --main-red-color: #e4002b;
  --main-justrite-color: #a61e2f;
  --main-red-color-opacity: rgba(174, 18, 42, 1);
  --main-red-color-hover: #76000f;
  --main-yellow-color: #fec50d;
  --gray-color: #333;
  --cloud-color: #c7d9ea;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
p {
  margin: 0;
}
.right-side p:nth-of-type(2) {
  font-weight: bold;
}
html,
body {
  height: 100%;
}
body {
  position: relative;
  font-family: "Roboto", sans-serif;
  overflow: hidden;
}
#nscInterface {
  width: 100%;
  padding: 0;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
#nscInterface .content-right {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 25px;
  justify-content: center;
}

.vertical {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 90%;
  img {
    width: 100%;
    position: relative;
  }
  h2 {
    font-size: 30px;
  }
}

.hidden {
  visibility: hidden;
  opacity: 0;
  position: absolute;
}

.active {
  visibility: visible;
  opacity: 1;
}

.interactive-container {
  width: 100%;
}

.interactive-container .point {
  cursor: pointer;
  position: absolute;
  width: 0.95rem;
  height: 0.95rem;
  background-color: var(--main-red-color);
  border-radius: 50%;
  transition: all 0.3s ease;
  will-change: transform, box-shadow;
  transform: translate(-50%, -50%);
  box-shadow: 0;
  animation: pulse 3s infinite;
}

.interactive-container .point:nth-child(2n) {
  animation-delay: 0.5s;
}

.interactive-container .point:nth-child(3n) {
  animation-delay: 1s;
}

.interactive-container .point:nth-child(4n) {
  animation-delay: 1.5s;
}

.interactive-container .point:nth-child(5n) {
  animation-delay: 2s;
}

.interactive-container .point:hover {
  animation: none;
  transform: translate(-50%, -50%) scale3D(1.35, 1.35, 1);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  background: var(--main-red-color-hover);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--main-red-color-opacity);
  }
  70% {
    box-shadow: 0 0 0 13px rgba(0, 172, 193, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 172, 193, 0);
  }
}

.tippy-tooltip {
  font-size: 17px !important;
}

.interactive-container.construction {
  .dot-2 {
    top: 35%;
    left: 44.5%;
  }
  .dot-3 {
    top: 41%;
    left: 45.5%;
  }
  .dot-4 {
    top: 43.5%;
    left: 37%;
  }
  .dot-5 {
    top: 46%;
    left: 31.5%;
  }
  .dot-6 {
    top: 51%;
    left: 26.5%;
  }
  .dot-7 {
    top: 60.5%;
    left: 26.5%;
  }
  .dot-8 {
    top: 63%;
    left: 35%;
  }
  .dot-9 {
    top: 47.5%;
    left: 58.5%;
  }
  .dot-10 {
    top: 50%;
    left: 61.5%;
  }
  .dot-11 {
    top: 45%;
    left: 66%;
  }
  .dot-12 {
    top: 52.5%;
    left: 85.5%;
  }
  .dot-13 {
    top: 56.5%;
    left: 88%;
  }
  .dot-14 {
    top: 73.5%;
    left: 75%;
  }
  .dot-15 {
    top: 75%;
    left: 59%;
  }
  .dot-16 {
    top: 73%;
    left: 35%;
  }
  .dot-17 {
    top: 39%;
    left: 43%;
  }
  .dot-18 {
    left: 36.5%;
    top: 27.5%;
  }
}

.mac .tippy-content a {
  padding: 6px 15px 3px;
}

.tippy-content {
  display: flex;
  align-items: center;
  padding: 15px 20px 15px 0;
  font-size: 15px;
  line-height: normal;
  img {
    min-width: 75px;
    min-height: 75px;
    max-width: 150px;
    box-shadow: none;
    max-height: 100px;
    width: auto !important;
    padding: 15px 0 15px 15px;
  }
  div {
    display: flex;
    flex-direction: column;
    padding: 15px 10px;
    text-align: center;
    align-items: center;
    gap: 10px;
    max-width: 300px;
    font-size: 18px;
  }
  a {
    padding: 5px 15px;
    background: var(--gray-color);
    color: var(--main-yellow-color);
    cursor: pointer;
  }
  span {
    text-wrap: pretty;
  }
}

.modal-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: 9999;
}
.modal-container {
  width: 100%;
  max-width: 1200px;
  max-height: 90%;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  background: #fff;
  padding: 50px 35px;
  display: flex;
  .close {
    position: absolute;
    top: -3px;
    right: 15px;
    font-size: 50px;
    cursor: pointer;
  }
}
.pdp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  width: 100%;
  h2 {
    font-size: 34px;
    text-wrap: balance;
    color: var(--main-justrite-color);
  }
  .left-side,
  .right-side {
    width: 36%;
    display: flex;
    justify-content: center;
  }
  .right-side {
    width: 56%;
    flex-direction: column;
    gap: 30px;
    ul {
      padding-left: 25px;
    }
    li {
      margin-bottom: 10px;
    }
  }
  img {
    max-width: 100%;
    max-height: 400px;
  }
}

/* .notice {
  position: fixed;
  display: flex;
  flex-direction: column;
  z-index: 99;
  font-size: 17px;
  left: 9%;
  top: 11%;
  color: #494949;
  div {
    display: flex;
    padding-top: 5px;
  }
  .dot {
    cursor: pointer;
    width: 0.95rem;
    height: 0.95rem;
    background-color: var(--main-red-color);
    border-radius: 50%;
    transition: all 0.3s ease;
    will-change: box-shadow;
    box-shadow: 0;
    animation: pulse 3s infinite;
    margin-right: 8px;
  }
} */

.jsg-logo {
  position: fixed;
  top: 3%;
  left: 8%;
  max-width: 250px;
  z-index: 99;
  img {
    width: 100%;
  }
  .notice {
    display: flex;
    padding-top: 5px;
    padding-left: 10px;
    .dot {
      cursor: pointer;
      width: 0.95rem;
      height: 0.95rem;
      background-color: var(--main-red-color);
      border-radius: 50%;
      transition: all 0.3s ease;
      will-change: box-shadow;
      box-shadow: 0;
      animation: pulse 3s infinite;
      margin-right: 8px;
    }
  }
}
