:root {
  font-family: 'IBM Plex Sans', sans-serif;
}
@supports (font-variation-settings: normal) {
  :root {
    font-family: 'IBM Plex Sans', sans-serif;
  }
}

/* html {
  background: #0f172a;
} */

div {
  margin: 0;
  padding: 0;
}

section.globe {
  position: relative;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

div.globe-content {
  height: 700px;
  width: 1000px;
  transform: translateX(-130px);
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

div.popup {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

div.popup .content {
  position: relative;
  width: 270px;
  transition-delay: 0s;
  transform-property: transform, opacity;
  transition: 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: scale(0);
  transform-origin: 50% 100%;
}

@keyframes pulse {
  0% {
    -webkit-transform: translateX(-50%) scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1.2, 1.2);
    opacity: 0;
  }
}

div.popup .content::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: transparent;
  opacity: 0;
  transform: translateX(-50%) scale(0.5);
  z-index: -1;
  animation: none;
}

div.popup .content.animating::after {
  -webkit-animation: pulse 2s linear infinite;
  -webkit-animation-delay: -0.4s;
  animation: pulse 2s linear infinite;
  animation-delay: -0.4s;
  border: 3px solid #e11d48;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}

div.popup .content > div {
  font-size: 0.875rem; /* 14px */
  line-height: 1.25rem; /* 20px */
  color: #fff;
  padding-top: 0.125rem;
  padding-left: 1rem;
  width: 100%;
  height: 170px;
  background-color: #18181b;
  border-radius: 0.275rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

section.globe.show {
  opacity: 1;
}

section.globe canvas {
  position: relative;
  width: 100% !important;
  height: auto !important;
  background: transparent;
  z-index: -1;
}

div.popup .content .carat {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  height: 10px;
  width: 10px;
  background-color: #18181b;
}

div.popup div.popup--title > p {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: -0.125rem;
}

div.popup div.popup--title > span {
  font-size: 0.75rem; /* 12px */
  line-height: 1rem; /* 16px */
  color: #9ca3af;
  font-weight: 500;
}

div.popup dl.popup--description > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  font-size: 0.75rem; /* 12px */
  line-height: 1rem; /* 16px */
}

div.popup dl.popup--description > div:not(:first-child) {
  margin-top: 0.5rem;
}

div.popup dt {
  color: #d1d5db;
  grid-column: span 1 / span 1;
  font-weight: 400;
}

div.popup dd {
  color: #9ca3af;
  grid-column: span 4 / span 4;
}