/*!*******************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./app/scss/main.scss ***!
  \*******************************************************************************************************************************************************************************************************************************************/
.google-map-wrapper {
  width: 100%;
  max-width: 100%;
  aspect-ratio: var(--gdm-map-ar);
  min-height: var(--gdm-info-panel-height);
  transition: all 0.3s ease-in-out;
}
.google-map-wrapper > div {
  aspect-ratio: var(--gdm-map-ar);
}

.gdm-container {
  padding: 0 !important;
}

.gdm-container {
  --gdm-max-width: 100%;
  --gdm-info-panel-height: 400px;
  --gdm-font-primary: "Satoshi Variable", sans-serif;
  --gdm-font-headline: "Manuka", "Impact", sans-serif;
  --gdm-darkest: #000;
  --gdm-lightest: #F5F0E6;
  --gdm-primary: #0066ff;
  --gdm-secondary: #ff0000;
  --gdm-coral: #F65935;
  --gdm-blue: #2D90D7;
  --gdm-dark-hover: rgba(255, 255, 255, 0.10);
  --gdm-primary-cream: #F5F0E6;
  --gdm-gray: #E4E4E7;
  --gdm-map-ar: 16/9;
  --helio-block-max-width: 100%;
  max-width: --helio-block-max-width, 100%;
  max-width: var(--gdm-max-width, --helio-block-max-width, 100%);
}

.gdm-map-key__section__title, .gdm-info-panel__section__title {
  font-family: var(--gdm-font-primary);
  text-transform: uppercase;
  font-size: 0.625rem;
  letter-spacing: 0.8px;
  line-height: 1.3;
  font-weight: 700;
  border-bottom: 1px solid var(--gdm-gray);
  padding-bottom: 8px;
  display: block;
}

/**
 * Function to convert a number to VW at the maximum desktop width.
 * Usage: vw(16);
 *
 * @param {number} $value - The number to convert to VW.
 * @return {number} - The calculated value in VW.
 */
/**
 * Function to convert a number to REM.
 * Usage: calcRem(16);
 *
 * @param {number} $value - The number to convert to REM.
 * @return {number} - The calculated value in REM.
 */
/**
 * Function to postfix a number to PX.
 * Usage: px(16);
 *
 * @param {number} $value - The number to convert to PX.
 * @return {number} - The calculated value in PX.
 */
/* 
 * Type scale function. Produces REM based scale results for fluid type.
 * Usage: typeScale(16, 24);
 *
 * @param {number} $minSize - The minimum font size in pixels (no unit).
 * @param {number} $maxSize - The maximum font size in pixels (no unit).
 * @return {number} - The calculated font size in REM.
 */
/* 
 * Produces pixel based scale results appropriate for fluid spacing.
 * Usage: spaceScale(16, 24);
 *
 * @param {number} $minSize - The minimum size in pixels (no unit).
 * @param {number} $maxSize - The maximum size in pixels (no unit).
 * @return {number} - The calculated scale size in PX.
 */
.gmnoprint,
img[alt=Google] {
  display: none;
}

.gdm-desktop {
  display: none;
}
@media (min-width: 768px) {
  .gdm-desktop {
    display: block;
  }
}

.gdm-map-wrapper {
  position: relative;
  overflow: hidden;
  height: max(400px, min(55.5555555556vw, 800px));
}

.gdm-active-marker {
  background-color: black;
}

/**
 * Marker Icon
 */
.gdm-marker {
  background: var(--helio-color-primary);
  min-width: 24px;
  min-height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--helio-color-lightest);
  font-family: var(--helio-f-primary);
  font-size: 14px;
  font-weight: 600;
}

/**
 * Custom Zoom Controls
 */
div[\:has\(.gdm-zoom-controls\)] {
  right: 0 !important;
}
div:has(.gdm-zoom-controls) {
  right: 0 !important;
}

.gdm-zoom-controls {
  width: max(40px, min(3.8888888889vw, 56px));
  height: auto;
  display: block;
  margin: max(24px, min(2.7777777778vw, 40px));
}

.gdm-zoom-in,
.gdm-zoom-out {
  background: var(--helio-color-secondary);
  position: relative;
  width: max(40px, min(3.8888888889vw, 56px));
  height: max(40px, min(3.8888888889vw, 56px));
}

