/* 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.
*/
/*
* Used to add the decorative line on the right or left side of a text element.
*/
/****************
 * 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;
}
*/
.block-library {
  position: sticky;
  top: 0;
  z-index: 99;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 0rem 1.25rem;
  border-top: 1px solid #dee0e3;
  border-bottom: 1px solid #dee0e3;
  background-color: #fcfcfc;
}
@media (min-width: 75rem) {
  .block-library {
    padding: 0 var(--gutterWidth, 1.25rem);
  }
}
.block-library::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fcfcfc;
  pointer-events: none;
}
.block-library:not([class*=visible-]) {
  margin-bottom: clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem);
}
body.admin-bar .block-library {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .block-library {
    top: 46px;
  }
}
.block-library__hero {
  padding: 5rem 0rem 2.5rem 0rem;
  text-align: center;
}
.block-library__nav {
  font-weight: var(--body-2-font-weight);
  font-size: var(--body-2-font-size);
  font-family: var(--body-2-font-family);
  line-height: var(--body-2-line-height);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #fcfcfc;
  list-style: none;
}
.block-library__nav li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}
.block-library__nav.hover-enabled .block-library__dropdown-wrapper:hover .block-library__nav-heading-button::after, .block-library__nav.hover-enabled .block-library__dropdown-wrapper:focus .block-library__nav-heading-button::after {
  transform: rotate(180deg);
}
.block-library__nav.hover-enabled .block-library__dropdown-wrapper:hover .block-library__dropdown, .block-library__nav.hover-enabled .block-library__dropdown-wrapper:focus .block-library__dropdown {
  display: block;
}
.block-library__nav:not(.hover-enabled) .block-library__nav-heading-button.active::after {
  transform: rotate(180deg);
}
.block-library__nav:not(.hover-enabled) .block-library__nav-heading-button.active ~ .block-library__dropdown {
  display: block;
}
.block-library__nav-heading-button {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding: 0rem 2rem 0.75rem 0rem;
  border: none;
  background: transparent;
  -webkit-appearance: none;
}
.block-library__nav-heading-button::after {
  content: "\ea0e";
  font-weight: 400;
  font-size: 1rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: transform 0.2s linear;
}
.block-library__nav-heading {
  margin-right: 0.75rem;
  margin-bottom: 0;
}
.block-library .block-library__toggle-buttons button,
.block-library .block-library__toggle-button {
  font-weight: var(--title-3-font-weight);
  font-size: var(--title-3-font-size);
  font-family: var(--title-3-font-family);
  line-height: var(--title-3-line-height);
  display: block;
  padding: 0.5rem 1.5rem 0.5rem 0rem;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
}
.block-library .block-library__toggle-buttons button:hover, .block-library .block-library__toggle-buttons button:focus,
.block-library .block-library__toggle-button:hover,
.block-library .block-library__toggle-button:focus {
  color: #101e37;
}
.block-library__toggle-buttons {
  order: -1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.block-library__toggle-buttons button {
  padding: 0.5rem 1rem 0.25rem 0rem !important;
}
@media (min-width: 36rem) {
  .block-library__toggle-buttons button {
    padding: 0.75rem 1.5rem 0.5rem 0rem !important;
  }
}
.block-library__hover-labels-toggle-button span:last-child, .block-library__overlays-toggle-button span:last-child, .block-library__colors-toggle-button span:last-child {
  display: none;
}
.block-library__hover-labels-toggle-button.active span:first-child, .block-library__overlays-toggle-button.active span:first-child, .block-library__colors-toggle-button.active span:first-child {
  display: none;
}
.block-library__hover-labels-toggle-button.active span:last-child, .block-library__overlays-toggle-button.active span:last-child, .block-library__colors-toggle-button.active span:last-child {
  display: block;
}
.block-library__reset-order-button {
  padding-right: 0;
}
.block-library__dropdown-wrapper {
  cursor: pointer;
}
.block-library__dropdown-wrapper:hover, .block-library__dropdown-wrapper:focus {
  color: #101e37;
}
.block-library__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: -2;
  display: none;
  padding: 1.5rem 0rem 2rem 0rem;
  border-top: 1px solid #dee0e3;
  border-bottom: 1px solid #dee0e3;
  background-color: #fcfcfc;
}
.block-library__dropdown .block-library__toggle-button {
  margin-bottom: 1rem;
}
.block-library__container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.block-library__nav-sub-menu {
  display: block;
  flex: 0 0 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 36rem) {
  .block-library__nav-sub-menu {
    column-count: 2;
    column-gap: clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem);
  }
}
@media (min-width: 48rem) {
  .block-library__nav-sub-menu {
    column-count: 3;
  }
}
@media (min-width: 62rem) {
  .block-library__nav-sub-menu {
    column-count: 4;
  }
}
.block-library__nav-sub-menu li {
  margin: 0 0 clamp(0.5rem, -0.6428571429rem + 2.380952381vw, 1.5rem) 0;
}
.block-library__label {
  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: 0;
  padding-left: 1.5rem;
}
.block-library__label::before {
  left: -0.5rem;
}
.block-library__label:hover, .block-library__label:focus {
  color: #101e37;
}
.block-library__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.block-library__block-label {
  font-weight: var(--body-2-font-weight);
  font-size: var(--body-2-font-size);
  font-family: var(--body-2-font-family);
  line-height: var(--body-2-line-height);
  position: absolute;
  left: var(--blockMarginLeft, 0);
  z-index: 98;
  display: none;
  padding: 1.25rem 0.0625rem;
  color: #1e1e1e;
  font-weight: 400;
  white-space: nowrap;
  text-orientation: sideways;
  border: 1px solid #e0e0e0;
  background-color: #f0f0f0;
  opacity: 0;
  transform: scale(-1);
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  writing-mode: vertical-rl;
}
.offset-label .block-library__block-label {
  transform: translateX(-100%) scale(-1);
}
.block-library__block-label a {
  display: inline-block;
  margin-top: 1rem;
  color: #1e1e1e !important;
}
.block-library__inactive-label {
  font-weight: var(--body-2-font-weight);
  font-size: var(--body-2-font-size);
  font-family: var(--body-2-font-family);
  line-height: var(--body-2-line-height);
  position: absolute;
  right: var(--blockMarginLeft, 0);
  z-index: 98;
  padding: 1.25rem 0.0625rem;
  color: #fcfcfc;
  font-weight: 400;
  white-space: nowrap;
  text-orientation: sideways;
  border: 1px solid #e0e0e0;
  border-color: #ad0322;
  background-color: #ad0322;
  pointer-events: none;
  writing-mode: vertical-rl;
}
.offset-label .block-library__inactive-label {
  transform: translateX(-100%);
}
.block-library__inactive-title-label {
  margin-left: 0.25rem;
  color: #ad0322;
}
.block-library:not(.hide-hover-labels) ~ .block-library__content-wrapper > *[data-block-title]:hover > .block-library__block-label {
  opacity: 1;
  pointer-events: auto;
}
.block-library:not(.hide-hover-labels) ~ .block-library__content-wrapper > *[data-block-title] > .block-library__block-label {
  display: block;
}
.block-library.show-overlays ~ .block-library__content-wrapper > *[data-block-title]::after {
  position: absolute;
  left: 0;
  content: "";
  z-index: 97;
  display: block;
  width: 100%;
  height: var(--blockHeight);
  background: linear-gradient(to bottom, #f8cb9c 0%, #f8cb9c var(--blockMarginTop), #c2ddb6 var(--blockMarginTop), #c2ddb6 calc(var(--blockPaddingTop) + var(--blockMarginTop)), #9fc4e7 calc(var(--blockPaddingTop) + var(--blockMarginTop)), #9fc4e7 calc(var(--blockHeight) - var(--blockPaddingBottom) - var(--blockMarginBottom)), #c2ddb6 calc(var(--blockHeight) - var(--blockPaddingBottom) - var(--blockMarginBottom)), #c2ddb6 calc(var(--blockHeight) - var(--blockMarginBottom)), #f8cb9c calc(var(--blockHeight) - var(--blockMarginBottom)));
  opacity: 0;
  transform: translateY(calc(-100% + var(--blockPaddingBottom) + var(--blockMarginBottom)));
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
}
.block-library.show-overlays ~ .block-library__content-wrapper > *[data-block-title]:hover::after {
  opacity: 0.5;
}
body:not(.block-library-initialized) .block-library ~ .block-library__content-wrapper {
  display: none !important;
}
.block-library__colors {
  display: grid;
  row-gap: clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem);
}
.block-library__color {
  font-weight: var(--title-2-font-weight);
  font-size: var(--title-2-font-size);
  font-family: var(--title-2-font-family);
  line-height: var(--title-2-line-height);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(4rem, 0.0833333333 * 100vw, 7.5rem);
  padding: 1rem !important;
}
.block-library__color-hex {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
}
.block-library.hide-colors ~ .block-library__colors {
  display: none;
}