@charset "UTF-8";
/*
Theme Name: Filling in the Blanks
Theme URI: 
Author: Drew Matamales for HelpGood
Author URI: https://helpgood.com
Description: A custom theme built for the Filling in the Blanks website. Fully supports all current features of the WordPress Block Editor, including Full Site Editing.
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 7.4
Version: 1.5.17 (111)
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: filling-in-the-blanks
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks
*/
/* Normalize
--------------------------------------------- */
/* Mixins
--------------------------------------------- */
/* WordPress-specific files
--------------------------------------------- */
/* Block Canvas Theme
--------------------------------------------- */
/*
=== Block Canvas ===
Contributors: Automattic
Requires at least: 6.0
Tested up to: 6.0
Requires PHP: 5.7
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

== Description ==

Block Canvas is a simple theme that supports full-site editing. It comes with a set of minimal templates and design settings that can be manipulated through Global Styles. Use it to build something beautiful.

== Changelog ==

= 0.0.22 =
* Add home.html template to Block Canvas (#6784)

= 0.0.21 =
* Block Canvas: Add self-closing tag to comments pattern in page template (#6764)

= 0.0.20 =
* Block Canvas: small updates (#6705)

= 0.0.19 =
* Make theme available for translation as much as possible (#6484)

= 0.0.18 =
* Update block canvas styles (#6640)

= 0.0.17 =
* Block canvas: clean up templates (#6620)

== Copyright ==

Block Canvas WordPress Theme, (C) 2022 Automattic
Block Canvas is distributed under the terms of the GNU GPL.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

*/
/*
 * Font smoothing
 * https://github.com/WordPress/gutenberg/issues/35934
 */
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/*
 * Control the hover stylings of outline block style.
 * Unnecessary once block styles are configurable via theme.json
 * https://github.com/WordPress/gutenberg/issues/42794
 */
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-background):hover {
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--background);
  border-color: var(--wp--preset--color--secondary);
}

/**
 * Currently table styles are only available with 'wp-block-styles' 
 * theme support (block css) thus the following needs to be included
 * since 'wp-block-styles' aren't used for this theme.
 * https://github.com/WordPress/gutenberg/issues/45065
 */
.wp-block-table thead {
  border-bottom: 3px solid;
}

.wp-block-table tfoot {
  border-top: 3px solid;
}

.wp-block-table td,
.wp-block-table th {
  padding: var(--wp--preset--spacing--30);
  border: 1px solid;
  word-break: normal;
}

.wp-block-table figcaption {
  font-size: var(--wp--preset--font-size--small);
  text-align: center;
}

/*
 * Link styles
 * https://github.com/WordPress/gutenberg/issues/42319
 */
a {
  text-decoration-thickness: 0.0625em !important;
  text-underline-offset: 0.15em;
}

/* HelpGood WordPress Modifications
--------------------------------------------- */
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none !important;
}

body:not(.editor-styles-wrapper) {
  background-color: var(--wp--preset--color--custom-fitb-orange);
}
body:not(.editor-styles-wrapper) .wp-site-blocks {
  background-color: var(--wp--preset--color--white);
}
body:not(.editor-styles-wrapper) .hg-hide-element {
  display: none !important;
}
@media screen and (min-width: 600px) {
  body:not(.editor-styles-wrapper) .hg-hamburger-menu-only {
    display: none !important;
  }
}
@media screen and (min-width: 782px) {
  body:not(.editor-styles-wrapper) .hg-mobile-only {
    display: none !important;
  }
}
@media screen and (max-width: 781px) {
  body:not(.editor-styles-wrapper) .hg-desktop-only {
    display: none !important;
  }
}

body.editor-styles-wrapper .hg-mobile-only {
  position: relative;
}
body.editor-styles-wrapper .hg-hide-element {
  position: relative;
}
body.editor-styles-wrapper .hg-hide-element > * {
  opacity: 0.25;
}
body.editor-styles-wrapper .hg-hide-element:before {
  opacity: 1;
  position: absolute;
  top: 25%;
  left: calc(50% - 150px);
  font-size: 18px;
  text-shadow: 1px 1px white, -1px 1px white, 1px -1px white, -1px -1px white;
  content: 'Element is hidden and will not display on front end.  Settings sidebar >  Block > Advanced > Additional CSS Classes > Remove "hg-hide-element" to show.';
  border: 2px solid black;
  border-radius: 5px;
  max-width: 300px;
  margin: 0 auto !important;
  padding: 15px;
  background-color: yellow;
}

/*
 * Style external links
 * https://stackoverflow.com/a/5379820/1709484
**/
a[href]:not(:where([href^="#"],
[href^="tel:"],
[href^="mailto:"],
[href^="http://maps.apple.com/"],
[href^="/"]:not([href^="//"]),
[href*="//fitb.manta"],
[href*="//fillingintheblanks.helpgood.com"],
[href*="//fillingintheblanks.org"],
[href*="//www.fillingintheblanks.org"],
.wp-block-social-link-anchor)):after {
  content: " \f35d";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  text-decoration: none !important;
}

a:where(:not(.wp-element-button)):after {
  font-size: 75%;
}

.wp-block-image > a:after {
  display: none;
}

.wp-site-blocks {
  overflow-x: hidden;
}

body.home .is-layout-constrained > * + * {
  margin-block-start: 0;
}

body > .wp-site-blocks {
  padding-top: 0;
  padding-bottom: 0;
}

body > .wp-site-blocks > header + main {
  margin-block-start: 0;
}

li {
  margin-bottom: 0;
}

.wp-block-navigation a:where(:not(.wp-element-button)) {
  padding-bottom: 0.5em;
}

.wp-block-social-links.is-style-logos-only .wp-social-link {
  transition: 0.15s all;
}

