/** Shopify CDN: Minification failed

Line 197:0 Expected "}" to go with "{"

**/
/* ==========================================================
   EMBRACE POSITIVITY — WATCH DROPDOWN
========================================================== */


@media screen and (max-width: 989px) {
  .ep-custom-watch-dropdown,
  #EpCustomWatchDropdown {
    display: none !important;
  }
}
@media screen and (min-width: 990px) {

  /* Entire Watch dropdown */
  .ep-custom-watch-dropdown {
    position: absolute;
    display: block !important;
    left: 50%;
    top: 269px !important;

    width: 1380px;
    max-width: calc(100vw - 10px);

    transform: translateX(-50%) translateY(16px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
      opacity .35s ease,
      transform .35s ease;

    filter: drop-shadow(0 16px 28px rgba(0,0,0,.10));

    z-index: 30;
  }

  /* Open state */
  .ep-custom-watch-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);

    /* Do NOT let the large invisible rectangle catch clicks */
    pointer-events: auto;
  }

  /* Main positioning canvas */
  .ep-custom-watch-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1050 / 335;

    pointer-events: auto;
  }

  /* Backdrop */
  .ep-custom-watch-backdrop {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    margin: auto;

    object-fit: contain;

    z-index: 5;
    pointer-events: none;
  }

  /* Video */
  .ep-custom-watch-video {
    position: absolute;

    left: 30%;
    top: 23%;

    width: 40%;
    height: 57%;

    display: block;
    overflow: hidden;

    border-radius: 18px;
    background: #000;

    z-index: 3;

    /* Video itself does NOT need to be a link */
    pointer-events: none;
  }

  .ep-custom-watch-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    pointer-events: none;
  }

  /* ========================================================
     CLICKABLE WOODEN SIGNS
  ======================================================== */

  .ep-watch-hotspot {
    position: absolute !important;
    display: block !important;

    left: 23% !important;
    width: 12.5% !important;
    height: 14% !important;

    z-index: 100 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
   
}

.ep-watch-hotspot--featured {
    top: 23.2% !important;
}

.ep-watch-hotspot--facebook {
    top: 42.2% !important;
}

.ep-watch-hotspot--instagram {
    top: 63% !important;
}


/* ==========================================================
   MOBILE
========================================================== */

@media screen and (max-width: 989px) {

  .ep-custom-watch-dropdown {
    display: none !important;
  }

}
/* ==========================================
   WATCH — HOVER BRIDGE
   Removes tiny dead space under Watch button
========================================== */

@media screen and (min-width: 990px) {

  .ep-custom-watch-dropdown::before {
    content: "";
    position: absolute;

    left: 0;
    top: -35px;

    width: 100%;
    height: 45px;

    background: transparent;

    pointer-events: auto;
  }

}
/* ==========================================
   WATCH — FINAL INTERACTION FIX
========================================== */

@media screen and (min-width: 990px) {

  .ep-custom-watch-dropdown.is-open,
  .ep-custom-watch-inner {
    pointer-events: auto !important;
  }

  .ep-custom-watch-backdrop,
  .ep-custom-watch-video,
  .ep-custom-watch-video video {
    pointer-events: none !important;
  }

  .ep-watch-hotspot {
    pointer-events: auto !important;
    cursor: pointer !important;
    z-index: 999 !important;
  }
}