.gdm-zoom-in:before, .gdm-zoom-in:after {
  content: "";
  display: block;
  position: absolute;
  background: var(--helio-color-darkest);
  top: 50%;
  left: 50%;
  width: max(24px, min(2.7777777778vw, 40px));
  height: 3px;
  transform: var(--zoom-in-transform);
  transition: background 300ms ease-in-out;
}
.gdm-zoom-in:before {
  --zoom-in-transform: translate(-50%, -50%);
}
.gdm-zoom-in:after {
  --zoom-in-transform: translate(-50%, -50%) rotate(90deg);
}
.gdm-zoom-in:hover:before, .gdm-zoom-in:hover:after {
  background: var(--primary-fog);
}

.gdm-zoom-out:before {
  content: "";
  display: block;
  position: absolute;
  background: var(--helio-color-darkest);
  top: 50%;
  left: 50%;
  width: max(24px, min(2.7777777778vw, 40px));
  height: 3px;
  transform: translate(-50%, -50%);
  transition: background 300ms ease-in-out;
}
.gdm-zoom-out:disabled {
  cursor: not-allowed;
}
.gdm-zoom-out:disabled:before {
  opacity: 0.5;
}
.gdm-zoom-out:hover:before {
  background: var(--primary-fog);
}

/**
 * InfoWindow
 */
