@charset "UTF-8";
/* Base variables, mixins and utility classes ********************************/
/** https://www.joshwcomeau.com/css/custom-css-reset/ */
/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
/*
  Typographic tweaks!
  3. Improve text rendering
*/
body {
  -webkit-font-smoothing: antialiased;
}

/*
  4. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  5. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
  6. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*
  7. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

.screen-reader-only,
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.hidden,
.visually-hidden {
  position: absolute !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; /* added line */
  margin: 0 !important;
  padding: 0 !important;
}

.text-decoration,
.underline {
  text-decoration-color: color-mix(in srgb, currentColor 33%, transparent);
  text-decoration-line: underline;
  text-decoration-thickness: 0.1em;
  text-decoration-style: solid;
  text-underline-offset: 1.5px;
}
.text-decoration:hover,
.underline:hover {
  text-decoration-color: color-mix(in srgb, currentColor 100%, transparent);
}

.clear::after,
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.columns,
.has-columns {
  display: columns;
  -moz-column-gap: var(--wp--preset--spacing--30, 3em);
       column-gap: var(--wp--preset--spacing--30, 3em);
}
@media (min-width: 601px) {
  .columns.columns-1, .columns.has-1-columns,
  .has-columns.columns-1,
  .has-columns.has-1-columns {
    -moz-column-count: 1;
         column-count: 1;
  }
  .columns.columns-2, .columns.has-2-columns,
  .has-columns.columns-2,
  .has-columns.has-2-columns {
    -moz-column-count: 2;
         column-count: 2;
  }
  .columns.columns-3, .columns.has-3-columns,
  .has-columns.columns-3,
  .has-columns.has-3-columns {
    -moz-column-count: 3;
         column-count: 3;
  }
  .columns.columns-4, .columns.has-4-columns,
  .has-columns.columns-4,
  .has-columns.has-4-columns {
    -moz-column-count: 4;
         column-count: 4;
  }
  .columns.columns-5, .columns.has-5-columns,
  .has-columns.columns-5,
  .has-columns.has-5-columns {
    -moz-column-count: 5;
         column-count: 5;
  }
  .columns.columns-6, .columns.has-6-columns,
  .has-columns.columns-6,
  .has-columns.has-6-columns {
    -moz-column-count: 6;
         column-count: 6;
  }
  .columns.columns-7, .columns.has-7-columns,
  .has-columns.columns-7,
  .has-columns.has-7-columns {
    -moz-column-count: 7;
         column-count: 7;
  }
  .columns.columns-8, .columns.has-8-columns,
  .has-columns.columns-8,
  .has-columns.has-8-columns {
    -moz-column-count: 8;
         column-count: 8;
  }
  .columns.columns-9, .columns.has-9-columns,
  .has-columns.columns-9,
  .has-columns.has-9-columns {
    -moz-column-count: 9;
         column-count: 9;
  }
  .columns.columns-10, .columns.has-10-columns,
  .has-columns.columns-10,
  .has-columns.has-10-columns {
    -moz-column-count: 10;
         column-count: 10;
  }
  .columns.columns-11, .columns.has-11-columns,
  .has-columns.columns-11,
  .has-columns.has-11-columns {
    -moz-column-count: 11;
         column-count: 11;
  }
  .columns.columns-12, .columns.has-12-columns,
  .has-columns.columns-12,
  .has-columns.has-12-columns {
    -moz-column-count: 12;
         column-count: 12;
  }
}

.column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.column > * {
  flex: 1 0;
}
.column + .column {
  margin-top: var(--wp--preset--spacing--30, 3em);
}

.row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.row > * {
  flex: 1 0;
}
.row + .row {
  margin-top: var(--wp--preset--spacing--30, 3em);
}
.row > .row + .row {
  margin-top: 0;
}

