/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[1].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[4].oneOf[1].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].oneOf[1].use[4]!./assets/scss/content-elements/ce_lightbox.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.ce-lightbox {
  transition: opacity 0.5s ease-in-out;
}
.ce-lightbox__button-open-lightbox {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  padding: 0;
  width: 100%;
  max-width: 550px;
}
.ce-lightbox__button-open-lightbox::after {
  content: "\e917";
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 5rem;
  vertical-align: middle;
  font-family: var(--bs-iconfont);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(213, 236, 244, 0.2);
  pointer-events: all;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.ce-lightbox__button-open-lightbox:hover::after {
  opacity: 1;
}
.ce-lightbox__image {
  width: 100%;
  max-height: calc(100vh - 105px);
  object-fit: contain;
}
.ce-lightbox__image-overlay {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: calc(100vh - 105px);
  object-fit: contain;
}
.ce-lightbox__overlay {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, max-height 0.2s ease-in-out;
}
.ce-lightbox__overlay--show {
  opacity: 1;
  visibility: visible;
  max-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5555;
  background-color: var(--bs-white);
}
.ce-lightbox__overlay-header {
  justify-content: flex-end;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: 1rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.ce-lightbox__overlay-content {
  padding: 1rem;
}
.ce-lightbox--animate {
  opacity: 0;
}
.ce-lightbox--show {
  opacity: 1;
}