div[class*=gm-style-iw] {
  padding: 0 !important;
  padding: initial !important;
  overflow: visible !important;
  overflow: initial !important;
}
div[class*=gm-style-iw]:after {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

div[class*=gm-style-iw][\:has\(.info-window\)] {
  border-radius: 10.66px !important;
}

div[class*=gm-style-iw][\:has\(.info-window\)] {
  background: #fff;
}

div[class*=gm-style-iw]:has(.info-window) {
  border-radius: 10.66px !important;
}

div[class*=gm-style-iw]:has(.info-window) {
  background: #fff;
}

.info-window {
  border-radius: 10.66px !important;
  overflow: hidden !important;
}

.info-window {
  box-shadow: 0px 5.33px 5.33px 0px rgba(0, 0, 0, 0.25);
}

.info-window__inner {
  padding: 12px 16px;
}

.info-window__county {
  font-weight: 600;
}

.gdm-marker-cluster {
  background: var(--helio-color-darkest) !important;
}

.gdm-marker-cluster {
  min-width: 24px;
  min-height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-family: var(--helio-f-primary);
  color: var(--helio-color-lightest);
  font-size: 14px;
}

/* Accordion Wrap */
.gdm-accordions-wrap {
  width: 100%;
}

.gdm-accordion__content {
  opacity: 1;
  min-height: 0;
  transition: opacity 250ms, visibility 250ms;
}
.gdm-accordion__content .wysiwyg {
  padding-bottom: 30px;
}

.gdm-accordion__content-hider {
  position: relative;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
}
@media (prefers-reduced-motion: no-preference) {
  .gdm-accordion__content-hider {
    transition: grid-template-rows 400ms;
  }
}

[aria-hidden=false] > .gdm-accordion__content-hider {
  grid-template-rows: 1fr;
}

.gdm-accordion__content-hider__content-wrapper {
  min-height: 0;
}

.gdm-accordion__content-inner {
  position: relative;
  min-height: 0;
}
.gdm-accordion__content-inner p:first-child {
  margin-top: 0;
  margin-top: initial;
}

[aria-hidden=true].gdm-accordion__content {
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.gdm-accordion__trigger {
  width: 100%;
  text-align: left;
  padding: 0;
}

.gdm-accordion__parent .gdm-accordion__parent__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
  min-height: 0;
  border-top: 1px solid var(--gdm-lightest);
  padding: max(16px, min(5.15vw, 24px)) 0;
  margin-bottom: -1px;
  margin: 0 24px;
}
@media (min-width: 768px) {
  .gdm-accordion__parent .gdm-accordion__parent__button {
    margin: 0 40px;
  }
}
@media (min-width: 1024px) {
  .gdm-accordion__parent .gdm-accordion__parent__button {
    margin: 0;
  }
}
.gdm-accordion__parent .gdm-accordion__parent__button h2 {
  margin: 0;
}
.gdm-accordion__parent .gdm-accordion__parent__button svg {
  width: max(34px, min(8.55vw, 65px));
  height: auto;
  transition: all 0.2s ease-in-out;
  color: var(--gdm-darkest);
  overflow: visible;
}
.gdm-accordion__parent .gdm-accordion__parent__button svg circle {
  stroke: var(--gdm-lightest);
}
.gdm-accordion__parent .gdm-accordion__parent__button svg path {
  transition-delay: 0.1s;
  color: var(--gdm-lightest);
}
.gdm-accordion__parent .gdm-accordion__parent__button:hover svg {
  color: var(--gdm-blue);
}
.gdm-accordion__parent .gdm-accordion__parent__button:hover svg circle {
  stroke: var(--gdm-blue);
}
.gdm-accordion__parent .gdm-accordion__parent__button:hover svg path {
  stroke: var(--gdm-darkest);
}
.gdm-accordion__parent .gdm-accordion__trigger[aria-expanded=true] .gdm-accordion__parent__button h2 {
  color: var(--gdm-blue);
}
.gdm-accordion__parent .gdm-accordion__trigger[aria-expanded=true] .gdm-accordion__parent__button svg {
  transform: rotate(45deg);
  color: var(--gdm-blue);
}
.gdm-accordion__parent .gdm-accordion__trigger[aria-expanded=true] .gdm-accordion__parent__button svg circle {
  stroke: var(--gdm-darkest);
}
.gdm-accordion__parent .gdm-accordion__trigger[aria-expanded=true] .gdm-accordion__parent__button svg path {
  stroke: var(--gdm-darkest);
}
.gdm-accordion__parent:last-child > .gdm-accordion__trigger {
  border-bottom: none;
}

.gdm-accordion__child .gdm-accordion__trigger {
  transition: all 0.3s ease-in-out;
  padding: 0;
}
.gdm-accordion__child .gdm-accordion__trigger[aria-expanded=false]:hover {
  background-color: var(--gdm-dark-hover);
}
.gdm-accordion__child .gdm-accordion__child__button {
  margin: 0 24px;
}
@media (min-width: 768px) {
  .gdm-accordion__child .gdm-accordion__child__button {
    margin: 0 40px;
  }
}
@media (min-width: 1024px) {
  .gdm-accordion__child .gdm-accordion__child__button {
    margin: 0;
  }
}
.gdm-accordion__child .gdm-accordion__child__button h3 {
  display: flex;
  align-items: center;
}
.gdm-accordion__child .gdm-accordion__child__button svg {
  width: 16px;
  margin-right: 12px;
}
.gdm-accordion__child .gdm-accordion__child__button svg:last-child {
  margin-left: auto;
}
.gdm-accordion__child [aria-expanded=true] {
  background-color: #fff;
  color: var(--gdm-darkest);
}
.gdm-accordion__child [aria-expanded=true] .gdm-accordion__child__button svg {
  color: var(--gdm-darkest);
}
.gdm-accordion__child [aria-expanded=true] .gdm-accordion__child__button span + svg {
  transform: rotate(180deg);
}

/* Accordion info inner */
.gdm-acc-info__inner {
  padding: 0px 52px 32px 53px;
  max-width: 500px;
}
@media (min-width: 768px) {
  .gdm-acc-info__inner {
    padding-left: 71px;
  }
}
@media (min-width: 1024px) {
  .gdm-acc-info__inner {
    padding-left: 55px;
  }
}

.gdm-filters {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(41, 62, 71, 0.16);
}

.gdm-filter {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  grid-column: span 2;
  border-bottom: 1px solid rgba(41, 62, 71, 0.16);
  padding: 32px 0;
}
@media (min-width: 960px) {
  .gdm-filter {
    grid-column: unset;
  }
}
.gdm-filter[\:has\(\%2B\%20.gdm-filter__button-wrapper\)] {
  border: none;
}
.gdm-filter:has(+ .gdm-filter__button-wrapper) {
  border: none;
}
.gdm-filter label {
  font-family: var(--helio-f-primary);
  font-size: var(--helio-base-font-size);
  line-height: var(--helio-base-line-height);
  margin-bottom: 16px;
}
.gdm-filter .gdm-filter__inner {
  width: 100%;
}
.gdm-filter .gdm-filter__toggle {
  display: flex;
  position: relative;
  padding: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: max(0.938rem, min(1.3vw, 1.125rem));
  border: 2px solid var(--helio-color-darkest);
  background: var(--helio-color-lightest);
  width: 100%;
  height: 50px;
  text-align: left;
  isolation: isolate;
  gap: 30px;
  z-index: 3;
}
.gdm-filter .gdm-filter__remove {
  position: absolute;
  padding-right: 0;
  height: 69px;
  width: 30px;
  right: 44px;
  top: 27%;
  z-index: 4;
  font-size: 24px;
}
@media (min-width: 1024px) {
  .gdm-filter .gdm-filter__remove {
    top: 29%;
  }
}
.gdm-filter .gdm-filter__list ul {
  list-style: none;
  background-color: #FFFAF4;
  outline: none;
  border: 2px solid var(--helio-color-darkest);
  width: 100%;
  margin: -2px 0 0;
  min-height: 0;
  z-index: 5;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  padding: 0;
}
.gdm-filter .gdm-filter__list ul * {
  z-index: 4;
}
.gdm-filter .gdm-filter__list ul .gdm-filter__item {
  list-style: none;
  cursor: pointer;
  padding: 12px 16px;
  margin: 0;
  line-height: 1.2;
  transition: 300ms;
}
.gdm-filter .gdm-filter__list ul .gdm-filter__item span {
  font-size: max(0.938rem, min(1.3vw, 1.125rem));
}
.gdm-filter .gdm-filter__list ul .gdm-filter__item:hover, .gdm-filter .gdm-filter__list ul .gdm-filter__item--hovered {
  background: var(--primary-river);
  color: var(--helio-color-lightest);
}
.gdm-filter .gdm-filter__list ul .gdm-filter__item:hover span, .gdm-filter .gdm-filter__list ul .gdm-filter__item--hovered span {
  background-size: 0 2px, 100% 2px;
}
.gdm-filter .gdm-filter__list ul .gdm-filter__item--selected {
  background: var(--helio-color-darkest);
  color: var(--helio-color-lightest);
}
.gdm-filter .gdm-filter__list ul .gdm-filter__item--selected:hover {
  background: var(--primary-river);
  color: var(--helio-color-lightest);
}
.gdm-filter .gdm-filter__list {
  display: grid;
  position: absolute;
  overflow: hidden;
  width: 100%;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease-in-out;
}
.gdm-filter [aria-expanded=false] + .gdm-filter__list {
  grid-template-rows: 0fr;
}
.gdm-filter [aria-expanded=false] + .gdm-filter__list ul {
  opacity: 0;
  visibility: hidden;
  border-color: transparent;
}
.gdm-filter [aria-expanded=true] + .gdm-filter__list {
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.2s ease-in-out;
}
.gdm-filter [aria-expanded=true] + .gdm-filter__list ul {
  opacity: 1;
  visibility: visible;
}
.gdm-filter .gdm-filter__icon {
  transition: transform 0.2s ease-in-out;
}
.gdm-filter .gdm-filter__icon--open {
  transform: rotate(180deg);
}

.gdm-filter__button-wrapper {
  min-height: 69px;
  position: relative;
  width: 100%;
}

.gdm-filter__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  border: 1px solid var(--helio-color-darkest);
  border-radius: 5px;
  padding: 16px;
  width: 100%;
  min-height: 100%;
  transition: all 0.3s ease-in-out;
  color: var(--helio-color-darkest);
  -webkit-text-decoration: var(--helio-link-td);
          text-decoration: var(--helio-link-td);
  font-size: var(--helio-link-fs);
  font-weight: var(--helio-link-fw);
  line-height: var(--helio-link-lh);
  text-transform: var(--helio-link-tt);
  letter-spacing: var(--helio-link-ls);
}
.gdm-filter__button svg {
  width: 34px;
  height: 34px;
  color: var(--gdm-darkest);
}
.gdm-filter__button:hover {
  background-color: var(--gdm-blue);
  border-color: var(--gdm-blue);
  color: #fff;
}
.gdm-filter__button:hover svg {
  color: #fff;
}

