/* stylelint-disable order/order */
/* stylelint-enable order/order */
/*
* 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 task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/*
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;
}
*/
.gated-content {
  position: relative;
}
.gated-content::after {
  position: fixed;
  top: 0;
  bottom: 0;
  content: "";
  z-index: 2;
  width: 100%;
  background-color: rgba(252, 252, 252, 0.4);
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
}
.gated-content__overlay {
  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));
  position: absolute;
  left: 50%;
  right: 0;
  z-index: 3;
  padding: clamp(2.625rem, -0.6607142857rem + 6.8452380952vw, 5.5rem) clamp(1.25rem, -5.3214285714rem + 13.6904761905vw, 7rem) clamp(3rem, -0.4285714286rem + 7.1428571429vw, 6rem);
  border-radius: 1rem;
  background: linear-gradient(90deg, #0587be 0%, #0737cf 50%, #0a1151 100%);
  box-shadow: 0 0.3125rem 1.25rem rgba(10, 17, 81, 0.1);
  transform: translateX(-50%);
  overflow: hidden;
}
@media (min-width: 36rem) {
  .gated-content__overlay {
    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) {
  .gated-content__overlay {
    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: 62rem) {
  .gated-content__overlay {
    width: calc(var(--columnWidth) * 10 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 10 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 75rem) {
  .gated-content__overlay {
    width: calc(var(--columnWidth) * 8 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 8 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
.gated-content__overlay > h2 {
  text-align: center;
}
.gated-content .gform_footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-top: clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem);
}
.gated-content .gform_footer > .c-btn {
  margin: auto clamp(0.75rem, 0.4642857143rem + 0.5952380952vw, 1rem) auto 0 !important;
  white-space: nowrap;
}
@media (max-width: 35.98rem) {
  .gated-content .gform_footer > .c-btn {
    width: 100%;
    margin-bottom: clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem) !important;
  }
}
.gated-content .gform_footer .c-btn--back__wrapper {
  display: inline-flex;
  margin: auto 0;
}