.jupiterx-blur-background {
  position: relative;
  isolation: isolate;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}
.jupiterx-blur-background::before, .jupiterx-blur-background::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}
.jupiterx-blur-background::before {
  z-index: 0;
  background-color: transparent;
  backdrop-filter: blur(calc(var(--jupiterx-blur-amount, 14) * 1px));
}
.jupiterx-blur-background::after {
  z-index: 1;
  background-color: var(--jupiterx-blur-tint-color, #FFFFFF);
  opacity: calc(var(--jupiterx-blur-tint-opacity, 18) / 100);
}
.jupiterx-blur-background > * {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .jupiterx-blur-background.jupiterx-blur-background--mobile-disabled::before, .jupiterx-blur-background.jupiterx-blur-background--mobile-disabled::after {
    display: none;
  }
}

.jupiterx-blur-background-surface {
  position: relative;
  isolation: isolate;
  --jupiterx-blur-before-opacity: 0;
  --jupiterx-blur-after-opacity: 0;
  --jupiterx-blur-mobile-disabled: 0;
}
.jupiterx-blur-background-surface::before, .jupiterx-blur-background-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}
.jupiterx-blur-background-surface::before {
  z-index: 0;
  opacity: var(--jupiterx-blur-before-opacity, 0);
  background-color: transparent;
  backdrop-filter: blur(calc(var(--jupiterx-blur-amount, 14) * 1px));
}
.jupiterx-blur-background-surface::after {
  z-index: 1;
  opacity: var(--jupiterx-blur-after-opacity, 0);
  background-color: var(--jupiterx-blur-tint-color, #FFFFFF);
}
.jupiterx-blur-background-surface > * {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .jupiterx-blur-background-surface::before {
    opacity: calc(var(--jupiterx-blur-before-opacity, 0) * (1 - var(--jupiterx-blur-mobile-disabled, 0)));
  }
  .jupiterx-blur-background-surface::after {
    opacity: calc(var(--jupiterx-blur-after-opacity, 0) * (1 - var(--jupiterx-blur-mobile-disabled, 0)));
  }
}

@supports not (backdrop-filter: blur(1px)) {
  .jupiterx-blur-background::before {
    background-color: var(--jupiterx-blur-fallback-color, rgba(255, 255, 255, 0.9));
    backdrop-filter: none;
  }
  .jupiterx-blur-background-surface::before {
    background-color: var(--jupiterx-blur-fallback-color, rgba(255, 255, 255, 0.9));
    backdrop-filter: none;
  }
}
html:root {
  margin-top: 0 !important;
}

.single-jupiterx-popups {
  height: 100vh;
  background-image: url("../img/square.jpg");
  background-repeat: repeat;
  overflow: hidden;
}
.single-jupiterx-popups .jupiterx-popup-preview-mode {
  height: 100%;
}
.single-jupiterx-popups .jupiterx-popup-preview-mode.jupiterx-popup-frontend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.single-jupiterx-popups .jupiterx-popup-preview-mode .jupiterx-popup__container-overlay {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.single-jupiterx-popups .jupiterx-popup-preview-mode .jupiterx-popup__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 600px;
  height: auto;
  max-height: 98%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 2;
}
.single-jupiterx-popups .jupiterx-popup-preview-mode .jupiterx-popup__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.single-jupiterx-popups .jupiterx-popup-preview-mode .jupiterx-popup__container-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  padding: 20px;
  background-color: white;
  z-index: 1;
  overflow-y: auto;
}
.single-jupiterx-popups .jupiterx-popup-preview-mode .jupiterx-popup__overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.single-jupiterx-popups .jupiterx-popup-preview-mode .jupiterx-popup__close-button {
  display: none;
  position: absolute;
  top: 0px;
  right: 0px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background-color: #6ec1e4;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
}