.wp-block-social-links.is-style-logos-only .wp-social-link-facebook {
  margin-top: -1px;
  transform: scale(0.95);
}
.wp-block-social-links.is-style-logos-only .wp-social-link-facebook:hover {
  transform: scale(1.05);
}

.wp-site-blocks *[style*="margin-top:0"]:not([style*="margin-top:0."]) {
  margin-top: 0 !important;
}
.wp-site-blocks *[style*="margin-right:0"]:not([style*="margin-right:0."]) {
  margin-right: 0 !important;
}
.wp-site-blocks *[style*="margin-bottom:0"]:not([style*="margin-bottom:0."]) {
  margin-bottom: 0 !important;
}
.wp-site-blocks *[style*="margin-left:0"]:not([style*="margin-left:0."]) {
  margin-left: 0 !important;
}
.wp-site-blocks *[style*="margin:0"]:not([style*="margin:0."]) {
  margin: 0 !important;
}

body.editor-styles-wrapper .wp-block-post-excerpt__more-text {
  display: none;
}

/* Content modifications
--------------------------------------------- */
/* Navigation
--------------------------------------------- */
header.wp-block-template-part .wp-block-site-logo a {
  transition: 0.15s all;
  transform: scale(1);
}
header.wp-block-template-part .wp-block-site-logo a:hover {
  transform: scale(1.05);
}
header.wp-block-template-part .wp-block-site-logo a:active {
  transform: scale(1.07);
}
header.wp-block-template-part .wp-block-search__input {
  padding-top: 0;
  padding-bottom: 0;
}
header.wp-block-template-part .wp-block-search__button {
  padding-top: 0.25em;
  padding-right: 0.5em;
  padding-bottom: 0.25em;
  padding-left: 0.5em;
  margin-left: 0;
}
header.wp-block-template-part .wp-block-navigation__container > .wp-block-navigation-item:hover {
  background-color: #efefef;
}
header.wp-block-template-part .wp-block-navigation__container .wp-block-navigation-item {
  transition: 0.15s all;
  display: flex;
  align-items: stretch;
}
header.wp-block-template-part .wp-block-navigation__container .wp-block-navigation-item__content {
  padding: 0.25em;
}
header.wp-block-template-part .wp-block-navigation__container .has-child.wp-block-navigation-item .wp-block-navigation-item__content {
  padding-right: 0;
}
header.wp-block-template-part .wp-block-navigation__submenu-icon {
  height: auto;
  align-self: auto;
  padding-right: 0.75em;
}
header.wp-block-template-part .wp-block-navigation__submenu-container {
  min-width: 160px !important;
}
header.wp-block-template-part .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--wp--preset--color--custom-light-gray);
}
header.wp-block-template-part .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover {
  background-color: #efefef;
}
header.wp-block-template-part .wp-block-navigation__submenu-container .wp-block-navigation-item__content:active {
  background-color: #dedede;
}

@media screen and (min-width: 1000px) {
  .hg-fitb-hamburger-menu-only {
    display: none !important;
  }
}