.gdm-filter__clear {
  padding: 0;
  justify-self: start;
  grid-row: 2;
  font-weight: 600;
  line-height: 1.6;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 1.125rem;
  transition: var(--helio-transition-duration-default);
}
.gdm-filter__clear:hover {
  color: var(--primary-river);
}

.gdm-filter__meta {
  display: grid;
  grid-template-rows: subgrid;
  grid-template-columns: subgrid;
  grid-column: 1/-1;
  grid-row: 1/3;
}

.gdm-filter__selections {
  margin: 0;
  display: block;
  grid-row: 1;
  grid-column: 1/-1;
  opacity: 1;
  visibility: visible;
  transition: all 300ms;
  margin-bottom: 16px;
}

ul.filter-selections__list {
  padding-left: 0 !important;
}

ul.filter-selections__list {
  list-style: none;
  display: inline-block;
}
ul.filter-selections__list li {
  display: inline-block;
}
ul.filter-selections__list li:not(:last-child) {
  margin-right: 4px;
}

.gdm-info-panel {
  position: absolute;
  height: 100%;
  width: 60%;
  top: 0;
  right: -60%;
  background-color: #fff;
  border: 1px solid var(--gdm-gray);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: all 0.2s ease-in-out;
  transition-delay: 0.2s;
}
@media (min-width: 1260px) {
  .gdm-info-panel {
    transition-delay: 0s;
  }
}
@media (min-width: 1260px) {
  .gdm-info-panel {
    width: 40%;
    right: -40%;
  }
}
.gdm-info-panel[aria-expanded=true] {
  right: 0;
}
.gdm-info-panel__inner {
  padding: 49px 33px;
}
.gdm-info-panel__close-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 16px 16px;
  cursor: pointer;
}
.gdm-info-panel__close-btn:hover svg {
  color: var(--gdm-coral);
}
.gdm-info-panel__heading h2 {
  margin: 0;
}
.gdm-info-panel__heading h2 span {
  display: block;
}
@media (min-width: 1260px) {
  .gdm-info-panel__heading h2 {
    font-size: 4rem;
  }
}
.gdm-info-panel__stats {
  font-size: 1.125rem;
}
.gdm-info-panel__stats p {
  margin-top: 8px;
  display: flex;
  align-self: center;
}
.gdm-info-panel__stats span {
  align-self: center;
  margin-right: 8px;
}
.gdm-info-panel__stats svg {
  width: 16px;
  margin-right: 8px;
  padding-bottom: 5px;
}

