/** Shopify CDN: Minification failed

Line 90:24 Expected "}" to go with "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:pop-up (INDEX:47) */
.popup__overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0, 0, 0, 0.7);
    transition: opacity 500ms ease-in-out;
    visibility: hidden;
    opacity: 0;
    z-index: 3000;
    overflow-y: auto;
  }

  .popup__overlay:target {
    visibility: visible;
    opacity: 1;
    z-index: 99;
  }

  .popup__box {
    padding: 24px;
    background: #fff;
    border-radius: 8px;
    width: 70%;
    position: relative;
  }

  .popup__box h2 {
    color: #333;
    font-size: 2em;
    font-weight: bold;
    font-family: Verdana, sans-serif;
    margin-top: 0;
    text-align: center;
  }

  .popup__close {
    position: sticky;
    top: 20px;
    right: 0;
    left: 20px;
    transition: all 200ms ease-out;
    color: #660000;
    background-color: gold;
    font-size: 40px;
    font-weight: bold;
    line-height: 1.25;
    text-decoration: none;
    cursor: pointer;
    align-items: center;
    border: 2px solid orange;

  .popup__close:hover {
    color: #660000;
    background-color: orange;
  }

  .popup__content {
    max-height: 30%;
    overflow: auto;
  }

  @media screen and (max-width: 1280px) {
    .popup__box {
      width: 60%;
    }
  }

  @media screen and (max-width: 768px) {
    .popup__box {
      width: 90%;
      top: 20%;
      font-size: smaller;
    }
  }
/* END_SECTION:pop-up */