/* colors */
/* The CTA and Main colors are pulled from site templates created by the Design team. These colors vary per OEM or group. */
/* CTA stands for Call-to-Action. The CTA color is often a bright, eye-catching color like red or light blue, used for links and important buttons. */
/* The Main color is often a dark, muted color like black or navy blue, used for backgrounds and less important buttons. */
/* fonts */
/* breakpoints */
/* borders */
/* local variables */
/* TODO: remove if border color classes are added to site templates */
/* Construct a media query that applies to multiple ranges of breakpoints. First and last argument must either be a single number or a list of 2 numbers. */
/* Make sure to give the truncated element a width. If the truncated element has display: flex or inline-flex, add min-width: 0 to the truncated element's immediate parent. If the flex truncated element is nested inside one or more other flex containers, also add min-width: 0 to the nearest ancestor element that does NOT have display: flex or inline-flex */
/* Single element */
/* Works well for either single elements, or multiple elements grouped under the same parent */
/* Remove default styling from button element */
/* Create a multi-column ul that avoids list items breaking between 2 columns. li { display: inline-block } will force each list item to stay in one column, but also removes the default list item styling (bullets). Adding a bullet character in the ::before, changing the display of the li to inline-flex, and adding a column gap to the li restores the bullet styling. */
.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 */
