body:after {
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 0.8s ease 0s;
  width: 100%;
  z-index: 149;
}
[data-fls-popup-open] body:after {
  opacity: 1;
}
[data-fls-popup] {
  bottom: 0;
  left: 0;
  padding: 1.875rem 0.625rem;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}
[data-fls-popup][data-fls-popup-active] {
  overflow: auto;
  pointer-events: auto;
  visibility: visible;
  z-index: 150;
}
[data-fls-popup-active] [data-fls-popup-body] {
  transform: scale(1);
  visibility: visible;
}
[data-fls-popup-wrapper] {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  width: 100%;
}
[data-fls-popup-body] {
  background-color: #eee;
  border-radius: 1.25rem;
  max-width: 67.875rem;
  padding: 1.25rem;
  transform: scale(0);
  transition: transform 0.3s ease 0s, visibility 0.3s ease 0s;
  visibility: hidden;
  width: 100%;
}
[data-fls-popup-youtube-place] iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
}