.gdm-info-panel__section__title {
  border-color: var(--gdm-gray);
  padding-top: 8px;
  margin: 24px 0 8px;
}
.gdm-info-panel__section p {
  margin: 0;
}

.gdm-map-key {
  margin-top: 40px;
}

.gdm-map-key__section__title {
  border-color: var(--gdm-darkest);
  margin: 0 0 24px;
}

.gdm-map-key__section:first-child {
  margin-bottom: 40px;
}

.gdm-map-key__section__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 48px;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media (min-width: 768px) {
  .gdm-map-key__section__inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }
}
@media (min-width: 960px) {
  .gdm-map-key__section__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
.gdm-map-key__section__inner article:not(:last-child) {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .gdm-map-key__section__inner article:not(:last-child) {
    margin-bottom: 0px;
  }
}
.gdm-map-key__section__inner h2 {
  font-family: var(--gdm-font-primary);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  display: flex;
  align-items: center;
}
.gdm-map-key__section__inner article > p {
  font-family: var(--gdm-font-primary);
  font-weight: 400;
  line-height: 1.6;
  font-size: 0.813rem;
  margin: 8px 0 0;
}
@media (min-width: 768px) {
  .gdm-map-key__section__inner article > p {
    font-size: 1rem;
  }
}
.gdm-map-key__section__inner svg {
  width: 16px;
  margin-right: 8px;
}

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #404040;
  border-color: #404040 transparent #404040 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
:root {
  --gdm-scroll-bar-thickness: 4px;
  --gdm-filter-bar-sticky-top: 160px;
  --gdm-fselect-svg-width: 16px;
}

.gdm-grantee-database {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: max(48px, min(4.4444444444vw, 64px));
  row-gap: max(48px, min(4.4444444444vw, 64px));
}
@media (min-width: 768px) {
  .gdm-grantee-database {
    margin-top: max(40px, min(3.8888888889vw, 56px));
  }
}
@media (min-width: 1024px) {
  .gdm-grantee-database {
    grid-template-columns: min(325px, 33%) 1fr;
    -moz-column-gap: max(72px, min(6.6666666667vw, 96px));
         column-gap: max(72px, min(6.6666666667vw, 96px));
    row-gap: 0;
  }
}
@media (min-width: 1250px) {
  .gdm-grantee-database {
    -moz-column-gap: max(112px, min(10vw, 144px));
         column-gap: max(112px, min(10vw, 144px));
  }
}

.gdm-search {
  padding: max(16px, min(2.2222222222vw, 32px)) 0;
}

.gdm-search-filter__wrapper {
  padding-right: 8px;
  max-height: calc(60vh - 40px);
  height: -moz-fit-content;
  height: fit-content;
  top: 160px;
  top: var(--gdm-filter-bar-sticky-top);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(41, 62, 71, 0.36) transparent;
}
.admin-bar .gdm-search-filter__wrapper {
  top: calc(160px + var(--wp-admin-bar-height));
  top: calc(var(--gdm-filter-bar-sticky-top) + var(--wp-admin-bar-height));
}
@media (min-width: 1024px) {
  .gdm-search-filter__wrapper {
    position: sticky;
    margin-bottom: max(32px, min(3.3333333333vw, 48px));
    max-height: calc(80vh - 40px);
  }
}

@media (min-width: 768px) {
  .gdm-search__wrapper {
    border-top: 2px solid rgba(41, 62, 71, 0.16);
    padding: max(16px, min(2.2222222222vw, 32px)) 0;
  }
}

div.gdm-search__wrapper .gdm-search__input {
  background: var(--helio-color-lightest);
  border: 2px solid var(--helio-color-darkest);
  border-radius: 0;
  font-weight: 400;
  font-family: var(--helio-f-primary);
  font-size: 14px;
}
div.gdm-search__wrapper .gdm-search__input, div.gdm-search__wrapper .gdm-search__input:focus {
  outline: none;
}

.gdm-filter__checkboxes__label-wrapper {
  display: flex;
  margin-bottom: 16px;
}
.gdm-filter__checkboxes__label-wrapper label.gdm-filter__label {
  margin: 0;
}

label.gdm-filter__checkbox-label {
  font-size: 1.125rem;
  display: flex;
  margin: 0;
  gap: 22px;
}
@media (min-width: 1024px) {
  label.gdm-filter__checkbox-label {
    gap: max(12px, min(1.5277777778vw, 22px));
  }
}
.gdm-filter__checkbox--sub-category label.gdm-filter__checkbox-label {
  font-weight: 400;
  gap: 36px;
}
@media (min-width: 1024px) {
  .gdm-filter__checkbox--sub-category label.gdm-filter__checkbox-label {
    gap: max(32px, min(3.0555555556vw, 44px));
  }
}

div.gdm-filter__checkboxes {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  min-height: 0;
  transition: grid-template-rows 200ms ease-in-out;
}
@media (min-width: 1024px) {
  div.gdm-filter__checkboxes {
    grid-template-rows: 1fr;
  }
}
div.gdm-filter__checkboxes ul {
  margin-top: 0 !important;
}
div.gdm-filter__checkboxes ul {
  display: grid;
  grid-template-rows: 0fr;
  list-style-type: none;
  padding-left: 0;
  grid-gap: 8px;
  gap: 8px;
  overflow: hidden;
  min-height: 0;
  transition: grid-template-rows 200ms ease-in-out 200ms;
}
@media (min-width: 1024px) {
  div.gdm-filter__checkboxes ul {
    grid-template-rows: 1fr;
  }
}
div.gdm-filter__checkboxes.gdm-filter__checkboxes--open, div.gdm-filter__checkboxes.gdm-filter__checkboxes--open ul {
  grid-template-rows: 1fr;
}

.gdm-filter__checkbox {
  margin: 0 !important;
}

.gdm-filter__checkbox {
  display: flex;
  align-items: center;
}
.gdm-filter__checkbox[\:has\(.gdm-filter__checkbox--sub-category\)] {
  display: grid;
  grid-row-gap: 8px;
  row-gap: 8px;
}
.gdm-filter__checkbox[\:has\(.gdm-filter__checkbox--sub-category\)] {
  display: grid;
  grid-row-gap: 8px;
  row-gap: 8px;
}
.gdm-filter__checkbox:has(.gdm-filter__checkbox--sub-category) {
  display: grid;
  grid-row-gap: 8px;
  row-gap: 8px;
}

.gdm-filter__toggle svg,
.gdm-filter__mobile-toggle svg {
  width: 16px;
  height: auto;
}

.gdm-filter__mobile-toggle {
  transition: var(--helio-transition-duration-default);
  opacity: 1;
  visibility: visible;
  transform: rotate(0);
}
@media (min-width: 1024px) {
  .gdm-filter__mobile-toggle {
    opacity: 0;
    visibility: visible;
    z-index: -1;
  }
}
.gdm-filter__mobile-toggle[aria-expanded=true] svg {
  transform: rotate(180deg);
}

.gdm-filter__checkbox-input {
  position: relative;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  min-width: 24px;
  padding: 0;
  border: 1px solid var(--helio-color-darkest);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: white;
  outline: none;
  transition: var(--helio-transition-duration-default);
}
.gdm-filter__checkbox-input:checked:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  background: var(--helio-color-darkest);
}

