/* stylelint-disable order/order */
/*
* Converts an pixel value into a rem value.
*
* @param string  $values    the pixel value(s) as a number. Can convert multiple values if values separated by a space.
* @param integer $base      the base pixel value.
*
* @return string   a space-separated string of rem values.
*/
/*
* This is an abbreviated wrapper for the responsive-values function.
*/
/*
* Creates a CSS clamp value that sizes between breakpoints.
*
* @param integer $min                    the minimum pixel value.
* @param integer $max                    the maximum pixel value.
* @param string  $smallest-breakpoint    the name of the smallest breakpoint from the $grid-breakpoints variable.
* @param string  $largest-breakpoint     the name of the largest breakpoint from the $grid-breakpoints variable.
* @param string  $screen                 whether to use a horizontal (width) breakpoint or a vertical (height) breakpoint.
*
* @return string   a CSS clamp property value.
*/
/*
* Outputs a font family value from the $fonts variable.
*
* @param string  $key   the font key.
*
* @return string   a font family value.
*/
/*
* Outputs a color value from the $paints or $additional-paints variables.
*
* @param string  $key   the color name.
*
* @return string   a color value.
*/
/*
* Outputs an effect value from the $effects variable.
*
* @param string  $key   the effect name.
*
* @return string   an effect value.
*/
/* stylelint-enable order/order */
/*
* Used to target heading selectors.
*
* @param integer  $start               the first heading element to target. 1 through 6.
* @param integer  $end                 the last heading element to target. 1 through 6.
* @param string   $beforeCombinator    the CSS combinator to include before the heading classes.
* @param string   $afterCombinator     the CSS combinator to include after the heading classes.
* @param boolean  $includeFontClasses  whether or not to include the .has-t-1... classes or just output the standard heading elements.
*
* @return string  The included CSS wrapped with selectors for the specified headings.
*/
/*
* Used to add properties to a for a pseudo element to make an icon based on the iconfont set.
*
* @param string   $content     the content for the icon. Usually uses one of the iconfont variables.
* @param string   $font-size   the font size with unit.
*
* @return string  The CSS properties for the icon.
*/
/*
* Generates CSS to fit an element into the 12-column grid. Only works when used on an element where the parent element is the width of the entire page.
*
* @return string  CSS properties to set the width of the element to the specified column sizes.
*/
/*
* Used to target elements with a background color that has a text color different from the standard color.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma which task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/*
* This array is used to specify the fonts used on the project with the following parameters:
	base - the name for use in the font() mixin.
		css - the output CSS value.
		figma-name: - the 'font-family' name ued in the _figma-font-variable.scss file.
	)
*/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task which creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/* If additional colors need to be added to the _figma-color-variables.scss, they can be added to this variable: */
/* This variable controls the background colors generated in the ACF background_color field and the background color classes - bg-white, bg-gray-92, etc: */
/* If a background color uses a different font color than the default color, use these variables to specify the alternate colors */
/* Backgrounds specified in this variable will use the alternative text colors: */
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/****************
 * Block Spacing
 *
 * These variables are based on the "Spacing" rules found in the "Foundations" section in Figma. These control the default spacing between blocks of different colors.
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
.wp-block-table {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  border-collapse: inherit;
  border-spacing: 0;
  background-color: transparent;
}
h1 + .wp-block-table, h2 + .wp-block-table, h3 + .wp-block-table, h4 + .wp-block-table, h5 + .wp-block-table, h6 + .wp-block-table {
  margin-top: 3rem !important;
}
.block-accordion .wp-block-table table {
  border-radius: 0;
}
.block-accordion .wp-block-table table tbody tr:nth-child(odd) {
  background-color: transparent;
}
.content-wrapper > .wp-block-table {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  margin: clamp(3.5rem, -1.6428571429rem + 10.7142857143vw, 8rem) auto;
}
@media (min-width: 36rem) {
  .content-wrapper > .wp-block-table {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 48rem) {
  .content-wrapper > .wp-block-table {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
p + .wp-block-table {
  margin-top: 3rem !important;
}
.acf-block.bg-transparent + .wp-block-table {
  margin-top: 0;
}
.wp-block-table + .acf-block.bg-transparent {
  padding-top: 0;
}
@media (max-width: 47.98rem) {
  .wp-block-table.is-style-flip table {
    display: grid;
    width: calc(100% + var(--gutterWidth, 1.25rem));
    overflow-x: auto;
  }
}
@media (max-width: 47.98rem) {
  .wp-block-table.is-style-flip thead,
.wp-block-table.is-style-flip tbody,
.wp-block-table.is-style-flip tfoot,
.wp-block-table.is-style-flip tr {
    display: contents;
  }
}
@media (max-width: 47.98rem) {
  .wp-block-table.is-style-flip th,
.wp-block-table.is-style-flip td {
    grid-row: var(--mobileRow, auto)/span 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 10rem;
  }
}
.wp-block-table.is-style-flip tbody tr:nth-child(odd) td {
  background-color: #f9f2e4;
}
@media (max-width: 47.98rem) {
  .wp-block-table.is-style-scroll table {
    display: grid;
    width: calc(100% + var(--gutterWidth, 1.25rem));
    overflow-x: auto;
  }
}
@media (max-width: 47.98rem) {
  .wp-block-table.is-style-scroll th,
.wp-block-table.is-style-scroll td {
    min-width: 10rem;
  }
}
@media (max-width: 47.98rem) {
  .wp-block-table.is-style-stack thead {
    display: none;
  }
}
@media (min-width: 48rem) {
  .wp-block-table.is-style-stack thead th:first-child {
    min-width: 13.5rem;
  }
}
@media (max-width: 47.98rem) {
  .wp-block-table.is-style-stack tr {
    display: block;
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid #dbd0b8;
  }
}
@media (max-width: 47.98rem) {
  .wp-block-table.is-style-stack td {
    display: block;
    padding: 0;
    border: none;
  }
}
@media (max-width: 47.98rem) {
  .wp-block-table.is-style-stack td:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.wp-block-table__mobile-label {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  margin-bottom: 0.25rem;
}
@media (min-width: 48rem) {
  .wp-block-table__mobile-label {
    display: none;
  }
}
.wp-block-table table {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .wp-block-table table {
    border-radius: 0.75rem;
  }
}
.wp-block-table tbody tr:nth-child(odd) {
  background-color: #f9f2e4;
}
.wp-block-table thead,
.wp-block-table tbody,
.wp-block-table tfoot {
  border: none;
}
.wp-block-table thead,
.wp-block-table tfoot {
  font-weight: var(--t5-font-weight);
  font-size: var(--t5-font-size);
  font-family: var(--t5-font-family);
  line-height: var(--t5-line-height);
}
.wp-block-table thead tr th {
  background-color: #f4e7cd;
}
.wp-block-table td,
.wp-block-table th {
  padding: 1rem;
}
.wp-block-table td:first-child,
.wp-block-table th:first-child {
  padding-left: 0;
}
@media (min-width: 48rem) {
  .wp-block-table td:first-child,
.wp-block-table th:first-child {
    padding-left: 1rem;
  }
}
.wp-block-table td {
  border-bottom: 1px solid #dbd0b8;
}
.wp-block-table td br + a {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1.875rem;
  letter-spacing: 0.1rem;
  text-align: center;
  text-transform: uppercase;
  border-radius: 2.875rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  /*custom arrow hover effect*/
  position: relative;
  z-index: 0;
  color: #fffdf9;
  border: none;
  background-color: #001d34;
  overflow: hidden;
  transition: all 0.4s ease-out;
  /*END custom arrow hover effect*/
  /*custom arrow hover effect*/
  /*END custom arrow hover effect*/
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  padding: 0.5rem 1.25rem;
  text-decoration: none;
}
.bg-dark .wp-block-table td br + a:not(.ignore-font-color-change), .bg-dark-stripes .wp-block-table td br + a:not(.ignore-font-color-change), .bg-dark-stripes-alt .wp-block-table td br + a:not(.ignore-font-color-change), .bg-dark-chevron .wp-block-table td br + a:not(.ignore-font-color-change) {
  color: #001d34;
  border-color: #fffdf9;
  background-color: #fffdf9;
}
.bg-dark .wp-block-table td br + a:not(.ignore-font-color-change):hover, .bg-dark-stripes .wp-block-table td br + a:not(.ignore-font-color-change):hover, .bg-dark-stripes-alt .wp-block-table td br + a:not(.ignore-font-color-change):hover, .bg-dark-chevron .wp-block-table td br + a:not(.ignore-font-color-change):hover, .bg-dark .wp-block-table td br + a:not(.ignore-font-color-change):focus, .bg-dark-stripes .wp-block-table td br + a:not(.ignore-font-color-change):focus, .bg-dark-stripes-alt .wp-block-table td br + a:not(.ignore-font-color-change):focus, .bg-dark-chevron .wp-block-table td br + a:not(.ignore-font-color-change):focus {
  color: #fffdf9;
  border-color: #e00000;
  background-color: #e00000;
}
.wp-block-table td br + a:hover, .wp-block-table td br + a:focus {
  color: #fffdf9;
  border-color: #e00000;
  background: #001d34;
}
.site-1 .wp-block-table td br + a::before {
  position: absolute;
  top: 0;
  left: -18% !important;
  bottom: 0;
  content: "";
  z-index: -1;
  width: 0 !important;
  height: 0;
  margin: 0 auto;
  border-top: 24px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 24px solid #e00000;
  transition: all 0.4s ease-out;
}
.site-1 .wp-block-table td br + a::after {
  position: absolute;
  top: 0;
  left: -14% !important;
  content: "";
  z-index: -2;
  display: block;
  width: 0 !important;
  height: 100% !important;
  background-color: #e00000;
  transition: all 0.4s ease-out;
}
.site-1 .wp-block-table td br + a:hover::before, .site-1 .wp-block-table td br + a:focus::before {
  left: 100% !important;
}
.site-1 .wp-block-table td br + a:hover::after, .site-1 .wp-block-table td br + a:focus::after {
  width: 114% !important;
}
.bg-white .wp-block-table td br + a {
  color: #fffdf9;
  border: 2px solid #001d34;
  background-color: #001d34;
}
.bg-white .wp-block-table td br + a:hover, .bg-white .wp-block-table td br + a:focus {
  color: #fffdf9;
  border-color: #e00000;
  background-color: #e00000;
}
.wp-block-table td br + a:hover, .wp-block-table td br + a:focus {
  color: #fffdf9;
  text-decoration: none;
}
.wp-block-table .has-fixed-layout {
  width: 100%;
  table-layout: fixed;
}
.wp-block-table .has-fixed-layout td,
.wp-block-table .has-fixed-layout th {
  word-break: break-word;
}
.wp-block-table.alignleft, .wp-block-table.aligncenter, .wp-block-table.alignright {
  display: table;
  width: auto;
}
.wp-block-table.alignleft td,
.wp-block-table.alignleft th, .wp-block-table.aligncenter td,
.wp-block-table.aligncenter th, .wp-block-table.alignright td,
.wp-block-table.alignright th {
  word-break: break-word;
}
.wp-block-table.--membership thead {
  display: none;
}
@media (min-width: 48rem) {
  .wp-block-table.--membership thead {
    display: table-header-group;
  }
}
.wp-block-table.--membership td:nth-child(3) {
  display: none;
}
@media (min-width: 48rem) {
  .wp-block-table.--membership td:nth-child(3) {
    display: table-cell;
  }
}
.wp-block-table.--membership tr {
  display: flex;
  flex-direction: column;
}
@media (min-width: 48rem) {
  .wp-block-table.--membership tr {
    display: table-row;
  }
}
.wp-block-table.--membership td:first-child {
  padding-left: 1rem;
  border-bottom: 0;
}
@media (min-width: 48rem) {
  .wp-block-table.--membership td:first-child {
    border-bottom: 1px solid #dbd0b8;
  }
}
.wp-block-table.--membership td + td {
  padding-top: 0.5rem;
}
@media (min-width: 48rem) {
  .wp-block-table.--membership td + td {
    padding-top: 1rem;
  }
}