[data-lightbox-tabindex] {
  pointer-events: none;
}

.lightBoxOverlay {
  height: 0;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  transition: background-color 0.2s ease-in-out;
  width: 0;
}
.lightBoxOverlay.visible {
  background-color: rgba(0, 0, 0, 0.85);
  bottom: 0;
  height: auto;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: auto;
  z-index: 1000000;
}

.lightBoxBox {
  height: 100%;
  overflow: auto;
}

.lightBoxContainer {
  background-color: #fff;
  box-shadow: 0 0 30px #000;
  display: none;
  left: 30px;
  padding: 3px;
  position: absolute;
  right: 30px;
  transform: translate(0, -50%);
  top: 50%;
}
@media only screen and (min-width: 840px) {
  .lightBoxContainer {
    left: auto;
    max-width: 100%;
    right: auto;
    transform: translate(0, -50%);
  }
  .lightBoxContainer .iframe-content {
    min-height: 400px;
    min-width: 700px;
  }
}
.lightBoxContainer iframe {
  border: 0;
  width: 100%;
}
.lightBoxContainer.too-high {
  bottom: 10px;
  transform: translate(0, 0);
  top: 30px;
}
.admin-bar .lightBoxContainer.too-high {
  top: 81px;
}
@media only screen and (min-width: 783px) {
  .admin-bar .lightBoxContainer.too-high {
    top: 67px;
  }
}
.lightBoxContainer.too-high.has-navigation {
  bottom: 60px;
}
.lightBoxContainer.too-wide {
  left: 30px;
  right: 30px;
}

.visible .lightBoxContainer.visible {
  display: block;
}
.visible .lightBoxContainer.visible + .lightBoxLoading {
  display: none;
}
.visible .lightBoxLoading {
  display: block;
}

.lightBoxIcon {
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  display: block;
  font-size: 21px;
  height: 30px;
  line-height: 30px;
  position: absolute;
  right: -30px;
  text-align: center;
  top: -30px;
  width: 30px;
  z-index: 10;
}
.lightBoxIcon::before, .lightBoxIcon::after {
  background-color: currentColor;
  content: "";
  display: block;
  height: 1em;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.1em;
}
.lightBoxIcon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.lightBoxIcon:hover {
  color: #fff;
}

.lightBoxLoading {
  animation: spin 1s infinite linear;
  border: 0.3rem solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  display: none;
  height: 24px;
  left: 50%;
  margin: -12px 0 0 -12px;
  position: fixed;
  top: 50%;
  width: 24px;
}

.lightBoxContainer img {
  display: block;
  height: auto;
  max-height: 100%;
  max-width: 100%;
  width: auto;
}

.lightBoxContent {
  background-color: #fff;
  height: 100%;
  width: 100%;
}

.lightBoxNavigation {
  bottom: -50px;
  display: flex;
  justify-content: space-between;
  left: 50%;
  margin: 0 auto;
  position: absolute;
  transform: translateX(-50%);
}
.lightBoxNavigation > li {
  display: inline-block;
}
.lightBoxNavigation > li::before {
  display: none;
}

.lightBoxLink {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  height: 50px;
  width: 50px;
  text-decoration: none;
}
.lightBoxLink::before, .lightBoxLink::after {
  background-color: currentColor;
  content: "";
  display: block;
  height: 1em;
  left: 50%;
  position: absolute;
  top: calc(50% - 5px);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 0.1em;
}
.lightBoxLink::after {
  top: calc(50% + 6px);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.lightBoxLink.next {
  transform: rotate(180deg);
}
.lightBoxLink.prev::before, .lightBoxLink.prev::after {
  top: calc(50% - 6px);
  left: 25%;
}
.lightBoxLink.prev::after {
  top: calc(50% + 5px);
}
.lightBoxLink:hover {
  color: #fff;
  text-decoration: none;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rh-light-box__description {
  display: none;
}

.rh-lightbox__text-container {
  padding: 10px 20px;
}

.is-light-box-type-block .wp-block-cover__inner-container {
  display: none;
}
