/*!*********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/popup/style.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************/
.wp-block-mr-blocks-modal.otter-popup__modal_wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: none;
  box-sizing: border-box;
  max-width: 100%;
  margin-top: 0;
  z-index: 1000;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap.is-active {
  display: block !important;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_wrap_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--overlay-color, rgba(0, 0, 0, 0.6));
  opacity: var(--overlay-opacity, 0.6);
  cursor: pointer;
  padding: 20px;
  z-index: 1;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content {
  position: relative;
  background: var(--popup-background, #ffffff);
  color: var(--popup-text-color, #000000);
  width: 100%;
  max-width: var(--popup-width, 600px);
  min-width: 320px;
  max-height: 90vh;
  border-radius: var(--popup-border-radius, 5px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  cursor: default;
  transform: scale(0.95) translateY(-30px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content .otter-popup__modal_header {
  position: relative;
  padding: 14px 20px 0 20px;
  background: transparent;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content .otter-popup__modal_header .otter-popup__modal_close {
  position: relative;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content .otter-popup__modal_header .otter-popup__modal_close svg {
  width: 28px;
  height: 28px;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content .otter-popup__modal_header .otter-popup__modal_close:hover {
  opacity: 1;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content .otter-popup__modal_header .otter-popup__modal_close:focus {
  outline: none;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content .otter-popup__modal_body {
  padding: clamp(20px, 2vw, 40px);
  padding-top: 0;
  overflow-y: auto;
  flex: 1;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content .otter-popup__modal_body .wp-block-heading {
  margin-bottom: 20px;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content .otter-popup__modal_body::-webkit-scrollbar {
  width: 6px;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content .otter-popup__modal_body::-webkit-scrollbar-track {
  background: transparent;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content .otter-popup__modal_body::-webkit-scrollbar-thumb {
  background-color: rgba(26, 115, 232, 0.3);
  border-radius: 3px;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content .otter-popup__modal_body::-webkit-scrollbar-thumb:hover {
  background-color: rgba(26, 115, 232, 0.5);
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content .otter-popup__modal_body > *:first-child {
  margin-top: 0;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content .otter-popup__modal_body > *:last-child {
  margin-bottom: 0;
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content:not(:has(.otter-popup__modal_header)) .otter-popup__modal_body {
  padding-top: clamp(20px, 2vw, 40px);
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap.is-active .otter-popup__modal_content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

@media (max-width: 1024px) {
  .wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content {
    max-width: var(--popup-width-tablet, 90vw);
    max-height: 90vh;
  }
}
@media (max-width: 768px) {
  .wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content {
    max-width: var(--popup-width-mobile, 95vw);
    max-height: 95vh;
  }
}
@media (max-width: 480px) {
  .wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content {
    max-width: 98vw;
  }
}
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
body.modal-open::before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

@media (prefers-reduced-motion: reduce) {
  .wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content {
    transition: opacity 0.2s ease;
    transform: none;
  }
  .wp-block-mr-blocks-modal.otter-popup__modal_wrap.is-active .otter-popup__modal_content {
    transform: none;
  }
}
@media (prefers-contrast: high) {
  .wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_content {
    border: 2px solid currentColor;
    box-shadow: none;
  }
  .wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_wrap_overlay {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .wp-block-mr-blocks-modal.otter-popup__modal_wrap .otter-popup__modal_close {
    border: 1px solid currentColor;
  }
}
.wp-block-mr-blocks-modal.otter-popup__modal_wrap.is-active .otter-popup__modal_content {
  outline: none;
}

@media print {
  .wp-block-mr-blocks-modal.otter-popup__modal_wrap {
    display: none !important;
  }
}

/*# sourceMappingURL=style-index.css.map*/