/* Spacing */
/* Grid settings */
/* Row inner box */
/* Breakpoint options */
/* Calculated variables - do not edit unless you are a space cowboy */
/* Split colours - set colours when using .row.split */
/* Overlays - for modals, cookie popups */
/* Type */
/* Quotes */
/* Icons - see font-awesome.scss for more info */
/* Buttons */ /* Woocommerce */ /* Notifications */ /* Pagination */ /* Logo */ /* Header */
/* Header navigation */
/* Footer */
/* Mobile menu */ /* Cookie bar */ /* Social links */ /* Transitions */ /* Loader */ /* Modals */ /* Dots */
/* Tables */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.modal[aria-hidden=false] {
  animation: mmfadeIn 0.6s cubic-bezier(0, 0, 0.2, 1);
}

.modal {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.modal {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
}
.modal .modal-container {
  width: 100%;
  height: 100vh;
}
.modal button.close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 200;
  background-color: var(--highlight);
  color: var(--black);
  width: 40px;
  height: 40px;
  line-height: 40px;
}
.modal button.close::after {
  content: "\f00d";
  font-family: "Font Awesome 6 Solid";
  font-weight: 900;
}
.modal button.close:hover {
  background-color: var(--highlight-hover);
}
.modal div[role=dialog] {
  width: 90%;
  max-width: 800px;
  background-color: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--black);
}
.modal div[role=dialog] header {
  display: flex;
  justify-content: space-between;
}
.modal div[role=dialog] .row-inner {
  width: 100%;
  padding: 30px 5%;
}
.modal#modal-add-to-wishlist div[role=dialog], .modal#modal-share div[role=dialog], .modal#modal-delete div[role=dialog] {
  max-width: 450px;
  max-height: 450px;
  overflow: auto;
}
.modal#modal-add-to-wishlist h3, .modal#modal-share h3, .modal#modal-delete h3 {
  text-align: center;
}

.modal.is-open {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
  z-index: 500;
}

html.modal-is-open {
  overflow-y: hidden;
}

body.woocommerce.gallery-active #smooth-inner, body.woocommerce.gallery-active #content, body.woocommerce.gallery-active .product-page, body.woocommerce.gallery-active .row-inner, body.woocommerce.gallery-active .product-image-col {
  position: static !important;
}
body.woocommerce.gallery-active #smooth-inner .row-type-image_carousel, body.woocommerce.gallery-active #content .row-type-image_carousel, body.woocommerce.gallery-active .product-page .row-type-image_carousel, body.woocommerce.gallery-active .row-inner .row-type-image_carousel, body.woocommerce.gallery-active .product-image-col .row-type-image_carousel {
  position: static;
}
