  /* stylelint-disable order/order */
/* stylelint-enable order/order */
/*
 * Fonts
 *
 * The font settings are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 */
/*
 * Colors
 *
 * The primary colors are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 */
/*
 * Effects
 */
/*
 * Grid Settings
 */
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
.component-lightbox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999999999;
  display: flex;
  align-items: center;
  background-color: #0d0d0d;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s linear;
}
.component-lightbox__container:not(.active) {
  visibility: hidden;
  opacity: 0;
}
.component-lightbox__container .container {
  width: calc((100vh - 16.5rem) / 0.5625);
  max-width: calc(100% - 2.5rem);
}
.component-lightbox__close {
  position: absolute;
  top: 7.5rem !important;
  right: 6.25rem;
  z-index: 999;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  color: #fff;
  font-size: 1.5rem;
  border: none;
  background: none;
  cursor: pointer;
}
@media (min-width: 90rem) {
  .component-lightbox__close {
    right: 4%;
  }
}
.component-lightbox__close > [class^=icon] {
  display: block;
}
.admin-bar .component-lightbox .component-lightbox__close {
  top: 6.25rem;
}
@media (max-width: 47.98rem) {
  .admin-bar .component-lightbox .component-lightbox__close {
    top: 9.375rem;
  }
}
.component-lightbox__iframe {
  position: relative;
  width: 100%;
  padding-top: 56.25% !important;
}
.component-lightbox__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}