/* Gradients */
/* uses gradient ($morning-crop-1 or $day-crop-1) for header backgrounds */
/* Mixin for box sizing */
/* Clearfix helper
/* @requires {mixin} clearfix */
/* Mixin to size elements.
/* @param {Number} $width           - Width
/* @param {Number} $height [$width] - Height */
/* Accessibility hiding helper.
/* @param {Bool} $extend [true] - Whether or not extend a placeholder.
/* @requires {mixin} size */
/* Accessibility hiding helper.
/* @requires {mixin} visually-hidden */
/* Truncate Text
/* @required - specify your boundry with a max width value */
/* Position (vert, hor, center) */
/* Text Alignment Left, Right, Center */
/* Aspect Ratio */
/* Mixin to round corners */
/* Adjust the leading to a new multiple of the baseline */
/* Calculate the number of baselines required to accomodate a
/* given pixel-based font size. */
/* 16. Remove the unit of a length
/* =========================================== */
/*
/* Calculate Rem
/* */
/*
/* Margin
/*
/* calculates margin in 'rem' with 'px' fallback.
/* with the option to set direction, e.g., 'margin-top'
/* */
/*
/* Padding
/*
/* calculates padding in 'rem' with 'px' fallback.
/* with the option to set direction, e.g., 'padding-top'
/* */
/*
/* Size Rem
/*
/* calculates size (width & height) in 'rem'
/* with 'px' fallback.
/* */
/*
/* Width Rem
/*
/* calculates width in 'rem' with 'px' fallback.
/* */
/*
/* Height Rem
/*
/* calculates height in 'rem' with 'px' fallback.
/* */
/* Removes space from above text to make it flush at the top (not 100% reliable) */
/*Normal Focus No Circle */
/* Accessibility: hide/undo item from screen reader */
.card {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  padding: 0px;
  border: 1px solid #b6c1cc;
  border-radius: 8px;
  flex: 1 0 100%;
  overflow: hidden;
  max-width: 300px;
}
@media screen and (min-width: 48em) {
  .card {
    flex: 1;
    width: 284px;
  }
}
.card__item {
  width: 100%;
  box-sizing: border-box;
}
.card__item:first-child {
  background: #f1f3f6;
}
.card__item:first-child a {
  outline: none;
}
.card__item:last-child {
  font-family: "Acid Grotesk";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: #0057ae;
  line-height: 24px;
  padding: 16px 22px 24px;
  text-decoration: none;
  text-align: left;
  display: flex;
  align-items: center;
}
.card__item:last-child a {
  align-items: center;
  display: flex;
}
.card__item:last-child a span {
  padding: 0 2px;
}
.card__item:last-child a svg {
  width: 22px;
  height: 22px;
  fill: #0057ae;
}
.card__item:last-child a:hover, .card__item:last-child a:active {
  color: #022043;
}
.card__item:last-child a:hover svg, .card__item:last-child a:active svg {
  fill: #022043;
}
.card__item:last-child a:focus {
  color: #022043;
  box-shadow: 0 0 0 2px #0057ae;
  border: none;
  outline: none;
  border-radius: 24px;
}
.card__item:last-child a:focus svg {
  fill: #022043;
}
.card__item.flexible {
  padding: 8px 24px 0;
  flex-grow: 1;
}
.card__thumbnail {
  margin: 0 auto;
  display: block;
  height: 148px;
}
.card h3 {
  color: #022043;
  font-family: "Acid Grotesk";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 7px;
}

.card-cta__blue {
  color: #0057ae;
  outline: none;
}
.card-cta__blue svg {
  fill: #0057ae;
  padding-right: 6px;
}
.card-cta__blue:hover, .card-cta__blue:active {
  color: #022043;
}
.card-cta__blue:hover svg, .card-cta__blue:active svg {
  fill: #022043;
}
.card-cta__blue:focus {
  color: #022043;
  box-shadow: 0 0 0 2px #0057ae;
  border: none;
  outline: none;
  border-radius: 24px;
}
.card-cta__blue:focus svg {
  fill: #022043;
}
/* Gradients */
/* uses gradient ($morning-crop-1 or $day-crop-1) for header backgrounds */
/* Mixin for box sizing */
/* Clearfix helper
/* @requires {mixin} clearfix */
/* Mixin to size elements.
/* @param {Number} $width           - Width
/* @param {Number} $height [$width] - Height */
/* Accessibility hiding helper.
/* @param {Bool} $extend [true] - Whether or not extend a placeholder.
/* @requires {mixin} size */
/* Accessibility hiding helper.
/* @requires {mixin} visually-hidden */
/* Truncate Text
/* @required - specify your boundry with a max width value */
/* Position (vert, hor, center) */
/* Text Alignment Left, Right, Center */
/* Aspect Ratio */
/* Mixin to round corners */
/* Adjust the leading to a new multiple of the baseline */
/* Calculate the number of baselines required to accomodate a
/* given pixel-based font size. */
/* 16. Remove the unit of a length
/* =========================================== */
/*
/* Calculate Rem
/* */
/*
/* Margin
/*
/* calculates margin in 'rem' with 'px' fallback.
/* with the option to set direction, e.g., 'margin-top'
/* */
/*
/* Padding
/*
/* calculates padding in 'rem' with 'px' fallback.
/* with the option to set direction, e.g., 'padding-top'
/* */
/*
/* Size Rem
/*
/* calculates size (width & height) in 'rem'
/* with 'px' fallback.
/* */
/*
/* Width Rem
/*
/* calculates width in 'rem' with 'px' fallback.
/* */
/*
/* Height Rem
/*
/* calculates height in 'rem' with 'px' fallback.
/* */
/* Removes space from above text to make it flush at the top (not 100% reliable) */
/*Normal Focus No Circle */
/* Accessibility: hide/undo item from screen reader */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}
@media screen and (max-width: 48em) {
  .cards {
    display: grid;
  }
}

.modal-wrapper-overlay {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 48em) {
  .modal-wrapper-overlay {
    position: relative;
  }
}
.modal-wrapper-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: var(--setHeight);
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
}
.modal-wrapper-overlay .modal-wrapper {
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-sizing: border-box;
  flex-flow: column;
  max-width: 936px;
  padding: 32px 48px;
  margin: 0 32px;
  position: absolute;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
@media screen and (max-width: 48em) {
  .modal-wrapper-overlay .modal-wrapper {
    position: relative;
    display: inherit;
    margin: 32px;
    top: 0;
    transform: translate(0%, 0%);
    padding: 32px;
  }
}
@media only screen and (max-height: 768px) and (max-width: 991px) and (orientation: landscape) {
  .modal-wrapper-overlay .modal-wrapper {
    top: 0;
    transform: none;
    margin: 32px 32px 108px 32px;
  }
}
.modal-wrapper-overlay .modal-wrapper h1 {
  font-family: "Acid Grotesk";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 24.96px;
  color: #022043;
  text-align: center;
  margin-top: 0;
  margin-bottom: 32px;
}