@media screen and (max-width: 999px) {
  html body:not(.editor-styles-wrapper) header.wp-block-template-part .fitb-utility-nav,
  html body:not(.editor-styles-wrapper) header.wp-block-template-part .fitb-main-navigation-desktop {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  html body:not(.editor-styles-wrapper) header.wp-block-template-part .fitb-main-navigation-mobile {
    display: none;
  }
}

html body header.wp-block-template-part .fitb-main-navigation-mobile {
  position: relative;
}
html body header.wp-block-template-part .fitb-main-navigation-mobile .fitb-hamburger-menu-site-logo {
  position: absolute;
  top: -2em;
  width: 120px;
}
html body header.wp-block-template-part .fitb-main-navigation-mobile.wp-block-navigation .wp-block-navigation__container {
  font-size: var(--wp--preset--font-size--x-large);
  font-weight: bold;
}
html body header.wp-block-template-part .fitb-main-navigation-mobile.wp-block-navigation .wp-block-navigation__container > .wp-block-navigation-item {
  position: relative !important;
}
html body header.wp-block-template-part .fitb-main-navigation-mobile.wp-block-navigation .wp-block-navigation__container > .wp-block-navigation-item.has-child button {
  position: absolute !important;
  top: 0 !important;
  left: 100% !important;
  height: 100% !important;
  width: 30px !important;
  padding-right: 15px !important;
  display: block !important;
}
html body header.wp-block-template-part .fitb-main-navigation-mobile.wp-block-navigation .wp-block-navigation__responsive-container-content {
  align-items: flex-start !important;
}
html body header.wp-block-template-part .fitb-main-navigation-mobile.wp-block-navigation .wp-block-navigation__responsive-container-content ul, html body header.wp-block-template-part .fitb-main-navigation-mobile.wp-block-navigation .wp-block-navigation__responsive-container-content li {
  align-items: flex-start !important;
  text-align: left !important;
}
html body header.wp-block-template-part .fitb-main-navigation-mobile.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container {
  font-size: var(--wp--preset--font-size--large);
  position: absolute !important;
  left: calc(100% + 45px) !important;
  top: 0 !important;
  background-color: white !important;
  align-items: flex-start !important;
  padding: 0 !important;
}
html body header.wp-block-template-part .fitb-main-navigation-mobile.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container li {
  flex: 1;
  width: 100%;
}
html body header.wp-block-template-part .fitb-main-navigation-mobile.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container li,
html body header.wp-block-template-part .fitb-main-navigation-mobile.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container li > a {
  display: block !important;
  text-align: left !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}
html body header.wp-block-template-part .fitb-main-navigation-mobile.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container li > a {
  display: block !important;
  padding: 0.7em 0.5em !important;
  border-left: 1px solid var(--wp--preset--color--custom-light-gray);
  border-right: 1px solid var(--wp--preset--color--custom-light-gray);
  border-bottom: 1px solid var(--wp--preset--color--custom-light-gray);
}
html body header.wp-block-template-part .fitb-main-navigation-mobile.wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container li > a:first-of-type {
  border-top: 1px solid var(--wp--preset--color--custom-light-gray);
}
html body header.wp-block-template-part .fitb-main-navigation-mobile.wp-block-navigation .wp-block-navigation__submenu-container {
  transition: 0.15s all;
  opacity: 0 !important;
  pointer-events: none !important;
}
html body header.wp-block-template-part .fitb-main-navigation-mobile.wp-block-navigation .wp-block-navigation__submenu-icon[aria-expanded=true] + .wp-block-navigation__submenu-container {
  opacity: 1 !important;
  pointer-events: auto !important;
}

@media screen and (max-width: 374px) {
  html body header.wp-block-template-part .wp-block-navigation .wp-block-navigation-item .wp-block-navigation__submenu-container {
    top: 100% !important;
    left: 50% !important;
  }
}
.wp-social-link-walmart a {
  content: url("./assets/images/walmart-logo-baked-color.svg");
  width: 1em;
  height: 1em;
}

.hg-contact-link a {
  display: flex;
  align-items: baseline;
  text-decoration: none;
}
.hg-contact-link a:hover {
  color: var(--wp--preset--color--custom-fitb-magenta);
}
.hg-contact-link a:hover:before {
  color: var(--wp--preset--color--custom-fitb-orange);
}
.hg-contact-link a:before {
  transition: 0.15s all;
  color: var(--wp--preset--color--custom-fitb-magenta);
  display: inline-block;
  line-height: inherit;
  width: 2em;
}

.hg-contact-link-tel a:before {
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f095";
}

.hg-contact-link-email a:before {
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f0e0";
}

.hg-contact-link-home a:before {
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f015";
}

.wp-block-social-links .wp-social-link .wp-block-social-link-anchor {
  border: 1px solid var(--wp--preset--color--custom-fitb-magenta) !important;
  border-radius: 50%;
}
@media screen and (max-width: 1150px) {
  .wp-block-social-links {
    font-size: 24px !important;
  }
}
@media screen and (max-width: 319px) {
  .wp-block-social-links {
    font-size: 16px !important;
  }
}

.editor-styles-wrapper .hg-gtranslate-widget.hg-hide-contents-in-editor:before {
  content: "GTranslate ▾";
  border: 1px solid black;
  padding: 3px 5px;
  margin-top: -4px;
}
.editor-styles-wrapper .hg-gtranslate-widget.hg-hide-contents-in-editor * {
  display: none;
}

.hg-gtranslate-widget svg {
  font-size: inherit;
  width: 0.6em;
  padding-left: 0.25em;
  padding-right: 0.25em;
  pointer-events: none;
}

.hg-gtranslate-widget .gtranslate_wrapper select {
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  appearance: none;
  background: white;
  color: inherit;
  border: 0;
  display: inline-block;
  text-align: right;
  text-align-last: right;
  padding-right: 1.1em;
  margin-right: -1.1em;
}

/* Posts and Pages
--------------------------------------------- */
.single-post:not(:has(.wp-block-post-featured-image)) header.wp-block-template-part,
body.page:not(:has(main > .wp-block-cover:first-child)):not(:has(.entry-content > .wp-block-cover:first-child)):not(:has(.entry-content > hr:first-child)):not(:has(.entry-content > .alignfull.has-background:first-child)) header.wp-block-template-part,
body:not(.page):not(.single-post) header.wp-block-template-part {
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-bottom-color: var(--wp--preset--color--custom-light-gray);
  margin-bottom: var(--wp--preset--spacing--70);
}

body.blog .wp-block-post-template .wp-block-post article:not(:has(.wp-block-post-featured-image)) h1 a:before,
body.category .wp-block-post-template .wp-block-post article:not(:has(.wp-block-post-featured-image)) h1 a:before {
  content: "";
  display: block;
  background: var(--wp--preset--color--custom-light-gray);
  border-radius: 15px;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}
body.blog .wp-block-post-template .wp-block-post article h1,
body.category .wp-block-post-template .wp-block-post article h1 {
  margin-top: 0 !important;
}
body.blog .wp-block-post-template .wp-block-post article h1 a,
body.category .wp-block-post-template .wp-block-post article h1 a {
  padding-top: 24px;
  display: block;
}
body.blog .wp-block-post-template .wp-block-post article:has(.wp-block-post-featured-image a:hover) h1 a,
body.blog .wp-block-post-template .wp-block-post article h1 a:hover,
body.category .wp-block-post-template .wp-block-post article:has(.wp-block-post-featured-image a:hover) h1 a,
body.category .wp-block-post-template .wp-block-post article h1 a:hover {
  text-decoration: underline;
}
body.blog .wp-block-post-template .wp-block-post article .wp-block-post-featured-image,
body.category .wp-block-post-template .wp-block-post article .wp-block-post-featured-image {
  border-radius: 15px;
  overflow: hidden;
}
body.blog .wp-block-post-template .wp-block-post article .wp-block-post-featured-image a,
body.category .wp-block-post-template .wp-block-post article .wp-block-post-featured-image a {
  display: block;
  transition: 0.35s ease-out all;
  transform: scale(1);
}
body.blog .wp-block-post-template .wp-block-post article:has(a:hover) .wp-block-post-featured-image a,
body.category .wp-block-post-template .wp-block-post article:has(a:hover) .wp-block-post-featured-image a {
  transform: scale(1.1);
}

/* Elements
--------------------------------------------- */
.fitb-new-upcoming-columns .wp-block-column {
  position: relative;
  transition: 0.15s all;
  transform: scale(1);
}
.fitb-new-upcoming-columns .wp-block-column:has(.hg-cover-image-link:hover) {
  transform: scale(1.05);
}
.fitb-new-upcoming-columns .wp-block-column:has(.hg-cover-image-link:active) {
  transform: scale(1.025);
}

.hg-fitb-column-detail-justify .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between !important;
}

