﻿/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*@import url("https://use.typekit.net/jrx6fvf.css");*/
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--animate_opacity {
  opacity: 0.001;
  will-change: opacity;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #ccc;
}

.pswp__error-msg a {
  color: #ccc;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  transition: opacity 0.2s;
  box-shadow: none;
}

.pswp__button:focus,
.pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1),
(min-resolution: 105dpi),
(min-resolution: 1.1dppx) {

  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg);
  }

  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}

.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #fff;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  transform: translateY(6px);
  transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  transform: translateY(0);
}

.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid rgba(0, 0, 0, 0);
  border-bottom-color: #fff;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3e5c9a;
  color: #fff;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3e5c9a;
}

a.pswp__share--twitter:hover {
  background: #55acee;
  color: #fff;
}

a.pswp__share--pinterest:hover {
  background: #ccc;
  color: #ce272d;
}

a.pswp__share--download:hover {
  background: #ddd;
}

.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #fff;
  opacity: 0.75;
  padding: 0 10px;
}

.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #bbb;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #ccc;
}

.pswp__caption--empty {
  display: none;
}

.pswp__caption--fake {
  visibility: hidden;
}

.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  background: url(preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}

@keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes donut-rotate {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(-140deg);
  }

  100% {
    transform: rotate(0);
  }
}

.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  opacity: 0.001;
}

.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

/*!
 * Font Awesome Pro 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
.fa,
.fas,
.cards-grid-x.accordion-cards .cell-card .card-content .title::after,
.cards-grid-x .cell-cards-link .cards-view-all-link:after,
.wp-block-kadence-tabs .kt-tabs-title-list a.kt-tab-title::after,
.wrapper-euka-event .event-button a:after,
.cell-gutenberg-content ._form ._submit::after,
.top-menu .nav-icon-user a:before,
.top-menu .nav-icon-student a:before,
.menu-main-menu-container .main-menu .sub-menu-title:before,
.styled-checkbox-content::after,
.forminator-ui .forminator-button:after,
.ac-form.ac-form-simple .footer-form-form form ._form-content button:after,
.woocommerce-account .woocommerce-MyAccount-navigation a::before,
.woocommerce ul.products li.product .button::after,
.woocommerce-page ul.products li.product .button::after,
.theme-euka ul.products li.product .button::after,
.product form.cart .single_add_to_cart_button::after,
.account-student-download::before,
.far,
.bjm-cards-wrapper.families .cell.cell-card .card-inner .card-image::after,
.cell.cell-card.type-bjm_team .card-inner .card-image:after,
.cell.cell-card.cell-card.type-post .card-inner .card-image::after,
.cell.cell-card.cell-card.type-podcast .card-inner .card-image::after,
.cell.cell-card.cell-card.type-bjm_resource .card-inner .card-image::after,
.cell.cell-card.cell-card.type-bjm_event .card-inner .card-image::after,
.bjm-cards-wrapper .accordion-cards.cards-grid-x .cell-card .card-content .title::after,
.account-shared-access-student-access li::before,
.fal,
.woocommerce-breadcrumb a:first-child::before,
.fad,
.fab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.cards-grid-x.accordion-cards .cell-card .card-content .title::after,
.cards-grid-x .cell-cards-link .cards-view-all-link:after,
.bjm-cards-wrapper.families .cell.cell-card .card-inner .card-image::after,
.cell.cell-card.type-bjm_team .card-inner .card-image:after,
.cell.cell-card.cell-card.type-post .card-inner .card-image::after,
.cell.cell-card.cell-card.type-podcast .card-inner .card-image::after,
.cell.cell-card.cell-card.type-bjm_resource .card-inner .card-image::after,
.cell.cell-card.cell-card.type-bjm_event .card-inner .card-image::after,
.wp-block-kadence-tabs .kt-tabs-title-list a.kt-tab-title::after,
.wrapper-euka-event .event-button a:after,
.cell-gutenberg-content ._form ._submit::after,
.top-menu .nav-icon-user a:before,
.top-menu .nav-icon-student a:before,
.menu-main-menu-container .main-menu .sub-menu-title:before,
.styled-checkbox-content::after,
.forminator-ui .forminator-button:after,
.ac-form.ac-form-simple .footer-form-form form ._form-content button:after,
.woocommerce-breadcrumb a:first-child::before,
.woocommerce-account .woocommerce-MyAccount-navigation a::before,
.woocommerce ul.products li.product .button::after,
.woocommerce-page ul.products li.product .button::after,
.theme-euka ul.products li.product .button::after,
.product form.cart .single_add_to_cart_button::after,
.account-student-download::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: solid 0.08em #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fas.fa-pull-left,
.cards-grid-x.accordion-cards .cell-card .card-content .fa-pull-left.title::after,
.cards-grid-x .cell-cards-link .fa-pull-left.cards-view-all-link:after,
.wp-block-kadence-tabs .kt-tabs-title-list a.fa-pull-left.kt-tab-title::after,
.wrapper-euka-event .event-button a.fa-pull-left:after,
.cell-gutenberg-content ._form .fa-pull-left._submit::after,
.top-menu .nav-icon-user a.fa-pull-left:before,
.top-menu .nav-icon-student a.fa-pull-left:before,
.menu-main-menu-container .main-menu .fa-pull-left.sub-menu-title:before,
.fa-pull-left.styled-checkbox-content::after,
.forminator-ui .fa-pull-left.forminator-button:after,
.ac-form.ac-form-simple .footer-form-form form ._form-content button.fa-pull-left:after,
.woocommerce-account .woocommerce-MyAccount-navigation a.fa-pull-left::before,
.woocommerce ul.products li.product .fa-pull-left.button::after,
.woocommerce-page ul.products li.product .fa-pull-left.button::after,
.theme-euka ul.products li.product .fa-pull-left.button::after,
.product form.cart .fa-pull-left.single_add_to_cart_button::after,
.fa-pull-left.account-student-download::before,
.far.fa-pull-left,
.bjm-cards-wrapper.families .cell.cell-card .card-inner .fa-pull-left.card-image::after,
.cell.cell-card.type-bjm_team .card-inner .fa-pull-left.card-image:after,
.cell.cell-card.cell-card.type-post .card-inner .fa-pull-left.card-image::after,
.cell.cell-card.cell-card.type-podcast .card-inner .fa-pull-left.card-image::after,
.cell.cell-card.cell-card.type-bjm_resource .card-inner .fa-pull-left.card-image::after,
.cell.cell-card.cell-card.type-bjm_event .card-inner .fa-pull-left.card-image::after,
.bjm-cards-wrapper .accordion-cards.cards-grid-x .cell-card .card-content .fa-pull-left.title::after,
.account-shared-access-student-access li.fa-pull-left::before,
.fal.fa-pull-left,
.woocommerce-breadcrumb a.fa-pull-left:first-child::before,
.fab.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right,
.fas.fa-pull-right,
.cards-grid-x.accordion-cards .cell-card .card-content .fa-pull-right.title::after,
.cards-grid-x .cell-cards-link .fa-pull-right.cards-view-all-link:after,
.wp-block-kadence-tabs .kt-tabs-title-list a.fa-pull-right.kt-tab-title::after,
.wrapper-euka-event .event-button a.fa-pull-right:after,
.cell-gutenberg-content ._form .fa-pull-right._submit::after,
.top-menu .nav-icon-user a.fa-pull-right:before,
.top-menu .nav-icon-student a.fa-pull-right:before,
.menu-main-menu-container .main-menu .fa-pull-right.sub-menu-title:before,
.fa-pull-right.styled-checkbox-content::after,
.forminator-ui .fa-pull-right.forminator-button:after,
.ac-form.ac-form-simple .footer-form-form form ._form-content button.fa-pull-right:after,
.woocommerce-account .woocommerce-MyAccount-navigation a.fa-pull-right::before,
.woocommerce ul.products li.product .fa-pull-right.button::after,
.woocommerce-page ul.products li.product .fa-pull-right.button::after,
.theme-euka ul.products li.product .fa-pull-right.button::after,
.product form.cart .fa-pull-right.single_add_to_cart_button::after,
.fa-pull-right.account-student-download::before,
.far.fa-pull-right,
.bjm-cards-wrapper.families .cell.cell-card .card-inner .fa-pull-right.card-image::after,
.cell.cell-card.type-bjm_team .card-inner .fa-pull-right.card-image:after,
.cell.cell-card.cell-card.type-post .card-inner .fa-pull-right.card-image::after,
.cell.cell-card.cell-card.type-podcast .card-inner .fa-pull-right.card-image::after,
.cell.cell-card.cell-card.type-bjm_resource .card-inner .fa-pull-right.card-image::after,
.cell.cell-card.cell-card.type-bjm_event .card-inner .fa-pull-right.card-image::after,
.bjm-cards-wrapper .accordion-cards.cards-grid-x .cell-card .card-content .fa-pull-right.title::after,
.account-shared-access-student-access li.fa-pull-right::before,
.fal.fa-pull-right,
.woocommerce-breadcrumb a.fa-pull-right:first-child::before,
.fab.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}

@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(-1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-flip-both {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-500px:before {
  content: "\f26e";
}

.fa-abacus:before {
  content: "\f640";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acorn:before {
  content: "\f6ae";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-conditioner:before {
  content: "\f8f4";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-alarm-clock:before {
  content: "\f34e";
}

.fa-alarm-exclamation:before {
  content: "\f843";
}

.fa-alarm-plus:before {
  content: "\f844";
}

.fa-alarm-snooze:before {
  content: "\f845";
}

.fa-album:before {
  content: "\f89f";
}

.fa-album-collection:before {
  content: "\f8a0";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-alicorn:before {
  content: "\f6b0";
}

.fa-alien:before {
  content: "\f8f5";
}

.fa-alien-monster:before {
  content: "\f8f6";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-slash:before {
  content: "\f846";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-amp-guitar:before {
  content: "\f8a1";
}

.fa-analytics:before {
  content: "\f643";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angel:before {
  content: "\f779";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-crate:before {
  content: "\f6b1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before,
.woocommerce-account .woocommerce-MyAccount-navigation-link--downloads a:before,
.woocommerce-account .woocommerce-MyAccount-navigation-link--student-downloads a:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-alt-down:before {
  content: "\f354";
}

.fa-arrow-alt-from-bottom:before {
  content: "\f346";
}

.fa-arrow-alt-from-left:before {
  content: "\f347";
}

.fa-arrow-alt-from-right:before {
  content: "\f348";
}

.fa-arrow-alt-from-top:before {
  content: "\f349";
}

.fa-arrow-alt-left:before {
  content: "\f355";
}

.fa-arrow-alt-right:before {
  content: "\f356";
}

.fa-arrow-alt-square-down:before {
  content: "\f350";
}

.fa-arrow-alt-square-left:before {
  content: "\f351";
}

.fa-arrow-alt-square-right:before {
  content: "\f352";
}

.fa-arrow-alt-square-up:before {
  content: "\f353";
}

.fa-arrow-alt-to-bottom:before {
  content: "\f34a";
}

.fa-arrow-alt-to-left:before {
  content: "\f34b";
}

.fa-arrow-alt-to-right:before {
  content: "\f34c";
}

.fa-arrow-alt-to-top:before {
  content: "\f34d";
}

.fa-arrow-alt-up:before {
  content: "\f357";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-from-bottom:before {
  content: "\f342";
}

.fa-arrow-from-left:before {
  content: "\f343";
}

.fa-arrow-from-right:before {
  content: "\f344";
}

.fa-arrow-from-top:before {
  content: "\f345";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-square-down:before {
  content: "\f339";
}

.fa-arrow-square-left:before {
  content: "\f33a";
}

.fa-arrow-square-right:before {
  content: "\f33b";
}

.fa-arrow-square-up:before {
  content: "\f33c";
}

.fa-arrow-to-bottom:before {
  content: "\f33d";
}

.fa-arrow-to-left:before {
  content: "\f33e";
}

.fa-arrow-to-right:before {
  content: "\f340";
}

.fa-arrow-to-top:before {
  content: "\f341";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-atom-alt:before {
  content: "\f5d3";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-axe:before {
  content: "\f6b2";
}

.fa-axe-battle:before {
  content: "\f6b3";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backpack:before {
  content: "\f5d4";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-bacteria:before {
  content: "\e059";
}

.fa-bacterium:before {
  content: "\e05a";
}

.fa-badge:before {
  content: "\f335";
}

.fa-badge-check:before {
  content: "\f336";
}

.fa-badge-dollar:before {
  content: "\f645";
}

.fa-badge-percent:before {
  content: "\f646";
}

.fa-badge-sheriff:before {
  content: "\f8a2";
}

.fa-badger-honey:before {
  content: "\f6b4";
}

.fa-bags-shopping:before {
  content: "\f847";
}

.fa-bahai:before {
  content: "\f666";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ball-pile:before {
  content: "\f77e";
}

.fa-ballot:before {
  content: "\f732";
}

.fa-ballot-check:before {
  content: "\f733";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-banjo:before {
  content: "\f8a3";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-barcode-alt:before {
  content: "\f463";
}

.fa-barcode-read:before {
  content: "\f464";
}

.fa-barcode-scan:before {
  content: "\f465";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball:before {
  content: "\f432";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-basketball-hoop:before {
  content: "\f435";
}

.fa-bat:before {
  content: "\f6b5";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-bolt:before {
  content: "\f376";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-slash:before {
  content: "\f377";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-bed-alt:before {
  content: "\f8f7";
}

.fa-bed-bunk:before {
  content: "\f8f8";
}

.fa-bed-empty:before {
  content: "\f8f9";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-exclamation:before {
  content: "\f848";
}

.fa-bell-on:before {
  content: "\f8fa";
}

.fa-bell-plus:before {
  content: "\f849";
}

.fa-bell-school:before {
  content: "\f5d5";
}

.fa-bell-school-slash:before {
  content: "\f5d6";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bells:before {
  content: "\f77f";
}

.fa-betamax:before {
  content: "\f8a4";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-biking-mountain:before {
  content: "\f84b";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blanket:before {
  content: "\f498";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blinds:before {
  content: "\f8fb";
}

.fa-blinds-open:before {
  content: "\f8fc";
}

.fa-blinds-raised:before {
  content: "\f8fd";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bone-break:before {
  content: "\f5d8";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-alt:before {
  content: "\f5d9";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-heart:before {
  content: "\f499";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-book-spells:before {
  content: "\f6b8";
}

.fa-book-user:before {
  content: "\f7e7";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-books:before {
  content: "\f5db";
}

.fa-books-medical:before {
  content: "\f7e8";
}

.fa-boombox:before {
  content: "\f8a5";
}

.fa-boot:before {
  content: "\f782";
}

.fa-booth-curtain:before {
  content: "\f734";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-bottom:before {
  content: "\f84d";
}

.fa-border-center-h:before {
  content: "\f89c";
}

.fa-border-center-v:before {
  content: "\f89d";
}

.fa-border-inner:before {
  content: "\f84e";
}

.fa-border-left:before {
  content: "\f84f";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-outer:before {
  content: "\f851";
}

.fa-border-right:before {
  content: "\f852";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-border-style-alt:before {
  content: "\f854";
}

.fa-border-top:before {
  content: "\f855";
}

.fa-bow-arrow:before {
  content: "\f6b9";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-bowling-pins:before {
  content: "\f437";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-alt:before {
  content: "\f49a";
}

.fa-box-ballot:before {
  content: "\f735";
}

.fa-box-check:before {
  content: "\f467";
}

.fa-box-fragile:before {
  content: "\f49b";
}

.fa-box-full:before {
  content: "\f49c";
}

.fa-box-heart:before {
  content: "\f49d";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-box-tissue:before {
  content: "\e05b";
}

.fa-box-up:before {
  content: "\f49f";
}

.fa-box-usd:before {
  content: "\f4a0";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-boxes-alt:before {
  content: "\f4a1";
}

.fa-boxing-glove:before {
  content: "\f438";
}

.fa-brackets:before {
  content: "\f7e9";
}

.fa-brackets-curly:before {
  content: "\f7ea";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-loaf:before {
  content: "\f7eb";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-bring-forward:before {
  content: "\f856";
}

.fa-bring-front:before {
  content: "\f857";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-browser:before {
  content: "\f37e";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-bullseye-arrow:before {
  content: "\f648";
}

.fa-bullseye-pointer:before {
  content: "\f649";
}

.fa-burger-soda:before {
  content: "\f858";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-burrito:before {
  content: "\f7ed";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-bus-school:before {
  content: "\f5dd";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-cabinet-filing:before {
  content: "\f64b";
}

.fa-cactus:before {
  content: "\f8a7";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calculator-alt:before {
  content: "\f64c";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-edit:before {
  content: "\f333";
}

.fa-calendar-exclamation:before {
  content: "\f334";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-star:before {
  content: "\f736";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camcorder:before {
  content: "\f8a8";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-alt:before {
  content: "\f332";
}

.fa-camera-home:before {
  content: "\f8fe";
}

.fa-camera-movie:before {
  content: "\f8a9";
}

.fa-camera-polaroid:before {
  content: "\f8aa";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campfire:before {
  content: "\f6ba";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candle-holder:before {
  content: "\f6bc";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-candy-corn:before {
  content: "\f6bd";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-building:before {
  content: "\f859";
}

.fa-car-bump:before {
  content: "\f5e0";
}

.fa-car-bus:before {
  content: "\f85a";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-garage:before {
  content: "\f5e2";
}

.fa-car-mechanic:before {
  content: "\f5e3";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-car-tilt:before {
  content: "\f5e5";
}

.fa-car-wash:before {
  content: "\f5e6";
}

.fa-caravan:before {
  content: "\f8ff";
}

.fa-caravan-alt:before {
  content: "\e000";
}

.fa-caret-circle-down:before {
  content: "\f32d";
}

.fa-caret-circle-left:before {
  content: "\f32e";
}

.fa-caret-circle-right:before {
  content: "\f330";
}

.fa-caret-circle-up:before {
  content: "\f331";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cars:before {
  content: "\f85b";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cassette-tape:before {
  content: "\f8ab";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cat-space:before {
  content: "\e001";
}

.fa-cauldron:before {
  content: "\f6bf";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cctv:before {
  content: "\f8ac";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chair-office:before {
  content: "\f6c1";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-line-down:before {
  content: "\f64d";
}

.fa-chart-network:before {
  content: "\f78a";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-chart-pie-alt:before {
  content: "\f64e";
}

.fa-chart-scatter:before {
  content: "\f7ee";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-cheese-swiss:before {
  content: "\f7f0";
}

.fa-cheeseburger:before {
  content: "\f7f1";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-bishop-alt:before {
  content: "\f43b";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-clock:before {
  content: "\f43d";
}

.fa-chess-clock-alt:before {
  content: "\f43e";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-king-alt:before {
  content: "\f440";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-knight-alt:before {
  content: "\f442";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-pawn-alt:before {
  content: "\f444";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-queen-alt:before {
  content: "\f446";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chess-rook-alt:before {
  content: "\f448";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-double-down:before {
  content: "\f322";
}

.fa-chevron-double-left:before {
  content: "\f323";
}

.fa-chevron-double-right:before {
  content: "\f324";
}

.fa-chevron-double-up:before {
  content: "\f325";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-square-down:before {
  content: "\f329";
}

.fa-chevron-square-left:before {
  content: "\f32a";
}

.fa-chevron-square-right:before {
  content: "\f32b";
}

.fa-chevron-square-up:before {
  content: "\f32c";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chimney:before {
  content: "\f78b";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clarinet:before {
  content: "\f8ad";
}

.fa-claw-marks:before {
  content: "\f6c2";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clipboard-list-check:before {
  content: "\f737";
}

.fa-clipboard-prescription:before {
  content: "\f5e8";
}

.fa-clipboard-user:before {
  content: "\f7f3";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-drizzle:before {
  content: "\f738";
}

.fa-cloud-hail:before {
  content: "\f739";
}

.fa-cloud-hail-mixed:before {
  content: "\f73a";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-music:before {
  content: "\f8ae";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-rainbow:before {
  content: "\f73e";
}

.fa-cloud-showers:before {
  content: "\f73f";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sleet:before {
  content: "\f741";
}

.fa-cloud-snow:before {
  content: "\f742";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-clouds:before {
  content: "\f744";
}

.fa-clouds-moon:before {
  content: "\f745";
}

.fa-clouds-sun:before {
  content: "\f746";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-club:before {
  content: "\f327";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-code-commit:before {
  content: "\f386";
}

.fa-code-merge:before {
  content: "\f387";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-coffee-pot:before {
  content: "\e002";
}

.fa-coffee-togo:before {
  content: "\f6c5";
}

.fa-coffin:before {
  content: "\f6c6";
}

.fa-coffin-cross:before {
  content: "\e051";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coin:before {
  content: "\f85c";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comet:before {
  content: "\e003";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-alt-check:before {
  content: "\f4a2";
}

.fa-comment-alt-dollar:before {
  content: "\f650";
}

.fa-comment-alt-dots:before {
  content: "\f4a3";
}

.fa-comment-alt-edit:before {
  content: "\f4a4";
}

.fa-comment-alt-exclamation:before {
  content: "\f4a5";
}

.fa-comment-alt-lines:before {
  content: "\f4a6";
}

.fa-comment-alt-medical:before {
  content: "\f7f4";
}

.fa-comment-alt-minus:before {
  content: "\f4a7";
}

.fa-comment-alt-music:before {
  content: "\f8af";
}

.fa-comment-alt-plus:before {
  content: "\f4a8";
}

.fa-comment-alt-slash:before {
  content: "\f4a9";
}

.fa-comment-alt-smile:before {
  content: "\f4aa";
}

.fa-comment-alt-times:before {
  content: "\f4ab";
}

.fa-comment-check:before {
  content: "\f4ac";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-edit:before {
  content: "\f4ae";
}

.fa-comment-exclamation:before {
  content: "\f4af";
}

.fa-comment-lines:before {
  content: "\f4b0";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-minus:before {
  content: "\f4b1";
}

.fa-comment-music:before {
  content: "\f8b0";
}

.fa-comment-plus:before {
  content: "\f4b2";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comment-smile:before {
  content: "\f4b4";
}

.fa-comment-times:before {
  content: "\f4b5";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-alt:before {
  content: "\f4b6";
}

.fa-comments-alt-dollar:before {
  content: "\f652";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compass-slash:before {
  content: "\f5e9";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-compress-wide:before {
  content: "\f326";
}

.fa-computer-classic:before {
  content: "\f8b1";
}

.fa-computer-speaker:before {
  content: "\f8b2";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-construction:before {
  content: "\f85d";
}

.fa-container-storage:before {
  content: "\f4b7";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-conveyor-belt:before {
  content: "\f46e";
}

.fa-conveyor-belt-alt:before {
  content: "\f46f";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-corn:before {
  content: "\f6c7";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cow:before {
  content: "\f6c8";
}

.fa-cowbell:before {
  content: "\f8b3";
}

.fa-cowbell-more:before {
  content: "\f8b4";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before,
.woocommerce-account .woocommerce-MyAccount-navigation-link--payment-methods a:before {
  content: "\f09d";
}

.fa-credit-card-blank:before {
  content: "\f389";
}

.fa-credit-card-front:before {
  content: "\f38a";
}

.fa-cricket:before {
  content: "\f449";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-croissant:before {
  content: "\f7f6";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-crutches:before {
  content: "\f7f8";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-curling:before {
  content: "\f44a";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dagger:before {
  content: "\f6cb";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-debug:before {
  content: "\f7f9";
}

.fa-deer:before {
  content: "\f78e";
}

.fa-deer-rudolph:before {
  content: "\f78f";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-desktop-alt:before {
  content: "\f390";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dewpoint:before {
  content: "\f748";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d10:before {
  content: "\f6cd";
}

.fa-dice-d12:before {
  content: "\f6ce";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d4:before {
  content: "\f6d0";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-d8:before {
  content: "\f6d2";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digging:before {
  content: "\f85e";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-diploma:before {
  content: "\f5ea";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-disc-drive:before {
  content: "\f8b5";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-disease:before {
  content: "\f7fa";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-do-not-enter:before {
  content: "\f5ec";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dog-leashed:before {
  content: "\f6d4";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-empty:before {
  content: "\f473";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-dolly-flatbed-alt:before {
  content: "\f475";
}

.fa-dolly-flatbed-empty:before {
  content: "\f476";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-circle:before {
  content: "\f5ed";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-draw-square:before {
  content: "\f5ef";
}

.fa-dreidel:before {
  content: "\f792";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-drone:before {
  content: "\f85f";
}

.fa-drone-alt:before {
  content: "\f860";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick:before {
  content: "\f6d6";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dryer:before {
  content: "\f861";
}

.fa-dryer-alt:before {
  content: "\f862";
}

.fa-duck:before {
  content: "\f6d8";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-ear:before {
  content: "\f5f0";
}

.fa-ear-muffs:before {
  content: "\f795";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-eclipse:before {
  content: "\f749";
}

.fa-eclipse-alt:before {
  content: "\f74a";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-egg-fried:before {
  content: "\f7fc";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-elephant:before {
  content: "\f6da";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-h-alt:before {
  content: "\f39b";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ellipsis-v-alt:before {
  content: "\f39c";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-empty-set:before {
  content: "\f656";
}

.fa-engine-warning:before {
  content: "\f5f2";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-dollar:before {
  content: "\f657";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-square:before {
  content: "\f321";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows:before {
  content: "\f31d";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expand-wide:before {
  content: "\f320";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-evil:before {
  content: "\f6db";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fan-table:before {
  content: "\e004";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-farm:before {
  content: "\f864";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-faucet:before {
  content: "\e005";
}

.fa-faucet-drip:before {
  content: "\e006";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-field-hockey:before {
  content: "\f44c";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-certificate:before {
  content: "\f5f3";
}

.fa-file-chart-line:before {
  content: "\f659";
}

.fa-file-chart-pie:before {
  content: "\f65a";
}

.fa-file-check:before {
  content: "\f316";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-edit:before {
  content: "\f31c";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-exclamation:before {
  content: "\f31a";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-minus:before {
  content: "\f318";
}

.fa-file-music:before {
  content: "\f8b6";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-plus:before {
  content: "\f319";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-search:before {
  content: "\f865";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-spreadsheet:before {
  content: "\f65b";
}

.fa-file-times:before {
  content: "\f317";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-user:before {
  content: "\f65c";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-files-medical:before {
  content: "\f7fd";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-film-alt:before {
  content: "\f3a0";
}

.fa-film-canister:before {
  content: "\f8b7";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-fire-smoke:before {
  content: "\f74b";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-fireplace:before {
  content: "\f79a";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fish-cooked:before {
  content: "\f7fe";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-alt:before {
  content: "\f74c";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flame:before {
  content: "\f6df";
}

.fa-flashlight:before {
  content: "\f8b8";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flask-poison:before {
  content: "\f6e0";
}

.fa-flask-potion:before {
  content: "\f6e1";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flower:before {
  content: "\f7ff";
}

.fa-flower-daffodil:before {
  content: "\f800";
}

.fa-flower-tulip:before {
  content: "\f801";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-flute:before {
  content: "\f8b9";
}

.fa-flux-capacitor:before {
  content: "\f8ba";
}

.fa-fly:before {
  content: "\f417";
}

.fa-fog:before {
  content: "\f74e";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-download:before {
  content: "\e053";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-folder-times:before {
  content: "\f65f";
}

.fa-folder-tree:before {
  content: "\f802";
}

.fa-folder-upload:before {
  content: "\e054";
}

.fa-folders:before {
  content: "\f660";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-font-case:before {
  content: "\f866";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-football-helmet:before {
  content: "\f44f";
}

.fa-forklift:before {
  content: "\f47a";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-fragile:before {
  content: "\f4bb";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-french-fries:before {
  content: "\f803";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frosty-head:before {
  content: "\f79b";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-function:before {
  content: "\f661";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-galaxy:before {
  content: "\e008";
}

.fa-game-board:before {
  content: "\f867";
}

.fa-game-board-alt:before {
  content: "\f868";
}

.fa-game-console-handheld:before {
  content: "\f8bb";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gamepad-alt:before {
  content: "\f8bc";
}

.fa-garage:before {
  content: "\e009";
}

.fa-garage-car:before {
  content: "\e00a";
}

.fa-garage-open:before {
  content: "\e00b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gas-pump-slash:before {
  content: "\f5f4";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gift-card:before {
  content: "\f663";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-gingerbread-man:before {
  content: "\f79d";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass:before {
  content: "\f804";
}

.fa-glass-champagne:before {
  content: "\f79e";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-citrus:before {
  content: "\f869";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glass-whiskey-rocks:before {
  content: "\f7a1";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glasses-alt:before {
  content: "\f5f5";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-globe-snow:before {
  content: "\f7a3";
}

.fa-globe-stand:before {
  content: "\f5f6";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-golf-club:before {
  content: "\f451";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gramophone:before {
  content: "\f8bd";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-guitar-electric:before {
  content: "\f8be";
}

.fa-guitars:before {
  content: "\f8bf";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-h1:before {
  content: "\f313";
}

.fa-h2:before {
  content: "\f314";
}

.fa-h3:before {
  content: "\f315";
}

.fa-h4:before {
  content: "\f86a";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hammer-war:before {
  content: "\f6e4";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-heart:before {
  content: "\f4bc";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-box:before {
  content: "\f47b";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-magic:before {
  content: "\f6e5";
}

.fa-hand-holding-medical:before {
  content: "\e05c";
}

.fa-hand-holding-seedling:before {
  content: "\f4bf";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-water:before {
  content: "\f4c1";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-receiving:before {
  content: "\f47c";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-sparkles:before {
  content: "\e05d";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-heart:before {
  content: "\f4c3";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-hands-usd:before {
  content: "\f4c5";
}

.fa-hands-wash:before {
  content: "\e05e";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-handshake-alt:before {
  content: "\f4c6";
}

.fa-handshake-alt-slash:before {
  content: "\e05f";
}

.fa-handshake-slash:before {
  content: "\e060";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-chef:before {
  content: "\f86b";
}

.fa-hat-cowboy:before {
  content: "\f8c0";
}

.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

.fa-hat-santa:before {
  content: "\f7a7";
}

.fa-hat-winter:before {
  content: "\f7a8";
}

.fa-hat-witch:before {
  content: "\f6e7";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-head-side:before {
  content: "\f6e9";
}

.fa-head-side-brain:before {
  content: "\f808";
}

.fa-head-side-cough:before {
  content: "\e061";
}

.fa-head-side-cough-slash:before {
  content: "\e062";
}

.fa-head-side-headphones:before {
  content: "\f8c2";
}

.fa-head-side-mask:before {
  content: "\e063";
}

.fa-head-side-medical:before {
  content: "\f809";
}

.fa-head-side-virus:before {
  content: "\e064";
}

.fa-head-vr:before {
  content: "\f6ea";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heart-circle:before {
  content: "\f4c7";
}

.fa-heart-rate:before {
  content: "\f5f8";
}

.fa-heart-square:before {
  content: "\f4c8";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-heat:before {
  content: "\e00c";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-helmet-battle:before {
  content: "\f6eb";
}

.fa-hexagon:before {
  content: "\f312";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-hockey-mask:before {
  content: "\f6ee";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-hockey-sticks:before {
  content: "\f454";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before,
.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-address a:before {
  content: "\f015";
}

.fa-home-alt:before {
  content: "\f80a";
}

.fa-home-heart:before {
  content: "\f4c9";
}

.fa-home-lg:before {
  content: "\f80b";
}

.fa-home-lg-alt:before {
  content: "\f80c";
}

.fa-hood-cloak:before {
  content: "\f6ef";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-horizontal-rule:before {
  content: "\f86c";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-horse-saddle:before {
  content: "\f8c3";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hospital-user:before {
  content: "\f80d";
}

.fa-hospitals:before {
  content: "\f80e";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house:before {
  content: "\e00d";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-house-day:before {
  content: "\e00e";
}

.fa-house-flood:before {
  content: "\f74f";
}

.fa-house-leave:before {
  content: "\e00f";
}

.fa-house-night:before {
  content: "\e010";
}

.fa-house-return:before {
  content: "\e011";
}

.fa-house-signal:before {
  content: "\e012";
}

.fa-house-user:before {
  content: "\e065";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-humidity:before {
  content: "\f750";
}

.fa-hurricane:before {
  content: "\f751";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-ice-skate:before {
  content: "\f7ac";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-icons-alt:before {
  content: "\f86e";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-image-polaroid:before {
  content: "\f8c4";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-inbox-in:before {
  content: "\f310";
}

.fa-inbox-out:before {
  content: "\f311";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-industry-alt:before {
  content: "\f3b3";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-info-square:before {
  content: "\f30f";
}

.fa-inhaler:before {
  content: "\f5f9";
}

.fa-innosoft:before {
  content: "\e080";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-integral:before {
  content: "\f667";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-intersection:before {
  content: "\f668";
}

.fa-inventory:before {
  content: "\f480";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-island-tropical:before {
  content: "\f811";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-jack-o-lantern:before {
  content: "\f30e";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-joystick:before {
  content: "\f8c5";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-jug:before {
  content: "\f8c6";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-kazoo:before {
  content: "\f8c7";
}

.fa-kerning:before {
  content: "\f86f";
}

.fa-key:before {
  content: "\f084";
}

.fa-key-skeleton:before {
  content: "\f6f3";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-keynote:before {
  content: "\f66c";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kidneys:before {
  content: "\f5fb";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kite:before {
  content: "\f6f4";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-knife-kitchen:before {
  content: "\f6f5";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-lambda:before {
  content: "\f66e";
}

.fa-lamp:before {
  content: "\f4ca";
}

.fa-lamp-desk:before {
  content: "\e014";
}

.fa-lamp-floor:before {
  content: "\e015";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-landmark-alt:before {
  content: "\f752";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-house:before {
  content: "\e066";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lasso:before {
  content: "\f8c8";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-layer-minus:before {
  content: "\f5fe";
}

.fa-layer-plus:before {
  content: "\f5ff";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leaf-heart:before {
  content: "\f4cb";
}

.fa-leaf-maple:before {
  content: "\f6f6";
}

.fa-leaf-oak:before {
  content: "\f6f7";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-light-ceiling:before {
  content: "\e016";
}

.fa-light-switch:before {
  content: "\e017";
}

.fa-light-switch-off:before {
  content: "\e018";
}

.fa-light-switch-on:before {
  content: "\e019";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-lightbulb-dollar:before {
  content: "\f670";
}

.fa-lightbulb-exclamation:before {
  content: "\f671";
}

.fa-lightbulb-on:before {
  content: "\f672";
}

.fa-lightbulb-slash:before {
  content: "\f673";
}

.fa-lights-holiday:before {
  content: "\f7b2";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-line-columns:before {
  content: "\f870";
}

.fa-line-height:before {
  content: "\f871";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lips:before {
  content: "\f600";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-music:before {
  content: "\f8c9";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location:before {
  content: "\f601";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-location-circle:before {
  content: "\f602";
}

.fa-location-slash:before {
  content: "\f603";
}

.fa-lock:before,
.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a:before {
  content: "\f023";
}

.fa-lock-alt:before {
  content: "\f30d";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-lock-open-alt:before {
  content: "\f3c2";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-loveseat:before {
  content: "\f4cc";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luchador:before {
  content: "\f455";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lungs:before {
  content: "\f604";
}

.fa-lungs-virus:before {
  content: "\e067";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-mace:before {
  content: "\f6f8";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailbox:before {
  content: "\f813";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-mandolin:before {
  content: "\f6f9";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-marker-alt-slash:before {
  content: "\f605";
}

.fa-map-marker-check:before {
  content: "\f606";
}

.fa-map-marker-edit:before {
  content: "\f607";
}

.fa-map-marker-exclamation:before {
  content: "\f608";
}

.fa-map-marker-minus:before {
  content: "\f609";
}

.fa-map-marker-plus:before {
  content: "\f60a";
}

.fa-map-marker-question:before {
  content: "\f60b";
}

.fa-map-marker-slash:before {
  content: "\f60c";
}

.fa-map-marker-smile:before {
  content: "\f60d";
}

.fa-map-marker-times:before {
  content: "\f60e";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-meat:before {
  content: "\f814";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaphone:before {
  content: "\f675";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microphone-stand:before {
  content: "\f8cb";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-microwave:before {
  content: "\e01b";
}

.fa-mind-share:before {
  content: "\f677";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-hexagon:before {
  content: "\f307";
}

.fa-minus-octagon:before {
  content: "\f308";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mistletoe:before {
  content: "\f7b4";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-mobile-android:before {
  content: "\f3ce";
}

.fa-mobile-android-alt:before {
  content: "\f3cf";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-money-check-edit:before {
  content: "\f872";
}

.fa-money-check-edit-alt:before {
  content: "\f873";
}

.fa-monitor-heart-rate:before {
  content: "\f611";
}

.fa-monkey:before {
  content: "\f6fb";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-moon-cloud:before {
  content: "\f754";
}

.fa-moon-stars:before {
  content: "\f755";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mountains:before {
  content: "\f6fd";
}

.fa-mouse:before {
  content: "\f8cc";
}

.fa-mouse-alt:before {
  content: "\f8cd";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mp3-player:before {
  content: "\f8ce";
}

.fa-mug:before {
  content: "\f874";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-mug-marshmallows:before {
  content: "\f7b7";
}

.fa-mug-tea:before {
  content: "\f875";
}

.fa-music:before {
  content: "\f001";
}

.fa-music-alt:before {
  content: "\f8cf";
}

.fa-music-alt-slash:before {
  content: "\f8d0";
}

.fa-music-slash:before {
  content: "\f8d1";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-narwhal:before {
  content: "\f6fe";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-octagon:before {
  content: "\f306";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-oil-temp:before {
  content: "\f614";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-omega:before {
  content: "\f67a";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-ornament:before {
  content: "\f7b8";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-outlet:before {
  content: "\e01c";
}

.fa-oven:before {
  content: "\e01d";
}

.fa-overline:before {
  content: "\f876";
}

.fa-page-break:before {
  content: "\f877";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-brush-alt:before {
  content: "\f5a9";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-pallet-alt:before {
  content: "\f483";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-paragraph-rtl:before {
  content: "\f878";
}

.fa-parking:before {
  content: "\f540";
}

.fa-parking-circle:before {
  content: "\f615";
}

.fa-parking-circle-slash:before {
  content: "\f616";
}

.fa-parking-slash:before {
  content: "\f617";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paw-alt:before {
  content: "\f701";
}

.fa-paw-claws:before {
  content: "\f702";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pegasus:before {
  content: "\f703";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-paintbrush:before {
  content: "\f618";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-pennant:before {
  content: "\f456";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-arrows:before {
  content: "\e068";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-person-carry:before {
  content: "\f4cf";
}

.fa-person-dolly:before {
  content: "\f4d0";
}

.fa-person-dolly-empty:before {
  content: "\f4d1";
}

.fa-person-sign:before {
  content: "\f757";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-laptop:before {
  content: "\f87a";
}

.fa-phone-office:before {
  content: "\f67d";
}

.fa-phone-plus:before {
  content: "\f4d2";
}

.fa-phone-rotary:before {
  content: "\f8d3";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pi:before {
  content: "\f67e";
}

.fa-piano:before {
  content: "\f8d4";
}

.fa-piano-keyboard:before {
  content: "\f8d5";
}

.fa-pie:before {
  content: "\f705";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-pig:before {
  content: "\f706";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza:before {
  content: "\f817";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-alt:before {
  content: "\f3de";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-plane-slash:before {
  content: "\e069";
}

.fa-planet-moon:before {
  content: "\e01f";
}

.fa-planet-ringed:before {
  content: "\e020";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-hexagon:before {
  content: "\f300";
}

.fa-plus-octagon:before {
  content: "\f301";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-podium:before {
  content: "\f680";
}

.fa-podium-star:before {
  content: "\f758";
}

.fa-police-box:before {
  content: "\e021";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poll-people:before {
  content: "\f759";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-popcorn:before {
  content: "\f819";
}

.fa-portal-enter:before {
  content: "\e022";
}

.fa-portal-exit:before {
  content: "\e023";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-presentation:before {
  content: "\f685";
}

.fa-print:before {
  content: "\f02f";
}

.fa-print-search:before {
  content: "\f81a";
}

.fa-print-slash:before {
  content: "\f686";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-projector:before {
  content: "\f8d6";
}

.fa-pump-medical:before {
  content: "\e06a";
}

.fa-pump-soap:before {
  content: "\e06b";
}

.fa-pumpkin:before {
  content: "\f707";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-question-square:before {
  content: "\f2fd";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-rabbit:before {
  content: "\f708";
}

.fa-rabbit-fast:before {
  content: "\f709";
}

.fa-racquet:before {
  content: "\f45a";
}

.fa-radar:before {
  content: "\e024";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-radio:before {
  content: "\f8d7";
}

.fa-radio-alt:before {
  content: "\f8d8";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-raindrops:before {
  content: "\f75c";
}

.fa-ram:before {
  content: "\f70a";
}

.fa-ramp-loading:before {
  content: "\f4d4";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-raygun:before {
  content: "\e025";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-record-vinyl:before {
  content: "\f8d9";
}

.fa-rectangle-landscape:before {
  content: "\f2fa";
}

.fa-rectangle-portrait:before {
  content: "\f2fb";
}

.fa-rectangle-wide:before {
  content: "\f2fc";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-refrigerator:before {
  content: "\e026";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-repeat:before {
  content: "\f363";
}

.fa-repeat-1:before {
  content: "\f365";
}

.fa-repeat-1-alt:before {
  content: "\f366";
}

.fa-repeat-alt:before {
  content: "\f364";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-retweet-alt:before {
  content: "\f361";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-rings-wedding:before {
  content: "\f81b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocket-launch:before {
  content: "\e027";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-route-highway:before {
  content: "\f61a";
}

.fa-route-interstate:before {
  content: "\f61b";
}

.fa-router:before {
  content: "\f8da";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-triangle:before {
  content: "\f61c";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-rv:before {
  content: "\f7be";
}

.fa-sack:before {
  content: "\f81c";
}

.fa-sack-dollar:before {
  content: "\f81d";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salad:before {
  content: "\f81e";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sandwich:before {
  content: "\f81f";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-sausage:before {
  content: "\f820";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-sax-hot:before {
  content: "\f8db";
}

.fa-saxophone:before {
  content: "\f8dc";
}

.fa-scalpel:before {
  content: "\f61d";
}

.fa-scalpel-path:before {
  content: "\f61e";
}

.fa-scanner:before {
  content: "\f488";
}

.fa-scanner-image:before {
  content: "\f8f3";
}

.fa-scanner-keyboard:before {
  content: "\f489";
}

.fa-scanner-touchscreen:before {
  content: "\f48a";
}

.fa-scarecrow:before {
  content: "\f70d";
}

.fa-scarf:before {
  content: "\f7c1";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-scroll-old:before {
  content: "\f70f";
}

.fa-scrubber:before {
  content: "\f2f8";
}

.fa-scythe:before {
  content: "\f710";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-send-back:before {
  content: "\f87e";
}

.fa-send-backward:before {
  content: "\f87f";
}

.fa-sensor:before {
  content: "\e028";
}

.fa-sensor-alert:before {
  content: "\e029";
}

.fa-sensor-fire:before {
  content: "\e02a";
}

.fa-sensor-on:before {
  content: "\e02b";
}

.fa-sensor-smoke:before {
  content: "\e02c";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-all:before {
  content: "\f367";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-sheep:before {
  content: "\f711";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield:before {
  content: "\f132";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-check:before {
  content: "\f2f7";
}

.fa-shield-cross:before {
  content: "\f712";
}

.fa-shield-virus:before {
  content: "\e06c";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shipping-timed:before {
  content: "\f48c";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shish-kebab:before {
  content: "\f821";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-shopping-bag:before,
.woocommerce-account .woocommerce-MyAccount-navigation-link--orders a:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shovel:before {
  content: "\f713";
}

.fa-shovel-snow:before {
  content: "\f7c3";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shredder:before {
  content: "\f68a";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-shuttlecock:before {
  content: "\f45b";
}

.fa-sickle:before {
  content: "\f822";
}

.fa-sigma:before {
  content: "\f68b";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signal-1:before {
  content: "\f68c";
}

.fa-signal-2:before {
  content: "\f68d";
}

.fa-signal-3:before {
  content: "\f68e";
}

.fa-signal-4:before {
  content: "\f68f";
}

.fa-signal-alt:before {
  content: "\f690";
}

.fa-signal-alt-1:before {
  content: "\f691";
}

.fa-signal-alt-2:before {
  content: "\f692";
}

.fa-signal-alt-3:before {
  content: "\f693";
}

.fa-signal-alt-slash:before {
  content: "\f694";
}

.fa-signal-slash:before {
  content: "\f695";
}

.fa-signal-stream:before {
  content: "\f8dd";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sink:before {
  content: "\e06d";
}

.fa-siren:before {
  content: "\e02d";
}

.fa-siren-on:before {
  content: "\e02e";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-skeleton:before {
  content: "\f620";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-ski-jump:before {
  content: "\f7c7";
}

.fa-ski-lift:before {
  content: "\f7c8";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-cow:before {
  content: "\f8de";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sledding:before {
  content: "\f7cb";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-sliders-h-square:before {
  content: "\f3f0";
}

.fa-sliders-v:before {
  content: "\f3f1";
}

.fa-sliders-v-square:before {
  content: "\f3f2";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-plus:before {
  content: "\f5b9";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoke:before {
  content: "\f760";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snake:before {
  content: "\f716";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snooze:before {
  content: "\f880";
}

.fa-snow-blowing:before {
  content: "\f761";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowflakes:before {
  content: "\f7cf";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowmobile:before {
  content: "\f7d1";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-soap:before {
  content: "\e06e";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-solar-system:before {
  content: "\e02f";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-alt:before {
  content: "\f883";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-circle:before {
  content: "\e030";
}

.fa-sort-circle-down:before {
  content: "\e031";
}

.fa-sort-circle-up:before {
  content: "\e032";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-shapes-down:before {
  content: "\f888";
}

.fa-sort-shapes-down-alt:before {
  content: "\f889";
}

.fa-sort-shapes-up:before {
  content: "\f88a";
}

.fa-sort-shapes-up-alt:before {
  content: "\f88b";
}

.fa-sort-size-down:before {
  content: "\f88c";
}

.fa-sort-size-down-alt:before {
  content: "\f88d";
}

.fa-sort-size-up:before {
  content: "\f88e";
}

.fa-sort-size-up-alt:before {
  content: "\f88f";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-soup:before {
  content: "\f823";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-space-station-moon:before {
  content: "\e033";
}

.fa-space-station-moon-alt:before {
  content: "\e034";
}

.fa-spade:before {
  content: "\f2f4";
}

.fa-sparkles:before {
  content: "\f890";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker:before {
  content: "\f8df";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-speakers:before {
  content: "\f8e0";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spider-black-widow:before {
  content: "\f718";
}

.fa-spider-web:before {
  content: "\f719";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-spinner-third:before {
  content: "\f3f4";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-sprinkler:before {
  content: "\e035";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root:before {
  content: "\f697";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-squirrel:before {
  content: "\f71a";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-staff:before {
  content: "\f71b";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-christmas:before {
  content: "\f7d4";
}

.fa-star-exclamation:before {
  content: "\f2f3";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-star-shooting:before {
  content: "\e036";
}

.fa-starfighter:before {
  content: "\e037";
}

.fa-starfighter-alt:before {
  content: "\e038";
}

.fa-stars:before {
  content: "\f762";
}

.fa-starship:before {
  content: "\e039";
}

.fa-starship-freighter:before {
  content: "\e03a";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steak:before {
  content: "\f824";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-steering-wheel:before {
  content: "\f622";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stocking:before {
  content: "\f7d5";
}

.fa-stomach:before {
  content: "\f623";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-stopwatch-20:before {
  content: "\e06f";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-store-alt-slash:before {
  content: "\e070";
}

.fa-store-slash:before {
  content: "\e071";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-stretcher:before {
  content: "\f825";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-sun-cloud:before {
  content: "\f763";
}

.fa-sun-dust:before {
  content: "\f764";
}

.fa-sun-haze:before {
  content: "\f765";
}

.fa-sunglasses:before {
  content: "\f892";
}

.fa-sunrise:before {
  content: "\f766";
}

.fa-sunset:before {
  content: "\f767";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-sword:before {
  content: "\f71c";
}

.fa-sword-laser:before {
  content: "\e03b";
}

.fa-sword-laser-alt:before {
  content: "\e03c";
}

.fa-swords:before {
  content: "\f71d";
}

.fa-swords-laser:before {
  content: "\e03d";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablet-android:before {
  content: "\f3fb";
}

.fa-tablet-android-alt:before {
  content: "\f3fc";
}

.fa-tablet-rugged:before {
  content: "\f48f";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer:before {
  content: "\f0e4";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tachometer-alt-average:before {
  content: "\f624";
}

.fa-tachometer-alt-fast:before {
  content: "\f625";
}

.fa-tachometer-alt-fastest:before {
  content: "\f626";
}

.fa-tachometer-alt-slow:before {
  content: "\f627";
}

.fa-tachometer-alt-slowest:before {
  content: "\f628";
}

.fa-tachometer-average:before {
  content: "\f629";
}

.fa-tachometer-fast:before {
  content: "\f62a";
}

.fa-tachometer-fastest:before {
  content: "\f62b";
}

.fa-tachometer-slow:before {
  content: "\f62c";
}

.fa-tachometer-slowest:before {
  content: "\f62d";
}

.fa-taco:before {
  content: "\f826";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tally:before {
  content: "\f69c";
}

.fa-tanakh:before {
  content: "\f827";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-tasks-alt:before {
  content: "\f828";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-telescope:before {
  content: "\e03e";
}

.fa-temperature-down:before {
  content: "\e03f";
}

.fa-temperature-frigid:before {
  content: "\f768";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-hot:before {
  content: "\f76a";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-temperature-up:before {
  content: "\e040";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-tennis-ball:before {
  content: "\f45e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text:before {
  content: "\f893";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-size:before {
  content: "\f894";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-theta:before {
  content: "\f69e";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-thunderstorm:before {
  content: "\f76c";
}

.fa-thunderstorm-moon:before {
  content: "\f76d";
}

.fa-thunderstorm-sun:before {
  content: "\f76e";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-tilde:before {
  content: "\f69f";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-times-hexagon:before {
  content: "\f2ee";
}

.fa-times-octagon:before {
  content: "\f2f0";
}

.fa-times-square:before {
  content: "\f2d3";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tire:before {
  content: "\f631";
}

.fa-tire-flat:before {
  content: "\f632";
}

.fa-tire-pressure-warning:before {
  content: "\f633";
}

.fa-tire-rugged:before {
  content: "\f634";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-alt:before {
  content: "\f71f";
}

.fa-toilet-paper-slash:before {
  content: "\e072";
}

.fa-tombstone:before {
  content: "\f720";
}

.fa-tombstone-alt:before {
  content: "\f721";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-toothbrush:before {
  content: "\f635";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tornado:before {
  content: "\f76f";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-cone:before {
  content: "\f636";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-traffic-light-go:before {
  content: "\f638";
}

.fa-traffic-light-slow:before {
  content: "\f639";
}

.fa-traffic-light-stop:before {
  content: "\f63a";
}

.fa-trailer:before {
  content: "\e041";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-transporter:before {
  content: "\e042";
}

.fa-transporter-1:before {
  content: "\e043";
}

.fa-transporter-2:before {
  content: "\e044";
}

.fa-transporter-3:before {
  content: "\e045";
}

.fa-transporter-empty:before {
  content: "\e046";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-trash-undo:before {
  content: "\f895";
}

.fa-trash-undo-alt:before {
  content: "\f896";
}

.fa-treasure-chest:before {
  content: "\f723";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-tree-alt:before {
  content: "\f400";
}

.fa-tree-christmas:before {
  content: "\f7db";
}

.fa-tree-decorated:before {
  content: "\f7dc";
}

.fa-tree-large:before {
  content: "\f7dd";
}

.fa-tree-palm:before {
  content: "\f82b";
}

.fa-trees:before {
  content: "\f724";
}

.fa-trello:before {
  content: "\f181";
}

.fa-triangle:before {
  content: "\f2ec";
}

.fa-triangle-music:before {
  content: "\f8e2";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-trophy-alt:before {
  content: "\f2eb";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-container:before {
  content: "\f4dc";
}

.fa-truck-couch:before {
  content: "\f4dd";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-truck-plow:before {
  content: "\f7de";
}

.fa-truck-ramp:before {
  content: "\f4e0";
}

.fa-trumpet:before {
  content: "\f8e3";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-turkey:before {
  content: "\f725";
}

.fa-turntable:before {
  content: "\f8e4";
}

.fa-turtle:before {
  content: "\f726";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-tv-alt:before {
  content: "\f8e5";
}

.fa-tv-music:before {
  content: "\f8e6";
}

.fa-tv-retro:before {
  content: "\f401";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typewriter:before {
  content: "\f8e7";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-ufo:before {
  content: "\e047";
}

.fa-ufo-beam:before {
  content: "\e048";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before,
.woocommerce-account .woocommerce-MyAccount-navigation-link--subscriptions a:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-unicorn:before {
  content: "\f727";
}

.fa-union:before {
  content: "\f6a2";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-unity:before {
  content: "\e049";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-usb-drive:before {
  content: "\f8e9";
}

.fa-usd-circle:before {
  content: "\f2e8";
}

.fa-usd-square:before {
  content: "\f2e9";
}

.fa-user:before,
.woocommerce-account .woocommerce-MyAccount-navigation-link--dashboard a:before {
  content: "\f007";
}

.fa-user-alien:before {
  content: "\e04a";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-chart:before {
  content: "\f6a3";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before,
.woocommerce-account .woocommerce-MyAccount-navigation-link--my-account a:before,
.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-account a:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-cowboy:before {
  content: "\f8ea";
}

.fa-user-crown:before {
  content: "\f6a4";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-hard-hat:before {
  content: "\f82c";
}

.fa-user-headset:before {
  content: "\f82d";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-md-chat:before {
  content: "\f82e";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-music:before {
  content: "\f8eb";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-robot:before {
  content: "\e04b";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-user-unlock:before {
  content: "\e058";
}

.fa-user-visor:before {
  content: "\e04c";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-class:before,
.woocommerce-account .woocommerce-MyAccount-navigation-link--students a:before {
  content: "\f63d";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-users-crown:before {
  content: "\f6a5";
}

.fa-users-medical:before,
.woocommerce-account .woocommerce-MyAccount-navigation-link--shared-access a:before {
  content: "\f830";
}

.fa-users-slash:before {
  content: "\e073";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-fork:before {
  content: "\f2e3";
}

.fa-utensil-knife:before {
  content: "\f2e4";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-utensils-alt:before {
  content: "\f2e6";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vacuum:before {
  content: "\e04d";
}

.fa-vacuum-robot:before {
  content: "\e04e";
}

.fa-value-absolute:before {
  content: "\f6a6";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-vest:before {
  content: "\e085";
}

.fa-vest-patches:before {
  content: "\e086";
}

.fa-vhs:before {
  content: "\f8ec";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-plus:before {
  content: "\f4e1";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-violin:before {
  content: "\f8ed";
}

.fa-virus:before {
  content: "\e074";
}

.fa-virus-slash:before {
  content: "\e075";
}

.fa-viruses:before {
  content: "\e076";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volcano:before {
  content: "\f770";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume:before {
  content: "\f6a8";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-slash:before {
  content: "\f2e2";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-nay:before {
  content: "\f771";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-wagon-covered:before {
  content: "\f8ee";
}

.fa-walker:before {
  content: "\f831";
}

.fa-walkie-talkie:before {
  content: "\f8ef";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-wand:before {
  content: "\f72a";
}

.fa-wand-magic:before {
  content: "\f72b";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-warehouse-alt:before {
  content: "\f495";
}

.fa-washer:before {
  content: "\f898";
}

.fa-watch:before {
  content: "\f2e1";
}

.fa-watch-calculator:before {
  content: "\f8f0";
}

.fa-watch-fitness:before {
  content: "\f63e";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-water:before {
  content: "\f773";
}

.fa-water-lower:before {
  content: "\f774";
}

.fa-water-rise:before {
  content: "\f775";
}

.fa-wave-sine:before {
  content: "\f899";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-wave-triangle:before {
  content: "\f89a";
}

.fa-waveform:before {
  content: "\f8f1";
}

.fa-waveform-path:before {
  content: "\f8f2";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-webcam:before {
  content: "\f832";
}

.fa-webcam-slash:before {
  content: "\f833";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whale:before {
  content: "\f72c";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheat:before {
  content: "\f72d";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whistle:before {
  content: "\f460";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wifi-1:before {
  content: "\f6aa";
}

.fa-wifi-2:before {
  content: "\f6ab";
}

.fa-wifi-slash:before {
  content: "\f6ac";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-wind-turbine:before {
  content: "\f89b";
}

.fa-wind-warning:before {
  content: "\f776";
}

.fa-window:before {
  content: "\f40e";
}

.fa-window-alt:before {
  content: "\f40f";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-frame:before {
  content: "\e04f";
}

.fa-window-frame-open:before {
  content: "\e050";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-windsock:before {
  content: "\f777";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wreath:before {
  content: "\f7e2";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*!
 * Font Awesome Pro 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-brands-400.eot");
  src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"),
    url("../webfonts/fa-brands-400.woff2") format("woff2"),
    url("../webfonts/fa-brands-400.woff") format("woff"),
    url("../webfonts/fa-brands-400.ttf") format("truetype"),
    url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}

.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

/*!
 * Font Awesome Pro 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.eot");
  src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),
    url("../webfonts/fa-solid-900.woff2") format("woff2"),
    url("../webfonts/fa-solid-900.woff") format("woff"),
    url("../webfonts/fa-solid-900.ttf") format("truetype"),
    url("../webfonts/fa-solid-900.svg#fontawesome") format("svg");
}

.fa,
.fas,
.cards-grid-x.accordion-cards .cell-card .card-content .title::after,
.cards-grid-x .cell-cards-link .cards-view-all-link:after,
.wp-block-kadence-tabs .kt-tabs-title-list a.kt-tab-title::after,
.wrapper-euka-event .event-button a:after,
.cell-gutenberg-content ._form ._submit::after,
.top-menu .nav-icon-user a:before,
.top-menu .nav-icon-student a:before,
.menu-main-menu-container .main-menu .sub-menu-title:before,
.styled-checkbox-content::after,
.forminator-ui .forminator-button:after,
.ac-form.ac-form-simple .footer-form-form form ._form-content button:after,
.woocommerce-account .woocommerce-MyAccount-navigation a::before,
.woocommerce ul.products li.product .button::after,
.woocommerce-page ul.products li.product .button::after,
.theme-euka ul.products li.product .button::after,
.product form.cart .single_add_to_cart_button::after,
.account-student-download::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
}

/*!
 * Font Awesome Pro 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("../webfonts/fa-regular-400.eot");
  src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"),
    url("../webfonts/fa-regular-400.woff2") format("woff2"),
    url("../webfonts/fa-regular-400.woff") format("woff"),
    url("../webfonts/fa-regular-400.ttf") format("truetype"),
    url("../webfonts/fa-regular-400.svg#fontawesome") format("svg");
}

.far,
.bjm-cards-wrapper.families .cell.cell-card .card-inner .card-image::after,
.cell.cell-card.type-bjm_team .card-inner .card-image:after,
.cell.cell-card.cell-card.type-post .card-inner .card-image::after,
.cell.cell-card.cell-card.type-podcast .card-inner .card-image::after,
.cell.cell-card.cell-card.type-bjm_resource .card-inner .card-image::after,
.cell.cell-card.cell-card.type-bjm_event .card-inner .card-image::after,
.bjm-cards-wrapper .accordion-cards.cards-grid-x .cell-card .card-content .title::after,
.account-shared-access-student-access li::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}

/*!
 * Font Awesome Pro 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Pro";
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url("../webfonts/fa-light-300.eot");
  src: url("../webfonts/fa-light-300.eot?#iefix") format("embedded-opentype"),
    url("../webfonts/fa-light-300.woff2") format("woff2"),
    url("../webfonts/fa-light-300.woff") format("woff"),
    url("../webfonts/fa-light-300.ttf") format("truetype"),
    url("../webfonts/fa-light-300.svg#fontawesome") format("svg");
}

.fal,
.woocommerce-breadcrumb a:first-child::before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
}

/*!
 * Font Awesome Pro 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Commercial License)
 */
@font-face {
  font-family: "Font Awesome 5 Duotone";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-duotone-900.eot");
  src: url("../webfonts/fa-duotone-900.eot?#iefix") format("embedded-opentype"),
    url("../webfonts/fa-duotone-900.woff2") format("woff2"),
    url("../webfonts/fa-duotone-900.woff") format("woff"),
    url("../webfonts/fa-duotone-900.ttf") format("truetype"),
    url("../webfonts/fa-duotone-900.svg#fontawesome") format("svg");
}

.fad {
  position: relative;
  font-family: "Font Awesome 5 Duotone";
  font-weight: 900;
}

.fad:before {
  position: absolute;
  color: var(--fa-primary-color, inherit);
  opacity: 1;
  opacity: var(--fa-primary-opacity, 1);
}

.fad:after {
  color: var(--fa-secondary-color, inherit);
  opacity: 0.4;
  opacity: var(--fa-secondary-opacity, 0.4);
}

.fa-swap-opacity .fad:before,
.fad.fa-swap-opacity:before {
  opacity: 0.4;
  opacity: var(--fa-secondary-opacity, 0.4);
}

.fa-swap-opacity .fad:after,
.fad.fa-swap-opacity:after {
  opacity: 1;
  opacity: var(--fa-primary-opacity, 1);
}

.fad.fa-inverse {
  color: #fff;
}

.fad.fa-stack-1x,
.fad.fa-stack-2x {
  position: absolute;
}

.fad.fa-stack-1x:before,
.fad.fa-stack-2x:before,
.fad.fa-fw:before {
  left: 50%;
  transform: translateX(-50%);
}

.fad.fa-abacus:after {
  content: "\10f640";
}

.fad.fa-acorn:after {
  content: "\10f6ae";
}

.fad.fa-ad:after {
  content: "\10f641";
}

.fad.fa-address-book:after {
  content: "\10f2b9";
}

.fad.fa-address-card:after {
  content: "\10f2bb";
}

.fad.fa-adjust:after {
  content: "\10f042";
}

.fad.fa-air-conditioner:after {
  content: "\10f8f4";
}

.fad.fa-air-freshener:after {
  content: "\10f5d0";
}

.fad.fa-alarm-clock:after {
  content: "\10f34e";
}

.fad.fa-alarm-exclamation:after {
  content: "\10f843";
}

.fad.fa-alarm-plus:after {
  content: "\10f844";
}

.fad.fa-alarm-snooze:after {
  content: "\10f845";
}

.fad.fa-album:after {
  content: "\10f89f";
}

.fad.fa-album-collection:after {
  content: "\10f8a0";
}

.fad.fa-alicorn:after {
  content: "\10f6b0";
}

.fad.fa-alien:after {
  content: "\10f8f5";
}

.fad.fa-alien-monster:after {
  content: "\10f8f6";
}

.fad.fa-align-center:after {
  content: "\10f037";
}

.fad.fa-align-justify:after {
  content: "\10f039";
}

.fad.fa-align-left:after {
  content: "\10f036";
}

.fad.fa-align-right:after {
  content: "\10f038";
}

.fad.fa-align-slash:after {
  content: "\10f846";
}

.fad.fa-allergies:after {
  content: "\10f461";
}

.fad.fa-ambulance:after {
  content: "\10f0f9";
}

.fad.fa-american-sign-language-interpreting:after {
  content: "\10f2a3";
}

.fad.fa-amp-guitar:after {
  content: "\10f8a1";
}

.fad.fa-analytics:after {
  content: "\10f643";
}

.fad.fa-anchor:after {
  content: "\10f13d";
}

.fad.fa-angel:after {
  content: "\10f779";
}

.fad.fa-angle-double-down:after {
  content: "\10f103";
}

.fad.fa-angle-double-left:after {
  content: "\10f100";
}

.fad.fa-angle-double-right:after {
  content: "\10f101";
}

.fad.fa-angle-double-up:after {
  content: "\10f102";
}

.fad.fa-angle-down:after {
  content: "\10f107";
}

.fad.fa-angle-left:after {
  content: "\10f104";
}

.fad.fa-angle-right:after {
  content: "\10f105";
}

.fad.fa-angle-up:after {
  content: "\10f106";
}

.fad.fa-angry:after {
  content: "\10f556";
}

.fad.fa-ankh:after {
  content: "\10f644";
}

.fad.fa-apple-alt:after {
  content: "\10f5d1";
}

.fad.fa-apple-crate:after {
  content: "\10f6b1";
}

.fad.fa-archive:after {
  content: "\10f187";
}

.fad.fa-archway:after {
  content: "\10f557";
}

.fad.fa-arrow-alt-circle-down:after,
.woocommerce-account .woocommerce-MyAccount-navigation-link--downloads a.fad:after,
.woocommerce-account .woocommerce-MyAccount-navigation-link--student-downloads a.fad:after {
  content: "\10f358";
}

.fad.fa-arrow-alt-circle-left:after {
  content: "\10f359";
}

.fad.fa-arrow-alt-circle-right:after {
  content: "\10f35a";
}

.fad.fa-arrow-alt-circle-up:after {
  content: "\10f35b";
}

.fad.fa-arrow-alt-down:after {
  content: "\10f354";
}

.fad.fa-arrow-alt-from-bottom:after {
  content: "\10f346";
}

.fad.fa-arrow-alt-from-left:after {
  content: "\10f347";
}

.fad.fa-arrow-alt-from-right:after {
  content: "\10f348";
}

.fad.fa-arrow-alt-from-top:after {
  content: "\10f349";
}

.fad.fa-arrow-alt-left:after {
  content: "\10f355";
}

.fad.fa-arrow-alt-right:after {
  content: "\10f356";
}

.fad.fa-arrow-alt-square-down:after {
  content: "\10f350";
}

.fad.fa-arrow-alt-square-left:after {
  content: "\10f351";
}

.fad.fa-arrow-alt-square-right:after {
  content: "\10f352";
}

.fad.fa-arrow-alt-square-up:after {
  content: "\10f353";
}

.fad.fa-arrow-alt-to-bottom:after {
  content: "\10f34a";
}

.fad.fa-arrow-alt-to-left:after {
  content: "\10f34b";
}

.fad.fa-arrow-alt-to-right:after {
  content: "\10f34c";
}

.fad.fa-arrow-alt-to-top:after {
  content: "\10f34d";
}

.fad.fa-arrow-alt-up:after {
  content: "\10f357";
}

.fad.fa-arrow-circle-down:after {
  content: "\10f0ab";
}

.fad.fa-arrow-circle-left:after {
  content: "\10f0a8";
}

.fad.fa-arrow-circle-right:after {
  content: "\10f0a9";
}

.fad.fa-arrow-circle-up:after {
  content: "\10f0aa";
}

.fad.fa-arrow-down:after {
  content: "\10f063";
}

.fad.fa-arrow-from-bottom:after {
  content: "\10f342";
}

.fad.fa-arrow-from-left:after {
  content: "\10f343";
}

.fad.fa-arrow-from-right:after {
  content: "\10f344";
}

.fad.fa-arrow-from-top:after {
  content: "\10f345";
}

.fad.fa-arrow-left:after {
  content: "\10f060";
}

.fad.fa-arrow-right:after {
  content: "\10f061";
}

.fad.fa-arrow-square-down:after {
  content: "\10f339";
}

.fad.fa-arrow-square-left:after {
  content: "\10f33a";
}

.fad.fa-arrow-square-right:after {
  content: "\10f33b";
}

.fad.fa-arrow-square-up:after {
  content: "\10f33c";
}

.fad.fa-arrow-to-bottom:after {
  content: "\10f33d";
}

.fad.fa-arrow-to-left:after {
  content: "\10f33e";
}

.fad.fa-arrow-to-right:after {
  content: "\10f340";
}

.fad.fa-arrow-to-top:after {
  content: "\10f341";
}

.fad.fa-arrow-up:after {
  content: "\10f062";
}

.fad.fa-arrows:after {
  content: "\10f047";
}

.fad.fa-arrows-alt:after {
  content: "\10f0b2";
}

.fad.fa-arrows-alt-h:after {
  content: "\10f337";
}

.fad.fa-arrows-alt-v:after {
  content: "\10f338";
}

.fad.fa-arrows-h:after {
  content: "\10f07e";
}

.fad.fa-arrows-v:after {
  content: "\10f07d";
}

.fad.fa-assistive-listening-systems:after {
  content: "\10f2a2";
}

.fad.fa-asterisk:after {
  content: "\10f069";
}

.fad.fa-at:after {
  content: "\10f1fa";
}

.fad.fa-atlas:after {
  content: "\10f558";
}

.fad.fa-atom:after {
  content: "\10f5d2";
}

.fad.fa-atom-alt:after {
  content: "\10f5d3";
}

.fad.fa-audio-description:after {
  content: "\10f29e";
}

.fad.fa-award:after {
  content: "\10f559";
}

.fad.fa-axe:after {
  content: "\10f6b2";
}

.fad.fa-axe-battle:after {
  content: "\10f6b3";
}

.fad.fa-baby:after {
  content: "\10f77c";
}

.fad.fa-baby-carriage:after {
  content: "\10f77d";
}

.fad.fa-backpack:after {
  content: "\10f5d4";
}

.fad.fa-backspace:after {
  content: "\10f55a";
}

.fad.fa-backward:after {
  content: "\10f04a";
}

.fad.fa-bacon:after {
  content: "\10f7e5";
}

.fad.fa-bacteria:after {
  content: "\10e059";
}

.fad.fa-bacterium:after {
  content: "\10e05a";
}

.fad.fa-badge:after {
  content: "\10f335";
}

.fad.fa-badge-check:after {
  content: "\10f336";
}

.fad.fa-badge-dollar:after {
  content: "\10f645";
}

.fad.fa-badge-percent:after {
  content: "\10f646";
}

.fad.fa-badge-sheriff:after {
  content: "\10f8a2";
}

.fad.fa-badger-honey:after {
  content: "\10f6b4";
}

.fad.fa-bags-shopping:after {
  content: "\10f847";
}

.fad.fa-bahai:after {
  content: "\10f666";
}

.fad.fa-balance-scale:after {
  content: "\10f24e";
}

.fad.fa-balance-scale-left:after {
  content: "\10f515";
}

.fad.fa-balance-scale-right:after {
  content: "\10f516";
}

.fad.fa-ball-pile:after {
  content: "\10f77e";
}

.fad.fa-ballot:after {
  content: "\10f732";
}

.fad.fa-ballot-check:after {
  content: "\10f733";
}

.fad.fa-ban:after {
  content: "\10f05e";
}

.fad.fa-band-aid:after {
  content: "\10f462";
}

.fad.fa-banjo:after {
  content: "\10f8a3";
}

.fad.fa-barcode:after {
  content: "\10f02a";
}

.fad.fa-barcode-alt:after {
  content: "\10f463";
}

.fad.fa-barcode-read:after {
  content: "\10f464";
}

.fad.fa-barcode-scan:after {
  content: "\10f465";
}

.fad.fa-bars:after {
  content: "\10f0c9";
}

.fad.fa-baseball:after {
  content: "\10f432";
}

.fad.fa-baseball-ball:after {
  content: "\10f433";
}

.fad.fa-basketball-ball:after {
  content: "\10f434";
}

.fad.fa-basketball-hoop:after {
  content: "\10f435";
}

.fad.fa-bat:after {
  content: "\10f6b5";
}

.fad.fa-bath:after {
  content: "\10f2cd";
}

.fad.fa-battery-bolt:after {
  content: "\10f376";
}

.fad.fa-battery-empty:after {
  content: "\10f244";
}

.fad.fa-battery-full:after {
  content: "\10f240";
}

.fad.fa-battery-half:after {
  content: "\10f242";
}

.fad.fa-battery-quarter:after {
  content: "\10f243";
}

.fad.fa-battery-slash:after {
  content: "\10f377";
}

.fad.fa-battery-three-quarters:after {
  content: "\10f241";
}

.fad.fa-bed:after {
  content: "\10f236";
}

.fad.fa-bed-alt:after {
  content: "\10f8f7";
}

.fad.fa-bed-bunk:after {
  content: "\10f8f8";
}

.fad.fa-bed-empty:after {
  content: "\10f8f9";
}

.fad.fa-beer:after {
  content: "\10f0fc";
}

.fad.fa-bell:after {
  content: "\10f0f3";
}

.fad.fa-bell-exclamation:after {
  content: "\10f848";
}

.fad.fa-bell-on:after {
  content: "\10f8fa";
}

.fad.fa-bell-plus:after {
  content: "\10f849";
}

.fad.fa-bell-school:after {
  content: "\10f5d5";
}

.fad.fa-bell-school-slash:after {
  content: "\10f5d6";
}

.fad.fa-bell-slash:after {
  content: "\10f1f6";
}

.fad.fa-bells:after {
  content: "\10f77f";
}

.fad.fa-betamax:after {
  content: "\10f8a4";
}

.fad.fa-bezier-curve:after {
  content: "\10f55b";
}

.fad.fa-bible:after {
  content: "\10f647";
}

.fad.fa-bicycle:after {
  content: "\10f206";
}

.fad.fa-biking:after {
  content: "\10f84a";
}

.fad.fa-biking-mountain:after {
  content: "\10f84b";
}

.fad.fa-binoculars:after {
  content: "\10f1e5";
}

.fad.fa-biohazard:after {
  content: "\10f780";
}

.fad.fa-birthday-cake:after {
  content: "\10f1fd";
}

.fad.fa-blanket:after {
  content: "\10f498";
}

.fad.fa-blender:after {
  content: "\10f517";
}

.fad.fa-blender-phone:after {
  content: "\10f6b6";
}

.fad.fa-blind:after {
  content: "\10f29d";
}

.fad.fa-blinds:after {
  content: "\10f8fb";
}

.fad.fa-blinds-open:after {
  content: "\10f8fc";
}

.fad.fa-blinds-raised:after {
  content: "\10f8fd";
}

.fad.fa-blog:after {
  content: "\10f781";
}

.fad.fa-bold:after {
  content: "\10f032";
}

.fad.fa-bolt:after {
  content: "\10f0e7";
}

.fad.fa-bomb:after {
  content: "\10f1e2";
}

.fad.fa-bone:after {
  content: "\10f5d7";
}

.fad.fa-bone-break:after {
  content: "\10f5d8";
}

.fad.fa-bong:after {
  content: "\10f55c";
}

.fad.fa-book:after {
  content: "\10f02d";
}

.fad.fa-book-alt:after {
  content: "\10f5d9";
}

.fad.fa-book-dead:after {
  content: "\10f6b7";
}

.fad.fa-book-heart:after {
  content: "\10f499";
}

.fad.fa-book-medical:after {
  content: "\10f7e6";
}

.fad.fa-book-open:after {
  content: "\10f518";
}

.fad.fa-book-reader:after {
  content: "\10f5da";
}

.fad.fa-book-spells:after {
  content: "\10f6b8";
}

.fad.fa-book-user:after {
  content: "\10f7e7";
}

.fad.fa-bookmark:after {
  content: "\10f02e";
}

.fad.fa-books:after {
  content: "\10f5db";
}

.fad.fa-books-medical:after {
  content: "\10f7e8";
}

.fad.fa-boombox:after {
  content: "\10f8a5";
}

.fad.fa-boot:after {
  content: "\10f782";
}

.fad.fa-booth-curtain:after {
  content: "\10f734";
}

.fad.fa-border-all:after {
  content: "\10f84c";
}

.fad.fa-border-bottom:after {
  content: "\10f84d";
}

.fad.fa-border-center-h:after {
  content: "\10f89c";
}

.fad.fa-border-center-v:after {
  content: "\10f89d";
}

.fad.fa-border-inner:after {
  content: "\10f84e";
}

.fad.fa-border-left:after {
  content: "\10f84f";
}

.fad.fa-border-none:after {
  content: "\10f850";
}

.fad.fa-border-outer:after {
  content: "\10f851";
}

.fad.fa-border-right:after {
  content: "\10f852";
}

.fad.fa-border-style:after {
  content: "\10f853";
}

.fad.fa-border-style-alt:after {
  content: "\10f854";
}

.fad.fa-border-top:after {
  content: "\10f855";
}

.fad.fa-bow-arrow:after {
  content: "\10f6b9";
}

.fad.fa-bowling-ball:after {
  content: "\10f436";
}

.fad.fa-bowling-pins:after {
  content: "\10f437";
}

.fad.fa-box:after {
  content: "\10f466";
}

.fad.fa-box-alt:after {
  content: "\10f49a";
}

.fad.fa-box-ballot:after {
  content: "\10f735";
}

.fad.fa-box-check:after {
  content: "\10f467";
}

.fad.fa-box-fragile:after {
  content: "\10f49b";
}

.fad.fa-box-full:after {
  content: "\10f49c";
}

.fad.fa-box-heart:after {
  content: "\10f49d";
}

.fad.fa-box-open:after {
  content: "\10f49e";
}

.fad.fa-box-tissue:after {
  content: "\10e05b";
}

.fad.fa-box-up:after {
  content: "\10f49f";
}

.fad.fa-box-usd:after {
  content: "\10f4a0";
}

.fad.fa-boxes:after {
  content: "\10f468";
}

.fad.fa-boxes-alt:after {
  content: "\10f4a1";
}

.fad.fa-boxing-glove:after {
  content: "\10f438";
}

.fad.fa-brackets:after {
  content: "\10f7e9";
}

.fad.fa-brackets-curly:after {
  content: "\10f7ea";
}

.fad.fa-braille:after {
  content: "\10f2a1";
}

.fad.fa-brain:after {
  content: "\10f5dc";
}

.fad.fa-bread-loaf:after {
  content: "\10f7eb";
}

.fad.fa-bread-slice:after {
  content: "\10f7ec";
}

.fad.fa-briefcase:after {
  content: "\10f0b1";
}

.fad.fa-briefcase-medical:after {
  content: "\10f469";
}

.fad.fa-bring-forward:after {
  content: "\10f856";
}

.fad.fa-bring-front:after {
  content: "\10f857";
}

.fad.fa-broadcast-tower:after {
  content: "\10f519";
}

.fad.fa-broom:after {
  content: "\10f51a";
}

.fad.fa-browser:after {
  content: "\10f37e";
}

.fad.fa-brush:after {
  content: "\10f55d";
}

.fad.fa-bug:after {
  content: "\10f188";
}

.fad.fa-building:after {
  content: "\10f1ad";
}

.fad.fa-bullhorn:after {
  content: "\10f0a1";
}

.fad.fa-bullseye:after {
  content: "\10f140";
}

.fad.fa-bullseye-arrow:after {
  content: "\10f648";
}

.fad.fa-bullseye-pointer:after {
  content: "\10f649";
}

.fad.fa-burger-soda:after {
  content: "\10f858";
}

.fad.fa-burn:after {
  content: "\10f46a";
}

.fad.fa-burrito:after {
  content: "\10f7ed";
}

.fad.fa-bus:after {
  content: "\10f207";
}

.fad.fa-bus-alt:after {
  content: "\10f55e";
}

.fad.fa-bus-school:after {
  content: "\10f5dd";
}

.fad.fa-business-time:after {
  content: "\10f64a";
}

.fad.fa-cabinet-filing:after {
  content: "\10f64b";
}

.fad.fa-cactus:after {
  content: "\10f8a7";
}

.fad.fa-calculator:after {
  content: "\10f1ec";
}

.fad.fa-calculator-alt:after {
  content: "\10f64c";
}

.fad.fa-calendar:after {
  content: "\10f133";
}

.fad.fa-calendar-alt:after {
  content: "\10f073";
}

.fad.fa-calendar-check:after {
  content: "\10f274";
}

.fad.fa-calendar-day:after {
  content: "\10f783";
}

.fad.fa-calendar-edit:after {
  content: "\10f333";
}

.fad.fa-calendar-exclamation:after {
  content: "\10f334";
}

.fad.fa-calendar-minus:after {
  content: "\10f272";
}

.fad.fa-calendar-plus:after {
  content: "\10f271";
}

.fad.fa-calendar-star:after {
  content: "\10f736";
}

.fad.fa-calendar-times:after {
  content: "\10f273";
}

.fad.fa-calendar-week:after {
  content: "\10f784";
}

.fad.fa-camcorder:after {
  content: "\10f8a8";
}

.fad.fa-camera:after {
  content: "\10f030";
}

.fad.fa-camera-alt:after {
  content: "\10f332";
}

.fad.fa-camera-home:after {
  content: "\10f8fe";
}

.fad.fa-camera-movie:after {
  content: "\10f8a9";
}

.fad.fa-camera-polaroid:after {
  content: "\10f8aa";
}

.fad.fa-camera-retro:after {
  content: "\10f083";
}

.fad.fa-campfire:after {
  content: "\10f6ba";
}

.fad.fa-campground:after {
  content: "\10f6bb";
}

.fad.fa-candle-holder:after {
  content: "\10f6bc";
}

.fad.fa-candy-cane:after {
  content: "\10f786";
}

.fad.fa-candy-corn:after {
  content: "\10f6bd";
}

.fad.fa-cannabis:after {
  content: "\10f55f";
}

.fad.fa-capsules:after {
  content: "\10f46b";
}

.fad.fa-car:after {
  content: "\10f1b9";
}

.fad.fa-car-alt:after {
  content: "\10f5de";
}

.fad.fa-car-battery:after {
  content: "\10f5df";
}

.fad.fa-car-building:after {
  content: "\10f859";
}

.fad.fa-car-bump:after {
  content: "\10f5e0";
}

.fad.fa-car-bus:after {
  content: "\10f85a";
}

.fad.fa-car-crash:after {
  content: "\10f5e1";
}

.fad.fa-car-garage:after {
  content: "\10f5e2";
}

.fad.fa-car-mechanic:after {
  content: "\10f5e3";
}

.fad.fa-car-side:after {
  content: "\10f5e4";
}

.fad.fa-car-tilt:after {
  content: "\10f5e5";
}

.fad.fa-car-wash:after {
  content: "\10f5e6";
}

.fad.fa-caravan:after {
  content: "\10f8ff";
}

.fad.fa-caravan-alt:after {
  content: "\10e000";
}

.fad.fa-caret-circle-down:after {
  content: "\10f32d";
}

.fad.fa-caret-circle-left:after {
  content: "\10f32e";
}

.fad.fa-caret-circle-right:after {
  content: "\10f330";
}

.fad.fa-caret-circle-up:after {
  content: "\10f331";
}

.fad.fa-caret-down:after {
  content: "\10f0d7";
}

.fad.fa-caret-left:after {
  content: "\10f0d9";
}

.fad.fa-caret-right:after {
  content: "\10f0da";
}

.fad.fa-caret-square-down:after {
  content: "\10f150";
}

.fad.fa-caret-square-left:after {
  content: "\10f191";
}

.fad.fa-caret-square-right:after {
  content: "\10f152";
}

.fad.fa-caret-square-up:after {
  content: "\10f151";
}

.fad.fa-caret-up:after {
  content: "\10f0d8";
}

.fad.fa-carrot:after {
  content: "\10f787";
}

.fad.fa-cars:after {
  content: "\10f85b";
}

.fad.fa-cart-arrow-down:after {
  content: "\10f218";
}

.fad.fa-cart-plus:after {
  content: "\10f217";
}

.fad.fa-cash-register:after {
  content: "\10f788";
}

.fad.fa-cassette-tape:after {
  content: "\10f8ab";
}

.fad.fa-cat:after {
  content: "\10f6be";
}

.fad.fa-cat-space:after {
  content: "\10e001";
}

.fad.fa-cauldron:after {
  content: "\10f6bf";
}

.fad.fa-cctv:after {
  content: "\10f8ac";
}

.fad.fa-certificate:after {
  content: "\10f0a3";
}

.fad.fa-chair:after {
  content: "\10f6c0";
}

.fad.fa-chair-office:after {
  content: "\10f6c1";
}

.fad.fa-chalkboard:after {
  content: "\10f51b";
}

.fad.fa-chalkboard-teacher:after {
  content: "\10f51c";
}

.fad.fa-charging-station:after {
  content: "\10f5e7";
}

.fad.fa-chart-area:after {
  content: "\10f1fe";
}

.fad.fa-chart-bar:after {
  content: "\10f080";
}

.fad.fa-chart-line:after {
  content: "\10f201";
}

.fad.fa-chart-line-down:after {
  content: "\10f64d";
}

.fad.fa-chart-network:after {
  content: "\10f78a";
}

.fad.fa-chart-pie:after {
  content: "\10f200";
}

.fad.fa-chart-pie-alt:after {
  content: "\10f64e";
}

.fad.fa-chart-scatter:after {
  content: "\10f7ee";
}

.fad.fa-check:after {
  content: "\10f00c";
}

.fad.fa-check-circle:after {
  content: "\10f058";
}

.fad.fa-check-double:after {
  content: "\10f560";
}

.fad.fa-check-square:after {
  content: "\10f14a";
}

.fad.fa-cheese:after {
  content: "\10f7ef";
}

.fad.fa-cheese-swiss:after {
  content: "\10f7f0";
}

.fad.fa-cheeseburger:after {
  content: "\10f7f1";
}

.fad.fa-chess:after {
  content: "\10f439";
}

.fad.fa-chess-bishop:after {
  content: "\10f43a";
}

.fad.fa-chess-bishop-alt:after {
  content: "\10f43b";
}

.fad.fa-chess-board:after {
  content: "\10f43c";
}

.fad.fa-chess-clock:after {
  content: "\10f43d";
}

.fad.fa-chess-clock-alt:after {
  content: "\10f43e";
}

.fad.fa-chess-king:after {
  content: "\10f43f";
}

.fad.fa-chess-king-alt:after {
  content: "\10f440";
}

.fad.fa-chess-knight:after {
  content: "\10f441";
}

.fad.fa-chess-knight-alt:after {
  content: "\10f442";
}

.fad.fa-chess-pawn:after {
  content: "\10f443";
}

.fad.fa-chess-pawn-alt:after {
  content: "\10f444";
}

.fad.fa-chess-queen:after {
  content: "\10f445";
}

.fad.fa-chess-queen-alt:after {
  content: "\10f446";
}

.fad.fa-chess-rook:after {
  content: "\10f447";
}

.fad.fa-chess-rook-alt:after {
  content: "\10f448";
}

.fad.fa-chevron-circle-down:after {
  content: "\10f13a";
}

.fad.fa-chevron-circle-left:after {
  content: "\10f137";
}

.fad.fa-chevron-circle-right:after {
  content: "\10f138";
}

.fad.fa-chevron-circle-up:after {
  content: "\10f139";
}

.fad.fa-chevron-double-down:after {
  content: "\10f322";
}

.fad.fa-chevron-double-left:after {
  content: "\10f323";
}

.fad.fa-chevron-double-right:after {
  content: "\10f324";
}

.fad.fa-chevron-double-up:after {
  content: "\10f325";
}

.fad.fa-chevron-down:after {
  content: "\10f078";
}

.fad.fa-chevron-left:after {
  content: "\10f053";
}

.fad.fa-chevron-right:after {
  content: "\10f054";
}

.fad.fa-chevron-square-down:after {
  content: "\10f329";
}

.fad.fa-chevron-square-left:after {
  content: "\10f32a";
}

.fad.fa-chevron-square-right:after {
  content: "\10f32b";
}

.fad.fa-chevron-square-up:after {
  content: "\10f32c";
}

.fad.fa-chevron-up:after {
  content: "\10f077";
}

.fad.fa-child:after {
  content: "\10f1ae";
}

.fad.fa-chimney:after {
  content: "\10f78b";
}

.fad.fa-church:after {
  content: "\10f51d";
}

.fad.fa-circle:after {
  content: "\10f111";
}

.fad.fa-circle-notch:after {
  content: "\10f1ce";
}

.fad.fa-city:after {
  content: "\10f64f";
}

.fad.fa-clarinet:after {
  content: "\10f8ad";
}

.fad.fa-claw-marks:after {
  content: "\10f6c2";
}

.fad.fa-clinic-medical:after {
  content: "\10f7f2";
}

.fad.fa-clipboard:after {
  content: "\10f328";
}

.fad.fa-clipboard-check:after {
  content: "\10f46c";
}

.fad.fa-clipboard-list:after {
  content: "\10f46d";
}

.fad.fa-clipboard-list-check:after {
  content: "\10f737";
}

.fad.fa-clipboard-prescription:after {
  content: "\10f5e8";
}

.fad.fa-clipboard-user:after {
  content: "\10f7f3";
}

.fad.fa-clock:after {
  content: "\10f017";
}

.fad.fa-clone:after {
  content: "\10f24d";
}

.fad.fa-closed-captioning:after {
  content: "\10f20a";
}

.fad.fa-cloud:after {
  content: "\10f0c2";
}

.fad.fa-cloud-download:after {
  content: "\10f0ed";
}

.fad.fa-cloud-download-alt:after {
  content: "\10f381";
}

.fad.fa-cloud-drizzle:after {
  content: "\10f738";
}

.fad.fa-cloud-hail:after {
  content: "\10f739";
}

.fad.fa-cloud-hail-mixed:after {
  content: "\10f73a";
}

.fad.fa-cloud-meatball:after {
  content: "\10f73b";
}

.fad.fa-cloud-moon:after {
  content: "\10f6c3";
}

.fad.fa-cloud-moon-rain:after {
  content: "\10f73c";
}

.fad.fa-cloud-music:after {
  content: "\10f8ae";
}

.fad.fa-cloud-rain:after {
  content: "\10f73d";
}

.fad.fa-cloud-rainbow:after {
  content: "\10f73e";
}

.fad.fa-cloud-showers:after {
  content: "\10f73f";
}

.fad.fa-cloud-showers-heavy:after {
  content: "\10f740";
}

.fad.fa-cloud-sleet:after {
  content: "\10f741";
}

.fad.fa-cloud-snow:after {
  content: "\10f742";
}

.fad.fa-cloud-sun:after {
  content: "\10f6c4";
}

.fad.fa-cloud-sun-rain:after {
  content: "\10f743";
}

.fad.fa-cloud-upload:after {
  content: "\10f0ee";
}

.fad.fa-cloud-upload-alt:after {
  content: "\10f382";
}

.fad.fa-clouds:after {
  content: "\10f744";
}

.fad.fa-clouds-moon:after {
  content: "\10f745";
}

.fad.fa-clouds-sun:after {
  content: "\10f746";
}

.fad.fa-club:after {
  content: "\10f327";
}

.fad.fa-cocktail:after {
  content: "\10f561";
}

.fad.fa-code:after {
  content: "\10f121";
}

.fad.fa-code-branch:after {
  content: "\10f126";
}

.fad.fa-code-commit:after {
  content: "\10f386";
}

.fad.fa-code-merge:after {
  content: "\10f387";
}

.fad.fa-coffee:after {
  content: "\10f0f4";
}

.fad.fa-coffee-pot:after {
  content: "\10e002";
}

.fad.fa-coffee-togo:after {
  content: "\10f6c5";
}

.fad.fa-coffin:after {
  content: "\10f6c6";
}

.fad.fa-coffin-cross:after {
  content: "\10e051";
}

.fad.fa-cog:after {
  content: "\10f013";
}

.fad.fa-cogs:after {
  content: "\10f085";
}

.fad.fa-coin:after {
  content: "\10f85c";
}

.fad.fa-coins:after {
  content: "\10f51e";
}

.fad.fa-columns:after {
  content: "\10f0db";
}

.fad.fa-comet:after {
  content: "\10e003";
}

.fad.fa-comment:after {
  content: "\10f075";
}

.fad.fa-comment-alt:after {
  content: "\10f27a";
}

.fad.fa-comment-alt-check:after {
  content: "\10f4a2";
}

.fad.fa-comment-alt-dollar:after {
  content: "\10f650";
}

.fad.fa-comment-alt-dots:after {
  content: "\10f4a3";
}

.fad.fa-comment-alt-edit:after {
  content: "\10f4a4";
}

.fad.fa-comment-alt-exclamation:after {
  content: "\10f4a5";
}

.fad.fa-comment-alt-lines:after {
  content: "\10f4a6";
}

.fad.fa-comment-alt-medical:after {
  content: "\10f7f4";
}

.fad.fa-comment-alt-minus:after {
  content: "\10f4a7";
}

.fad.fa-comment-alt-music:after {
  content: "\10f8af";
}

.fad.fa-comment-alt-plus:after {
  content: "\10f4a8";
}

.fad.fa-comment-alt-slash:after {
  content: "\10f4a9";
}

.fad.fa-comment-alt-smile:after {
  content: "\10f4aa";
}

.fad.fa-comment-alt-times:after {
  content: "\10f4ab";
}

.fad.fa-comment-check:after {
  content: "\10f4ac";
}

.fad.fa-comment-dollar:after {
  content: "\10f651";
}

.fad.fa-comment-dots:after {
  content: "\10f4ad";
}

.fad.fa-comment-edit:after {
  content: "\10f4ae";
}

.fad.fa-comment-exclamation:after {
  content: "\10f4af";
}

.fad.fa-comment-lines:after {
  content: "\10f4b0";
}

.fad.fa-comment-medical:after {
  content: "\10f7f5";
}

.fad.fa-comment-minus:after {
  content: "\10f4b1";
}

.fad.fa-comment-music:after {
  content: "\10f8b0";
}

.fad.fa-comment-plus:after {
  content: "\10f4b2";
}

.fad.fa-comment-slash:after {
  content: "\10f4b3";
}

.fad.fa-comment-smile:after {
  content: "\10f4b4";
}

.fad.fa-comment-times:after {
  content: "\10f4b5";
}

.fad.fa-comments:after {
  content: "\10f086";
}

.fad.fa-comments-alt:after {
  content: "\10f4b6";
}

.fad.fa-comments-alt-dollar:after {
  content: "\10f652";
}

.fad.fa-comments-dollar:after {
  content: "\10f653";
}

.fad.fa-compact-disc:after {
  content: "\10f51f";
}

.fad.fa-compass:after {
  content: "\10f14e";
}

.fad.fa-compass-slash:after {
  content: "\10f5e9";
}

.fad.fa-compress:after {
  content: "\10f066";
}

.fad.fa-compress-alt:after {
  content: "\10f422";
}

.fad.fa-compress-arrows-alt:after {
  content: "\10f78c";
}

.fad.fa-compress-wide:after {
  content: "\10f326";
}

.fad.fa-computer-classic:after {
  content: "\10f8b1";
}

.fad.fa-computer-speaker:after {
  content: "\10f8b2";
}

.fad.fa-concierge-bell:after {
  content: "\10f562";
}

.fad.fa-construction:after {
  content: "\10f85d";
}

.fad.fa-container-storage:after {
  content: "\10f4b7";
}

.fad.fa-conveyor-belt:after {
  content: "\10f46e";
}

.fad.fa-conveyor-belt-alt:after {
  content: "\10f46f";
}

.fad.fa-cookie:after {
  content: "\10f563";
}

.fad.fa-cookie-bite:after {
  content: "\10f564";
}

.fad.fa-copy:after {
  content: "\10f0c5";
}

.fad.fa-copyright:after {
  content: "\10f1f9";
}

.fad.fa-corn:after {
  content: "\10f6c7";
}

.fad.fa-couch:after {
  content: "\10f4b8";
}

.fad.fa-cow:after {
  content: "\10f6c8";
}

.fad.fa-cowbell:after {
  content: "\10f8b3";
}

.fad.fa-cowbell-more:after {
  content: "\10f8b4";
}

.fad.fa-credit-card:after,
.woocommerce-account .woocommerce-MyAccount-navigation-link--payment-methods a.fad:after {
  content: "\10f09d";
}

.fad.fa-credit-card-blank:after {
  content: "\10f389";
}

.fad.fa-credit-card-front:after {
  content: "\10f38a";
}

.fad.fa-cricket:after {
  content: "\10f449";
}

.fad.fa-croissant:after {
  content: "\10f7f6";
}

.fad.fa-crop:after {
  content: "\10f125";
}

.fad.fa-crop-alt:after {
  content: "\10f565";
}

.fad.fa-cross:after {
  content: "\10f654";
}

.fad.fa-crosshairs:after {
  content: "\10f05b";
}

.fad.fa-crow:after {
  content: "\10f520";
}

.fad.fa-crown:after {
  content: "\10f521";
}

.fad.fa-crutch:after {
  content: "\10f7f7";
}

.fad.fa-crutches:after {
  content: "\10f7f8";
}

.fad.fa-cube:after {
  content: "\10f1b2";
}

.fad.fa-cubes:after {
  content: "\10f1b3";
}

.fad.fa-curling:after {
  content: "\10f44a";
}

.fad.fa-cut:after {
  content: "\10f0c4";
}

.fad.fa-dagger:after {
  content: "\10f6cb";
}

.fad.fa-database:after {
  content: "\10f1c0";
}

.fad.fa-deaf:after {
  content: "\10f2a4";
}

.fad.fa-debug:after {
  content: "\10f7f9";
}

.fad.fa-deer:after {
  content: "\10f78e";
}

.fad.fa-deer-rudolph:after {
  content: "\10f78f";
}

.fad.fa-democrat:after {
  content: "\10f747";
}

.fad.fa-desktop:after {
  content: "\10f108";
}

.fad.fa-desktop-alt:after {
  content: "\10f390";
}

.fad.fa-dewpoint:after {
  content: "\10f748";
}

.fad.fa-dharmachakra:after {
  content: "\10f655";
}

.fad.fa-diagnoses:after {
  content: "\10f470";
}

.fad.fa-diamond:after {
  content: "\10f219";
}

.fad.fa-dice:after {
  content: "\10f522";
}

.fad.fa-dice-d10:after {
  content: "\10f6cd";
}

.fad.fa-dice-d12:after {
  content: "\10f6ce";
}

.fad.fa-dice-d20:after {
  content: "\10f6cf";
}

.fad.fa-dice-d4:after {
  content: "\10f6d0";
}

.fad.fa-dice-d6:after {
  content: "\10f6d1";
}

.fad.fa-dice-d8:after {
  content: "\10f6d2";
}

.fad.fa-dice-five:after {
  content: "\10f523";
}

.fad.fa-dice-four:after {
  content: "\10f524";
}

.fad.fa-dice-one:after {
  content: "\10f525";
}

.fad.fa-dice-six:after {
  content: "\10f526";
}

.fad.fa-dice-three:after {
  content: "\10f527";
}

.fad.fa-dice-two:after {
  content: "\10f528";
}

.fad.fa-digging:after {
  content: "\10f85e";
}

.fad.fa-digital-tachograph:after {
  content: "\10f566";
}

.fad.fa-diploma:after {
  content: "\10f5ea";
}

.fad.fa-directions:after {
  content: "\10f5eb";
}

.fad.fa-disc-drive:after {
  content: "\10f8b5";
}

.fad.fa-disease:after {
  content: "\10f7fa";
}

.fad.fa-divide:after {
  content: "\10f529";
}

.fad.fa-dizzy:after {
  content: "\10f567";
}

.fad.fa-dna:after {
  content: "\10f471";
}

.fad.fa-do-not-enter:after {
  content: "\10f5ec";
}

.fad.fa-dog:after {
  content: "\10f6d3";
}

.fad.fa-dog-leashed:after {
  content: "\10f6d4";
}

.fad.fa-dollar-sign:after {
  content: "\10f155";
}

.fad.fa-dolly:after {
  content: "\10f472";
}

.fad.fa-dolly-empty:after {
  content: "\10f473";
}

.fad.fa-dolly-flatbed:after {
  content: "\10f474";
}

.fad.fa-dolly-flatbed-alt:after {
  content: "\10f475";
}

.fad.fa-dolly-flatbed-empty:after {
  content: "\10f476";
}

.fad.fa-donate:after {
  content: "\10f4b9";
}

.fad.fa-door-closed:after {
  content: "\10f52a";
}

.fad.fa-door-open:after {
  content: "\10f52b";
}

.fad.fa-dot-circle:after {
  content: "\10f192";
}

.fad.fa-dove:after {
  content: "\10f4ba";
}

.fad.fa-download:after {
  content: "\10f019";
}

.fad.fa-drafting-compass:after {
  content: "\10f568";
}

.fad.fa-dragon:after {
  content: "\10f6d5";
}

.fad.fa-draw-circle:after {
  content: "\10f5ed";
}

.fad.fa-draw-polygon:after {
  content: "\10f5ee";
}

.fad.fa-draw-square:after {
  content: "\10f5ef";
}

.fad.fa-dreidel:after {
  content: "\10f792";
}

.fad.fa-drone:after {
  content: "\10f85f";
}

.fad.fa-drone-alt:after {
  content: "\10f860";
}

.fad.fa-drum:after {
  content: "\10f569";
}

.fad.fa-drum-steelpan:after {
  content: "\10f56a";
}

.fad.fa-drumstick:after {
  content: "\10f6d6";
}

.fad.fa-drumstick-bite:after {
  content: "\10f6d7";
}

.fad.fa-dryer:after {
  content: "\10f861";
}

.fad.fa-dryer-alt:after {
  content: "\10f862";
}

.fad.fa-duck:after {
  content: "\10f6d8";
}

.fad.fa-dumbbell:after {
  content: "\10f44b";
}

.fad.fa-dumpster:after {
  content: "\10f793";
}

.fad.fa-dumpster-fire:after {
  content: "\10f794";
}

.fad.fa-dungeon:after {
  content: "\10f6d9";
}

.fad.fa-ear:after {
  content: "\10f5f0";
}

.fad.fa-ear-muffs:after {
  content: "\10f795";
}

.fad.fa-eclipse:after {
  content: "\10f749";
}

.fad.fa-eclipse-alt:after {
  content: "\10f74a";
}

.fad.fa-edit:after {
  content: "\10f044";
}

.fad.fa-egg:after {
  content: "\10f7fb";
}

.fad.fa-egg-fried:after {
  content: "\10f7fc";
}

.fad.fa-eject:after {
  content: "\10f052";
}

.fad.fa-elephant:after {
  content: "\10f6da";
}

.fad.fa-ellipsis-h:after {
  content: "\10f141";
}

.fad.fa-ellipsis-h-alt:after {
  content: "\10f39b";
}

.fad.fa-ellipsis-v:after {
  content: "\10f142";
}

.fad.fa-ellipsis-v-alt:after {
  content: "\10f39c";
}

.fad.fa-empty-set:after {
  content: "\10f656";
}

.fad.fa-engine-warning:after {
  content: "\10f5f2";
}

.fad.fa-envelope:after {
  content: "\10f0e0";
}

.fad.fa-envelope-open:after {
  content: "\10f2b6";
}

.fad.fa-envelope-open-dollar:after {
  content: "\10f657";
}

.fad.fa-envelope-open-text:after {
  content: "\10f658";
}

.fad.fa-envelope-square:after {
  content: "\10f199";
}

.fad.fa-equals:after {
  content: "\10f52c";
}

.fad.fa-eraser:after {
  content: "\10f12d";
}

.fad.fa-ethernet:after {
  content: "\10f796";
}

.fad.fa-euro-sign:after {
  content: "\10f153";
}

.fad.fa-exchange:after {
  content: "\10f0ec";
}

.fad.fa-exchange-alt:after {
  content: "\10f362";
}

.fad.fa-exclamation:after {
  content: "\10f12a";
}

.fad.fa-exclamation-circle:after {
  content: "\10f06a";
}

.fad.fa-exclamation-square:after {
  content: "\10f321";
}

.fad.fa-exclamation-triangle:after {
  content: "\10f071";
}

.fad.fa-expand:after {
  content: "\10f065";
}

.fad.fa-expand-alt:after {
  content: "\10f424";
}

.fad.fa-expand-arrows:after {
  content: "\10f31d";
}

.fad.fa-expand-arrows-alt:after {
  content: "\10f31e";
}

.fad.fa-expand-wide:after {
  content: "\10f320";
}

.fad.fa-external-link:after {
  content: "\10f08e";
}

.fad.fa-external-link-alt:after {
  content: "\10f35d";
}

.fad.fa-external-link-square:after {
  content: "\10f14c";
}

.fad.fa-external-link-square-alt:after {
  content: "\10f360";
}

.fad.fa-eye:after {
  content: "\10f06e";
}

.fad.fa-eye-dropper:after {
  content: "\10f1fb";
}

.fad.fa-eye-evil:after {
  content: "\10f6db";
}

.fad.fa-eye-slash:after {
  content: "\10f070";
}

.fad.fa-fan:after {
  content: "\10f863";
}

.fad.fa-fan-table:after {
  content: "\10e004";
}

.fad.fa-farm:after {
  content: "\10f864";
}

.fad.fa-fast-backward:after {
  content: "\10f049";
}

.fad.fa-fast-forward:after {
  content: "\10f050";
}

.fad.fa-faucet:after {
  content: "\10e005";
}

.fad.fa-faucet-drip:after {
  content: "\10e006";
}

.fad.fa-fax:after {
  content: "\10f1ac";
}

.fad.fa-feather:after {
  content: "\10f52d";
}

.fad.fa-feather-alt:after {
  content: "\10f56b";
}

.fad.fa-female:after {
  content: "\10f182";
}

.fad.fa-field-hockey:after {
  content: "\10f44c";
}

.fad.fa-fighter-jet:after {
  content: "\10f0fb";
}

.fad.fa-file:after {
  content: "\10f15b";
}

.fad.fa-file-alt:after {
  content: "\10f15c";
}

.fad.fa-file-archive:after {
  content: "\10f1c6";
}

.fad.fa-file-audio:after {
  content: "\10f1c7";
}

.fad.fa-file-certificate:after {
  content: "\10f5f3";
}

.fad.fa-file-chart-line:after {
  content: "\10f659";
}

.fad.fa-file-chart-pie:after {
  content: "\10f65a";
}

.fad.fa-file-check:after {
  content: "\10f316";
}

.fad.fa-file-code:after {
  content: "\10f1c9";
}

.fad.fa-file-contract:after {
  content: "\10f56c";
}

.fad.fa-file-csv:after {
  content: "\10f6dd";
}

.fad.fa-file-download:after {
  content: "\10f56d";
}

.fad.fa-file-edit:after {
  content: "\10f31c";
}

.fad.fa-file-excel:after {
  content: "\10f1c3";
}

.fad.fa-file-exclamation:after {
  content: "\10f31a";
}

.fad.fa-file-export:after {
  content: "\10f56e";
}

.fad.fa-file-image:after {
  content: "\10f1c5";
}

.fad.fa-file-import:after {
  content: "\10f56f";
}

.fad.fa-file-invoice:after {
  content: "\10f570";
}

.fad.fa-file-invoice-dollar:after {
  content: "\10f571";
}

.fad.fa-file-medical:after {
  content: "\10f477";
}

.fad.fa-file-medical-alt:after {
  content: "\10f478";
}

.fad.fa-file-minus:after {
  content: "\10f318";
}

.fad.fa-file-music:after {
  content: "\10f8b6";
}

.fad.fa-file-pdf:after {
  content: "\10f1c1";
}

.fad.fa-file-plus:after {
  content: "\10f319";
}

.fad.fa-file-powerpoint:after {
  content: "\10f1c4";
}

.fad.fa-file-prescription:after {
  content: "\10f572";
}

.fad.fa-file-search:after {
  content: "\10f865";
}

.fad.fa-file-signature:after {
  content: "\10f573";
}

.fad.fa-file-spreadsheet:after {
  content: "\10f65b";
}

.fad.fa-file-times:after {
  content: "\10f317";
}

.fad.fa-file-upload:after {
  content: "\10f574";
}

.fad.fa-file-user:after {
  content: "\10f65c";
}

.fad.fa-file-video:after {
  content: "\10f1c8";
}

.fad.fa-file-word:after {
  content: "\10f1c2";
}

.fad.fa-files-medical:after {
  content: "\10f7fd";
}

.fad.fa-fill:after {
  content: "\10f575";
}

.fad.fa-fill-drip:after {
  content: "\10f576";
}

.fad.fa-film:after {
  content: "\10f008";
}

.fad.fa-film-alt:after {
  content: "\10f3a0";
}

.fad.fa-film-canister:after {
  content: "\10f8b7";
}

.fad.fa-filter:after {
  content: "\10f0b0";
}

.fad.fa-fingerprint:after {
  content: "\10f577";
}

.fad.fa-fire:after {
  content: "\10f06d";
}

.fad.fa-fire-alt:after {
  content: "\10f7e4";
}

.fad.fa-fire-extinguisher:after {
  content: "\10f134";
}

.fad.fa-fire-smoke:after {
  content: "\10f74b";
}

.fad.fa-fireplace:after {
  content: "\10f79a";
}

.fad.fa-first-aid:after {
  content: "\10f479";
}

.fad.fa-fish:after {
  content: "\10f578";
}

.fad.fa-fish-cooked:after {
  content: "\10f7fe";
}

.fad.fa-fist-raised:after {
  content: "\10f6de";
}

.fad.fa-flag:after {
  content: "\10f024";
}

.fad.fa-flag-alt:after {
  content: "\10f74c";
}

.fad.fa-flag-checkered:after {
  content: "\10f11e";
}

.fad.fa-flag-usa:after {
  content: "\10f74d";
}

.fad.fa-flame:after {
  content: "\10f6df";
}

.fad.fa-flashlight:after {
  content: "\10f8b8";
}

.fad.fa-flask:after {
  content: "\10f0c3";
}

.fad.fa-flask-poison:after {
  content: "\10f6e0";
}

.fad.fa-flask-potion:after {
  content: "\10f6e1";
}

.fad.fa-flower:after {
  content: "\10f7ff";
}

.fad.fa-flower-daffodil:after {
  content: "\10f800";
}

.fad.fa-flower-tulip:after {
  content: "\10f801";
}

.fad.fa-flushed:after {
  content: "\10f579";
}

.fad.fa-flute:after {
  content: "\10f8b9";
}

.fad.fa-flux-capacitor:after {
  content: "\10f8ba";
}

.fad.fa-fog:after {
  content: "\10f74e";
}

.fad.fa-folder:after {
  content: "\10f07b";
}

.fad.fa-folder-download:after {
  content: "\10e053";
}

.fad.fa-folder-minus:after {
  content: "\10f65d";
}

.fad.fa-folder-open:after {
  content: "\10f07c";
}

.fad.fa-folder-plus:after {
  content: "\10f65e";
}

.fad.fa-folder-times:after {
  content: "\10f65f";
}

.fad.fa-folder-tree:after {
  content: "\10f802";
}

.fad.fa-folder-upload:after {
  content: "\10e054";
}

.fad.fa-folders:after {
  content: "\10f660";
}

.fad.fa-font:after {
  content: "\10f031";
}

.fad.fa-font-awesome-logo-full:after {
  content: "\10f4e6";
}

.fad.fa-font-case:after {
  content: "\10f866";
}

.fad.fa-football-ball:after {
  content: "\10f44e";
}

.fad.fa-football-helmet:after {
  content: "\10f44f";
}

.fad.fa-forklift:after {
  content: "\10f47a";
}

.fad.fa-forward:after {
  content: "\10f04e";
}

.fad.fa-fragile:after {
  content: "\10f4bb";
}

.fad.fa-french-fries:after {
  content: "\10f803";
}

.fad.fa-frog:after {
  content: "\10f52e";
}

.fad.fa-frosty-head:after {
  content: "\10f79b";
}

.fad.fa-frown:after {
  content: "\10f119";
}

.fad.fa-frown-open:after {
  content: "\10f57a";
}

.fad.fa-function:after {
  content: "\10f661";
}

.fad.fa-funnel-dollar:after {
  content: "\10f662";
}

.fad.fa-futbol:after {
  content: "\10f1e3";
}

.fad.fa-galaxy:after {
  content: "\10e008";
}

.fad.fa-game-board:after {
  content: "\10f867";
}

.fad.fa-game-board-alt:after {
  content: "\10f868";
}

.fad.fa-game-console-handheld:after {
  content: "\10f8bb";
}

.fad.fa-gamepad:after {
  content: "\10f11b";
}

.fad.fa-gamepad-alt:after {
  content: "\10f8bc";
}

.fad.fa-garage:after {
  content: "\10e009";
}

.fad.fa-garage-car:after {
  content: "\10e00a";
}

.fad.fa-garage-open:after {
  content: "\10e00b";
}

.fad.fa-gas-pump:after {
  content: "\10f52f";
}

.fad.fa-gas-pump-slash:after {
  content: "\10f5f4";
}

.fad.fa-gavel:after {
  content: "\10f0e3";
}

.fad.fa-gem:after {
  content: "\10f3a5";
}

.fad.fa-genderless:after {
  content: "\10f22d";
}

.fad.fa-ghost:after {
  content: "\10f6e2";
}

.fad.fa-gift:after {
  content: "\10f06b";
}

.fad.fa-gift-card:after {
  content: "\10f663";
}

.fad.fa-gifts:after {
  content: "\10f79c";
}

.fad.fa-gingerbread-man:after {
  content: "\10f79d";
}

.fad.fa-glass:after {
  content: "\10f804";
}

.fad.fa-glass-champagne:after {
  content: "\10f79e";
}

.fad.fa-glass-cheers:after {
  content: "\10f79f";
}

.fad.fa-glass-citrus:after {
  content: "\10f869";
}

.fad.fa-glass-martini:after {
  content: "\10f000";
}

.fad.fa-glass-martini-alt:after {
  content: "\10f57b";
}

.fad.fa-glass-whiskey:after {
  content: "\10f7a0";
}

.fad.fa-glass-whiskey-rocks:after {
  content: "\10f7a1";
}

.fad.fa-glasses:after {
  content: "\10f530";
}

.fad.fa-glasses-alt:after {
  content: "\10f5f5";
}

.fad.fa-globe:after {
  content: "\10f0ac";
}

.fad.fa-globe-africa:after {
  content: "\10f57c";
}

.fad.fa-globe-americas:after {
  content: "\10f57d";
}

.fad.fa-globe-asia:after {
  content: "\10f57e";
}

.fad.fa-globe-europe:after {
  content: "\10f7a2";
}

.fad.fa-globe-snow:after {
  content: "\10f7a3";
}

.fad.fa-globe-stand:after {
  content: "\10f5f6";
}

.fad.fa-golf-ball:after {
  content: "\10f450";
}

.fad.fa-golf-club:after {
  content: "\10f451";
}

.fad.fa-gopuram:after {
  content: "\10f664";
}

.fad.fa-graduation-cap:after {
  content: "\10f19d";
}

.fad.fa-gramophone:after {
  content: "\10f8bd";
}

.fad.fa-greater-than:after {
  content: "\10f531";
}

.fad.fa-greater-than-equal:after {
  content: "\10f532";
}

.fad.fa-grimace:after {
  content: "\10f57f";
}

.fad.fa-grin:after {
  content: "\10f580";
}

.fad.fa-grin-alt:after {
  content: "\10f581";
}

.fad.fa-grin-beam:after {
  content: "\10f582";
}

.fad.fa-grin-beam-sweat:after {
  content: "\10f583";
}

.fad.fa-grin-hearts:after {
  content: "\10f584";
}

.fad.fa-grin-squint:after {
  content: "\10f585";
}

.fad.fa-grin-squint-tears:after {
  content: "\10f586";
}

.fad.fa-grin-stars:after {
  content: "\10f587";
}

.fad.fa-grin-tears:after {
  content: "\10f588";
}

.fad.fa-grin-tongue:after {
  content: "\10f589";
}

.fad.fa-grin-tongue-squint:after {
  content: "\10f58a";
}

.fad.fa-grin-tongue-wink:after {
  content: "\10f58b";
}

.fad.fa-grin-wink:after {
  content: "\10f58c";
}

.fad.fa-grip-horizontal:after {
  content: "\10f58d";
}

.fad.fa-grip-lines:after {
  content: "\10f7a4";
}

.fad.fa-grip-lines-vertical:after {
  content: "\10f7a5";
}

.fad.fa-grip-vertical:after {
  content: "\10f58e";
}

.fad.fa-guitar:after {
  content: "\10f7a6";
}

.fad.fa-guitar-electric:after {
  content: "\10f8be";
}

.fad.fa-guitars:after {
  content: "\10f8bf";
}

.fad.fa-h-square:after {
  content: "\10f0fd";
}

.fad.fa-h1:after {
  content: "\10f313";
}

.fad.fa-h2:after {
  content: "\10f314";
}

.fad.fa-h3:after {
  content: "\10f315";
}

.fad.fa-h4:after {
  content: "\10f86a";
}

.fad.fa-hamburger:after {
  content: "\10f805";
}

.fad.fa-hammer:after {
  content: "\10f6e3";
}

.fad.fa-hammer-war:after {
  content: "\10f6e4";
}

.fad.fa-hamsa:after {
  content: "\10f665";
}

.fad.fa-hand-heart:after {
  content: "\10f4bc";
}

.fad.fa-hand-holding:after {
  content: "\10f4bd";
}

.fad.fa-hand-holding-box:after {
  content: "\10f47b";
}

.fad.fa-hand-holding-heart:after {
  content: "\10f4be";
}

.fad.fa-hand-holding-magic:after {
  content: "\10f6e5";
}

.fad.fa-hand-holding-medical:after {
  content: "\10e05c";
}

.fad.fa-hand-holding-seedling:after {
  content: "\10f4bf";
}

.fad.fa-hand-holding-usd:after {
  content: "\10f4c0";
}

.fad.fa-hand-holding-water:after {
  content: "\10f4c1";
}

.fad.fa-hand-lizard:after {
  content: "\10f258";
}

.fad.fa-hand-middle-finger:after {
  content: "\10f806";
}

.fad.fa-hand-paper:after {
  content: "\10f256";
}

.fad.fa-hand-peace:after {
  content: "\10f25b";
}

.fad.fa-hand-point-down:after {
  content: "\10f0a7";
}

.fad.fa-hand-point-left:after {
  content: "\10f0a5";
}

.fad.fa-hand-point-right:after {
  content: "\10f0a4";
}

.fad.fa-hand-point-up:after {
  content: "\10f0a6";
}

.fad.fa-hand-pointer:after {
  content: "\10f25a";
}

.fad.fa-hand-receiving:after {
  content: "\10f47c";
}

.fad.fa-hand-rock:after {
  content: "\10f255";
}

.fad.fa-hand-scissors:after {
  content: "\10f257";
}

.fad.fa-hand-sparkles:after {
  content: "\10e05d";
}

.fad.fa-hand-spock:after {
  content: "\10f259";
}

.fad.fa-hands:after {
  content: "\10f4c2";
}

.fad.fa-hands-heart:after {
  content: "\10f4c3";
}

.fad.fa-hands-helping:after {
  content: "\10f4c4";
}

.fad.fa-hands-usd:after {
  content: "\10f4c5";
}

.fad.fa-hands-wash:after {
  content: "\10e05e";
}

.fad.fa-handshake:after {
  content: "\10f2b5";
}

.fad.fa-handshake-alt:after {
  content: "\10f4c6";
}

.fad.fa-handshake-alt-slash:after {
  content: "\10e05f";
}

.fad.fa-handshake-slash:after {
  content: "\10e060";
}

.fad.fa-hanukiah:after {
  content: "\10f6e6";
}

.fad.fa-hard-hat:after {
  content: "\10f807";
}

.fad.fa-hashtag:after {
  content: "\10f292";
}

.fad.fa-hat-chef:after {
  content: "\10f86b";
}

.fad.fa-hat-cowboy:after {
  content: "\10f8c0";
}

.fad.fa-hat-cowboy-side:after {
  content: "\10f8c1";
}

.fad.fa-hat-santa:after {
  content: "\10f7a7";
}

.fad.fa-hat-winter:after {
  content: "\10f7a8";
}

.fad.fa-hat-witch:after {
  content: "\10f6e7";
}

.fad.fa-hat-wizard:after {
  content: "\10f6e8";
}

.fad.fa-hdd:after {
  content: "\10f0a0";
}

.fad.fa-head-side:after {
  content: "\10f6e9";
}

.fad.fa-head-side-brain:after {
  content: "\10f808";
}

.fad.fa-head-side-cough:after {
  content: "\10e061";
}

.fad.fa-head-side-cough-slash:after {
  content: "\10e062";
}

.fad.fa-head-side-headphones:after {
  content: "\10f8c2";
}

.fad.fa-head-side-mask:after {
  content: "\10e063";
}

.fad.fa-head-side-medical:after {
  content: "\10f809";
}

.fad.fa-head-side-virus:after {
  content: "\10e064";
}

.fad.fa-head-vr:after {
  content: "\10f6ea";
}

.fad.fa-heading:after {
  content: "\10f1dc";
}

.fad.fa-headphones:after {
  content: "\10f025";
}

.fad.fa-headphones-alt:after {
  content: "\10f58f";
}

.fad.fa-headset:after {
  content: "\10f590";
}

.fad.fa-heart:after {
  content: "\10f004";
}

.fad.fa-heart-broken:after {
  content: "\10f7a9";
}

.fad.fa-heart-circle:after {
  content: "\10f4c7";
}

.fad.fa-heart-rate:after {
  content: "\10f5f8";
}

.fad.fa-heart-square:after {
  content: "\10f4c8";
}

.fad.fa-heartbeat:after {
  content: "\10f21e";
}

.fad.fa-heat:after {
  content: "\10e00c";
}

.fad.fa-helicopter:after {
  content: "\10f533";
}

.fad.fa-helmet-battle:after {
  content: "\10f6eb";
}

.fad.fa-hexagon:after {
  content: "\10f312";
}

.fad.fa-highlighter:after {
  content: "\10f591";
}

.fad.fa-hiking:after {
  content: "\10f6ec";
}

.fad.fa-hippo:after {
  content: "\10f6ed";
}

.fad.fa-history:after {
  content: "\10f1da";
}

.fad.fa-hockey-mask:after {
  content: "\10f6ee";
}

.fad.fa-hockey-puck:after {
  content: "\10f453";
}

.fad.fa-hockey-sticks:after {
  content: "\10f454";
}

.fad.fa-holly-berry:after {
  content: "\10f7aa";
}

.fad.fa-home:after,
.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-address a.fad:after {
  content: "\10f015";
}

.fad.fa-home-alt:after {
  content: "\10f80a";
}

.fad.fa-home-heart:after {
  content: "\10f4c9";
}

.fad.fa-home-lg:after {
  content: "\10f80b";
}

.fad.fa-home-lg-alt:after {
  content: "\10f80c";
}

.fad.fa-hood-cloak:after {
  content: "\10f6ef";
}

.fad.fa-horizontal-rule:after {
  content: "\10f86c";
}

.fad.fa-horse:after {
  content: "\10f6f0";
}

.fad.fa-horse-head:after {
  content: "\10f7ab";
}

.fad.fa-horse-saddle:after {
  content: "\10f8c3";
}

.fad.fa-hospital:after {
  content: "\10f0f8";
}

.fad.fa-hospital-alt:after {
  content: "\10f47d";
}

.fad.fa-hospital-symbol:after {
  content: "\10f47e";
}

.fad.fa-hospital-user:after {
  content: "\10f80d";
}

.fad.fa-hospitals:after {
  content: "\10f80e";
}

.fad.fa-hot-tub:after {
  content: "\10f593";
}

.fad.fa-hotdog:after {
  content: "\10f80f";
}

.fad.fa-hotel:after {
  content: "\10f594";
}

.fad.fa-hourglass:after {
  content: "\10f254";
}

.fad.fa-hourglass-end:after {
  content: "\10f253";
}

.fad.fa-hourglass-half:after {
  content: "\10f252";
}

.fad.fa-hourglass-start:after {
  content: "\10f251";
}

.fad.fa-house:after {
  content: "\10e00d";
}

.fad.fa-house-damage:after {
  content: "\10f6f1";
}

.fad.fa-house-day:after {
  content: "\10e00e";
}

.fad.fa-house-flood:after {
  content: "\10f74f";
}

.fad.fa-house-leave:after {
  content: "\10e00f";
}

.fad.fa-house-night:after {
  content: "\10e010";
}

.fad.fa-house-return:after {
  content: "\10e011";
}

.fad.fa-house-signal:after {
  content: "\10e012";
}

.fad.fa-house-user:after {
  content: "\10e065";
}

.fad.fa-hryvnia:after {
  content: "\10f6f2";
}

.fad.fa-humidity:after {
  content: "\10f750";
}

.fad.fa-hurricane:after {
  content: "\10f751";
}

.fad.fa-i-cursor:after {
  content: "\10f246";
}

.fad.fa-ice-cream:after {
  content: "\10f810";
}

.fad.fa-ice-skate:after {
  content: "\10f7ac";
}

.fad.fa-icicles:after {
  content: "\10f7ad";
}

.fad.fa-icons:after {
  content: "\10f86d";
}

.fad.fa-icons-alt:after {
  content: "\10f86e";
}

.fad.fa-id-badge:after {
  content: "\10f2c1";
}

.fad.fa-id-card:after {
  content: "\10f2c2";
}

.fad.fa-id-card-alt:after {
  content: "\10f47f";
}

.fad.fa-igloo:after {
  content: "\10f7ae";
}

.fad.fa-image:after {
  content: "\10f03e";
}

.fad.fa-image-polaroid:after {
  content: "\10f8c4";
}

.fad.fa-images:after {
  content: "\10f302";
}

.fad.fa-inbox:after {
  content: "\10f01c";
}

.fad.fa-inbox-in:after {
  content: "\10f310";
}

.fad.fa-inbox-out:after {
  content: "\10f311";
}

.fad.fa-indent:after {
  content: "\10f03c";
}

.fad.fa-industry:after {
  content: "\10f275";
}

.fad.fa-industry-alt:after {
  content: "\10f3b3";
}

.fad.fa-infinity:after {
  content: "\10f534";
}

.fad.fa-info:after {
  content: "\10f129";
}

.fad.fa-info-circle:after {
  content: "\10f05a";
}

.fad.fa-info-square:after {
  content: "\10f30f";
}

.fad.fa-inhaler:after {
  content: "\10f5f9";
}

.fad.fa-integral:after {
  content: "\10f667";
}

.fad.fa-intersection:after {
  content: "\10f668";
}

.fad.fa-inventory:after {
  content: "\10f480";
}

.fad.fa-island-tropical:after {
  content: "\10f811";
}

.fad.fa-italic:after {
  content: "\10f033";
}

.fad.fa-jack-o-lantern:after {
  content: "\10f30e";
}

.fad.fa-jedi:after {
  content: "\10f669";
}

.fad.fa-joint:after {
  content: "\10f595";
}

.fad.fa-journal-whills:after {
  content: "\10f66a";
}

.fad.fa-joystick:after {
  content: "\10f8c5";
}

.fad.fa-jug:after {
  content: "\10f8c6";
}

.fad.fa-kaaba:after {
  content: "\10f66b";
}

.fad.fa-kazoo:after {
  content: "\10f8c7";
}

.fad.fa-kerning:after {
  content: "\10f86f";
}

.fad.fa-key:after {
  content: "\10f084";
}

.fad.fa-key-skeleton:after {
  content: "\10f6f3";
}

.fad.fa-keyboard:after {
  content: "\10f11c";
}

.fad.fa-keynote:after {
  content: "\10f66c";
}

.fad.fa-khanda:after {
  content: "\10f66d";
}

.fad.fa-kidneys:after {
  content: "\10f5fb";
}

.fad.fa-kiss:after {
  content: "\10f596";
}

.fad.fa-kiss-beam:after {
  content: "\10f597";
}

.fad.fa-kiss-wink-heart:after {
  content: "\10f598";
}

.fad.fa-kite:after {
  content: "\10f6f4";
}

.fad.fa-kiwi-bird:after {
  content: "\10f535";
}

.fad.fa-knife-kitchen:after {
  content: "\10f6f5";
}

.fad.fa-lambda:after {
  content: "\10f66e";
}

.fad.fa-lamp:after {
  content: "\10f4ca";
}

.fad.fa-lamp-desk:after {
  content: "\10e014";
}

.fad.fa-lamp-floor:after {
  content: "\10e015";
}

.fad.fa-landmark:after {
  content: "\10f66f";
}

.fad.fa-landmark-alt:after {
  content: "\10f752";
}

.fad.fa-language:after {
  content: "\10f1ab";
}

.fad.fa-laptop:after {
  content: "\10f109";
}

.fad.fa-laptop-code:after {
  content: "\10f5fc";
}

.fad.fa-laptop-house:after {
  content: "\10e066";
}

.fad.fa-laptop-medical:after {
  content: "\10f812";
}

.fad.fa-lasso:after {
  content: "\10f8c8";
}

.fad.fa-laugh:after {
  content: "\10f599";
}

.fad.fa-laugh-beam:after {
  content: "\10f59a";
}

.fad.fa-laugh-squint:after {
  content: "\10f59b";
}

.fad.fa-laugh-wink:after {
  content: "\10f59c";
}

.fad.fa-layer-group:after {
  content: "\10f5fd";
}

.fad.fa-layer-minus:after {
  content: "\10f5fe";
}

.fad.fa-layer-plus:after {
  content: "\10f5ff";
}

.fad.fa-leaf:after {
  content: "\10f06c";
}

.fad.fa-leaf-heart:after {
  content: "\10f4cb";
}

.fad.fa-leaf-maple:after {
  content: "\10f6f6";
}

.fad.fa-leaf-oak:after {
  content: "\10f6f7";
}

.fad.fa-lemon:after {
  content: "\10f094";
}

.fad.fa-less-than:after {
  content: "\10f536";
}

.fad.fa-less-than-equal:after {
  content: "\10f537";
}

.fad.fa-level-down:after {
  content: "\10f149";
}

.fad.fa-level-down-alt:after {
  content: "\10f3be";
}

.fad.fa-level-up:after {
  content: "\10f148";
}

.fad.fa-level-up-alt:after {
  content: "\10f3bf";
}

.fad.fa-life-ring:after {
  content: "\10f1cd";
}

.fad.fa-light-ceiling:after {
  content: "\10e016";
}

.fad.fa-light-switch:after {
  content: "\10e017";
}

.fad.fa-light-switch-off:after {
  content: "\10e018";
}

.fad.fa-light-switch-on:after {
  content: "\10e019";
}

.fad.fa-lightbulb:after {
  content: "\10f0eb";
}

.fad.fa-lightbulb-dollar:after {
  content: "\10f670";
}

.fad.fa-lightbulb-exclamation:after {
  content: "\10f671";
}

.fad.fa-lightbulb-on:after {
  content: "\10f672";
}

.fad.fa-lightbulb-slash:after {
  content: "\10f673";
}

.fad.fa-lights-holiday:after {
  content: "\10f7b2";
}

.fad.fa-line-columns:after {
  content: "\10f870";
}

.fad.fa-line-height:after {
  content: "\10f871";
}

.fad.fa-link:after {
  content: "\10f0c1";
}

.fad.fa-lips:after {
  content: "\10f600";
}

.fad.fa-lira-sign:after {
  content: "\10f195";
}

.fad.fa-list:after {
  content: "\10f03a";
}

.fad.fa-list-alt:after {
  content: "\10f022";
}

.fad.fa-list-music:after {
  content: "\10f8c9";
}

.fad.fa-list-ol:after {
  content: "\10f0cb";
}

.fad.fa-list-ul:after {
  content: "\10f0ca";
}

.fad.fa-location:after {
  content: "\10f601";
}

.fad.fa-location-arrow:after {
  content: "\10f124";
}

.fad.fa-location-circle:after {
  content: "\10f602";
}

.fad.fa-location-slash:after {
  content: "\10f603";
}

.fad.fa-lock:after,
.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a.fad:after {
  content: "\10f023";
}

.fad.fa-lock-alt:after {
  content: "\10f30d";
}

.fad.fa-lock-open:after {
  content: "\10f3c1";
}

.fad.fa-lock-open-alt:after {
  content: "\10f3c2";
}

.fad.fa-long-arrow-alt-down:after {
  content: "\10f309";
}

.fad.fa-long-arrow-alt-left:after {
  content: "\10f30a";
}

.fad.fa-long-arrow-alt-right:after {
  content: "\10f30b";
}

.fad.fa-long-arrow-alt-up:after {
  content: "\10f30c";
}

.fad.fa-long-arrow-down:after {
  content: "\10f175";
}

.fad.fa-long-arrow-left:after {
  content: "\10f177";
}

.fad.fa-long-arrow-right:after {
  content: "\10f178";
}

.fad.fa-long-arrow-up:after {
  content: "\10f176";
}

.fad.fa-loveseat:after {
  content: "\10f4cc";
}

.fad.fa-low-vision:after {
  content: "\10f2a8";
}

.fad.fa-luchador:after {
  content: "\10f455";
}

.fad.fa-luggage-cart:after {
  content: "\10f59d";
}

.fad.fa-lungs:after {
  content: "\10f604";
}

.fad.fa-lungs-virus:after {
  content: "\10e067";
}

.fad.fa-mace:after {
  content: "\10f6f8";
}

.fad.fa-magic:after {
  content: "\10f0d0";
}

.fad.fa-magnet:after {
  content: "\10f076";
}

.fad.fa-mail-bulk:after {
  content: "\10f674";
}

.fad.fa-mailbox:after {
  content: "\10f813";
}

.fad.fa-male:after {
  content: "\10f183";
}

.fad.fa-mandolin:after {
  content: "\10f6f9";
}

.fad.fa-map:after {
  content: "\10f279";
}

.fad.fa-map-marked:after {
  content: "\10f59f";
}

.fad.fa-map-marked-alt:after {
  content: "\10f5a0";
}

.fad.fa-map-marker:after {
  content: "\10f041";
}

.fad.fa-map-marker-alt:after {
  content: "\10f3c5";
}

.fad.fa-map-marker-alt-slash:after {
  content: "\10f605";
}

.fad.fa-map-marker-check:after {
  content: "\10f606";
}

.fad.fa-map-marker-edit:after {
  content: "\10f607";
}

.fad.fa-map-marker-exclamation:after {
  content: "\10f608";
}

.fad.fa-map-marker-minus:after {
  content: "\10f609";
}

.fad.fa-map-marker-plus:after {
  content: "\10f60a";
}

.fad.fa-map-marker-question:after {
  content: "\10f60b";
}

.fad.fa-map-marker-slash:after {
  content: "\10f60c";
}

.fad.fa-map-marker-smile:after {
  content: "\10f60d";
}

.fad.fa-map-marker-times:after {
  content: "\10f60e";
}

.fad.fa-map-pin:after {
  content: "\10f276";
}

.fad.fa-map-signs:after {
  content: "\10f277";
}

.fad.fa-marker:after {
  content: "\10f5a1";
}

.fad.fa-mars:after {
  content: "\10f222";
}

.fad.fa-mars-double:after {
  content: "\10f227";
}

.fad.fa-mars-stroke:after {
  content: "\10f229";
}

.fad.fa-mars-stroke-h:after {
  content: "\10f22b";
}

.fad.fa-mars-stroke-v:after {
  content: "\10f22a";
}

.fad.fa-mask:after {
  content: "\10f6fa";
}

.fad.fa-meat:after {
  content: "\10f814";
}

.fad.fa-medal:after {
  content: "\10f5a2";
}

.fad.fa-medkit:after {
  content: "\10f0fa";
}

.fad.fa-megaphone:after {
  content: "\10f675";
}

.fad.fa-meh:after {
  content: "\10f11a";
}

.fad.fa-meh-blank:after {
  content: "\10f5a4";
}

.fad.fa-meh-rolling-eyes:after {
  content: "\10f5a5";
}

.fad.fa-memory:after {
  content: "\10f538";
}

.fad.fa-menorah:after {
  content: "\10f676";
}

.fad.fa-mercury:after {
  content: "\10f223";
}

.fad.fa-meteor:after {
  content: "\10f753";
}

.fad.fa-microchip:after {
  content: "\10f2db";
}

.fad.fa-microphone:after {
  content: "\10f130";
}

.fad.fa-microphone-alt:after {
  content: "\10f3c9";
}

.fad.fa-microphone-alt-slash:after {
  content: "\10f539";
}

.fad.fa-microphone-slash:after {
  content: "\10f131";
}

.fad.fa-microphone-stand:after {
  content: "\10f8cb";
}

.fad.fa-microscope:after {
  content: "\10f610";
}

.fad.fa-microwave:after {
  content: "\10e01b";
}

.fad.fa-mind-share:after {
  content: "\10f677";
}

.fad.fa-minus:after {
  content: "\10f068";
}

.fad.fa-minus-circle:after {
  content: "\10f056";
}

.fad.fa-minus-hexagon:after {
  content: "\10f307";
}

.fad.fa-minus-octagon:after {
  content: "\10f308";
}

.fad.fa-minus-square:after {
  content: "\10f146";
}

.fad.fa-mistletoe:after {
  content: "\10f7b4";
}

.fad.fa-mitten:after {
  content: "\10f7b5";
}

.fad.fa-mobile:after {
  content: "\10f10b";
}

.fad.fa-mobile-alt:after {
  content: "\10f3cd";
}

.fad.fa-mobile-android:after {
  content: "\10f3ce";
}

.fad.fa-mobile-android-alt:after {
  content: "\10f3cf";
}

.fad.fa-money-bill:after {
  content: "\10f0d6";
}

.fad.fa-money-bill-alt:after {
  content: "\10f3d1";
}

.fad.fa-money-bill-wave:after {
  content: "\10f53a";
}

.fad.fa-money-bill-wave-alt:after {
  content: "\10f53b";
}

.fad.fa-money-check:after {
  content: "\10f53c";
}

.fad.fa-money-check-alt:after {
  content: "\10f53d";
}

.fad.fa-money-check-edit:after {
  content: "\10f872";
}

.fad.fa-money-check-edit-alt:after {
  content: "\10f873";
}

.fad.fa-monitor-heart-rate:after {
  content: "\10f611";
}

.fad.fa-monkey:after {
  content: "\10f6fb";
}

.fad.fa-monument:after {
  content: "\10f5a6";
}

.fad.fa-moon:after {
  content: "\10f186";
}

.fad.fa-moon-cloud:after {
  content: "\10f754";
}

.fad.fa-moon-stars:after {
  content: "\10f755";
}

.fad.fa-mortar-pestle:after {
  content: "\10f5a7";
}

.fad.fa-mosque:after {
  content: "\10f678";
}

.fad.fa-motorcycle:after {
  content: "\10f21c";
}

.fad.fa-mountain:after {
  content: "\10f6fc";
}

.fad.fa-mountains:after {
  content: "\10f6fd";
}

.fad.fa-mouse:after {
  content: "\10f8cc";
}

.fad.fa-mouse-alt:after {
  content: "\10f8cd";
}

.fad.fa-mouse-pointer:after {
  content: "\10f245";
}

.fad.fa-mp3-player:after {
  content: "\10f8ce";
}

.fad.fa-mug:after {
  content: "\10f874";
}

.fad.fa-mug-hot:after {
  content: "\10f7b6";
}

.fad.fa-mug-marshmallows:after {
  content: "\10f7b7";
}

.fad.fa-mug-tea:after {
  content: "\10f875";
}

.fad.fa-music:after {
  content: "\10f001";
}

.fad.fa-music-alt:after {
  content: "\10f8cf";
}

.fad.fa-music-alt-slash:after {
  content: "\10f8d0";
}

.fad.fa-music-slash:after {
  content: "\10f8d1";
}

.fad.fa-narwhal:after {
  content: "\10f6fe";
}

.fad.fa-network-wired:after {
  content: "\10f6ff";
}

.fad.fa-neuter:after {
  content: "\10f22c";
}

.fad.fa-newspaper:after {
  content: "\10f1ea";
}

.fad.fa-not-equal:after {
  content: "\10f53e";
}

.fad.fa-notes-medical:after {
  content: "\10f481";
}

.fad.fa-object-group:after {
  content: "\10f247";
}

.fad.fa-object-ungroup:after {
  content: "\10f248";
}

.fad.fa-octagon:after {
  content: "\10f306";
}

.fad.fa-oil-can:after {
  content: "\10f613";
}

.fad.fa-oil-temp:after {
  content: "\10f614";
}

.fad.fa-om:after {
  content: "\10f679";
}

.fad.fa-omega:after {
  content: "\10f67a";
}

.fad.fa-ornament:after {
  content: "\10f7b8";
}

.fad.fa-otter:after {
  content: "\10f700";
}

.fad.fa-outdent:after {
  content: "\10f03b";
}

.fad.fa-outlet:after {
  content: "\10e01c";
}

.fad.fa-oven:after {
  content: "\10e01d";
}

.fad.fa-overline:after {
  content: "\10f876";
}

.fad.fa-page-break:after {
  content: "\10f877";
}

.fad.fa-pager:after {
  content: "\10f815";
}

.fad.fa-paint-brush:after {
  content: "\10f1fc";
}

.fad.fa-paint-brush-alt:after {
  content: "\10f5a9";
}

.fad.fa-paint-roller:after {
  content: "\10f5aa";
}

.fad.fa-palette:after {
  content: "\10f53f";
}

.fad.fa-pallet:after {
  content: "\10f482";
}

.fad.fa-pallet-alt:after {
  content: "\10f483";
}

.fad.fa-paper-plane:after {
  content: "\10f1d8";
}

.fad.fa-paperclip:after {
  content: "\10f0c6";
}

.fad.fa-parachute-box:after {
  content: "\10f4cd";
}

.fad.fa-paragraph:after {
  content: "\10f1dd";
}

.fad.fa-paragraph-rtl:after {
  content: "\10f878";
}

.fad.fa-parking:after {
  content: "\10f540";
}

.fad.fa-parking-circle:after {
  content: "\10f615";
}

.fad.fa-parking-circle-slash:after {
  content: "\10f616";
}

.fad.fa-parking-slash:after {
  content: "\10f617";
}

.fad.fa-passport:after {
  content: "\10f5ab";
}

.fad.fa-pastafarianism:after {
  content: "\10f67b";
}

.fad.fa-paste:after {
  content: "\10f0ea";
}

.fad.fa-pause:after {
  content: "\10f04c";
}

.fad.fa-pause-circle:after {
  content: "\10f28b";
}

.fad.fa-paw:after {
  content: "\10f1b0";
}

.fad.fa-paw-alt:after {
  content: "\10f701";
}

.fad.fa-paw-claws:after {
  content: "\10f702";
}

.fad.fa-peace:after {
  content: "\10f67c";
}

.fad.fa-pegasus:after {
  content: "\10f703";
}

.fad.fa-pen:after {
  content: "\10f304";
}

.fad.fa-pen-alt:after {
  content: "\10f305";
}

.fad.fa-pen-fancy:after {
  content: "\10f5ac";
}

.fad.fa-pen-nib:after {
  content: "\10f5ad";
}

.fad.fa-pen-square:after {
  content: "\10f14b";
}

.fad.fa-pencil:after {
  content: "\10f040";
}

.fad.fa-pencil-alt:after {
  content: "\10f303";
}

.fad.fa-pencil-paintbrush:after {
  content: "\10f618";
}

.fad.fa-pencil-ruler:after {
  content: "\10f5ae";
}

.fad.fa-pennant:after {
  content: "\10f456";
}

.fad.fa-people-arrows:after {
  content: "\10e068";
}

.fad.fa-people-carry:after {
  content: "\10f4ce";
}

.fad.fa-pepper-hot:after {
  content: "\10f816";
}

.fad.fa-percent:after {
  content: "\10f295";
}

.fad.fa-percentage:after {
  content: "\10f541";
}

.fad.fa-person-booth:after {
  content: "\10f756";
}

.fad.fa-person-carry:after {
  content: "\10f4cf";
}

.fad.fa-person-dolly:after {
  content: "\10f4d0";
}

.fad.fa-person-dolly-empty:after {
  content: "\10f4d1";
}

.fad.fa-person-sign:after {
  content: "\10f757";
}

.fad.fa-phone:after {
  content: "\10f095";
}

.fad.fa-phone-alt:after {
  content: "\10f879";
}

.fad.fa-phone-laptop:after {
  content: "\10f87a";
}

.fad.fa-phone-office:after {
  content: "\10f67d";
}

.fad.fa-phone-plus:after {
  content: "\10f4d2";
}

.fad.fa-phone-rotary:after {
  content: "\10f8d3";
}

.fad.fa-phone-slash:after {
  content: "\10f3dd";
}

.fad.fa-phone-square:after {
  content: "\10f098";
}

.fad.fa-phone-square-alt:after {
  content: "\10f87b";
}

.fad.fa-phone-volume:after {
  content: "\10f2a0";
}

.fad.fa-photo-video:after {
  content: "\10f87c";
}

.fad.fa-pi:after {
  content: "\10f67e";
}

.fad.fa-piano:after {
  content: "\10f8d4";
}

.fad.fa-piano-keyboard:after {
  content: "\10f8d5";
}

.fad.fa-pie:after {
  content: "\10f705";
}

.fad.fa-pig:after {
  content: "\10f706";
}

.fad.fa-piggy-bank:after {
  content: "\10f4d3";
}

.fad.fa-pills:after {
  content: "\10f484";
}

.fad.fa-pizza:after {
  content: "\10f817";
}

.fad.fa-pizza-slice:after {
  content: "\10f818";
}

.fad.fa-place-of-worship:after {
  content: "\10f67f";
}

.fad.fa-plane:after {
  content: "\10f072";
}

.fad.fa-plane-alt:after {
  content: "\10f3de";
}

.fad.fa-plane-arrival:after {
  content: "\10f5af";
}

.fad.fa-plane-departure:after {
  content: "\10f5b0";
}

.fad.fa-plane-slash:after {
  content: "\10e069";
}

.fad.fa-planet-moon:after {
  content: "\10e01f";
}

.fad.fa-planet-ringed:after {
  content: "\10e020";
}

.fad.fa-play:after {
  content: "\10f04b";
}

.fad.fa-play-circle:after {
  content: "\10f144";
}

.fad.fa-plug:after {
  content: "\10f1e6";
}

.fad.fa-plus:after {
  content: "\10f067";
}

.fad.fa-plus-circle:after {
  content: "\10f055";
}

.fad.fa-plus-hexagon:after {
  content: "\10f300";
}

.fad.fa-plus-octagon:after {
  content: "\10f301";
}

.fad.fa-plus-square:after {
  content: "\10f0fe";
}

.fad.fa-podcast:after {
  content: "\10f2ce";
}

.fad.fa-podium:after {
  content: "\10f680";
}

.fad.fa-podium-star:after {
  content: "\10f758";
}

.fad.fa-police-box:after {
  content: "\10e021";
}

.fad.fa-poll:after {
  content: "\10f681";
}

.fad.fa-poll-h:after {
  content: "\10f682";
}

.fad.fa-poll-people:after {
  content: "\10f759";
}

.fad.fa-poo:after {
  content: "\10f2fe";
}

.fad.fa-poo-storm:after {
  content: "\10f75a";
}

.fad.fa-poop:after {
  content: "\10f619";
}

.fad.fa-popcorn:after {
  content: "\10f819";
}

.fad.fa-portal-enter:after {
  content: "\10e022";
}

.fad.fa-portal-exit:after {
  content: "\10e023";
}

.fad.fa-portrait:after {
  content: "\10f3e0";
}

.fad.fa-pound-sign:after {
  content: "\10f154";
}

.fad.fa-power-off:after {
  content: "\10f011";
}

.fad.fa-pray:after {
  content: "\10f683";
}

.fad.fa-praying-hands:after {
  content: "\10f684";
}

.fad.fa-prescription:after {
  content: "\10f5b1";
}

.fad.fa-prescription-bottle:after {
  content: "\10f485";
}

.fad.fa-prescription-bottle-alt:after {
  content: "\10f486";
}

.fad.fa-presentation:after {
  content: "\10f685";
}

.fad.fa-print:after {
  content: "\10f02f";
}

.fad.fa-print-search:after {
  content: "\10f81a";
}

.fad.fa-print-slash:after {
  content: "\10f686";
}

.fad.fa-procedures:after {
  content: "\10f487";
}

.fad.fa-project-diagram:after {
  content: "\10f542";
}

.fad.fa-projector:after {
  content: "\10f8d6";
}

.fad.fa-pump-medical:after {
  content: "\10e06a";
}

.fad.fa-pump-soap:after {
  content: "\10e06b";
}

.fad.fa-pumpkin:after {
  content: "\10f707";
}

.fad.fa-puzzle-piece:after {
  content: "\10f12e";
}

.fad.fa-qrcode:after {
  content: "\10f029";
}

.fad.fa-question:after {
  content: "\10f128";
}

.fad.fa-question-circle:after {
  content: "\10f059";
}

.fad.fa-question-square:after {
  content: "\10f2fd";
}

.fad.fa-quidditch:after {
  content: "\10f458";
}

.fad.fa-quote-left:after {
  content: "\10f10d";
}

.fad.fa-quote-right:after {
  content: "\10f10e";
}

.fad.fa-quran:after {
  content: "\10f687";
}

.fad.fa-rabbit:after {
  content: "\10f708";
}

.fad.fa-rabbit-fast:after {
  content: "\10f709";
}

.fad.fa-racquet:after {
  content: "\10f45a";
}

.fad.fa-radar:after {
  content: "\10e024";
}

.fad.fa-radiation:after {
  content: "\10f7b9";
}

.fad.fa-radiation-alt:after {
  content: "\10f7ba";
}

.fad.fa-radio:after {
  content: "\10f8d7";
}

.fad.fa-radio-alt:after {
  content: "\10f8d8";
}

.fad.fa-rainbow:after {
  content: "\10f75b";
}

.fad.fa-raindrops:after {
  content: "\10f75c";
}

.fad.fa-ram:after {
  content: "\10f70a";
}

.fad.fa-ramp-loading:after {
  content: "\10f4d4";
}

.fad.fa-random:after {
  content: "\10f074";
}

.fad.fa-raygun:after {
  content: "\10e025";
}

.fad.fa-receipt:after {
  content: "\10f543";
}

.fad.fa-record-vinyl:after {
  content: "\10f8d9";
}

.fad.fa-rectangle-landscape:after {
  content: "\10f2fa";
}

.fad.fa-rectangle-portrait:after {
  content: "\10f2fb";
}

.fad.fa-rectangle-wide:after {
  content: "\10f2fc";
}

.fad.fa-recycle:after {
  content: "\10f1b8";
}

.fad.fa-redo:after {
  content: "\10f01e";
}

.fad.fa-redo-alt:after {
  content: "\10f2f9";
}

.fad.fa-refrigerator:after {
  content: "\10e026";
}

.fad.fa-registered:after {
  content: "\10f25d";
}

.fad.fa-remove-format:after {
  content: "\10f87d";
}

.fad.fa-repeat:after {
  content: "\10f363";
}

.fad.fa-repeat-1:after {
  content: "\10f365";
}

.fad.fa-repeat-1-alt:after {
  content: "\10f366";
}

.fad.fa-repeat-alt:after {
  content: "\10f364";
}

.fad.fa-reply:after {
  content: "\10f3e5";
}

.fad.fa-reply-all:after {
  content: "\10f122";
}

.fad.fa-republican:after {
  content: "\10f75e";
}

.fad.fa-restroom:after {
  content: "\10f7bd";
}

.fad.fa-retweet:after {
  content: "\10f079";
}

.fad.fa-retweet-alt:after {
  content: "\10f361";
}

.fad.fa-ribbon:after {
  content: "\10f4d6";
}

.fad.fa-ring:after {
  content: "\10f70b";
}

.fad.fa-rings-wedding:after {
  content: "\10f81b";
}

.fad.fa-road:after {
  content: "\10f018";
}

.fad.fa-robot:after {
  content: "\10f544";
}

.fad.fa-rocket:after {
  content: "\10f135";
}

.fad.fa-rocket-launch:after {
  content: "\10e027";
}

.fad.fa-route:after {
  content: "\10f4d7";
}

.fad.fa-route-highway:after {
  content: "\10f61a";
}

.fad.fa-route-interstate:after {
  content: "\10f61b";
}

.fad.fa-router:after {
  content: "\10f8da";
}

.fad.fa-rss:after {
  content: "\10f09e";
}

.fad.fa-rss-square:after {
  content: "\10f143";
}

.fad.fa-ruble-sign:after {
  content: "\10f158";
}

.fad.fa-ruler:after {
  content: "\10f545";
}

.fad.fa-ruler-combined:after {
  content: "\10f546";
}

.fad.fa-ruler-horizontal:after {
  content: "\10f547";
}

.fad.fa-ruler-triangle:after {
  content: "\10f61c";
}

.fad.fa-ruler-vertical:after {
  content: "\10f548";
}

.fad.fa-running:after {
  content: "\10f70c";
}

.fad.fa-rupee-sign:after {
  content: "\10f156";
}

.fad.fa-rv:after {
  content: "\10f7be";
}

.fad.fa-sack:after {
  content: "\10f81c";
}

.fad.fa-sack-dollar:after {
  content: "\10f81d";
}

.fad.fa-sad-cry:after {
  content: "\10f5b3";
}

.fad.fa-sad-tear:after {
  content: "\10f5b4";
}

.fad.fa-salad:after {
  content: "\10f81e";
}

.fad.fa-sandwich:after {
  content: "\10f81f";
}

.fad.fa-satellite:after {
  content: "\10f7bf";
}

.fad.fa-satellite-dish:after {
  content: "\10f7c0";
}

.fad.fa-sausage:after {
  content: "\10f820";
}

.fad.fa-save:after {
  content: "\10f0c7";
}

.fad.fa-sax-hot:after {
  content: "\10f8db";
}

.fad.fa-saxophone:after {
  content: "\10f8dc";
}

.fad.fa-scalpel:after {
  content: "\10f61d";
}

.fad.fa-scalpel-path:after {
  content: "\10f61e";
}

.fad.fa-scanner:after {
  content: "\10f488";
}

.fad.fa-scanner-image:after {
  content: "\10f8f3";
}

.fad.fa-scanner-keyboard:after {
  content: "\10f489";
}

.fad.fa-scanner-touchscreen:after {
  content: "\10f48a";
}

.fad.fa-scarecrow:after {
  content: "\10f70d";
}

.fad.fa-scarf:after {
  content: "\10f7c1";
}

.fad.fa-school:after {
  content: "\10f549";
}

.fad.fa-screwdriver:after {
  content: "\10f54a";
}

.fad.fa-scroll:after {
  content: "\10f70e";
}

.fad.fa-scroll-old:after {
  content: "\10f70f";
}

.fad.fa-scrubber:after {
  content: "\10f2f8";
}

.fad.fa-scythe:after {
  content: "\10f710";
}

.fad.fa-sd-card:after {
  content: "\10f7c2";
}

.fad.fa-search:after {
  content: "\10f002";
}

.fad.fa-search-dollar:after {
  content: "\10f688";
}

.fad.fa-search-location:after {
  content: "\10f689";
}

.fad.fa-search-minus:after {
  content: "\10f010";
}

.fad.fa-search-plus:after {
  content: "\10f00e";
}

.fad.fa-seedling:after {
  content: "\10f4d8";
}

.fad.fa-send-back:after {
  content: "\10f87e";
}

.fad.fa-send-backward:after {
  content: "\10f87f";
}

.fad.fa-sensor:after {
  content: "\10e028";
}

.fad.fa-sensor-alert:after {
  content: "\10e029";
}

.fad.fa-sensor-fire:after {
  content: "\10e02a";
}

.fad.fa-sensor-on:after {
  content: "\10e02b";
}

.fad.fa-sensor-smoke:after {
  content: "\10e02c";
}

.fad.fa-server:after {
  content: "\10f233";
}

.fad.fa-shapes:after {
  content: "\10f61f";
}

.fad.fa-share:after {
  content: "\10f064";
}

.fad.fa-share-all:after {
  content: "\10f367";
}

.fad.fa-share-alt:after {
  content: "\10f1e0";
}

.fad.fa-share-alt-square:after {
  content: "\10f1e1";
}

.fad.fa-share-square:after {
  content: "\10f14d";
}

.fad.fa-sheep:after {
  content: "\10f711";
}

.fad.fa-shekel-sign:after {
  content: "\10f20b";
}

.fad.fa-shield:after {
  content: "\10f132";
}

.fad.fa-shield-alt:after {
  content: "\10f3ed";
}

.fad.fa-shield-check:after {
  content: "\10f2f7";
}

.fad.fa-shield-cross:after {
  content: "\10f712";
}

.fad.fa-shield-virus:after {
  content: "\10e06c";
}

.fad.fa-ship:after {
  content: "\10f21a";
}

.fad.fa-shipping-fast:after {
  content: "\10f48b";
}

.fad.fa-shipping-timed:after {
  content: "\10f48c";
}

.fad.fa-shish-kebab:after {
  content: "\10f821";
}

.fad.fa-shoe-prints:after {
  content: "\10f54b";
}

.fad.fa-shopping-bag:after,
.woocommerce-account .woocommerce-MyAccount-navigation-link--orders a.fad:after {
  content: "\10f290";
}

.fad.fa-shopping-basket:after {
  content: "\10f291";
}

.fad.fa-shopping-cart:after {
  content: "\10f07a";
}

.fad.fa-shovel:after {
  content: "\10f713";
}

.fad.fa-shovel-snow:after {
  content: "\10f7c3";
}

.fad.fa-shower:after {
  content: "\10f2cc";
}

.fad.fa-shredder:after {
  content: "\10f68a";
}

.fad.fa-shuttle-van:after {
  content: "\10f5b6";
}

.fad.fa-shuttlecock:after {
  content: "\10f45b";
}

.fad.fa-sickle:after {
  content: "\10f822";
}

.fad.fa-sigma:after {
  content: "\10f68b";
}

.fad.fa-sign:after {
  content: "\10f4d9";
}

.fad.fa-sign-in:after {
  content: "\10f090";
}

.fad.fa-sign-in-alt:after {
  content: "\10f2f6";
}

.fad.fa-sign-language:after {
  content: "\10f2a7";
}

.fad.fa-sign-out:after {
  content: "\10f08b";
}

.fad.fa-sign-out-alt:after {
  content: "\10f2f5";
}

.fad.fa-signal:after {
  content: "\10f012";
}

.fad.fa-signal-1:after {
  content: "\10f68c";
}

.fad.fa-signal-2:after {
  content: "\10f68d";
}

.fad.fa-signal-3:after {
  content: "\10f68e";
}

.fad.fa-signal-4:after {
  content: "\10f68f";
}

.fad.fa-signal-alt:after {
  content: "\10f690";
}

.fad.fa-signal-alt-1:after {
  content: "\10f691";
}

.fad.fa-signal-alt-2:after {
  content: "\10f692";
}

.fad.fa-signal-alt-3:after {
  content: "\10f693";
}

.fad.fa-signal-alt-slash:after {
  content: "\10f694";
}

.fad.fa-signal-slash:after {
  content: "\10f695";
}

.fad.fa-signal-stream:after {
  content: "\10f8dd";
}

.fad.fa-signature:after {
  content: "\10f5b7";
}

.fad.fa-sim-card:after {
  content: "\10f7c4";
}

.fad.fa-sink:after {
  content: "\10e06d";
}

.fad.fa-siren:after {
  content: "\10e02d";
}

.fad.fa-siren-on:after {
  content: "\10e02e";
}

.fad.fa-sitemap:after {
  content: "\10f0e8";
}

.fad.fa-skating:after {
  content: "\10f7c5";
}

.fad.fa-skeleton:after {
  content: "\10f620";
}

.fad.fa-ski-jump:after {
  content: "\10f7c7";
}

.fad.fa-ski-lift:after {
  content: "\10f7c8";
}

.fad.fa-skiing:after {
  content: "\10f7c9";
}

.fad.fa-skiing-nordic:after {
  content: "\10f7ca";
}

.fad.fa-skull:after {
  content: "\10f54c";
}

.fad.fa-skull-cow:after {
  content: "\10f8de";
}

.fad.fa-skull-crossbones:after {
  content: "\10f714";
}

.fad.fa-slash:after {
  content: "\10f715";
}

.fad.fa-sledding:after {
  content: "\10f7cb";
}

.fad.fa-sleigh:after {
  content: "\10f7cc";
}

.fad.fa-sliders-h:after {
  content: "\10f1de";
}

.fad.fa-sliders-h-square:after {
  content: "\10f3f0";
}

.fad.fa-sliders-v:after {
  content: "\10f3f1";
}

.fad.fa-sliders-v-square:after {
  content: "\10f3f2";
}

.fad.fa-smile:after {
  content: "\10f118";
}

.fad.fa-smile-beam:after {
  content: "\10f5b8";
}

.fad.fa-smile-plus:after {
  content: "\10f5b9";
}

.fad.fa-smile-wink:after {
  content: "\10f4da";
}

.fad.fa-smog:after {
  content: "\10f75f";
}

.fad.fa-smoke:after {
  content: "\10f760";
}

.fad.fa-smoking:after {
  content: "\10f48d";
}

.fad.fa-smoking-ban:after {
  content: "\10f54d";
}

.fad.fa-sms:after {
  content: "\10f7cd";
}

.fad.fa-snake:after {
  content: "\10f716";
}

.fad.fa-snooze:after {
  content: "\10f880";
}

.fad.fa-snow-blowing:after {
  content: "\10f761";
}

.fad.fa-snowboarding:after {
  content: "\10f7ce";
}

.fad.fa-snowflake:after {
  content: "\10f2dc";
}

.fad.fa-snowflakes:after {
  content: "\10f7cf";
}

.fad.fa-snowman:after {
  content: "\10f7d0";
}

.fad.fa-snowmobile:after {
  content: "\10f7d1";
}

.fad.fa-snowplow:after {
  content: "\10f7d2";
}

.fad.fa-soap:after {
  content: "\10e06e";
}

.fad.fa-socks:after {
  content: "\10f696";
}

.fad.fa-solar-panel:after {
  content: "\10f5ba";
}

.fad.fa-solar-system:after {
  content: "\10e02f";
}

.fad.fa-sort:after {
  content: "\10f0dc";
}

.fad.fa-sort-alpha-down:after {
  content: "\10f15d";
}

.fad.fa-sort-alpha-down-alt:after {
  content: "\10f881";
}

.fad.fa-sort-alpha-up:after {
  content: "\10f15e";
}

.fad.fa-sort-alpha-up-alt:after {
  content: "\10f882";
}

.fad.fa-sort-alt:after {
  content: "\10f883";
}

.fad.fa-sort-amount-down:after {
  content: "\10f160";
}

.fad.fa-sort-amount-down-alt:after {
  content: "\10f884";
}

.fad.fa-sort-amount-up:after {
  content: "\10f161";
}

.fad.fa-sort-amount-up-alt:after {
  content: "\10f885";
}

.fad.fa-sort-circle:after {
  content: "\10e030";
}

.fad.fa-sort-circle-down:after {
  content: "\10e031";
}

.fad.fa-sort-circle-up:after {
  content: "\10e032";
}

.fad.fa-sort-down:after {
  content: "\10f0dd";
}

.fad.fa-sort-numeric-down:after {
  content: "\10f162";
}

.fad.fa-sort-numeric-down-alt:after {
  content: "\10f886";
}

.fad.fa-sort-numeric-up:after {
  content: "\10f163";
}

.fad.fa-sort-numeric-up-alt:after {
  content: "\10f887";
}

.fad.fa-sort-shapes-down:after {
  content: "\10f888";
}

.fad.fa-sort-shapes-down-alt:after {
  content: "\10f889";
}

.fad.fa-sort-shapes-up:after {
  content: "\10f88a";
}

.fad.fa-sort-shapes-up-alt:after {
  content: "\10f88b";
}

.fad.fa-sort-size-down:after {
  content: "\10f88c";
}

.fad.fa-sort-size-down-alt:after {
  content: "\10f88d";
}

.fad.fa-sort-size-up:after {
  content: "\10f88e";
}

.fad.fa-sort-size-up-alt:after {
  content: "\10f88f";
}

.fad.fa-sort-up:after {
  content: "\10f0de";
}

.fad.fa-soup:after {
  content: "\10f823";
}

.fad.fa-spa:after {
  content: "\10f5bb";
}

.fad.fa-space-shuttle:after {
  content: "\10f197";
}

.fad.fa-space-station-moon:after {
  content: "\10e033";
}

.fad.fa-space-station-moon-alt:after {
  content: "\10e034";
}

.fad.fa-spade:after {
  content: "\10f2f4";
}

.fad.fa-sparkles:after {
  content: "\10f890";
}

.fad.fa-speaker:after {
  content: "\10f8df";
}

.fad.fa-speakers:after {
  content: "\10f8e0";
}

.fad.fa-spell-check:after {
  content: "\10f891";
}

.fad.fa-spider:after {
  content: "\10f717";
}

.fad.fa-spider-black-widow:after {
  content: "\10f718";
}

.fad.fa-spider-web:after {
  content: "\10f719";
}

.fad.fa-spinner:after {
  content: "\10f110";
}

.fad.fa-spinner-third:after {
  content: "\10f3f4";
}

.fad.fa-splotch:after {
  content: "\10f5bc";
}

.fad.fa-spray-can:after {
  content: "\10f5bd";
}

.fad.fa-sprinkler:after {
  content: "\10e035";
}

.fad.fa-square:after {
  content: "\10f0c8";
}

.fad.fa-square-full:after {
  content: "\10f45c";
}

.fad.fa-square-root:after {
  content: "\10f697";
}

.fad.fa-square-root-alt:after {
  content: "\10f698";
}

.fad.fa-squirrel:after {
  content: "\10f71a";
}

.fad.fa-staff:after {
  content: "\10f71b";
}

.fad.fa-stamp:after {
  content: "\10f5bf";
}

.fad.fa-star:after {
  content: "\10f005";
}

.fad.fa-star-and-crescent:after {
  content: "\10f699";
}

.fad.fa-star-christmas:after {
  content: "\10f7d4";
}

.fad.fa-star-exclamation:after {
  content: "\10f2f3";
}

.fad.fa-star-half:after {
  content: "\10f089";
}

.fad.fa-star-half-alt:after {
  content: "\10f5c0";
}

.fad.fa-star-of-david:after {
  content: "\10f69a";
}

.fad.fa-star-of-life:after {
  content: "\10f621";
}

.fad.fa-star-shooting:after {
  content: "\10e036";
}

.fad.fa-starfighter:after {
  content: "\10e037";
}

.fad.fa-starfighter-alt:after {
  content: "\10e038";
}

.fad.fa-stars:after {
  content: "\10f762";
}

.fad.fa-starship:after {
  content: "\10e039";
}

.fad.fa-starship-freighter:after {
  content: "\10e03a";
}

.fad.fa-steak:after {
  content: "\10f824";
}

.fad.fa-steering-wheel:after {
  content: "\10f622";
}

.fad.fa-step-backward:after {
  content: "\10f048";
}

.fad.fa-step-forward:after {
  content: "\10f051";
}

.fad.fa-stethoscope:after {
  content: "\10f0f1";
}

.fad.fa-sticky-note:after {
  content: "\10f249";
}

.fad.fa-stocking:after {
  content: "\10f7d5";
}

.fad.fa-stomach:after {
  content: "\10f623";
}

.fad.fa-stop:after {
  content: "\10f04d";
}

.fad.fa-stop-circle:after {
  content: "\10f28d";
}

.fad.fa-stopwatch:after {
  content: "\10f2f2";
}

.fad.fa-stopwatch-20:after {
  content: "\10e06f";
}

.fad.fa-store:after {
  content: "\10f54e";
}

.fad.fa-store-alt:after {
  content: "\10f54f";
}

.fad.fa-store-alt-slash:after {
  content: "\10e070";
}

.fad.fa-store-slash:after {
  content: "\10e071";
}

.fad.fa-stream:after {
  content: "\10f550";
}

.fad.fa-street-view:after {
  content: "\10f21d";
}

.fad.fa-stretcher:after {
  content: "\10f825";
}

.fad.fa-strikethrough:after {
  content: "\10f0cc";
}

.fad.fa-stroopwafel:after {
  content: "\10f551";
}

.fad.fa-subscript:after {
  content: "\10f12c";
}

.fad.fa-subway:after {
  content: "\10f239";
}

.fad.fa-suitcase:after {
  content: "\10f0f2";
}

.fad.fa-suitcase-rolling:after {
  content: "\10f5c1";
}

.fad.fa-sun:after {
  content: "\10f185";
}

.fad.fa-sun-cloud:after {
  content: "\10f763";
}

.fad.fa-sun-dust:after {
  content: "\10f764";
}

.fad.fa-sun-haze:after {
  content: "\10f765";
}

.fad.fa-sunglasses:after {
  content: "\10f892";
}

.fad.fa-sunrise:after {
  content: "\10f766";
}

.fad.fa-sunset:after {
  content: "\10f767";
}

.fad.fa-superscript:after {
  content: "\10f12b";
}

.fad.fa-surprise:after {
  content: "\10f5c2";
}

.fad.fa-swatchbook:after {
  content: "\10f5c3";
}

.fad.fa-swimmer:after {
  content: "\10f5c4";
}

.fad.fa-swimming-pool:after {
  content: "\10f5c5";
}

.fad.fa-sword:after {
  content: "\10f71c";
}

.fad.fa-sword-laser:after {
  content: "\10e03b";
}

.fad.fa-sword-laser-alt:after {
  content: "\10e03c";
}

.fad.fa-swords:after {
  content: "\10f71d";
}

.fad.fa-swords-laser:after {
  content: "\10e03d";
}

.fad.fa-synagogue:after {
  content: "\10f69b";
}

.fad.fa-sync:after {
  content: "\10f021";
}

.fad.fa-sync-alt:after {
  content: "\10f2f1";
}

.fad.fa-syringe:after {
  content: "\10f48e";
}

.fad.fa-table:after {
  content: "\10f0ce";
}

.fad.fa-table-tennis:after {
  content: "\10f45d";
}

.fad.fa-tablet:after {
  content: "\10f10a";
}

.fad.fa-tablet-alt:after {
  content: "\10f3fa";
}

.fad.fa-tablet-android:after {
  content: "\10f3fb";
}

.fad.fa-tablet-android-alt:after {
  content: "\10f3fc";
}

.fad.fa-tablet-rugged:after {
  content: "\10f48f";
}

.fad.fa-tablets:after {
  content: "\10f490";
}

.fad.fa-tachometer:after {
  content: "\10f0e4";
}

.fad.fa-tachometer-alt:after {
  content: "\10f3fd";
}

.fad.fa-tachometer-alt-average:after {
  content: "\10f624";
}

.fad.fa-tachometer-alt-fast:after {
  content: "\10f625";
}

.fad.fa-tachometer-alt-fastest:after {
  content: "\10f626";
}

.fad.fa-tachometer-alt-slow:after {
  content: "\10f627";
}

.fad.fa-tachometer-alt-slowest:after {
  content: "\10f628";
}

.fad.fa-tachometer-average:after {
  content: "\10f629";
}

.fad.fa-tachometer-fast:after {
  content: "\10f62a";
}

.fad.fa-tachometer-fastest:after {
  content: "\10f62b";
}

.fad.fa-tachometer-slow:after {
  content: "\10f62c";
}

.fad.fa-tachometer-slowest:after {
  content: "\10f62d";
}

.fad.fa-taco:after {
  content: "\10f826";
}

.fad.fa-tag:after {
  content: "\10f02b";
}

.fad.fa-tags:after {
  content: "\10f02c";
}

.fad.fa-tally:after {
  content: "\10f69c";
}

.fad.fa-tanakh:after {
  content: "\10f827";
}

.fad.fa-tape:after {
  content: "\10f4db";
}

.fad.fa-tasks:after {
  content: "\10f0ae";
}

.fad.fa-tasks-alt:after {
  content: "\10f828";
}

.fad.fa-taxi:after {
  content: "\10f1ba";
}

.fad.fa-teeth:after {
  content: "\10f62e";
}

.fad.fa-teeth-open:after {
  content: "\10f62f";
}

.fad.fa-telescope:after {
  content: "\10e03e";
}

.fad.fa-temperature-down:after {
  content: "\10e03f";
}

.fad.fa-temperature-frigid:after {
  content: "\10f768";
}

.fad.fa-temperature-high:after {
  content: "\10f769";
}

.fad.fa-temperature-hot:after {
  content: "\10f76a";
}

.fad.fa-temperature-low:after {
  content: "\10f76b";
}

.fad.fa-temperature-up:after {
  content: "\10e040";
}

.fad.fa-tenge:after {
  content: "\10f7d7";
}

.fad.fa-tennis-ball:after {
  content: "\10f45e";
}

.fad.fa-terminal:after {
  content: "\10f120";
}

.fad.fa-text:after {
  content: "\10f893";
}

.fad.fa-text-height:after {
  content: "\10f034";
}

.fad.fa-text-size:after {
  content: "\10f894";
}

.fad.fa-text-width:after {
  content: "\10f035";
}

.fad.fa-th:after {
  content: "\10f00a";
}

.fad.fa-th-large:after {
  content: "\10f009";
}

.fad.fa-th-list:after {
  content: "\10f00b";
}

.fad.fa-theater-masks:after {
  content: "\10f630";
}

.fad.fa-thermometer:after {
  content: "\10f491";
}

.fad.fa-thermometer-empty:after {
  content: "\10f2cb";
}

.fad.fa-thermometer-full:after {
  content: "\10f2c7";
}

.fad.fa-thermometer-half:after {
  content: "\10f2c9";
}

.fad.fa-thermometer-quarter:after {
  content: "\10f2ca";
}

.fad.fa-thermometer-three-quarters:after {
  content: "\10f2c8";
}

.fad.fa-theta:after {
  content: "\10f69e";
}

.fad.fa-thumbs-down:after {
  content: "\10f165";
}

.fad.fa-thumbs-up:after {
  content: "\10f164";
}

.fad.fa-thumbtack:after {
  content: "\10f08d";
}

.fad.fa-thunderstorm:after {
  content: "\10f76c";
}

.fad.fa-thunderstorm-moon:after {
  content: "\10f76d";
}

.fad.fa-thunderstorm-sun:after {
  content: "\10f76e";
}

.fad.fa-ticket:after {
  content: "\10f145";
}

.fad.fa-ticket-alt:after {
  content: "\10f3ff";
}

.fad.fa-tilde:after {
  content: "\10f69f";
}

.fad.fa-times:after {
  content: "\10f00d";
}

.fad.fa-times-circle:after {
  content: "\10f057";
}

.fad.fa-times-hexagon:after {
  content: "\10f2ee";
}

.fad.fa-times-octagon:after {
  content: "\10f2f0";
}

.fad.fa-times-square:after {
  content: "\10f2d3";
}

.fad.fa-tint:after {
  content: "\10f043";
}

.fad.fa-tint-slash:after {
  content: "\10f5c7";
}

.fad.fa-tire:after {
  content: "\10f631";
}

.fad.fa-tire-flat:after {
  content: "\10f632";
}

.fad.fa-tire-pressure-warning:after {
  content: "\10f633";
}

.fad.fa-tire-rugged:after {
  content: "\10f634";
}

.fad.fa-tired:after {
  content: "\10f5c8";
}

.fad.fa-toggle-off:after {
  content: "\10f204";
}

.fad.fa-toggle-on:after {
  content: "\10f205";
}

.fad.fa-toilet:after {
  content: "\10f7d8";
}

.fad.fa-toilet-paper:after {
  content: "\10f71e";
}

.fad.fa-toilet-paper-alt:after {
  content: "\10f71f";
}

.fad.fa-toilet-paper-slash:after {
  content: "\10e072";
}

.fad.fa-tombstone:after {
  content: "\10f720";
}

.fad.fa-tombstone-alt:after {
  content: "\10f721";
}

.fad.fa-toolbox:after {
  content: "\10f552";
}

.fad.fa-tools:after {
  content: "\10f7d9";
}

.fad.fa-tooth:after {
  content: "\10f5c9";
}

.fad.fa-toothbrush:after {
  content: "\10f635";
}

.fad.fa-torah:after {
  content: "\10f6a0";
}

.fad.fa-torii-gate:after {
  content: "\10f6a1";
}

.fad.fa-tornado:after {
  content: "\10f76f";
}

.fad.fa-tractor:after {
  content: "\10f722";
}

.fad.fa-trademark:after {
  content: "\10f25c";
}

.fad.fa-traffic-cone:after {
  content: "\10f636";
}

.fad.fa-traffic-light:after {
  content: "\10f637";
}

.fad.fa-traffic-light-go:after {
  content: "\10f638";
}

.fad.fa-traffic-light-slow:after {
  content: "\10f639";
}

.fad.fa-traffic-light-stop:after {
  content: "\10f63a";
}

.fad.fa-trailer:after {
  content: "\10e041";
}

.fad.fa-train:after {
  content: "\10f238";
}

.fad.fa-tram:after {
  content: "\10f7da";
}

.fad.fa-transgender:after {
  content: "\10f224";
}

.fad.fa-transgender-alt:after {
  content: "\10f225";
}

.fad.fa-transporter:after {
  content: "\10e042";
}

.fad.fa-transporter-1:after {
  content: "\10e043";
}

.fad.fa-transporter-2:after {
  content: "\10e044";
}

.fad.fa-transporter-3:after {
  content: "\10e045";
}

.fad.fa-transporter-empty:after {
  content: "\10e046";
}

.fad.fa-trash:after {
  content: "\10f1f8";
}

.fad.fa-trash-alt:after {
  content: "\10f2ed";
}

.fad.fa-trash-restore:after {
  content: "\10f829";
}

.fad.fa-trash-restore-alt:after {
  content: "\10f82a";
}

.fad.fa-trash-undo:after {
  content: "\10f895";
}

.fad.fa-trash-undo-alt:after {
  content: "\10f896";
}

.fad.fa-treasure-chest:after {
  content: "\10f723";
}

.fad.fa-tree:after {
  content: "\10f1bb";
}

.fad.fa-tree-alt:after {
  content: "\10f400";
}

.fad.fa-tree-christmas:after {
  content: "\10f7db";
}

.fad.fa-tree-decorated:after {
  content: "\10f7dc";
}

.fad.fa-tree-large:after {
  content: "\10f7dd";
}

.fad.fa-tree-palm:after {
  content: "\10f82b";
}

.fad.fa-trees:after {
  content: "\10f724";
}

.fad.fa-triangle:after {
  content: "\10f2ec";
}

.fad.fa-triangle-music:after {
  content: "\10f8e2";
}

.fad.fa-trophy:after {
  content: "\10f091";
}

.fad.fa-trophy-alt:after {
  content: "\10f2eb";
}

.fad.fa-truck:after {
  content: "\10f0d1";
}

.fad.fa-truck-container:after {
  content: "\10f4dc";
}

.fad.fa-truck-couch:after {
  content: "\10f4dd";
}

.fad.fa-truck-loading:after {
  content: "\10f4de";
}

.fad.fa-truck-monster:after {
  content: "\10f63b";
}

.fad.fa-truck-moving:after {
  content: "\10f4df";
}

.fad.fa-truck-pickup:after {
  content: "\10f63c";
}

.fad.fa-truck-plow:after {
  content: "\10f7de";
}

.fad.fa-truck-ramp:after {
  content: "\10f4e0";
}

.fad.fa-trumpet:after {
  content: "\10f8e3";
}

.fad.fa-tshirt:after {
  content: "\10f553";
}

.fad.fa-tty:after {
  content: "\10f1e4";
}

.fad.fa-turkey:after {
  content: "\10f725";
}

.fad.fa-turntable:after {
  content: "\10f8e4";
}

.fad.fa-turtle:after {
  content: "\10f726";
}

.fad.fa-tv:after {
  content: "\10f26c";
}

.fad.fa-tv-alt:after {
  content: "\10f8e5";
}

.fad.fa-tv-music:after {
  content: "\10f8e6";
}

.fad.fa-tv-retro:after {
  content: "\10f401";
}

.fad.fa-typewriter:after {
  content: "\10f8e7";
}

.fad.fa-ufo:after {
  content: "\10e047";
}

.fad.fa-ufo-beam:after {
  content: "\10e048";
}

.fad.fa-umbrella:after {
  content: "\10f0e9";
}

.fad.fa-umbrella-beach:after {
  content: "\10f5ca";
}

.fad.fa-underline:after {
  content: "\10f0cd";
}

.fad.fa-undo:after,
.woocommerce-account .woocommerce-MyAccount-navigation-link--subscriptions a.fad:after {
  content: "\10f0e2";
}

.fad.fa-undo-alt:after {
  content: "\10f2ea";
}

.fad.fa-unicorn:after {
  content: "\10f727";
}

.fad.fa-union:after {
  content: "\10f6a2";
}

.fad.fa-universal-access:after {
  content: "\10f29a";
}

.fad.fa-university:after {
  content: "\10f19c";
}

.fad.fa-unlink:after {
  content: "\10f127";
}

.fad.fa-unlock:after {
  content: "\10f09c";
}

.fad.fa-unlock-alt:after {
  content: "\10f13e";
}

.fad.fa-upload:after {
  content: "\10f093";
}

.fad.fa-usb-drive:after {
  content: "\10f8e9";
}

.fad.fa-usd-circle:after {
  content: "\10f2e8";
}

.fad.fa-usd-square:after {
  content: "\10f2e9";
}

.fad.fa-user:after,
.woocommerce-account .woocommerce-MyAccount-navigation-link--dashboard a.fad:after {
  content: "\10f007";
}

.fad.fa-user-alien:after {
  content: "\10e04a";
}

.fad.fa-user-alt:after {
  content: "\10f406";
}

.fad.fa-user-alt-slash:after {
  content: "\10f4fa";
}

.fad.fa-user-astronaut:after {
  content: "\10f4fb";
}

.fad.fa-user-chart:after {
  content: "\10f6a3";
}

.fad.fa-user-check:after {
  content: "\10f4fc";
}

.fad.fa-user-circle:after,
.woocommerce-account .woocommerce-MyAccount-navigation-link--my-account a.fad:after,
.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-account a.fad:after {
  content: "\10f2bd";
}

.fad.fa-user-clock:after {
  content: "\10f4fd";
}

.fad.fa-user-cog:after {
  content: "\10f4fe";
}

.fad.fa-user-cowboy:after {
  content: "\10f8ea";
}

.fad.fa-user-crown:after {
  content: "\10f6a4";
}

.fad.fa-user-edit:after {
  content: "\10f4ff";
}

.fad.fa-user-friends:after {
  content: "\10f500";
}

.fad.fa-user-graduate:after {
  content: "\10f501";
}

.fad.fa-user-hard-hat:after {
  content: "\10f82c";
}

.fad.fa-user-headset:after {
  content: "\10f82d";
}

.fad.fa-user-injured:after {
  content: "\10f728";
}

.fad.fa-user-lock:after {
  content: "\10f502";
}

.fad.fa-user-md:after {
  content: "\10f0f0";
}

.fad.fa-user-md-chat:after {
  content: "\10f82e";
}

.fad.fa-user-minus:after {
  content: "\10f503";
}

.fad.fa-user-music:after {
  content: "\10f8eb";
}

.fad.fa-user-ninja:after {
  content: "\10f504";
}

.fad.fa-user-nurse:after {
  content: "\10f82f";
}

.fad.fa-user-plus:after {
  content: "\10f234";
}

.fad.fa-user-robot:after {
  content: "\10e04b";
}

.fad.fa-user-secret:after {
  content: "\10f21b";
}

.fad.fa-user-shield:after {
  content: "\10f505";
}

.fad.fa-user-slash:after {
  content: "\10f506";
}

.fad.fa-user-tag:after {
  content: "\10f507";
}

.fad.fa-user-tie:after {
  content: "\10f508";
}

.fad.fa-user-times:after {
  content: "\10f235";
}

.fad.fa-user-unlock:after {
  content: "\10e058";
}

.fad.fa-user-visor:after {
  content: "\10e04c";
}

.fad.fa-users:after {
  content: "\10f0c0";
}

.fad.fa-users-class:after,
.woocommerce-account .woocommerce-MyAccount-navigation-link--students a.fad:after {
  content: "\10f63d";
}

.fad.fa-users-cog:after {
  content: "\10f509";
}

.fad.fa-users-crown:after {
  content: "\10f6a5";
}

.fad.fa-users-medical:after,
.woocommerce-account .woocommerce-MyAccount-navigation-link--shared-access a.fad:after {
  content: "\10f830";
}

.fad.fa-users-slash:after {
  content: "\10e073";
}

.fad.fa-utensil-fork:after {
  content: "\10f2e3";
}

.fad.fa-utensil-knife:after {
  content: "\10f2e4";
}

.fad.fa-utensil-spoon:after {
  content: "\10f2e5";
}

.fad.fa-utensils:after {
  content: "\10f2e7";
}

.fad.fa-utensils-alt:after {
  content: "\10f2e6";
}

.fad.fa-vacuum:after {
  content: "\10e04d";
}

.fad.fa-vacuum-robot:after {
  content: "\10e04e";
}

.fad.fa-value-absolute:after {
  content: "\10f6a6";
}

.fad.fa-vector-square:after {
  content: "\10f5cb";
}

.fad.fa-venus:after {
  content: "\10f221";
}

.fad.fa-venus-double:after {
  content: "\10f226";
}

.fad.fa-venus-mars:after {
  content: "\10f228";
}

.fad.fa-vest:after {
  content: "\10e085";
}

.fad.fa-vest-patches:after {
  content: "\10e086";
}

.fad.fa-vhs:after {
  content: "\10f8ec";
}

.fad.fa-vial:after {
  content: "\10f492";
}

.fad.fa-vials:after {
  content: "\10f493";
}

.fad.fa-video:after {
  content: "\10f03d";
}

.fad.fa-video-plus:after {
  content: "\10f4e1";
}

.fad.fa-video-slash:after {
  content: "\10f4e2";
}

.fad.fa-vihara:after {
  content: "\10f6a7";
}

.fad.fa-violin:after {
  content: "\10f8ed";
}

.fad.fa-virus:after {
  content: "\10e074";
}

.fad.fa-virus-slash:after {
  content: "\10e075";
}

.fad.fa-viruses:after {
  content: "\10e076";
}

.fad.fa-voicemail:after {
  content: "\10f897";
}

.fad.fa-volcano:after {
  content: "\10f770";
}

.fad.fa-volleyball-ball:after {
  content: "\10f45f";
}

.fad.fa-volume:after {
  content: "\10f6a8";
}

.fad.fa-volume-down:after {
  content: "\10f027";
}

.fad.fa-volume-mute:after {
  content: "\10f6a9";
}

.fad.fa-volume-off:after {
  content: "\10f026";
}

.fad.fa-volume-slash:after {
  content: "\10f2e2";
}

.fad.fa-volume-up:after {
  content: "\10f028";
}

.fad.fa-vote-nay:after {
  content: "\10f771";
}

.fad.fa-vote-yea:after {
  content: "\10f772";
}

.fad.fa-vr-cardboard:after {
  content: "\10f729";
}

.fad.fa-wagon-covered:after {
  content: "\10f8ee";
}

.fad.fa-walker:after {
  content: "\10f831";
}

.fad.fa-walkie-talkie:after {
  content: "\10f8ef";
}

.fad.fa-walking:after {
  content: "\10f554";
}

.fad.fa-wallet:after {
  content: "\10f555";
}

.fad.fa-wand:after {
  content: "\10f72a";
}

.fad.fa-wand-magic:after {
  content: "\10f72b";
}

.fad.fa-warehouse:after {
  content: "\10f494";
}

.fad.fa-warehouse-alt:after {
  content: "\10f495";
}

.fad.fa-washer:after {
  content: "\10f898";
}

.fad.fa-watch:after {
  content: "\10f2e1";
}

.fad.fa-watch-calculator:after {
  content: "\10f8f0";
}

.fad.fa-watch-fitness:after {
  content: "\10f63e";
}

.fad.fa-water:after {
  content: "\10f773";
}

.fad.fa-water-lower:after {
  content: "\10f774";
}

.fad.fa-water-rise:after {
  content: "\10f775";
}

.fad.fa-wave-sine:after {
  content: "\10f899";
}

.fad.fa-wave-square:after {
  content: "\10f83e";
}

.fad.fa-wave-triangle:after {
  content: "\10f89a";
}

.fad.fa-waveform:after {
  content: "\10f8f1";
}

.fad.fa-waveform-path:after {
  content: "\10f8f2";
}

.fad.fa-webcam:after {
  content: "\10f832";
}

.fad.fa-webcam-slash:after {
  content: "\10f833";
}

.fad.fa-weight:after {
  content: "\10f496";
}

.fad.fa-weight-hanging:after {
  content: "\10f5cd";
}

.fad.fa-whale:after {
  content: "\10f72c";
}

.fad.fa-wheat:after {
  content: "\10f72d";
}

.fad.fa-wheelchair:after {
  content: "\10f193";
}

.fad.fa-whistle:after {
  content: "\10f460";
}

.fad.fa-wifi:after {
  content: "\10f1eb";
}

.fad.fa-wifi-1:after {
  content: "\10f6aa";
}

.fad.fa-wifi-2:after {
  content: "\10f6ab";
}

.fad.fa-wifi-slash:after {
  content: "\10f6ac";
}

.fad.fa-wind:after {
  content: "\10f72e";
}

.fad.fa-wind-turbine:after {
  content: "\10f89b";
}

.fad.fa-wind-warning:after {
  content: "\10f776";
}

.fad.fa-window:after {
  content: "\10f40e";
}

.fad.fa-window-alt:after {
  content: "\10f40f";
}

.fad.fa-window-close:after {
  content: "\10f410";
}

.fad.fa-window-frame:after {
  content: "\10e04f";
}

.fad.fa-window-frame-open:after {
  content: "\10e050";
}

.fad.fa-window-maximize:after {
  content: "\10f2d0";
}

.fad.fa-window-minimize:after {
  content: "\10f2d1";
}

.fad.fa-window-restore:after {
  content: "\10f2d2";
}

.fad.fa-windsock:after {
  content: "\10f777";
}

.fad.fa-wine-bottle:after {
  content: "\10f72f";
}

.fad.fa-wine-glass:after {
  content: "\10f4e3";
}

.fad.fa-wine-glass-alt:after {
  content: "\10f5ce";
}

.fad.fa-won-sign:after {
  content: "\10f159";
}

.fad.fa-wreath:after {
  content: "\10f7e2";
}

.fad.fa-wrench:after {
  content: "\10f0ad";
}

.fad.fa-x-ray:after {
  content: "\10f497";
}

.fad.fa-yen-sign:after {
  content: "\10f157";
}

.fad.fa-yin-yang:after {
  content: "\10f6ad";
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[data-whatintent="mouse"] *,
[data-whatintent="mouse"] *:focus,
[data-whatintent="touch"] *,
[data-whatintent="touch"] *:focus,
[data-whatinput="mouse"] *,
[data-whatinput="mouse"] *:focus,
[data-whatinput="touch"] *,
[data-whatinput="touch"] *:focus {
  outline: none;
}

[draggable="false"] {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

.foundation-mq {
  font-family: "small=0em&medium=37.5em&large=64em&xlarge=75em&xxlarge=90em";
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  cursor: auto;
}

[data-whatinput="mouse"] button {
  outline: 0;
}

pre {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.grid-container {
  padding-right: 1.8125rem;
  padding-left: 1.8125rem;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-container {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.grid-container.fluid {
  padding-right: 1.8125rem;
  padding-left: 1.8125rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-container.fluid {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.grid-x {
  display: flex;
  flex-flow: row wrap;
}

.cell {
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.cell.auto {
  flex: 1 1 0;
}

.cell.shrink {
  flex: 0 0 auto;
}

.grid-x > .auto {
  width: auto;
}

.grid-x > .shrink {
  width: auto;
}

.grid-x > .small-shrink,
.grid-x > .small-full,
.grid-x > .small-1,
.grid-x > .small-2,
.grid-x > .small-3,
.grid-x > .small-4,
.grid-x > .small-5,
.grid-x > .small-6,
.grid-x > .small-7,
.grid-x > .small-8,
.grid-x > .small-9,
.grid-x > .small-10,
.grid-x > .small-11,
.grid-x > .small-12 {
  flex-basis: auto;
}

@media print,
screen and (min-width: 37.5em) {

  .grid-x > .medium-shrink,
  .grid-x > .medium-full,
  .grid-x > .medium-1,
  .grid-x > .medium-2,
  .grid-x > .medium-3,
  .grid-x > .medium-4,
  .grid-x > .medium-5,
  .grid-x > .medium-6,
  .grid-x > .medium-7,
  .grid-x > .medium-8,
  .grid-x > .medium-9,
  .grid-x > .medium-10,
  .grid-x > .medium-11,
  .grid-x > .medium-12 {
    flex-basis: auto;
  }
}

@media print,
screen and (min-width: 64em) {

  .grid-x > .large-shrink,
  .grid-x > .large-full,
  .grid-x > .large-1,
  .grid-x > .large-2,
  .grid-x > .large-3,
  .grid-x > .large-4,
  .grid-x > .large-5,
  .grid-x > .large-6,
  .grid-x > .large-7,
  .grid-x > .large-8,
  .grid-x > .large-9,
  .grid-x > .large-10,
  .grid-x > .large-11,
  .grid-x > .large-12 {
    flex-basis: auto;
  }
}

.grid-x > .small-1,
.grid-x > .small-2,
.grid-x > .small-3,
.grid-x > .small-4,
.grid-x > .small-5,
.grid-x > .small-6,
.grid-x > .small-7,
.grid-x > .small-8,
.grid-x > .small-9,
.grid-x > .small-10,
.grid-x > .small-11,
.grid-x > .small-12 {
  flex: 0 0 auto;
}

.grid-x > .small-1 {
  width: 8.33333%;
}

.grid-x > .small-2 {
  width: 16.66667%;
}

.grid-x > .small-3 {
  width: 25%;
}

.grid-x > .small-4 {
  width: 33.33333%;
}

.grid-x > .small-5 {
  width: 41.66667%;
}

.grid-x > .small-6 {
  width: 50%;
}

.grid-x > .small-7 {
  width: 58.33333%;
}

.grid-x > .small-8 {
  width: 66.66667%;
}

.grid-x > .small-9 {
  width: 75%;
}

.grid-x > .small-10 {
  width: 83.33333%;
}

.grid-x > .small-11 {
  width: 91.66667%;
}

.grid-x > .small-12 {
  width: 100%;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-x > .medium-auto {
    flex: 1 1 0;
    width: auto;
  }

  .grid-x > .medium-shrink,
  .grid-x > .medium-1,
  .grid-x > .medium-2,
  .grid-x > .medium-3,
  .grid-x > .medium-4,
  .grid-x > .medium-5,
  .grid-x > .medium-6,
  .grid-x > .medium-7,
  .grid-x > .medium-8,
  .grid-x > .medium-9,
  .grid-x > .medium-10,
  .grid-x > .medium-11,
  .grid-x > .medium-12 {
    flex: 0 0 auto;
  }

  .grid-x > .medium-shrink {
    width: auto;
  }

  .grid-x > .medium-1 {
    width: 8.33333%;
  }

  .grid-x > .medium-2 {
    width: 16.66667%;
  }

  .grid-x > .medium-3 {
    width: 25%;
  }

  .grid-x > .medium-4 {
    width: 33.33333%;
  }

  .grid-x > .medium-5 {
    width: 41.66667%;
  }

  .grid-x > .medium-6 {
    width: 50%;
  }

  .grid-x > .medium-7 {
    width: 58.33333%;
  }

  .grid-x > .medium-8 {
    width: 66.66667%;
  }

  .grid-x > .medium-9 {
    width: 75%;
  }

  .grid-x > .medium-10 {
    width: 83.33333%;
  }

  .grid-x > .medium-11 {
    width: 91.66667%;
  }

  .grid-x > .medium-12 {
    width: 100%;
  }
}

@media print,
screen and (min-width: 64em) {
  .grid-x > .large-auto {
    flex: 1 1 0;
    width: auto;
  }

  .grid-x > .large-shrink,
  .grid-x > .large-1,
  .grid-x > .large-2,
  .grid-x > .large-3,
  .grid-x > .large-4,
  .grid-x > .large-5,
  .grid-x > .large-6,
  .grid-x > .large-7,
  .grid-x > .large-8,
  .grid-x > .large-9,
  .grid-x > .large-10,
  .grid-x > .large-11,
  .grid-x > .large-12 {
    flex: 0 0 auto;
  }

  .grid-x > .large-shrink {
    width: auto;
  }

  .grid-x > .large-1 {
    width: 8.33333%;
  }

  .grid-x > .large-2 {
    width: 16.66667%;
  }

  .grid-x > .large-3 {
    width: 25%;
  }

  .grid-x > .large-4 {
    width: 33.33333%;
  }

  .grid-x > .large-5 {
    width: 41.66667%;
  }

  .grid-x > .large-6 {
    width: 50%;
  }

  .grid-x > .large-7 {
    width: 58.33333%;
  }

  .grid-x > .large-8 {
    width: 66.66667%;
  }

  .grid-x > .large-9 {
    width: 75%;
  }

  .grid-x > .large-10 {
    width: 83.33333%;
  }

  .grid-x > .large-11 {
    width: 91.66667%;
  }

  .grid-x > .large-12 {
    width: 100%;
  }
}

.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}

.grid-margin-x {
  margin-left: -0.71875rem;
  margin-right: -0.71875rem;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-margin-x {
    margin-left: -0.96875rem;
    margin-right: -0.96875rem;
  }
}

.grid-margin-x > .cell {
  width: calc(100% - 1.4375rem);
  margin-left: 0.71875rem;
  margin-right: 0.71875rem;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-margin-x > .cell {
    width: calc(100% - 1.9375rem);
    margin-left: 0.96875rem;
    margin-right: 0.96875rem;
  }
}

.grid-margin-x > .auto {
  width: auto;
}

.grid-margin-x > .shrink {
  width: auto;
}

.grid-margin-x > .small-1 {
  width: calc(8.33333% - 1.4375rem);
}

.grid-margin-x > .small-2 {
  width: calc(16.66667% - 1.4375rem);
}

.grid-margin-x > .small-3 {
  width: calc(25% - 1.4375rem);
}

.grid-margin-x > .small-4 {
  width: calc(33.33333% - 1.4375rem);
}

.grid-margin-x > .small-5 {
  width: calc(41.66667% - 1.4375rem);
}

.grid-margin-x > .small-6 {
  width: calc(50% - 1.4375rem);
}

.grid-margin-x > .small-7 {
  width: calc(58.33333% - 1.4375rem);
}

.grid-margin-x > .small-8 {
  width: calc(66.66667% - 1.4375rem);
}

.grid-margin-x > .small-9 {
  width: calc(75% - 1.4375rem);
}

.grid-margin-x > .small-10 {
  width: calc(83.33333% - 1.4375rem);
}

.grid-margin-x > .small-11 {
  width: calc(91.66667% - 1.4375rem);
}

.grid-margin-x > .small-12 {
  width: calc(100% - 1.4375rem);
}

@media print,
screen and (min-width: 37.5em) {
  .grid-margin-x > .auto {
    width: auto;
  }

  .grid-margin-x > .shrink {
    width: auto;
  }

  .grid-margin-x > .small-1 {
    width: calc(8.33333% - 1.9375rem);
  }

  .grid-margin-x > .small-2 {
    width: calc(16.66667% - 1.9375rem);
  }

  .grid-margin-x > .small-3 {
    width: calc(25% - 1.9375rem);
  }

  .grid-margin-x > .small-4 {
    width: calc(33.33333% - 1.9375rem);
  }

  .grid-margin-x > .small-5 {
    width: calc(41.66667% - 1.9375rem);
  }

  .grid-margin-x > .small-6 {
    width: calc(50% - 1.9375rem);
  }

  .grid-margin-x > .small-7 {
    width: calc(58.33333% - 1.9375rem);
  }

  .grid-margin-x > .small-8 {
    width: calc(66.66667% - 1.9375rem);
  }

  .grid-margin-x > .small-9 {
    width: calc(75% - 1.9375rem);
  }

  .grid-margin-x > .small-10 {
    width: calc(83.33333% - 1.9375rem);
  }

  .grid-margin-x > .small-11 {
    width: calc(91.66667% - 1.9375rem);
  }

  .grid-margin-x > .small-12 {
    width: calc(100% - 1.9375rem);
  }

  .grid-margin-x > .medium-auto {
    width: auto;
  }

  .grid-margin-x > .medium-shrink {
    width: auto;
  }

  .grid-margin-x > .medium-1 {
    width: calc(8.33333% - 1.9375rem);
  }

  .grid-margin-x > .medium-2 {
    width: calc(16.66667% - 1.9375rem);
  }

  .grid-margin-x > .medium-3 {
    width: calc(25% - 1.9375rem);
  }

  .grid-margin-x > .medium-4 {
    width: calc(33.33333% - 1.9375rem);
  }

  .grid-margin-x > .medium-5 {
    width: calc(41.66667% - 1.9375rem);
  }

  .grid-margin-x > .medium-6 {
    width: calc(50% - 1.9375rem);
  }

  .grid-margin-x > .medium-7 {
    width: calc(58.33333% - 1.9375rem);
  }

  .grid-margin-x > .medium-8 {
    width: calc(66.66667% - 1.9375rem);
  }

  .grid-margin-x > .medium-9 {
    width: calc(75% - 1.9375rem);
  }

  .grid-margin-x > .medium-10 {
    width: calc(83.33333% - 1.9375rem);
  }

  .grid-margin-x > .medium-11 {
    width: calc(91.66667% - 1.9375rem);
  }

  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.9375rem);
  }
}

@media print,
screen and (min-width: 64em) {
  .grid-margin-x > .large-auto {
    width: auto;
  }

  .grid-margin-x > .large-shrink {
    width: auto;
  }

  .grid-margin-x > .large-1 {
    width: calc(8.33333% - 1.9375rem);
  }

  .grid-margin-x > .large-2 {
    width: calc(16.66667% - 1.9375rem);
  }

  .grid-margin-x > .large-3 {
    width: calc(25% - 1.9375rem);
  }

  .grid-margin-x > .large-4 {
    width: calc(33.33333% - 1.9375rem);
  }

  .grid-margin-x > .large-5 {
    width: calc(41.66667% - 1.9375rem);
  }

  .grid-margin-x > .large-6 {
    width: calc(50% - 1.9375rem);
  }

  .grid-margin-x > .large-7 {
    width: calc(58.33333% - 1.9375rem);
  }

  .grid-margin-x > .large-8 {
    width: calc(66.66667% - 1.9375rem);
  }

  .grid-margin-x > .large-9 {
    width: calc(75% - 1.9375rem);
  }

  .grid-margin-x > .large-10 {
    width: calc(83.33333% - 1.9375rem);
  }

  .grid-margin-x > .large-11 {
    width: calc(91.66667% - 1.9375rem);
  }

  .grid-margin-x > .large-12 {
    width: calc(100% - 1.9375rem);
  }
}

.grid-padding-x .grid-padding-x {
  margin-right: -0.71875rem;
  margin-left: -0.71875rem;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.96875rem;
    margin-left: -0.96875rem;
  }
}

.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.71875rem;
  margin-left: -0.71875rem;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -0.96875rem;
    margin-left: -0.96875rem;
  }
}

.grid-padding-x > .cell {
  padding-right: 1.8125rem;
  padding-left: 1.8125rem;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-padding-x > .cell {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.small-up-1 > .cell {
  width: 100%;
}

.small-up-2 > .cell {
  width: 50%;
}

.small-up-3 > .cell {
  width: 33.33333%;
}

.small-up-4 > .cell {
  width: 25%;
}

.small-up-5 > .cell {
  width: 20%;
}

.small-up-6 > .cell {
  width: 16.66667%;
}

.small-up-7 > .cell {
  width: 14.28571%;
}

.small-up-8 > .cell {
  width: 12.5%;
}

@media print,
screen and (min-width: 37.5em) {
  .medium-up-1 > .cell {
    width: 100%;
  }

  .medium-up-2 > .cell {
    width: 50%;
  }

  .medium-up-3 > .cell {
    width: 33.33333%;
  }

  .medium-up-4 > .cell {
    width: 25%;
  }

  .medium-up-5 > .cell {
    width: 20%;
  }

  .medium-up-6 > .cell {
    width: 16.66667%;
  }

  .medium-up-7 > .cell {
    width: 14.28571%;
  }

  .medium-up-8 > .cell {
    width: 12.5%;
  }
}

@media print,
screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%;
  }

  .large-up-2 > .cell {
    width: 50%;
  }

  .large-up-3 > .cell {
    width: 33.33333%;
  }

  .large-up-4 > .cell {
    width: 25%;
  }

  .large-up-5 > .cell {
    width: 20%;
  }

  .large-up-6 > .cell {
    width: 16.66667%;
  }

  .large-up-7 > .cell {
    width: 14.28571%;
  }

  .large-up-8 > .cell {
    width: 12.5%;
  }
}

.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.4375rem);
}

.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 1.4375rem);
}

.grid-margin-x.small-up-3 > .cell {
  width: calc(33.33333% - 1.4375rem);
}

.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 1.4375rem);
}

.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 1.4375rem);
}

.grid-margin-x.small-up-6 > .cell {
  width: calc(16.66667% - 1.4375rem);
}

.grid-margin-x.small-up-7 > .cell {
  width: calc(14.28571% - 1.4375rem);
}

.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 1.4375rem);
}

@media print,
screen and (min-width: 37.5em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 1.9375rem);
  }

  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 1.9375rem);
  }

  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.33333% - 1.9375rem);
  }

  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 1.9375rem);
  }

  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 1.9375rem);
  }

  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.66667% - 1.9375rem);
  }

  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.28571% - 1.9375rem);
  }

  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 1.9375rem);
  }

  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.9375rem);
  }

  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.9375rem);
  }

  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.33333% - 1.9375rem);
  }

  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.9375rem);
  }

  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.9375rem);
  }

  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.66667% - 1.9375rem);
  }

  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.28571% - 1.9375rem);
  }

  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.9375rem);
  }
}

@media print,
screen and (min-width: 64em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 1.9375rem);
  }

  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 1.9375rem);
  }

  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.33333% - 1.9375rem);
  }

  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 1.9375rem);
  }

  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 1.9375rem);
  }

  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.66667% - 1.9375rem);
  }

  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.28571% - 1.9375rem);
  }

  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 1.9375rem);
  }
}

.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}

.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}

.small-margin-collapse > .small-1 {
  width: 8.33333%;
}

.small-margin-collapse > .small-2 {
  width: 16.66667%;
}

.small-margin-collapse > .small-3 {
  width: 25%;
}

.small-margin-collapse > .small-4 {
  width: 33.33333%;
}

.small-margin-collapse > .small-5 {
  width: 41.66667%;
}

.small-margin-collapse > .small-6 {
  width: 50%;
}

.small-margin-collapse > .small-7 {
  width: 58.33333%;
}

.small-margin-collapse > .small-8 {
  width: 66.66667%;
}

.small-margin-collapse > .small-9 {
  width: 75%;
}

.small-margin-collapse > .small-10 {
  width: 83.33333%;
}

.small-margin-collapse > .small-11 {
  width: 91.66667%;
}

.small-margin-collapse > .small-12 {
  width: 100%;
}

@media print,
screen and (min-width: 37.5em) {
  .small-margin-collapse > .medium-1 {
    width: 8.33333%;
  }

  .small-margin-collapse > .medium-2 {
    width: 16.66667%;
  }

  .small-margin-collapse > .medium-3 {
    width: 25%;
  }

  .small-margin-collapse > .medium-4 {
    width: 33.33333%;
  }

  .small-margin-collapse > .medium-5 {
    width: 41.66667%;
  }

  .small-margin-collapse > .medium-6 {
    width: 50%;
  }

  .small-margin-collapse > .medium-7 {
    width: 58.33333%;
  }

  .small-margin-collapse > .medium-8 {
    width: 66.66667%;
  }

  .small-margin-collapse > .medium-9 {
    width: 75%;
  }

  .small-margin-collapse > .medium-10 {
    width: 83.33333%;
  }

  .small-margin-collapse > .medium-11 {
    width: 91.66667%;
  }

  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media print,
screen and (min-width: 64em) {
  .small-margin-collapse > .large-1 {
    width: 8.33333%;
  }

  .small-margin-collapse > .large-2 {
    width: 16.66667%;
  }

  .small-margin-collapse > .large-3 {
    width: 25%;
  }

  .small-margin-collapse > .large-4 {
    width: 33.33333%;
  }

  .small-margin-collapse > .large-5 {
    width: 41.66667%;
  }

  .small-margin-collapse > .large-6 {
    width: 50%;
  }

  .small-margin-collapse > .large-7 {
    width: 58.33333%;
  }

  .small-margin-collapse > .large-8 {
    width: 66.66667%;
  }

  .small-margin-collapse > .large-9 {
    width: 75%;
  }

  .small-margin-collapse > .large-10 {
    width: 83.33333%;
  }

  .small-margin-collapse > .large-11 {
    width: 91.66667%;
  }

  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}

.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}

.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}

@media print,
screen and (min-width: 37.5em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }

  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}

@media print,
screen and (min-width: 37.5em) {
  .medium-margin-collapse > .small-1 {
    width: 8.33333%;
  }

  .medium-margin-collapse > .small-2 {
    width: 16.66667%;
  }

  .medium-margin-collapse > .small-3 {
    width: 25%;
  }

  .medium-margin-collapse > .small-4 {
    width: 33.33333%;
  }

  .medium-margin-collapse > .small-5 {
    width: 41.66667%;
  }

  .medium-margin-collapse > .small-6 {
    width: 50%;
  }

  .medium-margin-collapse > .small-7 {
    width: 58.33333%;
  }

  .medium-margin-collapse > .small-8 {
    width: 66.66667%;
  }

  .medium-margin-collapse > .small-9 {
    width: 75%;
  }

  .medium-margin-collapse > .small-10 {
    width: 83.33333%;
  }

  .medium-margin-collapse > .small-11 {
    width: 91.66667%;
  }

  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}

@media print,
screen and (min-width: 37.5em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.33333%;
  }

  .medium-margin-collapse > .medium-2 {
    width: 16.66667%;
  }

  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }

  .medium-margin-collapse > .medium-4 {
    width: 33.33333%;
  }

  .medium-margin-collapse > .medium-5 {
    width: 41.66667%;
  }

  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }

  .medium-margin-collapse > .medium-7 {
    width: 58.33333%;
  }

  .medium-margin-collapse > .medium-8 {
    width: 66.66667%;
  }

  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }

  .medium-margin-collapse > .medium-10 {
    width: 83.33333%;
  }

  .medium-margin-collapse > .medium-11 {
    width: 91.66667%;
  }

  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media print,
screen and (min-width: 64em) {
  .medium-margin-collapse > .large-1 {
    width: 8.33333%;
  }

  .medium-margin-collapse > .large-2 {
    width: 16.66667%;
  }

  .medium-margin-collapse > .large-3 {
    width: 25%;
  }

  .medium-margin-collapse > .large-4 {
    width: 33.33333%;
  }

  .medium-margin-collapse > .large-5 {
    width: 41.66667%;
  }

  .medium-margin-collapse > .large-6 {
    width: 50%;
  }

  .medium-margin-collapse > .large-7 {
    width: 58.33333%;
  }

  .medium-margin-collapse > .large-8 {
    width: 66.66667%;
  }

  .medium-margin-collapse > .large-9 {
    width: 75%;
  }

  .medium-margin-collapse > .large-10 {
    width: 83.33333%;
  }

  .medium-margin-collapse > .large-11 {
    width: 91.66667%;
  }

  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media print,
screen and (min-width: 37.5em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }

  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media print,
screen and (min-width: 64em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }

  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}

@media print,
screen and (min-width: 64em) {
  .large-margin-collapse > .small-1 {
    width: 8.33333%;
  }

  .large-margin-collapse > .small-2 {
    width: 16.66667%;
  }

  .large-margin-collapse > .small-3 {
    width: 25%;
  }

  .large-margin-collapse > .small-4 {
    width: 33.33333%;
  }

  .large-margin-collapse > .small-5 {
    width: 41.66667%;
  }

  .large-margin-collapse > .small-6 {
    width: 50%;
  }

  .large-margin-collapse > .small-7 {
    width: 58.33333%;
  }

  .large-margin-collapse > .small-8 {
    width: 66.66667%;
  }

  .large-margin-collapse > .small-9 {
    width: 75%;
  }

  .large-margin-collapse > .small-10 {
    width: 83.33333%;
  }

  .large-margin-collapse > .small-11 {
    width: 91.66667%;
  }

  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}

@media print,
screen and (min-width: 64em) {
  .large-margin-collapse > .medium-1 {
    width: 8.33333%;
  }

  .large-margin-collapse > .medium-2 {
    width: 16.66667%;
  }

  .large-margin-collapse > .medium-3 {
    width: 25%;
  }

  .large-margin-collapse > .medium-4 {
    width: 33.33333%;
  }

  .large-margin-collapse > .medium-5 {
    width: 41.66667%;
  }

  .large-margin-collapse > .medium-6 {
    width: 50%;
  }

  .large-margin-collapse > .medium-7 {
    width: 58.33333%;
  }

  .large-margin-collapse > .medium-8 {
    width: 66.66667%;
  }

  .large-margin-collapse > .medium-9 {
    width: 75%;
  }

  .large-margin-collapse > .medium-10 {
    width: 83.33333%;
  }

  .large-margin-collapse > .medium-11 {
    width: 91.66667%;
  }

  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media print,
screen and (min-width: 64em) {
  .large-margin-collapse > .large-1 {
    width: 8.33333%;
  }

  .large-margin-collapse > .large-2 {
    width: 16.66667%;
  }

  .large-margin-collapse > .large-3 {
    width: 25%;
  }

  .large-margin-collapse > .large-4 {
    width: 33.33333%;
  }

  .large-margin-collapse > .large-5 {
    width: 41.66667%;
  }

  .large-margin-collapse > .large-6 {
    width: 50%;
  }

  .large-margin-collapse > .large-7 {
    width: 58.33333%;
  }

  .large-margin-collapse > .large-8 {
    width: 66.66667%;
  }

  .large-margin-collapse > .large-9 {
    width: 75%;
  }

  .large-margin-collapse > .large-10 {
    width: 83.33333%;
  }

  .large-margin-collapse > .large-11 {
    width: 91.66667%;
  }

  .large-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media print,
screen and (min-width: 64em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }

  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

.small-offset-0 {
  margin-left: 0%;
}

.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 1.4375rem / 2);
}

.small-offset-1 {
  margin-left: 8.33333%;
}

.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.33333% + 1.4375rem / 2);
}

.small-offset-2 {
  margin-left: 16.66667%;
}

.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.66667% + 1.4375rem / 2);
}

.small-offset-3 {
  margin-left: 25%;
}

.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 1.4375rem / 2);
}

.small-offset-4 {
  margin-left: 33.33333%;
}

.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.33333% + 1.4375rem / 2);
}

.small-offset-5 {
  margin-left: 41.66667%;
}

.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.66667% + 1.4375rem / 2);
}

.small-offset-6 {
  margin-left: 50%;
}

.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 1.4375rem / 2);
}

.small-offset-7 {
  margin-left: 58.33333%;
}

.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.33333% + 1.4375rem / 2);
}

.small-offset-8 {
  margin-left: 66.66667%;
}

.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.66667% + 1.4375rem / 2);
}

.small-offset-9 {
  margin-left: 75%;
}

.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 1.4375rem / 2);
}

.small-offset-10 {
  margin-left: 83.33333%;
}

.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.33333% + 1.4375rem / 2);
}

.small-offset-11 {
  margin-left: 91.66667%;
}

.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.66667% + 1.4375rem / 2);
}

@media print,
screen and (min-width: 37.5em) {
  .medium-offset-0 {
    margin-left: 0%;
  }

  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 1.9375rem / 2);
  }

  .medium-offset-1 {
    margin-left: 8.33333%;
  }

  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.33333% + 1.9375rem / 2);
  }

  .medium-offset-2 {
    margin-left: 16.66667%;
  }

  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.66667% + 1.9375rem / 2);
  }

  .medium-offset-3 {
    margin-left: 25%;
  }

  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 1.9375rem / 2);
  }

  .medium-offset-4 {
    margin-left: 33.33333%;
  }

  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.33333% + 1.9375rem / 2);
  }

  .medium-offset-5 {
    margin-left: 41.66667%;
  }

  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.66667% + 1.9375rem / 2);
  }

  .medium-offset-6 {
    margin-left: 50%;
  }

  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 1.9375rem / 2);
  }

  .medium-offset-7 {
    margin-left: 58.33333%;
  }

  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.33333% + 1.9375rem / 2);
  }

  .medium-offset-8 {
    margin-left: 66.66667%;
  }

  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.66667% + 1.9375rem / 2);
  }

  .medium-offset-9 {
    margin-left: 75%;
  }

  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 1.9375rem / 2);
  }

  .medium-offset-10 {
    margin-left: 83.33333%;
  }

  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.33333% + 1.9375rem / 2);
  }

  .medium-offset-11 {
    margin-left: 91.66667%;
  }

  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.66667% + 1.9375rem / 2);
  }
}

@media print,
screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }

  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 1.9375rem / 2);
  }

  .large-offset-1 {
    margin-left: 8.33333%;
  }

  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.33333% + 1.9375rem / 2);
  }

  .large-offset-2 {
    margin-left: 16.66667%;
  }

  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.66667% + 1.9375rem / 2);
  }

  .large-offset-3 {
    margin-left: 25%;
  }

  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 1.9375rem / 2);
  }

  .large-offset-4 {
    margin-left: 33.33333%;
  }

  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.33333% + 1.9375rem / 2);
  }

  .large-offset-5 {
    margin-left: 41.66667%;
  }

  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.66667% + 1.9375rem / 2);
  }

  .large-offset-6 {
    margin-left: 50%;
  }

  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 1.9375rem / 2);
  }

  .large-offset-7 {
    margin-left: 58.33333%;
  }

  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.33333% + 1.9375rem / 2);
  }

  .large-offset-8 {
    margin-left: 66.66667%;
  }

  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.66667% + 1.9375rem / 2);
  }

  .large-offset-9 {
    margin-left: 75%;
  }

  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 1.9375rem / 2);
  }

  .large-offset-10 {
    margin-left: 83.33333%;
  }

  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.33333% + 1.9375rem / 2);
  }

  .large-offset-11 {
    margin-left: 91.66667%;
  }

  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.66667% + 1.9375rem / 2);
  }
}

.grid-y {
  display: flex;
  flex-flow: column nowrap;
}

.grid-y > .cell {
  height: auto;
  max-height: none;
}

.grid-y > .auto {
  height: auto;
}

.grid-y > .shrink {
  height: auto;
}

.grid-y > .small-shrink,
.grid-y > .small-full,
.grid-y > .small-1,
.grid-y > .small-2,
.grid-y > .small-3,
.grid-y > .small-4,
.grid-y > .small-5,
.grid-y > .small-6,
.grid-y > .small-7,
.grid-y > .small-8,
.grid-y > .small-9,
.grid-y > .small-10,
.grid-y > .small-11,
.grid-y > .small-12 {
  flex-basis: auto;
}

@media print,
screen and (min-width: 37.5em) {

  .grid-y > .medium-shrink,
  .grid-y > .medium-full,
  .grid-y > .medium-1,
  .grid-y > .medium-2,
  .grid-y > .medium-3,
  .grid-y > .medium-4,
  .grid-y > .medium-5,
  .grid-y > .medium-6,
  .grid-y > .medium-7,
  .grid-y > .medium-8,
  .grid-y > .medium-9,
  .grid-y > .medium-10,
  .grid-y > .medium-11,
  .grid-y > .medium-12 {
    flex-basis: auto;
  }
}

@media print,
screen and (min-width: 64em) {

  .grid-y > .large-shrink,
  .grid-y > .large-full,
  .grid-y > .large-1,
  .grid-y > .large-2,
  .grid-y > .large-3,
  .grid-y > .large-4,
  .grid-y > .large-5,
  .grid-y > .large-6,
  .grid-y > .large-7,
  .grid-y > .large-8,
  .grid-y > .large-9,
  .grid-y > .large-10,
  .grid-y > .large-11,
  .grid-y > .large-12 {
    flex-basis: auto;
  }
}

.grid-y > .small-1,
.grid-y > .small-2,
.grid-y > .small-3,
.grid-y > .small-4,
.grid-y > .small-5,
.grid-y > .small-6,
.grid-y > .small-7,
.grid-y > .small-8,
.grid-y > .small-9,
.grid-y > .small-10,
.grid-y > .small-11,
.grid-y > .small-12 {
  flex: 0 0 auto;
}

.grid-y > .small-1 {
  height: 8.33333%;
}

.grid-y > .small-2 {
  height: 16.66667%;
}

.grid-y > .small-3 {
  height: 25%;
}

.grid-y > .small-4 {
  height: 33.33333%;
}

.grid-y > .small-5 {
  height: 41.66667%;
}

.grid-y > .small-6 {
  height: 50%;
}

.grid-y > .small-7 {
  height: 58.33333%;
}

.grid-y > .small-8 {
  height: 66.66667%;
}

.grid-y > .small-9 {
  height: 75%;
}

.grid-y > .small-10 {
  height: 83.33333%;
}

.grid-y > .small-11 {
  height: 91.66667%;
}

.grid-y > .small-12 {
  height: 100%;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-y > .medium-auto {
    flex: 1 1 0;
    height: auto;
  }

  .grid-y > .medium-shrink,
  .grid-y > .medium-1,
  .grid-y > .medium-2,
  .grid-y > .medium-3,
  .grid-y > .medium-4,
  .grid-y > .medium-5,
  .grid-y > .medium-6,
  .grid-y > .medium-7,
  .grid-y > .medium-8,
  .grid-y > .medium-9,
  .grid-y > .medium-10,
  .grid-y > .medium-11,
  .grid-y > .medium-12 {
    flex: 0 0 auto;
  }

  .grid-y > .medium-shrink {
    height: auto;
  }

  .grid-y > .medium-1 {
    height: 8.33333%;
  }

  .grid-y > .medium-2 {
    height: 16.66667%;
  }

  .grid-y > .medium-3 {
    height: 25%;
  }

  .grid-y > .medium-4 {
    height: 33.33333%;
  }

  .grid-y > .medium-5 {
    height: 41.66667%;
  }

  .grid-y > .medium-6 {
    height: 50%;
  }

  .grid-y > .medium-7 {
    height: 58.33333%;
  }

  .grid-y > .medium-8 {
    height: 66.66667%;
  }

  .grid-y > .medium-9 {
    height: 75%;
  }

  .grid-y > .medium-10 {
    height: 83.33333%;
  }

  .grid-y > .medium-11 {
    height: 91.66667%;
  }

  .grid-y > .medium-12 {
    height: 100%;
  }
}

@media print,
screen and (min-width: 64em) {
  .grid-y > .large-auto {
    flex: 1 1 0;
    height: auto;
  }

  .grid-y > .large-shrink,
  .grid-y > .large-1,
  .grid-y > .large-2,
  .grid-y > .large-3,
  .grid-y > .large-4,
  .grid-y > .large-5,
  .grid-y > .large-6,
  .grid-y > .large-7,
  .grid-y > .large-8,
  .grid-y > .large-9,
  .grid-y > .large-10,
  .grid-y > .large-11,
  .grid-y > .large-12 {
    flex: 0 0 auto;
  }

  .grid-y > .large-shrink {
    height: auto;
  }

  .grid-y > .large-1 {
    height: 8.33333%;
  }

  .grid-y > .large-2 {
    height: 16.66667%;
  }

  .grid-y > .large-3 {
    height: 25%;
  }

  .grid-y > .large-4 {
    height: 33.33333%;
  }

  .grid-y > .large-5 {
    height: 41.66667%;
  }

  .grid-y > .large-6 {
    height: 50%;
  }

  .grid-y > .large-7 {
    height: 58.33333%;
  }

  .grid-y > .large-8 {
    height: 66.66667%;
  }

  .grid-y > .large-9 {
    height: 75%;
  }

  .grid-y > .large-10 {
    height: 83.33333%;
  }

  .grid-y > .large-11 {
    height: 91.66667%;
  }

  .grid-y > .large-12 {
    height: 100%;
  }
}

.grid-padding-y .grid-padding-y {
  margin-top: -0.71875rem;
  margin-bottom: -0.71875rem;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -0.96875rem;
    margin-bottom: -0.96875rem;
  }
}

.grid-padding-y > .cell {
  padding-top: 1.8125rem;
  padding-bottom: 1.8125rem;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-padding-y > .cell {
    padding-top: 2.0625rem;
    padding-bottom: 2.0625rem;
  }
}

.grid-margin-y {
  margin-top: -0.71875rem;
  margin-bottom: -0.71875rem;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-margin-y {
    margin-top: -0.96875rem;
    margin-bottom: -0.96875rem;
  }
}

.grid-margin-y > .cell {
  height: calc(100% - 1.4375rem);
  margin-top: 0.71875rem;
  margin-bottom: 0.71875rem;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.9375rem);
    margin-top: 0.96875rem;
    margin-bottom: 0.96875rem;
  }
}

.grid-margin-y > .auto {
  height: auto;
}

.grid-margin-y > .shrink {
  height: auto;
}

.grid-margin-y > .small-1 {
  height: calc(8.33333% - 1.4375rem);
}

.grid-margin-y > .small-2 {
  height: calc(16.66667% - 1.4375rem);
}

.grid-margin-y > .small-3 {
  height: calc(25% - 1.4375rem);
}

.grid-margin-y > .small-4 {
  height: calc(33.33333% - 1.4375rem);
}

.grid-margin-y > .small-5 {
  height: calc(41.66667% - 1.4375rem);
}

.grid-margin-y > .small-6 {
  height: calc(50% - 1.4375rem);
}

.grid-margin-y > .small-7 {
  height: calc(58.33333% - 1.4375rem);
}

.grid-margin-y > .small-8 {
  height: calc(66.66667% - 1.4375rem);
}

.grid-margin-y > .small-9 {
  height: calc(75% - 1.4375rem);
}

.grid-margin-y > .small-10 {
  height: calc(83.33333% - 1.4375rem);
}

.grid-margin-y > .small-11 {
  height: calc(91.66667% - 1.4375rem);
}

.grid-margin-y > .small-12 {
  height: calc(100% - 1.4375rem);
}

@media print,
screen and (min-width: 37.5em) {
  .grid-margin-y > .auto {
    height: auto;
  }

  .grid-margin-y > .shrink {
    height: auto;
  }

  .grid-margin-y > .small-1 {
    height: calc(8.33333% - 1.9375rem);
  }

  .grid-margin-y > .small-2 {
    height: calc(16.66667% - 1.9375rem);
  }

  .grid-margin-y > .small-3 {
    height: calc(25% - 1.9375rem);
  }

  .grid-margin-y > .small-4 {
    height: calc(33.33333% - 1.9375rem);
  }

  .grid-margin-y > .small-5 {
    height: calc(41.66667% - 1.9375rem);
  }

  .grid-margin-y > .small-6 {
    height: calc(50% - 1.9375rem);
  }

  .grid-margin-y > .small-7 {
    height: calc(58.33333% - 1.9375rem);
  }

  .grid-margin-y > .small-8 {
    height: calc(66.66667% - 1.9375rem);
  }

  .grid-margin-y > .small-9 {
    height: calc(75% - 1.9375rem);
  }

  .grid-margin-y > .small-10 {
    height: calc(83.33333% - 1.9375rem);
  }

  .grid-margin-y > .small-11 {
    height: calc(91.66667% - 1.9375rem);
  }

  .grid-margin-y > .small-12 {
    height: calc(100% - 1.9375rem);
  }

  .grid-margin-y > .medium-auto {
    height: auto;
  }

  .grid-margin-y > .medium-shrink {
    height: auto;
  }

  .grid-margin-y > .medium-1 {
    height: calc(8.33333% - 1.9375rem);
  }

  .grid-margin-y > .medium-2 {
    height: calc(16.66667% - 1.9375rem);
  }

  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.9375rem);
  }

  .grid-margin-y > .medium-4 {
    height: calc(33.33333% - 1.9375rem);
  }

  .grid-margin-y > .medium-5 {
    height: calc(41.66667% - 1.9375rem);
  }

  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.9375rem);
  }

  .grid-margin-y > .medium-7 {
    height: calc(58.33333% - 1.9375rem);
  }

  .grid-margin-y > .medium-8 {
    height: calc(66.66667% - 1.9375rem);
  }

  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.9375rem);
  }

  .grid-margin-y > .medium-10 {
    height: calc(83.33333% - 1.9375rem);
  }

  .grid-margin-y > .medium-11 {
    height: calc(91.66667% - 1.9375rem);
  }

  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.9375rem);
  }
}

@media print,
screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }

  .grid-margin-y > .large-shrink {
    height: auto;
  }

  .grid-margin-y > .large-1 {
    height: calc(8.33333% - 1.9375rem);
  }

  .grid-margin-y > .large-2 {
    height: calc(16.66667% - 1.9375rem);
  }

  .grid-margin-y > .large-3 {
    height: calc(25% - 1.9375rem);
  }

  .grid-margin-y > .large-4 {
    height: calc(33.33333% - 1.9375rem);
  }

  .grid-margin-y > .large-5 {
    height: calc(41.66667% - 1.9375rem);
  }

  .grid-margin-y > .large-6 {
    height: calc(50% - 1.9375rem);
  }

  .grid-margin-y > .large-7 {
    height: calc(58.33333% - 1.9375rem);
  }

  .grid-margin-y > .large-8 {
    height: calc(66.66667% - 1.9375rem);
  }

  .grid-margin-y > .large-9 {
    height: calc(75% - 1.9375rem);
  }

  .grid-margin-y > .large-10 {
    height: calc(83.33333% - 1.9375rem);
  }

  .grid-margin-y > .large-11 {
    height: calc(91.66667% - 1.9375rem);
  }

  .grid-margin-y > .large-12 {
    height: calc(100% - 1.9375rem);
  }
}

.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100vw;
}

.cell .grid-frame {
  width: 100%;
}

.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-container {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}

.cell-block-container > .grid-x {
  max-height: 100%;
  flex-wrap: nowrap;
}

@media print,
screen and (min-width: 37.5em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }

  .cell .medium-grid-frame {
    width: 100%;
  }

  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .medium-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }

  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }

  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}

@media print,
screen and (min-width: 64em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }

  .cell .large-grid-frame {
    width: 100%;
  }

  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .large-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }

  .large-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }

  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}

.grid-y.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100vh;
  width: auto;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-y.medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}

@media print,
screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}

.cell .grid-y.grid-frame {
  height: 100%;
}

@media print,
screen and (min-width: 37.5em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}

@media print,
screen and (min-width: 64em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}

.grid-margin-y {
  margin-top: -0.71875rem;
  margin-bottom: -0.71875rem;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-margin-y {
    margin-top: -0.96875rem;
    margin-bottom: -0.96875rem;
  }
}

.grid-margin-y > .cell {
  height: calc(100% - 1.4375rem);
  margin-top: 0.71875rem;
  margin-bottom: 0.71875rem;
}

@media print,
screen and (min-width: 37.5em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.9375rem);
    margin-top: 0.96875rem;
    margin-bottom: 0.96875rem;
  }
}

.grid-margin-y > .auto {
  height: auto;
}

.grid-margin-y > .shrink {
  height: auto;
}

.grid-margin-y > .small-1 {
  height: calc(8.33333% - 1.4375rem);
}

.grid-margin-y > .small-2 {
  height: calc(16.66667% - 1.4375rem);
}

.grid-margin-y > .small-3 {
  height: calc(25% - 1.4375rem);
}

.grid-margin-y > .small-4 {
  height: calc(33.33333% - 1.4375rem);
}

.grid-margin-y > .small-5 {
  height: calc(41.66667% - 1.4375rem);
}

.grid-margin-y > .small-6 {
  height: calc(50% - 1.4375rem);
}

.grid-margin-y > .small-7 {
  height: calc(58.33333% - 1.4375rem);
}

.grid-margin-y > .small-8 {
  height: calc(66.66667% - 1.4375rem);
}

.grid-margin-y > .small-9 {
  height: calc(75% - 1.4375rem);
}

.grid-margin-y > .small-10 {
  height: calc(83.33333% - 1.4375rem);
}

.grid-margin-y > .small-11 {
  height: calc(91.66667% - 1.4375rem);
}

.grid-margin-y > .small-12 {
  height: calc(100% - 1.4375rem);
}

@media print,
screen and (min-width: 37.5em) {
  .grid-margin-y > .auto {
    height: auto;
  }

  .grid-margin-y > .shrink {
    height: auto;
  }

  .grid-margin-y > .small-1 {
    height: calc(8.33333% - 1.9375rem);
  }

  .grid-margin-y > .small-2 {
    height: calc(16.66667% - 1.9375rem);
  }

  .grid-margin-y > .small-3 {
    height: calc(25% - 1.9375rem);
  }

  .grid-margin-y > .small-4 {
    height: calc(33.33333% - 1.9375rem);
  }

  .grid-margin-y > .small-5 {
    height: calc(41.66667% - 1.9375rem);
  }

  .grid-margin-y > .small-6 {
    height: calc(50% - 1.9375rem);
  }

  .grid-margin-y > .small-7 {
    height: calc(58.33333% - 1.9375rem);
  }

  .grid-margin-y > .small-8 {
    height: calc(66.66667% - 1.9375rem);
  }

  .grid-margin-y > .small-9 {
    height: calc(75% - 1.9375rem);
  }

  .grid-margin-y > .small-10 {
    height: calc(83.33333% - 1.9375rem);
  }

  .grid-margin-y > .small-11 {
    height: calc(91.66667% - 1.9375rem);
  }

  .grid-margin-y > .small-12 {
    height: calc(100% - 1.9375rem);
  }

  .grid-margin-y > .medium-auto {
    height: auto;
  }

  .grid-margin-y > .medium-shrink {
    height: auto;
  }

  .grid-margin-y > .medium-1 {
    height: calc(8.33333% - 1.9375rem);
  }

  .grid-margin-y > .medium-2 {
    height: calc(16.66667% - 1.9375rem);
  }

  .grid-margin-y > .medium-3 {
    height: calc(25% - 1.9375rem);
  }

  .grid-margin-y > .medium-4 {
    height: calc(33.33333% - 1.9375rem);
  }

  .grid-margin-y > .medium-5 {
    height: calc(41.66667% - 1.9375rem);
  }

  .grid-margin-y > .medium-6 {
    height: calc(50% - 1.9375rem);
  }

  .grid-margin-y > .medium-7 {
    height: calc(58.33333% - 1.9375rem);
  }

  .grid-margin-y > .medium-8 {
    height: calc(66.66667% - 1.9375rem);
  }

  .grid-margin-y > .medium-9 {
    height: calc(75% - 1.9375rem);
  }

  .grid-margin-y > .medium-10 {
    height: calc(83.33333% - 1.9375rem);
  }

  .grid-margin-y > .medium-11 {
    height: calc(91.66667% - 1.9375rem);
  }

  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.9375rem);
  }
}

@media print,
screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }

  .grid-margin-y > .large-shrink {
    height: auto;
  }

  .grid-margin-y > .large-1 {
    height: calc(8.33333% - 1.9375rem);
  }

  .grid-margin-y > .large-2 {
    height: calc(16.66667% - 1.9375rem);
  }

  .grid-margin-y > .large-3 {
    height: calc(25% - 1.9375rem);
  }

  .grid-margin-y > .large-4 {
    height: calc(33.33333% - 1.9375rem);
  }

  .grid-margin-y > .large-5 {
    height: calc(41.66667% - 1.9375rem);
  }

  .grid-margin-y > .large-6 {
    height: calc(50% - 1.9375rem);
  }

  .grid-margin-y > .large-7 {
    height: calc(58.33333% - 1.9375rem);
  }

  .grid-margin-y > .large-8 {
    height: calc(66.66667% - 1.9375rem);
  }

  .grid-margin-y > .large-9 {
    height: calc(75% - 1.9375rem);
  }

  .grid-margin-y > .large-10 {
    height: calc(83.33333% - 1.9375rem);
  }

  .grid-margin-y > .large-11 {
    height: calc(91.66667% - 1.9375rem);
  }

  .grid-margin-y > .large-12 {
    height: calc(100% - 1.9375rem);
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.4375rem);
}

@media print,
screen and (min-width: 37.5em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.9375rem);
  }
}

@media print,
screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.9375rem);
  }
}

@media print,
screen and (min-width: 37.5em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.9375rem);
  }
}

@media print,
screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.9375rem);
  }
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}

h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small {
  line-height: 0;
  color: #cacaca;
}

h1,
.h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2,
.h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3,
.h3 {
  font-size: 1.1875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4,
.h4 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h5,
.h5 {
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h6,
.h6 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media print,
screen and (min-width: 37.5em) {

  h1,
  .h1 {
    font-size: 3rem;
  }

  h2,
  .h2 {
    font-size: 2.5rem;
  }

  h3,
  .h3 {
    font-size: 1.9375rem;
  }

  h4,
  .h4 {
    font-size: 1.5625rem;
  }

  h5,
  .h5 {
    font-size: 1.25rem;
  }

  h6,
  .h6 {
    font-size: 1rem;
  }
}

a {
  line-height: inherit;
  color: #1779ba;
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:focus {
  color: #1468a0;
}

a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 75rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-left: 1.25rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}

dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
}

blockquote,
blockquote p {
  line-height: 1.6;
  color: #8a8a8a;
}

abbr,
abbr[title] {
  border-bottom: 1px dotted #0a0a0a;
  cursor: help;
  text-decoration: none;
}

figure {
  margin: 0;
}

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #0a0a0a;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a;
}

.lead {
  font-size: 125%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}

p + .stat {
  margin-top: -1rem;
}

ul.no-bullet,
ol.no-bullet {
  margin-left: 0;
  list-style: none;
}

cite,
.cite-block {
  display: block;
  color: #8a8a8a;
  font-size: 0.8125rem;
}

cite:before,
.cite-block:before {
  content: "— ";
}

code,
.code-inline {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
  display: inline;
  max-width: 100%;
  word-wrap: break-word;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

.code-block {
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
  display: block;
  overflow: auto;
  white-space: pre;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

@media print,
screen and (min-width: 37.5em) {
  .medium-text-left {
    text-align: left;
  }

  .medium-text-right {
    text-align: right;
  }

  .medium-text-center {
    text-align: center;
  }

  .medium-text-justify {
    text-align: justify;
  }
}

@media print,
screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }

  .large-text-right {
    text-align: right;
  }

  .large-text-center {
    text-align: center;
  }

  .large-text-justify {
    text-align: justify;
  }
}

.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    print-color-adjust: economy;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .show-for-print {
    display: block !important;
  }

  .hide-for-print {
    display: none !important;
  }

  table.show-for-print {
    display: table !important;
  }

  thead.show-for-print {
    display: table-header-group !important;
  }

  tbody.show-for-print {
    display: table-row-group !important;
  }

  tr.show-for-print {
    display: table-row !important;
  }

  td.show-for-print {
    display: table-cell !important;
  }

  th.show-for-print {
    display: table-cell !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .print-break-inside {
    page-break-inside: auto;
  }
}

[type="text"],
[type="password"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="month"],
[type="week"],
[type="email"],
[type="number"],
[type="search"],
[type="tel"],
[type="time"],
[type="url"],
[type="color"],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  appearance: none;
}

[type="text"]:focus,
[type="password"]:focus,
[type="date"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="month"]:focus,
[type="week"]:focus,
[type="email"]:focus,
[type="number"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="time"]:focus,
[type="url"]:focus,
[type="color"]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}

textarea[rows] {
  height: auto;
}

input:disabled,
input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

[type="submit"],
[type="button"] {
  appearance: none;
  border-radius: 0;
}

input[type="search"] {
  box-sizing: border-box;
}

::placeholder {
  color: #cacaca;
}

[type="file"],
[type="checkbox"],
[type="radio"] {
  margin: 0 0 1rem;
}

[type="checkbox"] + label,
[type="radio"] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
}

[type="checkbox"] + label[for],
[type="radio"] + label[for] {
  cursor: pointer;
}

label > [type="checkbox"],
label > [type="radio"] {
  margin-right: 0.5rem;
}

[type="file"] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a;
}

label.middle {
  margin: 0 0 1rem;
  line-height: 1.5;
  padding: 0.5625rem 0;
}

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a;
}

.input-group {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  align-items: stretch;
}

.input-group > :first-child,
.input-group > :first-child.input-group-button > * {
  border-radius: 0 0 0 0;
}

.input-group > :last-child,
.input-group > :last-child.input-group-button > * {
  border-radius: 0 0 0 0;
}

.input-group-label,
.input-group-field,
.input-group-button,
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  margin: 0;
  white-space: nowrap;
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #e6e6e6;
  color: #0a0a0a;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.input-group-label:first-child {
  border-right: 0;
}

.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  flex: 1 1 0px;
  min-width: 0;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  flex: 0 0 auto;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  align-self: stretch;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  max-width: 100%;
  margin-bottom: 0.5rem;
}

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #cacaca;
}

.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}

select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  appearance: none;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28138, 138, 138%29"></polygon></svg>');
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

@media screen and (min-width: 0\0) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}

select:focus {
  outline: none;
  border: 1px solid #8a8a8a;
  background-color: #fefefe;
  box-shadow: 0 0 5px #cacaca;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

select::-ms-expand {
  display: none;
}

select[multiple] {
  height: auto;
  background-image: none;
}

select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
}

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #f7eaeb;
}

.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}

.is-invalid-label {
  color: #cc4b37;
}

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #cc4b37;
}

.form-error.is-visible {
  display: block;
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

[data-whatinput="mouse"] .button {
  outline: 0;
}

.button.tiny {
  font-size: 0.6rem;
}

.button.small {
  font-size: 0.75rem;
}

.button.large {
  font-size: 1.25rem;
}

.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.button,
.button.disabled,
.button[disabled],
.button.disabled:hover,
.button[disabled]:hover,
.button.disabled:focus,
.button[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}

.button:hover,
.button:focus {
  background-color: #14679e;
  color: #fefefe;
}

.button.primary,
.button.primary.disabled,
.button.primary[disabled],
.button.primary.disabled:hover,
.button.primary[disabled]:hover,
.button.primary.disabled:focus,
.button.primary[disabled]:focus {
  background-color: #1779ba;
  color: #fefefe;
}

.button.primary:hover,
.button.primary:focus {
  background-color: #126195;
  color: #fefefe;
}

.button.secondary,
.button.secondary.disabled,
.button.secondary[disabled],
.button.secondary.disabled:hover,
.button.secondary[disabled]:hover,
.button.secondary.disabled:focus,
.button.secondary[disabled]:focus {
  background-color: #767676;
  color: #fefefe;
}

.button.secondary:hover,
.button.secondary:focus {
  background-color: #5e5e5e;
  color: #fefefe;
}

.button.success,
.button.success.disabled,
.button.success[disabled],
.button.success.disabled:hover,
.button.success[disabled]:hover,
.button.success.disabled:focus,
.button.success[disabled]:focus {
  background-color: #3adb76;
  color: #0a0a0a;
}

.button.success:hover,
.button.success:focus {
  background-color: #22bb5b;
  color: #0a0a0a;
}

.button.warning,
.button.warning.disabled,
.button.warning[disabled],
.button.warning.disabled:hover,
.button.warning[disabled]:hover,
.button.warning.disabled:focus,
.button.warning[disabled]:focus {
  background-color: #ffae00;
  color: #0a0a0a;
}

.button.warning:hover,
.button.warning:focus {
  background-color: #cc8b00;
  color: #0a0a0a;
}

.button.alert,
.button.alert.disabled,
.button.alert[disabled],
.button.alert.disabled:hover,
.button.alert[disabled]:hover,
.button.alert.disabled:focus,
.button.alert[disabled]:focus {
  background-color: #cc4b37;
  color: #fefefe;
}

.button.alert:hover,
.button.alert:focus {
  background-color: #a53b2a;
  color: #fefefe;
}

.button.hollow,
.button.hollow:hover,
.button.hollow:focus,
.button.hollow.disabled,
.button.hollow.disabled:hover,
.button.hollow.disabled:focus,
.button.hollow[disabled],
.button.hollow[disabled]:hover,
.button.hollow[disabled]:focus {
  background-color: transparent;
}

.button.hollow,
.button.hollow.disabled,
.button.hollow[disabled],
.button.hollow.disabled:hover,
.button.hollow[disabled]:hover,
.button.hollow.disabled:focus,
.button.hollow[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}

.button.hollow:hover,
.button.hollow:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}

.button.hollow.primary,
.button.hollow.primary.disabled,
.button.hollow.primary[disabled],
.button.hollow.primary.disabled:hover,
.button.hollow.primary[disabled]:hover,
.button.hollow.primary.disabled:focus,
.button.hollow.primary[disabled]:focus {
  border: 1px solid #1779ba;
  color: #1779ba;
}

.button.hollow.primary:hover,
.button.hollow.primary:focus {
  border-color: #0c3d5d;
  color: #0c3d5d;
}

.button.hollow.secondary,
.button.hollow.secondary.disabled,
.button.hollow.secondary[disabled],
.button.hollow.secondary.disabled:hover,
.button.hollow.secondary[disabled]:hover,
.button.hollow.secondary.disabled:focus,
.button.hollow.secondary[disabled]:focus {
  border: 1px solid #767676;
  color: #767676;
}

.button.hollow.secondary:hover,
.button.hollow.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}

.button.hollow.success,
.button.hollow.success.disabled,
.button.hollow.success[disabled],
.button.hollow.success.disabled:hover,
.button.hollow.success[disabled]:hover,
.button.hollow.success.disabled:focus,
.button.hollow.success[disabled]:focus {
  border: 1px solid #3adb76;
  color: #3adb76;
}

.button.hollow.success:hover,
.button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}

.button.hollow.warning,
.button.hollow.warning.disabled,
.button.hollow.warning[disabled],
.button.hollow.warning.disabled:hover,
.button.hollow.warning[disabled]:hover,
.button.hollow.warning.disabled:focus,
.button.hollow.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}

.button.hollow.warning:hover,
.button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}

.button.hollow.alert,
.button.hollow.alert.disabled,
.button.hollow.alert[disabled],
.button.hollow.alert.disabled:hover,
.button.hollow.alert[disabled]:hover,
.button.hollow.alert.disabled:focus,
.button.hollow.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}

.button.hollow.alert:hover,
.button.hollow.alert:focus {
  border-color: #67251a;
  color: #67251a;
}

.button.clear,
.button.clear:hover,
.button.clear:focus,
.button.clear.disabled,
.button.clear.disabled:hover,
.button.clear.disabled:focus,
.button.clear[disabled],
.button.clear[disabled]:hover,
.button.clear[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}

.button.clear,
.button.clear.disabled,
.button.clear[disabled],
.button.clear.disabled:hover,
.button.clear[disabled]:hover,
.button.clear.disabled:focus,
.button.clear[disabled]:focus {
  color: #1779ba;
}

.button.clear:hover,
.button.clear:focus {
  color: #0c3d5d;
}

.button.clear.primary,
.button.clear.primary.disabled,
.button.clear.primary[disabled],
.button.clear.primary.disabled:hover,
.button.clear.primary[disabled]:hover,
.button.clear.primary.disabled:focus,
.button.clear.primary[disabled]:focus {
  color: #1779ba;
}

.button.clear.primary:hover,
.button.clear.primary:focus {
  color: #0c3d5d;
}

.button.clear.secondary,
.button.clear.secondary.disabled,
.button.clear.secondary[disabled],
.button.clear.secondary.disabled:hover,
.button.clear.secondary[disabled]:hover,
.button.clear.secondary.disabled:focus,
.button.clear.secondary[disabled]:focus {
  color: #767676;
}

.button.clear.secondary:hover,
.button.clear.secondary:focus {
  color: #3b3b3b;
}

.button.clear.success,
.button.clear.success.disabled,
.button.clear.success[disabled],
.button.clear.success.disabled:hover,
.button.clear.success[disabled]:hover,
.button.clear.success.disabled:focus,
.button.clear.success[disabled]:focus {
  color: #3adb76;
}

.button.clear.success:hover,
.button.clear.success:focus {
  color: #157539;
}

.button.clear.warning,
.button.clear.warning.disabled,
.button.clear.warning[disabled],
.button.clear.warning.disabled:hover,
.button.clear.warning[disabled]:hover,
.button.clear.warning.disabled:focus,
.button.clear.warning[disabled]:focus {
  color: #ffae00;
}

.button.clear.warning:hover,
.button.clear.warning:focus {
  color: #805700;
}

.button.clear.alert,
.button.clear.alert.disabled,
.button.clear.alert[disabled],
.button.clear.alert.disabled:hover,
.button.clear.alert[disabled]:hover,
.button.clear.alert.disabled:focus,
.button.clear.alert[disabled]:focus {
  color: #cc4b37;
}

.button.clear.alert:hover,
.button.clear.alert:focus {
  color: #67251a;
}

.button.disabled,
.button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em;
  content: "";
  border-bottom-width: 0;
  border-color: #fcfcff transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}

.button.dropdown.hollow::after,
.button.dropdown.clear::after {
  border-top-color: #1779ba;
}

.button.dropdown.hollow.primary::after,
.button.dropdown.clear.primary::after {
  border-top-color: #1779ba;
}

.button.dropdown.hollow.secondary::after,
.button.dropdown.clear.secondary::after {
  border-top-color: #767676;
}

.button.dropdown.hollow.success::after,
.button.dropdown.clear.success::after {
  border-top-color: #3adb76;
}

.button.dropdown.hollow.warning::after,
.button.dropdown.clear.warning::after {
  border-top-color: #ffae00;
}

.button.dropdown.hollow.alert::after,
.button.dropdown.clear.alert::after {
  border-top-color: #cc4b37;
}

.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

a.button:hover,
a.button:focus {
  text-decoration: none;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

@media print,
screen and (max-width: 37.49875em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em),
screen and (min-width: 37.5em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print,
screen and (min-width: 37.5em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 37.49875em) {
  .show-for-medium {
    display: none !important;
  }
}

@media print,
screen and (min-width: 37.5em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 37.49875em),
screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print,
screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important;
  }
}

@media print,
screen and (min-width: 64em) and (max-width: 74.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em),
screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.show-on-focus:active,
.show-on-focus:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}

@media screen and (orientation: landscape) {

  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}

@media screen and (orientation: portrait) {

  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}

@media screen and (orientation: landscape) {

  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}

@media screen and (orientation: portrait) {

  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.show-for-dark-mode {
  display: none;
}

.hide-for-dark-mode {
  display: block;
}

@media screen and (prefers-color-scheme: dark) {
  .show-for-dark-mode {
    display: block !important;
  }

  .hide-for-dark-mode {
    display: none !important;
  }
}

.show-for-ie {
  display: none;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  .show-for-ie {
    display: block !important;
  }

  .hide-for-ie {
    display: none !important;
  }
}

.show-for-sticky {
  display: none;
}

.is-stuck .show-for-sticky {
  display: block;
}

.is-stuck .hide-for-sticky {
  display: none;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.clearfix::before,
.clearfix::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}

.clearfix::after {
  clear: both;
}

.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print,
screen and (min-width: 37.5em) {
  .medium-order-1 {
    order: 1;
  }

  .medium-order-2 {
    order: 2;
  }

  .medium-order-3 {
    order: 3;
  }

  .medium-order-4 {
    order: 4;
  }

  .medium-order-5 {
    order: 5;
  }

  .medium-order-6 {
    order: 6;
  }
}

@media print,
screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }

  .large-order-2 {
    order: 2;
  }

  .large-order-3 {
    order: 3;
  }

  .large-order-4 {
    order: 4;
  }

  .large-order-5 {
    order: 5;
  }

  .large-order-6 {
    order: 6;
  }
}

.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-reverse {
  flex-direction: row-reverse;
}

.flex-dir-column {
  flex-direction: column;
}

.flex-dir-column-reverse {
  flex-direction: column-reverse;
}

@media print,
screen and (min-width: 37.5em) {
  .medium-flex-container {
    display: flex;
  }

  .medium-flex-child-auto {
    flex: 1 1 auto;
  }

  .medium-flex-child-grow {
    flex: 1 0 auto;
  }

  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }

  .medium-flex-dir-row {
    flex-direction: row;
  }

  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }

  .medium-flex-dir-column {
    flex-direction: column;
  }

  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}

@media print,
screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }

  .large-flex-child-auto {
    flex: 1 1 auto;
  }

  .large-flex-child-grow {
    flex: 1 0 auto;
  }

  .large-flex-child-shrink {
    flex: 0 1 auto;
  }

  .large-flex-dir-row {
    flex-direction: row;
  }

  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }

  .large-flex-dir-column {
    flex-direction: column;
  }

  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}

* {
  transition-timing-function: ease;
}

button {
  cursor: pointer;
}

.wp-block-cover {
  background-color: transparent;
}

/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on December 1, 2020 */
@font-face {
  font-family: "infinibold";
  src: url("../webfonts/infini/infini-gras-webfont.woff2") format("woff2"),
    url("../webfonts/infini/infini-gras-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "infiniitalic";
  src: url("../webfonts/infini/infini-italique-webfont.woff2") format("woff2"),
    url("../webfonts/infini/infini-italique-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "infini_pictoregular";
  src: url("../webfonts/infini/infini-picto-webfont.woff2") format("woff2"),
    url("../webfonts/infini/infini-picto-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "infiniregular";
  src: url("../webfonts/infini/infini-romain-webfont.woff2") format("woff2"),
    url("../webfonts/infini/infini-romain-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  color: #2b2c3c;
  font-family: "inter", sans-serif;
}

a {
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.has-background.has-black-background-color,
.has-background-dim.has-black-background-color {
  background-color: #2b2c3c;
}

.has-background.has-grey-background-color,
.has-background-dim.has-grey-background-color {
  background-color: #6b7280;
}

.has-background.has-silver-background-color,
.has-background-dim.has-silver-background-color {
  background-color: #e5e7eb;
}

.has-background.has-white-background-color,
.has-background-dim.has-white-background-color {
  background-color: #fcfcff;
}

.has-background.has-red-background-color,
.has-background-dim.has-red-background-color {
  background-color: #ef4444;
}

.has-background.has-lilac-background-color,
.has-background-dim.has-lilac-background-color {
  background-color: #c2bfe5;
}

.has-background.has-blue-background-color,
.has-background-dim.has-blue-background-color {
  background-color: #3b82f6;
}

.has-background.has-green-background-color,
.has-background-dim.has-green-background-color {
  background-color: #10b981;
}

.has-background.has-olive-background-color,
.has-background-dim.has-olive-background-color {
  background-color: #55643c;
}

.has-background.has-sunshine-background-color,
.has-background-dim.has-sunshine-background-color {
  background-color: #f7d44f;
}

.has-background.has-mint-background-color,
.has-background-dim.has-mint-background-color {
  background-color: #b6de83;
}

.has-background.has-rust-background-color,
.has-background-dim.has-rust-background-color {
  background-color: #6b2912;
}

.has-background.has-waxflower-background-color,
.has-background-dim.has-waxflower-background-color {
  background-color: #fcba9e;
}

.has-background.has-transparent-background-color,
.has-background-dim.has-transparent-background-color {
  background-color: "transparent";
}

.has-background.has-sunshine-pattern-gradient-background,
.has-background-dim.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.has-background.has-sunshine-pattern-gradient-background:before,
.has-background-dim.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

:root .has-black-color {
  color: #2b2c3c;
}

:root .has-black-color:visited,
:root .has-black-color:active,
:root .has-black-color:hover {
  color: #2b2c3c;
}

:root .has-grey-color {
  color: #6b7280;
}

:root .has-grey-color:visited,
:root .has-grey-color:active,
:root .has-grey-color:hover {
  color: #6b7280;
}

:root .has-silver-color {
  color: #e5e7eb;
}

:root .has-silver-color:visited,
:root .has-silver-color:active,
:root .has-silver-color:hover {
  color: #e5e7eb;
}

:root .has-white-color {
  color: #fcfcff;
}

:root .has-white-color:visited,
:root .has-white-color:active,
:root .has-white-color:hover {
  color: #fcfcff;
}

:root .has-red-color {
  color: #ef4444;
}

:root .has-red-color:visited,
:root .has-red-color:active,
:root .has-red-color:hover {
  color: #ef4444;
}

:root .has-blue-color {
  color: #3b82f6;
}

:root .has-blue-color:visited,
:root .has-blue-color:active,
:root .has-blue-color:hover {
  color: #3b82f6;
}

:root .has-green-color {
  color: #10b981;
}

:root .has-green-color:visited,
:root .has-green-color:active,
:root .has-green-color:hover {
  color: #10b981;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "komu-b";
  line-height: 1.25em;
}

h1 {
  font-weight: 500;
  margin-bottom: 0px;
  font-size: 3.125rem;
  line-height: 3.125rem;
}

@media print,
screen and (min-width: 64em) {
  h1 {
    font-size: 3.75rem;
    line-height: 3.75rem;
    margin-bottom: 20px;
  }
}

h2 {
  font-family: "komu-b";
  font-weight: 500;
  font-size: 2.5rem;
  line-height: normal;
}

h2.is-style-margin-bottom {
  margin-bottom: 20px;
}

h3 {
  font-family: "infiniregular";
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 2.6875rem;
  margin-bottom: 0px;
}

@media print,
screen and (min-width: 64em) {
  h3 {
    font-size: 4.375rem;
    line-height: 4.5625rem;
  }
}

h3.is-style-margin-bottom {
  margin-bottom: 20px;
}

h4 {
  font-family: "infiniregular";
  font-weight: normal;
  font-size: 1.3125rem;
}

h5 {
  font-family: "infiniregular";
  font-weight: 700;
  font-size: 1.0625rem;
}

h6 {
  font-size: 0.9375rem;
  font-weight: 300;
}

.light {
  font-weight: 300;
}

.heavy {
  font-weight: 700;
}

.cell-gutenberg-content a:not(.button):not(.wp-block-button__link) {
  color: inherit;
}

.cell-gutenberg-content a:not(.button):not(.wp-block-button__link):hover {
  opacity: 0.75;
}

.cell-gutenberg-content h2 a,
.cell-gutenberg-content h3 a,
.cell-gutenberg-content h4 a,
.cell-gutenberg-content h5 a,
.cell-gutenberg-content h6 a {
  text-decoration: underline;
}

p {
  font-weight: 300;
  line-height: 1.5em;
}

.cell-gutenberg-content p.has-small-font-size {
  font-size: 0.8125rem;
}

.cell-gutenberg-content p,
.cell-gutenberg-content p.has-normal-font-size {
  font-size: 1rem;
}

.cell-gutenberg-content p.has-medium-font-size {
  font-size: 1.125rem;
  line-height: 2rem;
  font-weight: 400;
}

.cell-gutenberg-content p.has-large-font-size {
  font-size: 1.375rem;
}

.cell-gutenberg-content p.has-xlarge-font-size {
  font-size: 1.625rem;
}

.cell-gutenberg-content p.has-xxlarge-font-size {
  font-size: 1.875rem;
}

.cell-gutenberg-content p a {
  padding: 1px 5px;
  font-weight: 500;
  background: linear-gradient(45deg,
      rgba(247, 212, 79, 0.75),
      rgba(247, 212, 79, 0.25));
  border-radius: 3px;
}

.cell-gutenberg-content ul,
.cell-gutenberg-content ol {
  font-weight: 300;
  font-size: 1rem;
  padding: 0 3rem;
}

mark {
  background-color: #f7d44f;
}

s {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

s:before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: block;
  content: "";
  background-image: url(../images/strikethrough-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 38%;
}

.has-background-dim s:before,
.has-black-background-color s:before {
  background-image: url(../images/strikethrough-white.svg);
}

sup {
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-size: inherit;
  vertical-align: unset;
  line-height: inherit;
  top: auto;
}

sup:before {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -8%;
  padding-top: 28%;
  display: block;
  content: "";
  background-image: url(../images/circle-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 38%;
  z-index: -1;
}

@media print,
screen and (min-width: 37.5em) {
  sup:before {
    height: 110%;
    bottom: -15%;
    padding-top: 35%;
  }
}

.has-background-dim sup:before,
.has-black-background-color sup:before {
  background-image: url(../images/circle-white.svg);
}

@keyframes spinIt {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(0.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(0.25rem);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(1rem);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes slideOut {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-1rem);
  }
}

.button {
  border-radius: 10px;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 1.125rem;
  font-family: "inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  color: #2b2c3c;
  background-color: #f7d44f;
}

.button:focus {
  outline: none;
}

.button:disabled {
  filter: grayscale(1);
}

.button i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.button.has-black-background-color {
  background-color: #2b2c3c;
}

.button.has-grey-background-color {
  background-color: #6b7280;
}

.button.has-silver-background-color {
  background-color: #e5e7eb;
}

.button.has-white-background-color {
  background-color: #fcfcff;
}

.button.has-red-background-color {
  background-color: #ef4444;
}

.button.has-lilac-background-color {
  background-color: #c2bfe5;
}

.button.has-blue-background-color {
  background-color: #3b82f6;
}

.button.has-green-background-color {
  background-color: #10b981;
}

.button.has-olive-background-color {
  background-color: #55643c;
}

.button.has-sunshine-background-color {
  background-color: #f7d44f;
}

.button.has-mint-background-color {
  background-color: #b6de83;
}

.button.has-rust-background-color {
  background-color: #6b2912;
}

.button.has-waxflower-background-color {
  background-color: #fcba9e;
}

.button.has-transparent-background-color {
  background-color: "transparent";
}

.button.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.button.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.button.has-black-background-color {
  color: #fcfcff;
}

.button.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.button.has-no-shadow {
  box-shadow: none;
}

.button.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.button.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.button:hover,
.button:focus {
  color: #2b2c3c;
  background-color: #f5c81e;
}

.button:focus {
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3),
    inset 0 0 0 2px rgba(252, 252, 255, 0.75);
}

.button-secondary {
  line-height: 1.4;
  font-size: 1.125rem;
  font-family: "inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  background-color: transparent;
  box-shadow: none;
  border-width: 2px;
  border-style: solid;
  font-size: 16px;
  padding: 12px 16px;
}

.button-secondary:focus {
  outline: none;
}

.button-secondary:disabled {
  filter: grayscale(1);
}

.button-secondary i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.button-secondary.has-black-background-color {
  background-color: #2b2c3c;
}

.button-secondary.has-grey-background-color {
  background-color: #6b7280;
}

.button-secondary.has-silver-background-color {
  background-color: #e5e7eb;
}

.button-secondary.has-white-background-color {
  background-color: #fcfcff;
}

.button-secondary.has-red-background-color {
  background-color: #ef4444;
}

.button-secondary.has-lilac-background-color {
  background-color: #c2bfe5;
}

.button-secondary.has-blue-background-color {
  background-color: #3b82f6;
}

.button-secondary.has-green-background-color {
  background-color: #10b981;
}

.button-secondary.has-olive-background-color {
  background-color: #55643c;
}

.button-secondary.has-sunshine-background-color {
  background-color: #f7d44f;
}

.button-secondary.has-mint-background-color {
  background-color: #b6de83;
}

.button-secondary.has-rust-background-color {
  background-color: #6b2912;
}

.button-secondary.has-waxflower-background-color {
  background-color: #fcba9e;
}

.button-secondary.has-transparent-background-color {
  background-color: "transparent";
}

.button-secondary.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.button-secondary.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.button-secondary.has-black-background-color {
  color: #fcfcff;
}

.button-secondary.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.button-secondary.has-no-shadow {
  box-shadow: none;
}

.button-secondary.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.button-secondary.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.button-secondary:hover,
.button-secondary:focus {
  opacity: 0.75;
  background-color: rgba(43, 44, 60, 0.05);
}

.button-secondary:focus {
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3),
    inset 0 0 0 2px rgba(252, 252, 255, 0.75);
}

.button-tertiary {
  border-radius: 10px;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  font-family: "inter", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0px;
  box-shadow: none;
}

.button-tertiary:focus {
  outline: none;
}

.button-tertiary:disabled {
  filter: grayscale(1);
}

.button-tertiary i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.button-tertiary.has-black-background-color {
  background-color: #2b2c3c;
}

.button-tertiary.has-grey-background-color {
  background-color: #6b7280;
}

.button-tertiary.has-silver-background-color {
  background-color: #e5e7eb;
}

.button-tertiary.has-white-background-color {
  background-color: #fcfcff;
}

.button-tertiary.has-red-background-color {
  background-color: #ef4444;
}

.button-tertiary.has-lilac-background-color {
  background-color: #c2bfe5;
}

.button-tertiary.has-blue-background-color {
  background-color: #3b82f6;
}

.button-tertiary.has-green-background-color {
  background-color: #10b981;
}

.button-tertiary.has-olive-background-color {
  background-color: #55643c;
}

.button-tertiary.has-sunshine-background-color {
  background-color: #f7d44f;
}

.button-tertiary.has-mint-background-color {
  background-color: #b6de83;
}

.button-tertiary.has-rust-background-color {
  background-color: #6b2912;
}

.button-tertiary.has-waxflower-background-color {
  background-color: #fcba9e;
}

.button-tertiary.has-transparent-background-color {
  background-color: "transparent";
}

.button-tertiary.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.button-tertiary.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.button-tertiary.has-black-background-color {
  color: #fcfcff;
}

.button-tertiary.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.button-tertiary.has-no-shadow {
  box-shadow: none;
}

.button-tertiary.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.button-tertiary.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.button-tertiary:after {
  transition: bottom 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  content: "";
  border-width: 1px;
  border-style: solid;
  position: absolute;
  bottom: -2px;
  left: 0px;
  right: 0px;
}

.button-tertiary:hover {
  opacity: 0.75;
}

.button-tertiary:focus::after {
  border-width: 2px;
}

.button-tertiary:not(.has-text-color) {
  color: inherit;
}

.button-quaternary {
  border-radius: 5px;
  padding: 5px 10px;
  line-height: 1.4;
  font-size: 0.9rem;
  font-family: "inter", sans-serif;
  font-weight: 500;
  background-color: #fcba9e;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.button-quaternary:hover {
  background-color: #fba885;
}

.button-quaternary:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(43, 44, 60, 0.25);
}

.fontawesome-icon {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .fontawesome-icon {
    max-width: 60rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .fontawesome-icon {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.fontawesome-icon.alignwide {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .fontawesome-icon.alignwide {
    max-width: 75rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .fontawesome-icon.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.fontawesome-icon.alignfull {
  max-width: none;
}

.fontawesome-icon.alignfull > .grid-container {
  max-width: none;
}

.fontawesome-icon.aligncenter {
  text-align: center;
}

.fontawesome-icon.alignleft {
  text-align: left;
}

.fontawesome-icon.alignright {
  text-align: right;
}

.cell-gutenberg-content > * {
  padding-right: 1.8125rem;
  padding-left: 1.8125rem;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 60rem;
}

@media print,
screen and (min-width: 37.5em) {
  .cell-gutenberg-content > * {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.cell-gutenberg-content > .alignwide {
  max-width: 75rem;
}

.cell-gutenberg-content > .alignfull {
  max-width: none;
  width: 100%;
}

.cell-gutenberg-content .wp-block-group {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.cell-gutenberg-content .wp-block-group.alignfull {
  max-width: none;
  width: 100%;
}

.cell-gutenberg-content .wp-block-group.alignwide {
  max-width: 75rem;
}

.editor-styles-wrapper .wp-block-group {
  border: 3px dashed #ccc;
}

.wp-block-group {
  padding-top: 60px;
  padding-bottom: 60px;
}

.wp-block-group .wp-block-group {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .wp-block-group .wp-block-group {
    max-width: 60rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .wp-block-group .wp-block-group {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wp-block-group .wp-block-group.alignwide {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .wp-block-group .wp-block-group.alignwide {
    max-width: 75rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .wp-block-group .wp-block-group.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wp-block-group .wp-block-group.alignfull {
  max-width: none;
}

.wp-block-group .wp-block-group.alignfull > .grid-container {
  max-width: none;
}

.wp-block-group.has-vertical-padding-top-none {
  padding-top: 0px;
}

.wp-block-group.has-vertical-padding-top-small {
  padding-top: 23px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-group.has-vertical-padding-top-small {
    padding-top: 30px;
  }
}

.wp-block-group.has-vertical-padding-top-medium {
  padding-top: 23px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-group.has-vertical-padding-top-medium {
    padding-top: 60px;
  }
}

.wp-block-group.has-vertical-padding-top-large {
  padding-top: 40px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-group.has-vertical-padding-top-large {
    padding-top: 100px;
  }
}

.wp-block-group.has-vertical-padding-bottom-none {
  padding-bottom: 0px;
}

.wp-block-group.has-vertical-padding-bottom-small {
  padding-bottom: 23px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-group.has-vertical-padding-bottom-small {
    padding-bottom: 30px;
  }
}

.wp-block-group.has-vertical-padding-bottom-medium {
  padding-bottom: 23px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-group.has-vertical-padding-bottom-medium {
    padding-bottom: 60px;
  }
}

.wp-block-group.has-vertical-padding-bottom-large {
  padding-bottom: 40px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-group.has-vertical-padding-bottom-large {
    padding-bottom: 100px;
  }
}

.wp-block-group.has-horizontal-padding-right-small {
  padding-right: 0px;
}

@media print,
screen and (max-width: 63.99875em) {
  .wp-block-group.has-horizontal-padding-right-small.has-background {
    padding-right: 20px;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-group.has-horizontal-padding-right-small {
    padding-right: 60px;
  }
}

.wp-block-group.has-horizontal-padding-right-medium {
  padding-right: 20px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-group.has-horizontal-padding-right-medium {
    padding-right: 100px;
  }
}

.wp-block-group.has-horizontal-padding-right-large {
  padding-right: 20px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-group.has-horizontal-padding-right-large {
    padding-right: 160px;
  }
}

.wp-block-group.has-horizontal-padding-left-small {
  padding-left: 0px;
}

@media print,
screen and (max-width: 63.99875em) {
  .wp-block-group.has-horizontal-padding-left-small.has-background {
    padding-left: 20px;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-group.has-horizontal-padding-left-small {
    padding-left: 60px;
  }
}

.wp-block-group.has-horizontal-padding-left-medium {
  padding-left: 20px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-group.has-horizontal-padding-left-medium {
    padding-left: 100px;
  }
}

.wp-block-group.has-horizontal-padding-left-large {
  padding-left: 20px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-group.has-horizontal-padding-left-large {
    padding-left: 160px;
  }
}

.wp-block-group.has-max-width-fifty > * {
  max-width: 50%;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-group.has-max-width-seventyfive > * {
    max-width: 75%;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-group.has-max-width-eightyfive > * {
    max-width: 85%;
  }
}

.wp-block-group.has-max-width-seventyfive > *,
.wp-block-group.has-max-width-eightyfive > * {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-group.is-style-cards-icons {
  position: relative;
  margin-bottom: 20px;
  background-color: white;
  padding: 23px 23px;
  padding-top: 80px;
}

.wp-block-group.is-style-cards-icons .fontawesome-icon {
  color: grey;
  position: absolute;
  left: 23px;
  top: 23px;
  font-size: 2rem;
}

@media print,
screen and (min-width: 64em) {
  .cards-grid-x.card-style-recent {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 400px;
  }
}

@media print,
screen and (min-width: 64em) {
  .cards-grid-x.card-style-recent > .cell.cell-card {
    flex: 0 0 auto;
    height: calc(50% - 1.9375rem);
    margin-top: 0.96875rem;
    margin-bottom: 0.96875rem;
    flex: 0 0 auto;
    width: calc(33.33333% - 1.9375rem);
    margin-left: 0.96875rem;
    margin-right: 0.96875rem;
    margin-right: 0.71875rem;
    margin-left: 0.71875rem;
    display: flex;
  }

  .cards-grid-x.card-style-recent > .cell.cell-card:first-child {
    flex: 0 0 auto;
    height: calc(100% - 1.9375rem);
    margin-top: 0.96875rem;
    margin-bottom: 0.96875rem;
    flex: 0 0 auto;
    width: calc(66.66667% - 1.9375rem);
    margin-left: 0.96875rem;
    margin-right: 0.96875rem;
    margin-right: 0.71875rem;
    margin-left: 0.71875rem;
  }
}

@media print,
screen and (min-width: 64em) and (min-width: 37.5em) {
  .cards-grid-x.card-style-recent > .cell.cell-card:first-child {
    margin-right: 0.96875rem;
    margin-left: 0.96875rem;
  }
}

@media print,
screen and (min-width: 64em) and (min-width: 37.5em) {
  .cards-grid-x.card-style-recent > .cell.cell-card {
    margin-right: 0.96875rem;
    margin-left: 0.96875rem;
  }
}

@media print,
screen and (min-width: 64em) and (min-width: 64em) {
  .cards-grid-x.feature-first .cell-card:first-child {
    flex: 0 0 auto;
    width: calc(100% - 1.9375rem);
    margin-left: 0.96875rem;
    margin-right: 0.96875rem;
    margin-right: 0.71875rem;
    margin-left: 0.71875rem;
    height: auto;
  }
}

@media print,
screen and (min-width: 64em) and (min-width: 64em) and (min-width: 37.5em) {
  .cards-grid-x.feature-first .cell-card:first-child {
    margin-right: 0.96875rem;
    margin-left: 0.96875rem;
  }
}

@media print,
screen and (min-width: 64em) {
  .cards-grid-x.feature-first .cell-card:first-child:hover .card-inner:before {
    background-color: grey;
  }

  .cards-grid-x.feature-first .cell-card:first-child .card-inner {
    display: flex;
    flex-direction: row;
  }
}

.cards-grid-x > .cell.cell-in-page-info-panel {
  flex: 0 0 auto;
  width: calc(100% - 1.4375rem);
  margin-left: 0.71875rem;
  margin-right: 0.71875rem;
  min-height: 500px;
  display: none;
  background-color: white;
  border: 1px solid #ccc;
}

.cards-grid-x > .cell.cell-in-page-info-panel .card-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
}

@media print,
screen and (min-width: 37.5em) {
  .cards-grid-x > .cell.cell-in-page-info-panel .card-inner {
    flex-direction: row;
  }
}

.cards-grid-x > .cell.cell-in-page-info-panel .card-inner .card-image {
  height: auto;
  display: flex;
}

@media print,
screen and (min-width: 37.5em) {
  .cards-grid-x > .cell.cell-in-page-info-panel .card-inner .card-image {
    width: 40%;
  }
}

.cards-grid-x > .cell.cell-in-page-info-panel .card-inner .card-image img {
  object-fit: cover;
}

.cards-grid-x > .cell.cell-in-page-info-panel .card-inner .card-content {
  padding: 60px 80px;
}

@media print,
screen and (min-width: 37.5em) {
  .cards-grid-x > .cell.cell-in-page-info-panel .card-inner .card-content {
    width: 60%;
  }
}

.cards-grid-x > .cell.cell-in-page-info-panel .card-inner .card-content .card-position {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.cards-grid-x > .cell.cell-in-page-info-panel .card-inner .card-content .title {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.cards-grid-x > .cell.cell-in-page-info-panel .card-inner .card-content .card-excerpt {
  font-size: 0.9rem;
}

.filter-no-results,
.cell-no-search-results {
  font-size: 1.2rem;
  width: auto !important;
}

.filter-no-results.filter-no-results,
.cell-no-search-results.filter-no-results {
  display: none;
}

.filter-no-results p,
.cell-no-search-results p {
  font-size: 1.2rem;
}

.cards-grid-x div.cell.cell-card {
  height: 500px;
}

.cell-card {
  position: relative;
  background-color: white;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.19);
  overflow: hidden;
  height: 500px;
}

.cell-card .card-inner {
  height: 100%;
}

.cell-card .cover-link {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 100;
}

.cell-card .card-icon,
.cell-card .card-date,
.cell-card .card-parent {
  display: none;
}

.cell-card .card-image {
  width: 100%;
  background-color: #f1f1f1;
  position: relative;
}

.cell-card .card-image > img {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cell-card .card-image .card-image-overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cell-card .card-image .card-image-overlay > img {
  max-width: 70%;
}

.cell-card .card-content {
  position: relative;
  overflow: hidden;
  padding: 23px 23px;
}

.cell-card .card-content h4 {
  display: flex;
  flex-direction: row;
}

.cell-card .card-content h4 > *:after {
  content: "/";
  padding-left: 5px;
  padding-right: 5px;
}

.cell-card .card-content h4 > *:last-child:after {
  content: none;
}

.cell-card .card-content h4:after {
  content: none;
}

.cell-card .card-content .card-link {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.cell-card.card-view-all {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  padding: 30px;
  min-height: 200px;
}

.cell-card.card-view-all .view-all-title {
  color: white;
  font-size: 24px;
  font-family: "Work Sans", sans-serif;
  font-weight: bold;
}

.cell-card.card-view-all .card-read-more {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.cell-card .card-hover {
  display: none;
}

.cell-card.title-yes .card-content .title {
  display: block !important;
}

.cell-card.title-no .card-content .title {
  display: none !important;
}

.cell-card.excerpt-yes .card-content .card-excerpt {
  display: block !important;
}

.cell-card.excerpt-no .card-content .card-excerpt {
  display: none !important;
}

.cards-grid-x.accordion-cards div.cell.cell-card {
  width: calc(100% - 1.437rem);
  height: auto;
}

.cards-grid-x.accordion-cards .cell-card {
  cursor: pointer;
}

.cards-grid-x.accordion-cards .cell-card.is-open .card-content .title::after {
  content: "\f077";
}

.cards-grid-x.accordion-cards .cell-card .cover-link {
  display: none;
}

.cards-grid-x.accordion-cards .cell-card .card-image {
  display: none;
}

.cards-grid-x.accordion-cards .cell-card .card-content {
  max-height: none;
}

@media print,
screen and (min-width: 37.5em) {
  .cards-grid-x.accordion-cards .cell-card .card-content {
    display: flex;
  }
}

.cards-grid-x.accordion-cards .cell-card .card-content h4 > *::after {
  display: none;
}

.cards-grid-x.accordion-cards .cell-card .card-content .card-category-name {
  display: none;
}

.cards-grid-x.accordion-cards .cell-card .card-content .card-text {
  flex: 1;
  min-height: 0;
}

.cards-grid-x.accordion-cards .cell-card .card-content .title {
  position: relative;
  padding-right: 18px;
}

.cards-grid-x.accordion-cards .cell-card .card-content .title::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "\f078";
}

.cards-grid-x.accordion-cards .cell-card .card-content .card-excerpt {
  display: none;
}

.cards-grid-x.accordion-cards .cell-card .card-read-more {
  display: none;
}

.template-block.has-vertical-padding-top-none {
  padding-top: 0px;
}

.template-block.has-vertical-padding-top-small {
  padding-top: 23px;
}

@media print,
screen and (min-width: 64em) {
  .template-block.has-vertical-padding-top-small {
    padding-top: 30px;
  }
}

.template-block.has-vertical-padding-top-medium {
  padding-top: 23px;
}

@media print,
screen and (min-width: 64em) {
  .template-block.has-vertical-padding-top-medium {
    padding-top: 60px;
  }
}

.template-block.has-vertical-padding-top-large {
  padding-top: 40px;
}

@media print,
screen and (min-width: 64em) {
  .template-block.has-vertical-padding-top-large {
    padding-top: 100px;
  }
}

.template-block.has-vertical-padding-bottom-none {
  padding-bottom: 0px;
}

.template-block.has-vertical-padding-bottom-small {
  padding-bottom: 23px;
}

@media print,
screen and (min-width: 64em) {
  .template-block.has-vertical-padding-bottom-small {
    padding-bottom: 30px;
  }
}

.template-block.has-vertical-padding-bottom-medium {
  padding-bottom: 23px;
}

@media print,
screen and (min-width: 64em) {
  .template-block.has-vertical-padding-bottom-medium {
    padding-bottom: 60px;
  }
}

.template-block.has-vertical-padding-bottom-large {
  padding-bottom: 40px;
}

@media print,
screen and (min-width: 64em) {
  .template-block.has-vertical-padding-bottom-large {
    padding-bottom: 100px;
  }
}

.template-block.has-horizontal-padding-right-small {
  padding-right: 0px;
}

@media print,
screen and (max-width: 63.99875em) {
  .template-block.has-horizontal-padding-right-small.has-background {
    padding-right: 20px;
  }
}

@media print,
screen and (min-width: 64em) {
  .template-block.has-horizontal-padding-right-small {
    padding-right: 60px;
  }
}

.template-block.has-horizontal-padding-right-medium {
  padding-right: 20px;
}

@media print,
screen and (min-width: 64em) {
  .template-block.has-horizontal-padding-right-medium {
    padding-right: 100px;
  }
}

.template-block.has-horizontal-padding-right-large {
  padding-right: 20px;
}

@media print,
screen and (min-width: 64em) {
  .template-block.has-horizontal-padding-right-large {
    padding-right: 160px;
  }
}

.template-block.has-horizontal-padding-left-small {
  padding-left: 0px;
}

@media print,
screen and (max-width: 63.99875em) {
  .template-block.has-horizontal-padding-left-small.has-background {
    padding-left: 20px;
  }
}

@media print,
screen and (min-width: 64em) {
  .template-block.has-horizontal-padding-left-small {
    padding-left: 60px;
  }
}

.template-block.has-horizontal-padding-left-medium {
  padding-left: 20px;
}

@media print,
screen and (min-width: 64em) {
  .template-block.has-horizontal-padding-left-medium {
    padding-left: 100px;
  }
}

.template-block.has-horizontal-padding-left-large {
  padding-left: 20px;
}

@media print,
screen and (min-width: 64em) {
  .template-block.has-horizontal-padding-left-large {
    padding-left: 160px;
  }
}

.template-block.has-max-width-fifty > * {
  max-width: 50%;
}

@media print,
screen and (min-width: 64em) {
  .template-block.has-max-width-seventyfive > * {
    max-width: 75%;
  }
}

@media print,
screen and (min-width: 64em) {
  .template-block.has-max-width-eightyfive > * {
    max-width: 85%;
  }
}

.bjm-cards-wrapper.alignwide {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .bjm-cards-wrapper.alignwide {
    max-width: 75rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .bjm-cards-wrapper.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.bjm-cards-wrapper.bjm-cards-wrapper-archive-page {
  padding-top: 40px;
  padding-bottom: 40px;
}

.wp-block-column .bjm-hubspot-form {
  padding-left: 0px;
  padding-right: 0px;
}

#hs-pu-form {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  background: rgba(0, 0, 0, 0.2);
}

#hs-pu-form section {
  width: 90%;
  max-width: 600px;
  height: 90%;
  max-height: 400px;
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

body.hs-pu-form-open #hs-pu-form {
  display: block;
}

.bjm-hubspot-form {
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .bjm-hubspot-form {
    max-width: 60rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .bjm-hubspot-form {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.bjm-hubspot-form.alignwide {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .bjm-hubspot-form.alignwide {
    max-width: 75rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .bjm-hubspot-form.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.bjm-hubspot-form.alignfull {
  max-width: none;
}

.bjm-hubspot-form.alignfull > .grid-container {
  max-width: none;
}

.bjm-hubspot-form .bjm-hubspot-form-inner {
  background: grey;
  color: white;
  padding: 30px 23px;
  position: relative;
}

@media print,
screen and (min-width: 37.5em) {
  .bjm-hubspot-form.shift-form-up {
    margin-top: -130px;
  }
}

@media print,
screen and (min-width: 64em) {
  .bjm-hubspot-form.shift-form-up {
    margin-top: -350px;
  }
}

.bjm-hubspot-form h2 {
  line-height: 40px;
  color: white;
  margin-bottom: 30px;
}

.bjm-hubspot-form.is-style-full-width .bjm-hubspot-form-inner {
  display: flex;
  flex-direction: column;
}

@media print,
screen and (min-width: 64em) {
  .bjm-hubspot-form.is-style-full-width .bjm-hubspot-form-inner {
    flex-direction: row;
  }
}

.bjm-hubspot-form.is-style-full-width .bjm-hubspot-form-inner .hbspt-form {
  order: 2;
}

@media print,
screen and (min-width: 64em) {
  .bjm-hubspot-form.is-style-full-width .bjm-hubspot-form-inner .hbspt-form {
    order: 1;
    width: 65%;
  }
}

.bjm-hubspot-form.is-style-full-width .bjm-hubspot-form-inner .hbspt-form h2 {
  max-width: none;
  min-height: auto;
}

.bjm-hubspot-form.is-style-full-width .bjm-hubspot-form-inner .hubspot-icon {
  order: 1;
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  max-width: none;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media print,
screen and (min-width: 64em) {
  .bjm-hubspot-form.is-style-full-width .bjm-hubspot-form-inner .hubspot-icon {
    order: 2;
    width: 35%;
    padding-right: 50px;
    padding-bottom: 0px;
  }
}

.bjm-hubspot-form.is-style-full-width .bjm-hubspot-form-inner .hubspot-icon i {
  font-size: 6rem;
}

@media print,
screen and (min-width: 64em) {
  .bjm-hubspot-form.is-style-full-width .bjm-hubspot-form-inner .hubspot-icon i {
    font-size: 13rem;
  }
}

.bjm-hubspot-form.is-style-full-width.has-icon h2 {
  min-height: auto;
}

.bjm-hubspot-form.is-style-grey {
  background-color: transparent;
  padding-left: 0px;
  padding-right: 0px;
}

.bjm-hubspot-form.is-style-grey input[type="text"],
.bjm-hubspot-form.is-style-grey input[type="email"],
.bjm-hubspot-form.is-style-grey input[type="tel"],
.bjm-hubspot-form.is-style-grey textarea {
  border-color: #2b2c3c !important;
}

.bjm-hubspot-form.is-style-grey .inputs-list label {
  color: #2b2c3c;
}

.bjm-hubspot-form.has-icon h2 {
  max-width: 60%;
  min-height: 140px;
}

.bjm-hubspot-form.has-icon .hubspot-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  max-width: 36%;
}

.bjm-hubspot-form.has-icon .hubspot-icon i {
  font-size: 8rem;
}

.bjm-hubspot-form input[type="text"],
.bjm-hubspot-form input[type="email"],
.bjm-hubspot-form input[type="tel"],
.bjm-hubspot-form textarea {
  color: white;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border: none;
  box-shadow: none;
  outline: none;
}

.bjm-hubspot-form textarea {
  min-height: 100px;
}

.bjm-hubspot-form label {
  display: none;
}

.bjm-hubspot-form .inputs-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.bjm-hubspot-form .inputs-list label {
  color: white;
  display: block;
}

.bjm-hubspot-form .hs-form-required {
  display: none;
}

.bjm-hubspot-form .hs-submit .hs-button {
  background: none;
  background-color: grey;
}

@media print,
screen and (min-width: 37.5em) {
  .wp-block-buttons.alignright {
    text-align: right;
  }
}

.wp-block-buttons .wp-block-button {
  margin-right: 4px;
}

.wp-block-buttons .wp-block-button:first-child {
  margin-left: 0px;
}

.wp-block-buttons .wp-block-button:last-child {
  margin-right: 0px;
}

@media print,
screen and (min-width: 37.5em) {
  .wp-block-buttons.is-style-vertical-list.alignright {
    text-align: right;
  }
}

.wp-block-buttons.is-style-vertical-list .wp-block-button {
  margin: auto;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 0px;
  display: block;
}

.wp-block-buttons.is-style-vertical-list .wp-block-button:first-child {
  margin-left: 0px;
}

.wp-block-buttons.is-style-vertical-list .wp-block-button:last-child {
  margin-right: 0px;
}

.wp-block-buttons.is-style-vertical-list .wp-block-button.link-type-lightboxvideo a {
  position: relative;
  padding-right: 65px;
}

.wp-block-buttons.is-style-vertical-list .wp-block-button.link-type-lightboxvideo a:after {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 100%;
  color: white;
  content: "\f04b";
  font-family: "Font Awesome 5 Pro";
  font-weight: normal;
  background-color: rgba(0, 0, 0, 0.1);
}

.wp-block-buttons.is-style-vertical-list .wp-block-button.aligncenter {
  display: flex;
  justify-content: center;
}

.wp-block-buttons.is-style-vertical-list .wp-block-button.is-style-tertiary .wp-block-button__link {
  min-width: 250px;
  position: relative;
  text-align: left;
}

.wp-block-buttons.is-style-vertical-list .wp-block-button.is-style-tertiary .wp-block-button__link:after {
  position: absolute;
  right: 0px;
  top: 0px;
}

.button {
  margin-bottom: 0px;
}

.wp-block-button.aligncenter {
  display: flex;
  justify-content: center;
}

.wp-block-button .wp-block-button__link {
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.5);
}

.wp-block-button.link-type-lightboxvideo a {
  position: relative;
  padding-right: 65px;
}

.wp-block-button.link-type-lightboxvideo a:after {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 100%;
  color: white;
  content: "\f04b";
  font-family: "Font Awesome 5 Pro";
  font-weight: normal;
  background-color: rgba(0, 0, 0, 0.1);
}

.wp-block-button.is-style-tertiary .wp-block-button__link {
  box-shadow: none;
  background: none;
  border: none;
  padding: 0px;
}

.filters {
  display: flex;
  flex-direction: row;
  margin-bottom: 40px;
  align-items: center;
  position: relative;
}

@media print,
screen and (max-width: 37.49875em) {
  .filters {
    flex-direction: column;
    align-items: flex-start;
  }
}

.filters input,
.filters select {
  margin: 0px;
  border: 1px solid grey;
  border-radius: 0px;
}

@media print,
screen and (max-width: 37.49875em) {

  .filters input,
  .filters select {
    margin-top: 4px;
    margin-bottom: 4px;
  }
}

.filters select {
  appearance: none;
  -webkit-appearance: none;
}

.filters .filter {
  width: 100%;
  margin-right: 10px;
}

.filters .filter.filter-tabs-1 ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: row;
}

.filters .filter.filter-tabs-1 ul li {
  border: 1px solid grey;
  padding: 4px 8px;
  margin: 4px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  cursor: pointer;
}

.filters .filter.filter-tabs-1 ul li.selected {
  background-color: grey;
  color: white;
}

.filters .filter-title {
  padding-right: 20px;
  min-width: 90px;
}

@media print,
screen and (max-width: 37.49875em) {
  .filters .filter-title {
    padding-top: 16px;
    padding-bottom: 10px;
  }
}

.wp-block-image .aligncenter {
  text-align: center;
}

.wp-block-image .alignright {
  text-align: right;
}

.wp-block-image.has-drop-shadow {
  filter: drop-shadow(0 20px 20px rgba(5, 28, 45, 0.3));
}

.wp-block-image.is-style-image-triange-bottom-right {
  position: relative;
  overflow: hidden;
}

.wp-block-image.link-type-lightboxvideo {
  position: relative;
}

.wp-block-image.link-type-lightboxvideo:before {
  z-index: 0;
  display: block;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.wp-block-image.link-type-lightboxvideo a .video-play-button {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  display: flex;
  z-index: 100;
  cursor: pointer;
}

.wp-block-image.link-type-lightboxvideo a .video-play-button i {
  font-size: 4.5rem;
}

.bjm-quote-wrapper {
  position: relative;
  overflow: hidden;
}

.bjm-quote-wrapper .background-image {
  filter: blur(10px) contrast(0.2) brightness(190%);
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.bjm-quote-wrapper .bjm-quote-wrapper-inner {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 30px;
}

@media print,
screen and (min-width: 64em) {
  .bjm-quote-wrapper .bjm-quote-wrapper-inner {
    flex-direction: row;
    padding: 100px 50px;
  }
}

.bjm-quote-wrapper .bjm-quote-wrapper-inner img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 200px;
  display: block;
  margin-right: 20px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.bjm-quote-wrapper .bjm-quote-wrapper-inner .content {
  display: flex;
  flex-direction: column;
}

.bjm-quote-wrapper .bjm-quote-wrapper-inner .content .quote {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.bjm-quote-wrapper .bjm-quote-wrapper-inner .content .quote:before {
  content: '"';
}

.bjm-quote-wrapper .bjm-quote-wrapper-inner .content .quote:after {
  content: '"';
}

.bjm-quote-wrapper .bjm-quote-wrapper-inner .content .author {
  text-transform: uppercase;
  font-weight: bold;
}

.bjm-quote-wrapper .bjm-quote-wrapper-inner .content .position {
  font-size: 0.7rem;
}

.wp-block-quote.is-style-large {
  border-left: none;
  margin-bottom: 10px;
  font-size: 18px;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-quote.is-style-large p {
  margin-bottom: 0px;
  text-align: center;
  font-style: normal;
  font-size: 18px;
}

.wp-block-quote.is-style-large cite {
  text-align: center;
}

.has-dark-background-color .wp-block-quote p {
  color: white;
}

.bjm-partner-logos {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 16px;
}

@media screen and (min-width: 75em) {
  .bjm-partner-logos {
    max-width: 60rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .bjm-partner-logos {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.bjm-partner-logos.alignwide {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .bjm-partner-logos.alignwide {
    max-width: 75rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .bjm-partner-logos.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.bjm-partner-logos.alignfull {
  max-width: none;
}

.bjm-partner-logos.alignfull > .grid-container {
  max-width: none;
}

.bjm-partner-logos .cell-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bjm-partner-logos .cell-logo img.logo-entry {
  width: 80%;
  height: auto;
  display: block;
}

.wp-block-gallery .blocks-gallery-grid .blocks-gallery-item {
  width: 10%;
  margin-right: 20px !important;
}

.wp-block-gallery .blocks-gallery-grid .blocks-gallery-item:last-child {
  margin-right: 0px !important;
}

.wp-block-gallery .blocks-gallery-grid .blocks-gallery-item:first-child {
  width: 100%;
  margin-right: 0px !important;
}

.wp-block-gallery.is-style-lightbox-first .blocks-gallery-grid {
  position: relative;
}

.wp-block-gallery.is-style-lightbox-first .blocks-gallery-grid:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.wp-block-gallery.is-style-lightbox-first .blocks-gallery-grid .gallery-lightbox-button {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  color: white;
  display: flex;
  z-index: 100;
  cursor: pointer;
  font-weight: bold;
}

.wp-block-gallery.is-style-lightbox-first .blocks-gallery-grid .gallery-lightbox-button i {
  font-size: 2.5rem;
  margin-right: 10px;
}

.wp-block-gallery.is-style-lightbox-first .blocks-gallery-grid .blocks-gallery-item {
  margin: 0px;
}

.wp-block-gallery.is-style-lightbox-first .blocks-gallery-grid .blocks-gallery-item:not(:first-child) {
  display: none;
}

@media print,
screen and (max-width: 63.99875em) {
  .cell-gutenberg-content > .wp-block-cover > .wp-block-cover__inner-container {
    width: 100%;
  }
}

.wp-block-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  height: auto;
}

.wp-block-cover.has-drop-shadow {
  filter: drop-shadow(0 20px 20px rgba(5, 28, 45, 0.3));
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.alignwide {
    max-width: calc(75rem - 60px);
    margin-left: auto;
    margin-right: auto;
  }
}

.wp-block-cover.has-max-width-fifty > .wp-block-cover__inner-container > * {
  max-width: 50%;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-max-width-seventyfive > .wp-block-cover__inner-container > * {
    max-width: 75%;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-max-width-eightyfive > .wp-block-cover__inner-container > * {
    max-width: 85%;
  }
}

.wp-block-cover.alignfull.has-simple-padding-on {
  padding-right: 1.8125rem;
  padding-left: 1.8125rem;
}

@media print,
screen and (min-width: 37.5em) {
  .wp-block-cover.alignfull.has-simple-padding-on {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

@media print,
screen and (max-width: 63.99875em) {
  .wp-block-cover .wp-block-cover__inner-container {
    width: auto;
    padding-right: 0.71875rem;
    padding-left: 0.71875rem;
  }
}

@media print,
screen and (max-width: 63.99875em) and (min-width: 37.5em) {
  .wp-block-cover .wp-block-cover__inner-container {
    padding-right: 0.96875rem;
    padding-left: 0.96875rem;
  }
}

.wp-block-cover.is-style-header-smaller,
.wp-block-cover.is-style-header-small,
.wp-block-cover.is-style-header-large {
  color: white;
}

.wp-block-cover.is-style-header-smaller:before,
.wp-block-cover.is-style-header-small:before,
.wp-block-cover.is-style-header-large:before {
  opacity: 1 !important;
  background: linear-gradient(50deg,
      #1d252c 10%,
      rgba(38, 48, 56, 0.9) 50%,
      rgba(55, 67, 78, 0.8) 60%);
}

@media print,
screen and (min-width: 64em) {

  .wp-block-cover.is-style-header-smaller:before,
  .wp-block-cover.is-style-header-small:before,
  .wp-block-cover.is-style-header-large:before {
    background: linear-gradient(50deg,
        #1d252c 10%,
        rgba(38, 48, 56, 0.1) 50%,
        rgba(55, 67, 78, 0.1) 60%);
  }
}

@media print,
screen and (min-width: 37.5em) and (max-width: 63.99875em) {

  .wp-block-cover.is-style-header-smaller .wp-block-columns .wp-block-column:first-child,
  .wp-block-cover.is-style-header-small .wp-block-columns .wp-block-column:first-child,
  .wp-block-cover.is-style-header-large .wp-block-columns .wp-block-column:first-child {
    flex-basis: calc(70% - 23px) !important;
  }
}

@media print,
screen and (min-width: 64em) and (max-width: 74.99875em) {

  .wp-block-cover.is-style-header-smaller .wp-block-columns .wp-block-column:first-child,
  .wp-block-cover.is-style-header-small .wp-block-columns .wp-block-column:first-child,
  .wp-block-cover.is-style-header-large .wp-block-columns .wp-block-column:first-child {
    flex-basis: calc(65% - 23px) !important;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.is-style-header-smaller {
    min-height: 450px;
    height: 50vh;
  }

  .wp-block-cover.is-style-header-smaller:before {
    background: linear-gradient(50deg,
        #1d252c 10%,
        rgba(38, 48, 56, 0.9) 50%,
        rgba(55, 67, 78, 0.8) 60%);
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.is-style-header-small {
    min-height: 500px;
    height: 60vh;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.is-style-header-large {
    min-height: 600px;
    height: 70vh;
  }
}

.wp-block-cover.is-style-button-bottom {
  position: relative;
  align-items: flex-start;
  padding-top: 30px;
}

@media print,
screen and (max-width: 63.99875em) {
  .wp-block-cover.is-style-button-bottom {
    padding-bottom: 100px;
  }
}

.wp-block-cover.is-style-button-bottom .wp-block-buttons {
  padding-left: 0.71875rem;
  position: absolute;
  bottom: 30px;
  left: 23px;
}

@media print,
screen and (min-width: 37.5em) {
  .wp-block-cover.is-style-button-bottom .wp-block-buttons {
    padding-left: 0.96875rem;
  }
}

@media print,
screen and (min-width: 37.5em) {
  .wp-block-cover.is-style-button-bottom .wp-block-buttons {
    left: 32px;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.is-style-button-bottom .wp-block-buttons {
    left: 50px;
  }
}

.wp-block-cover.is-style-background-blur::before {
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  opacity: 1 !important;
}

.wp-block-cover.has-dark-background-color {
  background: grey;
  color: white;
}

.wp-block-cover.has-dark-background-color:before {
  opacity: 0 !important;
}

.bjm-popup-block {
  transition: opacity 0.25s;
  pointer-events: none;
  opacity: 0;
  position: fixed;
  z-index: 5000;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(128, 128, 128, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: none;
}

.bjm-popup-block.open {
  opacity: 1;
  pointer-events: all;
}

.bjm-popup-block .bjm-popup-block-inner {
  position: relative;
  max-width: calc(100vw - 60px);
}

.bjm-popup-block .bjm-popup-block-inner .bjm-popup-block-close {
  color: white;
  position: absolute;
  top: -30px;
  right: 0px;
}

.bjm-popup-block .bjm-popup-block-inner .bjm-popup-block-inner-content {
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.19);
}

.bjm-popup-block .bjm-popup-block-inner .bjm-popup-block-inner-content .wp-block-columns {
  padding-left: 0px;
  padding-right: 0px;
}

.bjm-popup-block .bjm-popup-block-inner .bjm-popup-block-inner-content .wp-block-columns .wp-block-column {
  margin: 0px;
}

@media print,
screen and (max-width: 37.49875em) {
  .bjm-popup-block .bjm-popup-block-inner .bjm-popup-block-inner-content .wp-block-columns .wp-block-column {
    min-height: auto;
  }
}

.bjm-popup-block .bjm-popup-block-inner .bjm-popup-block-inner-content .wp-block-columns .wp-block-cover {
  margin: 0px;
  clip-path: none;
  -webkit-clip-path: none;
}

@media print,
screen and (max-width: 37.49875em) {
  .bjm-popup-block .bjm-popup-block-inner .bjm-popup-block-inner-content .wp-block-columns .wp-block-cover {
    display: none;
  }
}

.bjm-social-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.bjm-social-wrapper.text-last .share-title {
  order: 2;
  margin-right: 0;
  margin-left: 10px;
}

@media print,
screen and (min-width: 37.5em) {
  .bjm-social-wrapper {
    justify-content: flex-end;
  }
}

.bjm-social-wrapper .share-title {
  order: 0;
  margin-right: 10px;
}

.bjm-social-wrapper .share-icons {
  order: 1;
}

.bjm-social-wrapper .share-icons i {
  font-size: 1.4rem;
  margin-left: 6px;
}

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #fff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #fff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-navigation {
  display: flex;
  margin-top: 30px;
}

.swiper-navigation .swiper-button-prev,
.swiper-navigation .swiper-button-next {
  border: 1px solid grey;
  width: 40px;
  height: 40px;
  color: #2b2c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin-top: 0px;
}

.swiper-navigation .swiper-button-prev:after,
.swiper-navigation .swiper-button-next:after {
  content: none;
}

.swiper-navigation .swiper-pagination {
  width: 70px;
  height: 40px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  bottom: auto;
  right: auto;
  left: auto;
}

.swiper-navigation .swiper-pagination > span {
  padding-left: 5px;
  padding-right: 5px;
}

.wp-block-group__inner-container .bjm-swiper-wrapper {
  width: auto;
  margin-right: -1.8125rem;
  margin-left: -1.8125rem;
}

@media print,
screen and (min-width: 37.5em) {
  .wp-block-group__inner-container .bjm-swiper-wrapper {
    margin-right: -2.0625rem;
    margin-left: -2.0625rem;
  }
}

@media screen and (min-width: 75em) {
  .wp-block-group__inner-container .bjm-swiper-wrapper {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.bjm-swiper-wrapper {
  padding-left: 0px;
  padding-right: 0px;
  max-width: none !important;
  width: 100%;
  left: 0px;
  max-width: 100vw;
  overflow: hidden;
  position: relative;
}

.bjm-swiper-wrapper.swiper-no-page-numbers .swiper-navigation .swiper-button-prev {
  margin-right: 12px;
}

.bjm-swiper-wrapper.swiper-no-page-numbers .swiper-navigation .swiper-pagination {
  display: none;
}

.bjm-swiper-wrapper .swiper-container {
  padding-right: 1.8125rem;
  padding-left: 1.8125rem;
  overflow: visible;
}

@media print,
screen and (min-width: 37.5em) {
  .bjm-swiper-wrapper .swiper-container {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.bjm-swiper-wrapper .swiper-container .swiper-wrapper {
  width: calc(100% - 0px);
}

.bjm-swiper-wrapper.alignwide .swiper-container {
  max-width: 75rem;
}

.is-style-swiper,
.wp-block-bjm-blocks-swiper {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 0px !important;
}

.is-style-swiper.wp-block-bjm-blocks-swiper .swiper-container,
.wp-block-bjm-blocks-swiper.wp-block-bjm-blocks-swiper .swiper-container {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.is-style-swiper.wp-block-bjm-blocks-swiper.alignwide,
.wp-block-bjm-blocks-swiper.wp-block-bjm-blocks-swiper.alignwide {
  max-width: 75rem;
}

@media screen and (min-width: 75em) {

  .is-style-swiper.wp-block-bjm-blocks-swiper.alignwide,
  .wp-block-bjm-blocks-swiper.wp-block-bjm-blocks-swiper.alignwide {
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {

  .is-style-swiper.wp-block-bjm-blocks-swiper.alignwide,
  .wp-block-bjm-blocks-swiper.wp-block-bjm-blocks-swiper.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

@media screen and (min-width: 75em) {

  .is-style-swiper.wp-block-bjm-blocks-swiper.alignwide .swiper-container,
  .wp-block-bjm-blocks-swiper.wp-block-bjm-blocks-swiper.alignwide .swiper-container {
    width: 100%;
  }

  .is-style-swiper.wp-block-bjm-blocks-swiper.alignwide .bjm-swiper-navigation-wrapper,
  .is-style-swiper.wp-block-bjm-blocks-swiper.alignwide .swiper-navy,
  .is-style-swiper.wp-block-bjm-blocks-swiper.alignwide .swiper-navigation,
  .wp-block-bjm-blocks-swiper.wp-block-bjm-blocks-swiper.alignwide .bjm-swiper-navigation-wrapper,
  .wp-block-bjm-blocks-swiper.wp-block-bjm-blocks-swiper.alignwide .swiper-navy,
  .wp-block-bjm-blocks-swiper.wp-block-bjm-blocks-swiper.alignwide .swiper-navigation {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.is-style-swiper .swiper-slide,
.wp-block-bjm-blocks-swiper .swiper-slide {
  max-width: none !important;
  min-height: 200px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.is-style-swiper .swiper-navy,
.is-style-swiper .swiper-navigation,
.wp-block-bjm-blocks-swiper .swiper-navy,
.wp-block-bjm-blocks-swiper .swiper-navigation {
  order: 3;
  margin-top: 0px;
  position: relative;
}

@media screen and (min-width: 75em) {

  .is-style-swiper .swiper-navy,
  .is-style-swiper .swiper-navigation,
  .wp-block-bjm-blocks-swiper .swiper-navy,
  .wp-block-bjm-blocks-swiper .swiper-navigation {
    margin-right: 1.8125rem;
    margin-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {

  .is-style-swiper .swiper-navy,
  .is-style-swiper .swiper-navigation,
  .wp-block-bjm-blocks-swiper .swiper-navy,
  .wp-block-bjm-blocks-swiper .swiper-navigation {
    margin-right: 2.0625rem;
    margin-left: 2.0625rem;
  }
}

.is-style-swiper.swiper-navigation-right .swiper-navy,
.is-style-swiper.swiper-navigation-right .swiper-navigation,
.wp-block-bjm-blocks-swiper.swiper-navigation-right .swiper-navy,
.wp-block-bjm-blocks-swiper.swiper-navigation-right .swiper-navigation {
  justify-content: flex-end;
}

.is-style-swiper .swiper-wrapper,
.wp-block-bjm-blocks-swiper .swiper-wrapper {
  order: 2;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media print,
screen and (min-width: 64em) {

  .is-style-swiper .swiper-wrapper,
  .wp-block-bjm-blocks-swiper .swiper-wrapper {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}

.is-style-swiper .bjm-swiper-navigation-wrapper,
.wp-block-bjm-blocks-swiper .bjm-swiper-navigation-wrapper {
  order: 1;
  margin-bottom: 10px;
}

@media screen and (min-width: 75em) {

  .is-style-swiper .bjm-swiper-navigation-wrapper,
  .wp-block-bjm-blocks-swiper .bjm-swiper-navigation-wrapper {
    margin-right: 1.8125rem;
    margin-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {

  .is-style-swiper .bjm-swiper-navigation-wrapper,
  .wp-block-bjm-blocks-swiper .bjm-swiper-navigation-wrapper {
    margin-right: 2.0625rem;
    margin-left: 2.0625rem;
  }
}

.is-style-swiper .bjm-swiper-navigation-wrapper .swiper-navigation-icons,
.wp-block-bjm-blocks-swiper .bjm-swiper-navigation-wrapper .swiper-navigation-icons {
  display: flex;
  flex-direction: row;
}

.is-style-swiper .bjm-swiper-navigation-wrapper .icon-navigation-entry,
.wp-block-bjm-blocks-swiper .bjm-swiper-navigation-wrapper .icon-navigation-entry {
  transition: border-color 0.25s;
  border-bottom: 4px solid #e6e7e8;
  padding-bottom: 4px;
  cursor: pointer;
  margin-right: 10px;
  font-size: 0px;
  flex-grow: 1;
}

@media print,
screen and (min-width: 37.5em) {

  .is-style-swiper .bjm-swiper-navigation-wrapper .icon-navigation-entry,
  .wp-block-bjm-blocks-swiper .bjm-swiper-navigation-wrapper .icon-navigation-entry {
    font-size: 0.9rem;
  }
}

.is-style-swiper .bjm-swiper-navigation-wrapper .icon-navigation-entry:last-child,
.wp-block-bjm-blocks-swiper .bjm-swiper-navigation-wrapper .icon-navigation-entry:last-child {
  margin-right: 0px;
}

.is-style-swiper .bjm-swiper-navigation-wrapper .icon-navigation-entry .icon,
.wp-block-bjm-blocks-swiper .bjm-swiper-navigation-wrapper .icon-navigation-entry .icon {
  transition: color 0.25s;
  font-size: 34px;
}

.is-style-swiper .bjm-swiper-navigation-wrapper .icon-navigation-entry.active,
.wp-block-bjm-blocks-swiper .bjm-swiper-navigation-wrapper .icon-navigation-entry.active {
  border-color: grey;
}

.is-style-swiper .bjm-swiper-navigation-wrapper .icon-navigation-entry.active .icon,
.wp-block-bjm-blocks-swiper .bjm-swiper-navigation-wrapper .icon-navigation-entry.active .icon {
  color: grey;
}

.bjm-recent-posts-wrapper {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .bjm-recent-posts-wrapper {
    max-width: 60rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .bjm-recent-posts-wrapper {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.bjm-recent-posts-wrapper.alignwide {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .bjm-recent-posts-wrapper.alignwide {
    max-width: 75rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .bjm-recent-posts-wrapper.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.bjm-recent-posts-wrapper.alignfull {
  max-width: none;
}

.bjm-recent-posts-wrapper.alignfull > .grid-container {
  max-width: none;
}

.bjm-recent-posts-wrapper > .grid-container {
  padding-left: 0px;
  padding-right: 0px;
}

.bjm-recent-posts-wrapper > .grid-container > .grid-x > .cell .card-inner {
  padding-bottom: 0px;
}

.bjm-recent-posts-wrapper > .grid-container > .grid-x > .cell .card-inner .card-image:after {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
}

.bjm-recent-posts-wrapper > .grid-container > .grid-x > .cell .card-inner .card-content {
  padding-bottom: 18px;
}

.bjm-recent-posts-wrapper > .grid-container > .grid-x > .cell .card-inner .title {
  font-size: 14px;
  margin-bottom: 0px;
}

.bjm-recent-posts-wrapper > .grid-container > .grid-x > .cell:first-child {
  height: auto;
}

@media print,
screen and (min-width: 64em) {
  .bjm-recent-posts-wrapper > .grid-container > .grid-x > .cell:first-child .card-image {
    position: absolute;
    height: 100%;
  }
}

.bjm-recent-posts-wrapper > .grid-container > .grid-x > .cell:first-child .card-image > img {
  height: 100%;
  object-fit: cover;
}

.bjm-recent-posts-wrapper > .grid-container > .grid-x > .cell:last-child {
  height: auto;
}

.bjm-recent-posts-wrapper > .grid-container > .grid-x > .cell:last-child .card-image {
  width: 100%;
  height: 0px;
  padding-top: 75%;
}

@media print,
screen and (min-width: 64em) {
  .bjm-recent-posts-wrapper > .grid-container > .grid-x > .cell:last-child .card-image {
    padding-top: 0;
    height: auto;
    position: absolute;
  }
}

.bjm-recent-posts-wrapper > .grid-container > .grid-x > .cell:last-child .card-image > img {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.bjm-recent-posts-wrapper > .grid-container > .grid-x.post-count-1 > .cell:first-child {
  width: 100%;
}

.bjm-recent-posts-wrapper > .grid-container > .grid-x.post-count-1 > .cell:first-child .card-image {
  position: relative;
  height: auto;
  width: 100%;
  min-height: 450px;
}

.bjm-recent-posts-wrapper > .grid-container > .grid-x.post-count-1 > .cell:last-child {
  display: none;
}

.bjm-recent-posts-wrapper > .grid-container > .grid-x.post-count-2 > .cell {
  height: 250px;
}

@media print,
screen and (min-width: 37.5em) {
  .bjm-recent-posts-wrapper > .grid-container > .grid-x.post-count-2 > .cell {
    height: 350px;
  }
}

@media print,
screen and (min-width: 64em) {
  .bjm-recent-posts-wrapper > .grid-container > .grid-x.post-count-2 > .cell {
    height: 450px;
  }
}

.bjm-recent-posts-wrapper > .grid-container > .grid-x.post-count-2 > .cell .card-image {
  height: auto;
  position: absolute;
}

.wp-block-columns {
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .wp-block-columns {
    max-width: 60rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .wp-block-columns {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wp-block-columns.alignwide {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .wp-block-columns.alignwide {
    max-width: 75rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .wp-block-columns.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wp-block-columns.alignfull {
  max-width: none;
}

.wp-block-columns.alignfull > .grid-container {
  max-width: none;
}

.wp-block-columns.has-simple-padding-off {
  padding: 0px !important;
}

.wp-block-columns.has-simple-padding-off .wp-block-column {
  margin-top: 0px;
  margin-bottom: 0px;
}

.wp-block-columns.has-simple-padding-off .wp-block-group.has-horizontal-padding-left-small {
  padding-left: 20px;
}

.wp-block-columns.has-simple-padding-off .wp-block-group.has-horizontal-padding-right-small {
  padding-left: 20px;
}

.wp-block-columns.is-style-contain-text {
  padding-left: 0;
  padding-right: 0;
}

@media print,
screen and (min-width: 37.5em) and (max-width: 63.99875em) {
  .wp-block-columns.is-style-contain-text {
    flex-wrap: wrap;
  }
}

@media print,
screen and (min-width: 37.5em) and (max-width: 63.99875em) {
  .wp-block-columns.is-style-contain-text > .wp-block-column {
    flex-basis: 100% !important;
  }
}

@media print,
screen and (min-width: 37.5em) and (max-width: 63.99875em) and (min-width: 37.5em) and (max-width: 63.99875em) {
  .wp-block-columns.is-style-contain-text > .wp-block-column .wp-block-cover {
    justify-content: center;
  }
}

.wp-block-columns.is-style-contain-text > .wp-block-column {
  margin-left: 0px !important;
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

@media print,
screen and (max-width: 63.99875em) {
  .wp-block-columns.is-style-contain-text > .wp-block-column {
    padding-top: 50px;
  }
}

.wp-block-columns.is-style-contain-text > .wp-block-column:first-child > *:not(.wp-block-cover) {
  margin-left: auto;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns.is-style-contain-text > .wp-block-column:first-child > *:not(.wp-block-cover) {
    margin-right: 0;
  }
}

.wp-block-columns.is-style-contain-text > .wp-block-column:last-child > *:not(.wp-block-cover) {
  margin-right: auto;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns.is-style-contain-text > .wp-block-column:last-child > *:not(.wp-block-cover) {
    margin-left: 0;
  }
}

.wp-block-columns.is-style-contain-text > .wp-block-column > *:not(.wp-block-cover) {
  max-width: calc(75rem / 2);
  width: 100%;
  padding-right: 1.8125rem;
  padding-left: 1.8125rem;
}

@media print,
screen and (max-width: 63.99875em) {
  .wp-block-columns.is-style-contain-text > .wp-block-column > *:not(.wp-block-cover) {
    margin-right: auto;
  }
}

@media print,
screen and (min-width: 37.5em) {
  .wp-block-columns.is-style-contain-text > .wp-block-column > *:not(.wp-block-cover) {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wp-block-columns.is-style-contain-text > .wp-block-column > .wp-block-cover {
  justify-content: flex-end;
}

@media print,
screen and (max-width: 63.99875em) {
  .wp-block-columns.is-style-contain-text > .wp-block-column > .wp-block-cover {
    margin-top: -50px;
  }
}

.wp-block-columns.is-style-contain-text > .wp-block-column > .wp-block-cover > .wp-block-cover__inner-container {
  padding-right: 1.8125rem;
  padding-left: 1.8125rem;
  width: 100%;
  max-width: calc(75rem / 2);
}

@media print,
screen and (min-width: 37.5em) {
  .wp-block-columns.is-style-contain-text > .wp-block-column > .wp-block-cover > .wp-block-cover__inner-container {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

@media print,
screen and (max-width: 63.99875em) {
  .wp-block-columns.is-style-contain-text > .wp-block-column > .wp-block-cover {
    min-height: 270px;
  }
}

.wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-image {
  margin-left: auto;
  margin-right: auto;
  height: 100px;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

@media screen and (min-width: 75em) {
  .wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-image {
    max-width: 60rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-image {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-image.alignwide {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-image.alignwide {
    max-width: 75rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-image.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-image.alignfull {
  max-width: none;
}

.wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-image.alignfull > .grid-container {
  max-width: none;
}

.wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-image img {
  max-width: 90%;
  display: block;
  max-height: 100px;
}

.wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-buttons {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-buttons {
    max-width: 60rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-buttons {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-buttons.alignwide {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-buttons.alignwide {
    max-width: 75rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-buttons.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-buttons.alignfull {
  max-width: none;
}

.wp-block-columns.is-style-blocks-images .wp-block-column .wp-block-buttons.alignfull > .grid-container {
  max-width: none;
}

.wp-block-columns.is-style-cards-icons .wp-block-column {
  transition: background-color 0.25s, color 0.25s;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  background-color: transparent;
  min-height: 400px;
  padding-bottom: 70px;
  position: relative;
}

.wp-block-columns.is-style-cards-icons .wp-block-column:hover {
  background-color: white;
  color: #2b2c3c;
}

.wp-block-columns.is-style-cards-icons .wp-block-column .fontawesome-icon {
  text-align: right;
  font-size: 70px;
  color: grey;
}

.wp-block-columns.is-style-cards-icons .wp-block-column .wp-block-cover {
  border-top: 4px solid grey;
  margin-left: -30px;
  margin-right: -30px;
  margin-top: -30px;
  width: auto;
  height: 120px;
  margin-bottom: 30px;
  min-height: auto;
  clip-path: none;
  -webkit-clip-path: none;
}

.wp-block-columns.is-style-cards-icons .wp-block-column .wp-block-button {
  position: absolute;
  bottom: 50px;
  left: 30px;
}

.wp-block-columns.is-style-equal-height .wp-block-column {
  flex: 1;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns.is-style-equal-height .wp-block-column {
    min-height: 250px;
  }
}

.wp-block-columns.is-style-equal-height .wp-block-cover {
  height: 100%;
  min-height: auto;
}

@media print,
screen and (max-width: 37.49875em) {
  .wp-block-columns.is-style-equal-height .wp-block-cover {
    padding-top: 50%;
    min-height: auto !important;
  }
}

.wp-block-columns.is-style-equal-height .wp-block-cover:after {
  content: none;
}

.wp-block-columns.is-style-equal-height .bjm-hubspot-form {
  height: 100%;
}

.wp-block-columns.is-style-equal-height .bjm-hubspot-form .bjm-hubspot-form-inner {
  height: 100%;
  display: flex;
  align-items: center;
}

.wp-block-columns .wp-block-image {
  margin: 0px;
}

.wrapper-bjm-contact-form-7 {
  padding: 23px;
}

.js-accordion-item {
  background-color: white;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  padding: 12px;
  padding-left: 80px;
  position: relative;
  margin-bottom: 10px;
}

.js-accordion-item h2 {
  font-size: 1.3rem;
  padding-top: 6px;
  margin-bottom: 0px;
}

.js-accordion-item .c-accordion__content {
  padding-top: 20px;
}

.js-accordion-item .fontawesome-icon {
  position: absolute;
  top: 6px;
  left: 0px;
  color: #0a0a0a;
  font-size: 2rem;
  width: 60px;
  color: grey;
  text-align: center;
  padding: 0px !important;
}

.wrapper-bjm-post-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.wrapper-bjm-post-meta .author-photo {
  margin-right: 16px;
  border-radius: 200px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.25);
}

.wrapper-bjm-post-meta .meta {
  font-size: 0.9rem;
}

.wrapper-bjm-post-meta .meta .meta-line-1 {
  font-weight: bold;
  margin-bottom: 3px;
}

.wp-block-bjm-blocks-blocks {
  margin-left: auto;
  margin-right: auto;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .wp-block-bjm-blocks-blocks {
    max-width: 60rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .wp-block-bjm-blocks-blocks {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wp-block-bjm-blocks-blocks.alignwide {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .wp-block-bjm-blocks-blocks.alignwide {
    max-width: 75rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .wp-block-bjm-blocks-blocks.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wp-block-bjm-blocks-blocks.alignfull {
  max-width: none;
}

.wp-block-bjm-blocks-blocks.alignfull > .grid-container {
  max-width: none;
}

@media screen and (min-width: 64em) and (min-width: 75em) {
  .wp-block-bjm-blocks-blocks.alignwide {
    max-width: 75rem;
    padding-right: 1.4375rem;
    padding-left: 1.4375rem;
  }
}

@media screen and (min-width: 64em) and (min-width: 75em) and (min-width: 37.5em) {
  .wp-block-bjm-blocks-blocks.alignwide {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-bjm-blocks-blocks.alignfull {
    max-width: none;
  }

  .wp-block-bjm-blocks-blocks.alignfull > .grid-container {
    max-width: none;
  }
}

.wp-block-bjm-blocks-blocks .wrapper-bjm-blocks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 11px;
  margin-bottom: 11px;
}

.wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block {
  width: 100%;
  margin: 0px;
  margin-top: 11px;
  margin-bottom: 11px;
}

@media print,
screen and (min-width: 37.5em) {
  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block {
    margin-left: 11px;
    margin-right: 11px;
  }
}

.wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.are-vertically-aligned-center .wp-block-bjm-blocks-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.are-vertically-aligned-bottom .wp-block-bjm-blocks-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media print,
screen and (max-width: 37.49875em) {
  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.no-wrap-small {
    flex-wrap: nowrap;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-small-1 .wp-block-bjm-blocks-block {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-small-2 .wp-block-bjm-blocks-block {
    width: calc(50% - 22px);
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-10 {
    width: 10%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-15 {
    width: 15%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-20 {
    width: 20%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-25 {
    width: 25%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-30 {
    width: 30%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-35 {
    width: 35%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-40 {
    width: 40%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-45 {
    width: 45%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-50 {
    width: 50%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-55 {
    width: 55%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-60 {
    width: 60%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-65 {
    width: 65%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-70 {
    width: 70%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-75 {
    width: 75%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-80 {
    width: 80%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-85 {
    width: 85%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-90 {
    width: 90%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-95 {
    width: 95%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-small-100 {
    width: 100%;
  }
}

@media print,
screen and (min-width: 37.5em) and (max-width: 63.99875em) {
  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.no-wrap-medium {
    flex-wrap: nowrap;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-medium-1 .wp-block-bjm-blocks-block {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-medium-2 .wp-block-bjm-blocks-block {
    width: calc(50% - 22px);
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-medium-3 .wp-block-bjm-blocks-block {
    width: calc(33.3% - 22px);
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-medium-4 .wp-block-bjm-blocks-block {
    width: calc(25% - 22px);
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-medium-5 .wp-block-bjm-blocks-block {
    width: calc(20% - 22px);
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-medium-6 .wp-block-bjm-blocks-block {
    width: calc(16.66% - 22px);
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-medium-7 .wp-block-bjm-blocks-block {
    width: calc(14.28% - 22px);
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-medium-8 .wp-block-bjm-blocks-block {
    width: calc(12.5% - 22px);
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-10 {
    width: 10%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-15 {
    width: 15%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-20 {
    width: 20%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-25 {
    width: 25%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-30 {
    width: 30%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-35 {
    width: 35%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-40 {
    width: 40%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-45 {
    width: 45%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-50 {
    width: 50%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-55 {
    width: 55%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-60 {
    width: 60%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-65 {
    width: 65%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-70 {
    width: 70%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-75 {
    width: 75%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-80 {
    width: 80%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-85 {
    width: 85%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-90 {
    width: 90%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-95 {
    width: 95%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-medium-100 {
    width: 100%;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.no-wrap-large {
    flex-wrap: nowrap;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-1 .wp-block-bjm-blocks-block {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-2 .wp-block-bjm-blocks-block {
    width: calc(50% - 22px);
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-3 .wp-block-bjm-blocks-block {
    width: calc(33.3% - 22px);
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-4 .wp-block-bjm-blocks-block {
    width: calc(25% - 22px);
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-5 .wp-block-bjm-blocks-block {
    width: calc(20% - 22px);
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-6 .wp-block-bjm-blocks-block {
    width: calc(16.66% - 22px);
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-7 .wp-block-bjm-blocks-block {
    width: calc(14.28% - 22px);
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-8 .wp-block-bjm-blocks-block {
    width: calc(12.5% - 22px);
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-10 {
    width: 10%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-15 {
    width: 15%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-20 {
    width: 20%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-25 {
    width: 25%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-30 {
    width: 30%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-35 {
    width: 35%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-40 {
    width: 40%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-45 {
    width: 45%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-50 {
    width: 50%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-55 {
    width: 55%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-60 {
    width: 60%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-65 {
    width: 65%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-70 {
    width: 70%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-75 {
    width: 75%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-80 {
    width: 80%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-85 {
    width: 85%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-90 {
    width: 90%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-95 {
    width: 95%;
  }

  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks .wp-block-bjm-blocks-block.width-large-100 {
    width: 100%;
  }
}

@media print,
screen and (min-width: 37.5em) and (max-width: 63.99875em) {
  .wp-block-group .wp-block-bjm-blocks-blocks {
    padding-left: 0px;
    padding-right: 0px;
    margin-left: -11px;
    margin-right: -11px;
  }
}

@media print,
screen and (min-width: 64em) and (max-width: 74.99875em) {
  .wp-block-group .wp-block-bjm-blocks-blocks {
    padding-left: 0px;
    padding-right: 0px;
    margin-left: -11px;
    margin-right: -11px;
  }
}

@media screen and (min-width: 75em) {
  .wp-block-group .wp-block-bjm-blocks-blocks {
    margin-left: auto;
    margin-right: auto;
  }
}

.wp-block-ub-tabbed-content-tab-holder {
  border-bottom: 1px solid lightgrey;
}

.wp-block-ub-tabbed-content-tabs-content {
  border: none;
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

@media print,
screen and (min-width: 37.5em) {
  .wp-block-ub-tabbed-content-tabs-content {
    padding-top: 25px;
  }
}

@media screen and (min-width: 75em) {
  .wp-block-ub-tabbed-content-tabs-content {
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .wp-block-ub-tabbed-content-tabs-content {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

@media print,
screen and (min-width: 37.5em) {
  .wp-block-ub-tabbed-content-tabs-content .wp-block-columns > .wp-block-column {
    flex-basis: 100% !important;
  }
}

@media screen and (max-width: 37.4375em) {
  .wp-block-columns .wp-block-column + .wp-block-column {
    margin-top: 2rem;
  }
}

.wp-block-columns.has-background {
  padding: 2rem 1.5rem;
}

@media print,
screen and (max-width: 37.49875em) {
  .wp-block-group.alignfull .wp-block-columns.has-background.alignwide {
    margin-left: -1.8125rem;
    margin-right: -1.8125rem;
    border-radius: 0;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns.is-style-rounded {
    border-radius: 10px;
  }
}

.section .wp-block-columns.is-style-rounded,
.wp-block-group .wp-block-columns.is-style-rounded {
  border-radius: 10px;
}

.wp-block-columns > .wp-block-column.has-vertical-padding-top-none {
  padding-top: 0px;
}

.wp-block-columns > .wp-block-column.has-vertical-padding-top-small {
  padding-top: 23px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns > .wp-block-column.has-vertical-padding-top-small {
    padding-top: 30px;
  }
}

.wp-block-columns > .wp-block-column.has-vertical-padding-top-medium {
  padding-top: 23px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns > .wp-block-column.has-vertical-padding-top-medium {
    padding-top: 60px;
  }
}

.wp-block-columns > .wp-block-column.has-vertical-padding-top-large {
  padding-top: 40px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns > .wp-block-column.has-vertical-padding-top-large {
    padding-top: 100px;
  }
}

.wp-block-columns > .wp-block-column.has-vertical-padding-bottom-none {
  padding-bottom: 0px;
}

.wp-block-columns > .wp-block-column.has-vertical-padding-bottom-small {
  padding-bottom: 23px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns > .wp-block-column.has-vertical-padding-bottom-small {
    padding-bottom: 30px;
  }
}

.wp-block-columns > .wp-block-column.has-vertical-padding-bottom-medium {
  padding-bottom: 23px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns > .wp-block-column.has-vertical-padding-bottom-medium {
    padding-bottom: 60px;
  }
}

.wp-block-columns > .wp-block-column.has-vertical-padding-bottom-large {
  padding-bottom: 40px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns > .wp-block-column.has-vertical-padding-bottom-large {
    padding-bottom: 100px;
  }
}

.wp-block-columns > .wp-block-column.has-horizontal-padding-right-small {
  padding-right: 0px;
}

@media print,
screen and (max-width: 63.99875em) {
  .wp-block-columns > .wp-block-column.has-horizontal-padding-right-small.has-background {
    padding-right: 20px;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns > .wp-block-column.has-horizontal-padding-right-small {
    padding-right: 60px;
  }
}

.wp-block-columns > .wp-block-column.has-horizontal-padding-right-medium {
  padding-right: 20px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns > .wp-block-column.has-horizontal-padding-right-medium {
    padding-right: 100px;
  }
}

.wp-block-columns > .wp-block-column.has-horizontal-padding-right-large {
  padding-right: 20px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns > .wp-block-column.has-horizontal-padding-right-large {
    padding-right: 160px;
  }
}

.wp-block-columns > .wp-block-column.has-horizontal-padding-left-small {
  padding-left: 0px;
}

@media print,
screen and (max-width: 63.99875em) {
  .wp-block-columns > .wp-block-column.has-horizontal-padding-left-small.has-background {
    padding-left: 20px;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns > .wp-block-column.has-horizontal-padding-left-small {
    padding-left: 60px;
  }
}

.wp-block-columns > .wp-block-column.has-horizontal-padding-left-medium {
  padding-left: 20px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns > .wp-block-column.has-horizontal-padding-left-medium {
    padding-left: 100px;
  }
}

.wp-block-columns > .wp-block-column.has-horizontal-padding-left-large {
  padding-left: 20px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns > .wp-block-column.has-horizontal-padding-left-large {
    padding-left: 160px;
  }
}

.wp-block-columns > .wp-block-column.has-max-width-fifty > * {
  max-width: 50%;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns > .wp-block-column.has-max-width-seventyfive > * {
    max-width: 75%;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-columns > .wp-block-column.has-max-width-eightyfive > * {
    max-width: 85%;
  }
}

.swiper-pagination {
  text-align: left;
  padding-right: 1.8125rem;
  padding-left: 1.8125rem;
}

@media print,
screen and (min-width: 37.5em) {
  .swiper-pagination {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.swiper-pagination .swiper-pagination-bullet {
  height: 5px;
  width: 40px;
  border-radius: 0px;
  background: #e5e7eb;
  opacity: 1;
  margin: 3px;
}

.swiper-pagination .swiper-pagination-bullet:focus {
  outline: 2px solid #2b2c3c;
  border-radius: 0px;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: #f0a32f;
}

@media print,
screen and (max-width: 63.99875em) {
  .swiper-navigation {
    justify-content: space-around;
  }
}

.wp-block-bjm-blocks-swiper {
  position: relative;
}

.bjm-swiper-wrapper .swiper-pagination {
  max-width: calc(100% - 120px);
}

.bjm-swiper-wrapper .cell.bjm_testimonial {
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
}

.bjm-swiper-wrapper .cell-cards-heading,
.bjm-swiper-wrapper .cell-cards-link {
  margin-top: 0;
}

@media print,
screen and (max-width: 63.99875em) {

  .bjm-swiper-wrapper .cell-cards-heading,
  .bjm-swiper-wrapper .cell-cards-link {
    width: calc(100% - 1.9375rem);
  }
}

@media print,
screen and (min-width: 64em) {

  .bjm-swiper-wrapper .cell-cards-heading,
  .bjm-swiper-wrapper .cell-cards-link {
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media print,
screen and (min-width: 64em) and (min-width: 37.5em) {

  .bjm-swiper-wrapper .cell-cards-heading,
  .bjm-swiper-wrapper .cell-cards-link {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.bjm-acf-card-swiper-wrapper .cards-heading-link {
  margin-bottom: 10px;
  margin-top: 0px;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link > .cell {
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link > .cell.cell-cards-heading .cards-intro-text {
  margin-top: 16px;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link > .cell.cell-cards-link {
  align-items: flex-start;
  white-space: nowrap;
}

@media print,
screen and (min-width: 64em) {
  .bjm-acf-card-swiper-wrapper .cards-heading-link > .cell.cell-cards-link {
    text-align: right;
    align-items: flex-end;
  }
}

.bjm-acf-card-swiper-wrapper .cards-heading-link > .cell.cell-cards-link a {
  border-radius: 5px;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link > .cell.cell-cards-link a:after {
  content: none;
}

@media print,
screen and (min-width: 64em) {
  .bjm-acf-card-swiper-wrapper .cards-heading-link > .cell.cell-cards-link {
    padding-top: 3px;
    padding-right: 104px;
  }
}

.bjm-acf-card-swiper-wrapper .cards-heading-link h3 {
  font-family: "komu-b";
  font-weight: 500;
  font-size: 2.5rem;
  line-height: normal;
  transform: translateY(7px);
}

.bjm-acf-card-swiper-wrapper .cards-heading-link h3.is-style-margin-bottom {
  margin-bottom: 20px;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link {
  border-radius: 10px;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 1.125rem;
  font-family: "inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  background-color: transparent;
  box-shadow: none;
  border-width: 2px;
  border-style: solid;
  font-family: "inter", sans-serif;
  font-weight: bold;
  line-height: 16px;
  font-size: 16px;
  padding: 12px 16px;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  color: #2b2c3c;
  min-width: 100px;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link:focus {
  outline: none;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link:disabled {
  filter: grayscale(1);
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-black-background-color {
  background-color: #2b2c3c;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-grey-background-color {
  background-color: #6b7280;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-silver-background-color {
  background-color: #e5e7eb;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-white-background-color {
  background-color: #fcfcff;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-red-background-color {
  background-color: #ef4444;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-lilac-background-color {
  background-color: #c2bfe5;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-blue-background-color {
  background-color: #3b82f6;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-green-background-color {
  background-color: #10b981;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-olive-background-color {
  background-color: #55643c;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-sunshine-background-color {
  background-color: #f7d44f;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-mint-background-color {
  background-color: #b6de83;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-rust-background-color {
  background-color: #6b2912;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-waxflower-background-color {
  background-color: #fcba9e;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-transparent-background-color {
  background-color: "transparent";
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-black-background-color {
  color: #fcfcff;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.has-no-shadow {
  box-shadow: none;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link:hover,
.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link:focus {
  opacity: 0.75;
  background-color: rgba(43, 44, 60, 0.05);
}

.bjm-acf-card-swiper-wrapper .cards-heading-link .cards-view-all-link:focus {
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3),
    inset 0 0 0 2px rgba(252, 252, 255, 0.75);
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed,
.bjm-acf-card-swiper-wrapper.is-style-largebleed {
  overflow: initial;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next {
  margin-right: 1.8125rem;
  margin-left: 1.8125rem;
  border-radius: 10px;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 1.125rem;
  font-family: "inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  background-color: #2b2c3c;
  color: #fcfcff;
  border: none;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 5px;
}

@media print,
screen and (min-width: 64em) {

  .bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev,
  .bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next,
  .bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev,
  .bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next {
    position: absolute;
    top: 3px;
  }
}

@media print,
screen and (min-width: 37.5em) {

  .bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev,
  .bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next,
  .bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev,
  .bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next {
    margin-right: 2.0625rem;
    margin-left: 2.0625rem;
  }
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev:focus,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next:focus,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev:focus,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next:focus {
  outline: none;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev:disabled,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next:disabled,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev:disabled,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next:disabled {
  filter: grayscale(1);
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev i,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next i,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev i,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-black-background-color,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-black-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-black-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-black-background-color {
  background-color: #2b2c3c;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-grey-background-color,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-grey-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-grey-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-grey-background-color {
  background-color: #6b7280;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-silver-background-color,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-silver-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-silver-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-silver-background-color {
  background-color: #e5e7eb;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-white-background-color,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-white-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-white-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-white-background-color {
  background-color: #fcfcff;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-red-background-color,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-red-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-red-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-red-background-color {
  background-color: #ef4444;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-lilac-background-color,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-lilac-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-lilac-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-lilac-background-color {
  background-color: #c2bfe5;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-blue-background-color,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-blue-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-blue-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-blue-background-color {
  background-color: #3b82f6;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-green-background-color,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-green-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-green-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-green-background-color {
  background-color: #10b981;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-olive-background-color,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-olive-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-olive-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-olive-background-color {
  background-color: #55643c;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-sunshine-background-color,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-sunshine-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-sunshine-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-sunshine-background-color {
  background-color: #f7d44f;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-mint-background-color,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-mint-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-mint-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-mint-background-color {
  background-color: #b6de83;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-rust-background-color,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-rust-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-rust-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-rust-background-color {
  background-color: #6b2912;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-waxflower-background-color,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-waxflower-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-waxflower-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-waxflower-background-color {
  background-color: #fcba9e;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-transparent-background-color,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-transparent-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-transparent-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-transparent-background-color {
  background-color: "transparent";
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-sunshine-pattern-gradient-background,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-sunshine-pattern-gradient-background,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-sunshine-pattern-gradient-background,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-sunshine-pattern-gradient-background:before,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-sunshine-pattern-gradient-background:before,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-sunshine-pattern-gradient-background:before,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-black-background-color,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-black-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-black-background-color,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-black-background-color {
  color: #fcfcff;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-body-font,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-body-font,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-body-font,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.has-no-shadow,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.has-no-shadow,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.has-no-shadow,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.has-no-shadow {
  box-shadow: none;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.is-loading::before,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.is-loading::before,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.is-loading::before,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev.is-loading--right::before,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next.is-loading--right::before,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev.is-loading--right::before,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev i,
.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next i,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev i,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next i {
  padding: 0px;
}

@media print,
screen and (min-width: 64em) {

  .bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-next,
  .bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-next {
    right: 0px;
  }
}

@media print,
screen and (min-width: 64em) {

  .bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-button-prev,
  .bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-button-prev {
    right: 70px;
  }
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-pagination,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-pagination {
  display: flex !important;
  width: auto;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-pagination .swiper-pagination-bullet-active,
.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-pagination .swiper-pagination-bullet-active {
  background: #2b2c3c;
}

.bjm-acf-card-swiper-wrapper.is-style-smallbleed .swiper-slide {
  width: 33%;
}

.bjm-acf-card-swiper-wrapper.is-style-largebleed .swiper-slide {
  width: 75%;
}

.wp-block-bjm-blocks-blocks .wp-block-bjm-blocks-block.has-background {
  padding: 1rem;
}

.wp-block-bjm-blocks-blocks .wp-block-bjm-blocks-block.has-background > .wp-block-bjm-blocks-blocks,
.wp-block-bjm-blocks-blocks .wp-block-bjm-blocks-block.has-background > .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks {
  margin: 0;
}

.wp-block-bjm-blocks-blocks .wp-block-bjm-blocks-block.has-background > .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks:not(.columns-1) .wp-block-bjm-blocks-block > .wp-block-image {
  max-width: 260px;
}

@media print,
screen and (max-width: 37.49875em) {
  .wp-block-bjm-blocks-blocks .wp-block-bjm-blocks-block:not(.has-background):not(.is-style-roundedborder):not(:last-child) {
    padding-bottom: 30px;
    padding-left: 0px;
    padding-right: 0px;
  }
}

.wp-block-bjm-blocks-blocks .wp-block-bjm-blocks-block.is-style-rounded {
  border-radius: 10px;
}

.wp-block-bjm-blocks-blocks .wp-block-bjm-blocks-block.is-style-roundedborder {
  border-radius: 10px;
  border: 3px solid #eee;
  background: linear-gradient(180deg, #fff 0%, #fff 100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.wp-block-bjm-blocks-blocks .wp-block-bjm-blocks-block.is-style-nomargin {
  margin: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}

.wp-block-bjm-blocks-blocks .wp-block-bjm-blocks-block.is-style-nomargin:first-child {
  padding-left: 0px;
}

.wp-block-bjm-blocks-blocks .wp-block-bjm-blocks-block.is-style-nomargin:first-child {
  padding-right: 0px;
}

.modal-content .wp-block-bjm-blocks-blocks {
  padding: 0px;
  margin: 0px;
}

.modal-content .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks {
  margin: 0px;
}

.wp-block-bjm-blocks-blocks.is-style-inner-spacing .wp-block-bjm-blocks-block {
  padding-right: 1.5rem;
}

.wp-block-bjm-blocks-blocks.is-style-stagger .wp-block-bjm-blocks-block {
  padding: 0;
}

.wp-block-bjm-blocks-blocks.is-style-stagger .wp-block-bjm-blocks-block img {
  max-width: 120px;
}

@media print,
screen and (min-width: 37.5em) {
  .wp-block-bjm-blocks-blocks.is-style-stagger .wp-block-bjm-blocks-block {
    padding: 30px;
  }

  .wp-block-bjm-blocks-blocks.is-style-stagger .wp-block-bjm-blocks-block img {
    max-width: 200px;
  }
}

@media print,
screen and (max-width: 37.49875em) {
  .wp-block-bjm-blocks-blocks.is-style-stagger .wp-block-bjm-blocks-block figure {
    text-align: left;
    margin-left: 0px;
    margin-bottom: 10px;
  }

  .wp-block-bjm-blocks-blocks.is-style-stagger .wp-block-bjm-blocks-block > * {
    text-align: left;
    margin-left: 0px;
  }

  .wp-block-bjm-blocks-blocks.is-style-stagger .wp-block-bjm-blocks-block > *.has-small-font-size {
    font-size: 1rem;
  }
}

@media print,
screen and (min-width: 64em) {

  .wp-block-bjm-blocks-blocks.is-style-stagger .columns-2 .wp-block-bjm-blocks-block,
  .wp-block-bjm-blocks-blocks.is-style-stagger .columns-4 .wp-block-bjm-blocks-block {
    transform: translateY(-30px);
  }

  .wp-block-bjm-blocks-blocks.is-style-stagger .columns-2 .wp-block-bjm-blocks-block:nth-child(2n),
  .wp-block-bjm-blocks-blocks.is-style-stagger .columns-4 .wp-block-bjm-blocks-block:nth-child(2n) {
    transform: translateY(30px);
  }

  .wp-block-bjm-blocks-blocks.is-style-stagger .columns-3 .wp-block-bjm-blocks-block {
    transform: translateY(-30px);
  }

  .wp-block-bjm-blocks-blocks.is-style-stagger .columns-3 .wp-block-bjm-blocks-block:nth-child(3n-1) {
    transform: translateY(30px);
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-bjm-blocks-blocks.arrows .wp-block-bjm-blocks-block {
    position: relative;
  }

  .wp-block-bjm-blocks-blocks.arrows .wp-block-bjm-blocks-block:after {
    content: "";
    width: 160px;
    height: 70px;
    display: flex;
    position: absolute;
    right: -90px;
    right: calc(-50% + 30px);
    top: 70px;
    background-image: url(../images/euka-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .wp-block-bjm-blocks-blocks.arrows .wp-block-bjm-blocks-block:nth-child(2n):after {
    right: calc(-50% + 50px);
    transform: scaleX(-1) rotate(180deg);
  }

  .wp-block-bjm-blocks-blocks.arrows .wp-block-bjm-blocks-block:last-child:after {
    content: none;
  }
}

.cell-gutenberg-content > .wp-block-bjm-blocks-blocks {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.bjm-title-block {
  text-align: center;
}

.wp-block-cover .bjm-title-block {
  margin: 0 auto;
  max-width: 70rem;
}

.bjm-cards-wrapper {
  padding-top: 40px;
  position: relative;
  padding-bottom: 50px;
}

@media print,
screen and (max-width: 37.49875em) {
  .bjm-cards-wrapper .cards-grid-x .cards-heading {
    text-align: center;
  }
}

@media print,
screen and (max-width: 37.49875em) {
  .bjm-cards-wrapper .cards-grid-x .cell-cards-link {
    position: absolute;
    justify-content: center;
    bottom: -40px;
    width: 100%;
  }
}

@media print,
screen and (max-width: 37.49875em) {
  .cards-grid-x.small-up-1 > .cell {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.cards-grid-x .cards-heading {
  font-family: "komu-b";
  font-weight: 500;
  font-size: 2.5rem;
  line-height: normal;
  transform: translateY(7px);
}

.cards-grid-x .cards-heading.is-style-margin-bottom {
  margin-bottom: 20px;
}

.cards-grid-x .cell-cards-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cards-grid-x .cell-cards-link .cards-view-all-link {
  border-radius: 10px;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 1.125rem;
  font-family: "inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  background-color: transparent;
  box-shadow: none;
  border-width: 2px;
  border-style: solid;
  font-family: "inter", sans-serif;
  font-weight: bold;
  line-height: 16px;
  font-size: 16px;
  padding: 12px 16px;
  color: #2b2c3c;
}

.cards-grid-x .cell-cards-link .cards-view-all-link:focus {
  outline: none;
}

.cards-grid-x .cell-cards-link .cards-view-all-link:disabled {
  filter: grayscale(1);
}

.cards-grid-x .cell-cards-link .cards-view-all-link i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-black-background-color {
  background-color: #2b2c3c;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-grey-background-color {
  background-color: #6b7280;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-silver-background-color {
  background-color: #e5e7eb;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-white-background-color {
  background-color: #fcfcff;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-red-background-color {
  background-color: #ef4444;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-lilac-background-color {
  background-color: #c2bfe5;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-blue-background-color {
  background-color: #3b82f6;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-green-background-color {
  background-color: #10b981;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-olive-background-color {
  background-color: #55643c;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-sunshine-background-color {
  background-color: #f7d44f;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-mint-background-color {
  background-color: #b6de83;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-rust-background-color {
  background-color: #6b2912;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-waxflower-background-color {
  background-color: #fcba9e;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-transparent-background-color {
  background-color: "transparent";
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-black-background-color {
  color: #fcfcff;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.has-no-shadow {
  box-shadow: none;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.cards-grid-x .cell-cards-link .cards-view-all-link.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.cards-grid-x .cell-cards-link .cards-view-all-link:hover,
.cards-grid-x .cell-cards-link .cards-view-all-link:focus {
  opacity: 0.75;
  background-color: rgba(43, 44, 60, 0.05);
}

.cards-grid-x .cell-cards-link .cards-view-all-link:focus {
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3),
    inset 0 0 0 2px rgba(252, 252, 255, 0.75);
}

.cards-grid-x .cell-cards-link .cards-view-all-link:after {
  content: "\f178";
  padding-left: 10px;
}

.cell.cell-card {
  background-color: #fcfcff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.cell.cell-card .card-image {
  overflow: hidden;
  border-radius: 10px;
  background-color: transparent;
}
/*
@media print,
screen and (max-width: 63.99875em) {
  .cell.cell-card.type-bjm_real_story {
    height: auto !important;
  }
}

.cell.cell-card.type-bjm_real_story .card-inner {
  position: relative;
}

@media print,
screen and (min-width: 64em) {
  .cell.cell-card.type-bjm_real_story .card-inner {
    display: flex;
    flex-direction: row;
  }
}

.cell.cell-card.type-bjm_real_story .card-inner .card-image {
  order: 2;
  flex: 1 0 50%;
  border-radius: 0;
}

@media print,
screen and (max-width: 63.99875em) {
  .cell.cell-card.type-bjm_real_story .card-inner .card-image {
    height: 200px;
    border-radius: 10px;
  }
}

.cell.cell-card.type-bjm_real_story .card-inner .card-image::after {
  opacity: 0;
  content: "\f067";
  width: 100px;
  height: 100px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
  background-image: url(../images/quarter-circle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 2rem;
  transition: opacity 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.cell.cell-card.type-bjm_real_story .card-inner .card-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
  padding-right: 30px;
}

@media print,
screen and (min-width: 64em) {
  .cell.cell-card.type-bjm_real_story .card-inner .card-content {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.cell.cell-card.type-bjm_real_story .card-inner .card-content .card-category {
  font-weight: normal;
  font-size: 1rem;
  font-family: "inter", sans-serif;
}

.cell.cell-card.type-bjm_real_story .card-inner .card-content .card-category:after {
  content: none;
}

.cell.cell-card.type-bjm_real_story .card-inner .card-content .card-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 10px;
}

@media print,
screen and (min-width: 64em) {
  .cell.cell-card.type-bjm_real_story .card-inner .card-content .card-title {
    margin-top: 30px;
  }
}

.cell.cell-card.type-bjm_real_story .card-inner .card-content .card-excerpt {
  display: none;
}

.cell.cell-card.type-bjm_real_story .card-inner .card-read-more {
  display: none;
}

.cell.cell-card.type-bjm_real_story .card-inner .card-read-more-inline {
  margin-top: 30px;
}

.cell.cell-card.type-bjm_real_story .cover-link:hover + .card-inner .card-image::after,
.cell.cell-card.type-bjm_real_story:focus-within .card-inner .card-image::after {
  opacity: 1;
}

.large-up-3 .cell.cell-card.type-bjm_real_story {
  height: auto !important;
}

.large-up-3 .cell.cell-card.type-bjm_real_story .card-image {
  order: -1;
  height: 200px;
  flex-basis: auto;
}

.large-up-3 .cell.cell-card.type-bjm_real_story .card-inner {
  flex-direction: column;
}

.large-up-3 .cell.cell-card.type-bjm_real_story .card-inner .card-content {
  width: 100%;
  padding: 23px;
}

.large-up-3 .cell.cell-card.type-bjm_real_story .card-inner .card-content .card-title {
  margin-top: 10px;
}*/

.cell.cell-card.type-bjm_testimonial {
  height: auto;
}

.cell.cell-card.type-bjm_testimonial .card-inner {
  position: relative;
}

.cell.cell-card.type-bjm_testimonial .card-inner .card-image {
  position: absolute;
  top: 23px;
  left: 23px;
  width: 80px;
  height: 80px;
  border-radius: 200px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.5);
}

.cell.cell-card.type-bjm_testimonial .card-inner .card-star-rating {
  position: absolute;
  top: 47px;
  right: 23px;
  color: #f0a32f;
  font-size: 1.1rem;
}

.cell.cell-card.type-bjm_testimonial .card-inner .card-content {
  padding-top: 130px;
}

.cell.cell-card.type-bjm_testimonial .card-inner .card-content .card-text {
  display: flex;
  flex-direction: column;
}

.cell.cell-card.type-bjm_testimonial .card-inner .card-content .card-text .card-excerpt {
  font-style: italic;
  font-size: 1.1rem;
}

.cell.cell-card.type-bjm_testimonial .card-inner .card-content .card-text .card-excerpt p {
  font-style: italic;
  font-size: 1.1rem;
}

.cell.cell-card.type-bjm_testimonial .card-inner .card-content .card-text .card-title {
  order: 2;
  color: #2b2c3c;
  pointer-events: none;
}

.cell.cell-card.type-bjm_testimonial .card-inner .card-content .card-text .card-title a {
  color: #2b2c3c;
  font-weight: bold;
}

.cell.cell-card.type-bjm_testimonial .card-inner .card-read-more {
  display: none;
}

.cell.cell-card.type-bjm_team {
  height: auto !important;
  position: relative;
  cursor: pointer;
}

.cell.cell-card.type-bjm_team:hover .card-inner .card-image:after {
  opacity: 1;
}

.cell.cell-card.type-bjm_team .card-inner .card-content .card-text {
  display: flex;
  flex-direction: column;
}

.cell.cell-card.type-bjm_team .card-inner .card-content .card-position {
  font-size: 0.9rem;
}

.cell.cell-card.type-bjm_team .card-inner .card-content .card-title {
  order: 2;
  margin-top: 6px;
  font-family: "infiniregular";
  font-weight: 700;
  font-size: 1.0625rem;
}

.cell.cell-card.type-bjm_team .card-inner .card-content .card-title a {
  color: #2b2c3c;
}

.cell.cell-card.type-bjm_team .card-inner .card-content .card-excerpt {
  display: none;
}

.cell.cell-card.type-bjm_team .card-inner .card-read-more {
  display: none;
}

.cell.cell-card.type-bjm_team .card-inner .card-image {
  width: 100%;
  padding-top: 100%;
  height: 0px;
}

.cell.cell-card.type-bjm_team .card-inner .card-image:after {
  opacity: 0;
  content: "\f067";
  width: 100px;
  height: 100px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
  background-image: url(../images/quarter-circle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 2rem;
  transition: opacity 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.cell.cell-card.type-bjm_why_homeschool {
  border-radius: 10px;
  border: 3px solid #eee;
  background: linear-gradient(180deg, #fff 0%, #fff 100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: auto !important;
}

.cell.cell-card.type-bjm_why_homeschool .card-inner {
  display: flex;
  flex-direction: column;
}

.cell.cell-card.type-bjm_why_homeschool .card-inner .card-image {
  padding-top: unset;
  background-color: transparent;
}

.cell.cell-card.type-bjm_why_homeschool .card-inner .card-image img {
  position: relative;
}

.cell.cell-card.type-bjm_why_homeschool .card-inner .card-content {
  text-align: center;
  padding-top: 0px;
}

.cell.cell-card.type-bjm_why_homeschool .card-inner .card-content .card-title {
  font-family: "infiniregular";
  font-weight: normal;
  font-size: 1.3125rem;
  margin-bottom: 0.5rem;
}

.cell.cell-card.type-bjm_why_homeschool .card-inner .card-content .card-excerpt {
  margin-bottom: 20px;
}

.cell.cell-card.type-bjm_why_homeschool .card-inner .card-read-more {
  text-align: center;
  flex-grow: 1;
  justify-content: flex-end;
  flex-direction: column;
  display: flex;
}

.cell.cell-card.type-bjm_faq {
  height: auto !important;
}

.cell.cell-card.type-bjm_faq .card-inner {
  display: flex;
  flex-direction: column;
}

.cell.cell-card.type-bjm_faq .card-title {
  color: inherit;
  display: block;
  font-family: "infiniregular";
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
}

.cell.cell-card.type-bjm_faq .card-excerpt {
  font-size: 0.9rem;
}

.cell.cell-card.type-bjm_faq .card-excerpt p:last-child {
  margin-bottom: 0;
}

.cell.cell-card.type-bjm_faq .card-read-more {
  margin-top: auto;
  padding: 0 23px 23px 23px;
}

.cell.cell-card.cell-card.type-post,
.cell.cell-card.cell-card.type-podcast,
.cell.cell-card.cell-card.type-bjm_resource,
.cell.cell-card.cell-card.type-bjm_event {
  height: auto;
}

@media print, screen and (min-width: 64em) {
  .cell.cell-card.cell-card.type-post,
  .cell.cell-card.cell-card.type-podcast,
  .cell.cell-card.cell-card.type-bjm_resource,
  .cell.cell-card.cell-card.type-bjm_event {
    height: 430px;
  }

  .cell.cell-card.cell-card.type-post:first-child,
  .cell.cell-card.cell-card.type-podcast:first-child,
  .cell.cell-card.cell-card.type-bjm_resource:first-child,
  .cell.cell-card.cell-card.type-bjm_event:first-child {
    height: auto;
  }
}

.cell.cell-card.cell-card.type-post .cover-link:hover + .card-inner .card-image::after,
.cell.cell-card.cell-card.type-post .cover-link:focus + .card-inner .card-image::after,
.cell.cell-card.cell-card.type-podcast .cover-link:hover + .card-inner .card-image::after,
.cell.cell-card.cell-card.type-podcast .cover-link:focus + .card-inner .card-image::after,
.cell.cell-card.cell-card.type-bjm_resource .cover-link:hover + .card-inner .card-image::after,
.cell.cell-card.cell-card.type-bjm_resource .cover-link:focus + .card-inner .card-image::after,
.cell.cell-card.cell-card.type-bjm_event .cover-link:hover + .card-inner .card-image::after,
.cell.cell-card.cell-card.type-bjm_event .cover-link:focus + .card-inner .card-image::after {
  opacity: 1;
}

.cell.cell-card.cell-card.type-post .card-inner,
.cell.cell-card.cell-card.type-podcast .card-inner,
.cell.cell-card.cell-card.type-bjm_resource .card-inner,
.cell.cell-card.cell-card.type-bjm_event .card-inner {
  display: flex;
  flex-direction: column;
}

.cell.cell-card.cell-card.type-post .card-inner .card-image,
.cell.cell-card.cell-card.type-podcast .card-inner .card-image,
.cell.cell-card.cell-card.type-bjm_resource .card-inner .card-image,
.cell.cell-card.cell-card.type-bjm_event .card-inner .card-image {
  aspect-ratio: 16 / 9;
}

.cell.cell-card.cell-card.type-post .card-inner .card-image::after,
.cell.cell-card.cell-card.type-podcast .card-inner .card-image::after,
.cell.cell-card.cell-card.type-bjm_resource .card-inner .card-image::after,
.cell.cell-card.cell-card.type-bjm_event .card-inner .card-image::after {
  content: "";
  opacity: 0;
  content: "\f067";
  width: 100px;
  height: 100px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
  background-image: url(../images/quarter-circle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 2rem;
  transition: opacity 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.cell.cell-card.cell-card.type-post .card-inner .card-content .card-category,
.cell.cell-card.cell-card.type-podcast .card-inner .card-content .card-category,
.cell.cell-card.cell-card.type-bjm_resource .card-inner .card-content .card-category,
.cell.cell-card.cell-card.type-bjm_event .card-inner .card-content .card-category {
  color: #6b7280;
  font-weight: normal;
  font-size: 0.85rem;
}

.cell.cell-card.cell-card.type-post .card-inner .card-content .card-category:after,
.cell.cell-card.cell-card.type-podcast .card-inner .card-content .card-category:after,
.cell.cell-card.cell-card.type-bjm_resource .card-inner .card-content .card-category:after,
.cell.cell-card.cell-card.type-bjm_event .card-inner .card-content .card-category:after {
  content: none;
}

.cell.cell-card.cell-card.type-post .card-inner .card-content .card-title,
.cell.cell-card.cell-card.type-podcast .card-inner .card-content .card-title,
.cell.cell-card.cell-card.type-bjm_resource .card-inner .card-content .card-title,
.cell.cell-card.cell-card.type-bjm_event .card-inner .card-content .card-title {
  font-weight: 500;
  font-size: 1.125rem;
}

.cell.cell-card.cell-card.type-post .card-inner .card-content .card-title a,
.cell.cell-card.cell-card.type-podcast .card-inner .card-content .card-title a,
.cell.cell-card.cell-card.type-bjm_resource .card-inner .card-content .card-title a,
.cell.cell-card.cell-card.type-bjm_event .card-inner .card-content .card-title a {
  color: #2b2c3c;
}

.cell.cell-card.cell-card.type-post .card-inner .card-content .card-excerpt,
.cell.cell-card.cell-card.type-podcast .card-inner .card-content .card-excerpt,
.cell.cell-card.cell-card.type-bjm_resource .card-inner .card-content .card-excerpt,
.cell.cell-card.cell-card.type-bjm_event .card-inner .card-content .card-excerpt {
  display: none;
}

.cell.cell-card.cell-card.type-post .card-inner .card-read-more,
.cell.cell-card.cell-card.type-podcast .card-inner .card-read-more,
.cell.cell-card.cell-card.type-bjm_resource .card-inner .card-read-more,
.cell.cell-card.cell-card.type-bjm_event .card-inner .card-read-more {
  display: block;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cell.cell-card.cell-card.type-post .card-inner .card-read-more .wp-block-button,
.cell.cell-card.cell-card.type-podcast .card-inner .card-read-more .wp-block-button,
.cell.cell-card.cell-card.type-bjm_resource .card-inner .card-read-more .wp-block-button,
.cell.cell-card.cell-card.type-bjm_event .card-inner .card-read-more .wp-block-button {
  padding-left: 23px;
  padding-bottom: 23px;
}

.cell.cell-card.cell-card.type-post .card-inner .card-read-more .wp-block-button a,
.cell.cell-card.cell-card.type-podcast .card-inner .card-read-more .wp-block-button a,
.cell.cell-card.cell-card.type-bjm_resource .card-inner .card-read-more .wp-block-button a,
.cell.cell-card.cell-card.type-bjm_event .card-inner .card-read-more .wp-block-button a {
  color: #6b7280;
  font-size: 0.85rem;
}

@media print,
screen and (min-width: 64em) {

  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-post:first-child .card-inner,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-podcast:first-child .card-inner,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-bjm_resource:first-child .card-inner,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-bjm_event:first-child .card-inner {
    flex-direction: row;
  }

  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-post:first-child .card-inner .card-image,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-podcast:first-child .card-inner .card-image,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-bjm_resource:first-child .card-inner .card-image,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-bjm_event:first-child .card-inner .card-image {
    flex-basis: 58%;
    height: 100%;
    padding-top: 0px;
  }

  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-post:first-child .card-inner .card-content,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-podcast:first-child .card-inner .card-content,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-bjm_resource:first-child .card-inner .card-content,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-bjm_event:first-child .card-inner .card-content {
    flex-basis: 42%;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-post:first-child .card-inner .card-content h4,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-podcast:first-child .card-inner .card-content h4,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-bjm_resource:first-child .card-inner .card-content h4,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-bjm_event:first-child .card-inner .card-content h4 {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-post:first-child .card-inner .card-content .card-title,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-podcast:first-child .card-inner .card-content .card-title,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-bjm_resource:first-child .card-inner .card-content .card-title,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-bjm_event:first-child .card-inner .card-content .card-title {
    font-size: 1.8rem;
    font-weight: 400;
    padding-bottom: 100px;
  }

  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-post:first-child .card-inner .card-read-more,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-podcast:first-child .card-inner .card-read-more,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-bjm_resource:first-child .card-inner .card-read-more,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-bjm_event:first-child .card-inner .card-read-more {
    position: absolute;
    left: 58%;
    padding-left: 50px;
    bottom: 0px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-post:first-child .card-inner .card-read-more .wp-block-button,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-podcast:first-child .card-inner .card-read-more .wp-block-button,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-bjm_resource:first-child .card-inner .card-read-more .wp-block-button,
  .cards-grid-x.feature-first .cell.cell-card.cell-card.type-bjm_event:first-child .card-inner .card-read-more .wp-block-button {
    padding-left: 0px;
  }
}

.cell.cell-card.cell-card.type-bjm_event .card-inner .card-tags h4 {
  font-family: "inter", sans-serif;
  color: #6b7280;
  font-weight: normal;
  font-size: 0.85rem;
}

.cell.cell-card.cell-card.type-bjm_event .card-inner .card-tags .card-category:after {
  content: "/";
  padding-left: 5px;
  padding-right: 5px;
}

.cell.cell-card.type-page {
  height: auto !important;
}

.cell.cell-card.type-page .card-inner {
  display: flex;
  flex-direction: column;
}

.cell.cell-card.type-page .card-title {
  color: inherit;
  display: block;
  font-family: "infiniregular";
  font-weight: normal;
  font-size: 1.3125rem;
  margin-bottom: 0.75rem;
}

.cell.cell-card.type-page .card-excerpt {
  font-size: 0.9rem;
}

.cell.cell-card.type-page .card-excerpt p:last-child {
  margin-bottom: 0;
}

.cell.cell-card.type-page .card-tags h4 {
  margin: 0;
}

.cell.cell-card.type-page .card-read-more {
  margin-top: auto;
  padding: 0 23px 23px 23px;
}

.bjm-cards-wrapper .accordion-cards > .cell {
  margin-top: 0;
  background-color: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.bjm-cards-wrapper .accordion-cards > .cell:last-child {
  margin-bottom: 0;
}

.bjm-cards-wrapper .accordion-cards > .cell.is-open {
  transform: scale(1.025);
}

.bjm-cards-wrapper .accordion-cards > .cell.is-open .title a {
  font-weight: 700;
}

.bjm-cards-wrapper .accordion-cards > .cell.is-invisible {
  display: none;
}

.bjm-cards-wrapper .accordion-cards > .cell .title {
  color: inherit;
  line-height: 1.3;
  font-size: 1.125rem;
  font-weight: inherit;
  margin-bottom: 0;
}

.bjm-cards-wrapper .accordion-cards > .cell .card-tags {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2.5rem;
  color: #fcfcff;
  background-color: #2b2c3c;
  display: flex;
  justify-content: center;
  padding-top: 0.65rem;
}

.bjm-cards-wrapper .accordion-cards > .cell .card-content {
  padding: 1rem 1.5rem 1rem 3.75rem;
}

.bjm-cards-wrapper .accordion-cards > .cell .card-excerpt p {
  margin: 1rem 0 0;
}

.bjm-cards-wrapper .accordion-cards .card-view-all {
  min-height: 0;
  text-align: center;
  background-color: transparent;
  box-shadow: none;
}

.bjm-cards-wrapper .accordion-cards .card-view-all .view-all-title {
  color: inherit;
}

.bjm-cards-wrapper .accordion-cards .card-view-all .card-read-more {
  display: block !important;
  position: relative;
  left: auto;
  bottom: auto;
}

.bjm-cards-wrapper .accordion-cards .card-view-all .wp-block-button__link {
  color: #2b2c3c;
  font-size: 1rem;
  border-radius: 0;
}

.bjm-cards-wrapper .accordion-cards .card-view-all .wp-block-button__link:focus {
  box-shadow: none;
}

.bjm-cards-wrapper .accordion-cards .card-view-all .wp-block-button__link:focus::after {
  box-shadow: 0 4px 5px 2px rgba(43, 44, 60, 0.25);
}

.bjm-cards-wrapper .accordion-cards.grid-margin-y {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.wp-block-column .bjm-cards-wrapper .accordion-cards.grid-margin-y {
  margin-top: -40px;
}

.bjm-cards-wrapper .accordion-cards.cards-grid-x .cell-card .card-content .title::after {
  top: 4px;
  content: "\f067";
}

.bjm-cards-wrapper .accordion-cards.cards-grid-x .cell-card.is-open .card-content .title::after {
  content: "\f068";
}

.filters {
  align-items: stretch;
}

.filter-title {
  font-family: "infiniregular";
  font-weight: normal;
  font-size: 1.3125rem;
  min-width: 100px;
  white-space: nowrap;
  align-self: center;
}

.filter-reset .button {
  color: #fcfcff;
  background-color: #2b2c3c;
  border-color: #2b2c3c;
}

.filter-reset i {
  padding-left: 0;
}

.filter input,
.filter select {
  border: 2px solid #2b2c3c;
  border-radius: 10px;
}

.filter input:focus,
.filter select:focus {
  border-width: 2px;
}

.modal-content .wp-block-cover {
  height: 100%;
}

.modal-content .wp-block-cover:first-of-type {
  padding-top: 0px;
  min-height: auto;
}

.wp-block-cover {
  overflow: visible;
}

.wp-block-cover.has-vertical-padding-top-none {
  padding-top: 0px;
}

.wp-block-cover.has-vertical-padding-top-small {
  padding-top: 23px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-vertical-padding-top-small {
    padding-top: 30px;
  }
}

.wp-block-cover.has-vertical-padding-top-medium {
  padding-top: 23px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-vertical-padding-top-medium {
    padding-top: 60px;
  }
}

.wp-block-cover.has-vertical-padding-top-large {
  padding-top: 40px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-vertical-padding-top-large {
    padding-top: 100px;
  }
}

.wp-block-cover.has-vertical-padding-bottom-none {
  padding-bottom: 0px;
}

.wp-block-cover.has-vertical-padding-bottom-small {
  padding-bottom: 23px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-vertical-padding-bottom-small {
    padding-bottom: 30px;
  }
}

.wp-block-cover.has-vertical-padding-bottom-medium {
  padding-bottom: 23px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-vertical-padding-bottom-medium {
    padding-bottom: 60px;
  }
}

.wp-block-cover.has-vertical-padding-bottom-large {
  padding-bottom: 40px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-vertical-padding-bottom-large {
    padding-bottom: 100px;
  }
}

.wp-block-cover.has-horizontal-padding-right-small {
  padding-right: 0px;
}

@media print,
screen and (max-width: 63.99875em) {
  .wp-block-cover.has-horizontal-padding-right-small.has-background {
    padding-right: 20px;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-horizontal-padding-right-small {
    padding-right: 60px;
  }
}

.wp-block-cover.has-horizontal-padding-right-medium {
  padding-right: 20px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-horizontal-padding-right-medium {
    padding-right: 100px;
  }
}

.wp-block-cover.has-horizontal-padding-right-large {
  padding-right: 20px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-horizontal-padding-right-large {
    padding-right: 160px;
  }
}

.wp-block-cover.has-horizontal-padding-left-small {
  padding-left: 0px;
}

@media print,
screen and (max-width: 63.99875em) {
  .wp-block-cover.has-horizontal-padding-left-small.has-background {
    padding-left: 20px;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-horizontal-padding-left-small {
    padding-left: 60px;
  }
}

.wp-block-cover.has-horizontal-padding-left-medium {
  padding-left: 20px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-horizontal-padding-left-medium {
    padding-left: 100px;
  }
}

.wp-block-cover.has-horizontal-padding-left-large {
  padding-left: 20px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-horizontal-padding-left-large {
    padding-left: 160px;
  }
}

.wp-block-cover.has-max-width-fifty > * {
  max-width: 50%;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-max-width-seventyfive > * {
    max-width: 75%;
  }
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.has-max-width-eightyfive > * {
    max-width: 85%;
  }
}

.wp-block-cover.has-vertical-padding-bottom-large {
  padding-bottom: 100px;
}

.wp-block-cover .wp-block-cover__inner-container {
  color: inherit;
}

.wp-block-cover .wp-block-cover__inner-container > *:last-child {
  margin-bottom: 0;
}

@media print,
screen and (max-width: 63.99875em) {
  .wp-block-cover .wp-block-cover__inner-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.wp-block-cover:first-of-type {
  min-height: 550px;
  padding-top: 200px;
  padding-bottom: 25px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover:first-of-type {
    padding-top: 150px;
  }
}

.wp-block-cover.alignfull > .wp-block-cover__inner-container > p,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h1,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h2,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h3,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h4,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h5,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h6 {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {

  .wp-block-cover.alignfull > .wp-block-cover__inner-container > p,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h1,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h2,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h3,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h4,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h5,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h6 {
    max-width: 60rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {

  .wp-block-cover.alignfull > .wp-block-cover__inner-container > p,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h1,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h2,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h3,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h4,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h5,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h6 {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wp-block-cover.alignfull > .wp-block-cover__inner-container > p.alignwide,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h1.alignwide,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h2.alignwide,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h3.alignwide,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h4.alignwide,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h5.alignwide,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h6.alignwide {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {

  .wp-block-cover.alignfull > .wp-block-cover__inner-container > p.alignwide,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h1.alignwide,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h2.alignwide,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h3.alignwide,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h4.alignwide,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h5.alignwide,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h6.alignwide {
    max-width: 75rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {

  .wp-block-cover.alignfull > .wp-block-cover__inner-container > p.alignwide,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h1.alignwide,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h2.alignwide,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h3.alignwide,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h4.alignwide,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h5.alignwide,
  .wp-block-cover.alignfull > .wp-block-cover__inner-container > h6.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wp-block-cover.alignfull > .wp-block-cover__inner-container > p.alignfull,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h1.alignfull,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h2.alignfull,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h3.alignfull,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h4.alignfull,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h5.alignfull,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h6.alignfull {
  max-width: none;
}

.wp-block-cover.alignfull > .wp-block-cover__inner-container > p.alignfull > .grid-container,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h1.alignfull > .grid-container,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h2.alignfull > .grid-container,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h3.alignfull > .grid-container,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h4.alignfull > .grid-container,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h5.alignfull > .grid-container,
.wp-block-cover.alignfull > .wp-block-cover__inner-container > h6.alignfull > .grid-container {
  max-width: none;
}

.wp-block-cover.is-style-header-smaller,
.wp-block-cover.is-style-header-small,
.wp-block-cover.is-style-header-large {
  color: inherit;
}

.wp-block-cover.is-style-header-smaller:before,
.wp-block-cover.is-style-header-small:before,
.wp-block-cover.is-style-header-large:before {
  display: none;
}

.wp-block-cover.is-style-container-slider {
  display: block;
}

.wp-block-cover.is-style-before-shift-up {
  padding-bottom: 100px;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-cover.is-style-before-shift-up {
    padding-bottom: 120px;
  }
}

.wp-block-cover.is-style-header-smaller {
  height: auto;
  min-height: 320px;
  padding-top: 220px;
  padding-bottom: 60px;
}

.wp-block-cover.is-style-decoration-top-right {
  border-radius: 10px;
}

.wp-block-cover.is-style-decoration-top-right:after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: -20px;
  bottom: 0;
  display: block;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
  background-image: url(../images/euka-image-decoration-2.png);
}

.wp-block-cover.is-style-decoration-bottom-left {
  border-radius: 10px;
}

.wp-block-cover.is-style-decoration-bottom-left:after {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  right: 0;
  bottom: -20px;
  display: block;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-position: bottom left;
  z-index: -1;
  background-image: url(../images/euka-image-decoration-1.png);
}

.wp-block-group.is-style-rounded {
  border-radius: 10px;
}

.wp-block-group.has-margin-shiftup {
  position: relative;
  margin-top: -90px;
  z-index: 10;
}

@media print,
screen and (min-width: 64em) {
  .wp-block-group.has-margin-shiftup {
    margin-top: -110px;
  }
}

@media print,
screen and (max-width: 63.99875em) {
  .wp-block-group.has-vertical-padding-top-small {
    padding-top: 28px;
  }

  .wp-block-group.has-vertical-padding-top-medium {
    padding-top: 32px;
  }

  .wp-block-group.has-vertical-padding-bottom-small {
    padding-bottom: 28px;
  }

  .wp-block-group.has-vertical-padding-bottom-medium {
    padding-bottom: 32px;
  }
}

.wp-block-image {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
}

@media screen and (min-width: 75em) {
  .wp-block-image {
    max-width: 60rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .wp-block-image {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wp-block-image.alignwide {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .wp-block-image.alignwide {
    max-width: 75rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .wp-block-image.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wp-block-image.alignfull {
  max-width: none;
}

.wp-block-image.alignfull > .grid-container {
  max-width: none;
}

.wp-block-bjm-blocks-block > .wp-block-image {
  padding-left: 0px;
  padding-right: 0px;
}

.wp-block-image.is-style-decoration-top-right,
.wp-block-image.is-style-decoration-bottom-left {
  position: relative;
}

.wp-block-image.is-style-decoration-top-right::after,
.wp-block-image.is-style-decoration-bottom-left::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}

.wp-block-image.is-style-decoration-top-right img,
.wp-block-image.is-style-decoration-bottom-left img {
  z-index: 1;
  position: relative;
  border-radius: 10px;
}

.wp-block-image.is-style-decoration-top-right::after {
  top: -20px;
  right: -20px;
  background-position: top right;
  background-image: url(../images/euka-image-decoration-2.png);
}

@media screen and (min-width: 75em) {
  .wp-block-image.is-style-decoration-top-right::after {
    right: 0;
  }
}

.wp-block-image.is-style-decoration-bottom-left::after {
  bottom: -20px;
  left: -20px;
  background-position: bottom left;
  background-image: url(../images/euka-image-decoration-1.png);
}

@media screen and (min-width: 75em) {
  .wp-block-image.is-style-decoration-bottom-left::after {
    left: 0;
  }
}

.wp-block-image.is-style-rounded-corners img {
  border-radius: 10px;
}

.wp-block-image.is-style-fixed-right {
  position: absolute;
  top: 0;
  right: 0;
}

.wp-block-image.is-style-offset-left {
  padding: 0;
  margin-bottom: 20px;
}

@media print,
screen and (min-width: 37.5em) {
  .wp-block-image.is-style-offset-left {
    transform: translateX(-30px);
  }
}

.wp-block-image img {
  border-radius: 0px;
}

.wp-block-image.is-style-circle-mask > img,
.wp-block-image.is-style-rounded > img {
  border-radius: 9999px;
}

.wp-block-image.link-type-lightboxvideo:before {
  margin-right: 1.8125rem;
  margin-left: 1.8125rem;
  width: auto;
  border-radius: 10px;
}

@media print,
screen and (min-width: 37.5em) {
  .wp-block-image.link-type-lightboxvideo:before {
    margin-right: 2.0625rem;
    margin-left: 2.0625rem;
  }
}

.wp-block-image.link-type-lightboxvideo > a:hover {
  opacity: 1 !important;
}

.wp-block-image.link-type-lightboxvideo img {
  border-radius: 10px;
}

.wp-block-image.link-type-lightboxvideo .video-play-button {
  text-transform: lowercase;
  position: relative;
  z-index: 1;
  color: #2b2c3c !important;
  font-size: 1.3rem;
  transform: translateY(-20px);
}

.wp-block-image.link-type-lightboxvideo .video-play-button:before {
  content: "";
  display: block;
  position: absolute;
  height: 170px;
  width: 170px;
  transform: rotate(30deg) translate(14px, 40px);
  background-image: url(../images/quarter-circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.wp-block-image.link-type-lightboxvideo .video-play-button i {
  z-index: 1;
  color: #2b2c3c;
  margin-bottom: 5px;
}

.wp-block-image.link-type-lightboxvideo .video-play-button i:before {
  font-size: 2rem;
  content: "\f04b";
  font-weight: bold;
}

@media screen and (min-width: 48em) {
  .wp-block-kadence-tabs .kt-tabs-layout-vtabs > .kt-tabs-title-list {
    width: 25%;
    padding-right: 2rem;
  }

  .wp-block-kadence-tabs .kt-tabs-layout-vtabs > .kt-tabs-content-wrap {
    width: 75%;
  }
}

.wp-block-kadence-tabs .kt-tabs-mobile-layout-accordion > .kt-tabs-content-wrap > .kt-tabs-accordion-title {
  position: relative;
}

@media screen and (max-width: 47.9375em) {
  .wp-block-kadence-tabs .kt-tabs-mobile-layout-accordion > .kt-tabs-content-wrap > .kt-tabs-accordion-title.kt-tab-title-active {
    margin-bottom: -10px;
  }

  .wp-block-kadence-tabs .kt-tabs-mobile-layout-accordion > .kt-tabs-content-wrap > .kt-tabs-accordion-title.kt-tab-title-active a {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .wp-block-kadence-tabs .kt-tabs-mobile-layout-accordion > .kt-tabs-content-wrap > .kt-tabs-accordion-title:not(:first-child) {
    margin-top: 0.75rem;
  }
}

.wp-block-kadence-tabs .kt-tabs-heading {
  margin: 1rem 0 1.25rem;
}

.wp-block-kadence-tabs .kt-tabs-title-list a.kt-tab-title {
  display: inline-flex !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}

.wp-block-kadence-tabs .kt-tabs-title-list a.kt-tab-title::after {
  width: 0;
  opacity: 0;
  padding-left: 0.75rem;
  margin-right: -0.25rem;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  content: "\f178";
}

.wp-block-kadence-tabs .kt-tabs-title-list .kt-tab-title-active .kt-tab-title:after {
  opacity: 1;
  width: 2rem;
}

.wp-block-kadence-tabs .kt-tabs-content-wrap > .wp-block-kadence-tab {
  border-radius: 10px;
}

@media print,
screen and (max-width: 37.49875em) {
  .wp-block-kadence-tabs .kt-tabs-content-wrap > .wp-block-kadence-tab {
    padding: 2.25rem 1.75rem 1.75rem;
  }
}

@media print,
screen and (min-width: 37.5em) and (max-width: 63.99875em) {
  .wp-block-kadence-tabs .kt-tabs-content-wrap > .wp-block-kadence-tab {
    padding: 2.25rem;
  }
}

.wp-block-kadence-tabs .kt-tabs-content-wrap > .wp-block-kadence-tab .kt-tab-inner-content-inner {
  position: relative;
}

.wp-block-kadence-tabs .kt-tabs-content-wrap > .wp-block-kadence-tab .wp-block-image.is-style-fixed-right {
  margin: 0;
  width: 75px;
}

@media print,
screen and (min-width: 37.5em) {
  .wp-block-kadence-tabs .kt-tabs-content-wrap > .wp-block-kadence-tab .wp-block-image.is-style-fixed-right {
    width: 100px;
  }
}

.wp-block-kadence-tabs .kt-tabs-content-wrap > .wp-block-kadence-tab h3 {
  margin-bottom: 0;
  line-height: 1.25;
  font-size: 2.75rem;
}

.wp-block-kadence-tabs .kt-tabs-content-wrap > .wp-block-kadence-tab p {
  margin-top: 1rem;
}

#breadcrumbs {
  font-size: 0.9375rem;
  text-align: center;
}

.wp-block-column #breadcrumbs {
  text-align: left;
}

.has-sunshine-background-color #breadcrumbs {
  color: #2b2c3c;
}

#breadcrumbs a {
  text-decoration: none;
}

#breadcrumbs a:hover,
#breadcrumbs a:focus {
  text-decoration: underline;
}

#breadcrumbs button {
  margin: 0 0.25rem;
  text-decoration: underline;
}

.section {
  max-width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-size: cover;
}

@media print,
screen and (min-width: 64em) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media screen and (min-width: 75em) {
  .section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.cell-gutenberg-content .section > *:not(.alignfull) {
  margin-left: auto;
  margin-right: auto;
  max-width: 71rem;
  padding-left: 0;
  padding-right: 0;
}

.cell-gutenberg-content .section > *.alignfull {
  width: 100vw;
  padding-right: 1.8125rem;
  padding-left: 1.8125rem;
  margin-right: -1.8125rem;
  margin-left: -1.8125rem;
}

@media print,
screen and (min-width: 37.5em) {
  .cell-gutenberg-content .section > *.alignfull {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

@media print,
screen and (min-width: 37.5em) {
  .cell-gutenberg-content .section > *.alignfull {
    margin-right: -2.0625rem;
    margin-left: -2.0625rem;
  }
}

@media screen and (min-width: 75em) {
  .cell-gutenberg-content .section > *.alignfull .bjm-swiper-wrapper .swiper-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.cell-gutenberg-content .section > *.alignfull .wp-block-cover__inner-container {
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 71rem;
}

.cell-gutenberg-content .section > *.alignfull .wp-block-cover__inner-container .wp-block-group {
  max-width: 100%;
}

@media print,
screen and (max-width: 63.99875em) {
  .section > .has-margin-shiftup {
    margin-top: 0;
  }
}

.section.has-bleed {
  overflow-x: hidden;
}

.section.has-padding-top-none {
  padding-top: 0;
}

.section.has-padding-bottom-none {
  padding-bottom: 0;
}

@media print,
screen and (min-width: 64em) {
  .section.has-padding-top-medium {
    padding-top: 6rem;
  }
}

@media screen and (min-width: 75em) {
  .section.has-padding-top-medium {
    padding-top: 8rem;
  }
}

@media print,
screen and (min-width: 64em) {
  .section.has-padding-bottom-medium {
    padding-bottom: 6rem;
  }
}

@media screen and (min-width: 75em) {
  .section.has-padding-bottom-medium {
    padding-bottom: 8rem;
  }
}

@media print,
screen and (min-width: 64em) {
  .section.has-padding-top-large {
    padding-top: 7.5rem;
  }
}

@media screen and (min-width: 75em) {
  .section.has-padding-top-large {
    padding-top: 12.5rem;
  }
}

@media print,
screen and (min-width: 64em) {
  .section.has-padding-bottom-large {
    padding-bottom: 7.5rem;
  }

  .section.has-padding-bottom-large + .section > .has-margin-shiftup {
    margin-top: -8rem;
  }
}

@media screen and (min-width: 75em) {
  .section.has-padding-bottom-large {
    padding-bottom: 12.5rem;
  }

  .section.has-padding-bottom-large + .section > .has-margin-shiftup {
    margin-top: -13.5rem;
  }
}

.section-nav {
  color: #fcfcff;
  background-color: #2b2c3c;
  font-size: 1.125rem;
  position: relative;
  width: 100%;
  z-index: 99;
  top: 0;
  left: 0;
}

.section-nav::before {
  content: "";
  height: 100%;
  width: 100vw;
  position: absolute;
  left: calc(-100vw / 2 + 100% / 2);
  right: calc(-100vw / 2 + 100% / 2);
  background-color: #2b2c3c;
}

.section-nav::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 1.25rem;
  height: 100%;
  background-image: linear-gradient(to right,
      rgba(43, 44, 60, 0) 0%,
      rgba(43, 44, 60, 0.75) 75%);
  z-index: 99;
}

.section-nav-items {
  display: flex;
  overflow-x: auto;
}

@media print,
screen and (min-width: 64em) {
  .section-nav-items {
    justify-content: center;
  }
}

.section-nav-wrap {
  padding: 0 !important;
  width: 100%;
  max-width: 100%;
  height: 68px;
  position: relative;
}

.section-nav-wrap.is-fixed .section-nav {
  position: fixed;
}

.admin-bar .section-nav-wrap.is-fixed .section-nav {
  top: 32px;
}

.section-nav-item {
  color: inherit;
  position: relative;
  padding: 1.25rem 1rem;
  white-space: nowrap;
  transition: opacity 0.25s;
  margin: 0 0.5rem !important;
}

.section-nav-item::after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 0;
  height: 3px;
  width: calc(100% - 2rem);
  background-color: currentColor;
  opacity: 0;
}

.section-nav-item:hover,
.section-nav-item:focus {
  color: inherit;
  opacity: 0.85;
}

.section-nav-item:not(.button)::before {
  display: block;
  content: attr(data-title);
  font-weight: bold;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
}

.section-nav-item-wrap {
  display: flex;
}

.section-nav-item-wrap:first-child .section-nav-item {
  margin-left: 1rem !important;
}

.section-nav-item-wrap:last-child .section-nav-item {
  margin-right: 1.25rem !important;
}

.section-nav-item.is-active {
  font-weight: 700;
}

.section-nav-item.is-active::after {
  opacity: 1;
}

.section-nav .section-nav-item.button {
  align-self: center;
  display: block;
  color: #2b2c3c;
  background-color: #b6de83;
  font-family: "komu-a";
  font-size: 1.275rem;
  letter-spacing: 1px;
  line-height: 0.75;
}

.section-nav .section-nav-item.button::after {
  display: none;
}

.section-nav .section-nav-item.button.is-active {
  box-shadow: inset 0 0 0 2px rgba(252, 252, 255, 0.75);
}

.product-options {
  margin: 2.5rem auto;
  overflow: hidden;
  border-radius: 10px;
}

@media print,
screen and (min-width: 37.5em) {
  .product-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media print,
screen and (min-width: 64em) {
  .product-options {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media print,
screen and (min-width: 64em) {
  .product-options[data-count="1"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-options[data-count="1"] .product-item {
    border-radius: 10px;
  }
}

@media print,
screen and (min-width: 64em) {
  .product-options[data-count="2"] {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-options[data-count="2"] .product-item--large .product-image {
  width: 10rem;
}

@media print,
screen and (min-width: 64em) {
  .product-options[data-count="3"] .product-item {
    grid-row: span 2;
  }
}

.product-options[data-count="4"] .product-item:nth-child(4) {
  grid-column: span 2;
}

.product-options .product-item:not(.product-item--large):not(.product-item--unavailable) .product-button {
  opacity: 0;
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.product-options .product-item:not(.product-item--large):not(.product-item--unavailable):hover .product-content,
.product-options .product-item:not(.product-item--large):not(.product-item--unavailable):focus-within .product-content {
  transform: translateY(-1.5rem) scale(0.85);
}

.product-options .product-item:not(.product-item--large):not(.product-item--unavailable):hover .product-button,
.product-options .product-item:not(.product-item--large):not(.product-item--unavailable):focus-within .product-button {
  opacity: 1;
  transform: translate(-50%, -1rem);
}

.product-options label {
  color: inherit;
}

.product-options .product-purchase-options {
  display: none;
}

.product-tag {
  background-color: #f7d44f;
  color: #2b2c3c;
  position: absolute;
  left: 0;
  top: -1px;
  width: 6rem;
  height: 6rem;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.product-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-size: 20rem;
  background-image: url(../images/texture-light.png);
}

.product-tag span {
  display: block;
  height: 100%;
  padding: 1rem 0rem;
  line-height: 0.95;
  font-weight: 500;
  text-transform: uppercase;
  transform: rotate(-45deg);
}

.product-tag--long span {
  padding-top: 0.625rem;
}

.product-content {
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.product-image {
  width: 3rem;
  margin-bottom: 1rem;
}

.product-title {
  font-family: "komu-a";
  font-size: 1.6rem;
  line-height: 1;
}

.product-variant {
  line-height: 1;
  font-size: 1.25rem;
  margin-bottom: 1.75rem;
}

.product-price {
  font-weight: 500;
}

.product-price del span {
  font-size: 0.9em;
}

.product-price ins {
  font-size: 1.4em;
  text-decoration: none;
}

.product-payment-plan {
  font-weight: 600;
  font-size: 0.85rem;
  margin: 0;
  display: none;
}

.product-payment-plan--payments {
  margin-bottom: 2rem;
}

.product-payment-plan table.shop_table.enr-subscribe-now-wrapper {
  margin-bottom: 0;
  border-bottom: none !important;
}

.product-payment-plan table.shop_table.enr-subscribe-now-wrapper .enr-subscribe-now-handle-row td {
  padding: 0 !important;
  text-align: center;
  border: none !important;
}

.product-payment-plan table.shop_table.enr-subscribe-now-wrapper .enr-subscribe-now-handle-row td p {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

.product-payment-plan table.shop_table.enr-subscribe-now-wrapper .enr-subscribe-now-handle-row td p:nth-child(-n + 2) {
  display: none;
}

.product-payment-plan table.shop_table.enr-subscribe-now-wrapper .enr-subscribe-now-handle-row td .amount::before {
  content: "or ";
}

.product-registration-field,
.product-reporting-field,
.product-email-address {
  margin-top: 0.75rem;
}

.product-registration-field label,
.product-reporting-field label,
.product-email-address label {
  color: inherit;
}

.woocommerce .product-options .product-button {
  margin-top: 1.75rem;
}

.product-unavailable-message {
  position: absolute;
  top: 35%;
  left: 50%;
  width: 80%;
  text-align: center;
  transform: translate(-50%, -50%) rotate(-10deg);
}

.product-unavailable-message p {
  margin: 0;
  display: inline-block;
  color: #fcfcff;
  font-size: 1.5rem;
  line-height: 1.3;
  padding: 1rem 2.5rem;
  background-color: rgba(43, 44, 60, 0.95);
  border-radius: 5px;
}

.product-item {
  padding: 3.5rem 2.5rem;
  position: relative;
  background-color: #afcbe3;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-item:nth-child(2) {
  background-color: rgba(175, 203, 227, 0.5);
}

.product-item:nth-child(3) {
  background-color: rgba(175, 203, 227, 0.333333);
}

.product-item:nth-child(4) {
  background-color: rgba(175, 203, 227, 0.25);
}

.product-item:nth-child(5) {
  background-color: rgba(175, 203, 227, 0.2);
}

.product-item--feature {
  color: #fcfcff;
  background-color: #2b2c3c;
}

.product-item--feature .product-price ins {
  color: #f7d44f;
}

.product-item--feature .product-unavailable-message p {
  color: #2b2c3c;
  background-color: rgba(252, 252, 255, 0.975);
}

.product-item--unavailable {
  filter: grayscale(1);
}

.product-item--large {
  padding: 6rem 2.5rem;
}

@media print,
screen and (min-width: 37.5em) {
  .product-item--large {
    grid-column: span 2;
  }
}

@media print,
screen and (min-width: 64em) {
  .product-item--large {
    padding: 6rem 3.25rem;
    grid-column: initial;
    grid-row: span 2;
  }
}

.product-item--large .product-image {
  width: 5rem;
  margin-bottom: 2rem;
}

.product-item--large .product-price {
  font-size: 1.25rem;
}

.product-item--large .product-variant {
  font-size: 2.125rem;
  margin-bottom: 2.5rem;
}

.product-item--large:not(.product-item--feature) .product-button {
  border-radius: 10px;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 1.125rem;
  font-family: "inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  background-color: transparent;
  box-shadow: none;
  border-width: 2px;
  border-style: solid;
  font-family: "inter", sans-serif;
  font-weight: bold;
  line-height: 16px;
  font-size: 16px;
  padding: 12px 16px;
}

.product-item--large:not(.product-item--feature) .product-button:focus {
  outline: none;
}

.product-item--large:not(.product-item--feature) .product-button:disabled {
  filter: grayscale(1);
}

.product-item--large:not(.product-item--feature) .product-button i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.product-item--large:not(.product-item--feature) .product-button.has-black-background-color {
  background-color: #2b2c3c;
}

.product-item--large:not(.product-item--feature) .product-button.has-grey-background-color {
  background-color: #6b7280;
}

.product-item--large:not(.product-item--feature) .product-button.has-silver-background-color {
  background-color: #e5e7eb;
}

.product-item--large:not(.product-item--feature) .product-button.has-white-background-color {
  background-color: #fcfcff;
}

.product-item--large:not(.product-item--feature) .product-button.has-red-background-color {
  background-color: #ef4444;
}

.product-item--large:not(.product-item--feature) .product-button.has-lilac-background-color {
  background-color: #c2bfe5;
}

.product-item--large:not(.product-item--feature) .product-button.has-blue-background-color {
  background-color: #3b82f6;
}

.product-item--large:not(.product-item--feature) .product-button.has-green-background-color {
  background-color: #10b981;
}

.product-item--large:not(.product-item--feature) .product-button.has-olive-background-color {
  background-color: #55643c;
}

.product-item--large:not(.product-item--feature) .product-button.has-sunshine-background-color {
  background-color: #f7d44f;
}

.product-item--large:not(.product-item--feature) .product-button.has-mint-background-color {
  background-color: #b6de83;
}

.product-item--large:not(.product-item--feature) .product-button.has-rust-background-color {
  background-color: #6b2912;
}

.product-item--large:not(.product-item--feature) .product-button.has-waxflower-background-color {
  background-color: #fcba9e;
}

.product-item--large:not(.product-item--feature) .product-button.has-transparent-background-color {
  background-color: "transparent";
}

.product-item--large:not(.product-item--feature) .product-button.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.product-item--large:not(.product-item--feature) .product-button.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.product-item--large:not(.product-item--feature) .product-button.has-black-background-color {
  color: #fcfcff;
}

.product-item--large:not(.product-item--feature) .product-button.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.product-item--large:not(.product-item--feature) .product-button.has-no-shadow {
  box-shadow: none;
}

.product-item--large:not(.product-item--feature) .product-button.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.product-item--large:not(.product-item--feature) .product-button.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.product-item--large:not(.product-item--feature) .product-button:hover,
.product-item--large:not(.product-item--feature) .product-button:focus {
  opacity: 0.75;
  background-color: rgba(43, 44, 60, 0.05);
}

.product-item--large:not(.product-item--feature) .product-button:focus {
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3),
    inset 0 0 0 2px rgba(252, 252, 255, 0.75);
}

.bjm-wc-container .related,
.bjm-wc-container .upsells {
  margin-top: 2rem;
}

.taxonomy-terms {
  margin: 1.5rem auto;
}

.taxonomy-terms button {
  font-size: 1rem;
  margin: 0 0.5rem 0.5rem 0;
}

.taxonomy-terms button.is-active {
  border-color: transparent;
  background-color: #f7d44f;
}

.wrapper-bjm-post-meta,
.bjm-social-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center !important;
  min-height: 80px;
}

.wrapper-bjm-post-meta .share-title,
.bjm-social-wrapper .share-title {
  font-size: 1.3rem;
  margin-right: 10px;
}

.wrapper-bjm-post-meta .share-icons i,
.bjm-social-wrapper .share-icons i {
  font-size: 1.1rem;
}

.wrapper-bjm-post-meta .a-back,
.bjm-social-wrapper .a-back {
  font-weight: bold;
  margin-right: 30px;
  white-space: nowrap;
}

.wrapper-bjm-post-meta .meta,
.bjm-social-wrapper .meta {
  font-weight: normal;
  font-size: 1rem;
}

.wrapper-bjm-post-meta .meta .meta-line-1,
.bjm-social-wrapper .meta .meta-line-1 {
  margin: 0px;
  font-weight: normal;
}

hr.is-style-shiftup {
  transform: translateY(-30px);
  margin-bottom: 0px;
  width: auto;
}

hr:before {
  content: "";
  border-top: 1px solid #2b2c3c;
  display: block;
}

@media print,
screen and (min-width: 64em) {
  hr:before {
    margin-right: 1.8125rem;
    margin-left: 1.8125rem;
  }
}

@media print,
screen and (min-width: 64em) and (min-width: 37.5em) {
  hr:before {
    margin-right: 2.0625rem;
    margin-left: 2.0625rem;
  }
}

.wrapper-euka-event {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px !important;
  padding-right: 0px !important;
  background-color: #2b2c3c;
  color: white;
  overflow: hidden;
  min-height: 400px;
  display: flex;
}

@media screen and (min-width: 75em) {
  .wrapper-euka-event {
    max-width: 60rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .wrapper-euka-event {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wrapper-euka-event.alignwide {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .wrapper-euka-event.alignwide {
    max-width: 75rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .wrapper-euka-event.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.wrapper-euka-event.alignfull {
  max-width: none;
}

.wrapper-euka-event.alignfull > .grid-container {
  max-width: none;
}

@media print,
screen and (min-width: 64em) {
  .wrapper-euka-event {
    border-radius: 10px;
  }
}

.wrapper-euka-event .acf-event-map {
  height: 100%;
  width: 100%;
  min-height: 300px;
}

.wrapper-euka-event .event-details p {
  display: flex;
  flex-direction: row;
}

.wrapper-euka-event .event-details p i {
  padding-top: 4px;
  width: 20px;
  flex-shrink: 0;
  text-align: center;
  margin-right: 10px;
  color: #f7d44f;
}

.wrapper-euka-event .event-details p span {
  font-size: 1.1rem;
}

.wrapper-euka-event .event-button {
  margin-top: 35px;
}

.wrapper-euka-event .event-button a:after {
  margin-left: 30px;
  content: "\f08e";
}

.wrapper-euka-event .grid-x {
  flex-grow: 1;
}

.wrapper-euka-event .grid-x > .cell {
  display: flex;
  align-items: center;
}

.wrapper-euka-event .grid-x > .cell.cell-event-details {
  padding: 40px 23px;
}

@media print,
screen and (min-width: 64em) {
  .wrapper-euka-event .grid-x > .cell.cell-event-details {
    padding: 60px;
  }
}

blockquote {
  color: #f0a32f;
  font-style: italic;
  font-size: 1.5rem;
  border-color: #f0a32f;
}

blockquote p {
  color: #f0a32f;
  font-style: italic;
  font-size: 1.5rem !important;
}

.ability-notice {
  background-color: #6b2912;
  color: #fcfcff;
  padding: 0.75rem 0.75rem 0.75rem 3.5rem;
  border-radius: 10px;
  position: relative;
}

.ability-notice-wrap {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  margin-bottom: 0.75rem !important;
}

@media screen and (min-width: 75em) {
  .ability-notice-wrap {
    max-width: 60rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .ability-notice-wrap {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.ability-notice-wrap.alignwide {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .ability-notice-wrap.alignwide {
    max-width: 75rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .ability-notice-wrap.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.ability-notice-wrap.alignfull {
  max-width: none;
}

.ability-notice-wrap.alignfull > .grid-container {
  max-width: none;
}

.ability-notice-icon {
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.ability-notice p {
  margin: 0;
  line-height: 1.25;
  font-size: 1.125rem;
}

.ability-notice a {
  text-decoration: underline;
}

@media screen and (max-width: 37.5em) {
  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__media {
    margin-bottom: 2.5rem;
  }
}

@media screen and (max-width: 37.5em) {
  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
    padding: 0;
  }
}

.location-info {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .location-info {
    max-width: 60rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .location-info {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.location-info.alignwide {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 75em) {
  .location-info.alignwide {
    max-width: 75rem;
    padding-right: 1.8125rem;
    padding-left: 1.8125rem;
  }
}

@media screen and (min-width: 75em) and (min-width: 37.5em) {
  .location-info.alignwide {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

.location-info.alignfull {
  max-width: none;
}

.location-info.alignfull > .grid-container {
  max-width: none;
}

@media print,
screen and (min-width: 64em) {
  .location-info-details {
    padding-right: 2.5rem;
    align-self: center;
  }
}

@media print,
screen and (max-width: 63.99875em) {
  .location-info-details {
    margin-bottom: 2rem;
  }
}

.location-info-media {
  position: relative;
  min-height: 18rem;
}

.location-info-meta {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.location-info-meta a {
  color: inherit;
  word-wrap: break-word;
  text-decoration: underline;
}

.location-info-meta i {
  position: absolute;
  left: 0;
  top: 4px;
}

.location-info-map {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media print,
screen and (max-width: 63.99875em) {
  .location-info-map {
    min-height: 350px;
  }
}

.cell-gutenberg-content ._form ._form-label {
  color: inherit;
}

.cell-gutenberg-content ._form ._button-wrapper {
  margin-top: 0.5rem;
}

.cell-gutenberg-content ._form ._submit {
  border-radius: 10px;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 1.125rem;
  font-family: "inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  color: #2b2c3c;
  background-color: #f7d44f;
  font-weight: 500;
}

.cell-gutenberg-content ._form ._submit:focus {
  outline: none;
}

.cell-gutenberg-content ._form ._submit:disabled {
  filter: grayscale(1);
}

.cell-gutenberg-content ._form ._submit i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.cell-gutenberg-content ._form ._submit.has-black-background-color {
  background-color: #2b2c3c;
}

.cell-gutenberg-content ._form ._submit.has-grey-background-color {
  background-color: #6b7280;
}

.cell-gutenberg-content ._form ._submit.has-silver-background-color {
  background-color: #e5e7eb;
}

.cell-gutenberg-content ._form ._submit.has-white-background-color {
  background-color: #fcfcff;
}

.cell-gutenberg-content ._form ._submit.has-red-background-color {
  background-color: #ef4444;
}

.cell-gutenberg-content ._form ._submit.has-lilac-background-color {
  background-color: #c2bfe5;
}

.cell-gutenberg-content ._form ._submit.has-blue-background-color {
  background-color: #3b82f6;
}

.cell-gutenberg-content ._form ._submit.has-green-background-color {
  background-color: #10b981;
}

.cell-gutenberg-content ._form ._submit.has-olive-background-color {
  background-color: #55643c;
}

.cell-gutenberg-content ._form ._submit.has-sunshine-background-color {
  background-color: #f7d44f;
}

.cell-gutenberg-content ._form ._submit.has-mint-background-color {
  background-color: #b6de83;
}

.cell-gutenberg-content ._form ._submit.has-rust-background-color {
  background-color: #6b2912;
}

.cell-gutenberg-content ._form ._submit.has-waxflower-background-color {
  background-color: #fcba9e;
}

.cell-gutenberg-content ._form ._submit.has-transparent-background-color {
  background-color: "transparent";
}

.cell-gutenberg-content ._form ._submit.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.cell-gutenberg-content ._form ._submit.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.cell-gutenberg-content ._form ._submit.has-black-background-color {
  color: #fcfcff;
}

.cell-gutenberg-content ._form ._submit.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.cell-gutenberg-content ._form ._submit.has-no-shadow {
  box-shadow: none;
}

.cell-gutenberg-content ._form ._submit.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.cell-gutenberg-content ._form ._submit.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.cell-gutenberg-content ._form ._submit:hover,
.cell-gutenberg-content ._form ._submit:focus {
  color: #2b2c3c;
  background-color: #f5c81e;
}

.cell-gutenberg-content ._form ._submit:focus {
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3),
    inset 0 0 0 2px rgba(252, 252, 255, 0.75);
}

.cell-gutenberg-content ._form ._has_error {
  border-color: #ef4444;
}

.cell-gutenberg-content ._form ._error {
  font-size: 0.8rem;
  margin: -10px 0 10px;
}

.cell-gutenberg-content ._form ._submit::after {
  padding-left: 10px;
  content: "\f178";
}

@media print,
screen and (min-width: 37.5em) {

  .cell-gutenberg-content ._form._form_8 input,
  .cell-gutenberg-content ._form._form_8 textarea,
  .cell-gutenberg-content ._form._form_14 input,
  .cell-gutenberg-content ._form._form_14 textarea {
    margin-bottom: 0;
  }
}

@media print,
screen and (min-width: 37.5em) {

  .cell-gutenberg-content ._form._form_8 ._form-content,
  .cell-gutenberg-content ._form._form_14 ._form-content {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }
}

@media print,
screen and (min-width: 37.5em) {

  .cell-gutenberg-content ._form._form_8 ._error,
  .cell-gutenberg-content ._form._form_14 ._error {
    margin: 2px 0 0;
  }
}

.cell-gutenberg-content ._form._form_8 ._field48,
.cell-gutenberg-content ._form._form_14 ._field48 {
  grid-column: span 2;
}

.cell-gutenberg-content ._form._form_8 ._button-wrapper,
.cell-gutenberg-content ._form._form_14 ._button-wrapper {
  text-align: right;
}

.store-title {
  text-align: center;
}

.wp-block-buttons.is-style-bottom {
  flex-grow: 1;
  flex-basis: 100%;
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.wp-block-button:not(:first-child) {
  margin-left: 10px;
}

.wp-block-button .wp-block-button--icon::before {
  font-family: "Font Awesome 5 Pro";
}

.wp-block-button .wp-block-button--icon-left::before {
  padding-right: 0.75em;
}

.wp-block-button .wp-block-button--icon-right::before {
  order: 1;
  padding-left: 0.75em;
}

.wp-block-button .wp-block-button__link {
  border-radius: 10px;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 1.125rem;
  font-family: "inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  display: inline-flex;
  font-family: "inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 20px;
}

.wp-block-button .wp-block-button__link:focus {
  outline: none;
}

.wp-block-button .wp-block-button__link:disabled {
  filter: grayscale(1);
}

.wp-block-button .wp-block-button__link i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.wp-block-button .wp-block-button__link.has-black-background-color {
  background-color: #2b2c3c;
}

.wp-block-button .wp-block-button__link.has-grey-background-color {
  background-color: #6b7280;
}

.wp-block-button .wp-block-button__link.has-silver-background-color {
  background-color: #e5e7eb;
}

.wp-block-button .wp-block-button__link.has-white-background-color {
  background-color: #fcfcff;
}

.wp-block-button .wp-block-button__link.has-red-background-color {
  background-color: #ef4444;
}

.wp-block-button .wp-block-button__link.has-lilac-background-color {
  background-color: #c2bfe5;
}

.wp-block-button .wp-block-button__link.has-blue-background-color {
  background-color: #3b82f6;
}

.wp-block-button .wp-block-button__link.has-green-background-color {
  background-color: #10b981;
}

.wp-block-button .wp-block-button__link.has-olive-background-color {
  background-color: #55643c;
}

.wp-block-button .wp-block-button__link.has-sunshine-background-color {
  background-color: #f7d44f;
}

.wp-block-button .wp-block-button__link.has-mint-background-color {
  background-color: #b6de83;
}

.wp-block-button .wp-block-button__link.has-rust-background-color {
  background-color: #6b2912;
}

.wp-block-button .wp-block-button__link.has-waxflower-background-color {
  background-color: #fcba9e;
}

.wp-block-button .wp-block-button__link.has-transparent-background-color {
  background-color: "transparent";
}

.wp-block-button .wp-block-button__link.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.wp-block-button .wp-block-button__link.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.wp-block-button .wp-block-button__link.has-black-background-color {
  color: #fcfcff;
}

.wp-block-button .wp-block-button__link.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.wp-block-button .wp-block-button__link.has-no-shadow {
  box-shadow: none;
}

.wp-block-button .wp-block-button__link.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.wp-block-button .wp-block-button__link.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.wp-block-button .wp-block-button__link .wp-block-button__link--icon {
  font-size: 1em;
}

.wp-block-button .wp-block-button__link .wp-block-button__link--icon.icon-left {
  padding-left: 0;
  padding-right: 8px;
}

.wp-block-button .wp-block-button__link .wp-block-button__link--icon.icon-right {
  order: 1;
  padding-left: 8px;
}

.wp-block-button.is-style-primary .wp-block-button__link {
  border-radius: 10px;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 1.125rem;
  font-family: "inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  color: #2b2c3c;
  background-color: #f7d44f;
}

.wp-block-button.is-style-primary .wp-block-button__link:focus {
  outline: none;
}

.wp-block-button.is-style-primary .wp-block-button__link:disabled {
  filter: grayscale(1);
}

.wp-block-button.is-style-primary .wp-block-button__link i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-black-background-color {
  background-color: #2b2c3c;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-grey-background-color {
  background-color: #6b7280;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-silver-background-color {
  background-color: #e5e7eb;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-white-background-color {
  background-color: #fcfcff;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-red-background-color {
  background-color: #ef4444;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-lilac-background-color {
  background-color: #c2bfe5;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-blue-background-color {
  background-color: #3b82f6;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-green-background-color {
  background-color: #10b981;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-olive-background-color {
  background-color: #55643c;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-sunshine-background-color {
  background-color: #f7d44f;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-mint-background-color {
  background-color: #b6de83;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-rust-background-color {
  background-color: #6b2912;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-waxflower-background-color {
  background-color: #fcba9e;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-transparent-background-color {
  background-color: "transparent";
}

.wp-block-button.is-style-primary .wp-block-button__link.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-black-background-color {
  color: #fcfcff;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.wp-block-button.is-style-primary .wp-block-button__link.has-no-shadow {
  box-shadow: none;
}

.wp-block-button.is-style-primary .wp-block-button__link.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.wp-block-button.is-style-primary .wp-block-button__link.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.wp-block-button.is-style-primary .wp-block-button__link:hover,
.wp-block-button.is-style-primary .wp-block-button__link:focus {
  color: #2b2c3c;
  background-color: #f5c81e;
}

.wp-block-button.is-style-primary .wp-block-button__link:focus {
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3),
    inset 0 0 0 2px rgba(252, 252, 255, 0.75);
}

.wp-block-button.is-style-secondary .wp-block-button__link {
  border-radius: 10px;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 1.125rem;
  font-family: "inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  background-color: transparent;
  box-shadow: none;
  border-width: 2px;
  border-style: solid;
  font-family: "inter", sans-serif;
  font-weight: bold;
  line-height: 16px;
  font-size: 16px;
  padding: 12px 16px;
}

.wp-block-button.is-style-secondary .wp-block-button__link:focus {
  outline: none;
}

.wp-block-button.is-style-secondary .wp-block-button__link:disabled {
  filter: grayscale(1);
}

.wp-block-button.is-style-secondary .wp-block-button__link i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-black-background-color {
  background-color: #2b2c3c;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-grey-background-color {
  background-color: #6b7280;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-silver-background-color {
  background-color: #e5e7eb;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-white-background-color {
  background-color: #fcfcff;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-red-background-color {
  background-color: #ef4444;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-lilac-background-color {
  background-color: #c2bfe5;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-blue-background-color {
  background-color: #3b82f6;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-green-background-color {
  background-color: #10b981;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-olive-background-color {
  background-color: #55643c;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-sunshine-background-color {
  background-color: #f7d44f;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-mint-background-color {
  background-color: #b6de83;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-rust-background-color {
  background-color: #6b2912;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-waxflower-background-color {
  background-color: #fcba9e;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-transparent-background-color {
  background-color: "transparent";
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-black-background-color {
  color: #fcfcff;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.wp-block-button.is-style-secondary .wp-block-button__link.has-no-shadow {
  box-shadow: none;
}

.wp-block-button.is-style-secondary .wp-block-button__link.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.wp-block-button.is-style-secondary .wp-block-button__link.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.wp-block-button.is-style-secondary .wp-block-button__link:hover,
.wp-block-button.is-style-secondary .wp-block-button__link:focus {
  opacity: 0.75;
  background-color: rgba(43, 44, 60, 0.05);
}

.wp-block-button.is-style-secondary .wp-block-button__link:focus {
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3),
    inset 0 0 0 2px rgba(252, 252, 255, 0.75);
}

.wp-block-button.is-style-tertiary .wp-block-button__link {
  border-radius: 10px;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 1.125rem;
  font-family: "inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  font-family: "inter", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0px;
  box-shadow: none;
}

.wp-block-button.is-style-tertiary .wp-block-button__link:focus {
  outline: none;
}

.wp-block-button.is-style-tertiary .wp-block-button__link:disabled {
  filter: grayscale(1);
}

.wp-block-button.is-style-tertiary .wp-block-button__link i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-black-background-color {
  background-color: #2b2c3c;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-grey-background-color {
  background-color: #6b7280;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-silver-background-color {
  background-color: #e5e7eb;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-white-background-color {
  background-color: #fcfcff;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-red-background-color {
  background-color: #ef4444;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-lilac-background-color {
  background-color: #c2bfe5;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-blue-background-color {
  background-color: #3b82f6;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-green-background-color {
  background-color: #10b981;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-olive-background-color {
  background-color: #55643c;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-sunshine-background-color {
  background-color: #f7d44f;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-mint-background-color {
  background-color: #b6de83;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-rust-background-color {
  background-color: #6b2912;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-waxflower-background-color {
  background-color: #fcba9e;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-transparent-background-color {
  background-color: "transparent";
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-black-background-color {
  color: #fcfcff;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.has-no-shadow {
  box-shadow: none;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.wp-block-button.is-style-tertiary .wp-block-button__link.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.wp-block-button.is-style-tertiary .wp-block-button__link:after {
  transition: bottom 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  content: "";
  border-width: 1px;
  border-style: solid;
  position: absolute;
  bottom: -2px;
  left: 0px;
  right: 0px;
}

.wp-block-button.is-style-tertiary .wp-block-button__link:hover {
  opacity: 0.75;
}

.wp-block-button.is-style-tertiary .wp-block-button__link:focus::after {
  border-width: 2px;
}

.wp-block-button.is-style-tertiary .wp-block-button__link:not(.has-text-color) {
  color: inherit;
}

body {
  background-color: #fcfcff;
  background-image: url(../images/texture-dark-pattern-6.png);
  background-repeat: repeat;
  background-size: 100vw;
}

body .body-wrap {
  overflow-x: hidden;
  transform-origin: top;
}

hr {
  width: 100%;
  height: 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 30px;
  margin-bottom: 30px;
}

main {
  min-height: 200px;
}

.alignleft {
  display: flex;
  align-items: flex-start;
}

.alignright {
  display: flex;
  align-items: flex-end;
}

.alignfull {
  width: 100%;
  max-width: none;
}

.wp-block-buttons.alignleft {
  justify-content: flex-start;
}

.wp-block-buttons.alignright {
  justify-content: flex-end;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:focus {
  color: #2b2c3c;
  background-color: #fcfcff;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.25);
  clip: auto;
  display: block;
  line-height: normal;
  padding: 0.5rem 1rem;
  text-decoration: none;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  z-index: 100000;
}

#wpadminbar {
  position: fixed;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #2b2c3c;
}

.hamburger-box {
  width: 26px;
  height: 21px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 26px;
  height: 3px;
  background-color: #2b2c3c;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -9px;
}

.hamburger-inner::after {
  bottom: -9px;
}

.hamburger--3dx .hamburger-box {
  perspective: 52px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before,
.hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

.hamburger--3dx-r .hamburger-box {
  perspective: 52px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before,
.hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

.hamburger--3dy .hamburger-box {
  perspective: 52px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before,
.hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

.hamburger--3dy-r .hamburger-box {
  perspective: 52px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before,
.hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

.hamburger--3dxy .hamburger-box {
  perspective: 52px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before,
.hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

.hamburger--3dxy-r .hamburger-box {
  perspective: 52px;
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before,
.hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-5.2px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-5.2px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(5.2px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(5.2px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-5.2px, -6.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-5.2px, 6.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(5.2px, -6.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(5.2px, 6.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner::before,
.hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -18px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -18px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -9px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--elastic .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 9px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 18px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 9px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 18px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
  top: 9px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -52px;
  top: -52px;
  transform: translate3d(52px, 52px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -52px;
  top: -52px;
  transform: translate3d(-52px, 52px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 9px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335),
    top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -52px;
  top: 52px;
  transform: translate3d(52px, -52px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -52px;
  top: 52px;
  transform: translate3d(-52px, -52px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear,
    transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--minus .hamburger-inner::before,
.hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before,
.hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

.hamburger--slider .hamburger-inner {
  top: 1.5px;
}

.hamburger--slider .hamburger-inner::before {
  top: 9px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 18px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-3.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(-90deg);
}

.hamburger--slider-r .hamburger-inner {
  top: 1.5px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 9px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 18px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 9px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(3.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -18px, 0) rotate(90deg);
}

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring .hamburger-inner {
  top: 1.5px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 9px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 18px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 9px, 0) rotate(-45deg);
}

.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -18px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -9px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease,
    transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease,
    transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before,
.hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before,
.hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before,
.hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before,
.hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

.hamburger {
  display: flex;
  align-items: center;
  padding: 8px;
  box-shadow: none;
  color: #2b2c3c;
  z-index: 100;
}

@media screen and (min-width: 75em) {
  .hamburger {
    display: none;
  }
}

.top-menu {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
}

.top-menu li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.top-menu li + li {
  margin-left: 1rem;
}

.top-menu .nav-icon-user a,
.top-menu .nav-icon-student a {
  text-decoration: underline;
}

.top-menu .nav-icon-user a:before,
.top-menu .nav-icon-student a:before {
  content: "\f007";
  margin-right: 6px;
}

.top-menu .nav-icon-student a::before {
  content: "\f501";
}

.menu-is-open {
  overflow: hidden;
}

@media print,
screen and (max-width: 63.99875em) {
  .menu-main-menu-container {
    display: none;
  }

  .menu-is-open .menu-main-menu-container {
    display: flex;
  }
}

.menu-main-menu-container .main-menu {
  list-style: none;
  font-weight: bold;
  font-family: "infinibold";
  margin: 0px;
  padding: 0px;
  flex-direction: row;
  display: none;
  font-size: 1rem;
}

@media print,
screen and (min-width: 64em) {
  .menu-main-menu-container .main-menu {
    display: flex;
    position: relative;
    font-size: 0.95rem;
  }
}

@media screen and (min-width: 75em) {
  .menu-main-menu-container .main-menu {
    font-size: 1.2rem;
  }
}

.menu-main-menu-container .main-menu li {
  list-style: none;
  margin: 0px;
  padding: 10px 14px;
}

@media print,
screen and (min-width: 64em) and (max-width: 74.99875em) {
  .menu-main-menu-container .main-menu li {
    padding: 10px 12px;
  }
}

.menu-main-menu-container .main-menu li.open .sub-menu {
  transition: opacity 0.25s;
  opacity: 1;
  pointer-events: all;
  z-index: 300;
}

@media print,
screen and (min-width: 64em) {
  .menu-main-menu-container .main-menu li.open .sub-menu {
    z-index: 100;
  }
}

.menu-main-menu-container .main-menu li.open > a::after {
  opacity: 1;
}

.menu-main-menu-container .main-menu li a {
  color: #2b2c3c;
  display: inline-block;
  white-space: nowrap;
  position: relative;
  z-index: 200;
}

.menu-main-menu-container .main-menu li a::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0px;
  right: 0px;
  opacity: 0;
  border-top: 2px solid #2b2c3c;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.menu-main-menu-container .main-menu li a:hover,
.menu-main-menu-container .main-menu li a:focus {
  opacity: 0.75;
}

.menu-main-menu-container .main-menu li a:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(43, 44, 60, 0.5);
  border-radius: 10px;
}

body:not(.main-menu-open) .menu-main-menu-container .main-menu > li.current-menu-item > a::after,
body:not(.main-menu-open) .menu-main-menu-container .main-menu > li.current-menu-parent > a::after {
  opacity: 1;
  bottom: -8px;
}

.menu-main-menu-container .main-menu .sub-menu {
  transition: opacity 0.25s;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  background-color: #fcfcff;
  border-radius: 10px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 120px 24px 40px;
  height: 300px;
  display: flex;
  flex-direction: column;
}

@media (min-height: 500px) and (max-width: 63.99875em) {
  .menu-main-menu-container .main-menu .sub-menu {
    justify-content: center;
  }
}

@media print,
screen and (max-width: 63.99875em) {
  .admin-bar.menu-is-open .menu-main-menu-container .main-menu .sub-menu {
    padding-top: 160px;
  }
}

@media print,
screen and (min-width: 64em) {
  .menu-main-menu-container .main-menu .sub-menu {
    width: calc(100% + 80px);
    left: -20px;
    right: -20px;
    margin-top: -60px;
    flex-wrap: wrap;
    transition: opacity 0.25s 0.25s;
    box-shadow: 0 15px 30px 0 rgba(42, 14, 4, 0.09);
    overflow: hidden;
  }

  .menu-main-menu-container .main-menu .sub-menu::after {
    content: ".";
    width: inherit;
    visibility: hidden;
  }
}

@media print,
screen and (max-width: 63.99875em) {
  .menu-main-menu-container .main-menu .sub-menu {
    height: 100%;
    top: 0px;
    width: 100%;
    z-index: 300;
    overflow-y: auto;
  }
}

.menu-main-menu-container .main-menu .sub-menu-title {
  position: relative;
  margin-bottom: 16px;
}

@media print,
screen and (min-width: 64em) {
  .menu-main-menu-container .main-menu .sub-menu-title {
    display: none;
  }
}

.menu-main-menu-container .main-menu .sub-menu-title:before {
  content: "\f177";
  position: absolute;
  left: 0px;
  top: calc(50% - 2px);
  transform: translateY(-50%);
}

.menu-main-menu-container .main-menu .sub-menu li {
  position: relative;
  z-index: 200;
  padding: 0;
}

@media print,
screen and (min-width: 64em) {
  .menu-main-menu-container .main-menu .sub-menu li {
    text-align: left;
    margin-right: 2.5rem;
  }
}

.menu-main-menu-container .main-menu .sub-menu li a {
  font-size: 1.2rem;
  font-family: "inter", sans-serif;
  font-weight: normal;
  padding: 8px 14px;
}

@media print,
screen and (min-width: 64em) {
  .menu-main-menu-container .main-menu .sub-menu li a {
    text-align: left;
    font-size: 1.1rem;
  }
}

.menu-main-menu-container .main-menu .sub-menu li a:after {
  content: none;
}

@media print,
screen and (max-width: 63.99875em) {
  .menu-main-menu-container .main-menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 1.5rem;
  }

  .menu-main-menu-container .main-menu li {
    width: 100%;
  }

  .menu-main-menu-container .main-menu li a {
    padding: 10px 0;
  }

  .menu-main-menu-container .main-menu li .sub-menu li a {
    padding: 10px 20px;
  }
}

.menu-footer-container > ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media print,
screen and (min-width: 37.5em) {
  .menu-footer-container > ul {
    flex-direction: row;
    margin-top: 0px;
  }
}

.menu-footer-container > ul a {
  color: #2b2c3c;
}

.menu-footer-container > ul > li {
  font-size: 1.1rem;
  font-family: "infinibold";
  padding: 0px;
  margin: 0px;
  text-align: center;
  margin-top: 30px;
}

@media print,
screen and (min-width: 37.5em) {
  .menu-footer-container > ul > li {
    flex-basis: 50%;
  }
}

@media print,
screen and (min-width: 64em) {
  .menu-footer-container > ul > li {
    margin-top: 0px;
    text-align: left;
    flex-grow: 1;
    flex-basis: auto;
    margin-left: 4vmin;
  }

  .menu-footer-container > ul > li:not(:first-child) {
    margin-left: 40px;
  }
}

.menu-footer-container > ul > li > a {
  margin-bottom: 16px;
  display: block;
}

.menu-footer-container > ul > li ul {
  padding: 0px;
  margin: 0px;
}

.menu-footer-container > ul > li ul li {
  font-family: "inter", sans-serif;
  list-style: none;
  text-decoration: underline;
  font-size: 1rem;
  padding: 0px;
  margin: 0px;
  margin-bottom: 18px;
}

.menu-footer-lower-container {
  margin-top: 30px;
}

@media print,
screen and (min-width: 64em) {
  .menu-footer-lower-container {
    margin-left: 20px;
    margin-top: 0px;
  }
}

.menu-footer-lower-container > ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  text-align: center;
  flex-direction: column;
}

@media print,
screen and (min-width: 64em) {
  .menu-footer-lower-container > ul {
    flex-direction: row;
    text-align: left;
  }
}

.menu-footer-lower-container > ul a {
  color: #2b2c3c;
  display: block;
  text-decoration: underline;
  margin-bottom: 16px;
}

@media print,
screen and (min-width: 64em) {
  .menu-footer-lower-container > ul a {
    margin-left: 16px;
    margin-bottom: 0px;
  }
}

label,
.faux-label {
  color: #36374b;
  font-size: 0.75rem;
  line-height: 1.8;
  cursor: pointer;
}

[type="text"],
[type="password"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="month"],
[type="week"],
[type="email"],
[type="number"],
[type="search"],
[type="tel"],
[type="time"],
[type="url"],
[type="color"],
textarea,
select,
.select2-container--default .select2-selection--single {
  height: 2.75rem;
  border-color: #e5e7eb;
  box-shadow: none;
  background-color: #fbfbfc;
  border-radius: 5px;
  -webkit-appearance: none;
}

[type="text"].has-error,
[type="password"].has-error,
[type="date"].has-error,
[type="datetime"].has-error,
[type="datetime-local"].has-error,
[type="month"].has-error,
[type="week"].has-error,
[type="email"].has-error,
[type="number"].has-error,
[type="search"].has-error,
[type="tel"].has-error,
[type="time"].has-error,
[type="url"].has-error,
[type="color"].has-error,
textarea.has-error,
select.has-error,
.select2-container--default .select2-selection--single.has-error {
  border-color: #ef4444 !important;
}

[type="text"]::placeholder,
[type="password"]::placeholder,
[type="date"]::placeholder,
[type="datetime"]::placeholder,
[type="datetime-local"]::placeholder,
[type="month"]::placeholder,
[type="week"]::placeholder,
[type="email"]::placeholder,
[type="number"]::placeholder,
[type="search"]::placeholder,
[type="tel"]::placeholder,
[type="time"]::placeholder,
[type="url"]::placeholder,
[type="color"]::placeholder,
textarea::placeholder,
select::placeholder,
.select2-container--default .select2-selection--single::placeholder {
  color: #6b7280;
}

select {
  -webkit-appearance: none;
}

textarea {
  height: auto;
}

.styled-checkbox input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.styled-checkbox input:checked + .styled-checkbox-content::before {
  border-color: #f7d44f;
}

.styled-checkbox input:checked + .styled-checkbox-content::after {
  opacity: 1;
}

.styled-checkbox input:focus + .styled-checkbox-content::before,
.styled-checkbox input:focus + .styled-checkbox-content::after {
  transform: scale(1.1);
}

.styled-checkbox-content {
  position: relative;
  padding-left: 30px;
  text-align: left;
}

.styled-checkbox-content::before,
.styled-checkbox-content::after {
  content: "";
  display: block;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  position: absolute;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.styled-checkbox-content::before {
  border-radius: 5px;
  border: 2px solid currentColor;
}

.styled-checkbox-content::after {
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f7d44f;
  content: "\f00c";
}

.styled-checkbox-content .button-reset {
  color: inherit;
  text-decoration: underline;
}

.styled-checkbox-content .button-reset:hover,
.styled-checkbox-content .button-reset:focus {
  opacity: 0.75;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 2.5;
  color: #2b2c3c;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
}

.select2-container--default .select2-dropdown {
  border-color: #e5e7eb;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background-color: #c2bfe5;
}

.forminator-ui label {
  color: inherit;
}

.forminator-ui .forminator-input {
  margin-bottom: 0;
}

.forminator-ui .forminator-row:not(:last-child) {
  margin-bottom: 1rem !important;
}

.forminator-ui .forminator-has_error .forminator-input {
  border-color: #ef4444;
}

.forminator-ui .forminator-error-message {
  padding: 2px 4px;
  font-size: 0.75em;
  color: #fcfcff;
  background-color: #ef4444;
  border-radius: 5px;
}

.forminator-ui .forminator-button {
  border-radius: 10px;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 1.125rem;
  font-family: "inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  color: #2b2c3c;
  background-color: #f7d44f;
}

.forminator-ui .forminator-button:focus {
  outline: none;
}

.forminator-ui .forminator-button:disabled {
  filter: grayscale(1);
}

.forminator-ui .forminator-button i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.forminator-ui .forminator-button.has-black-background-color {
  background-color: #2b2c3c;
}

.forminator-ui .forminator-button.has-grey-background-color {
  background-color: #6b7280;
}

.forminator-ui .forminator-button.has-silver-background-color {
  background-color: #e5e7eb;
}

.forminator-ui .forminator-button.has-white-background-color {
  background-color: #fcfcff;
}

.forminator-ui .forminator-button.has-red-background-color {
  background-color: #ef4444;
}

.forminator-ui .forminator-button.has-lilac-background-color {
  background-color: #c2bfe5;
}

.forminator-ui .forminator-button.has-blue-background-color {
  background-color: #3b82f6;
}

.forminator-ui .forminator-button.has-green-background-color {
  background-color: #10b981;
}

.forminator-ui .forminator-button.has-olive-background-color {
  background-color: #55643c;
}

.forminator-ui .forminator-button.has-sunshine-background-color {
  background-color: #f7d44f;
}

.forminator-ui .forminator-button.has-mint-background-color {
  background-color: #b6de83;
}

.forminator-ui .forminator-button.has-rust-background-color {
  background-color: #6b2912;
}

.forminator-ui .forminator-button.has-waxflower-background-color {
  background-color: #fcba9e;
}

.forminator-ui .forminator-button.has-transparent-background-color {
  background-color: "transparent";
}

.forminator-ui .forminator-button.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.forminator-ui .forminator-button.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.forminator-ui .forminator-button.has-black-background-color {
  color: #fcfcff;
}

.forminator-ui .forminator-button.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.forminator-ui .forminator-button.has-no-shadow {
  box-shadow: none;
}

.forminator-ui .forminator-button.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.forminator-ui .forminator-button.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.forminator-ui .forminator-button:hover,
.forminator-ui .forminator-button:focus {
  color: #2b2c3c;
  background-color: #f5c81e;
}

.forminator-ui .forminator-button:focus {
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3),
    inset 0 0 0 2px rgba(252, 252, 255, 0.75);
}

.forminator-ui .forminator-button:after {
  padding-left: 10px;
  content: "\f178";
}

@media print,
screen and (min-width: 37.5em) {
  .cell-gutenberg-content ._form-content {
    display: grid;
    grid-gap: 5px 25px;
    grid-template-columns: 1fr 1fr;
  }

  .cell-gutenberg-content ._form-content ._field48 {
    grid-column: span 2;
  }

  .cell-gutenberg-content ._form-content ._button-wrapper {
    text-align: right;
    grid-column: span 2;
  }
}

.ac-form {
  text-align: left;
}

.ac-form ._clear-element {
  clear: left;
}

.ac-form.ac-form-simple .footer-form-intro-text {
  font-family: "komu-b";
  font-size: 2.8rem;
  line-height: 3.1rem;
  text-align: left;
  margin-bottom: 20px;
}

.ac-form.ac-form-simple .footer-form-form form ._form-content {
  border: 2px solid #2b2c3c;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ac-form.ac-form-simple .footer-form-form form ._form-content ._form_element {
  width: 55%;
}

.ac-form.ac-form-simple .footer-form-form form ._form-content ._button-wrapper {
  width: 45%;
  margin-top: 0;
}

.ac-form.ac-form-simple .footer-form-form form ._form-content input {
  margin: 0px;
  background-color: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  height: 44px;
}

.ac-form.ac-form-simple .footer-form-form form ._form-content input::placeholder {
  color: #2b2c3c;
}

.ac-form.ac-form-simple .footer-form-form form ._form-content button {
  box-shadow: none;
  background-color: #2b2c3c;
  color: white;
  width: 100%;
  height: 44px;
  border-radius: 0 8px 8px 0;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.ac-form.ac-form-simple .footer-form-form form ._form-content button:hover {
  background-color: #3b3c52;
}

.ac-form.ac-form-simple .footer-form-form form ._form-content button:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(252, 252, 255, 0.25);
}

.ac-form.ac-form-simple .footer-form-form form ._form-content button:after {
  padding-left: 10px;
  content: "\f178";
}

.ac-form.ac-form-simple .footer-form-form form ._error {
  position: absolute;
  top: calc(100% + 5px);
  left: 5px;
  font-size: 0.8rem;
}

.ac-form.ac-form-simple ._form-label {
  display: none;
}

.ac-form.ac-form-simple ._form-thank-you {
  font-size: 1.5rem;
  text-align: center;
}

.starting-term-display {
  margin: 0;
  list-style-type: none;
  text-align: center;
  font-size: 0.9em;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
  line-height: 1.3;
}

.starting-term-display li {
  padding: 0.6rem 0.25rem 0.5rem;
  color: #2b2c3c;
  background-color: #c2bfe5;
  border-radius: 5px;
}

.starting-term-display span {
  padding-left: 2px;
}

.starting-term-display strong {
  display: block;
  line-height: 1;
  text-transform: uppercase;
  font-family: "komu-a";
}

.modal {
  display: none;
  color: #fcfcff;
}

.modal.is-open {
  display: block;
}

.modal.is-open .modal-overlay {
  animation: fadeIn 0.25s linear;
}

.modal.is-open .modal-container {
  animation: slideIn 0.25s linear;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.625);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-container {
  position: relative;
  padding: 50px 30px 30px;
  max-height: 85vh;
  width: 60rem;
  max-width: 90%;
  overflow-y: auto;
  position: relative;
  background-color: white;
  border-radius: 10px;
  color: #2b2c3c;
}

.modal-container--dark {
  color: #fcfcff;
  background-color: #2b2c3c;
}

.modal-bjm-popup .modal-container {
  padding: 0px;
}

.modal-content .wp-block-group.has-background:not(.alignfull) {
  margin-left: 0;
  margin-right: 0;
}

.modal-close {
  border: 0;
  z-index: 10;
  position: absolute;
  top: 0px;
  right: 0px;
  color: inherit;
  background: transparent;
  box-shadow: none;
  font-family: "inter", sans-serif;
  font-size: 0.8rem;
  line-height: 0.8rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.modal-close i {
  pointer-events: none;
  padding-top: 2px;
  padding-left: 8px;
  font-size: 1.2rem;
}

.modal-close:hover {
  opacity: 0.75;
  background: transparent;
}

.modal.video-modal .modal-container .video-modal-content iframe {
  min-height: 500px;
}

.modal.modal-team .modal-container {
  width: 50rem;
  background-image: url(../images/euka-team-background.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

@media print,
screen and (min-width: 37.5em) {
  .modal.modal-team .modal-container {
    background-size: contain;
  }
}

.modal.modal-team .cell-text-content {
  margin-top: 20px;
}

@media print,
screen and (min-width: 64em) {
  .modal.modal-team .cell-text-content {
    padding-left: 20px;
    margin-top: 0px;
  }
}

.modal.modal-team .cell-text-content .modal-team-text {
  font-size: 1.1rem;
}

.modal.modal-team .cell-text-content .modal-team-text p {
  font-size: 1.1rem;
}

.modal.modal-team .card-image {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 0px;
  padding-top: 100%;
}

.modal.modal-team .modal-team-position {
  font-size: 0.9rem;
  margin-top: 10px;
}

.modal.modal-team .modal-team-title {
  font-family: "infiniregular";
  font-weight: normal;
  font-size: 1.3125rem;
  margin-bottom: 30px;
}

.modal.modal-team .modal-team-contacts p {
  margin-bottom: 6px;
}

.modal.modal-team .modal-team-contacts a {
  color: #2b2c3c;
  font-weight: 500;
}

.modal.modal-team .modal-team-contacts i {
  width: 24px;
  margin-right: 6px;
  text-align: center;
}

.modal.cancel-subscription-modal .modal-container {
  width: 32.5rem;
  text-align: center;
}

.modal.cancel-subscription-modal .button {
  margin-top: 2rem;
}

.modal.product-registration .modal-container,
.modal.product-reporting .modal-container .modal.product-email-address .modal-container {
  padding: 0;
}

.modal .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
  padding-left: 2rem;
  padding-right: 2rem;
}

.header .header-top {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  font-size: 0.85rem;
  position: relative;
  z-index: 110;
  padding-right: 1.8125rem;
  padding-left: 1.8125rem;
  color: #2b2c3c;
  padding-top: 10px;
  padding-bottom: 10px;
  min-height: 40px;
}

@media print,
screen and (min-width: 37.5em) {
  .header .header-top {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

@media print,
screen and (min-width: 64em) {
  .header .header-top {
    height: 40px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

.header .header-top a {
  color: #2b2c3c;
}

.header .header-top-links {
  display: none;
  flex-direction: row;
  align-items: center;
  position: absolute;
  right: 0px;
  font-size: 0.9em;
  padding-right: 1.8125rem;
  padding-left: 1.8125rem;
}

@media print,
screen and (min-width: 37.5em) {
  .header .header-top-links {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

@media print,
screen and (min-width: 37.5em) {
  .header .header-top-links {
    font-size: 1em;
  }
}

@media print,
screen and (min-width: 64em) {
  .header .header-top-links {
    display: flex;
  }
}

.menu-is-open .header .header-top-links {
  display: flex;
}

.header .header-top-links > a,
.header .header-top-links > div {
  display: flex;
  align-items: center;
}

.header .header-top-links > a span,
.header .header-top-links > div span {
  text-decoration: underline;
}

.header .header-top-message a {
  font-weight: bold;
}

.menu-is-open .header .header-top-message {
  display: none;
}

@media print,
screen and (min-width: 64em) {
  .menu-is-open .header .header-top-message {
    display: flex;
  }
}

.header .header-top .sel-state-override {
  text-decoration: underline;
  background-color: transparent;
  text-align: left;
  width: 50px;
}

@media print,
screen and (min-width: 37.5em) {
  .header .header-top .sel-state-override {
    width: 100px;
  }
}

.header .navbar {
  transition: transform 1s cubic-bezier(0.77, 0, 0.18, 1),
    background-color 0.5s linear;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 100;
}

.admin-bar .header .navbar {
  top: 46px;
}

@media screen and (min-width: 48.9375em) {
  .admin-bar .header .navbar {
    top: 32px;
  }
}

.is-scrolling .header .navbar {
  background-color: rgba(255, 255, 255, 0.15);
}

.scrolled-down .header .navbar {
  background-color: #fff;
}

.header .navbar.slide-up {
  transform: translateY(-250px);
}

.menu-open .header .navbar.slide-up {
  transform: translateY(calc(-250px + 30px));
}

.header .navbar.slide-down {
  transform: none;
}

.header .cell-navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.scrolled-down .header .cell-navbar {
  transition: padding-top 0.25s cubic-bezier(0.77, 0, 0.18, 1) 0.25s,
    padding-bottom 0.25s cubic-bezier(0.77, 0, 0.18, 1) 0.25s;
  padding-top: 0px;
  padding-bottom: 10px;
}

@media print,
screen and (min-width: 64em) {
  .header .cell-navbar {
    transition: padding-top 0.25s cubic-bezier(0.77, 0, 0.18, 1),
      padding-bottom 0.25s cubic-bezier(0.77, 0, 0.18, 1);
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .scrolled-down .header .cell-navbar {
    transition: padding-top 0.25s cubic-bezier(0.77, 0, 0.18, 1) 0.25s,
      padding-bottom 0.25s cubic-bezier(0.77, 0, 0.18, 1) 0.25s;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.header .cell-navbar .navbar-main {
  display: flex;
  flex-direction: row;
  flex-basis: 100%;
  order: 2;
}

@media print,
screen and (min-width: 64em) {
  .header .cell-navbar .navbar-main {
    flex-basis: auto;
    order: unset;
  }
}

.header .cell-navbar .navbar-main .hamburger-wrap {
  justify-content: flex-end;
  flex-direction: row;
  display: flex;
  flex-basis: 100%;
}

@media print,
screen and (min-width: 64em) {
  .header .cell-navbar .navbar-main .hamburger-wrap {
    display: none;
  }
}

.header .cell-navbar .navbar-main .navbar-logo {
  flex-basis: 100%;
  position: relative;
}

@media print,
screen and (min-width: 64em) {
  .header .cell-navbar .navbar-main .navbar-logo {
    width: 160px;
  }
}

.header .cell-navbar .navbar-main .navbar-logo:before {
  opacity: 1;
  content: "";
  background-color: #f0a32f;
  width: 290px;
  height: 210px;
  display: block;
  position: absolute;
  z-index: 0;
  transform: rotate(-12deg);
  top: -110px;
  left: -120px;
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  background-position: bottom right;
}

@media print,
screen and (min-width: 64em) {
  .header .cell-navbar .navbar-main .navbar-logo:before {
    transform: rotate(-23deg);
    top: -101px;
    left: -100px;
    width: 300px;
    height: 240px;
  }
}

.scrolled-down .header .cell-navbar .navbar-main .navbar-logo:before {
  opacity: 0;
}

.header .cell-navbar .navbar-main .navbar-logo img {
  transition: width 0.25s cubic-bezier(0.77, 0, 0.18, 1),
    height 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  position: relative;
  width: 128px;
  height: 57px;
}

.scrolled-down .header .cell-navbar .navbar-main .navbar-logo img {
  transition: width 0.25s cubic-bezier(0.77, 0, 0.18, 1) 0.25s,
    height 0.25s cubic-bezier(0.77, 0, 0.18, 1) 0.25s;
  width: 110px;
  height: 49px;
}

@media print,
screen and (min-width: 64em) {
  .header .cell-navbar .navbar-main .navbar-logo img {
    width: 160px;
    height: 71px;
  }

  .scrolled-down .header .cell-navbar .navbar-main .navbar-logo img {
    transition: width 0.25s cubic-bezier(0.77, 0, 0.18, 1) 0.25s,
      height 0.25s cubic-bezier(0.77, 0, 0.18, 1) 0.25s;
    width: 110px;
    height: 49px;
  }
}

.header .cell-navbar .navbar-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  text-align: center;
  position: relative;
}

@media print,
screen and (max-width: 63.99875em) {
  .menu-is-open .header .cell-navbar .navbar-menu {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: #fcfcff;
    display: flex;
    flex-direction: column;
    overflow: auto;
    padding-top: 120px;
    padding-bottom: 40px;
    justify-content: center;
    z-index: 1;
  }
}

@media print,
screen and (max-width: 63.99875em) {
  .admin-bar.menu-is-open .header .cell-navbar .navbar-menu {
    padding-top: 160px;
  }
}

.header .cell-navbar .navbar-menu .a-search-header {
  color: #2b2c3c;
  display: none;
  padding-left: 14px;
  padding-right: 14px;
  z-index: 101;
}

.menu-is-open .header .cell-navbar .navbar-menu .a-search-header {
  display: block;
  padding-top: 20px;
  font-size: 1.5rem;
}

@media print,
screen and (min-width: 64em) {
  .header .cell-navbar .navbar-menu .a-search-header {
    display: block;
  }
}

.header .cell-navbar .nav-button {
  display: block;
  white-space: nowrap;
  z-index: 99;
}

.header .cell-navbar .nav-button .button {
  display: block;
  font-weight: normal;
  padding-bottom: 6px;
  font-family: "komu-b";
  font-size: 1.3125rem;
}

@media print,
screen and (max-width: 63.99875em) {
  .header .cell-navbar .nav-button {
    display: none;
  }

  .menu-is-open .header .cell-navbar .nav-button {
    display: flex;
  }
}

.header .cell-navbar .navbar-search {
  transition: opacity 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  opacity: 0;
  pointer-events: none;
  z-index: 200;
  position: fixed;
  overflow: hidden;
  background-color: #fcfcff;
  border-radius: 10px;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
  width: calc(100% - 44px);
}

@media print,
screen and (min-width: 64em) {
  .header .cell-navbar .navbar-search {
    width: 768px;
  }
}

.header .cell-navbar .navbar-search.is-open {
  opacity: 1;
  pointer-events: all;
}

.header .cell-navbar .navbar-search form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 50px 20px;
  background-size: 800px;
  background-image: url(../images/texture-dark-pattern-6.png);
  background-repeat: no-repeat;
  background-position: center right;
}

@media print,
screen and (min-width: 64em) {
  .header .cell-navbar .navbar-search form {
    flex-direction: row;
    height: 100px;
  }
}

.header .cell-navbar .navbar-search form label {
  flex-grow: 1;
  flex-basis: 100%;
  margin-bottom: 20px;
  width: 100%;
}

@media print,
screen and (min-width: 64em) {
  .header .cell-navbar .navbar-search form label {
    margin-right: 20px;
    margin-bottom: 0px;
  }
}

.header .cell-navbar .navbar-search form label input.search-field {
  padding: 0px 0px 0px 6px;
  margin: 0px;
  font-size: 1.1rem;
  border: none;
  background-color: transparent;
}

.header .cell-navbar .navbar-search form label input.search-field:focus {
  box-shadow: none;
}

@media print,
screen and (min-width: 64em) {
  .header .cell-navbar .navbar-search form label input.search-field {
    font-size: 1.3rem;
    padding: 0px 10px;
  }
}

.header .cell-navbar .navbar-search form .searchform-close {
  color: #2b2c3c;
  font-size: 1.2rem;
  margin-left: 20px;
  position: absolute;
  right: 10px;
  top: 5px;
}

@media print,
screen and (min-width: 64em) {
  .header .cell-navbar .navbar-search form .searchform-close {
    position: relative;
    top: auto;
    right: auto;
  }
}

.footer {
  margin-top: 80px;
  padding-top: 80px;
  padding-bottom: 30px;
  position: relative;
}

.footer:before {
  content: "";
  background-image: url(../images/euka-footer-leaf.png);
  background-repeat: no-repeat;
  background-position: top left;
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  background-size: contain;
}

@media print,
screen and (min-width: 64em) {
  .footer:before {
    background-size: auto 127%;
    width: 50%;
  }
}

.footer:after {
  content: "";
  background-image: url(../images/euka-footer-circle.png);
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: -1;
  background-size: contain;
  height: 80%;
  width: 50%;
  background-position: bottom right;
}

@media print,
screen and (min-width: 64em) {
  .footer:after {
    width: 33%;
  }
}

@media print,
screen and (min-width: 64em) {
  .footer .large-4 {
    padding-right: 0;
  }
}

.footer hr {
  border-bottom: 1px solid #2b2c3c;
  display: block;
}

.footer .footer-lower-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer .footer-lower-inner .footer-logo {
  width: 130px;
  height: auto;
}

.footer .footer-lower-inner .menu-footer-lower-container {
  flex-grow: 1;
}

.footer .footer-lower-inner .footer-social-logos {
  grid-column-start: 4;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 30px;
}

.footer .footer-lower-inner .euka-version {
  margin-top: 20px;
}

.footer .footer-lower-inner .footer-social-logos .follow-text {
  padding-right: 16px;
}

.footer .footer-lower-inner .footer-social-logos a {
  color: #2b2c3c;
  font-size: 1.5rem;
  display: inline-block;
  margin: 5px;
}

.footer .footer-lower-inner .footer-social-logos a:last-child {
  margin-right: 0px;
}

@media print,
screen and (min-width: 64em) {
  .footer .footer-lower-inner {
    display: grid;
    grid-template-columns: 8.125rem max-content 1fr max-content;
  }

  .footer .footer-lower-inner .euka-version {
    margin-top: 0;
    margin-left: 6.6rem;
  }

  .footer .footer-lower-inner .footer-social-logos {
    margin-top: 0px;
  }
}

body.home .cell-gutenberg-content > .wp-block-group:first-of-type {
  padding-left: 0;
  padding-right: 0;
  padding-top: 120px;
}

@media print,
screen and (min-width: 64em) {
  body.home .cell-gutenberg-content > .wp-block-group:first-of-type {
    padding-top: 180px;
  }
}

body.home .cell-gutenberg-content > .wp-block-group:first-of-type .wp-block-columns.alignwide {
  padding: 0;
}

body.home .cell-gutenberg-content > .wp-block-group:first-of-type .wp-block-column > h1,
body.home .cell-gutenberg-content > .wp-block-group:first-of-type .wp-block-column > h2,
body.home .cell-gutenberg-content > .wp-block-group:first-of-type .wp-block-column > h3,
body.home .cell-gutenberg-content > .wp-block-group:first-of-type .wp-block-column > h4,
body.home .cell-gutenberg-content > .wp-block-group:first-of-type .wp-block-column > h5,
body.home .cell-gutenberg-content > .wp-block-group:first-of-type .wp-block-column > h6,
body.home .cell-gutenberg-content > .wp-block-group:first-of-type .wp-block-column > p {
  padding-right: 1.8125rem;
  padding-left: 1.8125rem;
}

@media print,
screen and (min-width: 37.5em) {

  body.home .cell-gutenberg-content > .wp-block-group:first-of-type .wp-block-column > h1,
  body.home .cell-gutenberg-content > .wp-block-group:first-of-type .wp-block-column > h2,
  body.home .cell-gutenberg-content > .wp-block-group:first-of-type .wp-block-column > h3,
  body.home .cell-gutenberg-content > .wp-block-group:first-of-type .wp-block-column > h4,
  body.home .cell-gutenberg-content > .wp-block-group:first-of-type .wp-block-column > h5,
  body.home .cell-gutenberg-content > .wp-block-group:first-of-type .wp-block-column > h6,
  body.home .cell-gutenberg-content > .wp-block-group:first-of-type .wp-block-column > p {
    padding-right: 2.0625rem;
    padding-left: 2.0625rem;
  }
}

body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero {
  overflow: visible;
  margin-left: auto;
  margin-right: auto;
  z-index: 0;
}

@media print,
screen and (min-width: 64em) {
  body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container {
    overflow: visible;
  }
}

body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .bjm-swiper-navigation-wrapper {
  display: none;
}

body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .swiper-wrapper {
  padding-top: 0px;
  padding-bottom: 0px;
}

@media print,
screen and (min-width: 64em) {
  body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .swiper-pagination {
    bottom: 100px;
  }
}

body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .swiper-pagination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
  background-color: #fff;
}

body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .swiper-slide {
  padding-top: 100px;
}

@media print,
screen and (min-width: 37.5em) {
  body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .swiper-slide {
    padding-top: 50px;
  }
}

@media print,
screen and (min-width: 64em) {
  body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .swiper-slide {
    padding-top: calc(5vw - 100px);
  }
}

@media print,
screen and (min-width: 64em) {
  body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .swiper-slide h1 {
    padding-top: 100px;
    font-size: 6rem;
  }
}

@media (max-height: 745px) and (min-width: 64em) {
  body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .swiper-slide h1 {
    font-size: 5rem;
    padding-top: 90px;
  }
}

body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .swiper-slide h2 {
  font-family: "infiniregular";
  flex-shrink: 0;
  line-height: 0.95;
}

@media print,
screen and (min-width: 64em) {
  body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .swiper-slide h2 {
    font-size: 3.5rem;
    line-height: 3.7rem;
    padding-bottom: 170px;
  }
}

@media (max-height: 745px) and (min-width: 64em) {
  body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .swiper-slide h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    padding-bottom: 140px;
  }
}

body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .swiper-slide h2 br {
  content: "";
}

body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .swiper-slide h2 br:after {
  content: " ";
}

@media print,
screen and (min-width: 37.5em) {
  body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .swiper-slide figure {
    position: absolute;
    right: -15vw;
    bottom: 0px;
    left: 45%;
    top: 0px;
  }

  body.home .cell-gutenberg-content .wp-block-bjm-blocks-swiper.is-style-hero .swiper-container .swiper-slide figure img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: contain;
    object-position: bottom;
    height: 100%;
    width: 100%;
  }
}

.woocommerce a.button,
.woocommerce a.button.alt,
.woocommerce button.button,
.woocommerce button.button.alt,
.woocommerce input.button,
.woocommerce input.button.alt {
  border-radius: 10px;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 1.125rem;
  font-family: "inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  color: #2b2c3c;
  background-color: #f7d44f;
}

.woocommerce a.button:focus,
.woocommerce a.button.alt:focus,
.woocommerce button.button:focus,
.woocommerce button.button.alt:focus,
.woocommerce input.button:focus,
.woocommerce input.button.alt:focus {
  outline: none;
}

.woocommerce a.button:disabled,
.woocommerce a.button.alt:disabled,
.woocommerce button.button:disabled,
.woocommerce button.button.alt:disabled,
.woocommerce input.button:disabled,
.woocommerce input.button.alt:disabled {
  filter: grayscale(1);
}

.woocommerce a.button i,
.woocommerce a.button.alt i,
.woocommerce button.button i,
.woocommerce button.button.alt i,
.woocommerce input.button i,
.woocommerce input.button.alt i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.woocommerce a.button.has-black-background-color,
.woocommerce a.button.alt.has-black-background-color,
.woocommerce button.button.has-black-background-color,
.woocommerce button.button.alt.has-black-background-color,
.woocommerce input.button.has-black-background-color,
.woocommerce input.button.alt.has-black-background-color {
  background-color: #2b2c3c;
}

.woocommerce a.button.has-grey-background-color,
.woocommerce a.button.alt.has-grey-background-color,
.woocommerce button.button.has-grey-background-color,
.woocommerce button.button.alt.has-grey-background-color,
.woocommerce input.button.has-grey-background-color,
.woocommerce input.button.alt.has-grey-background-color {
  background-color: #6b7280;
}

.woocommerce a.button.has-silver-background-color,
.woocommerce a.button.alt.has-silver-background-color,
.woocommerce button.button.has-silver-background-color,
.woocommerce button.button.alt.has-silver-background-color,
.woocommerce input.button.has-silver-background-color,
.woocommerce input.button.alt.has-silver-background-color {
  background-color: #e5e7eb;
}

.woocommerce a.button.has-white-background-color,
.woocommerce a.button.alt.has-white-background-color,
.woocommerce button.button.has-white-background-color,
.woocommerce button.button.alt.has-white-background-color,
.woocommerce input.button.has-white-background-color,
.woocommerce input.button.alt.has-white-background-color {
  background-color: #fcfcff;
}

.woocommerce a.button.has-red-background-color,
.woocommerce a.button.alt.has-red-background-color,
.woocommerce button.button.has-red-background-color,
.woocommerce button.button.alt.has-red-background-color,
.woocommerce input.button.has-red-background-color,
.woocommerce input.button.alt.has-red-background-color {
  background-color: #ef4444;
}

.woocommerce a.button.has-lilac-background-color,
.woocommerce a.button.alt.has-lilac-background-color,
.woocommerce button.button.has-lilac-background-color,
.woocommerce button.button.alt.has-lilac-background-color,
.woocommerce input.button.has-lilac-background-color,
.woocommerce input.button.alt.has-lilac-background-color {
  background-color: #c2bfe5;
}

.woocommerce a.button.has-blue-background-color,
.woocommerce a.button.alt.has-blue-background-color,
.woocommerce button.button.has-blue-background-color,
.woocommerce button.button.alt.has-blue-background-color,
.woocommerce input.button.has-blue-background-color,
.woocommerce input.button.alt.has-blue-background-color {
  background-color: #3b82f6;
}

.woocommerce a.button.has-green-background-color,
.woocommerce a.button.alt.has-green-background-color,
.woocommerce button.button.has-green-background-color,
.woocommerce button.button.alt.has-green-background-color,
.woocommerce input.button.has-green-background-color,
.woocommerce input.button.alt.has-green-background-color {
  background-color: #10b981;
}

.woocommerce a.button.has-olive-background-color,
.woocommerce a.button.alt.has-olive-background-color,
.woocommerce button.button.has-olive-background-color,
.woocommerce button.button.alt.has-olive-background-color,
.woocommerce input.button.has-olive-background-color,
.woocommerce input.button.alt.has-olive-background-color {
  background-color: #55643c;
}

.woocommerce a.button.has-sunshine-background-color,
.woocommerce a.button.alt.has-sunshine-background-color,
.woocommerce button.button.has-sunshine-background-color,
.woocommerce button.button.alt.has-sunshine-background-color,
.woocommerce input.button.has-sunshine-background-color,
.woocommerce input.button.alt.has-sunshine-background-color {
  background-color: #f7d44f;
}

.woocommerce a.button.has-mint-background-color,
.woocommerce a.button.alt.has-mint-background-color,
.woocommerce button.button.has-mint-background-color,
.woocommerce button.button.alt.has-mint-background-color,
.woocommerce input.button.has-mint-background-color,
.woocommerce input.button.alt.has-mint-background-color {
  background-color: #b6de83;
}

.woocommerce a.button.has-rust-background-color,
.woocommerce a.button.alt.has-rust-background-color,
.woocommerce button.button.has-rust-background-color,
.woocommerce button.button.alt.has-rust-background-color,
.woocommerce input.button.has-rust-background-color,
.woocommerce input.button.alt.has-rust-background-color {
  background-color: #6b2912;
}

.woocommerce a.button.has-waxflower-background-color,
.woocommerce a.button.alt.has-waxflower-background-color,
.woocommerce button.button.has-waxflower-background-color,
.woocommerce button.button.alt.has-waxflower-background-color,
.woocommerce input.button.has-waxflower-background-color,
.woocommerce input.button.alt.has-waxflower-background-color {
  background-color: #fcba9e;
}

.woocommerce a.button.has-transparent-background-color,
.woocommerce a.button.alt.has-transparent-background-color,
.woocommerce button.button.has-transparent-background-color,
.woocommerce button.button.alt.has-transparent-background-color,
.woocommerce input.button.has-transparent-background-color,
.woocommerce input.button.alt.has-transparent-background-color {
  background-color: "transparent";
}

.woocommerce a.button.has-sunshine-pattern-gradient-background,
.woocommerce a.button.alt.has-sunshine-pattern-gradient-background,
.woocommerce button.button.has-sunshine-pattern-gradient-background,
.woocommerce button.button.alt.has-sunshine-pattern-gradient-background,
.woocommerce input.button.has-sunshine-pattern-gradient-background,
.woocommerce input.button.alt.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.woocommerce a.button.has-sunshine-pattern-gradient-background:before,
.woocommerce a.button.alt.has-sunshine-pattern-gradient-background:before,
.woocommerce button.button.has-sunshine-pattern-gradient-background:before,
.woocommerce button.button.alt.has-sunshine-pattern-gradient-background:before,
.woocommerce input.button.has-sunshine-pattern-gradient-background:before,
.woocommerce input.button.alt.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.woocommerce a.button.has-black-background-color,
.woocommerce a.button.alt.has-black-background-color,
.woocommerce button.button.has-black-background-color,
.woocommerce button.button.alt.has-black-background-color,
.woocommerce input.button.has-black-background-color,
.woocommerce input.button.alt.has-black-background-color {
  color: #fcfcff;
}

.woocommerce a.button.has-body-font,
.woocommerce a.button.alt.has-body-font,
.woocommerce button.button.has-body-font,
.woocommerce button.button.alt.has-body-font,
.woocommerce input.button.has-body-font,
.woocommerce input.button.alt.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.woocommerce a.button.has-no-shadow,
.woocommerce a.button.alt.has-no-shadow,
.woocommerce button.button.has-no-shadow,
.woocommerce button.button.alt.has-no-shadow,
.woocommerce input.button.has-no-shadow,
.woocommerce input.button.alt.has-no-shadow {
  box-shadow: none;
}

.woocommerce a.button.is-loading::before,
.woocommerce a.button.alt.is-loading::before,
.woocommerce button.button.is-loading::before,
.woocommerce button.button.alt.is-loading::before,
.woocommerce input.button.is-loading::before,
.woocommerce input.button.alt.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.woocommerce a.button.is-loading--right::before,
.woocommerce a.button.alt.is-loading--right::before,
.woocommerce button.button.is-loading--right::before,
.woocommerce button.button.alt.is-loading--right::before,
.woocommerce input.button.is-loading--right::before,
.woocommerce input.button.alt.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.woocommerce a.button:hover,
.woocommerce a.button:focus,
.woocommerce a.button.alt:hover,
.woocommerce a.button.alt:focus,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce button.button.alt:hover,
.woocommerce button.button.alt:focus,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.woocommerce input.button.alt:hover,
.woocommerce input.button.alt:focus {
  color: #2b2c3c;
  background-color: #f5c81e;
}

.woocommerce a.button:focus,
.woocommerce a.button.alt:focus,
.woocommerce button.button:focus,
.woocommerce button.button.alt:focus,
.woocommerce input.button:focus,
.woocommerce input.button.alt:focus {
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3),
    inset 0 0 0 2px rgba(252, 252, 255, 0.75);
}

.woocommerce a.button:disabled,
.woocommerce a.button.disabled,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button.disabled,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button.disabled,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt.disabled {
  filter: grayscale(1);
}

.woocommerce .button.view {
  border-radius: 10px;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 1.125rem;
  font-family: "inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  background-color: transparent;
  box-shadow: none;
  border-width: 2px;
  border-style: solid;
  font-family: "inter", sans-serif;
  font-weight: bold;
  line-height: 16px;
  font-size: 16px;
  padding: 12px 16px;
}

.woocommerce .button.view:focus {
  outline: none;
}

.woocommerce .button.view:disabled {
  filter: grayscale(1);
}

.woocommerce .button.view i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.woocommerce .button.view.has-black-background-color {
  background-color: #2b2c3c;
}

.woocommerce .button.view.has-grey-background-color {
  background-color: #6b7280;
}

.woocommerce .button.view.has-silver-background-color {
  background-color: #e5e7eb;
}

.woocommerce .button.view.has-white-background-color {
  background-color: #fcfcff;
}

.woocommerce .button.view.has-red-background-color {
  background-color: #ef4444;
}

.woocommerce .button.view.has-lilac-background-color {
  background-color: #c2bfe5;
}

.woocommerce .button.view.has-blue-background-color {
  background-color: #3b82f6;
}

.woocommerce .button.view.has-green-background-color {
  background-color: #10b981;
}

.woocommerce .button.view.has-olive-background-color {
  background-color: #55643c;
}

.woocommerce .button.view.has-sunshine-background-color {
  background-color: #f7d44f;
}

.woocommerce .button.view.has-mint-background-color {
  background-color: #b6de83;
}

.woocommerce .button.view.has-rust-background-color {
  background-color: #6b2912;
}

.woocommerce .button.view.has-waxflower-background-color {
  background-color: #fcba9e;
}

.woocommerce .button.view.has-transparent-background-color {
  background-color: "transparent";
}

.woocommerce .button.view.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.woocommerce .button.view.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.woocommerce .button.view.has-black-background-color {
  color: #fcfcff;
}

.woocommerce .button.view.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.woocommerce .button.view.has-no-shadow {
  box-shadow: none;
}

.woocommerce .button.view.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.woocommerce .button.view.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.woocommerce .button.view:hover,
.woocommerce .button.view:focus {
  opacity: 0.75;
  background-color: rgba(43, 44, 60, 0.05);
}

.woocommerce .button.view:focus {
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3),
    inset 0 0 0 2px rgba(252, 252, 255, 0.75);
}

.woocommerce div.product span.price {
  color: inherit;
}

.woocommerce div.product span.price del {
  opacity: 0.65;
  font-weight: 300;
  font-size: 0.9em;
  margin-right: 0.5rem;
}

.woocommerce-products-header {
  padding: 0;
  max-width: 100%;
}

.woocommerce-products-header .page-title {
  display: none;
}

.woocommerce-breadcrumb a:first-child::before {
  content: "\f015";
}

.woocommerce .woocommerce-breadcrumb {
  color: #2b2c3c;
}

.woocommerce ul.order_details li {
  margin-bottom: 0.75rem;
}

.woocommerce.archive #sidebar,
.woocommerce.archive .woocommerce-breadcrumb {
  display: none;
}

.woocommerce.archive .page-description {
  padding: 0;
  max-width: 100%;
}

.woocommerce-cart h3,
.woocommerce-checkout h3,
.woocommerce-account h3 {
  font-family: "infiniregular";
  font-weight: normal;
  font-size: 1.3125rem;
  line-height: 1.2;
}

.woocommerce-page .cell-gutenberg-content .woocommerce {
  margin-top: 2.5rem;
}

.woocommerce-page .cell-gutenberg-content .cell-gutenberg-content ~ * > * {
  padding-right: 1.4375rem;
  padding-left: 1.4375rem;
}

@media print,
screen and (min-width: 37.5em) {
  .woocommerce-page .cell-gutenberg-content .cell-gutenberg-content ~ * > * {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.woocommerce-page .col2-set {
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 48em) {
  .woocommerce-page .col2-set .col-1 {
    margin-bottom: 1.5rem;
  }
}

.woocommerce-notice {
  font-size: 1.5rem;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  color: #fcfcff;
  font-weight: 500;
  background-color: transparent;
  border: none;
  border-radius: 5px;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  left: 1.5em;
  color: inherit;
}

.woocommerce-error a,
.woocommerce-info a,
.woocommerce-message a {
  color: inherit;
  text-decoration: underline;
}

.woocommerce-error {
  background-color: #6b2912;
}

.woocommerce-message {
  background-color: #2b2c3c;
}

.woocommerce-info {
  color: #2b2c3c;
  background-color: #c2bfe5;
}

.theme-euka table.shop_table {
  width: 100%;
  border-width: 0 0 3px;
  border-style: solid;
  border-color: rgba(229, 231, 235, 0.25);
  border-radius: 0;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 48em) {
  .theme-euka table.shop_table_responsive tr td {
    display: block;
    text-align: left !important;
  }

  .theme-euka table.shop_table_responsive tr td::before {
    padding-right: 5px;
  }

  .theme-euka table.shop_table_responsive .woocommerce-cart-form-edit + tr.woocommerce-cart-form__cart-item td:first-child {
    padding-top: 1.75rem;
  }

  .theme-euka table.shop_table_responsive .woocommerce-cart-form-edit td {
    padding-bottom: 1.75rem;
  }
}

.theme-euka table.shop_table th,
.theme-euka table.shop_table td {
  padding: 0.5rem 0.25rem;
  border-top: 1px solid rgba(229, 231, 235, 0.25) !important;
}

@media screen and (min-width: 48.0625em) {

  .theme-euka table.shop_table th,
  .theme-euka table.shop_table td {
    padding: 1rem;
  }

  .theme-euka table.shop_table th:first-child,
  .theme-euka table.shop_table td:first-child {
    padding-left: 0;
  }

  .theme-euka table.shop_table th:last-child,
  .theme-euka table.shop_table td:last-child {
    padding-right: 0;
  }
}

.theme-euka table.shop_table th:not([data-title])::before,
.theme-euka table.shop_table th[data-title="Actions"]::before,
.theme-euka table.shop_table td:not([data-title])::before,
.theme-euka table.shop_table td[data-title="Actions"]::before {
  display: none;
}

.theme-euka table.shop_table th .button + .button,
.theme-euka table.shop_table td .button + .button {
  margin-left: 0.5rem;
}

.theme-euka table.shop_table .button-reset {
  color: inherit;
}

.theme-euka table.shop_table .product-item-label {
  line-height: 1.4;
  font-size: 0.85rem;
  margin-bottom: 0.125rem;
}

.theme-euka table.shop_table .product-item-quantity {
  font-size: 1rem;
  padding-left: 0.25rem;
  display: inline-block;
}

.theme-euka table.shop_table .product-item-quantity i {
  font-size: 0.875em;
}

.theme-euka table.shop_table .product-item-quantity span {
  display: inline-block;
  transform: translateY(-1px);
}

@media print,
screen and (min-width: 37.5em) {
  .theme-euka table.shop_table .subscription-id {
    max-width: 15rem;
  }
}

.theme-euka table.shop_table .product-name {
  line-height: 1.2;
}

@media print,
screen and (min-width: 64em) {
  .theme-euka table.shop_table .product-name {
    max-width: 300px;
  }
}

.theme-euka table.shop_table .product-name button {
  margin-top: 10px;
}

.theme-euka table.shop_table .product-name p,
.theme-euka table.shop_table .product-name .variation,
.theme-euka table.shop_table .product-name .product-payment-plan-meta {
  font-size: 0.9rem;
  margin: 0.25rem 0 0;
  line-height: inherit;
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.theme-euka table.shop_table .product-name .variation .variation-PaymentPlan {
  margin-bottom: 0;
  display: inline-block;
}

.theme-euka table.shop_table .product-name .variation .variation-PaymentPlan p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}

.theme-euka table.shop_table .product-name,
.theme-euka table.shop_table .product-item-value {
  color: inherit;
  font-size: 1.5rem;
  font-weight: 500;
}

.theme-euka table.shop_table .product-price {
  font-size: 1.575rem;
  text-align: right;
}

.theme-euka table.shop_table .product-price ins {
  text-decoration: none;
  font-size: 1.25em;
}

.theme-euka table.shop_table .product-price del {
  display: block;
  font-size: 0.7em;
  line-height: 1.2;
}

.theme-euka table.shop_table .product-price .subscription-details {
  font-size: 0.5em;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.theme-euka table.shop_table .product-price > p {
  display: none;
}

.theme-euka table.shop_table .product-subtotal {
  color: #a1a6b0;
  display: block;
  line-height: 1.1;
  font-size: 0.9rem;
}

.theme-euka table.shop_table .product-subtotal br {
  display: none;
}

.theme-euka table.shop_table .product-quantity {
  display: none;
}

.theme-euka table.shop_table .product-item-list {
  max-width: 250px;
  margin-left: 5px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

@media screen and (max-width: 48em) {

  .theme-euka table.shop_table .product-starting-term:not(.is-present),
  .theme-euka table.shop_table .product-registration:not(.is-present),
  .theme-euka table.shop_table .product-reporting:not(.is-present) {
    display: none;
  }
}

.theme-euka table.shop_table .product-registration,
.theme-euka table.shop_table .product-reporting {
  min-width: 145px;
}

@media print,
screen and (min-width: 64em) {

  .theme-euka table.shop_table .product-registration,
  .theme-euka table.shop_table .product-reporting {
    min-width: 230px;
  }
}

/* Convert to flexbox */
tr.woocommerce-cart-form__cart-item.cart_item {
  display: flex;
  flex-wrap: wrap;
}

tr.woocommerce-cart-form__cart-item.cart_item > td.product-name,
tr.woocommerce-cart-form__cart-item.cart_item > td.product-email-address {
  flex: 1;
}

tr.woocommerce-cart-form__cart-item.cart_item > td {
  min-width: 100px;
}

tr.woocommerce-cart-form__cart-item.cart_item > td {
  margin: 0;
}

.theme-euka table.shop_table .product-registration .add-registration,
.theme-euka table.shop_table .product-reporting .add-reporting {
  font-size: 0.825rem;
  margin-top: 0.125rem;
}

.woocommerce-cart-form .product-reporting-field {
  display: none;
}

.theme-euka table.shop_table .product-starting-term {
  min-width: 7.5rem;
}

.theme-euka table.shop_table .product-edit {
  text-align: right;
}

.theme-euka table.shop_table .product-edit .button:hover,
.theme-euka table.shop_table .product-edit .button:focus {
  color: #b6de83 !important;
}

.theme-euka table.shop_table .product-remove {
  text-align: right !important;
}

.theme-euka table.shop_table .product-remove .button:hover,
.theme-euka table.shop_table .product-remove .button:focus {
  color: #ef4444 !important;
}

.theme-euka table.shop_table .product-edit,
.theme-euka table.shop_table .product-remove {
  display: inline-block;
  margin: 0 -2px;
  width: 50%;
}

@media screen and (min-width: 48.0625em) {

  .theme-euka table.shop_table .product-edit,
  .theme-euka table.shop_table .product-remove {
    width: 50px;
    margin: 0;
    display: table-cell;
  }
}

.theme-euka table.shop_table .product-edit .button,
.theme-euka table.shop_table .product-remove .button {
  display: inline-block;
  font-size: 1.125rem;
  padding: 0.5rem;
  color: inherit !important;
  background: transparent;
  transition: color 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  box-shadow: none;
}

.theme-euka table.shop_table .product-edit .button:focus,
.theme-euka table.shop_table .product-remove .button:focus {
  box-shadow: inset 0 0 0 2px rgba(229, 231, 235, 0.75);
}

.theme-euka table.shop_table .product-edit .button i,
.theme-euka table.shop_table .product-remove .button i {
  padding: 0;
}

.woocommerce-account .cell-gutenberg-content > .woocommerce {
  display: flex;
  flex-direction: column;
  max-width: 75rem;
}

.woocommerce-account .woocommerce-notices-wrapper {
  order: -1;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}

.woocommerce-account .woocommerce-MyAccount-content-logout {
  text-align: right;
}

.woocommerce-account .woocommerce-MyAccount-content-logout a {
  text-decoration: underline;
}

.woocommerce-account .woocommerce-MyAccount-content > p {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
  margin-top: 50px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  float: none;
  width: 100%;
  order: 1;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin-left: 0;
  list-style-type: none;
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  flex: 1;
  padding: 2.5rem 1.5rem;
  text-align: center;
  line-height: 1.2;
  background-color: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  text-transform: capitalize;
  border-radius: 10px;
  position: relative;
  padding-left: calc(40% + 1.5rem);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1.75rem;
  font-family: "komu-a";
}

.woocommerce-account .woocommerce-MyAccount-navigation a::after {
  font-family: "inter", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
  text-transform: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation a::before {
  position: absolute;
  top: 0px;
  bottom: 0;
  width: 40%;
  left: 0;
  z-index: 1;
  display: block;
  font-size: 3rem;
  color: #2b2c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c2bfe5;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
}

.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation a:focus {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
}

.woocommerce-account .woocommerce-MyAccount-navigation-link {
  display: flex;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--orders {
  order: 3;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--orders a::before {
  background-color: #fcba9e;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--orders a::after {
  content: "See your previous orders and payments";
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--downloads a::before {
  background-color: #e5e7eb;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--downloads a::after {
  content: "Download registration documents";
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--subscriptions {
  order: 4;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--subscriptions a::before {
  background-color: #f7d44f;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--subscriptions a::after {
  content: "View and manage recurring payments";
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--payment-methods {
  order: 6;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--payment-methods a::before {
  background-color: #f0a32f;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--payment-methods a::after {
  content: "Manage your saved payment methods";
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-address {
  order: 7;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-address a::before {
  background-color: #e5e7eb;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-address a::after {
  content: "Update your billing and delivery addresses";
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--my-account a::before {
  background-color: #afcbe3;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--my-account a::after {
  content: "Manage my account, view orders and more";
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-account {
  order: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-account a::before {
  background-color: #c2bfe5;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-account a::after {
  content: "Update your email address and password";
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--students {
  order: 1;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--students.has-upgrade,
.woocommerce-account .woocommerce-MyAccount-navigation-link--students.has-upsell {
  position: relative;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--students.has-upgrade::before,
.woocommerce-account .woocommerce-MyAccount-navigation-link--students.has-upsell::before {
  pointer-events: none;
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  width: calc(40% - 1rem);
  line-height: 1;
  height: 1.5rem;
  z-index: 2;
  padding: 0.25rem 0.5rem;
  font-weight: 500;
  font-size: 0.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f7d44f;
  border-radius: 5px;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--students.has-upgrade::before {
  content: "Upgrade available!";
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--students a::before {
  background-color: #b6de83;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--students a::after {
  content: "View progress, manage addons and upgrades";
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--shared-access {
  order: 5;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--shared-access a::before {
  background-color: #c2bfe5;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--shared-access a::after {
  content: "Manage who can view student info";
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--student-downloads {
  order: 2;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--student-downloads a::before {
  background-color: #e5e7eb;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--student-downloads a::after {
  content: "Course documents and downloads";
}

.woocommerce-account .my-account-header {
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(229, 231, 235, 0.25);
}

.woocommerce-account .my-account-back-link {
  font-weight: 500;
}

.woocommerce-checkout label {
  margin-left: 0;
}

.woocommerce-checkout .woocommerce-checkout-review-order .order-total {
  font-size: 1.5rem;
}

.woocommerce-checkout #payment .wc-payment-form .form-row {
  padding: 0;
}

.woocommerce-checkout .wc_payment_methods input {
  transform: translateY(2px);
}

.woocommerce-checkout .payment_method_stripe label {
  min-width: 230px;
}

.woocommerce-order .order-again + h2 {
  padding-top: 2rem;
}

.woocommerce-view-subscription .subscription_details a.cancel {
  display: none;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation {
  border-radius: 10px;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
  padding: 10px 20px;
  line-height: 1.4;
  font-size: 1.125rem;
  font-family: "inter", sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  background-color: transparent;
  box-shadow: none;
  border-width: 2px;
  border-style: solid;
  font-family: "inter", sans-serif;
  font-weight: bold;
  line-height: 16px;
  font-size: 16px;
  padding: 12px 16px;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation:focus {
  outline: none;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation:disabled {
  filter: grayscale(1);
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation i {
  padding-left: 8px;
  font-size: 1.2rem;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-black-background-color {
  background-color: #2b2c3c;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-grey-background-color {
  background-color: #6b7280;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-silver-background-color {
  background-color: #e5e7eb;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-white-background-color {
  background-color: #fcfcff;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-red-background-color {
  background-color: #ef4444;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-lilac-background-color {
  background-color: #c2bfe5;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-blue-background-color {
  background-color: #3b82f6;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-green-background-color {
  background-color: #10b981;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-olive-background-color {
  background-color: #55643c;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-sunshine-background-color {
  background-color: #f7d44f;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-mint-background-color {
  background-color: #b6de83;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-rust-background-color {
  background-color: #6b2912;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-waxflower-background-color {
  background-color: #fcba9e;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-transparent-background-color {
  background-color: "transparent";
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-sunshine-pattern-gradient-background {
  background-color: #f7d44f;
  position: relative;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-sunshine-pattern-gradient-background:before {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.6;
  background-size: auto 500px;
  pointer-events: none;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-black-background-color {
  color: #fcfcff;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-body-font {
  font-family: "inter", sans-serif;
  font-weight: 500;
  padding: 12px 24px;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.has-no-shadow {
  box-shadow: none;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.is-loading::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5rem);
  left: -1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation.is-loading--right::before {
  right: -1.5rem;
  left: auto;
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation:hover,
.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation:focus {
  opacity: 0.75;
  background-color: rgba(43, 44, 60, 0.05);
}

.woocommerce-view-subscription .subscription_details .euka_cancel_confirmation:focus {
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3),
    inset 0 0 0 2px rgba(252, 252, 255, 0.75);
}

.woocommerce-account .woocommerce-MyAccount-content-subscription_totals {
  order: -1;
}

.woocommerce-account .woocommerce-MyAccount-content-subscription_totals table.shop_table {
  margin-bottom: 0.5rem;
}

.woocommerce-account .woocommerce-MyAccount-content-subscription_totals table.shop_table thead,
.woocommerce-account .woocommerce-MyAccount-content-subscription_totals table.shop_table tfoot {
  display: none;
}

.woocommerce-account .subscription-total-remaining {
  font-size: 0.875em;
  font-weight: 500;
}

.woocommerce-account table.subscription_details td {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.woocommerce-account table.subscription_details td:first-child {
  font-weight: 500;
}

.woocommerce .cross-sells,
.woocommerce-page .cross-sells {
  margin-bottom: 2.5rem;
}

.woocommerce .cross-sells h2,
.woocommerce-page .cross-sells h2 {
  margin-bottom: 0;
  font-size: 1.75rem;
}

@media print,
screen and (min-width: 64em) {

  .woocommerce .cross-sells ul.products,
  .woocommerce-page .cross-sells ul.products {
    grid-template-columns: 1fr 1fr;
  }
}

.woocommerce .upsells,
.woocommerce-page .upsells {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid rgba(255, 255, 255, 0.25);
}

.woocommerce .linked-products,
.woocommerce .product-added .upsells,
.woocommerce .cart-collaterals .cross-sells,
.woocommerce-page .linked-products,
.woocommerce-page .product-added .upsells,
.woocommerce-page .cart-collaterals .cross-sells {
  width: 100%;
  float: none;
}

.woocommerce .linked-products h2,
.woocommerce .product-added .upsells h2,
.woocommerce .cart-collaterals .cross-sells h2,
.woocommerce-page .linked-products h2,
.woocommerce-page .product-added .upsells h2,
.woocommerce-page .cart-collaterals .cross-sells h2 {
  font-size: 1.75rem;
}

.woocommerce .linked-products ul.products,
.woocommerce .product-added .upsells ul.products,
.woocommerce .cart-collaterals .cross-sells ul.products,
.woocommerce-page .linked-products ul.products,
.woocommerce-page .product-added .upsells ul.products,
.woocommerce-page .cart-collaterals .cross-sells ul.products {
  margin: 1rem auto 0;
}

@media print,
screen and (max-width: 37.49875em) {

  .woocommerce .linked-products ul.products,
  .woocommerce .product-added .upsells ul.products,
  .woocommerce .cart-collaterals .cross-sells ul.products,
  .woocommerce-page .linked-products ul.products,
  .woocommerce-page .product-added .upsells ul.products,
  .woocommerce-page .cart-collaterals .cross-sells ul.products {
    grid-template-columns: 1fr;
  }
}

.woocommerce .linked-products ul.products li.product,
.woocommerce .product-added .upsells ul.products li.product,
.woocommerce .cart-collaterals .cross-sells ul.products li.product,
.woocommerce-page .linked-products ul.products li.product,
.woocommerce-page .product-added .upsells ul.products li.product,
.woocommerce-page .cart-collaterals .cross-sells ul.products li.product {
  padding: 0 !important;
}

.woocommerce .linked-products ul.products .products-image,
.woocommerce .product-added .upsells ul.products .products-image,
.woocommerce .cart-collaterals .cross-sells ul.products .products-image,
.woocommerce-page .linked-products ul.products .products-image,
.woocommerce-page .product-added .upsells ul.products .products-image,
.woocommerce-page .cart-collaterals .cross-sells ul.products .products-image {
  max-width: 120px;
  padding: 1.5rem 1.25rem;
}

.woocommerce .linked-products ul.products .products-image[style*="2b2c3c"],
.woocommerce .product-added .upsells ul.products .products-image[style*="2b2c3c"],
.woocommerce .cart-collaterals .cross-sells ul.products .products-image[style*="2b2c3c"],
.woocommerce-page .linked-products ul.products .products-image[style*="2b2c3c"],
.woocommerce-page .product-added .upsells ul.products .products-image[style*="2b2c3c"],
.woocommerce-page .cart-collaterals .cross-sells ul.products .products-image[style*="2b2c3c"] {
  box-shadow: inset 0 0 1px #fcfcff;
}

.woocommerce .linked-products ul.products .products-image[style="background-color: "],
.woocommerce .product-added .upsells ul.products .products-image[style="background-color: "],
.woocommerce .cart-collaterals .cross-sells ul.products .products-image[style="background-color: "],
.woocommerce-page .linked-products ul.products .products-image[style="background-color: "],
.woocommerce-page .product-added .upsells ul.products .products-image[style="background-color: "],
.woocommerce-page .cart-collaterals .cross-sells ul.products .products-image[style="background-color: "] {
  background-color: #c8ccd5;
}

.woocommerce .linked-products ul.products .products-image img,
.woocommerce .product-added .upsells ul.products .products-image img,
.woocommerce .cart-collaterals .cross-sells ul.products .products-image img,
.woocommerce-page .linked-products ul.products .products-image img,
.woocommerce-page .product-added .upsells ul.products .products-image img,
.woocommerce-page .cart-collaterals .cross-sells ul.products .products-image img {
  margin: 0;
}

.woocommerce .linked-products ul.products .products-content,
.woocommerce .product-added .upsells ul.products .products-content,
.woocommerce .cart-collaterals .cross-sells ul.products .products-content,
.woocommerce-page .linked-products ul.products .products-content,
.woocommerce-page .product-added .upsells ul.products .products-content,
.woocommerce-page .cart-collaterals .cross-sells ul.products .products-content {
  padding: 0.5rem 0.75rem 0.75rem;
}

.woocommerce .linked-products ul.products .products-content .woocommerce-loop-product__title,
.woocommerce .product-added .upsells ul.products .products-content .woocommerce-loop-product__title,
.woocommerce .cart-collaterals .cross-sells ul.products .products-content .woocommerce-loop-product__title,
.woocommerce-page .linked-products ul.products .products-content .woocommerce-loop-product__title,
.woocommerce-page .product-added .upsells ul.products .products-content .woocommerce-loop-product__title,
.woocommerce-page .cart-collaterals .cross-sells ul.products .products-content .woocommerce-loop-product__title {
  font-size: 1.5rem;
  padding-bottom: 0.25rem;
}

.woocommerce .linked-products ul.products .products-content p,
.woocommerce .product-added .upsells ul.products .products-content p,
.woocommerce .cart-collaterals .cross-sells ul.products .products-content p,
.woocommerce-page .linked-products ul.products .products-content p,
.woocommerce-page .product-added .upsells ul.products .products-content p,
.woocommerce-page .cart-collaterals .cross-sells ul.products .products-content p {
  font-size: 1rem;
}

.woocommerce .linked-products ul.products .products-content .button,
.woocommerce .product-added .upsells ul.products .products-content .button,
.woocommerce .cart-collaterals .cross-sells ul.products .products-content .button,
.woocommerce-page .linked-products ul.products .products-content .button,
.woocommerce-page .product-added .upsells ul.products .products-content .button,
.woocommerce-page .cart-collaterals .cross-sells ul.products .products-content .button {
  margin-top: 0.75rem;
}

.woocommerce ul.products,
.woocommerce-page ul.products,
.theme-euka ul.products {
  margin: 1rem auto;
  max-width: 100%;
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

@media print,
screen and (min-width: 37.5em) {

  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .theme-euka ul.products {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after,
.theme-euka ul.products::before,
.theme-euka ul.products::after {
  display: none;
}

@media print,
screen and (min-width: 64em) {

  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .theme-euka ul.products {
    margin: 2rem auto;
  }
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.theme-euka ul.products li.product {
  margin: 0 !important;
  width: 100% !important;
  display: flex;
  color: #2b2c3c;
  background-color: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.woocommerce ul.products li.product.animate-in,
.woocommerce-page ul.products li.product.animate-in,
.theme-euka ul.products li.product.animate-in {
  animation: fadeUp 0.25s ease-in;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
.theme-euka ul.products li.product .woocommerce-loop-product__title {
  font-size: 1.75rem;
  font-family: "komu-a";
  padding: 0.5rem 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title a,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title a,
.theme-euka ul.products li.product .woocommerce-loop-product__title a {
  color: inherit;
}

.woocommerce ul.products li.product p,
.woocommerce-page ul.products li.product p,
.theme-euka ul.products li.product p {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.theme-euka ul.products li.product .button {
  font-size: 0.9rem;
  color: #fcfcff;
  background-color: #2b2c3c;
  margin-top: 1rem;
  padding-right: 2.5rem;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .button:focus,
.woocommerce-page ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:focus,
.theme-euka ul.products li.product .button:hover,
.theme-euka ul.products li.product .button:focus {
  background-color: #6b7280;
}

.woocommerce ul.products li.product .button::after,
.woocommerce-page ul.products li.product .button::after,
.theme-euka ul.products li.product .button::after {
  position: absolute;
  top: 0.9em;
  right: 1.25em;
  content: "\f178";
}

.woocommerce ul.products li.product .button.loading::after,
.woocommerce-page ul.products li.product .button.loading::after,
.theme-euka ul.products li.product .button.loading::after {
  content: "\f3f4";
}

.woocommerce ul.products li.product a.added_to_cart,
.woocommerce-page ul.products li.product a.added_to_cart,
.theme-euka ul.products li.product a.added_to_cart {
  color: inherit;
  font-size: 0.85rem;
  text-decoration: underline;
}

.products-filter {
  max-width: 100%;
  padding-left: 0.71875rem;
  padding-right: 0.71875rem;
}

.products-filter label {
  font-family: "infiniregular";
  font-weight: normal;
  font-size: 1.3125rem;
  padding-left: 0.125rem;
}

@media print,
screen and (max-width: 37.49875em) {
  .products-filter label {
    font-size: 1rem;
  }
}

.products-filter select {
  font-family: "inter", sans-serif;
  width: 118px;
  padding-right: 2rem;
  font-size: 0.7em;
  text-decoration: none;
  border: 2px solid currentColor;
  border-radius: 10px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232B2C3C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right -1.85rem top 50%;
  background-size: 1.75rem;
  margin-left: 0.5rem;
}

.products-image {
  display: flex;
  padding: 2rem 1rem;
  width: 100%;
  max-width: 100px;
  justify-content: center;
  align-items: center;
  background-color: #e5e7eb;
}

@media print,
screen and (min-width: 37.5em) {
  .products-image {
    max-width: 150px;
    padding: 2.5rem 1.75rem;
  }
}

.products-content {
  padding: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media print,
screen and (min-width: 64em) {
  .bjm-wc-container {
    padding-right: 1.4375rem;
    padding-left: 1.4375rem;
  }
}

@media print,
screen and (min-width: 64em) and (min-width: 37.5em) {
  .bjm-wc-container {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.wp-block-group .bjm-wc-container {
  padding: 0;
}

.single-product.scrolled-down .header .slide-down {
  transform: translateY(-250px);
}

.single-product.scrolled-down .header .slide-down {
  transform: translateY(-250px);
}

@media print,
screen and (min-width: 64em) {
  .single-product .cell-gutenberg-content > .wp-block-cover:first-child {
    padding-top: 240px;
  }
}

@media screen and (min-width: 75em) {
  .single-product .cell-gutenberg-content > .wp-block-cover:first-child {
    padding-top: 180px;
  }
}

@media screen and (min-width: 48.875em) {
  .single-product .cell-gutenberg-content > .wp-block-cover:first-child h1 {
    margin-bottom: 0;
  }
}

.single-product .cell-gutenberg-content > .wp-block-cover:first-child .wp-block-buttons {
  margin: 1.5rem 0 0.75rem;
}

@media print,
screen and (min-width: 37.5em) {
  .single-product .cell-gutenberg-content > .wp-block-cover:first-child .wp-block-buttons {
    display: none;
  }
}

.single-product .cell-gutenberg-content > .wp-block-cover:first-child .wp-block-column + .wp-block-column {
  padding-left: 1rem;
}

.single-product .cell-gutenberg-content > .wp-block-cover:first-child .wp-block-column + .wp-block-column h2 {
  font-size: 3.625rem;
  line-height: 0.75;
  padding: 0 0.25rem;
}

.single-product .cell-gutenberg-content > .wp-block-cover:first-child .wp-block-column + .wp-block-column .wp-block-image {
  padding-right: 0;
  text-align: right;
}

@media screen and (max-width: 48.8125em) {
  .single-product .cell-gutenberg-content > .wp-block-cover:first-child .wp-block-column {
    margin: 0;
    flex-basis: 100% !important;
  }

  .single-product .cell-gutenberg-content > .wp-block-cover:first-child .wp-block-column + .wp-block-column {
    display: none;
  }
}

.single-product .cell-gutenberg-content > .section > .cell-gutenberg-content .cell-gutenberg-content > * {
  padding: 0;
  max-width: 100%;
}

.single-product .cell-gutenberg-content > .section > .cell-gutenberg-content > .wp-block-group {
  padding: 0;
}

.single-product h1 {
  line-height: 1.15;
  font-family: "infiniregular";
  font-size: 2.25rem;
}

@supports (width: 10px) {
  .single-product h1 {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }
}

.single-product .quantity .qty {
  border: 2px solid #2b2c3c;
  margin-right: 0.5rem;
  border-radius: 10px;
}

.single-product form.cart {
  padding-top: 0.5rem;
}

.single-product form.cart .single_add_to_cart_button::after {
  padding-left: 0.5rem;
  content: "\f067";
}

.single-product .upsells,
.single-product .related {
  clear: both;
  padding-top: 2rem;
  position: relative;
}

.single-product .upsells::before,
.single-product .related::before {
  content: "";
  width: 100vw;
  height: 100px;
  top: 0;
  position: absolute;
  right: calc(-100vw / 2 + 100% / 2);
  background: url(../images/euka-triangle-blue.png) no-repeat top right;
  background-size: contain;
  z-index: -1;
}

@media print,
screen and (min-width: 64em) {

  .single-product .upsells::before,
  .single-product .related::before {
    height: 300px;
  }
}

.single-product .upsells h2,
.single-product .related h2 {
  margin-bottom: 0;
}

.single-product .upsells .has-more,
.single-product .related .has-more {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media print,
screen and (min-width: 37.5em) {

  .single-product .upsells .has-more,
  .single-product .related .has-more {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.single-product .upsells .products,
.single-product .related .products {
  margin-top: 1rem;
}

.product-modal .modal-container {
  padding: 0;
}

@media print,
screen and (max-width: 37.49875em) {
  .product-modal .modal-close {
    color: #fff;
  }
}

.product-modal-form {
  padding: 2.5rem;
}

.product-modal-info {
  display: flex;
}

.product-modal-info .product-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media print,
screen and (max-width: 37.49875em) {
  .product-modal-info .product-item {
    padding: 2.5rem 1.5rem 2rem;
  }
}

.product-modal .product-content {
  flex-grow: initial;
}

.product-modal .product-button {
  display: none !important;
}

.product-modal .product-form-notice {
  margin: 0.5rem 0 1.25rem;
}

.product-form-title {
  font-size: 1.75rem;
  font-family: inherit;
}

.product-form-attach {
  font-weight: 400;
  padding-top: 1.5rem;
}

@media (max-height: 700px) and (min-width: 37.5em) {
  .product-form-attach {
    padding-top: 0;
  }
}

.product-form-attach button {
  color: #f0a32f;
  text-decoration: underline;
}

.product-form-submit,
.rc-email-check {
  text-align: right;
  margin-top: 1.5rem;
}

@media (max-height: 700px) and (min-width: 37.5em) {
  .product-form-submit {
    margin-top: 1rem;
  }
}

.product-form-notice {
  margin: 2.5rem 0 0;
}

@media (max-height: 700px) and (min-width: 37.5em) {

  .product-form input,
  .product-form select {
    height: 2.5rem;
    margin-bottom: 0.5rem;
  }
}

form.cart .product-form,
.product-form-woo form.cart {
  margin-bottom: 1rem !important;
}

.product-form-woo .variations,
.product-form-woo .woocommerce-variation,
.product-form-woo .woocommerce-variation-add-to-cart {
  display: none;
}

.product-form-woo .woocommerce-variation-price {
  display: none;
}

.product-purchase-option label {
  color: inherit;
}

.product-classic #content {
  padding-top: 200px;
}

@media print,
screen and (min-width: 37.5em) {
  .product-classic #content {
    padding-top: 250px;
  }
}

.product-classic .cell-gutenberg-content > * {
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

.product-classic div.product div.images a:hover {
  opacity: 1;
}

.product-classic div.product div.images .flex-control-thumbs {
  margin-top: 10px;
}

.product-classic div.product div.images .flex-control-thumbs li {
  width: calc(25% - 6px);
  margin-bottom: 6px;
}

.product-classic div.product div.images .flex-control-thumbs li:not(:nth-child(4n)) {
  margin-right: 8px;
}

.product-classic div.product div.images .flex-control-thumbs li img {
  opacity: 1;
}

.product-classic div.product .product_title {
  margin-bottom: 0;
}

.product-classic div.product .summary > p.price,
.product-classic div.product .summary > span.price {
  color: inherit;
  font-size: 1.65rem;
  font-weight: 500;
  position: relative;
  padding: 0 0 1.75rem;
  margin-bottom: 2rem;
}

.product-classic div.product .summary > p.price::before,
.product-classic div.product .summary > span.price::before {
  content: "";
  display: block;
  position: absolute;
  height: calc(250vh);
  background: #f7d44f url(../images/eula-orange-bottom-right.png) no-repeat bottom right;
  width: 120vw;
  left: -10vw;
  bottom: 0;
  background-size: 60%;
  z-index: -1;
}

@media screen and (min-width: 48.0625em) {

  .product-classic div.product .summary > p.price::before,
  .product-classic div.product .summary > span.price::before {
    left: -60vw;
    width: 120vw;
    background-size: 400px;
  }
}

.product-classic div.product .woocommerce-variation-price {
  margin-bottom: 1rem;
}

.product-classic div.product .variations select {
  margin-bottom: 0;
}

.product-classic div.product .wc-tab > h2:first-child {
  display: none;
}

.product-classic div.product .woocommerce-tabs ul.tabs {
  padding-left: 1px;
}

.product-classic div.product .woocommerce-tabs ul.tabs li {
  margin: 0 -1px;
  background-color: transparent;
}

.product-classic div.product .woocommerce-tabs ul.tabs li::before,
.product-classic div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.product-classic div.product .woocommerce-tabs ul.tabs li.active {
  color: #fcfcff;
  background-color: #2b2c3d;
  border-color: #2b2c3d;
}

.woocommerce.single-product .product-type-subscription {
  padding: 1rem 1.5rem 0 !important;
  background-color: #2b2c3c;
  color: #fcfcff;
  border-radius: 10px;
}

.woocommerce.single-product .product-type-subscription::after {
  content: "";
  clear: both;
  display: table;
}

@media print,
screen and (min-width: 37.5em) {
  .woocommerce.single-product .product-type-subscription {
    padding: 2.5rem 2.5rem 0.5rem !important;
  }
}

@media print,
screen and (min-width: 64em) {
  .woocommerce.single-product .product-type-subscription {
    padding: 5rem 5rem 2.5rem !important;
  }
}

.woocommerce.single-product .product-type-subscription .product_title {
  margin-bottom: 0;
}

.woocommerce.single-product .product-type-subscription p.price,
.woocommerce.single-product .product-type-subscription span.price {
  color: inherit;
  font-size: 1.65rem;
  font-weight: 500;
}

.woocommerce.single-product .product-type-subscription label,
.woocommerce.single-product .product-type-subscription .faux-label {
  color: inherit;
}

.woocommerce.single-product .product-type-subscription .product-form-title {
  font-size: 1.35rem;
}

.woocommerce.single-product .product-type-subscription .product-form-field {
  color: inherit;
  background-color: rgba(252, 252, 255, 0.5);
}

.woocommerce.single-product .product-type-subscription .product-form-field:not(.has-error) {
  border-color: transparent;
}

.woocommerce.single-product .product-type-subscription .product-form .has-small-font-size {
  font-size: 1rem;
}

.woocommerce.single-product .product-type-subscription form.cart {
  padding-top: 1rem;
}

.woocommerce.single-product .product-type-subscription form.cart .quantity {
  display: none;
}

.woocommerce.single-product .product-type-subscription form.cart .single_add_to_cart_button::after {
  content: "\f234";
}

.enr-product_level-subscribe-now-wrapper table.enr-subscribe-now-wrapper {
  margin-bottom: 0;
}

.enr-product_level-subscribe-now-wrapper table.enr-subscribe-now-wrapper .enr-subscribe-now-handle-row td {
  padding: 0;
}

.enr-product_level-subscribe-now-wrapper table.enr-subscribe-now-wrapper .enr-subscribe-now-handle-row p {
  margin-bottom: 2px;
}

.enr-product_level-subscribe-now-wrapper table.enr-subscribe-now-wrapper .enr-subscribe-now-handle-row input {
  margin-bottom: 0;
  transform: translateY(2px);
}

.enr-product_level-subscribe-now-wrapper table.enr-subscribe-now-wrapper .enr-subscribe-now-handle-row label {
  margin: 0 0.5rem 0 0.25rem;
}

.enr-product_level-subscribe-now-wrapper table.enr-subscribe-now-wrapper .enr-subscribe-now-handle-row.is-fetching p:first-child::after {
  content: "";
  display: inline-block;
  position: relative;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  animation: spinIt 1s ease infinite;
}

.enr-product_level-subscribe-now-wrapper table.enr-subscribe-now-wrapper .enr-subscribe-now-handle-row #enr_subscribe_plans {
  margin: 0.75rem 0 0.5rem;
}

.enr-product_level-subscribe-now-wrapper table.enr-subscribe-now-wrapper .enr-subscribe-now-handle-row .amount {
  font-weight: 500;
}

.woocommerce ul.products li.product-category {
  padding: 2rem;
  text-align: center;
  justify-content: center;
}

.woocommerce ul.products li.product-category .woocommerce-loop-category__title {
  padding-bottom: 0;
  font-size: 1.5rem;
  font-family: "komu-a";
}

.woocommerce ul.products li.product-category .woocommerce-loop-category__title .count {
  display: none;
}

.product-added .modal-container {
  padding: 0;
  width: 35rem;
  text-align: center;
  overflow-x: hidden;
}

.product-added .modal-container[data-wide="1"] {
  width: 55rem;
}

.product-added .modal-close {
  color: #2b2c3c;
}

.product-added .modal-content {
  overflow: hidden;
}

.product-added .cart-widget {
  font-size: 2rem;
}

.product-added .cart-widget span {
  line-height: 1.4;
}

.product-added-content {
  color: #2b2c3c;
  background-color: #f7d44f;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 3rem 2rem;
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  background-size: auto 125%;
}

.product-added-title {
  font-size: 2.75rem;
  margin: 0 auto 1.5rem;
}

@media print,
screen and (min-width: 64em) {
  .product-added-title {
    font-size: 3.25rem;
  }
}

.product-added-actions {
  display: flex;
  width: 25rem;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
}

@media print,
screen and (min-width: 37.5em) {
  .product-added-actions {
    flex-direction: row;
  }
}

.product-added-actions button {
  min-height: 45px;
  min-width: 12.5rem;
  justify-content: center;
  margin-bottom: 0.75rem;
}

@media print,
screen and (min-width: 37.5em) {
  .product-added-actions button {
    flex: 1 1 50%;
    margin-bottom: 0;
  }

  .product-added-actions button:first-child {
    margin-right: 0.75rem;
  }
}

.product-added-actions .button:hover,
.product-added-actions .button:focus {
  color: #fcfcff !important;
  background-color: #40425a !important;
}

.product-added .upsells {
  margin-top: 0;
  padding: 1.5rem 2rem 2rem;
  border-top: none;
}

.product-quiz .modal-container {
  padding: 0;
  width: calc(100% - 2rem);
  max-width: 64rem;
}

.product-quiz-form {
  padding: 1.5rem 1.75rem;
}

@media print,
screen and (min-width: 64em) {
  .product-quiz-form {
    padding: 2rem 1.75rem;
  }
}

@media print,
screen and (max-width: 63.99875em) {
  .product-quiz-image {
    margin-bottom: 1.5rem;
  }
}

.product-quiz-image img {
  width: 175px;
  margin-bottom: 0.5rem;
}

@media print,
screen and (min-width: 64em) {
  .product-quiz-image img {
    width: 300px;
    margin-bottom: 1rem;
  }
}

.product-quiz-title {
  font-size: 2rem;
  font-family: "komu-b", sans-serif;
  font-weight: 400;
  line-height: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

@media print,
screen and (min-width: 37.5em) {
  .product-quiz-title {
    font-size: 2.5rem;
    text-align: left;
  }
}

.product-quiz-content {
  opacity: 0.5;
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 2rem;
}

#product-quiz .modal-close {
  padding: 1rem 1.25rem;
}

#product-quiz .modal-close i {
  padding: 0;
  font-size: 1.4rem;
  font-weight: 300;
}

#product-quiz .product-family-container {
  margin-top: 24px;
  margin-bottom: 24px;
}

#product-quiz .product-family-container .product-family-name {
  font-family: 'infini';
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 1rem;
  padding: 0;
}

#product-quiz .product-family-container .product-grades-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

#product-quiz .nav-state-grade .product-quiz-custom {
  background-color: #F7FAFC;
  font-weight: 700;
  font-family: "infini", sans-serif;
  font-size: 14px;
  border: none;
  border-radius: 24px;
  padding: 12px 24px;
  width: fit-content;
}

#product-quiz .nav-state-grade .product-quiz-custom:active,
#product-quiz .nav-state-grade .product-quiz-custom:focus {
  box-shadow: none;
}

#product-quiz .nav-state-grade .product-quiz-custom:hover {
  background-color: #f5c81e;
}

#product-quiz p a {
  color: #fcfcff;
  font-weight: bold;
  text-decoration: underline;
}

.product-quiz-button {
  line-height: 1.2 !important;
  position: absolute !important;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 10;
  pointer-events: none;
}

.product-quiz-button.is-shown {
  opacity: 1;
  pointer-events: all;
}

.product-quiz-result {
  position: relative;
}

.product-quiz-result p {
  margin-bottom: 2rem;
}

.product-quiz-result-intro {
  color: #2b2c3c;
  background-color: #f7d44f;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

@media print,
screen and (min-width: 64em) {
  .product-quiz-result-intro {
    clip-path: polygon(98% 0,
        98% 26%,
        99% 68%,
        98% 83%,
        100% 100%,
        0 100%,
        0 0);
  }
}

.product-quiz-result-intro h2 {
  position: relative;
}

.product-quiz-result-intro::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: rotate(30deg) translate(-80%, 10%);
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
  opacity: 0.5;
  background-size: 1159px 1101px;
}

@media print,
screen and (min-width: 64em) {
  .product-quiz-result-intro::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5rem;
    height: 4rem;
    background-color: #2b2c3c;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
  }
}

.product-quiz-result-image {
  position: relative;
}

.product-quiz-result-image img {
  width: 7rem;
}

.product-quiz-result-content {
  position: relative;
  padding: 2rem 1.5rem;
}

@media print,
screen and (min-width: 64em) {
  .product-quiz-result-content {
    padding: 4rem;
  }
}

.product-quiz-result-for {
  line-height: 1.2;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.product-quiz-result-change {
  color: inherit;
  text-decoration: underline;
}

.product-quiz-result-text {
  line-height: 1.3;
  font-size: 1.875rem;
  margin-bottom: 2.5rem;
}

.product-quiz select {
  text-align: left;
  border-radius: 10px;
  background-color: transparent;
  border: 2px solid currentColor;
  margin: 0px;
  background-color: transparent;
  color: #f7d44f;
  border: 2px solid #f7d44f;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  height: auto;
  padding: 10px 38px 10px 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23F7D44F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: 25px 25px;
  background-origin: border-box;
  background-position: right 15px center;
}

.product-quiz select option {
  color: #2b2c3c;
}

.product-quiz .swiper-container {
  overflow: visible;
}

.product-quiz .swiper-pagination {
  padding: 0;
  width: 128px;
  text-align: center;
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

@media print,
screen and (min-width: 37.5em) {
  .product-quiz .swiper-pagination {
    right: 29.166665%;
  }
}

.product-quiz .swiper-pagination .swiper-pagination-bullet {
  background: #fcfcff;
  opacity: 0.25;
  width: 24px;
}

@media print,
screen and (min-width: 64em) {
  .product-quiz .swiper-pagination .swiper-pagination-bullet {
    width: 34px;
  }
}

.product-quiz .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.product-quiz .swiper-button-next,
.product-quiz .swiper-button-prev {
  color: #2b2c3c;
  background-color: #fcfcff;
  top: auto;
  bottom: 0;
  padding: 0.75rem 1rem;
  width: auto;
  height: auto;
  line-height: 1;
  border-radius: 10px;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.product-quiz .swiper-button-next::after,
.product-quiz .swiper-button-prev::after {
  display: none;
}

.product-quiz .swiper-button-next {
  right: 0;
}

.product-quiz .swiper-button-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.product-quiz .swiper-button-prev {
  left: 0;
}

@media print,
screen and (min-width: 37.5em) {
  .product-quiz .swiper-button-prev {
    left: 41.66666%;
  }
}

.product-selector .modal-container {
  width: 42rem;
  text-align: center;
  padding: 5rem 2.5rem;
}

.product-selector-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 2.25rem;
}

.product-selector-options {
  margin-bottom: 2rem;
}

@media print,
screen and (min-width: 37.5em) {
  .product-selector-options {
    display: flex;
    justify-content: center;
  }
}

.product-selector-options > div {
  padding: 0.5rem;
}

.product-selector select {
  color: #fcfcff;
  border-radius: 10px;
  background-color: transparent;
  border: 2px solid currentColor;
  margin: 0px;
  background-color: transparent;
  color: #fcfcff;
  border: 2px solid #fcfcff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  height: auto;
  padding: 10px 38px 10px 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FCFCFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: 25px 25px;
  background-origin: border-box;
  background-position: right 15px center;
}

.product-selector select option {
  color: #2b2c3c;
}

.cart-widget {
  font-size: 1rem;
  color: #fcfcff;
  background-color: #2b2c3c;
  border: 2px solid #fcfcff;
  border-radius: 10px;
  width: 3.25em;
  height: 3.25em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.cart-widget:focus {
  outline: none;
}

.cart-widget span {
  font-size: 1em;
  line-height: 1.25;
  font-weight: 700;
  position: absolute;
  top: -0.75em;
  right: -0.75em;
  color: #2b2c3c;
  width: 1.75em;
  height: 1.75em;
  background-color: #f7d44f;
  border: 3px solid #fcfcff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
}

.cart-widget i {
  font-size: 1.25em;
}

.cart-widget-fixed {
  position: fixed;
  top: 50%;
  right: 1rem;
  z-index: 101;
}

.cart-widget-fixed .cart-widget {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
  transform: translateX(calc(100% + 2rem));
}

.cart-widget-fixed .cart-widget:hover,
.cart-widget-fixed .cart-widget:focus {
  background-color: #36374b;
  box-shadow: 0 6px 17px 0 rgba(42, 28, 5, 0.3);
}

.cart-widget-fixed .cart-widget.has-items {
  transform: translateX(0);
}

.cart-modal .modal-container {
  width: 65rem;
  padding: 2rem 1.5rem;
}

@media print,
screen and (min-width: 64em) {
  .cart-modal .modal-container {
    padding: 3rem;
  }
}

.cart-modal .button-secondary {
  color: inherit;
}

.cart-modal-title {
  display: flex;
  margin-bottom: 1.5rem;
}

.cart-modal-title i {
  color: #f7d44f;
  font-size: 0.75em;
  padding-right: 1rem;
}

.cart-modal label,
.cart-modal .faux-label {
  color: inherit;
}

.cart-modal .woocommerce-message:not(.woocommerce-error) {
  color: #2b2c3c;
  background-color: #f7d44f;
}

.woocommerce-cart-form-edit td {
  border-bottom: 2px solid rgba(229, 231, 235, 0.25) !important;
}

.woocommerce-cart-form-edit .product-registration-field,
.woocommerce-cart-form-edit .product-reporting-field,
.woocommerce-cart-form-edit .product-email-address {
  margin-top: 0.75rem;
  position: relative;
}

.woocommerce-cart-form-edit .product-registration-field::before,
.woocommerce-cart-form-edit .product-reporting-field::before,
.woocommerce-cart-form-edit .product-email-address::before {
  transition: opacity 2s ease;
  content: "";
  position: absolute;
  top: -4px;
  left: -5px;
  width: calc(100% + 10px);
  padding: 15px;
  opacity: 0;
  border-radius: 10px;
  background: linear-gradient(90deg,
      rgba(252, 186, 158, 0.75),
      rgba(252, 186, 158, 0.5));
  position: absolute;
}

.woocommerce-cart-form-edit .product-registration-field.is-focused::before,
.woocommerce-cart-form-edit .product-reporting-field.is-focused::before,
.woocommerce-cart-form-edit .product-email-address.is-focused::before {
  transition: opacity 0.5s ease-out;
  opacity: 1;
}

.woocommerce-cart-form-edit .quantity .qty {
  width: 100%;
  text-align: left;
}

.woocommerce-cart-form-edit-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

.woocommerce .cart-actions,
.woocommerce-page .cart-actions,
.theme-euka .cart-actions {
  padding-bottom: 1.5rem;
}

.woocommerce .cart-actions-discount,
.woocommerce-page .cart-actions-discount,
.theme-euka .cart-actions-discount {
  font-size: 0.75rem;
  color: #a1a6b0;
  display: block;
  line-height: 1;
  text-align: right;
}

.woocommerce .cart-actions-total,
.woocommerce-page .cart-actions-total,
.theme-euka .cart-actions-total {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.25rem;
}

.woocommerce .cart-actions-total-label,
.woocommerce-page .cart-actions-total-label,
.theme-euka .cart-actions-total-label {
  display: none;
}

@media print,
screen and (min-width: 37.5em) {

  .woocommerce .cart-actions-total-label,
  .woocommerce-page .cart-actions-total-label,
  .theme-euka .cart-actions-total-label {
    display: inline-block;
  }
}

.woocommerce .cart-actions-total .payable-now,
.woocommerce-page .cart-actions-total .payable-now,
.theme-euka .cart-actions-total .payable-now {
  font-size: 0.75rem;
  color: #a1a6b0;
  display: block;
  line-height: 1;
  text-align: right;
}

.woocommerce .cart-actions-left,
.woocommerce-page .cart-actions-left,
.theme-euka .cart-actions-left {
  margin-bottom: 2.75rem;
}

@media print,
screen and (min-width: 64em) {

  .woocommerce .cart-actions-left,
  .woocommerce-page .cart-actions-left,
  .theme-euka .cart-actions-left {
    margin-bottom: 0;
  }
}

.woocommerce .cart-actions-right,
.woocommerce-page .cart-actions-right,
.theme-euka .cart-actions-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media print,
screen and (min-width: 64em) {

  .woocommerce .cart-actions-right,
  .woocommerce-page .cart-actions-right,
  .theme-euka .cart-actions-right {
    justify-content: flex-end;
  }
}

.woocommerce .is-editing .cart-actions .button,
.woocommerce-page .is-editing .cart-actions .button,
.theme-euka .is-editing .cart-actions .button {
  opacity: 0.75;
  filter: grayscale(1);
  pointer-events: none;
}

.search-results-form {
  position: relative;
}

.search-results-form-input {
  border-color: transparent;
}

.search-results-form-submit {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.25rem;
  font-size: 1.25em;
  padding: 0.275rem;
}

.search-results-form-submit:hover {
  opacity: 0.75;
}

.search .wp-block-cover .wp-block-cover__inner-container {
  max-width: 60rem;
}

.search .cards-grid-search-results .product {
  list-style-type: none;
  background-color: #fff;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.search .cards-grid-search-results .products-image {
  max-width: 100%;
}

.search #content .grid-container {
  width: 100%;
}

.pagination {
  padding: 0;
  width: 100%;
  margin-top: 2.75rem;
  list-style-type: none;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
}

.pagination .page-numbers {
  color: #2b2c3c;
  margin: 0 0.125rem;
  padding: 0.25rem 0.75rem;
  border-radius: 5px;
  transition: all 0.25s cubic-bezier(0.77, 0, 0.18, 1);
  line-height: 1.5;
  min-width: 2rem;
}

.pagination a.page-numbers:hover {
  color: #2b2c3c;
  background-color: #f8d75b;
}

.pagination .current {
  color: #2b2c3c;
  background-color: #f7d44f;
}

.pagination .current:hover {
  background-color: #f8d75b;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .product-item-registration,
small.product-item-email {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.recurring-totals {
  display: none;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.recurring-totals th {
  border-top: 2px solid #e5e7eb !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.recurring-total {
  font-size: 1rem;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.recurring-total.cart-subtotal {
  display: none;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.recurring-total th {
  vertical-align: top;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table tr.recurring-total td:last-child {
  padding-left: 1rem;
}

.account-student {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: 1fr;
}

@media print,
screen and (min-width: 37.5em) {
  .account-student {
    grid-template-columns: 1fr 1.5fr;
  }
}

@media print,
screen and (min-width: 64em) {
  .account-student {
    grid-template-columns: 1fr 1.75fr;
    grid-gap: 3.5rem;
  }
}

.account-student + .account-student {
  padding-top: 3.75rem;
  margin-top: 3.25rem;
  border-top: 1px solid #e5e7eb;
}

.account-student table.shop_table {
  margin-bottom: 0;
  border-bottom: none;
}

@media print,
screen and (min-width: 64em) {
  .account-student table.shop_table td:first-child {
    width: 40%;
  }
}

.account-student table.shop_table .faux-label {
  display: block;
}

.account-student table.shop_table small {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
}

.account-student table.shop_table em {
  display: block;
  font-size: 1.5rem;
  font-style: normal;
}

.account-student-info-links {
  margin-top: 0.5rem;
}

.account-student-info-link {
  font-size: 0.9em;
  margin-right: 0.75rem;
}

.account-student-info-link i {
  font-size: 0.8em;
}

.account-student-upsells .added::after {
  content: "\f00c" !important;
}

.account-student-addons {
  margin-top: 2.5rem;
}

.account-student-addons-intro {
  font-weight: 500;
  margin: 0.5rem 0 0;
  padding: 0.75rem 1rem;
  background-color: #f7d44f;
  border-radius: 5px;
}

.account-student-addons-grades {
  display: grid;
  column-gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  margin-top: 1rem;
}

.account-student-addons-grade {
  margin: 0.5rem 0 0;
}

.account-student-addons-grade label {
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  line-height: 1.2;
  position: relative;
  margin-bottom: 0.75rem;
}

.account-student-addons-grade label::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -5px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border-width: 1px;
  border-color: currentColor transparent;
  border-style: solid;
  opacity: 0;
  transition: all 0.1s ease;
}

.account-student-addons-grade input {
  margin-bottom: 0;
  margin-top: 4px;
}

.account-student-addons-grade .is-loading::before {
  opacity: 0.5;
  animation: spinIt 1.5s ease infinite;
  transition: all 0.5s ease;
}

.account-student-addons-error {
  margin: 0.5rem 0;
  padding: 0.5rem 0.75rem 0.75rem 2.5rem;
}

.account-student-addons-error::before {
  top: 0.75em;
  left: 0.75em;
}

.account-students-progress-heading {
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e5e7eb;
  padding: 1rem 0;
}

.account-students-progress-heading h2 {
  margin: 0;
}

.account-students-progress-heading small {
  margin-right: 0.5rem;
}

.account-students-progress-links {
  display: flex;
  margin-bottom: 2.5rem;
}

.account-students-progress-links button.progress-link {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  line-height: 1.5;
}

.account-students-progress-links button.progress-link.button {
  border: 2px solid #f7d44f;
}

.account-students-progress-links button.progress-link + button {
  margin-left: 1rem;
}

.account-students-progress-lesson {
  margin-bottom: 2.75rem;
}

.account-students-progress-lesson-title {
  margin-bottom: 1rem;
}

.account-students-progress-topic {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background-color: #b6de83;
  display: inline-block;
  margin: 0 0.5rem 0.5rem 0;
}

.account-students-progress-topic.not-completed {
  background-color: #f0a32f;
}

.account-students-progress-quiz-complete,
.account-students-progress-assignment-complete {
  display: inline-flex;
  align-items: center;
}

.account-students-progress-quiz-complete small,
.account-students-progress-assignment-complete small {
  font-size: 0.7em;
  padding: 2px 4px;
  line-height: 1.2;
  border-radius: 5px;
  background-color: #e5e7eb;
}

.account-students-progress-quiz-status,
.account-students-progress-assignment-status {
  padding-right: 1rem;
}

.account-students-progress-assignment .show-comments {
  padding: 0.25rem 0.5rem;
}

.account-students-progress .account-students-progress-quizzes,
.account-students-progress .account-students-progress-assignments {
  display: none;
}

.account-students-progress .account-students-progress-quizzes.shop_table td,
.account-students-progress .account-students-progress-assignments.shop_table td {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.student-comments-list {
  list-style-type: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.student-comments-list li {
  background-color: #fcfcff;
  border-radius: 5px;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e5e7eb;
}

.student-comments-list li + li {
  margin-top: 1rem;
}

.student-comments-list time {
  font-size: 0.7em;
  padding: 2px 4px;
  line-height: 1.2;
  border-radius: 5px;
  background-color: #e5e7eb;
  font-family: "inter", sans-serif;
  font-weight: 400;
}

.student-comments-list-author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.student-comments-modal-title {
  position: absolute;
  top: 1rem;
  left: 1.75rem;
  padding: 2px 6px;
  font-weight: 500;
  border-radius: 5px;
  background-color: #f7d44f;
}

.student-quiz-modal .modal-container {
  width: 70rem;
  position: relative;
}

.student-quiz-modal .modal-container::after {
  content: "";
  width: 5rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #fff);
}

.student-quiz-modal-content {
  overflow-x: auto;
}

.student-quiz-modal-content > *:not(table) {
  display: none !important;
}

.student-quiz-modal-content table {
  margin: 0 !important;
  border-collapse: collapse;
  min-width: 60rem;
}

.student-quiz-modal-content table tbody th,
.student-quiz-modal-content table tbody td {
  display: table-cell;
  padding: 0.5rem !important;
}

.student-quiz-modal-content table tbody tr:nth-child(4n) {
  background-color: #fcfcff;
}

.student-quiz-modal-content table th[style*="color: green"] {
  color: #9ed35b !important;
}

.student-quiz-modal-content table th[style*="color: red"] {
  color: #dc8b10 !important;
}

.student-quiz-modal-content table span[style*="font-size: x-small"] {
  display: none;
}

.student-quiz-modal-content table p {
  margin: 0;
  font-size: 0.9rem;
}

.student-quiz-modal-content table tfoot {
  font-size: 1.25rem;
}

.student-quiz-modal-content table tfoot th {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-weight: normal;
}

.student-quiz-modal-content .categoryTr,
.student-quiz-modal-content .statistic_data {
  display: none;
}

.account-student-downloads-intro {
  max-width: 65ch;
  font-size: 1.25rem;
}

.account-student-downloads-student {
  padding-top: 3.25rem;
}

.account-student-downloads-student + .account-student-downloads-student {
  margin-top: 3.25rem;
  border-top: 1px solid #e5e7eb;
}

.account-student-downloads-list {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  margin-top: 1rem;
}

.account-student-downloads-list-heading {
  grid-column: 1 / -1;
  margin: 1rem 0 0;
  font-size: 1.15rem;
}

.account-student-download {
  padding: 0.75rem 0.75rem 0.75rem 5.5rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.account-student-download::before {
  width: 4.5rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f7d44f;
  content: "\f15b";
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-image: url(../images/texture-white.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: auto 85%;
}

.account-student-download[data-type="pdf"]::before {
  background-color: #f0a32f;
  content: "\f1c1";
}

.account-student-download[data-type="doc"]::before,
.account-student-download[data-type="docx"]::before,
.account-student-download[data-type="plain"]::before {
  background-color: #c2bfe5;
  content: "\f1c2";
}

.account-student-download[data-type="aac"]::before,
.account-student-download[data-type="mp4"]::before,
.account-student-download[data-type="mpeg"]::before {
  background-color: #b6de83;
  content: "\f1c7";
}

.account-student-download-size {
  color: #6b7280;
  margin-top: auto;
}

.account-student-download-tag {
  padding: 2px 3px;
  line-height: 1;
  font-size: 0.8em;
  background-color: #f3f4f6;
  border-radius: 5px;
}

.account-shared-access-intro {
  max-width: 65ch;
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
}

.account-shared-access-list {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.account-shared-access-student {
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.05);
}

.account-shared-access-student-info {
  margin-bottom: 1.75rem;
}

.account-shared-access-student-info small {
  padding: 1px 3px;
  line-height: 1;
  background-color: #f3f4f6;
  border-radius: 5px;
}

.account-shared-access-student-info .placeholder {
  display: block;
  font-size: 5rem;
  margin-top: 1.5rem;
  color: #f3f4f6;
}

.account-shared-access-student-info p {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.account-shared-access-student-access {
  margin: 0;
  list-style-type: none;
}

.account-shared-access-student-access li {
  position: relative;
  padding: 0 0 0.25rem 1rem;
  margin-bottom: 0.25rem;
  display: flex;
  justify-content: space-between;
}

.account-shared-access-student-access li::before {
  font-size: 0.75em;
  color: #6b7280;
  position: absolute;
  left: 0;
  top: calc(50% + 1px);
  content: "\f007";
  transform: translateY(-50%);
}

.account-shared-access-student-access li:not(:last-child) {
  border-bottom: 1px solid #fbfbfc;
}

.account-shared-access-student-access li span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.account-shared-access-student-remove {
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
}

.account-shared-access-student-remove:hover {
  color: #6b2912;
}

.shared-access-modal .modal-container {
  max-width: 32rem;
}

.shared-access-modal .modal-container h2 {
  margin: 0.5rem 0 0;
}

.shared-access-modal .modal-container label {
  color: inherit;
}

.shared-access-modal .modal-container .shared-access-modal-name {
  padding: 2px 3px;
  line-height: 1;
  color: #2b2c3c;
  background-color: #c2bfe5;
  border-radius: 5px;
  position: absolute;
  top: 28px;
  left: 30px;
}

.shared-access-modal .modal-container .woocommerce-error,
.shared-access-modal .modal-container .woocommerce-message {
  margin: 1rem 0 0;
}

.shared-access-modal .modal-container .woocommerce-message {
  color: #2b2c3c;
  background-color: #b6de83;
}

.account-action-links {
  margin-bottom: 2.5rem;
}

.account-action-links .woocommerce-MyAccount-navigation ul {
  font-size: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.account-action-links .woocommerce-MyAccount-navigation ul a {
  font-size: 1.35rem;
  padding-top: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  min-height: auto;
}

.account-action-links .woocommerce-MyAccount-navigation ul a::before {
  font-size: 2rem;
}

.account-action-links .woocommerce-MyAccount-navigation ul a::after {
  font-size: 0.9rem;
}

.div-state-selector {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.div-state-selector i {
  margin-right: 0px;
  padding: 0px;
  margin: 0px;
}

.sel-state-override {
  border-color: transparent;
  font-size: inherit;
  text-align: center;
  padding-left: 6px;
  padding-right: 6px;
  margin: 0px;
  background-image: none;
  visibility: hidden;
}

.sel-state-override option {
  text-align: center;
}

.sel-state-override.show {
  visibility: visible;
}

.decision-tree {
  background-color: #2b2c3c;
  color: white;
  max-width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media print,
screen and (min-width: 64em) {
  .decision-tree {
    border-radius: 10px;
    max-width: 69rem;
    transform: translateY(-50%);
    margin-bottom: -50px;
  }
}

.decision-tree .decision-tree-inner {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media print,
screen and (min-width: 64em) {
  .decision-tree .decision-tree-inner {
    flex-direction: row;
    align-items: center;
    max-width: none;
  }
}

.decision-tree .decision-tree-inner .entry {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}

@media print,
screen and (min-width: 64em) {
  .decision-tree .decision-tree-inner .entry {
    margin-bottom: 0px;
  }
}

.decision-tree .decision-tree-inner .entry.go {
  justify-content: flex-end;
}

.decision-tree label {
  color: white;
  white-space: nowrap;
  font-weight: 500;
  font-size: 1.1rem;
  margin-right: 12px;
}

@media print,
screen and (min-width: 64em) {
  .decision-tree label {
    margin-left: 12px;
  }
}

.decision-tree select {
  margin: 0px;
  background-color: transparent;
  color: #fcfcff;
  border: 2px solid #fcfcff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  height: auto;
  padding: 10px 38px 10px 15px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23FCFCFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: 25px 25px;
  background-origin: border-box;
  background-position: right 15px center;
  text-align: left;
}

.decision-tree select option {
  color: #2b2c3c;
}

.decision-tree button {
  margin-left: 12px;
}

.calendly-overlay {
  z-index: 9999999999;
}

div.prem-email.product-item-value {
  font-size: 1rem;
}

/* Hide the Government Report Creator field on the checkout page as backup if function fails to remove */
.variation-GovernmentReportCreator,
.variation-GovernmentReportCreator + dt,
.variation-GovernmentReportCreator + dt + dd {
  display: none !important;
}

/* Existing Euka user field stylings */

#email_id_field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 10px;
}

#email_id_check-wrapper {
  display: flex;
}

#email_id_check-wrapper label {
  font-size: 0.875rem;
  user-select: none;
}

#email_id-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

#email_id-wrapper,
#email_id-wrapper input {
  margin-bottom: 0 !important;
}

#email_id_check {
  appearance: none;
  height: 20px;
  width: 20px;
  border: solid #c9ced6 2px;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

#email_id_check::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  color: white;
  display: none;
}

#email_id_check:checked {
  background-color: #f0a32f;
  border: none;
}

#email_id_check:checked::after {
  display: block;
}

#email_id_field .info-label {
  position: relative;
  color: #0055ff;
  font-size: 0.75rem;
  margin-right: auto;
  cursor: pointer;
}

#email_id_field .info-label:before {
  content: attr(data-tooltip);
  position: absolute;
  background-color: #1f2a37;
  color: white;
  width: 15.625rem;
  padding: 0.625rem 0.9375rem;
  border-radius: 0.4rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(-100% - 0.625rem));
}

#email_id_field .info-label:after {
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%) translateY(calc(-100% + 0.625rem));
  border: 10px solid;
  border-color: #1f2a37 transparent transparent transparent;
}

#email_id_field .info-label:hover::after,
#email_id_field .info-label:hover::before {
  display: inline-block;
}

#email_id_field .info-label::after,
#email_id_field .info-label::before {
  display: none;
}

.woocommerce-error {
  border-radius: 12px !important;
  background-color: #ffe6e4 !important;
  color: #cf4655 !important;
  font-weight: 400 !important;
}

.woocommerce-error::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='14' viewBox='0 0 17 14' fill='none'%3E%3Cpath d='M15.8335 12.0312L9.16789 0.65625C8.91164 0.21875 8.46164 0 8.01164 0C7.56164 0 7.11164 0.21875 6.82727 0.65625L0.164768 12.0312C-0.319294 12.9031 0.319487 14 1.34727 14H14.6785C15.7023 14 16.3429 12.9062 15.8335 12.0312ZM1.65477 12.5L7.98352 1.65L14.3679 12.5H1.65477ZM8.01164 9.53438C7.46914 9.53438 7.02914 9.97437 7.02914 10.5169C7.02914 11.0594 7.47008 11.4994 8.01289 11.4994C8.55571 11.4994 8.99414 11.0594 8.99414 10.5169C8.99289 9.975 8.55539 9.53438 8.01164 9.53438ZM7.26164 4.75V7.75C7.26164 8.16562 7.59914 8.5 8.01164 8.5C8.42414 8.5 8.76164 8.16406 8.76164 7.75V4.75C8.76164 4.3375 8.42727 4 8.01164 4C7.59602 4 7.26164 4.3375 7.26164 4.75Z' fill='%23F16063'/%3E%3C/svg%3E") !important;
}

section.account-students {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
}

section.account-students #student-progress-maintenance {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding-bottom: 3.75rem;
  margin-bottom: 3.25rem;
  border-bottom: 1px solid #e5e7eb;
}

section.account-students #student-progress-maintenance h5 {
  margin-bottom: 0;
}

section.account-students #student-progress-maintenance a {
  background: none;
  text-decoration: underline;
  font-weight: bold;
  padding: 0;
}

section.account-students #student-progress-maintenance p {
  font-weight: 400;
}

section.account-students #student-progress-maintenance img {
  max-width: 240px;
  margin-bottom: 0.5rem;
}

@media print,
screen and (min-width: 64em) {
  section.account-students {
    flex-direction: row;
  }

  section.account-students #student-progress-maintenance {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}


/* Fix close button overlap on Webinar popup */
.pum-theme-webinar-registration .pum-container button.pum-close {
  top: -0.5rem;
  right: 0.5rem;
}

.portal-migration-notice-container {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  margin-bottom: 2rem;
}

.migration-notice {
  display: flex;
  padding: 24px;
  text-align: justify;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid var(--theme-info-gradient, #68DBF2);
  background: #F3FCFE;
  color: var(--gray-900, #1A202C);
  transition: width 0.2s ease;
}

.migration-text {
  margin-bottom: 0rem;
  font-family: inter, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

@media (min-width: 1024px) {
  .migration-notice {
    width: 70.5rem;
  }
}

/* Media query for 1024px to 1190px and 1024x768 landscape */
@media (min-width: 1024px) and (max-width: 1190px),
(min-width: 1024px) and (max-width: 1024px) and (min-height: 768px) and (max-height: 768px) {
  .migration-notice {
    width: 60rem;
  }
}


/* === START: CTA Enrolment === */
/* Base layout */
#cta-enrol-now {
  margin: 2.5rem auto;
}

#cta-enrol-now .cta-enrol-columns {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}

#cta-enrol-now .cta-enrol-column {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  width: 100%;
}

#cta-enrol-now .cta-enrol-column:first-of-type {
  border-radius: 1rem 0 0 1rem;
}

#cta-enrol-now .cta-enrol-column:last-of-type {
  border-radius: 0 1rem 1rem 0;
}

/* Column variation for 1 product */
#cta-enrol-now .cta-enrol-columns[data-product-count="1"] {
  grid-template-columns: repeat(2, 1fr);
}

#cta-enrol-now .cta-enrol-columns[data-product-count="1"] .cta-enrol-column {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

/* Column variation for 1X2 and 1X3 */

#cta-enrol-now .cta-enrol-columns[data-product-count="2"],#cta-enrol-now .cta-enrol-columns[data-product-count="3"] {
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:2rem;
}
#cta-enrol-now .cta-enrol-columns[data-product-count="2"] .cta-enrol-column,#cta-enrol-now .cta-enrol-columns[data-product-count="3"] .cta-enrol-column
{
    border-radius:1rem;
}

/* Column variation for 2x2 grid */
#cta-enrol-now .cta-enrol-columns[data-product-count="4"] {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 0 2rem;
}

#cta-enrol-now .cta-enrol-columns[data-product-count="4"] .cta-enrol-column {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}

#cta-enrol-now .cta-enrol-columns[data-product-count="4"] .cta-enrol-column:nth-child(1),
#cta-enrol-now .cta-enrol-columns[data-product-count="4"] .cta-enrol-column:nth-child(2) {
  border-radius: 1rem 1rem 0 0;
  padding-top: 3.5rem;
}

#cta-enrol-now .cta-enrol-columns[data-product-count="4"] .cta-enrol-column:nth-child(3),
#cta-enrol-now .cta-enrol-columns[data-product-count="4"] .cta-enrol-column:nth-child(4) {
  border-radius: 0 0 1rem 1rem;
}


/* Base typography */
#cta-enrol-now h2 {
  font-family: "Komu-b", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

#cta-enrol-now h2.cta-enrol-title {
  font-size: 3rem;
}

#cta-enrol-now h2.cta-enrol-subtitle {
  font-size: 2rem;
}

#cta-enrol-now p.cta-enrol-total-amount {
  font-size: 0.6rem;
}

#cta-enrol-now p {
  font-family: "inter", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 162.023%;
  margin-bottom: 0;
}

#cta-enrol-now a {
  background: none;
  text-decoration: underline;
  padding: 0;
}

/* Header styles */
#cta-enrol-now .cta-enrol-header {
  display: grid;
  grid-template-rows: 2rem 0.75rem auto 2.5rem 2rem;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  width: 100%;
}

#cta-enrol-now .cta-enrol-header .cta-enrol-badge-savings {
  grid-row-start: 1;
}

#cta-enrol-now .cta-enrol-header .cta-enrol-grade {
  grid-row-start: 2;
}

#cta-enrol-now .cta-enrol-header .cta-enrol-title {
  grid-row-start: 3;
}

#cta-enrol-now .cta-enrol-header .cta-enrol-subtitle {
  grid-row-start: 4;
}

#cta-enrol-now .cta-enrol-header .cta-enrol-cost-upfront {
  grid-row-start: 5;
}
#cta-enrol-now .cta-enrol-header .cta-enrol-total-amount {
  grid-row-start: 6;
}

#cta-enrol-now .cta-enrol-header p {
  opacity: 0.64;
}

#cta-enrol-now .cta-enrol-header .cta-enrol-grade {
  text-transform: uppercase;
}

/* Main content styles */
#cta-enrol-now .cta-enrol-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

/* Footer styles */
#cta-enrol-now .cta-enrol-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Forced row containers */
#cta-enrol-now .cta-enrol-row-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

/* Inclusions */
#cta-enrol-now .cta-enrol-inclusions[data-inclusions-type="add-ons"] [data-status="false"] {
  display: none;
}

/* Grade */
#cta-enrol-now .cta-enrol-grade {
  font-size: 0.875rem;
  line-height: normal;
}

/* Prices */
#cta-enrol-now .cta-enrol-cost-upfront p {
  font-size: 1.5rem;
  line-height: 136.023%;
}

#cta-enrol-now .cta-enrol-cost-upfront .cta-enrol-subscription-frequency {
  font-size: 1rem;
  line-height: 136.023%;
}

#cta-enrol-now .cta-enrol-cost-monthly .cta-enrol-subscription-frequency {
  font-size: 0.75rem;
  line-height: 1.25rem;
}

#cta-enrol-now p.cta-enrol-cost-strikethrough {
  position: relative;
  font-size: 1.25rem;
  font-weight: 300;
}

#cta-enrol-now p.cta-enrol-cost-strikethrough::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.9rem;
  right: 0;
  border-top: 2px solid;
  border-color: inherit;
  -webkit-transform: skewY(-5deg);
  -moz-transform: skewY(-5deg);
  transform: skewY(-5deg);
}


/* Badge - savings */
#cta-enrol-now .cta-enrol-header p.cta-enrol-badge-savings {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: normal;
  opacity: 1;
  width: fit-content;
  color: var(--gray-800, #2D3748);
  background: var(--brand-euka-mint, #BEDD8D);
}

/* CTA ticked lists */
#cta-enrol-now .cta-enrol-ticked-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#cta-enrol-now .cta-enrol-ticked-list .cta-enrol-row-wrapper {
  justify-content: start;
  align-items: start;
  gap: 0.75rem;
}

#cta-enrol-now .cta-enrol-ticked-list p {
  position: relative;
  margin-bottom: 0;
  flex: 1;
}

#cta-enrol-now .cta-enrol-ticked-list .fa-stack {
  position: relative;
  width: 1rem;
  height: 1rem;
  top: 0.35rem;
}

#cta-enrol-now .cta-enrol-ticked-list .fa-stack i {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 0.60rem;
  color: var(--theme-white-default, #FFF);
}

#cta-enrol-now .cta-enrol-ticked-list .fa-stack i.fa-circle {
  font-size: 1rem;
  color: var(--theme-success-default, #66CB9F);
}


#cta-enrol-now [data-inclusions-type="add-ons"] .cta-enrol-ticked-list i.fa-circle {
  font-size: 1rem;
  color: #D7E3F1;
}

#cta-enrol-now .cta-enrol-ticked-list i.fa-check {
  top: 0.05rem;
}

#cta-enrol-now .cta-enrol-ticked-list i.fa-times {
  display: none;
  top: 0.05rem;
}

#cta-enrol-now .cta-enrol-ticked-list [data-status="false"] i.fa-check {
  display: none;
}

#cta-enrol-now [data-inclusions-type="add-ons"] .cta-enrol-ticked-list i.fa-check {
  display: none;
}

#cta-enrol-now .cta-enrol-ticked-list [data-status="false"] i.fa-times {
  display: flex;
}

#cta-enrol-now .cta-enrol-ticked-list [data-status="false"] i.fa-circle {
  color: var(--theme-danger-default, #F16063);
}

/* Buttons */
#cta-enrol-now .cta-enrol-modal-button {
  text-decoration: underline;
}

#cta-enrol-now .cta-enrol-button {
  background: var(--gray-800, #2D3748);
  color: var(--theme-white-default, #FFF);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 3.65rem;
  max-width: 14.3125rem;
  text-decoration: none;
}

/* Divider */
#cta-enrol-now .cta-enrol-divider {
  position: relative;
  height: 1px;
  margin-bottom: 1.75rem;
}

#cta-enrol-now .cta-enrol-divider p {
  font-size: 0.75rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  padding: 0 0.25rem;
  position: relative;
  top: -.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: fit-content;
}

#cta-enrol-now .cta-enrol-divider::before {
  content: "";
  height: 1px;
  display: block;
}

/* Images */
#cta-enrol-now .cta-enrol-cover-image img {
  max-width: 20rem;
}

/* Variations for 1 column */
#cta-enrol-now [data-product-count="1"] .cta-enrol-header {
  grid-template-rows: 1rem 3rem 2rem;
}

#cta-enrol-now [data-product-count="1"] .cta-enrol-header .cta-enrol-grade {
  grid-row-start: 1;
}

#cta-enrol-now [data-product-count="1"] .cta-enrol-header .cta-enrol-title {
  grid-row-start: 2;
}

#cta-enrol-now [data-product-count="1"] .cta-enrol-header .cta-enrol-cost-upfront {
  grid-row-start: 3;
}


#cta-enrol-now [data-product-count="1"] .cta-enrol-header .cta-enrol-subtitle {
  display: none;
}

#cta-enrol-now .cta-enrol-columns[data-product-count="1"] .cta-enrol-cover-image {
  justify-content: center;
  align-items: center;
}

#cta-enrol-now [data-product-count="4"] .cta-enrol-product-secondary .cta-enrol-header {
  grid-template-rows: 0 1rem auto 2rem;
}

#cta-enrol-now [data-product-count="4"] .cta-enrol-product-secondary .cta-enrol-content {
  display: none;
}

#cta-enrol-now [data-product-count="4"] .cta-enrol-product-secondary.cta-enrol-column {
  gap: 3rem;
  justify-content: space-between;
}

#cta-enrol-now.hide-cta-section {
  display: none !important;
}

/* CTA Modal styling */
.product-feature-modal .modal-container {
  padding: 0;
  max-width: calc(100% - 2rem);
  max-height: calc(100% - 4.75rem);
}

.product-feature-modal .modal-content {
  display: grid;
  grid-template-columns: 16.55rem auto;
  grid-template-rows: auto;
  align-items: stretch;
}

.product-feature-modal .modal-content > .wp-block-group:first-of-type {
  display: flex;
  justify-content: center;
  align-items: center;
}

#product-registration .modal-content > .wp-block-group:first-of-type {
  background: var(--brand-wax-flower, #F2BDA2);
}

#product-reporting .modal-content > .wp-block-group:first-of-type {
  background: var(--brand-euka-mint, #BEDD8D);
}

#product-partners .modal-content > .wp-block-group:first-of-type {
  background: var(--brand-sunshine, #F1D567);
}

.product-feature-modal .modal-content > .wp-block-group:last-of-type {
  height: fit-content;
  max-height: 36.3rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #4A5568 #2D3748;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 1.25rem;
  margin-top: 3.25rem;
  margin-bottom: 2rem;
  margin-right: 0.75rem;
}

.product-feature-modal .modal-content > .wp-block-group:last-of-type::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}

.product-feature-modal .modal-content > .wp-block-group:last-of-type::-webkit-scrollbar-track {
  border-radius: 16px;
  background-color: #2D3748;
}

.product-feature-modal .modal-content > .wp-block-group:last-of-type::-webkit-scrollbar-track:hover {
  background-color: #4A5568;
}

.product-feature-modal .modal-content > .wp-block-group:last-of-type::-webkit-scrollbar-track:active {
  background-color: #4A5568;
}

.product-feature-modal .modal-content > .wp-block-group:last-of-type::-webkit-scrollbar-thumb {
  border-radius: 16px;
  background-color: #4A5568;
}

.product-feature-modal .modal-content > .wp-block-group:last-of-type::-webkit-scrollbar-thumb:hover {
  background-color: #718096;
}

.product-feature-modal .modal-content > .wp-block-group:last-of-type::-webkit-scrollbar-thumb:active {
  background-color: #718096;
}

.product-feature-modal .modal-content > .wp-block-group:last-of-type .wp-block-group,
.product-feature-modal .modal-content > .wp-block-group:last-of-type .wp-block-group .wp-block-image {
  padding: 0;
}

.product-feature-modal .modal-content > .wp-block-group:last-of-type .wp-block-group p {
  margin-bottom: 0;
}

.product-feature-modal .modal-content .uni-logo-group > .wp-block-group__inner-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.product-feature-modal .modal-content .uni-logo-group > .wp-block-group__inner-container .wp-block-group__inner-container {
  display: grid;
  grid-template-rows: 4rem auto;
}

.product-feature-modal .modal-content .uni-logo-group > .wp-block-group__inner-container .wp-block-group__inner-container .wp-block-image {
  align-self: center;
}

.product-feature-modal .modal-content .uni-logo-group > .wp-block-group__inner-container .wp-block-group__inner-container p {
  text-align: center;
  font-family: 'inter';
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4375rem;
}

.product-feature-modal .modal-content .uni-logo-group > .wp-block-group__inner-container img {
  max-height: 4rem;
}

/* ---- START: Light version variations ------------------- */
/* Background */
#cta-enrol-now .cta-enrol-bg-light {
  background: #D7E3F1;
}

#cta-enrol-now .cta-enrol-bg-light.cta-enrol-product-secondary {
  background: #EDF2FA;
}

/* Headings */
#cta-enrol-now .cta-enrol-bg-light h2.cta-enrol-title {
  color: var(--gray-800, #2D3748);
}

#cta-enrol-now .cta-enrol-bg-light h2.cta-enrol-subtitle {
  color: var(--gray-900, #1A202C)
}

/* Body text */
#cta-enrol-now .cta-enrol-bg-light p {
  color: var(--gray-900, #1A202C);
}

/* Dividers */
#cta-enrol-now .cta-enrol-bg-light .cta-enrol-divider {
  background: #00000029;
}

#cta-enrol-now .cta-enrol-bg-light .cta-enrol-divider p {
  color: #1a202ca3;
  background: #D7E3F1;
}

#cta-enrol-now .cta-enrol-bg-light.cta-enrol-product-secondary .cta-enrol-divider p {
  background: #EDF2FA;
}

/* Prices */
#cta-enrol-now .cta-enrol-bg-light p.cta-enrol-cost-actual {
  color: var(--gray-900, #1A202C);
  opacity: 1;
}

/* Buttons */
#cta-enrol-now .cta-enrol-bg-light .cta-enrol-button {
  background: var(--gray-800, #2D3748);
  color: var(--theme-white-default, #FFF);
}

#cta-enrol-now .cta-enrol-bg-light .cta-enrol-modal-button {
  color: var(--gray-900, #1A202C);
}

/* ---- END: Light version variations --------------------- */

/* ---- START: Dark version variations -------------------- */
/* Background */
#cta-enrol-now .cta-enrol-bg-dark {
  background: var(--brand-ebony-clay, #2B2C3C);
}

#cta-enrol-now .cta-enrol-bg-dark.cta-enrol-product-secondary {
  background: #4E5671;
}

/* Headings */
#cta-enrol-now .cta-enrol-bg-dark h2.cta-enrol-title {
  color: var(--brand-sunshine, #F1D567);
}

#cta-enrol-now .cta-enrol-bg-dark.cta-enrol-product-secondary h2.cta-enrol-title {
  color: var(--theme-white-default, #FFF);
}

#cta-enrol-now .cta-enrol-bg-dark h2.cta-enrol-subtitle {
  color: var(--theme-white-default, #FFF);
}

/* Body Text */
#cta-enrol-now .cta-enrol-bg-dark p {
  color: var(--theme-white-default, #FFF);
}

/* Dividers */
#cta-enrol-now .cta-enrol-bg-dark .cta-enrol-divider {
  background: #ffffff3d;
}

#cta-enrol-now .cta-enrol-bg-dark .cta-enrol-divider p {
  color: var(--gray-500, #A0AEC0);
  background: var(--brand-ebony-clay, #2B2C3C);
}

#cta-enrol-now .cta-enrol-bg-dark.cta-enrol-product-secondary .cta-enrol-divider p {
  background: #4E5671;
}

/* Prices */
#cta-enrol-now .cta-enrol-bg-dark p.cta-enrol-cost-actual {
  color: var(--theme-white-default, #FFF);
  opacity: 1;
}

/* Buttons */
#cta-enrol-now .cta-enrol-bg-dark.cta-enrol-product-primary .cta-enrol-button {
  background: var(--brand-sunshine, #F1D567);
  color: var(--gray-800, #2D3748);
}

#cta-enrol-now .cta-enrol-bg-dark .cta-enrol-modal-button {
  color: var(--theme-white-default, #FFF);
}

/* ---- END: Dark version variations ---------------------- */

/* ---- START: Mobile styles ------------------------------ */
@media (max-width: 1100px) {

  /* Base layout */
  #cta-enrol-now .cta-enrol-columns {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
  }

  #cta-enrol-now .cta-enrol-column {
    max-width: 700px;
    padding: 3rem 2rem;
    border-radius: 1rem;
  }

  #cta-enrol-now .cta-enrol-column:first-of-type,
  #cta-enrol-now .cta-enrol-column:last-of-type {
    border-radius: 1rem;
  }

  /* Layout variation for 1 product */
  #cta-enrol-now .cta-enrol-columns[data-product-count="1"] {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
  }

  #cta-enrol-now .cta-enrol-columns[data-product-count="1"] .cta-enrol-column:first-of-type {
    border-radius: 1rem 1rem 0 0;
  }

  #cta-enrol-now .cta-enrol-columns[data-product-count="1"] .cta-enrol-column:last-of-type {
    border-radius: 0 0 1rem 1rem;
  }

  #cta-enrol-now .cta-enrol-columns[data-product-count="1"] .cta-enrol-cover-image {
    padding-bottom: 0;
  }

  /* Layout variation for 2x2 */
  #cta-enrol-now .cta-enrol-columns[data-product-count="4"] {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
  }

  #cta-enrol-now .cta-enrol-columns[data-product-count="4"] .cta-enrol-column:nth-child(2) {
    margin-top: 2rem;
  }

  #cta-enrol-now .cta-enrol-columns[data-product-count="4"] .cta-enrol-column:nth-child(2) {
    grid-row-start: 3;
  }

  #cta-enrol-now .cta-enrol-columns[data-product-count="4"] .cta-enrol-column:nth-child(3) {
    grid-row-start: 2;
  }

  /* Header styles */
  #cta-enrol-now .cta-enrol-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Split cost into columns */
  #cta-enrol-now .cta-enrol-cost-upfront.cta-enrol-row-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .product-feature-modal .modal-content {
    grid-template-columns: auto;
    grid-template-rows: 7.5rem auto;
  }

  .product-feature-modal .modal-content img {
    max-height: 4.5rem;
  }

  .product-feature-modal .modal-container .modal-close {
    color: #1A202C;
  }
}

@media (max-width: 600px) {
  #enrol-now {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #cta-enrol-now .cta-enrol-column {
    padding: 2rem 1rem;
  }
}

/* ---- End: Mobile styles -------------------------------- */
/* === END: CTA Enrolment === */


/* === START: Contact Pages === */
.wp-block-bjm-blocks-blocks.euka-contact-info-cards > .columns-2 > .wp-block-bjm-blocks-block .wp-block-bjm-blocks-blocks {
  padding: 0;
}

.wp-block-bjm-blocks-blocks.euka-contact-info-cards > .columns-2 > .wp-block-bjm-blocks-block .wp-block-bjm-blocks-block {
  justify-content: start;
  padding: 1rem;
}

@media (min-width: 64em) {
  .wp-block-bjm-blocks-blocks.euka-contact-info-cards > .columns-2 > .wp-block-bjm-blocks-block:first-of-type {
    width: calc(30% - 2rem);
  }

  .wp-block-bjm-blocks-blocks.euka-contact-info-cards > .columns-2 > .wp-block-bjm-blocks-block:last-of-type {
    width: calc(70% - 2.5rem);
  }
}

.euka-phone-number-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.euka-phone-number-wrapper p,
.euka-phone-number-wrapper p a {
  margin-bottom: 0;
  color: var(--Gray-900, #1A202C);
  font-family: 'infini';
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5625rem;
}

.euka-phone-number-wrapper p a {
  width: 100%;
  background: none;
  border: none;
  color: var(--Gray-900, #1A202C) !important;
}

.euka-phone-number-wrapper a,
.euka-phone-number-wrapper button {
  border: 1px solid var(--Brand-Ebony-Clay, #2B2C3D);
  border-radius: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.euka-phone-number-wrapper i {
  font-size: 0.625rem;
  color: var(--Brand-Ebony-Clay, #2B2C3D);
  font-weight: 500;
  transition: font-size 0.3s ease, opacity 0.25s ease;
}

.euka-phone-number-wrapper .euka-copy-number {
  position: relative;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.euka-phone-number-wrapper .euka-copy-number i {
  position: absolute;
  top: 0.4rem;
  bottom: 0;
  left: 0;
  right: 0;
}

.euka-phone-number-wrapper .euka-copy-number i:nth-child(2) {
  font-size: 0;
  opacity: 0;
}

.euka-phone-number-wrapper .euka-copy-number[data-is-copied="true"] {
  transform: rotate(360deg);
}

.euka-phone-number-wrapper .euka-copy-number[data-is-copied="true"] i {
  font-size: 0;
  opacity: 0;
}

.euka-phone-number-wrapper .euka-copy-number[data-is-copied="true"] i:nth-child(2) {
  font-size: 0.625rem;
  opacity: 1;
}

.euka-intercom-trigger-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
}

.euka-intercom-trigger-wrapper .euka-intercom-button {
  max-width: max-content;
  background: var(--Brand-Ebony-Clay, #2B2C3D);
  border: 2px solid var(--Brand-Ebony-Clay, #2B2C3D);
  border-radius: 0.5rem;
  padding: 0.5rem 3rem;
  color: var(--Theme-White-Default, #FFF);
  font-family: 'infini';
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5rem;
}

/* === END: Contact Pages === */


/* === START: Post Checkout Page === */
.page-template-parent-portal-styling header,
.page-template-parent-portal-styling footer {
  display: none;
}

.page-template-parent-portal-styling #checkout-top-nav {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
  background: var(--gray-50, #FAFAFA);
  border-bottom: 1px solid #E2E8F0;
}

.page-template-parent-portal-styling #checkout-top-nav #checkout-user {
  display: none;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.page-template-parent-portal-styling #checkout-top-nav #checkout-user p {
  color: var(--gray-900, #1A202C);
  font-family: 'infiniregular';
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 0;
}

.page-template-parent-portal-styling #checkout-top-nav #checkout-logout p {
  color: #06F;
  font-family: 'inter';
  font-weight: 600;
}

.page-template-parent-portal-styling .section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 3rem 2rem;
}

.page-template-parent-portal-styling .section figure.is-type-video {
  max-width: 750px;
  width: 100%;
  margin-bottom: 3rem;
}

.page-template-parent-portal-styling .section figure.is-type-video iframe {
  border-radius: 1.5rem;
}

.page-template-parent-portal-styling .section h2 {
  color: var(--gray-900, #1A202C);
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2rem;
}

.page-template-parent-portal-styling .section h4 {
  color: var(--gray-900, #1A202C);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: 1200px;
  margin-bottom: 1rem;
}

.page-template-parent-portal-styling .section p {
  max-width: 45rem;
  color: var(--gray-900, #1A202C);
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 162.023%;
  word-break: break-word;
}

.page-template-parent-portal-styling .section *:last-child {
  margin-bottom: 0;
}

.page-template-parent-portal-styling #welcome-message {
  background: white;
  padding-top: 2rem;
  margin-bottom: 0;
  text-align: center;
}

.page-template-parent-portal-styling #thank-you {
  background: var(--theme-white-default, #FFF);
}

.page-template-parent-portal-styling #view-resources {
  background: var(--gray-100, #F7FAFC);
}

.page-template-parent-portal-styling .bjm-cards-wrapper {
  padding-top: 0;
}

.page-template-parent-portal-styling .bjm-cards-wrapper .cards-grid-x {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  margin: 0;
}

.page-template-parent-portal-styling .bjm-cards-wrapper .cell.cell-card {
  box-shadow: none;
  border-radius: 1.5rem;
  border: 2px solid var(--gray-300, #E2E8F0);
  background: var(--theme-white-default, #FFF);
  height: 100%;
  width: 100%;
  margin: 0;
}

.page-template-parent-portal-styling .bjm-cards-wrapper .cell.cell-card .card-inner {
  gap: 1rem;
}

.page-template-parent-portal-styling .bjm-cards-wrapper .cell.cell-card .card-inner .card-content,
.page-template-parent-portal-styling .bjm-cards-wrapper .cell.cell-card .card-inner .card-read-more {
  padding: 0 1.5rem;
}

.page-template-parent-portal-styling .bjm-cards-wrapper .cell.cell-card .card-inner .card-image {
  border-radius: 0;
  aspect-ratio: 179 / 86;
  padding-top: 0;
  margin-bottom: 0.5rem;
}

.page-template-parent-portal-styling .bjm-cards-wrapper .cell.cell-card .card-inner .card-content .card-tags h4 {
  color: var(--gray-700, #4A5568);
  font-family: 'inter', sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25rem;
  margin-bottom: 0.25rem;
}

.page-template-parent-portal-styling .bjm-cards-wrapper .cell.cell-card .card-inner .card-content .card-title {
  color: var(--brand-ebony-clay, #2B2C3D);
  font-family: 'infini', serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5625rem;
}

.page-template-parent-portal-styling .bjm-cards-wrapper .cell.cell-card .card-inner .card-read-more .wp-block-button {
  padding-left: 0;
}

.page-template-parent-portal-styling .bjm-cards-wrapper .cell.cell-card .card-inner .card-read-more .wp-block-button a {
  color: var(--brand-ebony-clay, #2B2C3D);
  font-family: 'inter';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 162.023%;
}

.page-template-parent-portal-styling .bjm-cards-wrapper .cell.cell-card .card-inner .card-read-more .wp-block-button a::after {
  content: none;
}

@media (max-width: 600px) {
  .page-template-parent-portal-styling #checkout-top-nav {
    padding: 0.5rem 1rem;
  }

  .page-template-parent-portal-styling #checkout-top-nav #checkout-user {
    flex-direction: column;
    gap: 0.25rem;
    align-items: end;
  }

  .page-template-parent-portal-styling #content .section {
    padding: 1.5rem 1rem;
  }

  .page-template-parent-portal-styling #content .section figure.is-type-video {
    margin-bottom: 1.5rem;
  }

  .page-template-parent-portal-styling .bjm-cards-wrapper .cards-grid-x {
    grid-template-columns: auto;
  }
}

#need-assistance {
  background-color: #f7fafc;
  padding-top: 4rem;
  padding-bottom: 8rem;
}

#need-assistance a {
  color: var(--gray-900, #1A202C);
  text-decoration: underline;
}

#need-assistance .euka-intercom-open {
  cursor: pointer;
  text-decoration: underline;
}
/* === END: Post Checkout Page === */


/* === WooCommerce removal fixes === */
.woocommerce ul.products li.product a {
  text-decoration: none;
}

.product-grid-fullwidth {
  padding-left: 0;
  padding-right: 0;
  /* max-width: 75rem; */
}

.product-grid-fullwidth ul {
  padding-left: 0;
  padding-right: 0;
}

.woocommerce ul.products li.product[data-product-hidden="true"] {
  display: none !important;
}

.section-nav .section-nav-item.button {
  padding: 10px 20px;
}

.service-section-title {
  font-family: "infiniregular";
  font-weight: normal;
  font-size: 1.3125rem;
  padding-left: 0.125rem;
}



/* === START: Thin header variation === */
.euka-header-thin.header .cell-navbar .navbar-main .navbar-logo:before {
  display: none;
}

.euka-header-thin.header .cell-navbar .navbar-main .navbar-logo img {
  max-height: 3rem;
}

/* === END: Thin header variation === */


/* === START: Euka podcast episode list === */
#euka-podcast-archive h1,
#euka-podcast-archive h2,
#euka-podcast-archive p {
  color: #2B2C3C;
}

#euka-podcast-archive .wp-block-cover {
  min-height: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 2rem;
}

.euka-podcast-episode-list {
  padding: 0 1rem;
}

.euka-podcast-episode-list,
.euka-podcast-episode-list .euka-podcast-episode {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
}

.euka-podcast-episode-list .euka-podcast-episode a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
  max-width: 80rem;
  color: #2D3748;
  background: transparent;
  transition: background 0.35s ease;
  padding: 2rem 0;
  position: relative;
}

.euka-podcast-episode-list .euka-podcast-episode a:hover {
  background: rgb(247, 250, 252);
  background: linear-gradient(301deg, rgba(247, 250, 252, 0) 0%, rgba(247, 250, 252, 1) 20%, rgba(247, 250, 252, 1) 80%, rgba(247, 250, 252, 0) 100%);
}

.euka-podcast-episode-list .euka-podcast-episode:not(:last-of-type) a::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  max-width: 60rem;
  height: 1px;
  background-color: #E2E8F0;
  bottom: 0;
}

.euka-podcast-episode-list .euka-podcast-episode .euka-episode-thumb {
  width: 26%;
  max-width: 15rem;
}

.euka-podcast-episode-list .euka-podcast-episode .euka-episode-thumb img {
  border-radius: 0.75rem;
}


.euka-podcast-episode-list .euka-podcast-episode .euka-episode-details {
  width: 70%;
  max-width: 43rem;
}

.euka-podcast-episode-list .euka-episode-details p {
  margin-bottom: 0;
}

.euka-podcast-episode-list .euka-episode-details .euka-episode-title {
  font-family: infini, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.euka-podcast-episode-list .euka-episode-details .euka-episode-number,
.euka-podcast-episode-list .euka-episode-details .euka-episode-excerpt {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.438rem;
}

.euka-podcast-pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  margin: 2rem auto 0;
  background: #FFFFFF;
}

.euka-podcast-pagination div {
  display: inherit;
}

#euka-podcast-archive .euka-podcast-pagination a,
#euka-podcast-archive .euka-podcast-pagination p,
#euka-podcast-archive .euka-podcast-pagination span {
  margin: 0;
  font-family: 'inter';
  font-size: 0.875rem;
  line-height: 1.313rem;
  padding: 0.375rem 0.75rem;
  height: 100%;
  width: 100%;
  color: #6B7280;
  background: transparent;
  transition: background 0.2s;
}

#euka-podcast-archive .euka-podcast-pagination a:hover {
  background: rgb(247, 250, 252);
}

#euka-podcast-archive .euka-podcast-pagination .current {
  color: #2B2C3C;
  font-weight: 600;
}

.euka-podcast-pagination .euka-podcast-episodes-list :first-child {
  border-left: 1px solid #D1D5DB;
}

.euka-podcast-pagination .page-numbers {
  border-right: 1px solid #D1D5DB;
}

#euka-podcast-archive .euka-podcast-pagination-button-disabled  {
  opacity: 0.5;
  cursor: default;
}
/* === END: Euka podcast episode list === */


/* === START: Euka podcast elements shared === */
.podcast-page-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.podcast-page-section > div {
  max-width: 954px;
  padding: 0 1rem;
}

.podcast-page-section.podcast-section-fullwidth > div {
  padding-left: 0;
  padding-right: 0;
}

.podcast-container-flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  gap: 2rem;
}

.podcast-episode-media {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 2rem;
  aspect-ratio: 16 / 9;
}

.podcast-episode-media iframe {
  height: 100%;
  width: 100%;
}

#podcast-page-header {
  padding-top: 8rem;
}

#podcast-page-platforms {
  background-color: #EDF2F7;
  padding: 2rem;
}

#podcast-page-platforms p {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

#podcast-page-episode-slider h2,
#podcast-page-socials h2,
#podcast-page-hosts h2 {
  text-align: center;
  margin-bottom: 2rem;
}

#podcast-page-platforms .podcast-platform {
  min-width: 150px;
}

#podcast-page-episode-slider {
  padding: 2rem 0;
}

#podcast-page-socials {
  padding: 2rem;
}

#podcast-page-socials h2 {
  margin-bottom: 3rem;
}

.euka-social-follow-grid.wp-block-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 750px;
}

.euka-social-follow-grid .wp-block-group {
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  background: #F7FAFC;
  margin: 0;
  padding: 0;
}

.euka-social-follow-grid .wp-block-group figure {
  padding: 0;
}

.euka-social-follow-grid .wp-block-group a {
  padding: 40px 54px;
}

.euka-social-follow-grid .wp-block-group .wp-block-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

#podcast-page-episode-slider > div {
  max-width: calc(954px + 7rem);
}

.euka-podcast-episodes-slider {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.euka-product-episodes-slides-container {
  overflow: hidden;
  max-width: calc(100vw - 10rem);
}

.euka-podcast-episodes-slider button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background-color: #FFFFFF;
  border: 1px solid #CBD5E0;
  border-radius: 2rem;
}

.euka-podcast-episodes-slider button.euka-podcast-slider-next,
.euka-podcast-episodes-slider button.euka-podcast-slider-prev {
  flex-shrink: 0;
  transition: opacity 0.25s ease-in-out;
}

.euka-podcast-episodes-slider button.euka-podcast-slider-next:disabled,
.euka-podcast-episodes-slider button.euka-podcast-slider-prev:disabled {
  opacity: 0.33;
  cursor: default;
}

.euka-podcast-episodes-slider button.euka-podcast-slider-next img,
.euka-podcast-episodes-slider button.euka-podcast-slider-prev img {
  max-width: 0.75rem;
}

.euka-podcast-episodes-slider button.euka-podcast-slider-next img {
  rotate: 90deg;
}

.euka-podcast-episodes-slider button.euka-podcast-slider-prev img {
  rotate: -90deg;
}

.euka-podcast-slider-slides {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5rem;
  width: fit-content;
  position: relative;
  right: 0;
  transition: right 0.3s ease-in-out;
}

.euka-podcast-slider-slide {
  width: 240px;
}

.euka-podcast-slider-slide p {
  color: #2B2C3D;
}

.euka-podcast-episode-thumbnail {
  aspect-ratio: 16 / 9;
  text-align: center;
  margin-bottom: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
}

.euka-podcast-slider-slide p {
  font-family: "inter";
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
}

.euka-podcast-slider-slide p.podcast-episode-card-title {
  font-weight: 600;
}

.euka-podcast-slider-view-all {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.euka-podcast-slider-view-all a {
  background-color: #2B2C3D;
  color: #FFFFFF;
  border-radius: 12px;
  padding: 14px 19px;
}

.euka-podcast-expander-container {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease-in-out;
}

#podcast-vip-signup > div,
#podcast-learn-more > div {
  max-width: 100%;
  width: 100%;
  margin: 3rem 0;
}

#podcast-vip-signup > div > .wp-block-group,
#podcast-learn-more > div > .wp-block-group {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
}

#podcast-vip-signup > div .wp-block-group__inner-container {
  max-width: 954px;
  padding: 0
}

#podcast-vip-signup h2,
#podcast-vip-signup p {
  text-align: center;
  margin-bottom: 1.5rem;
}

#podcast-learn-more {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

#podcast-learn-more > div .wp-block-group__inner-container {
  padding: 0;
}

#podcast-learn-more > div > .wp-block-group {
  padding: 0 2rem;
  height: 12rem;
}

#podcast-learn-more > div > .wp-block-group h2 {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

#podcast-learn-more > div > .wp-block-group .wp-block-group {
  max-width: fit-content;
  padding: 0;
  gap: 8vw;
}

#podcast-learn-more > div > .wp-block-group figure {
  padding: 0;
}

#podcast-learn-more > div > .wp-block-group .wp-block-image {
  max-width: 334px;
}

#podcast-learn-more > div > .wp-block-group .wp-block-group .wp-block-buttons {
  gap: 1rem;
}

@media (max-width: 48em) {
  #podcast-learn-more > div > .wp-block-group {
    height: fit-content;
  }
}

@media (max-width: 37.5em) {
  #podcast-learn-more > div > .wp-block-group .wp-block-group {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 1rem;
  }

  #podcast-vip-signup > div, #podcast-learn-more > div {
    margin: 0;
  }

  #podcast-learn-more > div > .wp-block-group .wp-block-group h2 {
    text-align: center;
  }

  #podcast-learn-more > div > .wp-block-group .wp-block-group .wp-block-buttons {
    justify-content: center;
  }

  #podcast-learn-more > div > .wp-block-group .wp-block-group .wp-block-image {
    max-width: 16rem;
  }

  .podcast-container-flex-row {
    flex-direction: column;
    gap: 4rem;
  }  
}
/* === END: Euka podcast elements shared === */


/* === START: Euka podcast homepage === */
.page-template-podcast-hompage #page-content .wp-block-cover {
  min-height: 0;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 2rem;
}

.page-template-podcast-hompage #page-content h1 {
  margin-bottom: 1rem;
  color: #2B2C3C
}

.page-template-podcast-hompage #page-content p {
  color: #2B2C3C
}

#podcast-page-featured-episode {
  padding: 3rem 0;
}


#podcast-page-featured-episode .podcast-featured-heading h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

#podcast-page-featured-episode .podcast-featured-heading p {
  margin-bottom: 2rem;
}

#podcast-featured-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

#podcast-featured-read-more {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

#podcast-featured-read-more p {
  font-family: "Infini";
  font-size: 18px;
  font-weight: 700;
  position: relative;
  margin: 0;
  text-wrap: nowrap;
}

#podcast-featured-read-more img {
  max-width: 0.75rem;
  rotate: 180deg;
  transition: rotate 0.25s ease-in-out;
}

.euka-podcast-expander-is-expanded #podcast-featured-read-more img {
  rotate: 0deg;
}

.euka-podcast-expander-container {
  margin-top: 1rem;
}

#podcast-featured-footer #podcast-subscribe-links {
  width: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

#podcast-featured-footer #podcast-subscribe-links p {
  margin: 0;
  font-family: "Infini";
  font-size: 18px;
  font-weight: 700;
}

#podcast-featured-footer #podcast-subscribe-links img {
  width: 100%;
  max-height: 2rem;
}

#podcast-featured-hosts > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#podcast-featured-hosts > div > .wp-block-group {
  align-items: flex-start;
  gap: 2rem;
}

#podcast-featured-hosts > div > .wp-block-group > figure,
#podcast-featured-hosts > div > .wp-block-group > .wp-block-group {
  width: 50%;
  padding: 0;
  margin: 0;
}

#podcast-featured-hosts > div > .wp-block-group > .wp-block-image {
  max-width: 460px;
}

#podcast-featured-hosts > div > .wp-block-group > .wp-block-image img {
  width: 100%;
  border-radius: 2rem;
}

#podcast-featured-hosts h2 {
  margin-bottom: 1rem;
}

#podcast-featured-hosts .podcast-host-socials {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

#podcast-featured-hosts .podcast-host-socials p {
  font-family: "Infini";
  font-size: 14px;
  font-weight: 700;
}


#podcast-featured-hosts .podcast-host-socials figure {
  padding: 0;
}

#podcast-featured-hosts .podcast-host-socials img {
  max-width: 2rem;
}

.euka-podcast-expander-content p {
  margin-bottom: 1rem;
}

.page-template-podcast-hompage #podcast-page-platforms {
  margin-top: 5rem;
}

.page-template-podcast-hompage #podcast-page-socials {
  margin-top: 3rem;
}

@media (max-width: 64em) {
  .page-template-podcast-hompage #page-content .wp-block-cover {
    padding-top: 120px;
  }
}

@media (max-width: 48em) {
  #podcast-featured-hosts > div {
    gap: 4rem;
  }

  #podcast-featured-hosts > div > .wp-block-group {
    flex-direction: column;
  }

  #podcast-featured-hosts > div > .wp-block-group > figure,
  #podcast-featured-hosts > div > .wp-block-group > .wp-block-group {
    width: 100%;
    order: 2;
  }

  #podcast-featured-hosts > div > .wp-block-group > figure {
    order: 1;
    margin: 0 auto;
  }
}

@media (max-width: 37.5em) {
  #podcast-featured-footer {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 2rem;
  }

  #podcast-featured-footer #podcast-subscribe-links {
    margin: 0 auto;
  }
}
/* === END: Euka podcast homepage === */


/* === START: Euka podcast 'single' post template === */
.single-podcast #page-content {
  position: relative;
}

.single-podcast #podcast-page-header > div {
  padding: 0 1rem;
}

.single-podcast #podcast-page-header::before {
  content: "";
  background: #F7D44F;
  height: 21rem;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
}

.single-podcast #podcast-page-header h1 {
  margin-bottom: 2rem;
}

.single-podcast #podcast-single-content {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.single-podcast #podcast-single-transcript {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
                                                      
.single-podcast #podcast-single-transcript h4 {
  margin-bottom: 1.5rem;
}

.single-podcast #podcast-single-transcript .podcast-transcript-container {
  line-height: 2ex;
  max-height: 27ex;
  overflow: hidden;
}

.single-podcast #podcast-transcript-read-more {
  margin-top: 2rem;
  text-decoration: underline;
  opacity: 1;
  transition: opacity 0.25s ease-in-out, margin 0.25s ease-in-out;
}

.single-podcast .euka-podcast-expander-is-expanded #podcast-transcript-read-more {
  margin-top: 0;
  opacity: 0;
  cursor: default;
}

.single-podcast #episode-transcript .euka-podcast-expander {
  transition: margin 0.25s ease-in-out;
}

.single-podcast #episode-transcript .euka-podcast-expander-is-expanded {
  margin-bottom: -2rem;
}

.single-podcast #podcast-single-hosts {
  padding: 2rem;
}

.single-podcast #podcast-single-hosts h2 {
  margin-bottom: 0;
}

.single-podcast #podcast-single-hosts div {
  padding: 0;
  gap: 0;
}

.single-podcast #podcast-single-hosts > div {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.single-podcast #podcast-single-hosts > div > div {
  margin-bottom: 2rem;
  align-items: flex-start;
  gap: 2rem;
}

.single-podcast #podcast-single-hosts h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.single-podcast #podcast-single-hosts p {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.single-podcast #podcast-single-hosts .podcast-host-profile-picture {
  margin: 0;
  padding: 0;
}

.single-podcast #podcast-single-hosts .podcast-host-profile-picture img {
  max-width: 264px;
  border-radius: 2rem;
}

.single-podcast #podcast-single-hosts .podcast-host-socials {
  margin: 0;
  padding: 0;
  gap: 1rem;
}

.single-podcast #podcast-single-hosts .podcast-host-socials figure {
  padding: 0;
}

.single-podcast #podcast-single-hosts .podcast-host-socials figure a {
  width: fit-content;
  height: fit-content;
  transform: 0;
}

.single-podcast #podcast-single-hosts .podcast-host-socials figure img {
  max-width: 2rem;
}

@media (max-width: 48em) {
  #podcast-single-hosts > div > div.wp-block-group {
    flex-direction: column;
    align-items: center;
  }

  #podcast-single-hosts > div > div.wp-block-group .podcast-host-socials {
    margin: 0 auto;
  }
}
/* === END: Euka podcast 'single' post template === */


/* === START: Geolocation redirection modal ===  */
.pum-theme-geolocation-redirect-modal .pum-container .euka-geo-modal {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
}

.pum-theme-geolocation-redirect-modal .pum-container .euka-geo-modal-heading-container {
  height: fit-content;
}

.pum-theme-geolocation-redirect-modal .pum-container h2 {
  text-align: left;
  align-self: flex-start;
  font-size: 3.25rem;
  margin-bottom: 0;
}

.pum-theme-geolocation-redirect-modal .pum-container .euka-geo-modal-text-container {
  font-weight: 400;
}

.pum-theme-geolocation-redirect-modal .pum-container .euka-geo-modal-subtext-container {
  font-weight: 300;
  text-align: center;
}

.pum-theme-geolocation-redirect-modal .pum-container .euka-geo-modal-button-container {
  display: flex;
  margin-top: 1rem;
}

.pum-theme-geolocation-redirect-modal .pum-container .euka-geo-button-external {
  font-family: 'infini';
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  background: #2B2C3C;
  padding: 1rem 1.75rem;
  border-radius: 1rem;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.pum-theme-geolocation-redirect-modal .pum-container .euka-geo-button-external:hover {
  opacity: 0.85;
}

.pum-theme-geolocation-redirect-modal .pum-container .euka-geo-button-stay {
  font-weight: 300;
  text-decoration: underline;
  color: #2B2C3C;
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}

.pum-theme-geolocation-redirect-modal .pum-container .euka-geo-button-stay:hover {
  opacity: 0.85;
}

.pum-theme-geolocation-redirect-modal .pum-container {
  padding: 4rem;
  transition: padding 0.25s ease-in-out;
}

@media (max-width: 48rem) {
  .pum-theme-geolocation-redirect-modal .pum-container {
      width: calc(100% - 2rem) !important;
      padding: 2rem 1rem;
  }

  .pum-theme-geolocation-redirect-modal .pum-container h2 {
      font-size: 3rem;
  }
}
/* === END: Geolocation redirection modal ===  */


/* === START: Media from link banner in the Contact us page === */
.pr-media-banner {
  padding: 18px 40px 26px !important;
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22451%22%20height%3D%22140%22%20viewBox%3D%220%200%20451%20140%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M450.749%20-121.969L441.965%20-91.5812L434.269%20-60.6428L424.795%20-30.3598L411.163%20-1.61445L403.195%2029.2249L390.617%2058.3609L383.922%2089.6705L369.925%20118.28L362.723%20149.405L353.155%20179.653L343.971%20210.047L335.16%20242.031L307.283%20226.448L277.387%20221.354L249.15%20211.098L220.87%20200.971L193.18%20189.013L165.042%20178.445L138.194%20163.869L108.727%20157.439L80.3272%20147.686L53.3342%20133.557L25.5355%20121.922L1.20482e-05%20114.943L21.637%2098.4666L50.0368%2088.1441L76.4362%2073.4305L102.944%2058.9519L130.179%2046.074L155.118%2028.1493L181.953%2014.3885L211.841%207.33655L236.053%20-12.1943L263.618%20-24.3518L291.472%20-35.8672L318.725%20-48.7106L344.731%20-64.2978L372.243%20-76.575L396.434%20-96.1556L423.983%20-108.361L450.749%20-121.969Z%22%20fill%3D%22%23F2BDA2%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
}
.pr-media-banner__label {
  margin-bottom: 9px;
}

@media (min-width: 64em) {
  .wp-block-bjm-blocks-blocks .wrapper-bjm-blocks.columns-1 .wp-block-bjm-blocks-block.pr-media-banner {
    margin-left: 10px;
    margin-right: 10px;
  }
}
/* === End: Media from link banner in the Contact us page === */

/* === Start WP core update and plugin update related issue - css hot fix  (by AKR)*/
/*apply depreacated button hover color */
.wp-block-button__link:active, .wp-block-button__link:focus, .wp-block-button__link:hover, .wp-block-button__link:visited {
  color: #fff;
}

/* fallback style rule for flex block/button */
.wp-block-buttons[class*="wp-container-core-buttons-is-layout-"] {
  display: flex;
  flex-wrap: wrap;
}

/*fallback style rule for flex core/columns */
.wp-block-columns.has-simple-padding-default.wp-block-columns-is-layout-flex[class*="wp-container-core-columns-is-layout-"]{
  gap:2em;
  display:flex;
}
/* fix for the learn more block*/
div#podcast-learn-more > div > div >.wp-block-group__inner-container.is-layout-flow.wp-block-group-is-layout-flow { position:absolute; }
#podcast-learn-more > div > .wp-block-group .wp-block-group{align-items: center;}

/* Fix for submenu item text wrap issue */
.menu-main-menu-container .main-menu .sub-menu li {max-width:100%;}
/* === End WP core update and plugin update related issue - css hot fix  (by AKR)*/

/* Retire 'Real Stories' post type - SEO-48 */
/* === Wrapper for Family Cards === */
.bjm-cards-wrapper.families .cell.cell-card {
  height: 500px !important;
}

@media print,
screen and (max-width: 63.99875em) {
  .bjm-cards-wrapper.families .cell.cell-card {
    height: auto !important;
  }
}

.bjm-cards-wrapper.families .card-inner {
  position: relative;
}

@media print,
screen and (min-width: 64em) {
  .bjm-cards-wrapper.families .card-inner {
    display: flex;
    flex-direction: row !important;;
  }
}

.bjm-cards-wrapper.families .card-inner .card-image {
  order: 2;
  flex: 1 0 50%;
  border-radius: 0;
}

@media print,
screen and (max-width: 63.99875em) {
  .bjm-cards-wrapper.families .card-inner .card-image {
    height: 200px;
    border-radius: 10px;
  }
}

.bjm-cards-wrapper.families .card-inner .card-image::after {
  display: flex !important;
  opacity: 0;
  content: "\f067";
  width: 100px;
  height: 100px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
  background-image: url(../images/quarter-circle.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  font-size: 2rem;
  transition: opacity 0.25s cubic-bezier(0.77, 0, 0.18, 1);
}

.bjm-cards-wrapper.families .card-inner .card-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
  padding-right: 30px;
}

@media print,
screen and (min-width: 64em) {
  .bjm-cards-wrapper.families .card-inner .card-content {
    padding-left: 80px;
    padding-right: 80px;
  }
}

.bjm-cards-wrapper.families .card-inner .card-content .card-category {
  font-weight: normal;
  font-size: 1rem;
  font-family: "inter", sans-serif;
}

.bjm-cards-wrapper.families .card-inner .card-content .card-category:after {
  content: none;
}

.bjm-cards-wrapper.families .card-inner .card-content .card-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 10px;
}

@media print,
screen and (min-width: 64em) {
  .bjm-cards-wrapper.families .card-inner .card-content .card-title {
    margin-top: 30px;
  }
}

.bjm-cards-wrapper.families .card-inner .card-read-more {
  display: none;
}

.bjm-cards-wrapper.families .card-inner .card-read-more-inline {
  margin-top: 30px;
}

.bjm-cards-wrapper.families .cover-link:hover + .card-inner .card-image::after,
.bjm-cards-wrapper.families .cell.cell-card:focus-within .card-inner .card-image::after {
  opacity: 1;
}

/* Grid override for 3-column layout */
.bjm-cards-wrapper.families.large-up-3 .cell.cell-card {
  height: auto !important;
}

.bjm-cards-wrapper.families.large-up-3 .cell.cell-card .card-image {
  order: -1;
  height: 200px;
  flex-basis: auto;
}

.bjm-cards-wrapper.families.large-up-3 .cell.cell-card .card-inner {
  flex-direction: column;
}

.bjm-cards-wrapper.families.large-up-3 .cell.cell-card .card-inner .card-content {
  width: 100%;
  padding: 23px;
}

.bjm-cards-wrapper.families.large-up-3 .cell.cell-card .card-inner .card-content .card-title {
  margin-top: 10px;
}
/* Ends -- Retire 'Real Stories' post type - SEO-48 */