.grid {
  display: grid;
  gap: var(--wp--preset--spacing--30, 3em);
  list-style: none;
  margin: 0 !important;
  padding: 0;
}
@media (min-width: 601px) {
  .grid.columns-1, .grid.has-1-columns {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid.has-1-rows {
    grid-template-rows: repeat(1, 1fr);
  }
  .grid.columns-2, .grid.has-2-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.has-2-rows {
    grid-template-rows: repeat(2, 1fr);
  }
  .grid.columns-3, .grid.has-3-columns {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.has-3-rows {
    grid-template-rows: repeat(3, 1fr);
  }
  .grid.columns-4, .grid.has-4-columns {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.has-4-rows {
    grid-template-rows: repeat(4, 1fr);
  }
  .grid.columns-5, .grid.has-5-columns {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.has-5-rows {
    grid-template-rows: repeat(5, 1fr);
  }
  .grid.columns-6, .grid.has-6-columns {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.has-6-rows {
    grid-template-rows: repeat(6, 1fr);
  }
  .grid.columns-7, .grid.has-7-columns {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid.has-7-rows {
    grid-template-rows: repeat(7, 1fr);
  }
  .grid.columns-8, .grid.has-8-columns {
    grid-template-columns: repeat(8, 1fr);
  }
  .grid.has-8-rows {
    grid-template-rows: repeat(8, 1fr);
  }
  .grid.columns-9, .grid.has-9-columns {
    grid-template-columns: repeat(9, 1fr);
  }
  .grid.has-9-rows {
    grid-template-rows: repeat(9, 1fr);
  }
  .grid.columns-10, .grid.has-10-columns {
    grid-template-columns: repeat(10, 1fr);
  }
  .grid.has-10-rows {
    grid-template-rows: repeat(10, 1fr);
  }
  .grid.columns-11, .grid.has-11-columns {
    grid-template-columns: repeat(11, 1fr);
  }
  .grid.has-11-rows {
    grid-template-rows: repeat(11, 1fr);
  }
  .grid.columns-12, .grid.has-12-columns {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid.has-12-rows {
    grid-template-rows: repeat(12, 1fr);
  }
}

.responsive-table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.styled-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 0 0 var(--wp--preset--spacing--30, 3em);
  background-color: transparent;
}
.styled-table tbody tr td,
.styled-table tbody tr th,
.styled-table thead tr td,
.styled-table thead tr th {
  padding: var(--wp--preset--spacing--30, 3em);
  text-align: left;
}
.styled-table tbody tr th,
.styled-table thead tr th {
  white-space: nowrap;
  padding: var(--wp--preset--spacing--20, 2em) var(--wp--preset--spacing--30, 3em);
  line-height: 1.2;
  font-size: var(--wp--preset--font-size--small, 0.889rem);
  font-weight: 500;
}
.styled-table tbody tr:nth-of-type(even) td {
  background-color: #f5f5f5;
}
.styled-table tbody tr:nth-of-type(even) td:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.styled-table tbody tr:nth-of-type(even) td:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.styled-table thead tr th {
  border-bottom: 1px solid color-mix(in srgb, #000 10%, transparent);
}

.comma-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin-left: 0 !important;
  padding: 0 !important;
}
.comma-list li {
  margin: 0;
}
.comma-list li::before {
  display: none !important;
}
.comma-list li:not(:last-of-type)::after {
  content: ", ";
  white-space: pre;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wp--preset--spacing--20, 2em);
  list-style-type: none;
  margin-left: 0 !important;
  padding: 0 !important;
}

.styled-list {
  padding-left: var(--wp--preset--spacing--30, 3em);
}
.styled-list li {
  position: relative;
}
.styled-list li::before, .styled-list li::marker {
  color: color-mix(in srgb, currentColor 50%, transparent);
}
.styled-list li::marker {
  content: "\eb0b  ";
  font-family: "Nucleo";
  font-size: 12px;
}

* {
  -webkit-font-smoothing: antialiased;
}

.styled-link {
  min-height: 44px;
  align-content: center;
  color: currentColor;
  text-decoration-color: color-mix(in srgb, color-mix(in srgb, currentColor 50%, transparent) 50%, transparent);
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.125em;
  transition: text-decoration-color 0.2s ease-in-out;
}
.styled-link:hover, .styled-link:focus {
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.125em;
}

.h,
.heading {
  color: var(--wp--preset--color--accent-2);
  font-family: var(--wp--preset--font-family--roboto);
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
}

.medium-weight {
  font-weight: 500;
}

.bold,
.strong {
  font-weight: 700;
}

.sm,
.small {
  font-size: var(--wp--preset--font-size--small, 0.889rem);
}

.md,
.medium {
  font-size: var(--wp--preset--font-size--medium, 1.266rem);
}

.lg,
.large {
  font-size: var(--wp--preset--font-size--large, 1.602rem);
}

.xl {
  font-size: var(--wp--preset--font-size--x-large, 1.802rem);
}

/*--------------------------------

Nucleo icon font
Generated using nucleoapp.com

-------------------------------- */
@font-face {
  font-family: "Nucleo";
  src: url("../../fonts/Nucleo.eot");
  src: url("../../fonts/Nucleo.eot") format("embedded-opentype"), url("../../fonts/Nucleo.woff2") format("woff2"), url("../../fonts/Nucleo.woff") format("woff"), url("../../fonts/Nucleo.ttf") format("truetype"), url("../../fonts/Nucleo.svg") format("svg");
}
/* base class */
.icon {
  display: inline-block;
  font: normal normal normal 1em/1 "Nucleo";
  color: inherit;
  flex-shrink: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* size examples - relative units */
.icon-sm {
  font-size: 0.8em;
}

.icon-lg {
  font-size: 1.2em;
}

/* size examples - absolute units */
.icon-16 {
  font-size: 16px;
}

.icon-32 {
  font-size: 32px;
}

/* rotate the icon infinitely */
.icon-is-spinning {
  animation: icon-spin 1s infinite linear;
}

@keyframes icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* transform */
.icon-rotate-90 {
  transform: rotate(90deg);
}

.icon-rotate-180 {
  transform: rotate(180deg);
}

.icon-rotate-270 {
  transform: rotate(270deg);
}

.icon-flip-y {
  transform: scaleY(-1);
}

.icon-flip-x {
  transform: scaleX(-1);
}

/* icons */
.icon-accessibility::before {
  content: "\ea01";
}

.icon-accessibility-2::before {
  content: "\ea02";
}

.icon-alarm-clock::before {
  content: "\ea03";
}

.icon-alarm-clock-2::before {
  content: "\ea04";
}

.icon-align-3-bottom::before {
  content: "\ea05";
}

.icon-align-3-bottom-2::before {
  content: "\ea06";
}

.icon-align-3-horizontal::before {
  content: "\ea07";
}

.icon-align-3-horizontal-2::before {
  content: "\ea08";
}

.icon-align-3-left::before {
  content: "\ea09";
}

.icon-align-3-left-2::before {
  content: "\ea0a";
}

.icon-align-3-right::before {
  content: "\ea0b";
}

.icon-align-3-right-2::before {
  content: "\ea0c";
}

.icon-align-3-top::before {
  content: "\ea0d";
}

.icon-align-3-top-2::before {
  content: "\ea0e";
}

.icon-align-3-vertical::before {
  content: "\ea0f";
}

.icon-align-3-vertical-2::before {
  content: "\ea10";
}

.icon-anchor::before {
  content: "\ea11";
}

.icon-anchor-2::before {
  content: "\ea12";
}

.icon-arrow-door-in::before {
  content: "\ea13";
}

.icon-arrow-door-in-2::before {
  content: "\ea14";
}

.icon-arrow-door-out-3::before {
  content: "\ea15";
}

.icon-arrow-door-out-3-2::before {
  content: "\ea16";
}

.icon-arrow-dotted-rotate-anticlockwise::before {
  content: "\ea17";
}

.icon-arrow-dotted-rotate-anticlockwise-2::before {
  content: "\ea18";
}

.icon-aspect-ratio-square-2::before {
  content: "\ea19";
}

.icon-aspect-ratio-square-2-2::before {
  content: "\ea1a";
}

.icon-at-sign::before {
  content: "\ea1b";
}

.icon-at-sign-2::before {
  content: "\ea1c";
}

.icon-award::before {
  content: "\ea1d";
}

.icon-award-2::before {
  content: "\ea1e";
}

.icon-award-certificate::before {
  content: "\ea1f";
}

.icon-award-certificate-2::before {
  content: "\ea20";
}

.icon-bag-shopping::before {
  content: "\ea21";
}

.icon-bag-shopping-2::before {
  content: "\ea22";
}

.icon-ball-basket::before {
  content: "\ea23";
}

.icon-ball-basket-2::before {
  content: "\ea24";
}

.icon-basket-shopping::before {
  content: "\ea25";
}

.icon-basket-shopping-2::before {
  content: "\ea26";
}

.icon-battery::before {
  content: "\ea27";
}

.icon-battery-2::before {
  content: "\ea28";
}

.icon-battery-high::before {
  content: "\ea29";
}

.icon-battery-high-2::before {
  content: "\ea2a";
}

.icon-bell::before {
  content: "\ea2b";
}

.icon-bell-2::before {
  content: "\ea2c";
}

.icon-bicycle::before {
  content: "\ea2d";
}

.icon-bicycle-2::before {
  content: "\ea2e";
}

.icon-bolt::before {
  content: "\ea2f";
}

.icon-bolt-2::before {
  content: "\ea30";
}

.icon-bolt-lightning::before {
  content: "\ea31";
}

.icon-bolt-lightning-2::before {
  content: "\ea32";
}

.icon-bolt-slash::before {
  content: "\ea33";
}

.icon-bolt-slash-2::before {
  content: "\ea34";
}

.icon-book-bookmark::before {
  content: "\ea35";
}

.icon-book-bookmark-2::before {
  content: "\ea36";
}

.icon-book-open::before {
  content: "\ea37";
}

.icon-book-open-2::before {
  content: "\ea38";
}

.icon-bookmark::before {
  content: "\ea39";
}

.icon-bookmark-2::before {
  content: "\ea3a";
}

.icon-bookmark-slash::before {
  content: "\ea3b";
}

.icon-bookmark-slash-2::before {
  content: "\ea3c";
}

.icon-bookmarks::before {
  content: "\ea3d";
}

.icon-bookmarks-2::before {
  content: "\ea3e";
}

.icon-box::before {
  content: "\ea3f";
}

.icon-box-2::before {
  content: "\ea40";
}

.icon-box-archive::before {
  content: "\ea41";
}

.icon-box-archive-2::before {
  content: "\ea42";
}

.icon-bug::before {
  content: "\ea43";
}

.icon-bug-2::before {
  content: "\ea44";
}

.icon-bug-slash::before {
  content: "\ea45";
}

.icon-bug-slash-2::before {
  content: "\ea46";
}

.icon-bullhorn::before {
  content: "\ea47";
}

.icon-bullhorn-2::before {
  content: "\ea48";
}

.icon-calendar::before {
  content: "\ea49";
}

.icon-calendar-2::before {
  content: "\ea4a";
}

.icon-calendar-days::before {
  content: "\ea4b";
}

.icon-calendar-days-2::before {
  content: "\ea4c";
}

.icon-camera::before {
  content: "\ea4d";
}

.icon-camera-2::before {
  content: "\ea4e";
}

.icon-camera-2-2::before {
  content: "\ea4f";
}

.icon-camera-3::before {
  content: "\ea50";
}

.icon-cart-shopping::before {
  content: "\ea51";
}

.icon-cart-shopping-2::before {
  content: "\ea52";
}

.icon-chair-4::before {
  content: "\ea53";
}

.icon-chair-4-2::before {
  content: "\ea54";
}

.icon-chart-bar-trend-up::before {
  content: "\ea55";
}

.icon-chart-bar-trend-up-2::before {
  content: "\ea56";
}

.icon-check::before {
  content: "\ea57";
}

.icon-check-2::before {
  content: "\ea58";
}

.icon-chevron-down::before {
  content: "\ea59";
}

.icon-chevron-down-2::before {
  content: "\ea5a";
}

.icon-chevron-expand-y::before {
  content: "\ea5b";
}

.icon-chevron-expand-y-2::before {
  content: "\ea5c";
}

.icon-chevron-left::before {
  content: "\ea5d";
}

.icon-chevron-left-2::before {
  content: "\ea5e";
}

.icon-chevron-right::before {
  content: "\ea5f";
}

.icon-chevron-right-2::before {
  content: "\ea60";
}

.icon-chevron-up::before {
  content: "\ea61";
}

.icon-chevron-up-2::before {
  content: "\ea62";
}

.icon-circle-compose-2::before {
  content: "\ea63";
}

.icon-circle-compose-2-2::before {
  content: "\ea64";
}

.icon-circle-half-dotted-check::before {
  content: "\ea65";
}

.icon-circle-half-dotted-check-2::before {
  content: "\ea66";
}

.icon-circle-hashtag::before {
  content: "\ea67";
}

.icon-circle-hashtag-2::before {
  content: "\ea68";
}

.icon-circle-info::before {
  content: "\ea69";
}

.icon-circle-info-2::before {
  content: "\ea6a";
}

.icon-clipboard::before {
  content: "\ea6b";
}

.icon-clipboard-2::before {
  content: "\ea6c";
}

.icon-clipboard-check::before {
  content: "\ea6d";
}

.icon-clipboard-check-2::before {
  content: "\ea6e";
}

.icon-clipboard-slash::before {
  content: "\ea6f";
}

.icon-clipboard-slash-2::before {
  content: "\ea70";
}

.icon-cloud::before {
  content: "\ea71";
}

.icon-cloud-2::before {
  content: "\ea72";
}

.icon-computer::before {
  content: "\ea73";
}

.icon-computer-2::before {
  content: "\ea74";
}

.icon-cookie::before {
  content: "\ea75";
}

.icon-cookie-2::before {
  content: "\ea76";
}

.icon-credit-card::before {
  content: "\ea77";
}

.icon-credit-card-2::before {
  content: "\ea78";
}

.icon-crosshairs::before {
  content: "\ea79";
}

.icon-crosshairs-2::before {
  content: "\ea7a";
}

.icon-crosshairs-slash::before {
  content: "\ea7b";
}

.icon-crosshairs-slash-2::before {
  content: "\ea7c";
}

.icon-cryptography::before {
  content: "\ea7d";
}

.icon-cryptography-2::before {
  content: "\ea7e";
}

.icon-dark-light::before {
  content: "\ea7f";
}

.icon-dark-light-2::before {
  content: "\ea80";
}

.icon-descending-sorting::before {
  content: "\ea81";
}

.icon-descending-sorting-2::before {
  content: "\ea82";
}

.icon-desktop-arrow-down::before {
  content: "\ea83";
}

.icon-desktop-arrow-down-2::before {
  content: "\ea84";
}

.icon-draw-compass::before {
  content: "\ea85";
}

.icon-draw-compass-2::before {
  content: "\ea86";
}

.icon-earth::before {
  content: "\ea87";
}

.icon-earth-2::before {
  content: "\ea88";
}

.icon-envelope::before {
  content: "\ea89";
}

.icon-envelope-2::before {
  content: "\ea8a";
}

.icon-envelope-open::before {
  content: "\ea8b";
}

.icon-envelope-open-2::before {
  content: "\ea8c";
}

.icon-eye-closed::before {
  content: "\ea8d";
}

.icon-eye-closed-2::before {
  content: "\ea8e";
}

.icon-eye-open::before {
  content: "\ea8f";
}

.icon-eye-open-2::before {
  content: "\ea90";
}

.icon-face-plus::before {
  content: "\ea91";
}

.icon-face-plus-2::before {
  content: "\ea92";
}

.icon-face-smile-2::before {
  content: "\ea93";
}

.icon-face-smile-2-2::before {
  content: "\ea94";
}

.icon-facial-recognition::before {
  content: "\ea95";
}

.icon-facial-recognition-2::before {
  content: "\ea96";
}

.icon-feather::before {
  content: "\ea97";
}

.icon-feather-2::before {
  content: "\ea98";
}

.icon-file::before {
  content: "\ea99";
}

.icon-file-2::before {
  content: "\ea9a";
}

.icon-file-content::before {
  content: "\ea9b";
}

.icon-file-content-2::before {
  content: "\ea9c";
}

.icon-files-2::before {
  content: "\ea9d";
}

.icon-files-2-2::before {
  content: "\ea9e";
}

.icon-film::before {
  content: "\ea9f";
}

.icon-film-2::before {
  content: "\eaa0";
}

.icon-filter::before {
  content: "\eaa1";
}

.icon-filter-2::before {
  content: "\eaa2";
}

.icon-filters::before {
  content: "\eaa3";
}

.icon-filters-2::before {
  content: "\eaa4";
}

.icon-fingerprint::before {
  content: "\eaa5";
}

.icon-fingerprint-2::before {
  content: "\eaa6";
}

.icon-flag-7::before {
  content: "\eaa7";
}

.icon-flag-7-2::before {
  content: "\eaa8";
}

.icon-flame::before {
  content: "\eaa9";
}

.icon-flame-2::before {
  content: "\eaaa";
}

.icon-folder::before {
  content: "\eaab";
}

.icon-folder-2::before {
  content: "\eaac";
}

.icon-folder-open::before {
  content: "\eaad";
}

.icon-folder-open-2::before {
  content: "\eaae";
}

.icon-forklift::before {
  content: "\eaaf";
}

.icon-forklift-2::before {
  content: "\eab0";
}

.icon-gamepad::before {
  content: "\eab1";
}

.icon-gamepad-2::before {
  content: "\eab2";
}

.icon-gaming-buttons::before {
  content: "\eab3";
}

.icon-gaming-buttons-2::before {
  content: "\eab4";
}

.icon-gas-pump::before {
  content: "\eab5";
}

.icon-gas-pump-2::before {
  content: "\eab6";
}

.icon-gauge-3::before {
  content: "\eab7";
}

.icon-gauge-3-2::before {
  content: "\eab8";
}

.icon-gear-2::before {
  content: "\eab9";
}

.icon-gear-2-2::before {
  content: "\eaba";
}

.icon-gem-sparkle::before {
  content: "\eabb";
}

.icon-gem-sparkle-2::before {
  content: "\eabc";
}

.icon-gift::before {
  content: "\eabd";
}

.icon-gift-2::before {
  content: "\eabe";
}

.icon-globe-pointer::before {
  content: "\eabf";
}

.icon-globe-pointer-2::before {
  content: "\eac0";
}

.icon-graduation-cap::before {
  content: "\eac1";
}

.icon-graduation-cap-2::before {
  content: "\eac2";
}

.icon-grid-circle-plus::before {
  content: "\eac3";
}

.icon-grid-circle-plus-2::before {
  content: "\eac4";
}

.icon-half-dotted-circle-play::before {
  content: "\eac5";
}

.icon-half-dotted-circle-play-2::before {
  content: "\eac6";
}

.icon-hand::before {
  content: "\eac7";
}

.icon-hand-2::before {
  content: "\eac8";
}

.icon-handshake::before {
  content: "\eac9";
}

.icon-handshake-2::before {
  content: "\eaca";
}

.icon-headset::before {
  content: "\eacb";
}

.icon-headset-2::before {
  content: "\eacc";
}

.icon-heart::before {
  content: "\eacd";
}

.icon-heart-2::before {
  content: "\eace";
}

.icon-heart-hand::before {
  content: "\eacf";
}

.icon-heart-hand-2::before {
  content: "\ead0";
}

.icon-hot-drink::before {
  content: "\ead1";
}

.icon-hot-drink-2::before {
  content: "\ead2";
}

.icon-house-2::before {
  content: "\ead3";
}

.icon-house-2-2::before {
  content: "\ead4";
}

.icon-house-5::before {
  content: "\ead5";
}

.icon-house-5-2::before {
  content: "\ead6";
}

.icon-image::before {
  content: "\ead7";
}

.icon-image-2::before {
  content: "\ead8";
}

.icon-image-depth::before {
  content: "\ead9";
}

.icon-image-depth-2::before {
  content: "\eada";
}

.icon-image-mountain::before {
  content: "\eadb";
}

.icon-image-mountain-2::before {
  content: "\eadc";
}

.icon-image-sparkle::before {
  content: "\eadd";
}

.icon-image-sparkle-2::before {
  content: "\eade";
}

.icon-images-2::before {
  content: "\eadf";
}

.icon-images-2-2::before {
  content: "\eae0";
}

.icon-inbox-arrow-down::before {
  content: "\eae1";
}

.icon-inbox-arrow-down-2::before {
  content: "\eae2";
}

.icon-industry::before {
  content: "\eae3";
}

.icon-industry-2::before {
  content: "\eae4";
}

.icon-keyboard::before {
  content: "\eae5";
}

.icon-keyboard-2::before {
  content: "\eae6";
}

.icon-language::before {
  content: "\eae7";
}

.icon-language-2::before {
  content: "\eae8";
}

.icon-laptop::before {
  content: "\eae9";
}

.icon-laptop-2::before {
  content: "\eaea";
}

.icon-laptop-mobile::before {
  content: "\eaeb";
}

.icon-laptop-mobile-2::before {
  content: "\eaec";
}

.icon-layers-3::before {
  content: "\eaed";
}

.icon-layers-3-2::before {
  content: "\eaee";
}

.icon-leaf::before {
  content: "\eaef";
}

.icon-leaf-2::before {
  content: "\eaf0";
}

.icon-life-ring::before {
  content: "\eaf1";
}

.icon-life-ring-2::before {
  content: "\eaf2";
}

.icon-lightbulb-3::before {
  content: "\eaf3";
}

.icon-lightbulb-3-2::before {
  content: "\eaf4";
}

.icon-link::before {
  content: "\eaf5";
}

.icon-link-2::before {
  content: "\eaf6";
}

.icon-loader::before {
  content: "\eaf7";
}

.icon-loader-2::before {
  content: "\eaf8";
}

.icon-location-2::before {
  content: "\eaf9";
}

.icon-location-2-2::before {
  content: "\eafa";
}

.icon-lock::before {
  content: "\eafb";
}

.icon-lock-2::before {
  content: "\eafc";
}

.icon-lock-open-2::before {
  content: "\eafd";
}

.icon-lock-open-2-2::before {
  content: "\eafe";
}

.icon-magic-wand::before {
  content: "\eaff";
}

.icon-magic-wand-2::before {
  content: "\eb00";
}

.icon-magnifier::before {
  content: "\eb01";
}

.icon-magnifier-2::before {
  content: "\eb02";
}

.icon-magnifier-face-worried::before {
  content: "\eb03";
}

.icon-magnifier-face-worried-2::before {
  content: "\eb04";
}

.icon-map::before {
  content: "\eb05";
}

.icon-map-2::before {
  content: "\eb06";
}

.icon-microphone::before {
  content: "\eb07";
}

.icon-microphone-2::before {
  content: "\eb08";
}

.icon-microphone-slash::before {
  content: "\eb09";
}

.icon-microphone-slash-2::before {
  content: "\eb0a";
}

.icon-minus::before {
  content: "\eb0b";
}

.icon-minus-2::before {
  content: "\eb0c";
}

.icon-money-bill-coin::before {
  content: "\eb0d";
}

.icon-money-bill-coin-2::before {
  content: "\eb0e";
}

.icon-msg-bubble-user::before {
  content: "\eb0f";
}

.icon-msg-bubble-user-2::before {
  content: "\eb10";
}

.icon-msg-smile::before {
  content: "\eb11";
}

.icon-msg-smile-2::before {
  content: "\eb12";
}

.icon-msg-writing::before {
  content: "\eb13";
}

.icon-msg-writing-2::before {
  content: "\eb14";
}

.icon-msgs::before {
  content: "\eb15";
}

.icon-msgs-2::before {
  content: "\eb16";
}

.icon-music-note-sparkle::before {
  content: "\eb17";
}

.icon-music-note-sparkle-2::before {
  content: "\eb18";
}

.icon-nodes::before {
  content: "\eb19";
}

.icon-nodes-2::before {
  content: "\eb1a";
}

.icon-notification::before {
  content: "\eb1b";
}

.icon-notification-2::before {
  content: "\eb1c";
}

.icon-office::before {
  content: "\eb1d";
}

.icon-office-2::before {
  content: "\eb1e";
}

.icon-ordered-list::before {
  content: "\eb1f";
}

.icon-ordered-list-2::before {
  content: "\eb20";
}

.icon-paintbrush::before {
  content: "\eb21";
}

.icon-paintbrush-2::before {
  content: "\eb22";
}

.icon-paper-plane-2::before {
  content: "\eb23";
}

.icon-paper-plane-2-2::before {
  content: "\eb24";
}

.icon-paperclip::before {
  content: "\eb25";
}

.icon-paperclip-2::before {
  content: "\eb26";
}

.icon-password-2::before {
  content: "\eb27";
}

.icon-password-2-2::before {
  content: "\eb28";
}

.icon-pen-3::before {
  content: "\eb29";
}

.icon-pen-3-2::before {
  content: "\eb2a";
}

.icon-pen-nib-3::before {
  content: "\eb2b";
}

.icon-pen-nib-3-2::before {
  content: "\eb2c";
}

.icon-pen-sparkle::before {
  content: "\eb2d";
}

.icon-pen-sparkle-2::before {
  content: "\eb2e";
}

.icon-pen-writing-4::before {
  content: "\eb2f";
}

.icon-pen-writing-4-2::before {
  content: "\eb30";
}

.icon-pen-writing-6::before {
  content: "\eb31";
}

.icon-pen-writing-6-2::before {
  content: "\eb32";
}

.icon-phone::before {
  content: "\eb33";
}

.icon-phone-2::before {
  content: "\eb34";
}

.icon-pin-tack::before {
  content: "\eb35";
}

.icon-pin-tack-2::before {
  content: "\eb36";
}

.icon-pizza-slice-2::before {
  content: "\eb37";
}

.icon-pizza-slice-2-2::before {
  content: "\eb38";
}

.icon-plug-2::before {
  content: "\eb39";
}

.icon-plug-2-2::before {
  content: "\eb3a";
}

.icon-plus::before {
  content: "\eb3b";
}

.icon-plus-2::before {
  content: "\eb3c";
}

.icon-pointer::before {
  content: "\eb3d";
}

.icon-pointer-2::before {
  content: "\eb3e";
}

.icon-presentation-screen::before {
  content: "\eb3f";
}

.icon-presentation-screen-2::before {
  content: "\eb40";
}

.icon-print::before {
  content: "\eb41";
}

.icon-print-2::before {
  content: "\eb42";
}

.icon-progress-bar::before {
  content: "\eb43";
}

.icon-progress-bar-2::before {
  content: "\eb44";
}

.icon-puzzle-piece::before {
  content: "\eb45";
}

.icon-puzzle-piece-2::before {
  content: "\eb46";
}

.icon-refresh-2::before {
  content: "\eb47";
}

.icon-refresh-2-2::before {
  content: "\eb48";
}

.icon-roadmap::before {
  content: "\eb49";
}

.icon-roadmap-2::before {
  content: "\eb4a";
}

.icon-rocket::before {
  content: "\eb4b";
}

.icon-rocket-2::before {
  content: "\eb4c";
}

.icon-rotation-360::before {
  content: "\eb4d";
}

.icon-rotation-360-2::before {
  content: "\eb4e";
}

.icon-ruler-pen::before {
  content: "\eb4f";
}

.icon-ruler-pen-2::before {
  content: "\eb50";
}

.icon-satellite::before {
  content: "\eb51";
}

.icon-satellite-2::before {
  content: "\eb52";
}

.icon-scale::before {
  content: "\eb53";
}

.icon-scale-2::before {
  content: "\eb54";
}

.icon-scissors::before {
  content: "\eb55";
}

.icon-scissors-2::before {
  content: "\eb56";
}

.icon-scissors-coupon-2::before {
  content: "\eb57";
}

.icon-scissors-coupon-2-2::before {
  content: "\eb58";
}

.icon-scribble::before {
  content: "\eb59";
}

.icon-scribble-2::before {
  content: "\eb5a";
}

.icon-shapes::before {
  content: "\eb5b";
}

.icon-shapes-2::before {
  content: "\eb5c";
}

.icon-shield-check::before {
  content: "\eb5d";
}

.icon-shield-check-2::before {
  content: "\eb5e";
}

.icon-shop::before {
  content: "\eb5f";
}

.icon-shop-2::before {
  content: "\eb60";
}

.icon-side-profile::before {
  content: "\eb61";
}

.icon-side-profile-2::before {
  content: "\eb62";
}

.icon-signal-2::before {
  content: "\eb63";
}

.icon-signal-2-2::before {
  content: "\eb64";
}

.icon-sitemap-4::before {
  content: "\eb65";
}

.icon-sitemap-4-2::before {
  content: "\eb66";
}

.icon-sliders::before {
  content: "\eb67";
}

.icon-sliders-2::before {
  content: "\eb68";
}

.icon-sparkle-3::before {
  content: "\eb69";
}

.icon-sparkle-3-2::before {
  content: "\eb6a";
}

.icon-square-dotted-arrow-bottom-right::before {
  content: "\eb6b";
}

.icon-square-dotted-arrow-bottom-right-2::before {
  content: "\eb6c";
}

.icon-square-minus::before {
  content: "\eb6d";
}

.icon-square-minus-2::before {
  content: "\eb6e";
}

.icon-square-plus::before {
  content: "\eb6f";
}

.icon-square-plus-2::before {
  content: "\eb70";
}

.icon-stack-perspective::before {
  content: "\eb71";
}

.icon-stack-perspective-2::before {
  content: "\eb72";
}

.icon-star::before {
  content: "\eb73";
}

.icon-star-2::before {
  content: "\eb74";
}

.icon-star-sparkle::before {
  content: "\eb75";
}

.icon-star-sparkle-2::before {
  content: "\eb76";
}

.icon-sticker-smile::before {
  content: "\eb77";
}

.icon-sticker-smile-2::before {
  content: "\eb78";
}

.icon-stopwatch::before {
  content: "\eb79";
}

.icon-stopwatch-2::before {
  content: "\eb7a";
}

.icon-subscription-2::before {
  content: "\eb7b";
}

.icon-subscription-2-2::before {
  content: "\eb7c";
}

.icon-suitcase-3::before {
  content: "\eb7d";
}

.icon-suitcase-3-2::before {
  content: "\eb7e";
}

.icon-tag::before {
  content: "\eb7f";
}

.icon-tag-2::before {
  content: "\eb80";
}

.icon-tags::before {
  content: "\eb81";
}

.icon-tags-2::before {
  content: "\eb82";
}

.icon-target::before {
  content: "\eb83";
}

.icon-target-2::before {
  content: "\eb84";
}

.icon-tasks-2::before {
  content: "\eb85";
}

.icon-tasks-2-2::before {
  content: "\eb86";
}

.icon-text-highlight::before {
  content: "\eb87";
}

.icon-text-highlight-2::before {
  content: "\eb88";
}

.icon-text-tool-2::before {
  content: "\eb89";
}

.icon-text-tool-2-2::before {
  content: "\eb8a";
}

.icon-thumbs-up::before {
  content: "\eb8b";
}

.icon-thumbs-up-2::before {
  content: "\eb8c";
}

.icon-ticket-4::before {
  content: "\eb8d";
}

.icon-ticket-4-2::before {
  content: "\eb8e";
}

.icon-timer-2::before {
  content: "\eb8f";
}

.icon-timer-2-2::before {
  content: "\eb90";
}

.icon-toggle-3::before {
  content: "\eb91";
}

.icon-toggle-3-2::before {
  content: "\eb92";
}

.icon-trash::before {
  content: "\eb93";
}

.icon-trash-2::before {
  content: "\eb94";
}

.icon-triangle-warning::before {
  content: "\eb95";
}

.icon-triangle-warning-2::before {
  content: "\eb96";
}

.icon-ufo::before {
  content: "\eb97";
}

.icon-ufo-2::before {
  content: "\eb98";
}

.icon-unordered-list::before {
  content: "\eb99";
}

.icon-unordered-list-2::before {
  content: "\eb9a";
}

.icon-user::before {
  content: "\eb9b";
}

.icon-user-2::before {
  content: "\eb9c";
}

.icon-user-laptop::before {
  content: "\eb9d";
}

.icon-user-laptop-2::before {
  content: "\eb9e";
}

.icon-user-search::before {
  content: "\eb9f";
}

.icon-user-search-2::before {
  content: "\eba0";
}

.icon-users::before {
  content: "\eba1";
}

.icon-users-2::before {
  content: "\eba2";
}

.icon-vault-3::before {
  content: "\eba3";
}

.icon-vault-3-2::before {
  content: "\eba4";
}

.icon-video::before {
  content: "\eba5";
}

.icon-video-2::before {
  content: "\eba6";
}

.icon-volume::before {
  content: "\eba7";
}

.icon-volume-2::before {
  content: "\eba8";
}

.icon-volume-up::before {
  content: "\eba9";
}

.icon-volume-up-2::before {
  content: "\ebaa";
}

.icon-wallet-2::before {
  content: "\ebab";
}

.icon-wallet-2-2::before {
  content: "\ebac";
}

.icon-wand-sparkle::before {
  content: "\ebad";
}

.icon-wand-sparkle-2::before {
  content: "\ebae";
}

.icon-watch::before {
  content: "\ebaf";
}

.icon-watch-2::before {
  content: "\ebb0";
}

.icon-window-chart-line::before {
  content: "\ebb1";
}

.icon-window-chart-line-2::before {
  content: "\ebb2";
}

.icon-window-expand-bottom-right::before {
  content: "\ebb3";
}

.icon-window-expand-bottom-right-2::before {
  content: "\ebb4";
}

.icon-window-pointer::before {
  content: "\ebb5";
}

.icon-window-pointer-2::before {
  content: "\ebb6";
}

.icon-xmark::before {
  content: "\ebb7";
}

.icon-xmark-2::before {
  content: "\ebb8";
}

.row-reverse {
  flex-direction: row-reverse !important;
}

.column-reverse {
  flex-direction: column-reverse !important;
}

.align-start {
  align-items: flex-start !important;
}

.align-center {
  align-items: center !important;
}

.align-end {
  align-items: flex-end !important;
}

.align-stretch {
  align-items: stretch !important;
}

.align-baseline {
  align-items: baseline !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-stretch {
  justify-content: stretch !important;
}

.justify-evenly {
  justify-content: space-around !important;
}

.justify-between {
  justify-content: space-between !important;
}

@media (max-width: 781px) {
  .mobile-row-reverse {
    flex-direction: row-reverse !important;
  }
  .mobile-column-reverse {
    flex-direction: column-reverse !important;
  }
  .mobile-align-start {
    align-items: flex-start !important;
  }
  .mobile-align-center {
    align-items: center !important;
  }
  .mobile-align-end {
    align-items: flex-end !important;
  }
  .mobile-align-stretch {
    align-items: stretch !important;
  }
  .mobile-align-baseline {
    align-items: baseline !important;
  }
  .mobile-justify-start {
    justify-content: flex-start !important;
  }
  .mobile-justify-center {
    justify-content: center !important;
  }
  .mobile-justify-end {
    justify-content: flex-end !important;
  }
  .mobile-justify-stretch {
    justify-content: stretch !important;
  }
  .mobile-justify-evenly {
    justify-content: space-around !important;
  }
  .mobile-justify-between {
    justify-content: space-between !important;
  }
}
@media (min-width: 782px) {
  .desktop-row-reverse {
    flex-direction: row-reverse !important;
  }
  .desktop-column-reverse {
    flex-direction: column-reverse !important;
  }
  .desktop-align-start {
    align-items: flex-start !important;
  }
  .desktop-align-center {
    align-items: center !important;
  }
  .desktop-align-end {
    align-items: flex-end !important;
  }
  .desktop-align-stretch {
    align-items: stretch !important;
  }
  .desktop-align-baseline {
    align-items: baseline !important;
  }
  .desktop-justify-start {
    justify-content: flex-start !important;
  }
  .desktop-justify-center {
    justify-content: center !important;
  }
  .desktop-justify-end {
    justify-content: flex-end !important;
  }
  .desktop-justify-stretch {
    justify-content: stretch !important;
  }
  .desktop-justify-evenly {
    justify-content: space-around !important;
  }
  .desktop-justify-between {
    justify-content: space-between !important;
  }
}
.column,
.row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.gap-xs {
  gap: var(--wp--preset--spacing--10, 1em);
}

.gap-sm {
  gap: var(--wp--preset--spacing--20, 2em);
}

.gap-lg {
  gap: var(--wp--preset--spacing--40, 4em);
}

.gap-xl {
  gap: var(--wp--preset--spacing--50, 5em);
}

.flex-grow {
  flex: 1 0;
}

.flex-shrink {
  flex: 0 1;
}

.nowrap,
.no-wrap {
  flex-wrap: nowrap;
}

.fixed,
.position-fixed {
  position: fixed;
  z-index: 999;
}
.fixed.top,
.position-fixed.top {
  top: var(--wp--preset--spacing--30, 3em);
}
.fixed.right,
.position-fixed.right {
  right: var(--wp--preset--spacing--30, 3em);
}
.fixed.bottom,
.position-fixed.bottom {
  bottom: var(--wp--preset--spacing--30, 3em);
}
.fixed.left,
.position-fixed.left {
  left: var(--wp--preset--spacing--30, 3em);
}

.relative,
.position-relative {
  position: relative;
}

.row.center {
  align-items: center;
}

@media (max-width: 781px) {
  .row:not(.no-wrap) {
    flex-wrap: wrap;
  }
}
.has-accent-1-color {
  color: var(--wp--preset--color--accent);
}
.has-accent-1-color a {
  color: var(--wp--preset--color--accent);
}

.has-accent-1-background,
.has-accent-1-background-color {
  background-color: var(--wp--preset--color--accent);
}

.has-accent-1-border {
  border: 1px solid var(--wp--preset--color--accent);
}

.has-accent-1-marker li::before,
.has-accent-1-marker li::marker {
  color: var(--wp--preset--color--accent);
}

.has-accent-2-color {
  color: var(--wp--preset--color--accent-2);
}
.has-accent-2-color a {
  color: var(--wp--preset--color--accent-2);
}

.has-accent-2-background,
.has-accent-2-background-color {
  background-color: var(--wp--preset--color--accent-2);
}

.has-accent-2-border {
  border: 1px solid var(--wp--preset--color--accent-2);
}

.has-accent-2-marker li::before,
.has-accent-2-marker li::marker {
  color: var(--wp--preset--color--accent-2);
}

.has-accent-3-color {
  color: var(--wp--preset--color--accent-3);
}
.has-accent-3-color a {
  color: var(--wp--preset--color--accent-3);
}

.has-accent-3-background,
.has-accent-3-background-color {
  background-color: var(--wp--preset--color--accent-3);
}

.has-accent-3-border {
  border: 1px solid var(--wp--preset--color--accent-3);
}

.has-accent-3-marker li::before,
.has-accent-3-marker li::marker {
  color: var(--wp--preset--color--accent-3);
}

.has-accent-4-color {
  color: var(--wp--preset--color--accent-4);
}
.has-accent-4-color a {
  color: var(--wp--preset--color--accent-4);
}

.has-accent-4-background,
.has-accent-4-background-color {
  background-color: var(--wp--preset--color--accent-4);
}

.has-accent-4-border {
  border: 1px solid var(--wp--preset--color--accent-4);
}

.has-accent-4-marker li::before,
.has-accent-4-marker li::marker {
  color: var(--wp--preset--color--accent-4);
}

.has-accent-5-color {
  color: var(--wp--preset--color--accent-5);
}
.has-accent-5-color a {
  color: var(--wp--preset--color--accent-5);
}

.has-accent-5-background,
.has-accent-5-background-color {
  background-color: var(--wp--preset--color--accent-5);
}

.has-accent-5-border {
  border: 1px solid var(--wp--preset--color--accent-5);
}

.has-accent-5-marker li::before,
.has-accent-5-marker li::marker {
  color: var(--wp--preset--color--accent-5);
}

.has-accent-6-color {
  color: var(--wp--preset--color--accent-6);
}
.has-accent-6-color a {
  color: var(--wp--preset--color--accent-6);
}

.has-accent-6-background,
.has-accent-6-background-color {
  background-color: var(--wp--preset--color--accent-6);
}

.has-accent-6-border {
  border: 1px solid var(--wp--preset--color--accent-6);
}

.has-accent-6-marker li::before,
.has-accent-6-marker li::marker {
  color: var(--wp--preset--color--accent-6);
}

.has-accent-7-color {
  color: var(--wp--preset--color--accent-7);
}
.has-accent-7-color a {
  color: var(--wp--preset--color--accent-7);
}

.has-accent-7-background,
.has-accent-7-background-color {
  background-color: var(--wp--preset--color--accent-7);
}

.has-accent-7-border {
  border: 1px solid var(--wp--preset--color--accent-7);
}

.has-accent-7-marker li::before,
.has-accent-7-marker li::marker {
  color: var(--wp--preset--color--accent-7);
}

.has-accent-8-color {
  color: var(--wp--preset--color--accent-8);
}
.has-accent-8-color a {
  color: var(--wp--preset--color--accent-8);
}

.has-accent-8-background,
.has-accent-8-background-color {
  background-color: var(--wp--preset--color--accent-8);
}

.has-accent-8-border {
  border: 1px solid var(--wp--preset--color--accent-8);
}

.has-accent-8-marker li::before,
.has-accent-8-marker li::marker {
  color: var(--wp--preset--color--accent-8);
}

.has-base-1-color {
  color: var(--wp--preset--color--base-1);
}
.has-base-1-color a {
  color: var(--wp--preset--color--base-1);
}

.has-base-1-background,
.has-base-1-background-color {
  background-color: var(--wp--preset--color--base-1);
}

.has-base-1-border {
  border: 1px solid var(--wp--preset--color--base-1);
}

.has-base-1-marker li::before,
.has-base-1-marker li::marker {
  color: var(--wp--preset--color--base-1);
}

.has-base-2-color {
  color: var(--wp--preset--color--base-2);
}
.has-base-2-color a {
  color: var(--wp--preset--color--base-2);
}

.has-base-2-background,
.has-base-2-background-color {
  background-color: var(--wp--preset--color--base-2);
}

.has-base-2-border {
  border: 1px solid var(--wp--preset--color--base-2);
}

.has-base-2-marker li::before,
.has-base-2-marker li::marker {
  color: var(--wp--preset--color--base-2);
}

.has-black-color {
  color: #111111;
}
.has-black-color a {
  color: #111111;
}

.has-black-background,
.has-black-background-color {
  background-color: #111111;
}

.has-black-border {
  border: 1px solid #111111;
}

.has-black-marker li::before,
.has-black-marker li::marker {
  color: #111111;
}

.has-contrast-1-color {
  color: var(--wp--preset--color--contrast-1);
}
.has-contrast-1-color a {
  color: var(--wp--preset--color--contrast-1);
}

.has-contrast-1-background,
.has-contrast-1-background-color {
  background-color: var(--wp--preset--color--contrast-1);
}

.has-contrast-1-border {
  border: 1px solid var(--wp--preset--color--contrast-1);
}

.has-contrast-1-marker li::before,
.has-contrast-1-marker li::marker {
  color: var(--wp--preset--color--contrast-1);
}

.has-contrast-2-color {
  color: var(--wp--preset--color--contrast-2);
}
.has-contrast-2-color a {
  color: var(--wp--preset--color--contrast-2);
}

.has-contrast-2-background,
.has-contrast-2-background-color {
  background-color: var(--wp--preset--color--contrast-2);
}

.has-contrast-2-border {
  border: 1px solid var(--wp--preset--color--contrast-2);
}

.has-contrast-2-marker li::before,
.has-contrast-2-marker li::marker {
  color: var(--wp--preset--color--contrast-2);
}

.has-dark-color {
  color: #202020;
}
.has-dark-color a {
  color: #202020;
}

.has-dark-background,
.has-dark-background-color {
  background-color: #202020;
}

.has-dark-border {
  border: 1px solid #202020;
}

.has-dark-marker li::before,
.has-dark-marker li::marker {
  color: #202020;
}

.has-error-color {
  color: #ff4136;
}
.has-error-color a {
  color: #ff4136;
}

.has-error-background,
.has-error-background-color {
  background-color: #ff4136;
}

.has-error-border {
  border: 1px solid #ff4136;
}

.has-error-marker li::before,
.has-error-marker li::marker {
  color: #ff4136;
}

.has-light-color {
  color: #f5f5f5;
}
.has-light-color a {
  color: #f5f5f5;
}

.has-light-background,
.has-light-background-color {
  background-color: #f5f5f5;
}

.has-light-border {
  border: 1px solid #f5f5f5;
}

.has-light-marker li::before,
.has-light-marker li::marker {
  color: #f5f5f5;
}

.has-notice-color {
  color: #ffdc00;
}
.has-notice-color a {
  color: #ffdc00;
}

.has-notice-background,
.has-notice-background-color {
  background-color: #ffdc00;
}

.has-notice-border {
  border: 1px solid #ffdc00;
}

.has-notice-marker li::before,
.has-notice-marker li::marker {
  color: #ffdc00;
}

.has-success-color {
  color: #2ecc40;
}
.has-success-color a {
  color: #2ecc40;
}

.has-success-background,
.has-success-background-color {
  background-color: #2ecc40;
}

.has-success-border {
  border: 1px solid #2ecc40;
}

.has-success-marker li::before,
.has-success-marker li::marker {
  color: #2ecc40;
}

.has-translucent-black-color {
  color: color-mix(in srgb, #000 10%, transparent);
}
.has-translucent-black-color a {
  color: color-mix(in srgb, #000 10%, transparent);
}

.has-translucent-black-background,
.has-translucent-black-background-color {
  background-color: color-mix(in srgb, #000 10%, transparent);
}

.has-translucent-black-border {
  border: 1px solid color-mix(in srgb, #000 10%, transparent);
}

.has-translucent-black-marker li::before,
.has-translucent-black-marker li::marker {
  color: color-mix(in srgb, #000 10%, transparent);
}

.has-translucent-white-color {
  color: color-mix(in srgb, #fff 50%, transparent);
}
.has-translucent-white-color a {
  color: color-mix(in srgb, #fff 50%, transparent);
}

.has-translucent-white-background,
.has-translucent-white-background-color {
  background-color: color-mix(in srgb, #fff 50%, transparent);
}

.has-translucent-white-border {
  border: 1px solid color-mix(in srgb, #fff 50%, transparent);
}

.has-translucent-white-marker li::before,
.has-translucent-white-marker li::marker {
  color: color-mix(in srgb, #fff 50%, transparent);
}

.has-white-color {
  color: #fffefc;
}
.has-white-color a {
  color: #fffefc;
}

.has-white-background,
.has-white-background-color {
  background-color: #fffefc;
}

.has-white-border {
  border: 1px solid #fffefc;
}

.has-white-marker li::before,
.has-white-marker li::marker {
  color: #fffefc;
}

.has-pearl-color {
  color: #fbfcf7;
}
.has-pearl-color a {
  color: #fbfcf7;
}

.has-pearl-background,
.has-pearl-background-color {
  background-color: #fbfcf7;
}

.has-pearl-border {
  border: 1px solid #fbfcf7;
}

.has-pearl-marker li::before,
.has-pearl-marker li::marker {
  color: #fbfcf7;
}

.has-alabaster-color {
  color: #fefaf0;
}
.has-alabaster-color a {
  color: #fefaf0;
}

.has-alabaster-background,
.has-alabaster-background-color {
  background-color: #fefaf0;
}

.has-alabaster-border {
  border: 1px solid #fefaf0;
}

.has-alabaster-marker li::before,
.has-alabaster-marker li::marker {
  color: #fefaf0;
}

.has-snow-color {
  color: #f4fefd;
}
.has-snow-color a {
  color: #f4fefd;
}

.has-snow-background,
.has-snow-background-color {
  background-color: #f4fefd;
}

.has-snow-border {
  border: 1px solid #f4fefd;
}

.has-snow-marker li::before,
.has-snow-marker li::marker {
  color: #f4fefd;
}

.has-ivory-color {
  color: #fef7e5;
}
.has-ivory-color a {
  color: #fef7e5;
}

.has-ivory-background,
.has-ivory-background-color {
  background-color: #fef7e5;
}

.has-ivory-border {
  border: 1px solid #fef7e5;
}

.has-ivory-marker li::before,
.has-ivory-marker li::marker {
  color: #fef7e5;
}

.has-cream-color {
  color: #fffbda;
}
.has-cream-color a {
  color: #fffbda;
}

.has-cream-background,
.has-cream-background-color {
  background-color: #fffbda;
}

.has-cream-border {
  border: 1px solid #fffbda;
}

.has-cream-marker li::before,
.has-cream-marker li::marker {
  color: #fffbda;
}

.has-eggshell-color {
  color: #fef9e3;
}
.has-eggshell-color a {
  color: #fef9e3;
}

.has-eggshell-background,
.has-eggshell-background-color {
  background-color: #fef9e3;
}

.has-eggshell-border {
  border: 1px solid #fef9e3;
}

.has-eggshell-marker li::before,
.has-eggshell-marker li::marker {
  color: #fef9e3;
}

.has-cotton-color {
  color: #fbfcf7;
}
.has-cotton-color a {
  color: #fbfcf7;
}

.has-cotton-background,
.has-cotton-background-color {
  background-color: #fbfcf7;
}

.has-cotton-border {
  border: 1px solid #fbfcf7;
}

.has-cotton-marker li::before,
.has-cotton-marker li::marker {
  color: #fbfcf7;
}

.has-chiffon-color {
  color: #fafaf1;
}
.has-chiffon-color a {
  color: #fafaf1;
}

.has-chiffon-background,
.has-chiffon-background-color {
  background-color: #fafaf1;
}

.has-chiffon-border {
  border: 1px solid #fafaf1;
}

.has-chiffon-marker li::before,
.has-chiffon-marker li::marker {
  color: #fafaf1;
}

.has-salt-color {
  color: #f8efec;
}
.has-salt-color a {
  color: #f8efec;
}

.has-salt-background,
.has-salt-background-color {
  background-color: #f8efec;
}

.has-salt-border {
  border: 1px solid #f8efec;
}

.has-salt-marker li::before,
.has-salt-marker li::marker {
  color: #f8efec;
}

.has-lace-color {
  color: #faf3ea;
}
.has-lace-color a {
  color: #faf3ea;
}

.has-lace-background,
.has-lace-background-color {
  background-color: #faf3ea;
}

.has-lace-border {
  border: 1px solid #faf3ea;
}

.has-lace-marker li::before,
.has-lace-marker li::marker {
  color: #faf3ea;
}

.has-coconut-color {
  color: #fff1e6;
}
.has-coconut-color a {
  color: #fff1e6;
}

.has-coconut-background,
.has-coconut-background-color {
  background-color: #fff1e6;
}

.has-coconut-border {
  border: 1px solid #fff1e6;
}

.has-coconut-marker li::before,
.has-coconut-marker li::marker {
  color: #fff1e6;
}

.has-linen-color {
  color: #f2ebd3;
}
.has-linen-color a {
  color: #f2ebd3;
}

.has-linen-background,
.has-linen-background-color {
  background-color: #f2ebd3;
}

.has-linen-border {
  border: 1px solid #f2ebd3;
}

.has-linen-marker li::before,
.has-linen-marker li::marker {
  color: #f2ebd3;
}

.has-bone-color {
  color: #e7dfcc;
}
.has-bone-color a {
  color: #e7dfcc;
}

.has-bone-background,
.has-bone-background-color {
  background-color: #e7dfcc;
}

.has-bone-border {
  border: 1px solid #e7dfcc;
}

.has-bone-marker li::before,
.has-bone-marker li::marker {
  color: #e7dfcc;
}

.has-porcelain-color {
  color: #fffffc;
}
.has-porcelain-color a {
  color: #fffffc;
}

.has-porcelain-background,
.has-porcelain-background-color {
  background-color: #fffffc;
}

.has-porcelain-border {
  border: 1px solid #fffffc;
}

.has-porcelain-marker li::before,
.has-porcelain-marker li::marker {
  color: #fffffc;
}

.has-parchment-color {
  color: #fcf6df;
}
.has-parchment-color a {
  color: #fcf6df;
}

.has-parchment-background,
.has-parchment-background-color {
  background-color: #fcf6df;
}

.has-parchment-border {
  border: 1px solid #fcf6df;
}

.has-parchment-marker li::before,
.has-parchment-marker li::marker {
  color: #fcf6df;
}

.has-rice-color {
  color: #fbf6ef;
}
.has-rice-color a {
  color: #fbf6ef;
}

.has-rice-background,
.has-rice-background-color {
  background-color: #fbf6ef;
}

.has-rice-border {
  border: 1px solid #fbf6ef;
}

.has-rice-marker li::before,
.has-rice-marker li::marker {
  color: #fbf6ef;
}

.has-blue-color {
  color: #0074d9;
}
.has-blue-color a {
  color: #0074d9;
}

.has-blue-background,
.has-blue-background-color {
  background-color: #0074d9;
}

.has-blue-border {
  border: 1px solid #0074d9;
}

.has-blue-marker li::before,
.has-blue-marker li::marker {
  color: #0074d9;
}

.has-navy-color {
  color: #001f3f;
}
.has-navy-color a {
  color: #001f3f;
}

.has-navy-background,
.has-navy-background-color {
  background-color: #001f3f;
}

.has-navy-border {
  border: 1px solid #001f3f;
}

.has-navy-marker li::before,
.has-navy-marker li::marker {
  color: #001f3f;
}

.has-aqua-color {
  color: #7fdbff;
}
.has-aqua-color a {
  color: #7fdbff;
}

.has-aqua-background,
.has-aqua-background-color {
  background-color: #7fdbff;
}

.has-aqua-border {
  border: 1px solid #7fdbff;
}

.has-aqua-marker li::before,
.has-aqua-marker li::marker {
  color: #7fdbff;
}

.has-sky-color {
  color: #00b2ff;
}
.has-sky-color a {
  color: #00b2ff;
}

.has-sky-background,
.has-sky-background-color {
  background-color: #00b2ff;
}

.has-sky-border {
  border: 1px solid #00b2ff;
}

.has-sky-marker li::before,
.has-sky-marker li::marker {
  color: #00b2ff;
}

.has-teal-color {
  color: #39cccc;
}
.has-teal-color a {
  color: #39cccc;
}

.has-teal-background,
.has-teal-background-color {
  background-color: #39cccc;
}

.has-teal-border {
  border: 1px solid #39cccc;
}

.has-teal-marker li::before,
.has-teal-marker li::marker {
  color: #39cccc;
}

.has-slate-color {
  color: #757b87;
}
.has-slate-color a {
  color: #757b87;
}

.has-slate-background,
.has-slate-background-color {
  background-color: #757b87;
}

.has-slate-border {
  border: 1px solid #757b87;
}

.has-slate-marker li::before,
.has-slate-marker li::marker {
  color: #757b87;
}

.has-indigo-color {
  color: #281e5d;
}
.has-indigo-color a {
  color: #281e5d;
}

.has-indigo-background,
.has-indigo-background-color {
  background-color: #281e5d;
}

.has-indigo-border {
  border: 1px solid #281e5d;
}

.has-indigo-marker li::before,
.has-indigo-marker li::marker {
  color: #281e5d;
}

.has-cobalt-color {
  color: #1438bd;
}
.has-cobalt-color a {
  color: #1438bd;
}

.has-cobalt-background,
.has-cobalt-background-color {
  background-color: #1438bd;
}

.has-cobalt-border {
  border: 1px solid #1438bd;
}

.has-cobalt-marker li::before,
.has-cobalt-marker li::marker {
  color: #1438bd;
}

.has-ocean-color {
  color: #026063;
}
.has-ocean-color a {
  color: #026063;
}

.has-ocean-background,
.has-ocean-background-color {
  background-color: #026063;
}

.has-ocean-border {
  border: 1px solid #026063;
}

.has-ocean-marker li::before,
.has-ocean-marker li::marker {
  color: #026063;
}

.has-peacock-color {
  color: #002d37;
}
.has-peacock-color a {
  color: #002d37;
}

.has-peacock-background,
.has-peacock-background-color {
  background-color: #002d37;
}

.has-peacock-border {
  border: 1px solid #002d37;
}

.has-peacock-marker li::before,
.has-peacock-marker li::marker {
  color: #002d37;
}

.has-azure-color {
  color: #1621a6;
}
.has-azure-color a {
  color: #1621a6;
}

.has-azure-background,
.has-azure-background-color {
  background-color: #1621a6;
}

.has-azure-border {
  border: 1px solid #1621a6;
}

.has-azure-marker li::before,
.has-azure-marker li::marker {
  color: #1621a6;
}

.has-cerulean-color {
  color: #0592c2;
}
.has-cerulean-color a {
  color: #0592c2;
}

.has-cerulean-background,
.has-cerulean-background-color {
  background-color: #0592c2;
}

.has-cerulean-border {
  border: 1px solid #0592c2;
}

.has-cerulean-marker li::before,
.has-cerulean-marker li::marker {
  color: #0592c2;
}

.has-lapis-color {
  color: #2632c2;
}
.has-lapis-color a {
  color: #2632c2;
}

.has-lapis-background,
.has-lapis-background-color {
  background-color: #2632c2;
}

.has-lapis-border {
  border: 1px solid #2632c2;
}

.has-lapis-marker li::before,
.has-lapis-marker li::marker {
  color: #2632c2;
}

.has-spruce-color {
  color: #2c3e4b;
}
.has-spruce-color a {
  color: #2c3e4b;
}

.has-spruce-background,
.has-spruce-background-color {
  background-color: #2c3e4b;
}

.has-spruce-border {
  border: 1px solid #2c3e4b;
}

.has-spruce-marker li::before,
.has-spruce-marker li::marker {
  color: #2c3e4b;
}

.has-stone-color {
  color: #59788d;
}
.has-stone-color a {
  color: #59788d;
}

.has-stone-background,
.has-stone-background-color {
  background-color: #59788d;
}

.has-stone-border {
  border: 1px solid #59788d;
}

.has-stone-marker li::before,
.has-stone-marker li::marker {
  color: #59788d;
}

.has-aegean-color {
  color: #1e456e;
}
.has-aegean-color a {
  color: #1e456e;
}

.has-aegean-background,
.has-aegean-background-color {
  background-color: #1e456e;
}

.has-aegean-border {
  border: 1px solid #1e456e;
}

.has-aegean-marker li::before,
.has-aegean-marker li::marker {
  color: #1e456e;
}

.has-berry-color {
  color: #24146f;
}
.has-berry-color a {
  color: #24146f;
}

.has-berry-background,
.has-berry-background-color {
  background-color: #24146f;
}

.has-berry-border {
  border: 1px solid #24146f;
}

.has-berry-marker li::before,
.has-berry-marker li::marker {
  color: #24146f;
}

.has-denim-color {
  color: #141e3c;
}
.has-denim-color a {
  color: #141e3c;
}

.has-denim-background,
.has-denim-background-color {
  background-color: #141e3c;
}

.has-denim-border {
  border: 1px solid #141e3c;
}

.has-denim-marker li::before,
.has-denim-marker li::marker {
  color: #141e3c;
}

.has-admiral-color {
  color: #061094;
}
.has-admiral-color a {
  color: #061094;
}

.has-admiral-background,
.has-admiral-background-color {
  background-color: #061094;
}

.has-admiral-border {
  border: 1px solid #061094;
}

.has-admiral-marker li::before,
.has-admiral-marker li::marker {
  color: #061094;
}

.has-sapphire-color {
  color: #52b2c0;
}
.has-sapphire-color a {
  color: #52b2c0;
}

.has-sapphire-background,
.has-sapphire-background-color {
  background-color: #52b2c0;
}

.has-sapphire-border {
  border: 1px solid #52b2c0;
}

.has-sapphire-marker li::before,
.has-sapphire-marker li::marker {
  color: #52b2c0;
}

.has-arctic-color {
  color: #82edfd;
}
.has-arctic-color a {
  color: #82edfd;
}

.has-arctic-background,
.has-arctic-background-color {
  background-color: #82edfd;
}

.has-arctic-border {
  border: 1px solid #82edfd;
}

.has-arctic-marker li::before,
.has-arctic-marker li::marker {
  color: #82edfd;
}

.has-tan-color {
  color: #e5dbac;
}
.has-tan-color a {
  color: #e5dbac;
}

.has-tan-background,
.has-tan-background-color {
  background-color: #e5dbac;
}

.has-tan-border {
  border: 1px solid #e5dbac;
}

.has-tan-marker li::before,
.has-tan-marker li::marker {
  color: #e5dbac;
}

.has-beige-color {
  color: #ecdc99;
}
.has-beige-color a {
  color: #ecdc99;
}

.has-beige-background,
.has-beige-background-color {
  background-color: #ecdc99;
}

.has-beige-border {
  border: 1px solid #ecdc99;
}

.has-beige-marker li::before,
.has-beige-marker li::marker {
  color: #ecdc99;
}

.has-macaroon-color {
  color: #f7df75;
}
.has-macaroon-color a {
  color: #f7df75;
}

.has-macaroon-background,
.has-macaroon-background-color {
  background-color: #f7df75;
}

.has-macaroon-border {
  border: 1px solid #f7df75;
}

.has-macaroon-marker li::before,
.has-macaroon-marker li::marker {
  color: #f7df75;
}

.has-hazelwood-color {
  color: #c9bc8e;
}
.has-hazelwood-color a {
  color: #c9bc8e;
}

.has-hazelwood-background,
.has-hazelwood-background-color {
  background-color: #c9bc8e;
}

.has-hazelwood-border {
  border: 1px solid #c9bc8e;
}

.has-hazelwood-marker li::before,
.has-hazelwood-marker li::marker {
  color: #c9bc8e;
}

.has-granola-color {
  color: #d6b75a;
}
.has-granola-color a {
  color: #d6b75a;
}

.has-granola-background,
.has-granola-background-color {
  background-color: #d6b75a;
}

.has-granola-border {
  border: 1px solid #d6b75a;
}

.has-granola-marker li::before,
.has-granola-marker li::marker {
  color: #d6b75a;
}

.has-oat-color {
  color: #dec98a;
}
.has-oat-color a {
  color: #dec98a;
}

.has-oat-background,
.has-oat-background-color {
  background-color: #dec98a;
}

.has-oat-border {
  border: 1px solid #dec98a;
}

.has-oat-marker li::before,
.has-oat-marker li::marker {
  color: #dec98a;
}

.has-eggnog-color {
  color: #fbe29d;
}
.has-eggnog-color a {
  color: #fbe29d;
}

.has-eggnog-background,
.has-eggnog-background-color {
  background-color: #fbe29d;
}

.has-eggnog-border {
  border: 1px solid #fbe29d;
}

.has-eggnog-marker li::before,
.has-eggnog-marker li::marker {
  color: #fbe29d;
}

.has-fawn-color {
  color: #c7a951;
}
.has-fawn-color a {
  color: #c7a951;
}

.has-fawn-background,
.has-fawn-background-color {
  background-color: #c7a951;
}

.has-fawn-border {
  border: 1px solid #c7a951;
}

.has-fawn-marker li::before,
.has-fawn-marker li::marker {
  color: #c7a951;
}

.has-sugarcookie-color {
  color: #f3ebad;
}
.has-sugarcookie-color a {
  color: #f3ebad;
}

.has-sugarcookie-background,
.has-sugarcookie-background-color {
  background-color: #f3ebad;
}

.has-sugarcookie-border {
  border: 1px solid #f3ebad;
}

.has-sugarcookie-marker li::before,
.has-sugarcookie-marker li::marker {
  color: #f3ebad;
}

.has-sand-color {
  color: #d7b963;
}
.has-sand-color a {
  color: #d7b963;
}

.has-sand-background,
.has-sand-background-color {
  background-color: #d7b963;
}

.has-sand-border {
  border: 1px solid #d7b963;
}

.has-sand-marker li::before,
.has-sand-marker li::marker {
  color: #d7b963;
}

.has-sepia-color {
  color: #e3b678;
}
.has-sepia-color a {
  color: #e3b678;
}

.has-sepia-background,
.has-sepia-background-color {
  background-color: #e3b678;
}

.has-sepia-border {
  border: 1px solid #e3b678;
}

.has-sepia-marker li::before,
.has-sepia-marker li::marker {
  color: #e3b678;
}

.has-latte-color {
  color: #e9c17b;
}
.has-latte-color a {
  color: #e9c17b;
}

.has-latte-background,
.has-latte-background-color {
  background-color: #e9c17b;
}

.has-latte-border {
  border: 1px solid #e9c17b;
}

.has-latte-marker li::before,
.has-latte-marker li::marker {
  color: #e9c17b;
}

.has-oyster-color {
  color: #dcd69f;
}
.has-oyster-color a {
  color: #dcd69f;
}

.has-oyster-background,
.has-oyster-background-color {
  background-color: #dcd69f;
}

.has-oyster-border {
  border: 1px solid #dcd69f;
}

.has-oyster-marker li::before,
.has-oyster-marker li::marker {
  color: #dcd69f;
}

.has-biscotti-color {
  color: #e3c565;
}
.has-biscotti-color a {
  color: #e3c565;
}

.has-biscotti-background,
.has-biscotti-background-color {
  background-color: #e3c565;
}

.has-biscotti-border {
  border: 1px solid #e3c565;
}

.has-biscotti-marker li::before,
.has-biscotti-marker li::marker {
  color: #e3c565;
}

.has-parmesean-color {
  color: #fee993;
}
.has-parmesean-color a {
  color: #fee993;
}

.has-parmesean-background,
.has-parmesean-background-color {
  background-color: #fee993;
}

.has-parmesean-border {
  border: 1px solid #fee993;
}

.has-parmesean-marker li::before,
.has-parmesean-marker li::marker {
  color: #fee993;
}

.has-hazelnut-color {
  color: #bda55d;
}
.has-hazelnut-color a {
  color: #bda55d;
}

.has-hazelnut-background,
.has-hazelnut-background-color {
  background-color: #bda55d;
}

.has-hazelnut-border {
  border: 1px solid #bda55d;
}

.has-hazelnut-marker li::before,
.has-hazelnut-marker li::marker {
  color: #bda55d;
}

.has-sandcastle-color {
  color: #dbc27d;
}
.has-sandcastle-color a {
  color: #dbc27d;
}

.has-sandcastle-background,
.has-sandcastle-background-color {
  background-color: #dbc27d;
}

.has-sandcastle-border {
  border: 1px solid #dbc27d;
}

.has-sandcastle-marker li::before,
.has-sandcastle-marker li::marker {
  color: #dbc27d;
}

.has-buttermilk-color {
  color: #fdefb2;
}
.has-buttermilk-color a {
  color: #fdefb2;
}

.has-buttermilk-background,
.has-buttermilk-background-color {
  background-color: #fdefb2;
}

.has-buttermilk-border {
  border: 1px solid #fdefb2;
}

.has-buttermilk-marker li::before,
.has-buttermilk-marker li::marker {
  color: #fdefb2;
}

.has-sanddollar-color {
  color: #ebe7b9;
}
.has-sanddollar-color a {
  color: #ebe7b9;
}

.has-sanddollar-background,
.has-sanddollar-background-color {
  background-color: #ebe7b9;
}

.has-sanddollar-border {
  border: 1px solid #ebe7b9;
}

.has-sanddollar-marker li::before,
.has-sanddollar-marker li::marker {
  color: #ebe7b9;
}

.has-shortbread-color {
  color: #fce791;
}
.has-shortbread-color a {
  color: #fce791;
}

.has-shortbread-background,
.has-shortbread-background-color {
  background-color: #fce791;
}

.has-shortbread-border {
  border: 1px solid #fce791;
}

.has-shortbread-marker li::before,
.has-shortbread-marker li::marker {
  color: #fce791;
}

.has-yellow-color {
  color: #ffdc00;
}
.has-yellow-color a {
  color: #ffdc00;
}

.has-yellow-background,
.has-yellow-background-color {
  background-color: #ffdc00;
}

.has-yellow-border {
  border: 1px solid #ffdc00;
}

.has-yellow-marker li::before,
.has-yellow-marker li::marker {
  color: #ffdc00;
}

.has-canary-color {
  color: #fac801;
}
.has-canary-color a {
  color: #fac801;
}

.has-canary-background,
.has-canary-background-color {
  background-color: #fac801;
}

.has-canary-border {
  border: 1px solid #fac801;
}

.has-canary-marker li::before,
.has-canary-marker li::marker {
  color: #fac801;
}

.has-gold-color {
  color: #f9a602;
}
.has-gold-color a {
  color: #f9a602;
}

.has-gold-background,
.has-gold-background-color {
  background-color: #f9a602;
}

.has-gold-border {
  border: 1px solid #f9a602;
}

.has-gold-marker li::before,
.has-gold-marker li::marker {
  color: #f9a602;
}

.has-daffodil-color {
  color: #feee88;
}
.has-daffodil-color a {
  color: #feee88;
}

.has-daffodil-background,
.has-daffodil-background-color {
  background-color: #feee88;
}

.has-daffodil-border {
  border: 1px solid #feee88;
}

.has-daffodil-marker li::before,
.has-daffodil-marker li::marker {
  color: #feee88;
}

.has-flaxen-color {
  color: #d5b65a;
}
.has-flaxen-color a {
  color: #d5b65a;
}

.has-flaxen-background,
.has-flaxen-background-color {
  background-color: #d5b65a;
}

.has-flaxen-border {
  border: 1px solid #d5b65a;
}

.has-flaxen-marker li::before,
.has-flaxen-marker li::marker {
  color: #d5b65a;
}

.has-butter-color {
  color: #fee226;
}
.has-butter-color a {
  color: #fee226;
}

.has-butter-background,
.has-butter-background-color {
  background-color: #fee226;
}

.has-butter-border {
  border: 1px solid #fee226;
}

.has-butter-marker li::before,
.has-butter-marker li::marker {
  color: #fee226;
}

.has-lemon-color {
  color: #effd5f;
}
.has-lemon-color a {
  color: #effd5f;
}

.has-lemon-background,
.has-lemon-background-color {
  background-color: #effd5f;
}

.has-lemon-border {
  border: 1px solid #effd5f;
}

.has-lemon-marker li::before,
.has-lemon-marker li::marker {
  color: #effd5f;
}

.has-mustard-color {
  color: #e9b829;
}
.has-mustard-color a {
  color: #e9b829;
}

.has-mustard-background,
.has-mustard-background-color {
  background-color: #e9b829;
}

.has-mustard-border {
  border: 1px solid #e9b829;
}

.has-mustard-marker li::before,
.has-mustard-marker li::marker {
  color: #e9b829;
}

.has-corn-color {
  color: #e4cd04;
}
.has-corn-color a {
  color: #e4cd04;
}

.has-corn-background,
.has-corn-background-color {
  background-color: #e4cd04;
}

.has-corn-border {
  border: 1px solid #e4cd04;
}

.has-corn-marker li::before,
.has-corn-marker li::marker {
  color: #e4cd04;
}

.has-medallion-color {
  color: #e4b103;
}
.has-medallion-color a {
  color: #e4b103;
}

.has-medallion-background,
.has-medallion-background-color {
  background-color: #e4b103;
}

.has-medallion-border {
  border: 1px solid #e4b103;
}

.has-medallion-marker li::before,
.has-medallion-marker li::marker {
  color: #e4b103;
}

.has-dandelion-color {
  color: #fdce2a;
}
.has-dandelion-color a {
  color: #fdce2a;
}

.has-dandelion-background,
.has-dandelion-background-color {
  background-color: #fdce2a;
}

.has-dandelion-border {
  border: 1px solid #fdce2a;
}

.has-dandelion-marker li::before,
.has-dandelion-marker li::marker {
  color: #fdce2a;
}

.has-bumblebee-color {
  color: #fce206;
}
.has-bumblebee-color a {
  color: #fce206;
}

.has-bumblebee-background,
.has-bumblebee-background-color {
  background-color: #fce206;
}

.has-bumblebee-border {
  border: 1px solid #fce206;
}

.has-bumblebee-marker li::before,
.has-bumblebee-marker li::marker {
  color: #fce206;
}

.has-banana-color {
  color: #fcf4a3;
}
.has-banana-color a {
  color: #fcf4a3;
}

.has-banana-background,
.has-banana-background-color {
  background-color: #fcf4a3;
}

.has-banana-border {
  border: 1px solid #fcf4a3;
}

.has-banana-marker li::before,
.has-banana-marker li::marker {
  color: #fcf4a3;
}

.has-butterscotch-color {
  color: #fabd04;
}
.has-butterscotch-color a {
  color: #fabd04;
}

.has-butterscotch-background,
.has-butterscotch-background-color {
  background-color: #fabd04;
}

.has-butterscotch-border {
  border: 1px solid #fabd04;
}

.has-butterscotch-marker li::before,
.has-butterscotch-marker li::marker {
  color: #fabd04;
}

.has-dijon-color {
  color: #c29200;
}
.has-dijon-color a {
  color: #c29200;
}

.has-dijon-background,
.has-dijon-background-color {
  background-color: #c29200;
}

.has-dijon-border {
  border: 1px solid #c29200;
}

.has-dijon-marker li::before,
.has-dijon-marker li::marker {
  color: #c29200;
}

.has-honey-color {
  color: #ec9707;
}
.has-honey-color a {
  color: #ec9707;
}

.has-honey-background,
.has-honey-background-color {
  background-color: #ec9707;
}

.has-honey-border {
  border: 1px solid #ec9707;
}

.has-honey-marker li::before,
.has-honey-marker li::marker {
  color: #ec9707;
}

.has-blonde-color {
  color: #fdeb75;
}
.has-blonde-color a {
  color: #fdeb75;
}

.has-blonde-background,
.has-blonde-background-color {
  background-color: #fdeb75;
}

.has-blonde-border {
  border: 1px solid #fdeb75;
}

.has-blonde-marker li::before,
.has-blonde-marker li::marker {
  color: #fdeb75;
}

.has-pineapple-color {
  color: #ffe327;
}
.has-pineapple-color a {
  color: #ffe327;
}

.has-pineapple-background,
.has-pineapple-background-color {
  background-color: #ffe327;
}

.has-pineapple-border {
  border: 1px solid #ffe327;
}

.has-pineapple-marker li::before,
.has-pineapple-marker li::marker {
  color: #ffe327;
}

.has-tuscansun-color {
  color: #fcd12a;
}
.has-tuscansun-color a {
  color: #fcd12a;
}

.has-tuscansun-background,
.has-tuscansun-background-color {
  background-color: #fcd12a;
}

.has-tuscansun-border {
  border: 1px solid #fcd12a;
}

.has-tuscansun-marker li::before,
.has-tuscansun-marker li::marker {
  color: #fcd12a;
}

.has-orange-color {
  color: #ff851b;
}
.has-orange-color a {
  color: #ff851b;
}

.has-orange-background,
.has-orange-background-color {
  background-color: #ff851b;
}

.has-orange-border {
  border: 1px solid #ff851b;
}

.has-orange-marker li::before,
.has-orange-marker li::marker {
  color: #ff851b;
}

.has-tangerine-color {
  color: #f98228;
}
.has-tangerine-color a {
  color: #f98228;
}

.has-tangerine-background,
.has-tangerine-background-color {
  background-color: #f98228;
}

.has-tangerine-border {
  border: 1px solid #f98228;
}

.has-tangerine-marker li::before,
.has-tangerine-marker li::marker {
  color: #f98228;
}

.has-merigold-color {
  color: #fdae1d;
}
.has-merigold-color a {
  color: #fdae1d;
}

.has-merigold-background,
.has-merigold-background-color {
  background-color: #fdae1d;
}

.has-merigold-border {
  border: 1px solid #fdae1d;
}

.has-merigold-marker li::before,
.has-merigold-marker li::marker {
  color: #fdae1d;
}

.has-cider-color {
  color: #b66827;
}
.has-cider-color a {
  color: #b66827;
}

.has-cider-background,
.has-cider-background-color {
  background-color: #b66827;
}

.has-cider-border {
  border: 1px solid #b66827;
}

.has-cider-marker li::before,
.has-cider-marker li::marker {
  color: #b66827;
}

.has-rust-color {
  color: #8c4005;
}
.has-rust-color a {
  color: #8c4005;
}

.has-rust-background,
.has-rust-background-color {
  background-color: #8c4005;
}

.has-rust-border {
  border: 1px solid #8c4005;
}

.has-rust-marker li::before,
.has-rust-marker li::marker {
  color: #8c4005;
}

.has-ginger-color {
  color: #bc5703;
}
.has-ginger-color a {
  color: #bc5703;
}

.has-ginger-background,
.has-ginger-background-color {
  background-color: #bc5703;
}

.has-ginger-border {
  border: 1px solid #bc5703;
}

.has-ginger-marker li::before,
.has-ginger-marker li::marker {
  color: #bc5703;
}

.has-tiger-color {
  color: #fb6b02;
}
.has-tiger-color a {
  color: #fb6b02;
}

.has-tiger-background,
.has-tiger-background-color {
  background-color: #fb6b02;
}

.has-tiger-border {
  border: 1px solid #fb6b02;
}

.has-tiger-marker li::before,
.has-tiger-marker li::marker {
  color: #fb6b02;
}

.has-bronze-color {
  color: #b2560c;
}
.has-bronze-color a {
  color: #b2560c;
}

.has-bronze-background,
.has-bronze-background-color {
  background-color: #b2560c;
}

.has-bronze-border {
  border: 1px solid #b2560c;
}

.has-bronze-marker li::before,
.has-bronze-marker li::marker {
  color: #b2560c;
}

.has-cantaloupe-color {
  color: #fca172;
}
.has-cantaloupe-color a {
  color: #fca172;
}

.has-cantaloupe-background,
.has-cantaloupe-background-color {
  background-color: #fca172;
}

.has-cantaloupe-border {
  border: 1px solid #fca172;
}

.has-cantaloupe-marker li::before,
.has-cantaloupe-marker li::marker {
  color: #fca172;
}

.has-apricot-color {
  color: #ed810f;
}
.has-apricot-color a {
  color: #ed810f;
}

.has-apricot-background,
.has-apricot-background-color {
  background-color: #ed810f;
}

.has-apricot-border {
  border: 1px solid #ed810f;
}

.has-apricot-marker li::before,
.has-apricot-marker li::marker {
  color: #ed810f;
}

.has-carrot-color {
  color: #ed7116;
}
.has-carrot-color a {
  color: #ed7116;
}

.has-carrot-background,
.has-carrot-background-color {
  background-color: #ed7116;
}

.has-carrot-border {
  border: 1px solid #ed7116;
}

.has-carrot-marker li::before,
.has-carrot-marker li::marker {
  color: #ed7116;
}

.has-squash-color {
  color: #c95c09;
}
.has-squash-color a {
  color: #c95c09;
}

.has-squash-background,
.has-squash-background-color {
  background-color: #c95c09;
}

.has-squash-border {
  border: 1px solid #c95c09;
}

.has-squash-marker li::before,
.has-squash-marker li::marker {
  color: #c95c09;
}

.has-spice-color {
  color: #7a3a03;
}
.has-spice-color a {
  color: #7a3a03;
}

.has-spice-background,
.has-spice-background-color {
  background-color: #7a3a03;
}

.has-spice-border {
  border: 1px solid #7a3a03;
}

.has-spice-marker li::before,
.has-spice-marker li::marker {
  color: #7a3a03;
}

.has-marmalade-color {
  color: #d16102;
}
.has-marmalade-color a {
  color: #d16102;
}

.has-marmalade-background,
.has-marmalade-background-color {
  background-color: #d16102;
}

.has-marmalade-border {
  border: 1px solid #d16102;
}

.has-marmalade-marker li::before,
.has-marmalade-marker li::marker {
  color: #d16102;
}

.has-amber-color {
  color: #893201;
}
.has-amber-color a {
  color: #893201;
}

.has-amber-background,
.has-amber-background-color {
  background-color: #893201;
}

.has-amber-border {
  border: 1px solid #893201;
}

.has-amber-marker li::before,
.has-amber-marker li::marker {
  color: #893201;
}

.has-sandstone-color {
  color: #d57128;
}
.has-sandstone-color a {
  color: #d57128;
}

.has-sandstone-background,
.has-sandstone-background-color {
  background-color: #d57128;
}

.has-sandstone-border {
  border: 1px solid #d57128;
}

.has-sandstone-marker li::before,
.has-sandstone-marker li::marker {
  color: #d57128;
}

.has-yam-color {
  color: #cc5801;
}
.has-yam-color a {
  color: #cc5801;
}

.has-yam-background,
.has-yam-background-color {
  background-color: #cc5801;
}

.has-yam-border {
  border: 1px solid #cc5801;
}

.has-yam-marker li::before,
.has-yam-marker li::marker {
  color: #cc5801;
}

.has-red-color {
  color: #ff4136;
}
.has-red-color a {
  color: #ff4136;
}

.has-red-background,
.has-red-background-color {
  background-color: #ff4136;
}

.has-red-border {
  border: 1px solid #ff4136;
}

.has-red-marker li::before,
.has-red-marker li::marker {
  color: #ff4136;
}

.has-cherry-color {
  color: #9a0f02;
}
.has-cherry-color a {
  color: #9a0f02;
}

.has-cherry-background,
.has-cherry-background-color {
  background-color: #9a0f02;
}

.has-cherry-border {
  border: 1px solid #9a0f02;
}

.has-cherry-marker li::before,
.has-cherry-marker li::marker {
  color: #9a0f02;
}

.has-rose-color {
  color: #e2252a;
}
.has-rose-color a {
  color: #e2252a;
}

.has-rose-background,
.has-rose-background-color {
  background-color: #e2252a;
}

.has-rose-border {
  border: 1px solid #e2252a;
}

.has-rose-marker li::before,
.has-rose-marker li::marker {
  color: #e2252a;
}

.has-jam-color {
  color: #600f0b;
}
.has-jam-color a {
  color: #600f0b;
}

.has-jam-background,
.has-jam-background-color {
  background-color: #600f0b;
}

.has-jam-border {
  border: 1px solid #600f0b;
}

.has-jam-marker li::before,
.has-jam-marker li::marker {
  color: #600f0b;
}

.has-merlot-color {
  color: #541f1b;
}
.has-merlot-color a {
  color: #541f1b;
}

.has-merlot-background,
.has-merlot-background-color {
  background-color: #541f1b;
}

.has-merlot-border {
  border: 1px solid #541f1b;
}

.has-merlot-marker li::before,
.has-merlot-marker li::marker {
  color: #541f1b;
}

.has-garnet-color {
  color: #5f0a04;
}
.has-garnet-color a {
  color: #5f0a04;
}

.has-garnet-background,
.has-garnet-background-color {
  background-color: #5f0a04;
}

.has-garnet-border {
  border: 1px solid #5f0a04;
}

.has-garnet-marker li::before,
.has-garnet-marker li::marker {
  color: #5f0a04;
}

.has-crimson-color {
  color: #b8100a;
}
.has-crimson-color a {
  color: #b8100a;
}

.has-crimson-background,
.has-crimson-background-color {
  background-color: #b8100a;
}

.has-crimson-border {
  border: 1px solid #b8100a;
}

.has-crimson-marker li::before,
.has-crimson-marker li::marker {
  color: #b8100a;
}

.has-ruby-color {
  color: #900503;
}
.has-ruby-color a {
  color: #900503;
}

.has-ruby-background,
.has-ruby-background-color {
  background-color: #900503;
}

.has-ruby-border {
  border: 1px solid #900503;
}

.has-ruby-marker li::before,
.has-ruby-marker li::marker {
  color: #900503;
}

.has-scarlet-color {
  color: #910d08;
}
.has-scarlet-color a {
  color: #910d08;
}

.has-scarlet-background,
.has-scarlet-background-color {
  background-color: #910d08;
}

.has-scarlet-border {
  border: 1px solid #910d08;
}

.has-scarlet-marker li::before,
.has-scarlet-marker li::marker {
  color: #910d08;
}

.has-redwine-color {
  color: #4c0805;
}
.has-redwine-color a {
  color: #4c0805;
}

.has-redwine-background,
.has-redwine-background-color {
  background-color: #4c0805;
}

.has-redwine-border {
  border: 1px solid #4c0805;
}

.has-redwine-marker li::before,
.has-redwine-marker li::marker {
  color: #4c0805;
}

.has-redapple-color {
  color: #a91b0d;
}
.has-redapple-color a {
  color: #a91b0d;
}

.has-redapple-background,
.has-redapple-background-color {
  background-color: #a91b0d;
}

.has-redapple-border {
  border: 1px solid #a91b0d;
}

.has-redapple-marker li::before,
.has-redapple-marker li::marker {
  color: #a91b0d;
}

.has-mahogany-color {
  color: #420d09;
}
.has-mahogany-color a {
  color: #420d09;
}

.has-mahogany-background,
.has-mahogany-background-color {
  background-color: #420d09;
}

.has-mahogany-border {
  border: 1px solid #420d09;
}

.has-mahogany-marker li::before,
.has-mahogany-marker li::marker {
  color: #420d09;
}

.has-blood-color {
  color: #710c04;
}
.has-blood-color a {
  color: #710c04;
}

.has-blood-background,
.has-blood-background-color {
  background-color: #710c04;
}

.has-blood-border {
  border: 1px solid #710c04;
}

.has-blood-marker li::before,
.has-blood-marker li::marker {
  color: #710c04;
}

.has-sangria-color {
  color: #5f1914;
}
.has-sangria-color a {
  color: #5f1914;
}

.has-sangria-background,
.has-sangria-background-color {
  background-color: #5f1914;
}

.has-sangria-border {
  border: 1px solid #5f1914;
}

.has-sangria-marker li::before,
.has-sangria-marker li::marker {
  color: #5f1914;
}

.has-currant-color {
  color: #670c07;
}
.has-currant-color a {
  color: #670c07;
}

.has-currant-background,
.has-currant-background-color {
  background-color: #670c07;
}

.has-currant-border {
  border: 1px solid #670c07;
}

.has-currant-marker li::before,
.has-currant-marker li::marker {
  color: #670c07;
}

.has-blush-color {
  color: #bb544a;
}
.has-blush-color a {
  color: #bb544a;
}

.has-blush-background,
.has-blush-background-color {
  background-color: #bb544a;
}

.has-blush-border {
  border: 1px solid #bb544a;
}

.has-blush-marker li::before,
.has-blush-marker li::marker {
  color: #bb544a;
}

.has-candy-color {
  color: #d31603;
}
.has-candy-color a {
  color: #d31603;
}

.has-candy-background,
.has-candy-background-color {
  background-color: #d31603;
}

.has-candy-border {
  border: 1px solid #d31603;
}

.has-candy-marker li::before,
.has-candy-marker li::marker {
  color: #d31603;
}

.has-lipstick-color {
  color: #9b0f02;
}
.has-lipstick-color a {
  color: #9b0f02;
}

.has-lipstick-background,
.has-lipstick-background-color {
  background-color: #9b0f02;
}

.has-lipstick-border {
  border: 1px solid #9b0f02;
}

.has-lipstick-marker li::before,
.has-lipstick-marker li::marker {
  color: #9b0f02;
}

.has-pink-color {
  color: #f69acd;
}
.has-pink-color a {
  color: #f69acd;
}

.has-pink-background,
.has-pink-background-color {
  background-color: #f69acd;
}

.has-pink-border {
  border: 1px solid #f69acd;
}

.has-pink-marker li::before,
.has-pink-marker li::marker {
  color: #f69acd;
}

.has-fuchsia-color {
  color: #f012be;
}
.has-fuchsia-color a {
  color: #f012be;
}

.has-fuchsia-background,
.has-fuchsia-background-color {
  background-color: #f012be;
}

.has-fuchsia-border {
  border: 1px solid #f012be;
}

.has-fuchsia-marker li::before,
.has-fuchsia-marker li::marker {
  color: #f012be;
}

.has-punch-color {
  color: #f25278;
}
.has-punch-color a {
  color: #f25278;
}

.has-punch-background,
.has-punch-background-color {
  background-color: #f25278;
}

.has-punch-border {
  border: 1px solid #f25278;
}

.has-punch-marker li::before,
.has-punch-marker li::marker {
  color: #f25278;
}

.has-watermelon-color {
  color: #fe809c;
}
.has-watermelon-color a {
  color: #fe809c;
}

.has-watermelon-background,
.has-watermelon-background-color {
  background-color: #fe809c;
}

.has-watermelon-border {
  border: 1px solid #fe809c;
}

.has-watermelon-marker li::before,
.has-watermelon-marker li::marker {
  color: #fe809c;
}

.has-flamingo-color {
  color: #fda4b8;
}
.has-flamingo-color a {
  color: #fda4b8;
}

.has-flamingo-background,
.has-flamingo-background-color {
  background-color: #fda4b8;
}

.has-flamingo-border {
  border: 1px solid #fda4b8;
}

.has-flamingo-marker li::before,
.has-flamingo-marker li::marker {
  color: #fda4b8;
}

.has-rouge-color {
  color: #f26c8c;
}
.has-rouge-color a {
  color: #f26c8c;
}

.has-rouge-background,
.has-rouge-background-color {
  background-color: #f26c8c;
}

.has-rouge-border {
  border: 1px solid #f26c8c;
}

.has-rouge-marker li::before,
.has-rouge-marker li::marker {
  color: #f26c8c;
}

.has-salmon-color {
  color: #fdab9f;
}
.has-salmon-color a {
  color: #fdab9f;
}

.has-salmon-background,
.has-salmon-background-color {
  background-color: #fdab9f;
}

.has-salmon-border {
  border: 1px solid #fdab9f;
}

.has-salmon-marker li::before,
.has-salmon-marker li::marker {
  color: #fdab9f;
}

.has-coral-color {
  color: #fe7d67;
}
.has-coral-color a {
  color: #fe7d67;
}

.has-coral-background,
.has-coral-background-color {
  background-color: #fe7d67;
}

.has-coral-border {
  border: 1px solid #fe7d67;
}

.has-coral-marker li::before,
.has-coral-marker li::marker {
  color: #fe7d67;
}

.has-peach-color {
  color: #fb9483;
}
.has-peach-color a {
  color: #fb9483;
}

.has-peach-background,
.has-peach-background-color {
  background-color: #fb9483;
}

.has-peach-border {
  border: 1px solid #fb9483;
}

.has-peach-marker li::before,
.has-peach-marker li::marker {
  color: #fb9483;
}

.has-strawberry-color {
  color: #fc4c4e;
}
.has-strawberry-color a {
  color: #fc4c4e;
}

.has-strawberry-background,
.has-strawberry-background-color {
  background-color: #fc4c4e;
}

.has-strawberry-border {
  border: 1px solid #fc4c4e;
}

.has-strawberry-marker li::before,
.has-strawberry-marker li::marker {
  color: #fc4c4e;
}

.has-rosewood-color {
  color: #a04242;
}
.has-rosewood-color a {
  color: #a04242;
}

.has-rosewood-background,
.has-rosewood-background-color {
  background-color: #a04242;
}

.has-rosewood-border {
  border: 1px solid #a04242;
}

.has-rosewood-marker li::before,
.has-rosewood-marker li::marker {
  color: #a04242;
}

.has-lemonade-color {
  color: #fabacb;
}
.has-lemonade-color a {
  color: #fabacb;
}

.has-lemonade-background,
.has-lemonade-background-color {
  background-color: #fabacb;
}

.has-lemonade-border {
  border: 1px solid #fabacb;
}

.has-lemonade-marker li::before,
.has-lemonade-marker li::marker {
  color: #fabacb;
}

.has-taffy-color {
  color: #fa85c4;
}
.has-taffy-color a {
  color: #fa85c4;
}

.has-taffy-background,
.has-taffy-background-color {
  background-color: #fa85c4;
}

.has-taffy-border {
  border: 1px solid #fa85c4;
}

.has-taffy-marker li::before,
.has-taffy-marker li::marker {
  color: #fa85c4;
}

.has-bubblegum-color {
  color: #fd5ca8;
}
.has-bubblegum-color a {
  color: #fd5ca8;
}

.has-bubblegum-background,
.has-bubblegum-background-color {
  background-color: #fd5ca8;
}

.has-bubblegum-border {
  border: 1px solid #fd5ca8;
}

.has-bubblegum-marker li::before,
.has-bubblegum-marker li::marker {
  color: #fd5ca8;
}

.has-balletslipper-color {
  color: #f69abf;
}
.has-balletslipper-color a {
  color: #f69abf;
}

.has-balletslipper-background,
.has-balletslipper-background-color {
  background-color: #f69abf;
}

.has-balletslipper-border {
  border: 1px solid #f69abf;
}

.has-balletslipper-marker li::before,
.has-balletslipper-marker li::marker {
  color: #f69abf;
}

.has-crepe-color {
  color: #f1b7c6;
}
.has-crepe-color a {
  color: #f1b7c6;
}

.has-crepe-background,
.has-crepe-background-color {
  background-color: #f1b7c6;
}

.has-crepe-border {
  border: 1px solid #f1b7c6;
}

.has-crepe-marker li::before,
.has-crepe-marker li::marker {
  color: #f1b7c6;
}

.has-maroon-color {
  color: #85144b;
}
.has-maroon-color a {
  color: #85144b;
}

.has-maroon-background,
.has-maroon-background-color {
  background-color: #85144b;
}

.has-maroon-border {
  border: 1px solid #85144b;
}

.has-maroon-marker li::before,
.has-maroon-marker li::marker {
  color: #85144b;
}

.has-hotpink-color {
  color: #ff1696;
}
.has-hotpink-color a {
  color: #ff1696;
}

.has-hotpink-background,
.has-hotpink-background-color {
  background-color: #ff1696;
}

.has-hotpink-border {
  border: 1px solid #ff1696;
}

.has-hotpink-marker li::before,
.has-hotpink-marker li::marker {
  color: #ff1696;
}

.has-purple-color {
  color: #b10dc9;
}
.has-purple-color a {
  color: #b10dc9;
}

.has-purple-background,
.has-purple-background-color {
  background-color: #b10dc9;
}

.has-purple-border {
  border: 1px solid #b10dc9;
}

.has-purple-marker li::before,
.has-purple-marker li::marker {
  color: #b10dc9;
}

.has-mauve-color {
  color: #7a4a89;
}
.has-mauve-color a {
  color: #7a4a89;
}

.has-mauve-background,
.has-mauve-background-color {
  background-color: #7a4a89;
}

.has-mauve-border {
  border: 1px solid #7a4a89;
}

.has-mauve-marker li::before,
.has-mauve-marker li::marker {
  color: #7a4a89;
}

.has-violet-color {
  color: #710193;
}
.has-violet-color a {
  color: #710193;
}

.has-violet-background,
.has-violet-background-color {
  background-color: #710193;
}

.has-violet-border {
  border: 1px solid #710193;
}

.has-violet-marker li::before,
.has-violet-marker li::marker {
  color: #710193;
}

.has-boysenberry-color {
  color: #630536;
}
.has-boysenberry-color a {
  color: #630536;
}

.has-boysenberry-background,
.has-boysenberry-background-color {
  background-color: #630536;
}

.has-boysenberry-border {
  border: 1px solid #630536;
}

.has-boysenberry-marker li::before,
.has-boysenberry-marker li::marker {
  color: #630536;
}

.has-lavender-color {
  color: #e3a0f6;
}
.has-lavender-color a {
  color: #e3a0f6;
}

.has-lavender-background,
.has-lavender-background-color {
  background-color: #e3a0f6;
}

.has-lavender-border {
  border: 1px solid #e3a0f6;
}

.has-lavender-marker li::before,
.has-lavender-marker li::marker {
  color: #e3a0f6;
}

.has-plum-color {
  color: #601a36;
}
.has-plum-color a {
  color: #601a36;
}

.has-plum-background,
.has-plum-background-color {
  background-color: #601a36;
}

.has-plum-border {
  border: 1px solid #601a36;
}

.has-plum-marker li::before,
.has-plum-marker li::marker {
  color: #601a36;
}

.has-lilac-color {
  color: #b65fcd;
}
.has-lilac-color a {
  color: #b65fcd;
}

.has-lilac-background,
.has-lilac-background-color {
  background-color: #b65fcd;
}

.has-lilac-border {
  border: 1px solid #b65fcd;
}

.has-lilac-marker li::before,
.has-lilac-marker li::marker {
  color: #b65fcd;
}

.has-periwinkle-color {
  color: #be93d4;
}
.has-periwinkle-color a {
  color: #be93d4;
}

.has-periwinkle-background,
.has-periwinkle-background-color {
  background-color: #be93d4;
}

.has-periwinkle-border {
  border: 1px solid #be93d4;
}

.has-periwinkle-marker li::before,
.has-periwinkle-marker li::marker {
  color: #be93d4;
}

.has-eggplant-color {
  color: #311431;
}
.has-eggplant-color a {
  color: #311431;
}

.has-eggplant-background,
.has-eggplant-background-color {
  background-color: #311431;
}

.has-eggplant-border {
  border: 1px solid #311431;
}

.has-eggplant-marker li::before,
.has-eggplant-marker li::marker {
  color: #311431;
}

.has-iris-color {
  color: #9866c5;
}
.has-iris-color a {
  color: #9866c5;
}

.has-iris-background,
.has-iris-background-color {
  background-color: #9866c5;
}

.has-iris-border {
  border: 1px solid #9866c5;
}

.has-iris-marker li::before,
.has-iris-marker li::marker {
  color: #9866c5;
}

.has-heather-color {
  color: #9b7cb9;
}
.has-heather-color a {
  color: #9b7cb9;
}

.has-heather-background,
.has-heather-background-color {
  background-color: #9b7cb9;
}

.has-heather-border {
  border: 1px solid #9b7cb9;
}

.has-heather-marker li::before,
.has-heather-marker li::marker {
  color: #9b7cb9;
}

.has-amethyst-color {
  color: #a45de4;
}
.has-amethyst-color a {
  color: #a45de4;
}

.has-amethyst-background,
.has-amethyst-background-color {
  background-color: #a45de4;
}

.has-amethyst-border {
  border: 1px solid #a45de4;
}

.has-amethyst-marker li::before,
.has-amethyst-marker li::marker {
  color: #a45de4;
}

.has-raisin-color {
  color: #290916;
}
.has-raisin-color a {
  color: #290916;
}

.has-raisin-background,
.has-raisin-background-color {
  background-color: #290916;
}

.has-raisin-border {
  border: 1px solid #290916;
}

.has-raisin-marker li::before,
.has-raisin-marker li::marker {
  color: #290916;
}

.has-orchid-color {
  color: #af69ee;
}
.has-orchid-color a {
  color: #af69ee;
}

.has-orchid-background,
.has-orchid-background-color {
  background-color: #af69ee;
}

.has-orchid-border {
  border: 1px solid #af69ee;
}

.has-orchid-marker li::before,
.has-orchid-marker li::marker {
  color: #af69ee;
}

.has-mulberry-color {
  color: #4d0220;
}
.has-mulberry-color a {
  color: #4d0220;
}

.has-mulberry-background,
.has-mulberry-background-color {
  background-color: #4d0220;
}

.has-mulberry-border {
  border: 1px solid #4d0220;
}

.has-mulberry-marker li::before,
.has-mulberry-marker li::marker {
  color: #4d0220;
}

.has-green-color {
  color: #2ecc40;
}
.has-green-color a {
  color: #2ecc40;
}

.has-green-background,
.has-green-background-color {
  background-color: #2ecc40;
}

.has-green-border {
  border: 1px solid #2ecc40;
}

.has-green-marker li::before,
.has-green-marker li::marker {
  color: #2ecc40;
}

.has-chartreuse-color {
  color: #b0fd38;
}
.has-chartreuse-color a {
  color: #b0fd38;
}

.has-chartreuse-background,
.has-chartreuse-background-color {
  background-color: #b0fd38;
}

.has-chartreuse-border {
  border: 1px solid #b0fd38;
}

.has-chartreuse-marker li::before,
.has-chartreuse-marker li::marker {
  color: #b0fd38;
}

.has-juniper-color {
  color: #395311;
}
.has-juniper-color a {
  color: #395311;
}

.has-juniper-background,
.has-juniper-background-color {
  background-color: #395311;
}

.has-juniper-border {
  border: 1px solid #395311;
}

.has-juniper-marker li::before,
.has-juniper-marker li::marker {
  color: #395311;
}

.has-sage-color {
  color: #728c69;
}
.has-sage-color a {
  color: #728c69;
}

.has-sage-background,
.has-sage-background-color {
  background-color: #728c69;
}

.has-sage-border {
  border: 1px solid #728c69;
}

.has-sage-marker li::before,
.has-sage-marker li::marker {
  color: #728c69;
}

.has-lime-color {
  color: #01ff70;
}
.has-lime-color a {
  color: #01ff70;
}

.has-lime-background,
.has-lime-background-color {
  background-color: #01ff70;
}

.has-lime-border {
  border: 1px solid #01ff70;
}

.has-lime-marker li::before,
.has-lime-marker li::marker {
  color: #01ff70;
}

.has-fern-color {
  color: #5dbc64;
}
.has-fern-color a {
  color: #5dbc64;
}

.has-fern-background,
.has-fern-background-color {
  background-color: #5dbc64;
}

.has-fern-border {
  border: 1px solid #5dbc64;
}

.has-fern-marker li::before,
.has-fern-marker li::marker {
  color: #5dbc64;
}

.has-olive-color {
  color: #98bf64;
}
.has-olive-color a {
  color: #98bf64;
}

.has-olive-background,
.has-olive-background-color {
  background-color: #98bf64;
}

.has-olive-border {
  border: 1px solid #98bf64;
}

.has-olive-marker li::before,
.has-olive-marker li::marker {
  color: #98bf64;
}

.has-emerald-color {
  color: #038911;
}
.has-emerald-color a {
  color: #038911;
}

.has-emerald-background,
.has-emerald-background-color {
  background-color: #038911;
}

.has-emerald-border {
  border: 1px solid #038911;
}

.has-emerald-marker li::before,
.has-emerald-marker li::marker {
  color: #038911;
}

.has-pear-color {
  color: #74b62d;
}
.has-pear-color a {
  color: #74b62d;
}

.has-pear-background,
.has-pear-background-color {
  background-color: #74b62d;
}

.has-pear-border {
  border: 1px solid #74b62d;
}

.has-pear-marker li::before,
.has-pear-marker li::marker {
  color: #74b62d;
}

.has-moss-color {
  color: #476d1e;
}
.has-moss-color a {
  color: #476d1e;
}

.has-moss-background,
.has-moss-background-color {
  background-color: #476d1e;
}

.has-moss-border {
  border: 1px solid #476d1e;
}

.has-moss-marker li::before,
.has-moss-marker li::marker {
  color: #476d1e;
}

.has-shamrock-color {
  color: #03ac13;
}
.has-shamrock-color a {
  color: #03ac13;
}

.has-shamrock-background,
.has-shamrock-background-color {
  background-color: #03ac13;
}

.has-shamrock-border {
  border: 1px solid #03ac13;
}

.has-shamrock-marker li::before,
.has-shamrock-marker li::marker {
  color: #03ac13;
}

.has-seafoam-color {
  color: #3cec96;
}
.has-seafoam-color a {
  color: #3cec96;
}

.has-seafoam-background,
.has-seafoam-background-color {
  background-color: #3cec96;
}

.has-seafoam-border {
  border: 1px solid #3cec96;
}

.has-seafoam-marker li::before,
.has-seafoam-marker li::marker {
  color: #3cec96;
}

.has-pine-color {
  color: #24501e;
}
.has-pine-color a {
  color: #24501e;
}

.has-pine-background,
.has-pine-background-color {
  background-color: #24501e;
}

.has-pine-border {
  border: 1px solid #24501e;
}

.has-pine-marker li::before,
.has-pine-marker li::marker {
  color: #24501e;
}

.has-parakeet-color {
  color: #02c04a;
}
.has-parakeet-color a {
  color: #02c04a;
}

.has-parakeet-background,
.has-parakeet-background-color {
  background-color: #02c04a;
}

.has-parakeet-border {
  border: 1px solid #02c04a;
}

.has-parakeet-marker li::before,
.has-parakeet-marker li::marker {
  color: #02c04a;
}

.has-mint-color {
  color: #98ecc3;
}
.has-mint-color a {
  color: #98ecc3;
}

.has-mint-background,
.has-mint-background-color {
  background-color: #98ecc3;
}

.has-mint-border {
  border: 1px solid #98ecc3;
}

.has-mint-marker li::before,
.has-mint-marker li::marker {
  color: #98ecc3;
}

.has-seaweed-color {
  color: #354b21;
}
.has-seaweed-color a {
  color: #354b21;
}

.has-seaweed-background,
.has-seaweed-background-color {
  background-color: #354b21;
}

.has-seaweed-border {
  border: 1px solid #354b21;
}

.has-seaweed-marker li::before,
.has-seaweed-marker li::marker {
  color: #354b21;
}

.has-pickle-color {
  color: #5a7d36;
}
.has-pickle-color a {
  color: #5a7d36;
}

.has-pickle-background,
.has-pickle-background-color {
  background-color: #5a7d36;
}

.has-pickle-border {
  border: 1px solid #5a7d36;
}

.has-pickle-marker li::before,
.has-pickle-marker li::marker {
  color: #5a7d36;
}

.has-pistachio-color {
  color: #b2d3c1;
}
.has-pistachio-color a {
  color: #b2d3c1;
}

.has-pistachio-background,
.has-pistachio-background-color {
  background-color: #b2d3c1;
}

.has-pistachio-border {
  border: 1px solid #b2d3c1;
}

.has-pistachio-marker li::before,
.has-pistachio-marker li::marker {
  color: #b2d3c1;
}

.has-basil-color {
  color: #32622d;
}
.has-basil-color a {
  color: #32622d;
}

.has-basil-background,
.has-basil-background-color {
  background-color: #32622d;
}

.has-basil-border {
  border: 1px solid #32622d;
}

.has-basil-marker li::before,
.has-basil-marker li::marker {
  color: #32622d;
}

.has-crocodile-color {
  color: #5f7c3a;
}
.has-crocodile-color a {
  color: #5f7c3a;
}

.has-crocodile-background,
.has-crocodile-background-color {
  background-color: #5f7c3a;
}

.has-crocodile-border {
  border: 1px solid #5f7c3a;
}

.has-crocodile-marker li::before,
.has-crocodile-marker li::marker {
  color: #5f7c3a;
}

.has-brown-color {
  color: #241709;
}
.has-brown-color a {
  color: #241709;
}

.has-brown-background,
.has-brown-background-color {
  background-color: #241709;
}

.has-brown-border {
  border: 1px solid #241709;
}

.has-brown-marker li::before,
.has-brown-marker li::marker {
  color: #241709;
}

.has-coffee-color {
  color: #4b371c;
}
.has-coffee-color a {
  color: #4b371c;
}

.has-coffee-background,
.has-coffee-background-color {
  background-color: #4b371c;
}

.has-coffee-border {
  border: 1px solid #4b371c;
}

.has-coffee-marker li::before,
.has-coffee-marker li::marker {
  color: #4b371c;
}

.has-mocha-color {
  color: #3c290d;
}
.has-mocha-color a {
  color: #3c290d;
}

.has-mocha-background,
.has-mocha-background-color {
  background-color: #3c290d;
}

.has-mocha-border {
  border: 1px solid #3c290d;
}

.has-mocha-marker li::before,
.has-mocha-marker li::marker {
  color: #3c290d;
}

.has-peanut-color {
  color: #795c34;
}
.has-peanut-color a {
  color: #795c34;
}

.has-peanut-background,
.has-peanut-background-color {
  background-color: #795c34;
}

.has-peanut-border {
  border: 1px solid #795c34;
}

.has-peanut-marker li::before,
.has-peanut-marker li::marker {
  color: #795c34;
}

.has-carob-color {
  color: #35260f;
}
.has-carob-color a {
  color: #35260f;
}

.has-carob-background,
.has-carob-background-color {
  background-color: #35260f;
}

.has-carob-border {
  border: 1px solid #35260f;
}

.has-carob-marker li::before,
.has-carob-marker li::marker {
  color: #35260f;
}

.has-hickory-color {
  color: #371d10;
}
.has-hickory-color a {
  color: #371d10;
}

.has-hickory-background,
.has-hickory-background-color {
  background-color: #371d10;
}

.has-hickory-border {
  border: 1px solid #371d10;
}

.has-hickory-marker li::before,
.has-hickory-marker li::marker {
  color: #371d10;
}

.has-pecan-color {
  color: #4a2512;
}
.has-pecan-color a {
  color: #4a2512;
}

.has-pecan-background,
.has-pecan-background-color {
  background-color: #4a2512;
}

.has-pecan-border {
  border: 1px solid #4a2512;
}

.has-pecan-marker li::before,
.has-pecan-marker li::marker {
  color: #4a2512;
}

.has-walnut-color {
  color: #432711;
}
.has-walnut-color a {
  color: #432711;
}

.has-walnut-background,
.has-walnut-background-color {
  background-color: #432711;
}

.has-walnut-border {
  border: 1px solid #432711;
}

.has-walnut-marker li::before,
.has-walnut-marker li::marker {
  color: #432711;
}

.has-caramel-color {
  color: #66360f;
}
.has-caramel-color a {
  color: #66360f;
}

.has-caramel-background,
.has-caramel-background-color {
  background-color: #66360f;
}

.has-caramel-border {
  border: 1px solid #66360f;
}

.has-caramel-marker li::before,
.has-caramel-marker li::marker {
  color: #66360f;
}

.has-gingerbread-color {
  color: #5d2c04;
}
.has-gingerbread-color a {
  color: #5d2c04;
}

.has-gingerbread-background,
.has-gingerbread-background-color {
  background-color: #5d2c04;
}

.has-gingerbread-border {
  border: 1px solid #5d2c04;
}

.has-gingerbread-marker li::before,
.has-gingerbread-marker li::marker {
  color: #5d2c04;
}

.has-chocolate-color {
  color: #2c1603;
}
.has-chocolate-color a {
  color: #2c1603;
}

.has-chocolate-background,
.has-chocolate-background-color {
  background-color: #2c1603;
}

.has-chocolate-border {
  border: 1px solid #2c1603;
}

.has-chocolate-marker li::before,
.has-chocolate-marker li::marker {
  color: #2c1603;
}

.has-tortilla-color {
  color: #9a7b4f;
}
.has-tortilla-color a {
  color: #9a7b4f;
}

.has-tortilla-background,
.has-tortilla-background-color {
  background-color: #9a7b4f;
}

.has-tortilla-border {
  border: 1px solid #9a7b4f;
}

.has-tortilla-marker li::before,
.has-tortilla-marker li::marker {
  color: #9a7b4f;
}

.has-umber-color {
  color: #352415;
}
.has-umber-color a {
  color: #352415;
}

.has-umber-background,
.has-umber-background-color {
  background-color: #352415;
}

.has-umber-border {
  border: 1px solid #352415;
}

.has-umber-marker li::before,
.has-umber-marker li::marker {
  color: #352415;
}

.has-tawny-color {
  color: #7e491d;
}
.has-tawny-color a {
  color: #7e491d;
}

.has-tawny-background,
.has-tawny-background-color {
  background-color: #7e491d;
}

.has-tawny-border {
  border: 1px solid #7e491d;
}

.has-tawny-marker li::before,
.has-tawny-marker li::marker {
  color: #7e491d;
}

.has-brunette-color {
  color: #391e07;
}
.has-brunette-color a {
  color: #391e07;
}

.has-brunette-background,
.has-brunette-background-color {
  background-color: #391e07;
}

.has-brunette-border {
  border: 1px solid #391e07;
}

.has-brunette-marker li::before,
.has-brunette-marker li::marker {
  color: #391e07;
}

.has-cinammon-color {
  color: #642b0d;
}
.has-cinammon-color a {
  color: #642b0d;
}

.has-cinammon-background,
.has-cinammon-background-color {
  background-color: #642b0d;
}

.has-cinammon-border {
  border: 1px solid #642b0d;
}

.has-cinammon-marker li::before,
.has-cinammon-marker li::marker {
  color: #642b0d;
}

.has-penny-color {
  color: #522915;
}
.has-penny-color a {
  color: #522915;
}

.has-penny-background,
.has-penny-background-color {
  background-color: #522915;
}

.has-penny-border {
  border: 1px solid #522915;
}

.has-penny-marker li::before,
.has-penny-marker li::marker {
  color: #522915;
}

.has-grey-color {
  color: #aaaaaa;
}
.has-grey-color a {
  color: #aaaaaa;
}

.has-grey-background,
.has-grey-background-color {
  background-color: #aaaaaa;
}

.has-grey-border {
  border: 1px solid #aaaaaa;
}

.has-grey-marker li::before,
.has-grey-marker li::marker {
  color: #aaaaaa;
}

.has-shadow-color {
  color: #373737;
}
.has-shadow-color a {
  color: #373737;
}

.has-shadow-background,
.has-shadow-background-color {
  background-color: #373737;
}

.has-shadow-border {
  border: 1px solid #373737;
}

.has-shadow-marker li::before,
.has-shadow-marker li::marker {
  color: #373737;
}

.has-graphite-color {
  color: #584d5b;
}
.has-graphite-color a {
  color: #584d5b;
}

.has-graphite-background,
.has-graphite-background-color {
  background-color: #584d5b;
}

.has-graphite-border {
  border: 1px solid #584d5b;
}

.has-graphite-marker li::before,
.has-graphite-marker li::marker {
  color: #584d5b;
}

.has-iron-color {
  color: #332d31;
}
.has-iron-color a {
  color: #332d31;
}

.has-iron-background,
.has-iron-background-color {
  background-color: #332d31;
}

.has-iron-border {
  border: 1px solid #332d31;
}

.has-iron-marker li::before,
.has-iron-marker li::marker {
  color: #332d31;
}

.has-pewter-color {
  color: #6a6880;
}
.has-pewter-color a {
  color: #6a6880;
}

.has-pewter-background,
.has-pewter-background-color {
  background-color: #6a6880;
}

.has-pewter-border {
  border: 1px solid #6a6880;
}

.has-pewter-marker li::before,
.has-pewter-marker li::marker {
  color: #6a6880;
}

.has-cloud-color {
  color: #c5c5d0;
}
.has-cloud-color a {
  color: #c5c5d0;
}

.has-cloud-background,
.has-cloud-background-color {
  background-color: #c5c5d0;
}

.has-cloud-border {
  border: 1px solid #c5c5d0;
}

.has-cloud-marker li::before,
.has-cloud-marker li::marker {
  color: #c5c5d0;
}

.has-silver-color {
  color: #dddddd;
}
.has-silver-color a {
  color: #dddddd;
}

.has-silver-background,
.has-silver-background-color {
  background-color: #dddddd;
}

.has-silver-border {
  border: 1px solid #dddddd;
}

.has-silver-marker li::before,
.has-silver-marker li::marker {
  color: #dddddd;
}

.has-smoke-color {
  color: #59515f;
}
.has-smoke-color a {
  color: #59515f;
}

.has-smoke-background,
.has-smoke-background-color {
  background-color: #59515f;
}

.has-smoke-border {
  border: 1px solid #59515f;
}

.has-smoke-marker li::before,
.has-smoke-marker li::marker {
  color: #59515f;
}

.has-anchor-color {
  color: #42424c;
}
.has-anchor-color a {
  color: #42424c;
}

.has-anchor-background,
.has-anchor-background-color {
  background-color: #42424c;
}

.has-anchor-border {
  border: 1px solid #42424c;
}

.has-anchor-marker li::before,
.has-anchor-marker li::marker {
  color: #42424c;
}

.has-ash-color {
  color: #554c4d;
}
.has-ash-color a {
  color: #554c4d;
}

.has-ash-background,
.has-ash-background-color {
  background-color: #554c4d;
}

.has-ash-border {
  border: 1px solid #554c4d;
}

.has-ash-marker li::before,
.has-ash-marker li::marker {
  color: #554c4d;
}

.has-porpoise-color {
  color: #4d4c5c;
}
.has-porpoise-color a {
  color: #4d4c5c;
}

.has-porpoise-background,
.has-porpoise-background-color {
  background-color: #4d4c5c;
}

.has-porpoise-border {
  border: 1px solid #4d4c5c;
}

.has-porpoise-marker li::before,
.has-porpoise-marker li::marker {
  color: #4d4c5c;
}

.has-dove-color {
  color: #7c6e7f;
}
.has-dove-color a {
  color: #7c6e7f;
}

.has-dove-background,
.has-dove-background-color {
  background-color: #7c6e7f;
}

.has-dove-border {
  border: 1px solid #7c6e7f;
}

.has-dove-marker li::before,
.has-dove-marker li::marker {
  color: #7c6e7f;
}

.has-fog-color {
  color: #655965;
}
.has-fog-color a {
  color: #655965;
}

.has-fog-background,
.has-fog-background-color {
  background-color: #655965;
}

.has-fog-border {
  border: 1px solid #655965;
}

.has-fog-marker li::before,
.has-fog-marker li::marker {
  color: #655965;
}

.has-flint-color {
  color: #7d7c9c;
}
.has-flint-color a {
  color: #7d7c9c;
}

.has-flint-background,
.has-flint-background-color {
  background-color: #7d7c9c;
}

.has-flint-border {
  border: 1px solid #7d7c9c;
}

.has-flint-marker li::before,
.has-flint-marker li::marker {
  color: #7d7c9c;
}

.has-pebble-color {
  color: #333333;
}
.has-pebble-color a {
  color: #333333;
}

.has-pebble-background,
.has-pebble-background-color {
  background-color: #333333;
}

.has-pebble-border {
  border: 1px solid #333333;
}

.has-pebble-marker li::before,
.has-pebble-marker li::marker {
  color: #333333;
}

.has-lead-color {
  color: #403f4e;
}
.has-lead-color a {
  color: #403f4e;
}

.has-lead-background,
.has-lead-background-color {
  background-color: #403f4e;
}

.has-lead-border {
  border: 1px solid #403f4e;
}

.has-lead-marker li::before,
.has-lead-marker li::marker {
  color: #403f4e;
}

.has-coin-color {
  color: #9897a9;
}
.has-coin-color a {
  color: #9897a9;
}

.has-coin-background,
.has-coin-background-color {
  background-color: #9897a9;
}

.has-coin-border {
  border: 1px solid #9897a9;
}

.has-coin-marker li::before,
.has-coin-marker li::marker {
  color: #9897a9;
}

.has-fossil-color {
  color: #787276;
}
.has-fossil-color a {
  color: #787276;
}

.has-fossil-background,
.has-fossil-background-color {
  background-color: #787276;
}

.has-fossil-border {
  border: 1px solid #787276;
}

.has-fossil-marker li::before,
.has-fossil-marker li::marker {
  color: #787276;
}

.has-ebony-color {
  color: #080401;
}
.has-ebony-color a {
  color: #080401;
}

.has-ebony-background,
.has-ebony-background-color {
  background-color: #080401;
}

.has-ebony-border {
  border: 1px solid #080401;
}

.has-ebony-marker li::before,
.has-ebony-marker li::marker {
  color: #080401;
}

.has-crow-color {
  color: #25221F;
}
.has-crow-color a {
  color: #25221F;
}

.has-crow-background,
.has-crow-background-color {
  background-color: #25221F;
}

.has-crow-border {
  border: 1px solid #25221F;
}

.has-crow-marker li::before,
.has-crow-marker li::marker {
  color: #25221F;
}

.has-charcoal-color {
  color: #222023;
}
.has-charcoal-color a {
  color: #222023;
}

.has-charcoal-background,
.has-charcoal-background-color {
  background-color: #222023;
}

.has-charcoal-border {
  border: 1px solid #222023;
}

.has-charcoal-marker li::before,
.has-charcoal-marker li::marker {
  color: #222023;
}

.has-white-color a,
.has-white-color a:hover {
  color: #fff;
}

@media (max-width: 781px) {
  .hide-on-mobile {
    display: none !important;
  }
  .hide-on-mobile:first-child + * {
    margin-top: 0;
  }
}
@media (min-width: 782px) {
  .hide-on-desktop {
    display: none !important;
  }
  .hide-on-desktop:first-child + * {
    margin-top: 0;
  }
}
.shift-top {
  margin-top: calc(-1 * var(--wp--preset--spacing--30, 3em)) !important;
}

.shift-top-xs {
  margin-top: calc(-1 * var(--wp--preset--spacing--10, 1em)) !important;
}

.shift-top-sm {
  margin-top: calc(-1 * var(--wp--preset--spacing--20, 2em)) !important;
}

.shift-top-lg {
  margin-top: calc(-1 * var(--wp--preset--spacing--40, 4em)) !important;
}

.shift-top-xl {
  margin-top: calc(-1 * var(--wp--preset--spacing--50, 5em)) !important;
}

@media (max-width: 781px) {
  .mobile-shift-top {
    margin-top: calc(-1 * var(--wp--preset--spacing--30, 3em)) !important;
  }
  .mobile-shift-top-xs {
    margin-top: calc(-1 * var(--wp--preset--spacing--10, 1em)) !important;
  }
  .mobile-shift-top-sm {
    margin-top: calc(-1 * var(--wp--preset--spacing--20, 2em)) !important;
  }
  .mobile-shift-top-lg {
    margin-top: calc(-1 * var(--wp--preset--spacing--40, 4em)) !important;
  }
  .mobile-shift-top-xl {
    margin-top: calc(-1 * var(--wp--preset--spacing--50, 5em)) !important;
  }
}
@media (min-width: 782px) {
  .desktop-shift-top {
    margin-top: calc(-1 * var(--wp--preset--spacing--30, 3em)) !important;
  }
  .desktop-shift-top-xs {
    margin-top: calc(-1 * var(--wp--preset--spacing--10, 1em)) !important;
  }
  .desktop-shift-top-sm {
    margin-top: calc(-1 * var(--wp--preset--spacing--20, 2em)) !important;
  }
  .desktop-shift-top-lg {
    margin-top: calc(-1 * var(--wp--preset--spacing--40, 4em)) !important;
  }
  .desktop-shift-top-xl {
    margin-top: calc(-1 * var(--wp--preset--spacing--50, 5em)) !important;
  }
}
.shift-right {
  margin-right: calc(-1 * var(--wp--preset--spacing--30, 3em)) !important;
}

.shift-right-xs {
  margin-right: calc(-1 * var(--wp--preset--spacing--10, 1em)) !important;
}

.shift-right-sm {
  margin-right: calc(-1 * var(--wp--preset--spacing--20, 2em)) !important;
}

.shift-right-lg {
  margin-right: calc(-1 * var(--wp--preset--spacing--40, 4em)) !important;
}

.shift-right-xl {
  margin-right: calc(-1 * var(--wp--preset--spacing--50, 5em)) !important;
}

@media (max-width: 781px) {
  .mobile-shift-right {
    margin-right: calc(-1 * var(--wp--preset--spacing--30, 3em)) !important;
  }
  .mobile-shift-right-xs {
    margin-right: calc(-1 * var(--wp--preset--spacing--10, 1em)) !important;
  }
  .mobile-shift-right-sm {
    margin-right: calc(-1 * var(--wp--preset--spacing--20, 2em)) !important;
  }
  .mobile-shift-right-lg {
    margin-right: calc(-1 * var(--wp--preset--spacing--40, 4em)) !important;
  }
  .mobile-shift-right-xl {
    margin-right: calc(-1 * var(--wp--preset--spacing--50, 5em)) !important;
  }
}
@media (min-width: 782px) {
  .desktop-shift-right {
    margin-right: calc(-1 * var(--wp--preset--spacing--30, 3em)) !important;
  }
  .desktop-shift-right-xs {
    margin-right: calc(-1 * var(--wp--preset--spacing--10, 1em)) !important;
  }
  .desktop-shift-right-sm {
    margin-right: calc(-1 * var(--wp--preset--spacing--20, 2em)) !important;
  }
  .desktop-shift-right-lg {
    margin-right: calc(-1 * var(--wp--preset--spacing--40, 4em)) !important;
  }
  .desktop-shift-right-xl {
    margin-right: calc(-1 * var(--wp--preset--spacing--50, 5em)) !important;
  }
}
.shift-bottom {
  margin-bottom: calc(-1 * var(--wp--preset--spacing--30, 3em)) !important;
}

.shift-bottom-xs {
  margin-bottom: calc(-1 * var(--wp--preset--spacing--10, 1em)) !important;
}

.shift-bottom-sm {
  margin-bottom: calc(-1 * var(--wp--preset--spacing--20, 2em)) !important;
}

.shift-bottom-lg {
  margin-bottom: calc(-1 * var(--wp--preset--spacing--40, 4em)) !important;
}

.shift-bottom-xl {
  margin-bottom: calc(-1 * var(--wp--preset--spacing--50, 5em)) !important;
}

@media (max-width: 781px) {
  .mobile-shift-bottom {
    margin-bottom: calc(-1 * var(--wp--preset--spacing--30, 3em)) !important;
  }
  .mobile-shift-bottom-xs {
    margin-bottom: calc(-1 * var(--wp--preset--spacing--10, 1em)) !important;
  }
  .mobile-shift-bottom-sm {
    margin-bottom: calc(-1 * var(--wp--preset--spacing--20, 2em)) !important;
  }
  .mobile-shift-bottom-lg {
    margin-bottom: calc(-1 * var(--wp--preset--spacing--40, 4em)) !important;
  }
  .mobile-shift-bottom-xl {
    margin-bottom: calc(-1 * var(--wp--preset--spacing--50, 5em)) !important;
  }
}
@media (min-width: 782px) {
  .desktop-shift-bottom {
    margin-bottom: calc(-1 * var(--wp--preset--spacing--30, 3em)) !important;
  }
  .desktop-shift-bottom-xs {
    margin-bottom: calc(-1 * var(--wp--preset--spacing--10, 1em)) !important;
  }
  .desktop-shift-bottom-sm {
    margin-bottom: calc(-1 * var(--wp--preset--spacing--20, 2em)) !important;
  }
  .desktop-shift-bottom-lg {
    margin-bottom: calc(-1 * var(--wp--preset--spacing--40, 4em)) !important;
  }
  .desktop-shift-bottom-xl {
    margin-bottom: calc(-1 * var(--wp--preset--spacing--50, 5em)) !important;
  }
}
.shift-left {
  margin-left: calc(-1 * var(--wp--preset--spacing--30, 3em)) !important;
}

.shift-left-xs {
  margin-left: calc(-1 * var(--wp--preset--spacing--10, 1em)) !important;
}

.shift-left-sm {
  margin-left: calc(-1 * var(--wp--preset--spacing--20, 2em)) !important;
}

.shift-left-lg {
  margin-left: calc(-1 * var(--wp--preset--spacing--40, 4em)) !important;
}

.shift-left-xl {
  margin-left: calc(-1 * var(--wp--preset--spacing--50, 5em)) !important;
}

@media (max-width: 781px) {
  .mobile-shift-left {
    margin-left: calc(-1 * var(--wp--preset--spacing--30, 3em)) !important;
  }
  .mobile-shift-left-xs {
    margin-left: calc(-1 * var(--wp--preset--spacing--10, 1em)) !important;
  }
  .mobile-shift-left-sm {
    margin-left: calc(-1 * var(--wp--preset--spacing--20, 2em)) !important;
  }
  .mobile-shift-left-lg {
    margin-left: calc(-1 * var(--wp--preset--spacing--40, 4em)) !important;
  }
  .mobile-shift-left-xl {
    margin-left: calc(-1 * var(--wp--preset--spacing--50, 5em)) !important;
  }
}
@media (min-width: 782px) {
  .desktop-shift-left {
    margin-left: calc(-1 * var(--wp--preset--spacing--30, 3em)) !important;
  }
  .desktop-shift-left-xs {
    margin-left: calc(-1 * var(--wp--preset--spacing--10, 1em)) !important;
  }
  .desktop-shift-left-sm {
    margin-left: calc(-1 * var(--wp--preset--spacing--20, 2em)) !important;
  }
  .desktop-shift-left-lg {
    margin-left: calc(-1 * var(--wp--preset--spacing--40, 4em)) !important;
  }
  .desktop-shift-left-xl {
    margin-left: calc(-1 * var(--wp--preset--spacing--50, 5em)) !important;
  }
}
.width-10 {
  width: 10%;
  min-width: 10%;
}

@media (max-width: 781px) {
  .mobile-width-10 {
    width: 10%;
    min-width: 10%;
  }
}
@media (min-width: 782px) {
  .desktop-width-10 {
    width: 10%;
    min-width: 10%;
  }
}
.width-20 {
  width: 20%;
  min-width: 20%;
}

@media (max-width: 781px) {
  .mobile-width-20 {
    width: 20%;
    min-width: 20%;
  }
}
@media (min-width: 782px) {
  .desktop-width-20 {
    width: 20%;
    min-width: 20%;
  }
}
.width-25 {
  width: 25%;
  min-width: 25%;
}

@media (max-width: 781px) {
  .mobile-width-25 {
    width: 25%;
    min-width: 25%;
  }
}
@media (min-width: 782px) {
  .desktop-width-25 {
    width: 25%;
    min-width: 25%;
  }
}
.width-30 {
  width: 30%;
  min-width: 30%;
}

@media (max-width: 781px) {
  .mobile-width-30 {
    width: 30%;
    min-width: 30%;
  }
}
@media (min-width: 782px) {
  .desktop-width-30 {
    width: 30%;
    min-width: 30%;
  }
}
.width-33 {
  width: 33%;
  min-width: 33%;
}

@media (max-width: 781px) {
  .mobile-width-33 {
    width: 33%;
    min-width: 33%;
  }
}
@media (min-width: 782px) {
  .desktop-width-33 {
    width: 33%;
    min-width: 33%;
  }
}
.width-40 {
  width: 40%;
  min-width: 40%;
}

@media (max-width: 781px) {
  .mobile-width-40 {
    width: 40%;
    min-width: 40%;
  }
}
@media (min-width: 782px) {
  .desktop-width-40 {
    width: 40%;
    min-width: 40%;
  }
}
.width-50 {
  width: 50%;
  min-width: 50%;
}

@media (max-width: 781px) {
  .mobile-width-50 {
    width: 50%;
    min-width: 50%;
  }
}
@media (min-width: 782px) {
  .desktop-width-50 {
    width: 50%;
    min-width: 50%;
  }
}
.width-66 {
  width: 66%;
  min-width: 66%;
}

@media (max-width: 781px) {
  .mobile-width-66 {
    width: 66%;
    min-width: 66%;
  }
}
@media (min-width: 782px) {
  .desktop-width-66 {
    width: 66%;
    min-width: 66%;
  }
}
.width-70 {
  width: 70%;
  min-width: 70%;
}

@media (max-width: 781px) {
  .mobile-width-70 {
    width: 70%;
    min-width: 70%;
  }
}
@media (min-width: 782px) {
  .desktop-width-70 {
    width: 70%;
    min-width: 70%;
  }
}
.width-75 {
  width: 75%;
  min-width: 75%;
}

@media (max-width: 781px) {
  .mobile-width-75 {
    width: 75%;
    min-width: 75%;
  }
}
@media (min-width: 782px) {
  .desktop-width-75 {
    width: 75%;
    min-width: 75%;
  }
}
.flex-10 {
  flex-basis: 10%;
}

@media (max-width: 781px) {
  .mobile-flex-10 {
    flex-basis: 10%;
  }
}
@media (min-width: 782px) {
  .desktop-flex-10 {
    flex-basis: 10%;
  }
}
.flex-20 {
  flex-basis: 20%;
}

@media (max-width: 781px) {
  .mobile-flex-20 {
    flex-basis: 20%;
  }
}
@media (min-width: 782px) {
  .desktop-flex-20 {
    flex-basis: 20%;
  }
}
.flex-25 {
  flex-basis: 25%;
}

@media (max-width: 781px) {
  .mobile-flex-25 {
    flex-basis: 25%;
  }
}
@media (min-width: 782px) {
  .desktop-flex-25 {
    flex-basis: 25%;
  }
}
.flex-30 {
  flex-basis: 30%;
}

@media (max-width: 781px) {
  .mobile-flex-30 {
    flex-basis: 30%;
  }
}
@media (min-width: 782px) {
  .desktop-flex-30 {
    flex-basis: 30%;
  }
}
.flex-33 {
  flex-basis: 33%;
}

@media (max-width: 781px) {
  .mobile-flex-33 {
    flex-basis: 33%;
  }
}
@media (min-width: 782px) {
  .desktop-flex-33 {
    flex-basis: 33%;
  }
}
.flex-40 {
  flex-basis: 40%;
}

@media (max-width: 781px) {
  .mobile-flex-40 {
    flex-basis: 40%;
  }
}
@media (min-width: 782px) {
  .desktop-flex-40 {
    flex-basis: 40%;
  }
}
.flex-50 {
  flex-basis: 50%;
}

@media (max-width: 781px) {
  .mobile-flex-50 {
    flex-basis: 50%;
  }
}
@media (min-width: 782px) {
  .desktop-flex-50 {
    flex-basis: 50%;
  }
}
.flex-66 {
  flex-basis: 66%;
}

@media (max-width: 781px) {
  .mobile-flex-66 {
    flex-basis: 66%;
  }
}
@media (min-width: 782px) {
  .desktop-flex-66 {
    flex-basis: 66%;
  }
}
.flex-70 {
  flex-basis: 70%;
}

@media (max-width: 781px) {
  .mobile-flex-70 {
    flex-basis: 70%;
  }
}
@media (min-width: 782px) {
  .desktop-flex-70 {
    flex-basis: 70%;
  }
}
.flex-75 {
  flex-basis: 75%;
}

@media (max-width: 781px) {
  .mobile-flex-75 {
    flex-basis: 75%;
  }
}
@media (min-width: 782px) {
  .desktop-flex-75 {
    flex-basis: 75%;
  }
}
.margin-top {
  margin-top: var(--wp--preset--spacing--30, 3em);
}

.margin-top-xs {
  margin-top: var(--wp--preset--spacing--10, 1em);
}

.margin-top-sm {
  margin-top: var(--wp--preset--spacing--20, 2em);
}

.margin-top-lg {
  margin-top: var(--wp--preset--spacing--40, 4em);
}

.margin-top-xl {
  margin-top: var(--wp--preset--spacing--50, 5em);
}

.margin-right {
  margin-right: var(--wp--preset--spacing--30, 3em);
}

.margin-right-xs {
  margin-right: var(--wp--preset--spacing--10, 1em);
}

.margin-right-sm {
  margin-right: var(--wp--preset--spacing--20, 2em);
}

.margin-right-lg {
  margin-right: var(--wp--preset--spacing--40, 4em);
}

.margin-right-xl {
  margin-right: var(--wp--preset--spacing--50, 5em);
}

.margin-bottom {
  margin-bottom: var(--wp--preset--spacing--30, 3em);
}

.margin-bottom-xs {
  margin-bottom: var(--wp--preset--spacing--10, 1em);
}

.margin-bottom-sm {
  margin-bottom: var(--wp--preset--spacing--20, 2em);
}

.margin-bottom-lg {
  margin-bottom: var(--wp--preset--spacing--40, 4em);
}

.margin-bottom-xl {
  margin-bottom: var(--wp--preset--spacing--50, 5em);
}

.margin-left {
  margin-left: var(--wp--preset--spacing--30, 3em);
}

.margin-left-xs {
  margin-left: var(--wp--preset--spacing--10, 1em);
}

.margin-left-sm {
  margin-left: var(--wp--preset--spacing--20, 2em);
}

.margin-left-lg {
  margin-left: var(--wp--preset--spacing--40, 4em);
}

.margin-left-xl {
  margin-left: var(--wp--preset--spacing--50, 5em);
}

.padding-top {
  padding-top: var(--wp--preset--spacing--30, 3em);
}

.padding-top-xs {
  padding-top: var(--wp--preset--spacing--10, 1em);
}

.padding-top-sm {
  padding-top: var(--wp--preset--spacing--20, 2em);
}

.padding-top-lg {
  padding-top: var(--wp--preset--spacing--40, 4em);
}

.padding-top-xl {
  padding-top: var(--wp--preset--spacing--50, 5em);
}

.padding-right {
  padding-right: var(--wp--preset--spacing--30, 3em);
}

.padding-right-xs {
  padding-right: var(--wp--preset--spacing--10, 1em);
}

.padding-right-sm {
  padding-right: var(--wp--preset--spacing--20, 2em);
}

.padding-right-lg {
  padding-right: var(--wp--preset--spacing--40, 4em);
}

.padding-right-xl {
  padding-right: var(--wp--preset--spacing--50, 5em);
}

.padding-bottom {
  padding-bottom: var(--wp--preset--spacing--30, 3em);
}

.padding-bottom-xs {
  padding-bottom: var(--wp--preset--spacing--10, 1em);
}

.padding-bottom-sm {
  padding-bottom: var(--wp--preset--spacing--20, 2em);
}

.padding-bottom-lg {
  padding-bottom: var(--wp--preset--spacing--40, 4em);
}

.padding-bottom-xl {
  padding-bottom: var(--wp--preset--spacing--50, 5em);
}

.padding-left {
  padding-left: var(--wp--preset--spacing--30, 3em);
}

.padding-left-xs {
  padding-left: var(--wp--preset--spacing--10, 1em);
}

.padding-left-sm {
  padding-left: var(--wp--preset--spacing--20, 2em);
}

.padding-left-lg {
  padding-left: var(--wp--preset--spacing--40, 4em);
}

.padding-left-xl {
  padding-left: var(--wp--preset--spacing--50, 5em);
}

.float-none {
  float: none;
}

.float-right {
  float: right;
}

.float-left {
  float: left;
}

.unstyled-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.box-shadow {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.box-shadow-sm {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.box-shadow-lg {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
}

.box-shadow-xl {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--wp--preset--color--accent-2);
  font-family: var(--wp--preset--font-family--roboto);
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
}

.h1 {
  font-size: 2.5rem;
}

.h2 {
  font-size: 1.75rem;
}

.h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}

.h4 {
  font-size: 1.25rem;
  line-height: 1.5;
}

.h5 {
  font-size: 1.1rem;
  line-height: 1.5;
}

.h6 {
  font-size: 1rem;
  line-height: 1.5;
}

/* Pages *********************************************************************/
html,
body {
  position: relative;
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--wp--style--block-gap);
  margin: 0;
  padding: 0;
}

.admin-bar #wpadminbar {
  margin-top: -46px;
}
@media (min-width: 600px) {
  .admin-bar #wpadminbar {
    margin-top: 0;
  }
  .admin-bar .wp-site-blocks {
    min-height: calc(100vh - 46px);
  }
}
@media (min-width: 782px) {
  .admin-bar .wp-site-blocks {
    min-height: calc(100vh - 32px);
  }
}

.wp-site-blocks {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  min-height: 100vh;
}
.wp-site-blocks > header {
  width: 100%;
}
.wp-site-blocks > header > .wp-block-group {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.wp-site-blocks > header > .wp-block-group > .wp-block-group {
  width: 100%;
}
.wp-site-blocks > main, .wp-site-blocks > .woocommerce {
  flex: 1;
  margin: 0;
}
.wp-site-blocks > footer {
  margin: 0;
}
.wp-site-blocks a:where(:not(.wp-element-button)) {
  text-decoration-color: color-mix(in srgb, color-mix(in srgb, inherit 50%, transparent) 50%, transparent);
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.125em;
  transition: text-decoration-color 0.2s ease-in-out;
}
.wp-site-blocks a:where(:not(.wp-element-button)):hover, .wp-site-blocks a:where(:not(.wp-element-button)):focus {
  text-decoration-color: inherit;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.125em;
}
.wp-site-blocks h1 mark,
.wp-site-blocks h2 mark,
.wp-site-blocks h3 mark,
.wp-site-blocks h4 mark,
.wp-site-blocks h5 mark,
.wp-site-blocks h6 mark {
  display: inline-block;
  margin: 0 -0.33em;
  padding: 0.1em 0.33em;
  letter-spacing: -0.5px;
}
.wp-site-blocks code,
.wp-site-blocks pre {
  border-radius: 2px;
  padding: 0 0.2em;
  color: var(--wp--preset--color--contrast-2);
  background-color: var(--wp--preset--color--base-2);
}
.wp-site-blocks pre {
  padding: var(--wp--preset--spacing--30, 3em);
}
.wp-site-blocks .alignfull {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}
.wp-site-blocks .entry-content > .alignfull:last-child {
  margin-bottom: calc(-1 * var(--wp--preset--spacing--60, 6em)) !important;
}

.error404 main {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

/* Layout blocks *************************************************************/
.wp-site-blocks .wp-block-columns > .wp-block-column {
  padding: 0;
}
@media (max-width: 781px) {
  .wp-site-blocks .wp-block-columns > .wp-block-column:empty {
    display: none;
  }
}

.wp-site-blocks .wp-block-cover {
  padding: var(--wp--preset--spacing--60, 6em);
  background-color: #202020;
}

.wp-site-blocks .wp-block-group.is-style-stretched-link {
  position: relative;
}
.wp-site-blocks .wp-block-group.is-style-stretched-link a:first-of-type::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 782px) {
  .wp-site-blocks .wp-block-group.is-layout-flex:not(.is-nowrap) {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .wp-site-blocks .wp-block-group.is-layout-flex:not(.is-nowrap) > .wp-block-group {
    flex-basis: 100%;
    width: 100%;
  }
}

.wp-site-blocks .group-panels .wp-block-group {
  width: 100%;
}
.wp-site-blocks .group-panels .panel.type-panel .panel-concealed {
  display: none;
}
.wp-site-blocks .group-panels .panel.type-panel .panel-title {
  border-radius: 2px;
  width: 100%;
  padding: var(--wp--preset--spacing--30, 3em) var(--wp--preset--spacing--30, 3em);
  background: #f5f5f5;
  cursor: pointer;
}
@media (max-width: 600px) {
  .wp-site-blocks .group-panels .panel.type-panel .panel-title {
    flex-direction: column;
    gap: var(--wp--preset--spacing--30, 3em);
  }
  .wp-site-blocks .group-panels .panel.type-panel .panel-title .wp-block-group {
    align-items: flex-start;
  }
}
.wp-site-blocks ul.panel-presenters-icons {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.wp-site-blocks ul.panel-presenters-icons::after {
  content: "";
  display: table;
  clear: both;
}
.wp-site-blocks ul.panel-presenters-icons li {
  float: left;
  margin-right: var(--wp--preset--spacing--30, 3em);
}
.wp-site-blocks ul.panel-presenters-icons li img {
  width: 60px;
  height: 60px;
  border-radius: 9999px;
}

.wp-site-blocks .wp-block-gallery.has-nested-images {
  gap: var(--wp--preset--spacing--30, 3em);
}

/* Post blocks ***************************************************************/
.wp-site-blocks .wp-block-categories.wp-block-categories-dropdown {
  outline: 3px solid transparent;
  outline-offset: 0px;
  position: relative;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}
.wp-site-blocks .wp-block-categories.wp-block-categories-dropdown:focus {
  outline-color: color-mix(in srgb, currentColor 50%, transparent);
}
.wp-site-blocks .wp-block-categories.wp-block-categories-dropdown::after {
  pointer-events: none;
  content: "\ea59";
  position: absolute;
  top: 0px;
  right: var(--wp--preset--spacing--20, 2em);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  font-size: 0.9em;
  font-family: "Nucleo";
  color: currentColor;
  background-color: transparent;
  opacity: 0.33;
  transition: opacity 0.2s ease-in-out;
}
.wp-site-blocks .wp-block-categories.wp-block-categories-dropdown select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  width: 100%;
  min-width: 128px;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid #919191;
  border-radius: 2px;
  padding: 0 var(--wp--preset--spacing--20, 2em);
  min-height: 44px;
  line-height: 44px;
  text-overflow: ellipsis;
  font-family: inherit;
  font-size: var(--wp--preset--font-size--small, 0.889rem);
  color: currentColor;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}
.wp-site-blocks .wp-block-categories.wp-block-categories-dropdown:hover::after {
  opacity: 0.5;
}
.wp-site-blocks .wp-block-categories.wp-block-categories-dropdown:focus select, .wp-site-blocks .wp-block-categories.wp-block-categories-dropdown:focus-within select {
  outline: none;
}

.wp-site-blocks .wp-block-loginout.has-login-form {
  margin: 0 auto;
  max-width: 300px !important;
}
.wp-site-blocks .wp-block-loginout.has-login-form form,
.wp-site-blocks .wp-block-loginout.has-login-form form > p {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
}
.wp-site-blocks .wp-block-loginout.has-login-form form > p {
  gap: calc(var(--wp--preset--spacing--30, 3em) * 0.5);
}
.wp-site-blocks .wp-block-loginout.has-login-form label {
  font-weight: 500;
}
.wp-site-blocks .wp-block-loginout.has-login-form #loginform {
  gap: var(--wp--preset--spacing--30, 3em);
  margin: var(--wp--preset--spacing--30, 3em) 0;
  border: 1px solid color-mix(in srgb, #000 10%, transparent);
  border-radius: 4px;
  padding: var(--wp--preset--spacing--30, 3em);
  background-color: #fff;
}
.wp-site-blocks .wp-block-loginout.has-login-form .login-password input[type=password],
.wp-site-blocks .wp-block-loginout.has-login-form .login-password input[type=text],
.wp-site-blocks .wp-block-loginout.has-login-form .login-username input[type=password],
.wp-site-blocks .wp-block-loginout.has-login-form .login-username input[type=text] {
  outline: 3px solid transparent;
  outline-offset: 0px;
  min-height: 44px;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid #919191;
  border-radius: 2px;
  padding: 0 var(--wp--preset--spacing--20, 2em);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: var(--wp--preset--color--contrast-1);
  background-color: var(--wp--preset--color--base-1);
  transition: all 0.2s ease-in-out;
}
.wp-site-blocks .wp-block-loginout.has-login-form .login-password input[type=password]:focus,
.wp-site-blocks .wp-block-loginout.has-login-form .login-password input[type=text]:focus,
.wp-site-blocks .wp-block-loginout.has-login-form .login-username input[type=password]:focus,
.wp-site-blocks .wp-block-loginout.has-login-form .login-username input[type=text]:focus {
  outline-color: color-mix(in srgb, currentColor 50%, transparent);
}
.wp-site-blocks .wp-block-loginout.has-login-form .login-submit input[type=submit] {
  outline: 3px solid transparent;
  outline-offset: 0px;
  display: inline-block;
  align-content: center;
  min-height: 44px;
  box-shadow: none;
  box-sizing: border-box;
  line-height: inherit;
  text-align: center;
  text-decoration: none;
  word-break: keep-all;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.wp-site-blocks .wp-block-loginout.has-login-form .login-submit input[type=submit]:focus {
  outline-color: color-mix(in srgb, currentColor 50%, transparent);
}
.wp-site-blocks .wp-block-loginout.has-login-form .login-submit input[type=submit]:hover {
  border-color: #202020 !important;
  background-color: #202020 !important;
}
.wp-site-blocks .wp-block-loginout.has-login-form .login-submit input[type=submit]:hover, .wp-site-blocks .wp-block-loginout.has-login-form .login-submit input[type=submit]:hover::before, .wp-site-blocks .wp-block-loginout.has-login-form .login-submit input[type=submit]:hover::after, .wp-site-blocks .wp-block-loginout.has-login-form .login-submit input[type=submit]:hover * {
  color: #fff !important;
}
.wp-site-blocks .wp-block-loginout.logged-in > a {
  outline: 3px solid transparent;
  outline-offset: 0px;
  display: inline-block;
  align-content: center;
  min-height: 44px;
  box-shadow: none;
  box-sizing: border-box;
  line-height: inherit;
  text-align: center;
  text-decoration: none;
  word-break: keep-all;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.wp-site-blocks .wp-block-loginout.logged-in > a:focus {
  outline-color: color-mix(in srgb, currentColor 50%, transparent);
}
.wp-site-blocks .wp-block-loginout.logged-in > a:hover {
  border-color: #202020 !important;
  background-color: #202020 !important;
}
.wp-site-blocks .wp-block-loginout.logged-in > a:hover, .wp-site-blocks .wp-block-loginout.logged-in > a:hover::before, .wp-site-blocks .wp-block-loginout.logged-in > a:hover::after, .wp-site-blocks .wp-block-loginout.logged-in > a:hover * {
  color: #fff !important;
}

.wp-site-blocks .wp-block-navigation:where(:not([class*=has-text-decoration])) a {
  text-decoration: underline;
}
.wp-site-blocks .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
  min-height: 44px;
  align-content: center;
  color: currentColor;
  text-decoration-color: color-mix(in srgb, color-mix(in srgb, currentColor 50%, transparent) 50%, transparent);
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.125em;
  transition: text-decoration-color 0.2s ease-in-out;
}
.wp-site-blocks .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content:hover, .wp-site-blocks .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content:focus {
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 0.125em;
}

@media (max-width: 781px) {
  header.wp-block-template-part .wp-block-site-logo img {
    width: auto;
    max-height: 30px;
  }
  header.wp-block-template-part > .wp-block-group:first-child {
    padding: var(--wp--preset--spacing--10, 1em) var(--wp--preset--spacing--20, 2em);
  }
}
@media (min-width: 782px) {
  header.wp-block-template-part > .wp-block-group:first-child {
    padding: var(--wp--preset--spacing--30, 3em);
  }
  header.wp-block-template-part .wp-block-navigation {
    position: unset;
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container {
    row-gap: 0;
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item .wp-block-navigation-item__content {
    padding: var(--wp--preset--spacing--20, 2em) 0;
    text-decoration: none;
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child {
    display: inline-flex;
    gap: 0.25em;
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child .wp-block-navigation__submenu-icon {
    opacity: 0.66;
    transition: opacity 0.2s ease-in-out;
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child .wp-block-navigation__submenu-icon svg {
    display: none;
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child .wp-block-navigation__submenu-icon::after {
    content: "\ea59";
    display: inline-block;
    font-family: "Nucleo";
    font-size: 0.5em;
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child:hover .wp-block-navigation__submenu-icon {
    opacity: 0.66;
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child:not(.mega-menu) > .wp-block-navigation__submenu-container {
    z-index: 9999;
    top: 100%;
    left: unset;
    right: calc(var(--wp--preset--spacing--10, 1em) * -1);
    min-width: 230px;
    border-radius: 2px;
    border: none;
    padding: var(--wp--preset--spacing--20, 2em) 0;
    line-height: 1.2;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child:not(.mega-menu) > .wp-block-navigation__submenu-container > .wp-block-navigation-item {
    padding: 0;
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child:not(.mega-menu) > .wp-block-navigation__submenu-container > .wp-block-navigation-item .wp-block-navigation-item__content {
    padding: var(--wp--preset--spacing--10, 1em) var(--wp--preset--spacing--30, 3em);
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child:not(.mega-menu) > .wp-block-navigation__submenu-container > .wp-block-navigation-item:last-child .wp-block-navigation-item__content {
    border-bottom: none;
  }
}

.wp-site-blocks .wp-block-post-template.is-layout-grid.alignfull,
.wp-site-blocks .wp-block-query.alignfull {
  margin-block-start: 0 !important;
  padding: 0 var(--wp--preset--spacing--30, 3em);
}

.wp-site-blocks .wp-block-search.wp-block-search__text-button .wp-block-search__inside-wrapper .wp-block-search__input {
  outline: 3px solid transparent;
  outline-offset: 0px;
  min-height: 44px;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid #919191;
  border-radius: 2px;
  padding: 0 var(--wp--preset--spacing--20, 2em);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: var(--wp--preset--color--contrast-1);
  background-color: var(--wp--preset--color--base-1);
  transition: all 0.2s ease-in-out;
  font-size: var(--wp--preset--font-size--small, 0.889rem);
}
.wp-site-blocks .wp-block-search.wp-block-search__text-button .wp-block-search__inside-wrapper .wp-block-search__input:focus {
  outline-color: color-mix(in srgb, currentColor 50%, transparent);
}
.wp-site-blocks .wp-block-search.wp-block-search__text-button .wp-block-search__inside-wrapper .wp-element-button {
  outline: 3px solid transparent;
  outline-offset: 0px;
  display: inline-block;
  align-content: center;
  min-height: 44px;
  box-shadow: none;
  box-sizing: border-box;
  line-height: inherit;
  text-align: center;
  text-decoration: none;
  word-break: keep-all;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-size: var(--wp--preset--font-size--small, 0.889rem);
}
.wp-site-blocks .wp-block-search.wp-block-search__text-button .wp-block-search__inside-wrapper .wp-element-button:focus {
  outline-color: color-mix(in srgb, currentColor 50%, transparent);
}
.wp-site-blocks .wp-block-search.wp-block-search__text-button .wp-block-search__inside-wrapper .wp-element-button:hover {
  border-color: #202020 !important;
  background-color: #202020 !important;
}
.wp-site-blocks .wp-block-search.wp-block-search__text-button .wp-block-search__inside-wrapper .wp-element-button:hover, .wp-site-blocks .wp-block-search.wp-block-search__text-button .wp-block-search__inside-wrapper .wp-element-button:hover::before, .wp-site-blocks .wp-block-search.wp-block-search__text-button .wp-block-search__inside-wrapper .wp-element-button:hover::after, .wp-site-blocks .wp-block-search.wp-block-search__text-button .wp-block-search__inside-wrapper .wp-element-button:hover * {
  color: #fff !important;
}
.wp-site-blocks header .wp-block-search__button-only .wp-block-search__inside-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--wp--preset--spacing--20, 2em);
}
.wp-site-blocks header .wp-block-search__button-only .wp-block-search__inside-wrapper .wp-block-search__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: transparent;
}
.wp-site-blocks header .wp-block-search__button-only .wp-block-search__inside-wrapper .wp-block-search__button:hover {
  background-color: transparent !important;
  box-shadow: none;
}
.wp-site-blocks header .wp-block-search__button-only .wp-block-search__inside-wrapper .wp-block-search__button svg {
  color: currentColor;
  height: 32px;
  width: 32px;
}
.wp-site-blocks header .wp-block-search__button-only .wp-block-search__inside-wrapper .wp-block-search__input {
  outline: 3px solid transparent;
  outline-offset: 0px;
  min-height: 44px;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid #919191;
  border-radius: 2px;
  padding: 0 var(--wp--preset--spacing--20, 2em);
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  color: var(--wp--preset--color--contrast-1);
  background-color: var(--wp--preset--color--base-1);
  transition: all 0.2s ease-in-out;
  border-radius: 2px;
  transition: none;
}
.wp-site-blocks header .wp-block-search__button-only .wp-block-search__inside-wrapper .wp-block-search__input:focus {
  outline-color: color-mix(in srgb, currentColor 50%, transparent);
}
.wp-site-blocks header .wp-block-search__button-only:not(.wp-block-search__searchfield-hidden) .wp-block-search__inside-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding-right: var(--wp--preset--spacing--30, 3em);
  padding-left: var(--wp--preset--spacing--30, 3em);
  background-color: var(--wp--preset--color--contrast-1);
  transition: background-color 0.2s ease-in-out;
}
.wp-site-blocks header .wp-block-search__button-only:not(.wp-block-search__searchfield-hidden) .wp-block-search__inside-wrapper .wp-block-search__button svg {
  color: var(--wp--preset--color--base-1);
}

.wp-block-term-description p {
  margin-top: 1em;
}

/* Content blocks ************************************************************/
dl.bds-block > div:not(:last-child) {
  margin-bottom: var(--wp--preset--spacing--30, 3em);
}
dl.bds-block dt {
  font-family: var(--wp--preset--font-family--roboto);
  font-size: var(--wp--preset--font-size--small, 0.889rem);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--wp--preset--color--contrast-2);
}
dl.bds-block dd {
  margin: 0;
}

.wp-site-blocks .wp-block-button .wp-button-block__link,
.wp-site-blocks .wp-element-button {
  outline: 3px solid transparent;
  outline-offset: 0px;
  display: inline-block;
  align-content: center;
  min-height: 44px;
  box-shadow: none;
  box-sizing: border-box;
  line-height: inherit;
  text-align: center;
  text-decoration: none;
  word-break: keep-all;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.wp-site-blocks .wp-block-button .wp-button-block__link:focus,
.wp-site-blocks .wp-element-button:focus {
  outline-color: color-mix(in srgb, currentColor 50%, transparent);
}
.wp-site-blocks .wp-block-button .wp-button-block__link:hover,
.wp-site-blocks .wp-element-button:hover {
  border-color: #202020 !important;
  background-color: #202020 !important;
}
.wp-site-blocks .wp-block-button .wp-button-block__link:hover, .wp-site-blocks .wp-block-button .wp-button-block__link:hover::before, .wp-site-blocks .wp-block-button .wp-button-block__link:hover::after, .wp-site-blocks .wp-block-button .wp-button-block__link:hover *,
.wp-site-blocks .wp-element-button:hover,
.wp-site-blocks .wp-element-button:hover::before,
.wp-site-blocks .wp-element-button:hover::after,
.wp-site-blocks .wp-element-button:hover * {
  color: #fff !important;
}

.wp-site-blocks .wp-block-details {
  border-radius: 8px;
  background-color: #fff;
  padding: 0 var(--wp--preset--spacing--30, 3em);
}
.wp-site-blocks .wp-block-details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  margin: 0 calc(-1 * var(--wp--preset--spacing--30, 3em));
  padding: var(--wp--preset--spacing--20, 2em) var(--wp--preset--spacing--30, 3em);
  font-weight: 700;
}
.wp-site-blocks .wp-block-details > summary::marker, .wp-site-blocks .wp-block-details > summary::-webkit-details-marker {
  display: none;
}
.wp-site-blocks .wp-block-details > summary::after {
  content: "\eb3b";
  display: inline-block;
  color: currentColor;
  font-family: "Nucleo";
  font-size: 18px;
  list-style: 1;
  transition: all 0.2s ease-in-out;
  transform-origin: center center;
}
.wp-site-blocks .wp-block-details > summary + p {
  margin-top: 0;
}
.wp-site-blocks .wp-block-details[open] {
  padding: 0 var(--wp--preset--spacing--30, 3em) var(--wp--preset--spacing--20, 2em);
}
.wp-site-blocks .wp-block-details[open] summary {
  padding-bottom: 0;
}
.wp-site-blocks .wp-block-details[open] summary::after {
  content: "\eb0b";
  transform: rotate(180deg);
}

.wp-site-blocks .wp-block-image figcaption {
  margin: var(--wp--preset--spacing--30, 3em) 0 0;
  padding: 0;
}

.wp-site-blocks ul:not([class]),
.wp-site-blocks ul.is-style-bullets {
  padding-left: var(--wp--preset--spacing--30, 3em);
}
.wp-site-blocks ul:not([class]) li,
.wp-site-blocks ul.is-style-bullets li {
  position: relative;
}
.wp-site-blocks ul:not([class]) li::before, .wp-site-blocks ul:not([class]) li::marker,
.wp-site-blocks ul.is-style-bullets li::before,
.wp-site-blocks ul.is-style-bullets li::marker {
  color: color-mix(in srgb, currentColor 50%, transparent);
}
.wp-site-blocks ul:not([class]) li::marker,
.wp-site-blocks ul.is-style-bullets li::marker {
  content: "\eb0b  ";
  font-family: "Nucleo";
  font-size: 12px;
}

.wp-site-blocks .wp-block-media-text {
  gap: var(--wp--preset--spacing--40, 4em) var(--wp--preset--spacing--60, 6em);
}
.wp-site-blocks .wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}
.wp-site-blocks .wp-block-media-text.is-style-profile .wp-block-media-text__media {
  align-self: flex-start;
  padding: var(--wp--preset--spacing--30, 3em);
  border-radius: 9999px;
}
.wp-site-blocks .wp-block-media-text.is-style-profile .wp-block-media-text__media img {
  -o-object-position: top;
     object-position: top;
  aspect-ratio: 1;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 9999px;
}

.wp-site-blocks .wp-block-separator {
  border: none !important;
  height: 1px;
  width: 100% !important;
  background-color: color-mix(in srgb, currentColor 10%, transparent);
}
.wp-site-blocks .wp-block-separator.is-style-vertical {
  display: inline-block;
  border: none !important;
  height: 2px;
  width: 128px !important;
  margin: 0 auto;
}
@media (min-width: 782px) {
  .wp-site-blocks .wp-block-separator.is-style-vertical {
    height: 128px;
    width: 2px !important;
    margin: auto 0;
  }
}

.wp-site-blocks .wp-block-social-links .wp-social-link:hover, .wp-site-blocks .wp-block-social-links .wp-social-link:focus {
  transform: none;
}

.wp-site-blocks .wp-block-table figcaption {
  border-bottom: 1px solid color-mix(in srgb, #000 10%, transparent);
  margin: var(--wp--preset--spacing--30, 3em) 0;
  padding: var(--wp--preset--spacing--30, 3em) 0;
}
.wp-site-blocks .wp-block-table thead {
  border-color: #f5f5f5;
  border-bottom-width: 1px;
}
.wp-site-blocks .wp-block-table.is-style-stripes {
  border-bottom-color: transparent;
}
.wp-site-blocks .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #f5f5f5;
}
.wp-site-blocks .wp-block-table.is-style-stripes figcaption {
  border-bottom: none;
  margin-bottom: 0;
}
.wp-site-blocks .wp-block-table.is-style-fee-schedule td,
.wp-site-blocks .wp-block-table.is-style-fee-schedule th {
  width: 20%;
  padding: var(--wp--preset--spacing--30, 3em) var(--wp--preset--spacing--30, 3em);
}
.wp-site-blocks .wp-block-table.is-style-fee-schedule td:first-child,
.wp-site-blocks .wp-block-table.is-style-fee-schedule th:first-child {
  width: 60%;
}

/* Third-party plugins *******************************************************/
.wp-block-cb-carousel.alignfull .slick-next, .wp-block-cb-carousel.alignwide .slick-next {
  right: calc(0.5 * var(--wp--preset--spacing--10, 1em)) !important;
}
.wp-block-cb-carousel.alignfull .slick-prev, .wp-block-cb-carousel.alignwide .slick-prev {
  left: calc(0.5 * var(--wp--preset--spacing--10, 1em)) !important;
}
.wp-block-cb-carousel.alignfull .slick-slide, .wp-block-cb-carousel.alignwide .slick-slide {
  padding: 0;
}
.wp-block-cb-carousel.slick-dotted {
  margin-bottom: 30px;
}
.wp-block-cb-carousel .slick-next::before,
.wp-block-cb-carousel .slick-prev::before {
  font-family: "Nucleo";
}
.wp-block-cb-carousel .slick-next,
.wp-block-cb-carousel .slick-prev {
  position: absolute;
  top: 50% !important;
  z-index: 100;
  width: 44px;
  height: 44px;
  border: 1px solid var(--wp--preset--color--accent);
  border-radius: 9999px;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}
.wp-block-cb-carousel .slick-next::before,
.wp-block-cb-carousel .slick-prev::before {
  position: relative;
  font-size: 22px;
  font-weight: 900;
  color: var(--wp--preset--color--accent) !important;
  opacity: 1;
}
.wp-block-cb-carousel .slick-next {
  right: var(--wp--preset--spacing--20, 2em) !important;
}
.wp-block-cb-carousel .slick-next::before {
  content: "\ea5f";
  right: -1px;
}
.wp-block-cb-carousel .slick-prev {
  left: var(--wp--preset--spacing--20, 2em) !important;
}
.wp-block-cb-carousel .slick-prev::before {
  content: "\ea5d";
  left: -1px;
}
.wp-block-cb-carousel .slick-next:hover,
.wp-block-cb-carousel .slick-prev:hover,
.wp-block-cb-carousel .slick-next:active,
.wp-block-cb-carousel .slick-prev:active {
  opacity: 1;
  border-color: var(--wp--preset--color--accent);
  background-color: var(--wp--preset--color--accent);
}
.wp-block-cb-carousel .slick-next:hover::before,
.wp-block-cb-carousel .slick-prev:hover::before,
.wp-block-cb-carousel .slick-next:active::before,
.wp-block-cb-carousel .slick-prev:active::before {
  color: #fff !important;
}
.wp-block-cb-carousel .slick-dots {
  bottom: -30px;
  margin: 0;
  padding: 0;
  text-align: center;
}
.wp-block-cb-carousel .slick-dots li,
.wp-block-cb-carousel .slick-dots li button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 0.8rem;
  width: 0.8rem;
  margin: calc(0.75 * var(--wp--preset--spacing--10, 1em));
  padding: 0;
}
.wp-block-cb-carousel .slick-dots li button::before {
  content: "";
  position: unset;
  height: 0.8rem;
  width: 0.8rem;
  border: 1px solid var(--wp--preset--color--accent);
  border-radius: 9999px;
  opacity: 1;
  color: transparent;
  transition: all 0.2s ease-in-out;
}
.wp-block-cb-carousel .slick-dots li button:hover::before,
.wp-block-cb-carousel .slick-dots li button:focus::before {
  background-color: var(--wp--preset--color--accent);
}
.wp-block-cb-carousel .slick-dots li.slick-active button::before {
  border-color: var(--wp--preset--color--accent);
  background-color: var(--wp--preset--color--accent);
}
@media (min-width: 781px) {
  .wp-block-cb-carousel.alignfull .slick-next, .wp-block-cb-carousel.alignwide .slick-next {
    right: var(--wp--preset--spacing--20, 2em) !important;
  }
  .wp-block-cb-carousel.alignfull .slick-prev, .wp-block-cb-carousel.alignwide .slick-prev {
    left: var(--wp--preset--spacing--20, 2em) !important;
  }
}
@media (min-width: 1140px) {
  .wp-block-cb-carousel .slick-prev {
    left: calc(-1 * var(--wp--preset--spacing--60, 6em)) !important;
  }
  .wp-block-cb-carousel .slick-next {
    right: calc(-1 * var(--wp--preset--spacing--60, 6em)) !important;
  }
}

.simpletoc {
  width: 100%;
  margin: var(--wp--preset--spacing--40, 4em) 0;
}
.simpletoc > h2 {
  display: inline-block;
  line-height: 1;
}
.simpletoc .simpletoc-collapsible,
.simpletoc .simpletoc-collapsible:active,
.simpletoc .simpletoc-collapsible:focus,
.simpletoc .simpletoc-collapsible:hover {
  position: relative;
  border: 1px solid color-mix(in srgb, #000 10%, transparent);
  border-radius: 4px;
  padding: calc(var(--wp--preset--spacing--20, 2em) * 1.25) calc(var(--wp--preset--spacing--20, 2em) * 2 + 20px) calc(var(--wp--preset--spacing--20, 2em) * 1.25) var(--wp--preset--spacing--20, 2em);
  font-size: 16px;
  font-weight: 400;
  color: inherit;
  background-color: color-mix(in srgb, #000 5%, transparent);
}
.simpletoc .simpletoc-collapsible::after,
.simpletoc .simpletoc-collapsible:active::after,
.simpletoc .simpletoc-collapsible:focus::after,
.simpletoc .simpletoc-collapsible:hover::after {
  position: absolute;
  top: calc(50% - 10px);
  right: var(--wp--preset--spacing--20, 2em);
  content: "\eb3b";
  display: inline-block;
  height: 20px;
  width: 20px;
  font-family: "Nucleo";
  font-size: 20px;
  transition: transform 0.33s ease-in-out;
  transform-origin: center center;
}
.simpletoc .simpletoc-collapsible.active::after,
.simpletoc .simpletoc-collapsible:active.active::after,
.simpletoc .simpletoc-collapsible:focus.active::after,
.simpletoc .simpletoc-collapsible:hover.active::after {
  transform: rotate(225deg);
}
.simpletoc .simpletoc-collapsible .simpletoc-icon,
.simpletoc .simpletoc-collapsible:active .simpletoc-icon,
.simpletoc .simpletoc-collapsible:focus .simpletoc-icon,
.simpletoc .simpletoc-collapsible:hover .simpletoc-icon {
  display: none;
}
.simpletoc .simpletoc-content {
  padding: 0 var(--wp--preset--spacing--20, 2em);
  background-color: transparent;
}
.simpletoc .simpletoc-content .simpletoc-list {
  padding-left: var(--wp--preset--spacing--30, 3em);
}
.simpletoc .simpletoc-content .simpletoc-list li {
  position: relative;
}
.simpletoc .simpletoc-content .simpletoc-list li::before, .simpletoc .simpletoc-content .simpletoc-list li::marker {
  color: color-mix(in srgb, currentColor 50%, transparent);
}
.simpletoc .simpletoc-content .simpletoc-list li::marker {
  content: "\eb0b  ";
  font-family: "Nucleo";
  font-size: 12px;
}
.simpletoc .simpletoc-collapsible:lang(fr-CA) {
  text-transform: none !important;
}

/* Custom components *********************************************************/
#back-to-top {
  outline: 3px solid transparent;
  outline-offset: 0px;
  display: inline-block;
  align-content: center;
  min-height: 44px;
  box-shadow: none;
  box-sizing: border-box;
  line-height: inherit;
  text-align: center;
  text-decoration: none;
  word-break: keep-all;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: fixed;
  right: var(--wp--preset--spacing--30, 3em);
  bottom: var(--wp--preset--spacing--30, 3em);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--wp--preset--spacing--30, 3em);
  border-radius: 9999px;
  height: 44px;
  width: 44px;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  color: #fff;
  background-color: var(--wp--preset--color--accent);
  transition: all 0.2s ease-in-out;
}
#back-to-top:focus {
  outline-color: color-mix(in srgb, currentColor 50%, transparent);
}
#back-to-top:hover {
  border-color: #202020 !important;
  background-color: #202020 !important;
}
#back-to-top:hover, #back-to-top:hover::before, #back-to-top:hover::after, #back-to-top:hover * {
  color: #fff !important;
}
#back-to-top::before {
  content: "\ea62";
  font-family: "Nucleo";
}
#back-to-top:hover {
  transform: scale(1.1);
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 782px) {
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child.mega-menu {
    position: unset;
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child.mega-menu > .wp-block-navigation__submenu-container {
    flex-direction: row;
    top: calc(100% - var(--wp--preset--spacing--30, 3em));
    left: 0;
    right: 0;
    z-index: 9999;
    border: none;
    width: 100%;
    max-width: var(--wp--style--global--content-size, 1140px);
    margin: 0 auto;
    padding: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07);
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child.mega-menu > .wp-block-navigation__submenu-container > .wp-block-navigation-item {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child.mega-menu > .wp-block-navigation__submenu-container > .wp-block-navigation-item > .wp-block-navigation-item__content {
    padding: calc(var(--wp--preset--spacing--30, 3em) * 0.75) var(--wp--preset--spacing--30, 3em);
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child.mega-menu > .wp-block-navigation__submenu-container > .wp-block-navigation-item.mega-menu__heading {
    padding: calc(var(--wp--preset--spacing--30, 3em) * 0.5) var(--wp--preset--spacing--30, 3em);
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child.mega-menu > .wp-block-navigation__submenu-container > .wp-block-navigation-item.mega-menu__heading > .wp-block-navigation-item__content {
    flex-grow: 0 !important;
    margin: calc(var(--wp--preset--spacing--30, 3em) * 0.75) 0;
    padding: 0;
    font-weight: 500;
    text-decoration: none;
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child.mega-menu > .wp-block-navigation__submenu-container > .wp-block-navigation-item .wp-block-navigation__submenu-icon {
    display: none;
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child.mega-menu > .wp-block-navigation__submenu-container > .wp-block-navigation-item .wp-block-navigation__submenu-container {
    position: unset;
    height: auto;
    width: 100%;
    opacity: 1;
    flex-direction: column;
    visibility: visible;
    border: 0;
    padding: 0 0 calc(var(--wp--preset--spacing--30, 3em) * 0.5);
    box-shadow: none;
    background-color: unset !important;
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child.mega-menu > .wp-block-navigation__submenu-container > .wp-block-navigation-item .wp-block-navigation__submenu-container .wp-block-navigation-item {
    padding: calc(var(--wp--preset--spacing--30, 3em) * 0.5) 0;
  }
  header.wp-block-template-part .wp-block-navigation ul.wp-block-navigation__container > .wp-block-navigation-item.wp-block-navigation-submenu.has-child.mega-menu > .wp-block-navigation__submenu-container > .wp-block-navigation-item .wp-block-navigation__submenu-container .wp-block-navigation-item .wp-block-navigation-item__content {
    flex-grow: 0 !important;
    padding: 0;
  }
}

/*!
 * Mmenu Light
 * mmenujs.com/mmenu-light
 *
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-4.0
 * http://creativecommons.org/licenses/by/4.0/
 */
:root {
  /** Width for the drawer. */
  --mm-ocd-width: 80%;
  /** Min-width for the drawer. */
  --mm-ocd-min-width: 200px;
  /** Max-width for the drawer. */
  --mm-ocd-max-width: 440px;
}

body.mm-ocd-opened {
  overflow-y: hidden;
  overscroll-behavior: none;
}

.mm-ocd {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 100%;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  overscroll-behavior: contain;
  background: rgba(0, 0, 0, 0);
  transition-property: bottom, background-color;
  transition-duration: 0s, 0.3s;
  transition-timing-function: ease;
  transition-delay: 0.45s, 0.15s;
}
.mm-ocd--open {
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  transition-delay: 0s;
}

.mm-ocd__content {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: var(--mm-ocd-width);
  min-width: var(--mm-ocd-min-width);
  max-width: var(--mm-ocd-max-width);
  background: #fff;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}
.mm-ocd--left .mm-ocd__content {
  left: 0;
  transform: translate3d(-100%, 0, 0);
}
.mm-ocd--right .mm-ocd__content {
  right: 0;
  transform: translate3d(100%, 0, 0);
}
.mm-ocd--open .mm-ocd__content {
  transform: translate3d(0, 0, 0);
}

.mm-ocd__backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(100% - var(--mm-ocd-max-width), 100% - var(--mm-ocd-width), 100% - var(--mm-ocd-min-width));
  background: rgba(3, 2, 1, 0);
}
.mm-ocd--left .mm-ocd__backdrop {
  right: 0;
}
.mm-ocd--right .mm-ocd__backdrop {
  left: 0;
}

/** Animation duration. */
/** Arrow size. */
/** Arrow weight. */
/** Border opacity. */
/** Navbar opacity. */
/** Arrow opacity. */
.mm-spn a,
.mm-spn span, .mm-spn li, .mm-spn ul, .mm-spn {
  display: block;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  /** Height for menu items. */
  --mm-spn-item-height: 50px;
  /** Indent for menu items. */
  --mm-spn-item-indent: 20px;
  /** Line height for menu items. */
  --mm-spn-line-height: 24px;
  /** Panel offset. */
  --mm-spn-panel-offset: 30%;
}

.mm-spn {
  width: 100%;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  transform: translateX(0px);
}

.mm-spn ul {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: 100%;
  bottom: 0;
  z-index: 2;
  width: calc(100% + var(--mm-spn-panel-offset));
  padding-right: var(--mm-spn-panel-offset);
  line-height: var(--mm-spn-line-height);
  overflow: visible;
  overflow-y: auto;
  background: inherit;
  transition: left 0.3s ease 0s;
  cursor: default;
}
.mm-spn ul:after {
  content: "";
  display: block;
  height: var(--mm-spn-item-height);
}
.mm-spn > ul {
  left: 0;
}
.mm-spn ul.mm-spn--open {
  left: 0;
}
.mm-spn ul.mm-spn--parent {
  left: calc(-1 * var(--mm-spn-panel-offset));
  overflow: visible;
}

.mm-spn li {
  position: relative;
  background: inherit;
  cursor: pointer;
}
.mm-spn li:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(var(--mm-spn-item-height) / 2);
  right: calc(var(--mm-spn-item-height) / 2);
  z-index: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg) translate(0, -50%);
  opacity: 0.4;
}
.mm-spn li:after {
  content: "";
  display: block;
  margin-left: var(--mm-spn-item-indent);
  border-top: 1px solid;
  opacity: 0.15;
}

.mm-spn a,
.mm-spn span {
  position: relative;
  z-index: 1;
  padding: calc((var(--mm-spn-item-height) - var(--mm-spn-line-height)) / 2) var(--mm-spn-item-indent);
}
.mm-spn a {
  background: inherit;
  color: inherit;
  text-decoration: none;
}
.mm-spn a:not(:last-child) {
  width: calc(100% - var(--mm-spn-item-height));
}
.mm-spn a:not(:last-child):after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-right: 1px solid;
  opacity: 0.15;
}
.mm-spn span {
  background: transparent;
}

.mm-spn.mm-spn--navbar {
  cursor: pointer;
}
.mm-spn.mm-spn--navbar:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(var(--mm-spn-item-height) / 2);
  left: var(--mm-spn-item-indent);
  width: 10px;
  height: 10px;
  margin-top: 2px;
  border-top: 2px solid;
  border-left: 2px solid;
  transform: rotate(-45deg) translate(50%, -50%);
  opacity: 0.4;
}
.mm-spn.mm-spn--navbar.mm-spn--main {
  cursor: default;
}
.mm-spn.mm-spn--navbar.mm-spn--main:before {
  content: none;
  display: none;
}
.mm-spn.mm-spn--navbar:after {
  content: attr(data-mm-spn-title);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--mm-spn-item-height);
  padding: 0 calc(var(--mm-spn-item-indent) * 2);
  line-height: var(--mm-spn-item-height);
  opacity: 0.4;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.mm-spn.mm-spn--navbar.mm-spn--main:after {
  padding-left: var(--mm-spn-item-indent);
}
.mm-spn.mm-spn--navbar ul {
  top: calc(var(--mm-spn-item-height) + 1px);
}
.mm-spn.mm-spn--navbar ul:before {
  content: "";
  display: block;
  position: fixed;
  top: inherit;
  z-index: 2;
  width: 100%;
  border-top: 1px solid currentColor;
  opacity: 0.15;
}

.mm-spn.mm-spn--light {
  color: #444;
  background: #f3f3f3;
}
.mm-spn.mm-spn--dark {
  color: #ddd;
  background: #333;
}

.mm-spn.mm-spn--vertical {
  overflow-y: auto;
}
.mm-spn.mm-spn--vertical ul {
  width: 100%;
  padding-right: 0;
  position: static;
}
.mm-spn.mm-spn--vertical ul ul {
  display: none;
  padding-left: var(--mm-spn-item-indent);
}
.mm-spn.mm-spn--vertical ul ul:after {
  height: calc(var(--mm-spn-item-height) / 2);
}
.mm-spn.mm-spn--vertical ul.mm-spn--open {
  display: block;
}
.mm-spn.mm-spn--vertical li.mm-spn--open:before {
  transform: rotate(135deg) translate(-50%, 0);
}
.mm-spn.mm-spn--vertical ul ul li:last-child:after {
  content: none;
  display: none;
}

mm-burger {
  --mb-bar-height: 2px;
  --mb-bar-width: 20px;
  --mb-bar-spacing: 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  margin: 0;
  color: currentColor;
  transition: transform 0.2s ease-in-out;
}

.mm-spn {
  --mm-spn-item-height: 60px;
  --mm-spn-item-indent: 16px;
  --mm-spn-line-height: 24px;
  --mm-spn-panel-offset: 30%;
}
.mm-spn a,
.mm-spn span {
  padding: var(--wp--preset--spacing--10, 1em) var(--wp--preset--spacing--20, 2em);
}
.mm-spn a:not(:last-child):after {
  display: none;
}
.mm-spn a span {
  padding: 0;
}
.mm-spn li,
.mm-spn li a {
  min-height: var(--mm-spn-item-height);
  font-style: normal;
  font-weight: 400;
}
.mm-spn li::after {
  display: none;
}
.mm-spn li a {
  display: flex;
  align-items: center;
}
.mm-spn.mm-spn--navbar::before {
  z-index: 2;
}
.mm-spn.mm-spn--navbar::after {
  position: relative;
  opacity: 1;
  font-family: var(--wp--preset--font-family--roboto);
  font-weight: 400;
}
.mm-spn.mm-spn--navbar ul::before {
  color: currentColor;
}

.mm-ocd {
  --mm-ocd-width: 80%;
  --mm-ocd-min-width: 200px;
  --mm-ocd-max-width: 440px;
  font-family: var(--wp--preset--font-family--roboto);
}
.mm-ocd .wp-block-navigation__submenu-icon {
  display: none;
}

.mm-spn.mm-spn--dark {
  color: #fff;
  background: #000;
}
.mm-spn.mm-spn--dark a,
.mm-spn.mm-spn--dark span {
  color: #fff;
}
.mm-spn.mm-spn--dark li {
  background: #000;
}
.mm-spn.mm-spn--dark li::before {
  border-top-color: #fff;
  border-left-color: #fff;
}

.mm-spn.mm-spn--light {
  color: #000;
  background: #fff;
}
.mm-spn.mm-spn--light a,
.mm-spn.mm-spn--light span {
  color: #000;
}
.mm-spn.mm-spn--light li {
  background: #fff;
}
.mm-spn.mm-spn--light li::before {
  border-top-color: #000;
  border-left-color: #000;
}

@media screen and (max-width: 781px) {
  .admin-bar .mm-ocd__content {
    top: 46px;
  }
}
header.wp-block-template-part {
  position: sticky;
  z-index: 10;
  right: 0;
  left: 0;
  top: 0;
}

.headroom {
  transition: all 200ms linear;
  will-change: transform;
}
.headroom.headroom--not-top {
  box-shadow: 0 -6px 10px 5px rgba(0, 0, 0, 0.5);
}
.headroom.headroom--pinned {
  opacity: 1;
  transform: translateY(0%);
}
.headroom.headroom--unpinned {
  opacity: 0;
  transform: translateY(-100%);
}

.admin-bar header.wp-block-template-part {
  top: 0;
}
@media (min-width: 600px) {
  .admin-bar header.wp-block-template-part {
    top: 46px;
  }
}
@media (min-width: 782px) {
  .admin-bar header.wp-block-template-part {
    top: 32px;
  }
}
