/** Shopify CDN: Minification failed

Line 217:0 Unexpected "@"

**/
.cr-globe {
  position: relative;
  height: 780px;
  overflow: hidden;
  background: #fff;
  color: #000;
}

.cr-globe::before,
.cr-globe::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 8;
}

.cr-globe::before {
  top: 0;
  height: 300px;
  background: linear-gradient(
    to bottom,
    #fff 0%,
    rgba(255,255,255,.95) 18%,
    rgba(255,255,255,.75) 40%,
    rgba(255,255,255,0) 100%
  );
}

.cr-globe::after {
  bottom: 0;
  height: 180px;
  background: linear-gradient(
    to top,
    #fff 0%,
    rgba(255,255,255,.95) 18%,
    rgba(255,255,255,.75) 40%,
    rgba(255,255,255,0) 100%
  );
}

.cr-globe__copy {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 40px));
  text-align: center;
  color: #000;
}

.cr-globe__eyebrow,
.cr-globe__copy h2,
.cr-globe__copy p {
  color: #000;
}

.cr-globe__eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cr-globe__copy h2 {
  margin: 0 auto 14px;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .94;
  letter-spacing: -.03em;
}

.cr-globe__copy p {
  margin: 0 auto 12px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.45;
}

.cr-globe__search {
  width: min(100%, 360px);
  padding: 14px 15px;
  border: 1px solid #000;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-size: 15px;
  text-align: center;
}

.cr-globe__search::placeholder {
  color: #000;
}

.cr-globe__results {
  display: grid;
  gap: 8px;
  margin: 10px auto 0;
  max-width: 360px;
}

.cr-globe__results button {
  text-align: left;
  padding: 11px 13px;
  border: 1px solid #000;
  border-radius: 8px;
  background: #fff;
  color: #000;
  cursor: pointer;
}

.cr-globe__results strong,
.cr-globe__results span {
  display: block;
  color: #000;
}

.cr-globe__results span {
  margin-top: 2px;
  font-size: 13px;
}

.cr-globe__stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: visible;
  touch-action: none;
}

.cr-globe__canvas,
.cr-globe__markers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cr-globe__canvas {
  display: block;
  background: transparent;
  touch-action: none;
}

.cr-globe__markers {
  pointer-events: none;
}

.cr-globe__marker {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: #000;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  transition: transform .14s ease, opacity .14s ease;
  cursor: pointer;
  pointer-events: auto;
}

.cr-globe__marker:hover,
.cr-globe__marker.is-active {
  transform: translate(-50%, -50%) scale(1.6);
}

.cr-globe__marker::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.cr-globe__marker--promo {
  width: 10px;
  height: 10px;
}

.cr-globe__label {
  position: absolute;
  z-index: 20;
  padding: 8px 12px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -100%) translateY(-8px);
  transition: opacity .16s ease, transform .16s ease;
  pointer-events: none;
  text-align: center;
}

.cr-globe__label.is-multi {
  border-radius: 14px;
  text-align: left;
  white-space: normal;
  min-width: 150px;
}

@@media screen and (max-width: 850px) {

  .cr-globe {
    height: auto;
    padding: 40px 20px 0;
    overflow: visible;
  }

  .cr-globe__copy {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 640px;
    margin: 0 auto 24px;
    text-align: center;
  }

  .cr-globe__copy h2 {
    font-size: clamp(38px, 11vw, 60px);
  }

  .cr-globe__search {
    text-align: left;
    margin-top: 18px;
  }

  .cr-globe__results {
    margin-bottom: 24px;
  }

  .cr-globe__stage {
    position: relative;
    width: calc(100% + 40px);
    height: 540px;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 0;
  }

.cr-globe__stage,
.cr-globe__canvas {
  touch-action: none;
}

  .cr-globe::before,
  .cr-globe::after {
    display: none;
  }

}