/*////////////////////////////////////
        MediaQuest POPUP
////////////////////////////////////*/
#mq-popup {
  position: fixed;
  bottom: 0;
  background-color: #4ab5c1;
  left: 0;
  right: 0;
  width: calc(100% - 64px);
  height: fit-content;
  margin: auto;
  border-radius: 8px 8px 0 0;
  z-index: 9;
  box-shadow: -8px 16px 15px hsla(0, 0%, 0%, 0.25);
  transform: translateX(0%) translateY(120%);
  transition: 300ms;
}
#mq-popup.show {
  transform: translateX(0%) translateY(3em);
}
#mq-popup p {
  margin: unset;
}
#mq-popup .dialog {
  padding: 16px;
  padding-bottom: 3em;
  border: 5px dashed #FFF5C9;
  border-radius: 8px;
  margin: 16px;
  text-align: center;
}
#mq-popup .dialog .remove-btn {
  display: grid;
  place-items: center;
  color: #F2F2F2;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0.25em;
  border-radius: 50%;
  border: none;
  background-color: #D52733;
  font-size: 32px;
  width: 32px;
  height: 32px;
  line-height: 0.25;
  transform: rotate(45deg);
  cursor: pointer;
}
#mq-popup .dialog .remove-btn:hover {
  color: #FFF;
  background-color: hsl(356, 69%, 55%);
}
#mq-popup .dialog .content {
  display: flex;
  flex-flow: column;
  gap: 16px;
}
#mq-popup .dialog .content img {
  aspect-ratio: 1;
  object-fit: contain;
  max-height: 100px;
  max-width: 100px;
  margin: 0 auto;
}
#mq-popup .dialog .content .text-content {
  display: grid;
  row-gap: 16px;
  color: #F2F2F2;
}
#mq-popup .dialog .content .text-content .title {
  color: #F2F2F2;
  font-family: "Londrina Solid", sans-serif;
  font-size: 1.75em;
}
#mq-popup .dialog .content .text-content .subtitle {
  font-family: "gala-biline", sans-serif;
  font-size: 1.5em;
  line-height: 1.5;
  background-color: #da2d47;
  padding: 0.125em 0 0.25em;
  color: inherit;
  text-decoration: none;
}
#mq-popup .dialog .content .text-content .subtext {
  font-size: 0.9em;
}
#mq-popup .dialog .content .text-content .subtext .small {
  font-size: 0.825em;
}
#mq-popup .dialog .content .text-content #watch-video {
  color: #F2F2F2;
  cursor: pointer;
}
#mq-popup .dialog .content .text-content #watch-video:hover, #mq-popup .dialog .content .text-content #watch-video:focus-visible, #mq-popup .dialog .content .text-content #watch-video:active {
  color: #FFF;
}

#popup-lightbox {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5019607843);
  z-index: 1000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  align-items: center;
}
#popup-lightbox.show {
  display: grid;
}
#popup-lightbox .mq-container {
  width: clamp(100px, 90%, 1080px);
  margin-inline: auto;
}
#popup-lightbox .mq-container .video-container {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  position: relative;
}
#popup-lightbox .mq-container .video-container .remove-btn {
  all: unset;
  background-color: red;
  color: #FFF;
  border-radius: 2em;
  float: right;
  transform: rotate(45deg);
  font-size: 3rem;
  cursor: pointer;
  height: 1.125em;
  width: 1.125em;
  display: grid;
  place-content: center;
  position: absolute;
  right: -0.5em;
  top: -0.5em;
}
#popup-lightbox .mq-container .video-container iframe {
  height: 100%;
  width: 100%;
}

@media (min-width: 450px) {
  #mq-popup .dialog {
    text-align: start;
  }
  #mq-popup .dialog .content {
    flex-flow: unset;
    align-items: center;
  }
  #mq-popup .dialog .content img {
    max-height: 200px;
    max-width: 200px;
  }
  #mq-popup .dialog .content .text-content .subtitle {
    max-width: 200px;
    text-align: center;
  }
}
@media (min-width: 930px) {
  #mq-popup {
    border-radius: 8px 0 0 8px;
    left: unset;
    top: 0;
    width: fit-content;
    box-shadow: -4px 10px 15px hsla(0, 0%, 0%, 0.25);
    transform: translateX(120%);
  }
  #mq-popup.show {
    transform: translateX(0%);
  }
  #mq-popup .dialog {
    max-width: 250px;
    text-align: center;
    padding-bottom: 16px;
  }
  #mq-popup .dialog .content {
    flex-flow: column;
  }
  #mq-popup .dialog .content img {
    max-height: 200px;
    max-width: 200px;
    margin: unset;
  }
}/*# sourceMappingURL=popup-style.css.map */