/* stylelint-disable order/order */
/* stylelint-enable order/order */
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/****************
 * 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: 999;
  display: none;
  padding-top: 5rem;
  background-color: rgba(13, 13, 13, 0.9);
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}
.component-lightbox__container.active {
  display: block;
  pointer-events: auto;
}
.component-lightbox__container.visible {
  opacity: 1;
}
.component-lightbox__close {
  position: absolute;
  top: 0;
  top: 1.25rem;
  right: 0;
  right: 1.25rem;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  width: 2rem;
  height: 100%;
  height: 2rem;
  padding: 0;
  border: none;
  border: 1px solid #fcfcfc;
  border-radius: 50%;
  background-color: transparent;
  -webkit-appearance: none;
  transition: border-color 0.2s linear;
}
.component-lightbox__close::before {
  content: "\ea13";
  font-weight: 400;
  font-size: 1rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  color: #fcfcfc;
  line-height: 0;
  pointer-events: none;
}
.component-lightbox__close:hover, .component-lightbox__close:focus {
  border-color: #4bc031;
}
.component-lightbox__iframe {
  position: relative;
  width: 100%;
}
.component-lightbox__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}