.hg-cover-image-link {
  font-size: 0;
  color: transparent !important;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.fitb-hero-text {
  line-height: 1.5;
}

.fitb-hero-text mark {
  display: inline-block;
  height: 1.5em;
  vertical-align: top;
  line-height: 1.5;
  position: relative;
  transition: 0.15s all;
  margin-right: -1em;
}
.fitb-hero-text mark > span {
  display: block;
  transition: 0.5s all;
  opacity: 0;
  transform: translateY(100%);
}
.fitb-hero-text mark > span > span {
  display: inline-block;
  white-space: nowrap;
}
.fitb-hero-text mark > span.active {
  transform: translateY(0);
  opacity: 1;
}

body:not(.editor-styles-wrapper) .fitb-hero-text mark {
  overflow: hidden;
}

body.editor-styles-wrapper .fitb-hero-text mark > span {
  transform: translateY(0);
  opacity: 1;
}

.fitb-home-hero {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2509803922);
}

@media screen and (max-width: 781px) {
  .fitb-home-hero,
  .fitb-join-us-cover {
    align-items: flex-end !important;
    padding-bottom: 6em;
  }
}

.wp-site-blocks a {
  transition: 0.15s all;
}

.gform_wrapper .gform_required_legend {
  display: none;
}
.gform_wrapper .gform_validation_errors {
  background: var(--gf-ctrl-desc-color-error) !important;
  color: white !important;
}
.gform_wrapper .gform_validation_errors * {
  color: white !important;
}
.gform_wrapper .gfield_label > .gfield_required {
  font-size: 1em !important;
  text-shadow: 1px 1px white, -1px 1px white, 1px -1px white, -1px -1px white;
}
.gform_wrapper .gfield_validation_message {
  color: white !important;
  background: var(--gf-ctrl-desc-color-error);
  border: 1px solid currentcolor;
  border-radius: 15px;
  padding: 3px 5px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  margin-bottom: 20px;
}
.gform_wrapper .textarea {
  --gf-local-radius: var(--gf-ctrl-radius) !important;
}
.gform_wrapper .hg-extra-small textarea {
  min-block-size: 3rem !important;
  height: 3rem !important;
  line-height: 1.2 !important;
}