.gdm-faq {
  margin: max(16px, min(2.2222222222vw, 32px)) 0 0 0;
}

.gdm-faq__text {
  color: var(--helio-color-darkest);
  margin: 0;
}

.gdm-faq__link {
  text-decoration: underline !important;
  text-underline-offset: -1px !important;
  text-decoration-thickness: 1px !important;
}

.gdm-grantee-database__cards {
  position: relative;
  margin: 24px 0 0 0;
  z-index: 2;
}

.gdm-grant-card {
  margin-bottom: 24px;
  position: relative;
  transition: 300ms;
}
.gdm-grant-card:last-of-type {
  margin-bottom: 0;
}

.gdm-grant-card__inner {
  padding: max(32px, min(3.3333333333vw, 48px));
  background: var(--helio-color-lightest);
  transition: var(--helio-transition-duration-default);
  position: relative;
}
.gdm-grant-card__inner::before {
  transition: background 300ms, opacity 300ms, visibility 300ms !important;
}
.gdm-grant-card__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--helio-color-darkest);
  border-radius: 0 0 max(60px, min(8.3333333333vw, 120px));
  opacity: 0;
  visibility: hidden;
}
.overlay-link:hover + .gdm-grant-card__inner {
  background: var(--secondary-spring-green);
}
.overlay-link:hover + .gdm-grant-card__inner::before {
  opacity: 1;
  visibility: visible;
}
.overlay-link:hover + .gdm-grant-card__inner .arrow-link {
  --arrow-link-svg-bg-color: var(--secondary-spring-green);
  --arrow-link-translateX: 8px;
}
.overlay-link:hover + .gdm-grant-card__inner .arrow-link path {
  fill: var(--helio-color-darkest);
}
.overlay-link:hover + .gdm-grant-card__inner .location__heading,
.overlay-link:hover + .gdm-grant-card__inner .grant-program__heading,
.overlay-link:hover + .gdm-grant-card__inner .grant-amount__heading,
.overlay-link:hover + .gdm-grant-card__inner .grant-period__heading {
  --helio-headline-color: var(--secondary-spring-green);
}
.overlay-link:hover + .gdm-grant-card__inner .grantee-name,
.overlay-link:hover + .gdm-grant-card__inner .grant-card__story,
.overlay-link:hover + .gdm-grant-card__inner .location__text,
.overlay-link:hover + .gdm-grant-card__inner .grant-program__text,
.overlay-link:hover + .gdm-grant-card__inner .grant-amount__text,
.overlay-link:hover + .gdm-grant-card__inner .grant-period__text {
  color: var(--helio-color-lightest);
}
.overlay-link:hover + .gdm-grant-card__inner .grant-card__story .link-icon rect {
  color: var(--secondary-spring-green);
}

