/*!***********************************************************************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!../node_modules/postcss-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/modal/modal.scss ***!
  \***********************************************************************************************************************************************************************************************/
/** GLOBALS **/
/************
/** VARIABLES
/****************************************/
/*
$grids: (
    'default': $mobile_base,
    'switches': (
        $mobile_switch: $mobile_base,
        $tablet_switch: $tablet_base,
        $max_switch: $max_base
    ),
    'definitions': (
        $mobile_base: (
            'columns': 8,
            'column': 44,
            'gutter': 14,
            'fix': false
        ),
        $tablet_base: (
            'columns': 12,
            'column': 56,
            'gutter': 22,
            'fix': false
        ),
        $max_base: (
            'columns': 12,
            'column': 139,
            'gutter': 54,
            'fix': true
        )
    )
);
*/
/* EASING */
/* Font settings */
/************
/** COLOR VARIABLES
/****************************************/
/* **************************** */
/* Pimcore-editmode used colors */
/* **************************** */
/* **************************** */
/************
/** DEFINITION OF OWN MIXINS
/****************************************/
/* stylelint-disable */
.modal__close-icon::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ek-Icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.modal__close-icon::before {
  content: "\e909";
}

.modal {
  position: fixed;
  width: 100vw;
  height: 100dvh;
  padding-block: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10001;
}
.modal.is--active {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
  pointer-events: auto;
}

.modal__bg {
  background-color: var(--modal-background-color);
  content: "";
  display: block;
  height: 100dvh;
  position: absolute;
  top: 0;
  width: 100vw;
  opacity: 0.4;
}

.modal__scroller {
  background: var(--modal-box-background-color);
  color: var(--modal-box-foreground-color);
  border-radius: var(--border-radius-l);
  overflow: auto;
  width: 90.1333333333vw;
  position: relative;
  margin-inline: auto;
  max-height: 100%;
  box-shadow: var(--box-shadow-l);
}
@media only screen and (min-width: 768px) {
  .modal__scroller {
    width: 84.6354166667vw;
  }
}
@media only screen and (min-width: 1440px) {
  .modal__scroller {
    width: 70.0520833333vw;
  }
}
@media only screen and (min-width: 1680px) {
  .modal__scroller {
    width: 1172px;
  }
}

.modal__container {
  text-align: right;
  width: 100%;
}

.modal__inner {
  text-align: left;
  padding-block: 40px;
  margin-top: -52px;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  padding-inline: 6.1333333333vw;
  gap: 60px;
}
@media only screen and (min-width: 768px) {
  .modal__inner {
    padding-inline: 2.9947916667vw;
  }
}
@media only screen and (min-width: 1680px) {
  .modal__inner {
    padding-inline: 50px;
  }
}

.modal__close {
  cursor: pointer;
  display: inline-block;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 14px;
}
.modal__close:focus-visible .modal__close-icon {
  outline-offset: 4px;
  outline-color: var(--textlink-foreground-color);
  outline-style: solid;
  outline-width: 2px;
  border-radius: 4px;
}
.modal__close::before {
  background-image: linear-gradient(to top, color-mix(in srgb, var(--modal-box-background-color), transparent 100%) 0%, var(--modal-box-background-color) 16px);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 52px;
  width: 90.1333333333vw;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .modal__close::before {
    width: 84.6354166667vw;
  }
}
@media only screen and (min-width: 1440px) {
  .modal__close::before {
    width: 70.0520833333vw;
  }
}
@media only screen and (min-width: 1680px) {
  .modal__close::before {
    width: 1172px;
  }
}

.modal__close-icon {
  border-radius: 50%;
  color: var(--modal-box-close-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 1;
  width: 24px;
  height: 24px;
  position: relative;
  transition: background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.modal__close-icon::before {
  font-size: 24px;
  line-height: 1;
}
@media (hover: hover) {
  .modal__close-icon:hover {
    --modal-box-close-color: var(--modal-box-close-hover-color);
  }
}
