/* Remove default styling from button element */
.more-info-modal__dialog {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 clamp(1.8rem, 5.5vw, 2.4rem);
  height: 100vh;
  width: 100%;
}
.more-info-modal__content {
  box-shadow: 16px 16px 20px #333333;
  max-height: 93vh;
  display: grid;
  grid-template-areas: "header" "body" "footer";
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .more-info-modal__content {
    max-width: clamp(28rem, 53vw, 101.7rem);
  }
}
.more-info-modal__content--rounded {
  border-radius: 1rem;
}

.more-info-header {
  grid-area: header;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.8rem;
  padding: clamp(2.1rem, 6.5vw, 5.5rem) clamp(2.1rem, 6.5vw, 5.5rem) clamp(2.4rem, 11.6vw, 5rem);
}
@media (min-width: 992px) {
  .more-info-header {
    padding: clamp(2.1rem, 6.5vw, 5.5rem) clamp(2.1rem, 6.5vw, 5.5rem) 2.8rem;
  }
}
.more-info-header__title {
  margin: 0;
  font-size: 2.4rem;
  line-height: normal;
}
.more-info-header__close, .more-info-header__close-icon {
  width: 3.2rem;
  height: 3.2rem;
}
.more-info-header__close {
  border: none;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.more-info-header__close-icon {
  font-size: 5.4rem;
  line-height: 0.5;
}

.more-info-body {
  padding: 0 clamp(2.1rem, 6.5vw, 5.5rem);
  grid-area: body;
  overflow-y: hidden;
}
.more-info-body__text {
  font-size: 1.6rem;
  overflow-y: auto;
  height: 100%;
  padding: 0 clamp(1.1rem, 2.5vw, 7.3rem) 5.5vh 0;
  scrollbar-width: thin;
}
.more-info-body__text::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.more-info-body__text::-webkit-scrollbar-track {
  background: #ebecf0;
}
.more-info-body__text::-webkit-scrollbar-thumb {
  background-color: #a5a5a5;
  border-radius: 10px;
}

.more-info-footer {
  grid-area: footer;
  background-color: #f4f5f7;
  padding: clamp(1.8rem, 5.5vw, 2.4rem) clamp(2.1rem, 6.5vw, 5.5rem);
  /* Wonky selector to override site template */
}
.more-info-footer--rounded {
  border-radius: 0 0 1rem 1rem;
}
@media (min-width: 992px) {
  .more-info-footer {
    display: flex;
    justify-content: flex-end;
  }
}
.more-info-footer .more-info-footer__close {
  display: block;
  width: 100%;
  padding: 1.6rem;
  font-size: 2rem !important;
  line-height: 1;
}
@media (min-width: 992px) {
  .more-info-footer .more-info-footer__close {
    width: auto;
  }
}

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