.grant-card__header {
  --helio-headline-mb-default: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 16px;
  row-gap: 16px;
  grid-column-gap: 32px;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
@media (min-width: 992px) {
  .grant-card__header {
    grid-template-columns: 0.625fr 0.375fr;
  }
}

@media (min-width: 1250px) {
  .grant-card__story {
    justify-self: end;
  }
}

.grant-card__header,
.grant-card__meta {
  position: relative;
  z-index: 1;
}

.grant-card__meta {
  --helio-headline-mb-default: 8px;
  display: grid;
  grid-row-gap: 24px;
  row-gap: 24px;
  margin-top: max(36px, min(3.3333333333vw, 48px));
}
@media (min-width: 768px) {
  .grant-card__meta {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: max(24px, min(2.2222222222vw, 32px));
         column-gap: max(24px, min(2.2222222222vw, 32px));
  }
}
@media (min-width: 992px) {
  .grant-card__meta {
    margin-top: max(48px, min(4.4444444444vw, 64px));
  }
}
@media (min-width: 1250px) {
  .grant-card__meta {
    grid-template-columns: 0.45fr 0.45fr;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}

.location__heading,
.grant-program__heading,
.grant-amount__heading,
.grant-period__heading {
  --helio-headline-color: var(--secondary-pine);
}

.location__text,
.grant-program__text,
.grant-amount__text,
.grant-period__text {
  font-size: 1.125rem;
  line-height: 1.4;
}

.gdm-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .gdm-pagination {
    grid-column: 2;
    margin-top: max(24px, min(2.7777777778vw, 40px));
  }
}

button.gdm-pagination__prev,
button.gdm-pagination__next {
  gap: 12px;
}
button.gdm-pagination__prev[disabled],
button.gdm-pagination__next[disabled] {
  opacity: 0.35;
  pointer-events: none;
}

.gdm-pagination__prev {
  --arrow-link-arrow-rotation: 180deg;
  flex-direction: row-reverse;
}

.gdm-pagination__total {
  -webkit-text-decoration: var(--helio-link-td);
          text-decoration: var(--helio-link-td);
  font-size: var(--helio-link-fs);
  font-weight: var(--helio-link-fw);
  line-height: var(--helio-link-lh);
  text-transform: var(--helio-link-tt);
  letter-spacing: var(--helio-link-ls);
  display: flex;
  -moz-column-gap: max(6px, min(0.8333333333vw, 12px));
       column-gap: max(6px, min(0.8333333333vw, 12px));
  margin: 0;
}

.gdm-sort__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 56px;
}