.frm_forms .frm_error_style,
.frm_forms .frm_error {
  display: inline-block;
  padding-right: var(--wp--preset--spacing--20);
  padding-left: var(--wp--preset--spacing--20);
  border: 1px solid white;
  border-radius: 5px;
  background: var(--wp--preset--color--custom-fitb-orange);
}
.frm_forms fieldset {
  border: 0 none transparent;
  padding: 0;
}
.frm_forms .frm_primary_label {
  display: block;
  padding: 10px 10px 5px;
}
.frm_forms .frm_form_field.vertical_radio {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.frm_forms .frm_fields_container {
  grid-gap: 0 7%;
}
.frm_forms .frm_fields_container > div {
  display: flex;
  flex-direction: column;
}
.frm_forms input:not([type=radio]),
.frm_forms select,
.frm_forms textarea {
  width: calc(100% - 20px);
  border-radius: 30px;
  line-height: 1.2;
  padding: 12px 10px;
  border: 0 none transparent;
  font-size: inherit;
  font-family: inherit;
}

.hg-fitb-dtd-widget #dd-container,
.hg-fitb-dtd-widget .dtd-plugin {
  font-family: inherit !important;
}

#dd-container .dtd-search-box,
.dtd-plugin .dtd-search-box,
#dd-container .dtd-search-input,
.dtd-plugin .dtd-search-input {
  border-radius: 30px !important;
}

.gform_wrapper input,
.gform_wrapper select,
.gform_wrapper textarea {
  font-size: inherit !important;
}

.frm_forms .frm_submit button,
.gform_wrapper input[type=submit],
.hg-fitb-dtd-widget #dd-container .lets-check,
.hg-fitb-dtd-widget .dtd-plugin .lets-check {
  box-shadow: var(--wp--preset--shadow--shadow-1) !important;
  background-color: var(--wp--preset--color--custom-fitb-orange) !important;
  border-width: 0;
  color: var(--wp--preset--color--white);
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-weight: 700 !important;
  line-height: inherit;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  text-decoration: none;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 1.5em;
}

.wp-block-button__link,
.frm_forms .frm_submit button,
.gform_wrapper input[type=submit],
.hg-fitb-dtd-widget #dd-container .lets-check,
.hg-fitb-dtd-widget .dtd-plugin .lets-check {
  transition: 0.15s all;
  position: relative;
}
.wp-block-button__link:before,
.frm_forms .frm_submit button:before,
.gform_wrapper input[type=submit]:before,
.hg-fitb-dtd-widget #dd-container .lets-check:before,
.hg-fitb-dtd-widget .dtd-plugin .lets-check:before {
  transition: 0.15s all;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: inherit;
}
.wp-block-button__link:hover,
.frm_forms .frm_submit button:hover,
.gform_wrapper input[type=submit]:hover,
.hg-fitb-dtd-widget #dd-container .lets-check:hover,
.hg-fitb-dtd-widget .dtd-plugin .lets-check:hover {
  background-color: lch(from var(--wp--preset--color--custom-fitb-orange) calc(l - 5) c h) !important;
}
.wp-block-button__link:active,
.frm_forms .frm_submit button:active,
.gform_wrapper input[type=submit]:active,
.hg-fitb-dtd-widget #dd-container .lets-check:active,
.hg-fitb-dtd-widget .dtd-plugin .lets-check:active {
  transform: translate(3px, 3px);
  box-shadow: 0px 1px 1px 0 rgba(0, 0, 0, 0.2509803922) !important;
}
.wp-block-button__link:active:before,
.frm_forms .frm_submit button:active:before,
.gform_wrapper input[type=submit]:active:before,
.hg-fitb-dtd-widget #dd-container .lets-check:active:before,
.hg-fitb-dtd-widget .dtd-plugin .lets-check:active:before {
  transform: translate(-3px, -3px);
}

.hg-fitb-dtd-widget #dd-container .lets-check,
.hg-fitb-dtd-widget .dtd-plugin .lets-check {
  width: calc(100% - (1.333em + 2px) * 2);
}

hr.wp-block-separator {
  border-top-width: 3px;
}

@media screen and (max-width: 781px) {
  .fitb-feature-box {
    margin-top: 4rem !important;
    font-size: 12px;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: none transparent !important;
    position: relative;
  }
  .fitb-feature-box .wp-block-column:has(.wp-block-image) {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
  }
  .fitb-feature-box .wp-block-column:not(:has(.wp-block-image)) {
    width: 88% !important;
    margin-left: 12% !important;
    background: white;
    box-shadow: var(--wp--preset--shadow--shadow-2);
    padding-right: var(--wp--preset--spacing--30);
    padding-left: 45vw;
    text-wrap: pretty;
  }
  .fitb-feature-box .wp-block-column:not(:has(.wp-block-image)) > .wp-block-group {
    padding-top: var(--wp--preset--spacing--30) !important;
    padding-bottom: var(--wp--preset--spacing--30) !important;
  }
  .fitb-feature-box .wp-block-column:not(:has(.wp-block-image)):first-of-type {
    border-right: 6px solid var(--wp--preset--color--custom-fitb-magenta);
  }
  .fitb-feature-box .wp-block-column:not(:has(.wp-block-image)):last-of-type {
    border-right: 6px solid var(--wp--preset--color--custom-fitb-orange);
  }
  .fitb-feature-box .wp-block-column .wp-block-image,
  .fitb-feature-box .wp-block-column .wp-block-image img {
    height: calc(100% + 2rem);
    margin-top: -2rem;
  }
  .fitb-feature-box .wp-block-column .wp-block-image img {
    object-fit: contain;
    object-position: left bottom;
  }
  .fitb-feature-box .wp-block-columns {
    padding: 0 !important;
  }
  .fitb-feature-box .wp-block-columns + .wp-block-columns {
    display: none;
  }
  .fitb-feature-box.with-circle-offset .wp-block-column .wp-block-image img {
    object-position: right bottom;
  }
  .fitb-feature-box.with-circle-offset .wp-block-column:has(.wp-block-image) {
    left: auto;
    right: 0;
  }
  .fitb-feature-box.with-circle-offset .wp-block-column:not(:has(.wp-block-image)) {
    margin-right: 12% !important;
    margin-left: 0% !important;
    padding-top: var(--wp--preset--spacing--30);
    padding-right: 50%;
    padding-bottom: var(--wp--preset--spacing--30);
    padding-left: var(--wp--preset--spacing--30);
  }
  .fitb-feature-box.with-circle-offset .wp-block-column:not(:has(.wp-block-image)):first-of-type {
    border-right: 0 none transparent;
    border-left: 6px solid var(--wp--preset--color--custom-fitb-magenta);
  }
  .fitb-feature-box.with-circle-offset .wp-block-column:not(:has(.wp-block-image)):last-of-type {
    border-right: 0 none transparent;
    border-left: 6px solid var(--wp--preset--color--custom-fitb-orange);
  }
}
@media screen and (max-width: 399px) {
  .fitb-feature-box {
    font-size: 10px;
  }
}
@media screen and (min-width: 782px) {
  .fitb-feature-box {
    margin-top: 11rem !important;
  }
  .fitb-feature-box .wp-block-columns {
    align-items: stretch;
  }
  .fitb-feature-box .wp-block-image {
    position: relative;
    z-index: 2;
    margin-top: calc(-1 * 11rem);
    height: calc(100% + 1rem + 11rem) !important;
    margin-bottom: -1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .fitb-feature-box .wp-block-image:before {
    content: "";
    z-index: -1;
    position: absolute;
    top: 1.5rem;
    right: 0;
    left: 0;
    width: calc((11rem - 1.5rem) * 2);
    height: calc(11rem - 1.5rem);
    border-radius: calc(11rem - 1.5rem) calc(11rem - 1.5rem) 0 0;
    background-color: var(--wp--preset--color--custom-fitb-cyan-transparent);
  }
  .fitb-feature-box.with-circle-offset .wp-block-image:before {
    transform: translateX(-1.5rem);
  }
}
@media screen and (max-width: 781px) {
  .fitb-testimonial-image-columns-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }
}

.fitb-testimonial-image-columns .wp-block-quote {
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 781px) {
  .fitb-testimonial-image-columns .wp-block-column:not(:has(.wp-block-image)) {
    order: 1;
  }
}
.fitb-testimonial-image-columns .wp-block-column > .wp-block-group {
  padding-left: 5em;
  padding-right: 5em;
}
@media screen and (max-width: 399px) {
  .fitb-testimonial-image-columns .wp-block-column > .wp-block-group {
    padding-left: 2em;
    padding-right: 2em;
  }
}
.fitb-testimonial-image-columns .wp-block-column .wp-block-image {
  position: relative;
}
.fitb-testimonial-image-columns .wp-block-column .wp-block-image img {
  border-radius: 15px;
}
.fitb-testimonial-image-columns .wp-block-column:first-of-type .wp-block-image {
  padding-left: 10%;
}
.fitb-testimonial-image-columns .wp-block-column:nth-of-type(2) .wp-block-image {
  padding-right: 10%;
}
html body .wp-site-blocks .fitb-image-circle-bottom-left,
html body .wp-site-blocks .is-style-shapes-1 {
  position: relative;
}
html body .wp-site-blocks .fitb-image-circle-bottom-left img,
html body .wp-site-blocks .is-style-shapes-1 img {
  border-radius: 15px;
}
html body .wp-site-blocks .fitb-image-circle-bottom-left:after,
html body .wp-site-blocks .is-style-shapes-1:after {
  content: "";
  position: absolute;
  z-index: 2;
  background-color: var(--wp--preset--color--custom-fitb-cyan-transparent);
  pointer-events: none;
}
html body .wp-site-blocks .fitb-image-circle-bottom-left:after,
html body .wp-site-blocks .is-style-shapes-1:after {
  bottom: calc(-1 * 10%);
  width: calc(3.5 * 10%);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
html body .wp-site-blocks .fitb-image-circle-bottom-left.wp-block-image:after,
html body .wp-site-blocks .is-style-shapes-1.wp-block-image:after {
  right: calc(100% - 2.75 * 10%);
}
html body .wp-site-blocks .fitb-image-rectangle-bottom-right,
html body .wp-site-blocks .is-style-shapes-2 {
  position: relative;
}
html body .wp-site-blocks .fitb-image-rectangle-bottom-right img,
html body .wp-site-blocks .is-style-shapes-2 img {
  border-radius: 15px;
}
html body .wp-site-blocks .fitb-image-rectangle-bottom-right:before,
html body .wp-site-blocks .is-style-shapes-2:before {
  content: "";
  position: absolute;
  z-index: 2;
  background-color: var(--wp--preset--color--custom-fitb-cyan-transparent);
  pointer-events: none;
}
html body .wp-site-blocks .fitb-image-rectangle-bottom-right:before,
html body .wp-site-blocks .is-style-shapes-2:before {
  bottom: calc(-0.5 * 10%);
  width: calc(3.75 * 10%);
  height: calc(3.25 * 10%);
  border-radius: 15px;
}
html body .wp-site-blocks .fitb-image-rectangle-bottom-right.wp-block-image:before,
html body .wp-site-blocks .is-style-shapes-2.wp-block-image:before {
  left: calc(100% - 3.25 * 10%);
}
html body .wp-site-blocks .fitb-image-circle-square,
html body .wp-site-blocks .is-style-shapes-3 {
  position: relative;
}
html body .wp-site-blocks .fitb-image-circle-square img,
html body .wp-site-blocks .is-style-shapes-3 img {
  border-radius: 15px;
}
html body .wp-site-blocks .fitb-image-circle-square:before, html body .wp-site-blocks .fitb-image-circle-square:after,
html body .wp-site-blocks .is-style-shapes-3:before,
html body .wp-site-blocks .is-style-shapes-3:after {
  content: "";
  position: absolute;
  z-index: 2;
  background-color: var(--wp--preset--color--custom-fitb-cyan-transparent);
  pointer-events: none;
}
html body .wp-site-blocks .fitb-image-circle-square:before,
html body .wp-site-blocks .is-style-shapes-3:before {
  top: calc(-1 * 10%);
  width: calc(3.5 * 10%);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
html body .wp-site-blocks .fitb-image-circle-square:after,
html body .wp-site-blocks .is-style-shapes-3:after {
  bottom: calc(-0.5 * 10%);
  width: calc(3.75 * 10%);
  height: calc(3.25 * 10%);
  border-radius: 15px;
}
html body .wp-site-blocks .fitb-image-circle-square.wp-block-image:before,
html body .wp-site-blocks .is-style-shapes-3.wp-block-image:before {
  left: calc(100% - 2.5 * 10%);
}
html body .wp-site-blocks .fitb-image-circle-square.wp-block-image:after,
html body .wp-site-blocks .is-style-shapes-3.wp-block-image:after {
  right: calc(100% - 3.25 * 10%);
}
html body .wp-site-blocks .fitb-image-circle-square-alt,
html body .wp-site-blocks .is-style-shapes-4 {
  position: relative;
}
html body .wp-site-blocks .fitb-image-circle-square-alt img,
html body .wp-site-blocks .is-style-shapes-4 img {
  border-radius: 15px;
}
html body .wp-site-blocks .fitb-image-circle-square-alt:before, html body .wp-site-blocks .fitb-image-circle-square-alt:after,
html body .wp-site-blocks .is-style-shapes-4:before,
html body .wp-site-blocks .is-style-shapes-4:after {
  content: "";
  position: absolute;
  z-index: 2;
  background-color: var(--wp--preset--color--custom-fitb-cyan-transparent);
  pointer-events: none;
}
html body .wp-site-blocks .fitb-image-circle-square-alt:before,
html body .wp-site-blocks .is-style-shapes-4:before {
  bottom: calc(-1 * 10%);
  width: calc(3.5 * 10%);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
html body .wp-site-blocks .fitb-image-circle-square-alt:after,
html body .wp-site-blocks .is-style-shapes-4:after {
  top: calc(-1.75 * 10%);
  width: calc(3.75 * 10%);
  height: calc(3.25 * 10%);
  border-radius: 15px;
}
html body .wp-site-blocks .fitb-image-circle-square-alt.wp-block-image:before,
html body .wp-site-blocks .is-style-shapes-4.wp-block-image:before {
  left: calc(100% - 2.5 * 10%);
}
html body .wp-site-blocks .fitb-image-circle-square-alt.wp-block-image:after,
html body .wp-site-blocks .is-style-shapes-4.wp-block-image:after {
  right: calc(100% - 3.25 * 10%);
}
html body .wp-site-blocks .fitb-image-circle-square-alt-2,
html body .wp-site-blocks .is-style-shapes-5 {
  position: relative;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-2 img,
html body .wp-site-blocks .is-style-shapes-5 img {
  border-radius: 15px;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-2:before, html body .wp-site-blocks .fitb-image-circle-square-alt-2:after,
html body .wp-site-blocks .is-style-shapes-5:before,
html body .wp-site-blocks .is-style-shapes-5:after {
  content: "";
  position: absolute;
  z-index: 2;
  background-color: var(--wp--preset--color--custom-fitb-cyan-transparent);
  pointer-events: none;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-2:before,
html body .wp-site-blocks .is-style-shapes-5:before {
  bottom: calc(-1 * 10%);
  width: calc(3.5 * 10%);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-2:after,
html body .wp-site-blocks .is-style-shapes-5:after {
  top: calc(-0.5 * 10%);
  width: calc(2 * 10%);
  height: calc(4.75 * 10%);
  border-radius: 15px;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-2.wp-block-image:before,
html body .wp-site-blocks .is-style-shapes-5.wp-block-image:before {
  right: calc(100% - 2.5 * 10%);
}
html body .wp-site-blocks .fitb-image-circle-square-alt-2.wp-block-image:after,
html body .wp-site-blocks .is-style-shapes-5.wp-block-image:after {
  left: calc(100% - 1.5 * 10%);
}
html body .wp-site-blocks .fitb-image-circle-square-alt-3,
html body .wp-site-blocks .is-style-shapes-6 {
  position: relative;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-3 img,
html body .wp-site-blocks .is-style-shapes-6 img {
  border-radius: 15px;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-3:before, html body .wp-site-blocks .fitb-image-circle-square-alt-3:after,
html body .wp-site-blocks .is-style-shapes-6:before,
html body .wp-site-blocks .is-style-shapes-6:after {
  content: "";
  position: absolute;
  z-index: 2;
  background-color: var(--wp--preset--color--custom-fitb-cyan-transparent);
  pointer-events: none;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-3:before,
html body .wp-site-blocks .is-style-shapes-6:before {
  top: calc(-1 * 10%);
  width: calc(2.5 * 10%);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-3:after,
html body .wp-site-blocks .is-style-shapes-6:after {
  bottom: calc(-0.5 * 10%);
  width: calc(4 * 10%);
  height: calc(3.25 * 10%);
  border-radius: 15px;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-3.wp-block-image:before,
html body .wp-site-blocks .is-style-shapes-6.wp-block-image:before {
  left: calc(100% - 1.5 * 10%);
}
html body .wp-site-blocks .fitb-image-circle-square-alt-3.wp-block-image:after,
html body .wp-site-blocks .is-style-shapes-6.wp-block-image:after {
  right: calc(100% - 3.5 * 10%);
}
html body .wp-site-blocks .fitb-image-circle-square-alt-4,
html body .wp-site-blocks .is-style-shapes-7 {
  position: relative;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-4 img,
html body .wp-site-blocks .is-style-shapes-7 img {
  border-radius: 15px;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-4:before, html body .wp-site-blocks .fitb-image-circle-square-alt-4:after,
html body .wp-site-blocks .is-style-shapes-7:before,
html body .wp-site-blocks .is-style-shapes-7:after {
  content: "";
  position: absolute;
  z-index: 2;
  background-color: var(--wp--preset--color--custom-fitb-cyan-transparent);
  pointer-events: none;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-4:before,
html body .wp-site-blocks .is-style-shapes-7:before {
  top: calc(-1 * 10%);
  width: calc(3.5 * 10%);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-4:after,
html body .wp-site-blocks .is-style-shapes-7:after {
  bottom: calc(-0.5 * 10%);
  width: calc(2 * 10%);
  height: calc(4.75 * 10%);
  border-radius: 15px;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-4.wp-block-image:before,
html body .wp-site-blocks .is-style-shapes-7.wp-block-image:before {
  right: calc(100% - 2.5 * 10%);
}
html body .wp-site-blocks .fitb-image-circle-square-alt-4.wp-block-image:after,
html body .wp-site-blocks .is-style-shapes-7.wp-block-image:after {
  left: calc(100% - 1.5 * 10%);
}
html body .wp-site-blocks .fitb-image-circle-square-alt-5,
html body .wp-site-blocks .is-style-shapes-8 {
  position: relative;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-5 img,
html body .wp-site-blocks .is-style-shapes-8 img {
  border-radius: 15px;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-5:before, html body .wp-site-blocks .fitb-image-circle-square-alt-5:after,
html body .wp-site-blocks .is-style-shapes-8:before,
html body .wp-site-blocks .is-style-shapes-8:after {
  content: "";
  position: absolute;
  z-index: 2;
  background-color: var(--wp--preset--color--custom-fitb-cyan-transparent);
  pointer-events: none;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-5:before,
html body .wp-site-blocks .is-style-shapes-8:before {
  bottom: calc(-1 * 10%);
  width: calc(2.5 * 10%);
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-5:after,
html body .wp-site-blocks .is-style-shapes-8:after {
  top: calc(-0.5 * 10%);
  width: calc(3.75 * 10%);
  height: calc(2 * 10%);
  border-radius: 15px;
}
html body .wp-site-blocks .fitb-image-circle-square-alt-5.wp-block-image:before,
html body .wp-site-blocks .is-style-shapes-8.wp-block-image:before {
  left: calc(100% - 1.5 * 10%);
}
html body .wp-site-blocks .fitb-image-circle-square-alt-5.wp-block-image:after,
html body .wp-site-blocks .is-style-shapes-8.wp-block-image:after {
  right: calc(100% - 3.25 * 10%);
}
html body .wp-site-blocks .is-style-shapes-1 img,
html body .wp-site-blocks .is-style-shapes-2 img,
html body .wp-site-blocks .is-style-shapes-3 img,
html body .wp-site-blocks .is-style-shapes-4 img,
html body .wp-site-blocks .is-style-shapes-5 img,
html body .wp-site-blocks .is-style-shapes-6 img,
html body .wp-site-blocks .is-style-shapes-7 img,
html body .wp-site-blocks .is-style-shapes-8 img {
  border-radius: 15px;
}

.fitb-new-upcoming-columns .wp-block-column {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.fitb-new-upcoming-columns .wp-block-column .wp-block-group {
  flex: 1;
}

.fitb-logos-gallery .wp-block-image {
  margin-top: auto !important;
  max-height: 160px;
}
.fitb-logos-gallery .wp-block-image img {
  object-fit: contain;
  object-position: center;
}

.fitb-featured-volunteer-cutout img {
  max-height: 384px;
}
@media screen and (max-width: 781px) {
  .fitb-featured-volunteer-cutout {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

@media screen and (max-width: 781px) {
  .fitb-big-numbers-stats > .is-layout-flex {
    flex-direction: column;
    align-items: center;
  }
}

.wp-block-pullquote p:before {
  content: "“";
}
.wp-block-pullquote p:after {
  content: "”";
}
.wp-block-pullquote cite {
  font-weight: bold;
  font-style: normal;
  font-size: 1.33333em;
}
.wp-block-pullquote cite:before {
  content: "– ";
}

.wp-block-quote p:first-of-type:before {
  content: "“";
}
.wp-block-quote p:last-of-type:after {
  content: "”";
}
.wp-block-quote cite {
  font-style: normal;
}
.wp-block-quote cite:before {
  content: "– ";
}

.fitb-qgiv-donation-widget {
  width: 100%;
  height: 2000px;
  border: 0 none transparent;
}

.fitb-expandable-bios {
  justify-content: space-between;
}
.fitb-expandable-bios:not(:has(.wp-block-column:nth-of-type(3))) {
  justify-content: center;
}
.fitb-expandable-bios .wp-block-column:has(details) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fitb-expandable-bios:has(details[open]) .wp-block-column {
  display: block;
}
.fitb-expandable-bios .wp-block-image {
  text-align: center;
}
.fitb-expandable-bios img {
  width: 287px;
}
.fitb-expandable-bios summary {
  text-align: center;
  list-style-type: none;
}
.fitb-expandable-bios summary::-webkit-details-marker {
  display: none;
  content: none;
}
.fitb-expandable-bios summary::marker {
  display: none;
  content: none;
}
.fitb-expandable-bios summary::after {
  content: "▾";
  display: inline-block;
  transform: translateX(0.1em) rotate(-90deg);
  transition: 0.15s all;
  color: var(--wp--preset--color--custom-fitb-magenta);
}
.fitb-expandable-bios details[open] summary:after {
  transform: translateX(0.25em) rotate(0);
}

.hg-fitb-legend-colors {
  row-gap: 0.5em;
}
.hg-fitb-legend-colors div:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.3em;
  border: 1px solid var(--wp--preset--color--custom-dark-gray);
  background-color: var(--key-color);
  vertical-align: text-top;
  border-radius: 50%;
}

.hg-fitb-full-map-container .wpgmza_marker_holder {
  border: 0 none transparent;
  padding-right: var(--wp--style--root--padding-right);
  padding-left: var(--wp--style--root--padding-left);
  max-width: calc(100% - var(--wp--style--root--padding-left) - var(--wp--style--root--padding-right)) !important;
  margin-top: 0;
}
.hg-fitb-full-map-container .wpgmza_marker_holder .dataTables_wrapper,
.hg-fitb-full-map-container .wpgmza_marker_holder h1,
.hg-fitb-full-map-container .wpgmza_marker_holder .hg-fitb-legend-colors {
  max-width: var(--wp--style--global--wide-size) !important;
  margin: 0 auto;
}
.hg-fitb-full-map-container .wpgmza_marker_holder th {
  padding: 8px 10px;
  transition: 0.15s all;
}
.hg-fitb-full-map-container .wpgmza_marker_holder th:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.hg-fitb-full-map-container .wpgmza_marker_holder th:hover td:first-of-type {
  text-decoration: underline;
}
.hg-fitb-full-map-container .wpgmza_marker_holder thead {
  border-top: 1px solid black;
}
.hg-fitb-full-map-container .wpgmza_marker_holder table.dataTable tbody tr {
  background-color: transparent;
}
.hg-fitb-full-map-container .wpgmza_marker_holder table.dataTable tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.hg-fitb-full-map-container .wpgmza_marker_holder .dataTables_length,
.hg-fitb-full-map-container .wpgmza_marker_holder .dataTables_filter {
  padding-top: 1em;
  padding-bottom: 1em;
}
.hg-fitb-full-map-container .wpgmza_marker_holder .dataTables_length select,
.hg-fitb-full-map-container .wpgmza_marker_holder .dataTables_filter input {
  border-radius: 30px;
  font-size: inherit;
  font-family: inherit;
  padding: 5px 9px;
  border: 2px solid black;
}

.hg-fitb-preview-map-container {
  position: relative;
}
.hg-fitb-preview-map-container .wpgmza_map {
  pointer-events: none;
}
.hg-fitb-preview-map-container a.hg-fitb-full-map-link {
  position: absolute;
  display: block;
  font-size: 0;
  color: transparent;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/*# sourceMappingURL=style.css.map */
