/*!****************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./components/modal/style.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************/
.wcb-c-modal--blur .wcb-c-modal__overlay {
  background-color: rgba(43, 46, 56, 0.9);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

/**
 * 1. Make the dialog container, and its child overlay spread across
 *    the entire window.
 */
.wcb-c-modal,
.wcb-c-modal__overlay {
  position: fixed; /* 1 */
  top: 0; /* 1 */
  right: 0; /* 1 */
  bottom: 0; /* 1 */
  left: 0; /* 1 */
}

/**
	 * 1. Make sure the dialog container and all its descendants sits on
	 *    top of the rest of the page.
	 * 2. Make the dialog container a flex container to easily center the
	 *    dialog.
	 */
.wcb-c-modal {
  z-index: 9999; /* 1 */
  display: flex; /* 2 */
}

/**
	 * 1. Make sure the dialog container and all its descendants are not
	 *    visible and not focusable when it is hidden.
	 */
.wcb-c-modal[aria-hidden=true] {
  display: none; /* 1 */
}

/**
	 * 1. Make the overlay look like an overlay.
	 */
.wcb-c-modal__overlay {
  background-color: rgba(43, 46, 56, 0.9); /* 1 */
  animation: fade-in 200ms both;
}

/**
	 * 1. Vertically and horizontally center the dialog in the page.
	 * 2. Make sure the dialog sits on top of the overlay.
	 * 3. Make sure the dialog has an opaque background.
	 */
.wcb-c-modal__content {
  margin: auto; /* 1 */
  z-index: 2; /* 2 */
  position: relative; /* 2 */
  background-color: #fff; /* 3 */
  animation: fade-in 400ms 200ms both, slide-up 400ms 200ms both;
  padding: 1em;
  max-width: 90%;
  width: 600px;
  border-radius: 5px;
}

@media screen and (min-width: 700px) {
  .wcb-c-modal__content {
    padding: 2em;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
}
@keyframes slide-up {
  from {
    transform: translateY(10%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .wcb-c-modal__overlay,
  .wcb-c-modal__content {
    animation: none;
  }
}
.wcb-c-modal__content h1 {
  margin: 0;
  font-size: 1.25em;
}

.wcb-c-modal__modal-close {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  border: 0;
  padding: 0.25em;
  background-color: transparent;
  font-size: 1.5em;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  cursor: pointer;
  transition: 0.15s;
  border-radius: 50%;
}

.wcb-c-modal__modal-close:hover {
  background-color: rgba(50, 50, 0, 0.15);
}

@media screen and (min-width: 700px) {
  .wcb-c-modal__modal-close {
    top: 1em;
    right: 1em;
  }
}
/**
 * Video modal specific styles
 */
.wcb-c-modal--video {
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.wcb-c-modal--video .wcb-c-modal__content {
  max-width: 95%;
  width: 900px;
  max-height: 90vh;
  padding: 0;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wcb-c-modal--video .wcb-c-modal__modal-close {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.wcb-c-modal--video .wcb-c-modal__modal-close:hover {
  background-color: rgba(0, 0, 0, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
}
.wcb-c-modal--video .wcb-c-modal__modal-close:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}
.wcb-c-modal--video .wcb-video-modal-content {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.wcb-c-modal--video .wcb-video-modal-content .wcb-support-video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}
.wcb-c-modal--video .wcb-video-modal-content .wcb-support-video img,
.wcb-c-modal--video .wcb-video-modal-content .wcb-support-video iframe,
.wcb-c-modal--video .wcb-video-modal-content .wcb-support-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wcb-c-modal--video .wcb-video-modal-content .wcb-support-video iframe {
  border: none;
}

@media screen and (max-width: 767px) {
  .wcb-c-modal--video {
    padding: 0.5rem;
  }
  .wcb-c-modal--video .wcb-c-modal__content {
    max-width: 98%;
    width: 100%;
    max-height: 95vh;
  }
  .wcb-c-modal--video .wcb-c-modal__modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.875rem;
  }
  .wcb-c-modal--video .wcb-video-modal-content .wcb-support-video {
    padding-bottom: 56.25%;
  }
}
@media screen and (max-width: 480px) {
  .wcb-c-modal--video {
    padding: 0.25rem;
  }
  .wcb-c-modal--video .wcb-c-modal__content {
    max-width: 99%;
    border-radius: 4px;
  }
}

/*# sourceMappingURL=style-frontend.css.map*/