.gdm-posts__container {
  scroll-margin-top: max(120px, min(13.8888888889vw, 200px));
}

.gdm-posts__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 10;
}

.gdm-sort {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
}
.gdm-sort .gdm-sort__inner {
  position: relative;
}
.gdm-sort .gdm-sort__toggle {
  display: inline-flex;
  padding: 0;
  align-items: center;
  margin-left: 12px;
  font-size: 1.125rem;
  line-height: 1.52;
  font-weight: 600;
  gap: 6px;
}
.gdm-sort .gdm-sort__menu-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  max-height: 0;
  transition: max-height 350ms ease-in-out;
  overflow: hidden;
  position: absolute;
  z-index: 10;
  max-width: 336px;
  width: 100%;
}
.gdm-sort .gdm-sort__toggle[aria-expanded=true] + .gdm-sort__menu-wrapper {
  grid-template-rows: 1fr;
  max-height: 100vh;
}
.gdm-sort ul.gdm-sort__menu {
  padding: 0;
  list-style: none;
  width: 100%;
  border: 2px solid var(--helio-color-darkest);
  background: var(--helio-color-lightest);
}
.gdm-sort .gdm-sort__label {
  display: inline-block;
  text-transform: capitalize;
}
.gdm-sort .gdm-sort__icon {
  width: 16px;
  height: auto;
  transition: transform 200ms ease-in-out;
}
.gdm-sort .gdm-sort__icon--open {
  transform: rotate(180deg);
}
.gdm-sort .gdm-sort__item {
  padding: 16px 12px;
  margin: 0;
  cursor: pointer;
  transition: var(--helio-transition-duration-default);
}
.gdm-sort .gdm-sort__item.gdm-sort__item--selected {
  background: var(--helio-color-darkest);
  color: var(--helio-color-lightest);
}
.gdm-sort .gdm-sort__item:hover {
  background: var(--primary-river);
  color: var(--helio-color-lightest);
}

@keyframes animate-posts {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.gdm-grantee-database__cards {
  transition: opacity 0.2s;
}
.gdm-grantee-database__cards .gdm-grant-card {
  opacity: 0;
  animation: animate-posts 0.3s ease-in forwards;
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(1) {
  animation-delay: calc(1 * 0.1s);
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(2) {
  animation-delay: calc(2 * 0.1s);
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(3) {
  animation-delay: calc(3 * 0.1s);
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(4) {
  animation-delay: calc(4 * 0.1s);
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(5) {
  animation-delay: calc(5 * 0.1s);
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(6) {
  animation-delay: calc(6 * 0.1s);
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(7) {
  animation-delay: calc(7 * 0.1s);
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(8) {
  animation-delay: calc(8 * 0.1s);
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(9) {
  animation-delay: calc(9 * 0.1s);
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(10) {
  animation-delay: calc(10 * 0.1s);
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(11) {
  animation-delay: calc(11 * 0.1s);
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(12) {
  animation-delay: calc(12 * 0.1s);
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(13) {
  animation-delay: calc(13 * 0.1s);
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(14) {
  animation-delay: calc(14 * 0.1s);
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(15) {
  animation-delay: calc(15 * 0.1s);
}
.gdm-grantee-database__cards .gdm-grant-card:nth-child(16) {
  animation-delay: calc(16 * 0.1s);
}

/* Styles for no results and reset button */
.gdm-no-results {
  text-align: center;
  padding: max(32px, min(3.3333333333vw, 48px)) 0;
  width: 100%;
}
.gdm-no-results p {
  font-size: 1.125rem;
  margin-bottom: 24px;
  color: var(--helio-color-darkest);
}
.gdm-no-results .gdm-reset-button {
  display: inline-block;
  background-color: var(--helio-color-darkest);
  color: var(--helio-color-lightest);
  border: 2px solid var(--helio-color-darkest);
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}
.gdm-no-results .gdm-reset-button:hover, .gdm-no-results .gdm-reset-button:focus {
  background-color: transparent;
  color: var(--helio-color-darkest);
}
@media (min-width: 768px) {
  .gdm-no-results {
    padding: max(48px, min(4.4444444444vw, 64px)) 0;
  }
}
