/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[4]!./source/components/modal/styles.scss ***!
  \***************************************************************************************************************************************************************************************************************************************************************************/
.c-modal {
  position: fixed;
  opacity: 0;
  z-index: -1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: space-around;
  pointer-events: none;
  display: grid;
}
.c-modal.is-active {
  opacity: 1;
  z-index: 1000;
  pointer-events: auto;
}
.c-modal.is-active.c-modal--auto-width {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-modal .visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

.c-modal__inner {
  position: relative;
  display: block;
  max-width: 80vw;
  max-height: 80vh;
  background-color: white;
  padding: 2rem;
}
.c-modal--auto-width .c-modal__inner {
  top: auto;
  transform: none;
}

.c-modal__actions {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}

.c-modal__action {
  transition-property: background-color;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
  border: 0;
  padding: 4px;
  width: 32px;
  height: 32px;
  background-size: cover;
  background-repeat: no-repeat;
  background-origin: content-box;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 100%;
  color: white;
  cursor: pointer;
}
.c-modal__action:hover {
  background-color: var(--theme-palette-color-1);
}

.c-modal__content {
  position: relative;
  z-index: 0;
  max-height: inherit;
}
.c-modal__content .c-carousel__slide img {
  max-height: 66vh;
  -o-object-fit: contain;
     object-fit: contain;
}

/*# sourceMappingURL=styles.css.map*/