/*
 Theme Name: HCP Child Theme
 Description: HCP child theme for Divi
 Author: Bradley Newton
 Template: Divi
 Version: 1.0.0
*/

:root {

    /* colors */
    --go2-brand-blue: #3c3494;
    --go2-brand-light-blue: #7AD0E4;
    --go2-secondary-purple: #82568E;
    --go2-secondary-gray: #7283A4;
    --go2-secondary-green: #BACA33;
    --go2-secondary-yellow: #FED847;
    --go2-text-gray: #696969;
    --go2-transparent-green: #BACA3333; /* vertical overlay accent bar */
    --go2-flat-card-background-shade: #F9FAEB; /* flat card background shade */
    --go2-text-base: #444; /* may also be defined in Appearance */
	--go2-alert-red: #b30033; /* #c70039 is old I believe */
    --go2-alert-red-bg: #c7003920;

    /* fonts */
    --go2-text-font: 'Rubik', Helvetica, arial, sans-serif;
    --go2-heading-font: gotham-bold, Helvetica, arial, sans-serif;
    --go2-montserrat-font: montserrat-bold, Helvetica, arial, sans-serif;

    /* accent bar */
    --go2-accent-bar-width: 30px; /* vertical overlay accent bar */
    --go2-accent-bar-blend-opacity: 1;
    --go2-accent-bar-blend-mode: multiply;

    /* transitions and animations */
    --go2-animation-slower-duration: 0.6s;
    --go2-animation-faster-duration: 0.3s;

    /* max width, for divi sections */
    --go2-section-max-width: 2560px;
    --go2-page-width: 1240px; /* should align with divi page width setting */

    /* default content padding, each side. Applied by default. */
    --go2-content-padding-large-desktop: 30px;  /*      >= 1405px */
    --go2-content-padding-desktop: 24px;        /* 980px - 1404px */
    --go2-content-padding-tablet: 20px;         /* 768px - 979px */
    --go2-content-padding-mobile: 15px;         /* 480px - 767px */
    --go2-content-padding-small-mobile: 15px;   /* <= 479 */

    /* card gutter width. These may not align with Divi breakpoints. */
    --go2-card-gutter-large-desktop: 20px;
    --go2-card-gutter-desktop: 15px;
    --go2-card-gutter-tablet: 15px;

    /* default vertical margins, for sections */
    --go2-section-gap-large-desktop: 150px;
    --go2-section-gap-desktop: 120px;
    --go2-section-gap-tablet: 100px;
    --go2-section-gap-mobile: 60px;
    --go2-section-gap-small-mobile: 40px;

    /* margin multiplier, to reduce space between related sections */
    --go2-section-gap-margin-calc: 0.5;
}


/**
 * Fonts, normally enqueued by Divi, are loaded locally to inhibit CLS
 * In functions.php, Divi google font output is deregistered.
 * If new Google fonts are added to Divi builder, comment these out, and 
 * uncomment the code to deregister fonts in functions.php.
 */

 @font-face {
    font-family: 'montserrat-bold';
    font-weight: bold;
    font-display: swap;
    font-style: normal;
    src: url('assets/fonts/montserrat/static/Montserrat-Bold.woff2') format('woff2'),
         url('assets/fonts/montserrat/static/Montserrat-Bold.woff') format('woff'),
         url('assets/fonts/montserrat/static/Montserrat-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'gotham-bold';
    font-weight: bold;
    font-display: swap;
    font-style: normal;
    src: url('assets/fonts/gotham/gotham-bold.woff2') format('woff2'),
         url('assets/fonts/gotham/gotham-bold.woff') format('woff'),
         url('assets/fonts/gotham/gotham-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Rubik';
    font-weight: 400;
    font-display: swap;
    font-style: normal;
    src: url('assets/fonts/rubik/Rubik-Regular.woff2') format('woff2'),
         url('assets/fonts/rubik/Rubik-Regular.woff') format('woff'),
         url('assets/fonts/rubik/Rubik-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Rubik';
    font-weight: 500;
    font-display: swap;
    font-style: normal;
    src: url('assets/fonts/rubik/Rubik-500.woff2') format('woff2'),
         url('assets/fonts/rubik/Rubik-500.woff') format('woff'),
         url('assets/fonts/rubik/Rubik-500.ttf') format('truetype');
}

@font-face {
    font-family: 'Rubik';
    font-weight: 600;
    font-display: swap;
    font-style: normal;
    src: url('assets/fonts/rubik/Rubik-600.woff2') format('woff2'),
         url('assets/fonts/rubik/Rubik-600.woff') format('woff'),
         url('assets/fonts/rubik/Rubik-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Rubik';
    font-weight: 700;
    font-display: swap;
    font-style: normal;
    src: url('assets/fonts/rubik/Rubik-700.woff2') format('woff2'),
         url('assets/fonts/rubik/Rubik-700.woff') format('woff'),
         url('assets/fonts/rubik/Rubik-700.ttf') format('truetype');
}

@font-face {
    font-family: 'Rubik';
    font-weight: 800;
    font-display: swap;
    font-style: normal;
    src: url('assets/fonts/rubik/Rubik-800.woff2') format('woff2'),
         url('assets/fonts/rubik/Rubik-800.woff') format('woff'),
         url('assets/fonts/rubik/Rubik-800.ttf') format('truetype');
}

@font-face {
    font-family: 'Rubik';
    font-weight: 400;
    font-display: swap;
    font-style: italic;
    src: url('assets/fonts/rubik/Rubik-Italic.woff2') format('woff2'),
         url('assets/fonts/rubik/Rubik-Italic.woff') format('woff'),
         url('assets/fonts/rubik/Rubik-Italic.ttf') format('truetype');
}


/**
 * >>> Typography and Post-CSS Reset <<<
 *
 * some additional specificity required to avoid corrupting Divi builder styles
 */

html {
	font-size: 125%;
}
body {
    font-size: 1.25rem;
    line-height: 1.6em;
	letter-spacing: -0.04em;
	font-weight: 400;
	font-family: var(--go2-text-font);
    color: var(--go2-text-base);
}
:is(p, ul, ol, li, dl, dt, dd, blockquote, pre, form, table, figure, fieldset, hr):not([class]) {
    font-size: 1rem;
	margin-top: 1em;
	margin-bottom: 0;
    padding: 0; /* divi adds padding to everything */
    line-height: inherit;
}
body blockquote:not([class]) {
    padding-left: 20px;
}
:is(dt, li):not([class]) {
    margin-top: 0.5em;
    margin-left: 1em;
    padding-left: 0.5em;
}
body dd:not([class]) {
    margin-top: 0;
}
body :is(ul, ol):not([class]),
body .et_pb_module :is(ul, ol) {
    line-height: inherit !important; /* divi fixes an ambiguous value */
    padding-bottom: 0;
}
td, tr {
    font-size: 0.9rem;
}
a {
    text-decoration: none;
}
/* replace this with scoping to mail content area */
/* a:not([class]):not(:has(*)) {
    color: var(--go2-brand-blue);
    border-bottom: 2px dotted var(--go2-brand-blue);
}
a:not([class]):not(:has(*)):hover {
    text-decoration: none;
    border-bottom: 2px solid var(--go2-brand-blue);
} */
#et-main-area p a:not([class]):not(:has(*)) {
    /* color: var(--go2-brand-blue); */ /* don't need this, color is ok */
    border-bottom: 2px dotted var(--go2-brand-blue);
}
#et-main-area p a:not([class]):not(:has(*)):hover {
    text-decoration: none;
    border-bottom: 2px solid var(--go2-brand-blue);
}


small {
    font-size: 0.7rem;
    line-height: 1.45em;
    display: inline-block;
    margin-top: 0.25rem;
}
:is(p, ul, ol, dl, blockquote, pre, form, table, figure, fieldset, hr):first-child {
    margin-top: 0;
}
:is(ul, ol):not([class]) {
    margin-left: 2.1em;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--go2-heading-font);
	font-weight: 700;
	letter-spacing: -0.08em;
	margin-top: 1em;
	margin-bottom: 0;
}
h1 {
	font-size: 2.6rem;
	margin-top: 0;
    color: #fff;
}
h2 {
	font-size: 2.2rem;
    line-height: 1.1em;
    color: var(--go2-secondary-gray);
}
h3 {
    font-size: 1.6rem;
    line-height: 1.25em;
}
h4 {
	font-size: 1.2rem;
    line-height: 1.3em;
}
h5 {
    font-size: 1rem;
    line-height: 1.4em;
    letter-spacing: -0.038em;
}
h6 {
    font-size: 0.9rem;
    line-height: 1.45em;
    letter-spacing: -0.038em;
}
@media (min-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.6rem;
    }
}


/**
 * >>> Sitewide defaults
 */

.et_pb_row {
    margin-left: auto;
    margin-right: auto;
}

/** 
 * By default, narrow any text widget immediately following a corner heading 
 */
/* .go2-corner-heading + .et_pb_text {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
} */


/**
 * >>> Utility classes <<<
 *
 *
 * go2-blue-text            Change text color to brand blue
 *
 * go2-green-text           Change text color to secondary green
 *
 * go2-white-text           Change text color to white
 *
 *
 * go2-nowrap               Prevent text wrapping
 *
 *
 * go2-hide-desktop         Hides element on desktop
 *
 * go2-hide-tablet          Hides element on tablet
 *
 * go2-hide-mobile          Hides element on mobile
 *
 *
 * go2-section-max-width    Set section max width. Does not allow override.
 *
 * go2-width-100            Force element full width
 *
 * go2-row-pad              Apply standardized viewport X padding
 * 
 * go2-row-card-gap         Set a standardized gap between columns in a row.
 *                          Intended for use with cards. Converts row to flex.
 *
 * go2-section-3-2-1        Opt-in to a 3/2/1 responsive collapsing column layout
 *                          NOT COMPATIBLE WITH COLUMNS CONTAINING BUTTONS
 *
 * go2-row-3-2-1            Opt-in to a 3/2/1 responsive collapsing column layout
 *                          For 3-column cards only, via css grid
 *
 * go2-row-4-3-2-1          Opt-in for 4/3/2/1 responsive collapsing column layout
 *                          For 4-column only, via css grid
 *
 * go2-row-3-break-980      Breaks 3-column layout to 1-column at 980px
 *
 * go2-section-gap          Apply standardized vertical margin
 *
 * go2-section-gap-pull-lower   Reduce the gap below, for a related section
 *
 * go2-section-gap-pull-upper   Reduce the gap above, for a related section
 *
 *
 * --- Specify only one accent bar per element, e.g. blue/solid/left ---
 *
 * go2-accent-blue          Set accent bar color to blue
 *
 * go2-accent-green         Set accent bar color to green
 *
 * go2-accent-solid         Set accent bar appearance to solid
 *
 * go2-accent-blend         Set accent bar appearance to blend
 *
 * go2-accent-left          Set accent bar to left of container
 *
 * go2-accent-right         Set accent bar to right of container
 *
 * go2-accent-top           Set accent bar to top of container
 *
 * go2-accent-bottom        Set accent bar to bottom of container
 *
 * go2-accent-pad           Add padding to push content away from bar.
 *                          Pads the immediate children. May not work as 
 *                          expected with every element.
 *
 * go2-accent-pad-alt       Add padding. Pads the target element. May not 
 *                          work as expected with every element.
 *
 * go2-big-g-overlay        Apply a translucent big G overlay to an element
 *
 * go2-gradient-left        Apply white gradient tint to left of element.
 *                          Applied as a background image.
 *
 * go2-slide-up             Mirrors the corner heading slide up animation.
 *                          Apply to any text element immediately below the heading
 *                          to synchronize the slide up effect.
 */

.go2-btn-sm {
    font-size: 0.9rem;
}
.go2-btn-lg {
    font-size: 1.1rem;
}


.go2-section-3-2-1 {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    grid-column-gap: 20px !important;
    grid-row-gap: 20px !important;
    width: calc( 100% - var(--go2-content-padding-small-mobile) * 2 );
    max-width: var(--go2-page-width);
    margin-left: auto;
    margin-right: auto;
}
.go2-section-3-2-1 .et_pb_row {
    width: auto !important;
    display: contents;
}
.go2-section-3-2-1 .et_pb_row:after {
    content: none;
    display: none;
}
body #main-content .entry-content .go2-section-3-2-1 .et_pb_column { /* specificity to override divi */
    width: auto !important;
    margin: 0 !important;
}

.go2-row-3-2-1 {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
    grid-column-gap: 20px !important;
    grid-row-gap: 30px !important;
}
.go2-row-3-2-1 .et_pb_column {
    width: auto !important;
}

.go2-row-4-3-2-1 {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-column-gap: 20px !important;
    grid-row-gap: 30px !important;
}
.go2-row-4-3-2-1 .et_pb_column {
    width: auto !important;
}



.go2-blue-text {
    color: var(--go2-brand-blue);
}
.go2-green-text {
	color: var(--go2-secondary-green);
}
.go2-white-text {
	color: #fff;
}
.go2-nowrap {
    white-space: nowrap;
}
.go2-section-max-width {
    max-width: var(--go2-section-max-width);
    margin-left: auto;
    margin-right: auto;
}
.go2-width-100 {
    width: 100% !important;
}
[class*="go2-accent"]:after {
    content: "";
    position: absolute;
    z-index: 999;
    visibility: visible;
}
.go2-accent-blue:after {
    background-color: var(--go2-brand-light-blue);
}
.go2-accent-green:after {
    background-color: var(--go2-secondary-green);
}
.go2-accent-blend:after {
    opacity: var(--go2-accent-bar-blend-opacity);
    mix-blend-mode: var(--go2-accent-bar-blend-mode); 
}
.go2-accent-solid:after {
    opacity: 1;
}
.go2-accent-right:after {
    top: 0;
    right: 0;
    height: 100%;
    width: var(--go2-accent-bar-width);
}
.go2-accent-left:after {
    top: 0;
    left: 0;
    height: 100%;
    width: var(--go2-accent-bar-width);
}
.go2-accent-top:after {
    top: 0;
    left: 0;
    width: 100%;
    height: var(--go2-accent-bar-width);
}
.go2-accent-bottom:after {
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--go2-accent-bar-width);
}
.go2-accent-left.go2-accent-pad > *,
.go2-accent-left.go2-accent-pad-alt {
    padding-left: var(--go2-accent-bar-width);
}
.go2-accent-right.go2-accent-pad > *,
.go2-accent-right.go2-accent-pad-alt {
    padding-right: var(--go2-accent-bar-width);
}
.go2-accent-top.go2-accent-pad > *,
.go2-accent-top.go2-accent-pad-alt {
    padding-top: var(--go2-accent-bar-width);
}
.go2-accent-bottom.go2-accent-pad > *,
.go2-accent-bottom.go2-accent-pad-alt {
    padding-bottom: var(--go2-accent-bar-width);
}
.go2-big-g-overlay:before {
    content: "";
    width: 480px;
    aspect-ratio: 1;
    opacity: 0.05;
    position: absolute;
    mix-blend-mode: lighten;
    filter: brightness(0) invert(1);
    background-size: contain;
    background-repeat: no-repeat;
    background: url('/wp-content/uploads/big-G.svg');
}
.go2-gradient-left {
    background-image: linear-gradient(to right,rgba(255,255,255,0.3) 0%,rgba(255,255,255,0) 20%);
}
body .entry-content .et_pb_row.go2-row-card-gap {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0 !important;
    margin-bottom: var(--go2-card-gutter-large-desktop) !important;
}
.go2-section-gap {
    padding-top: 0;
    padding-bottom: 0;
}

@media all and (min-width: 1405px) {
    .go2-section-gap {
        margin-top: var(--go2-section-gap-large-desktop);
        margin-bottom: var(--go2-section-gap-large-desktop);
    }
    .go2-section-gap-pull-lower {
        margin-bottom: calc( var(--go2-section-gap-large-desktop) * var(--go2-section-gap-margin-calc) );
    }
    .go2-section-gap-pull-upper {
        margin-top: calc( var(--go2-section-gap-large-desktop) * var(--go2-section-gap-margin-calc) );
    }
    .entry-content > div > div > div > .et_pb_row { /* specificity, in case divi rolls out nested rows in the future */
        width: calc( 100% - var(--go2-content-padding-large-desktop) * 2 );
    }
    body .go2-row-pad {
        padding-left: var(--go2-content-padding-large-desktop);
        padding-right: var(--go2-content-padding-large-desktop);
    }
    body .go2-row-card-gap {
        gap: var(--go2-card-gutter-large-desktop);
    }
    .go2-hide-desktop {
        display: none !important;
    }
}
@media all and (min-width: 980px) and (max-width: 1404px) {
    .go2-section-gap {
        margin-top: var(--go2-section-gap-desktop);
        margin-bottom: var(--go2-section-gap-desktop);
    }
    .go2-section-gap-pull-lower {
        margin-bottom: calc( var(--go2-section-gap-desktop) * var(--go2-section-gap-margin-calc) );
    }
    .go2-section-gap-pull-upper {
        margin-top: calc( var(--go2-section-gap-desktop) * var(--go2-section-gap-margin-calc) );
    }
    .entry-content > div > div > div > .et_pb_row {
        width: calc( 100% - var(--go2-content-padding-desktop) * 2 );
    }
    body .go2-row-pad {
        padding-left: var(--go2-content-padding-desktop);
        padding-right: var(--go2-content-padding-desktop);
    }
    body .go2-row-card-gap {
        gap: var(--go2-card-gutter-desktop);
    }
    .go2-section-3-2-1 {
        width: calc( 100% - var(--go2-content-padding-desktop) * 2 );
    }
    .go2-hide-desktop {
        display: none !important;
    }
}
@media all and (min-width: 768px) and (max-width: 979px) {
    .go2-section-gap {
        margin-top: var(--go2-section-gap-tablet);
        margin-bottom: var(--go2-section-gap-tablet);
    }
    /* .go2-section-gap > .et_pb_row > .et_pb_column {
        float: none !important;
    } */
    .go2-section-gap-pull-lower {
        margin-bottom: calc( var(--go2-section-gap-tablet) * var(--go2-section-gap-margin-calc) );
    }
    .go2-section-gap-pull-upper {
        margin-top: calc( var(--go2-section-gap-tablet) * var(--go2-section-gap-margin-calc) );
    }
    body .entry-content .et_pb_row.go2-row-card-gap .et_pb_column { /* specificity required to override divi */
        margin-top: calc( var(--go2-card-gutter-tablet) / 2 );
        margin-bottom: calc( var(--go2-card-gutter-tablet) / 2 );
    }
    .entry-content > div > div > div > .et_pb_row {
        width: calc( 100% - var(--go2-content-padding-tablet) * 2 );
    }
    body .go2-row-pad {
        padding-left: var(--go2-content-padding-tablet);
        padding-right: var(--go2-content-padding-tablet);
    }
    body .go2-row-card-gap {
        gap: var(--go2-card-gutter-tablet);
    }
    .go2-section-3-2-1 {
        width: calc( 100% - var(--go2-content-padding-tablet) * 2 );
    }
    .go2-hide-tablet {
        display: none !important;
    }
    .go2-row-3-break-980 {
        display: block !important;
    }
    .go2-row-3-break-980 .et_pb_column {
        /* float: none; */
    }
}
@media all and (min-width: 768px) {
    .go2-row-card-gap {
        display: flex;
    }
    .et_pb_section .go2-row-card-gap.et_pb_row > .et_pb_column {
        flex: 1 1 auto;
        margin: 0;
        /* float: none; */ /* proposed */
    }
    .go2-row-card-gap.et_pb_row:not([class*="go2-accent"]):after {
        display: none; /* adds to flex, remove it */
    }
}
@media all and (min-width: 480px) and (max-width: 767px) {
    .go2-section-gap {
        margin-top: var(--go2-section-gap-mobile);
        margin-bottom: var(--go2-section-gap-mobile);
    }
    .go2-section-gap-pull-lower {
        margin-bottom: calc( var(--go2-section-gap-mobile) * var(--go2-section-gap-margin-calc) );
    }
    .go2-section-gap-pull-upper {
        margin-top: calc( var(--go2-section-gap-mobile) * var(--go2-section-gap-margin-calc) );
    }
    body .entry-content .et_pb_row.go2-row-card-gap {
        margin-bottom: var(--go2-card-gutter-gutter-tablet) !important;
    }
    body .entry-content .et_pb_row.go2-row-card-gap .et_pb_column { /* specificity required to override divi */
        margin-top: calc( var(--go2-card-gutter-tablet) / 2 );
        margin-bottom: calc( var(--go2-card-gutter-tablet) / 2 );
    }
    .entry-content > div > div > div > .et_pb_row {
        width: calc( 100% - var(--go2-content-padding-mobile) * 2 );
    }
    body .go2-row-pad {
        padding-left: var(--go2-content-padding-mobile);
        padding-right: var(--go2-content-padding-mobile);
    }
    .go2-section-3-2-1 {
        width: calc( 100% - var(--go2-content-padding-mobile) * 2 );
    }
    .go2-hide-mobile {
        display: none !important;
    }
}
@media all and (max-width: 479px) {
    .go2-section-gap {
        margin-top: var(--go2-section-gap-small-mobile);
        margin-bottom: var(--go2-section-gap-small-mobile);
    }
    .go2-section-gap-pull-lower {
        margin-bottom: calc( var(--go2-section-gap-small-mobile) * var(--go2-section-gap-margin-calc) );
    }
    .go2-section-gap-pull-upper {
        margin-top: calc( var(--go2-section-gap-small-mobile) * var(--go2-section-gap-margin-calc) );
    }
    body .entry-content .et_pb_row.go2-row-card-gap {
        margin-bottom: var(--go2-card-gutter-gutter-tablet) !important;
    }
    body .entry-content .et_pb_row.go2-row-card-gap .et_pb_column {
        margin-top: calc( var(--go2-card-gutter-tablet) / 2 ) !important; /* required to override divi */
        margin-bottom: calc( var(--go2-card-gutter-tablet) / 2 ) !important;
    }
    .entry-content > div > div > div > .et_pb_row {
        width: calc( 100% - var(--go2-content-padding-small-mobile) * 2 );
    }
    body .go2-row-pad {
        padding-left: var(--go2-content-padding-small-mobile);
        padding-right: var(--go2-content-padding-small-mobile);
    }
    .go2-hide-mobile {
        display: none !important;
    }
}



/**
 * >>> SITE HEADER <<<
 */

#go2-header-sec .et_pb_menu__menu a:hover {
     border: 0 none;
}
#go2-header-sec .et_pb_row:first-child a {
    white-space: nowrap;
    display: inline-block;
}
#go2-header-sec .et_pb_row:first-child .et_pb_column:first-child svg {
    width: 100%;
    height: 100%;
}
#go2-header-sec .et_pb_row:first-child .et_pb_column:first-child .et_pb_image_wrap {
    width: 116px;
    padding-top: 6px;
    padding-bottom: 6px;
}
#go2-header-sec .et_pb_row:first-child .et_pb_column:first-child {
     margin-bottom: 0; /* override divi */
}
#go2-header-sec .et_pb_column:first-child .et_pb_module.et_pb_image {
    flex: 1; /* logo */
}
#go2-header-sec .et_pb_row:first-child .et_pb_column:nth-child(2) .et_pb_text_inner {
    margin-left: auto; /* align contact info to right */
}
#go2-header-sec .et_pb_row:first-child .et_pb_column:nth-child(2) .et_pb_text_inner [id*="go2-header"] {
    white-space: nowrap;
}
#go2-header-sec .et_pb_row:first-child .et_pb_column:nth-child(n+2) {
    margin: 10px; /* skip first col */
}
#go2-header-sec .et_pb_row:nth-child(2) {
    padding-top: 0;
    padding-bottom: 0;
}

@media (max-width: 979px) {
    #go2-header-sec .et_pb_row:first-child .et_pb_text_inner * {
        font-size: 0.9rem;
    }
}
@media (max-width: 767px) {
    #go2-header-sec .et_pb_row:first-child .et_pb_column:first-child .et_pb_image_wrap {
        width: 136px;
    }
    #go2-header-sec .et_pb_row:first-child .et_pb_text_inner {
        gap: 7%;
    }
    #go2-header-sec .et_pb_row:first-child :is(.et_pb_column, .et_pb_text_inner, #go2-header-contact) {
        width: 100%;
    }

    #go2-header-sec .et_pb_row:first-child :is(.et_pb_column, .et_pb_text_inner) {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    #go2-header-sec .et_pb_row:first-child .et_pb_image {
        width: auto !important;
        flex: 0 !important;
        margin: 0;
    }
}
@media (min-width: 1405px) {
    #go2-header-sec .et_pb_row:nth-child(2) #menu-main-menu > li {
        padding-left: 20px;
        padding-right: 20px;
    }
    #go2-header-sec .et_pb_row:nth-child(2) a {
        font-size: 0.9rem;
    }

}
@media (min-width: 768px) {
    #go2-header-sec .et_pb_row {
        justify-content: flex-end;
        align-items: center;
    }
    #go2-header-sec .et_pb_column:first-child {
        flex: 1;
    }
    #go2-header-sec .et_pb_column:nth-child(3) {
        flex: 0;
        padding-left: 30px;
    }
}


#go2-header-contact {
	display: flex;
	font-size: 0.9rem;
}
#go2-header-contact p {
	margin-top: 0;
	line-height: 1.5em;
}
#go2-header-contact svg {
	margin-right: 5px;
	color: var(--go2-brand-blue);
}
#go2-header-phone {
	color: var(--go2-brand-blue);
}
#go2-header-ask {
	font-weight: 400;
}

/* dropdown menu adjustments */

.sub-menu a {
    display: block;
    border: 0 none !important;
}
nav ul.nav li ul.sub-menu {
    border-top: 0 none;
    padding-bottom: 0;
}
.nav .sub-menu li {
    background: #fff;
}
.nav .sub-menu li.current-menu-item {
    background: var(--go2-flat-card-background-shade);
}
#go2-header-sec .et_pb_menu ul li ul li a { 
	font-size: 0.8rem;
}
.et-menu li {
	display: block;
}
.et_pb_menu .et-menu>li {
    padding-left: 14px;
    padding-right: 14px;
}
.et_pb_menu .et_pb_menu__menu>nav>ul>li>ul {
    top: 33px; /* dropdown x y */
	left: 14px;
}
.et_pb_menu .et-menu-nav>ul ul {
	padding: 12px 0;
}
.nav li li {
    line-height: 1.6em;
	padding: 0;
}
.et-menu li li a {
    width: 100%;
	padding: 10px 12px;
}
body .et_pb_menu .et-menu-nav > ul > li > a {
    padding-top: 9px; /* set primary link padding */
    padding-bottom: 17px;
}
.et-menu .menu-item-has-children>a:first-child:after {
    top: initial; /* fix dropdown caret y pos */
}
.nav ul li a:hover {
	background-color: var(--go2-secondary-green);
	opacity: 1;
}
/* mobile */
body .et_pb_menu .et_mobile_menu {
    max-width: 450px;
    margin-left: auto;
    right: -20px;
    top: 37px;
    padding: 0;
}
body .et_pb_menu .et_mobile_menu a {
    transition: all var(--go2-animation-faster-duration) ease-in-out !important;
}
body .et_pb_menu .et_mobile_menu :is(a:hover, a:focus, a:active) {
    opacity: 1;
    background: var(--go2-brand-blue);
    color: var(--go2-secondary-green) !important;
}




/**
 * >>> Site Footer <<<
 */

.go2-footer {
    overflow: hidden;
}
.go2-footer svg {
    width: 100%;
    height: 100%;
}
.go2-footer.go2-footer-lower:before { /* big G, via utility class */
    bottom: -167px;
}
.go2-footer .et_pb_newsletter_fields {
    background: #fff;
    flex-wrap: nowrap;
    padding: 5px;
    border-radius: 50px;
}
.go2-footer .input {
    border-radius: 50px !important;
    border: 0 none !important;
}
.go2-footer :is(p, ul, ol, li, h2) {
    margin: 0;
    padding: 0;
}
.go2-footer .et_pb_newsletter_field {
    flex: 1;
    margin: 0 !important;
    padding: 0 !important;
}
.go2-footer .et_pb_newsletter_button_wrap {
    flex: 0 0 150px
}
body .go2-footer .et_pb_newsletter_button.et_pb_button {
    line-height: 2em !important;
    border-radius: 50px !important;
    letter-spacing: 0;
}
.go2-footer-nav a {
    font-size: inherit;
    color: #fff !important;
}
.go2-footer-nav ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}
.go2-footer .et_pb_row_2_tb_footer .et_pb_text_inner * {
    font-size: 0.8rem;
}
@media (max-width: 980px) {
    .go2-footer :is(p, li) {
        font-size: 0.8rem;
        text-align: center;
    }
    .go2-footer.go2-footer-upper .et_pb_column  {
        margin-top: var(--go2-card-gutter-tablet) !important;
    }
    .go2-footer .go2-footer-logo {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .go2-footer .et_pb_row_2_tb_footer .et_pb_text_inner {
        display: flex;
        justify-content: center;
    }
    .go2-footer.go2-footer-lower {
        padding-top: 30px !important;
        padding-bottom: 25px !important;
    }
    .go2-footer.go2-footer-lower .et_pb_row:nth-child(2) .et_pb_column {
        margin: 2px 0; /* reduce leading between last two paragraphs */
    }
    .go2-footer.go2-footer-lower .et_pb_row:first-child {
        margin-bottom: 0 !important;
    }
    .go2-footer.go2-footer-lower .et_pb_column {
        margin: 10px 0;
    }
}



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





/**
 * >>> HOME HERO <<< 
 *
 * blur added in default hero css, search for #go2-hero-home:before
 */

#go2-hero-home {
    margin-left: auto;
    margin-right: auto;
}
#go2-hero-home .et_pb_row {
	min-height: calc(100vh - 200px);
	align-items: center;
}
#go2-hero-home .et_pb_column {
    padding-right: 30px; /* prevent content from encroaching on green bar */
}
@media (min-height: 930px) {
	#go2-hero-home .et_pb_row {
		min-height: 750px;
	}
}
#go2-hero-home h1 {
	text-shadow: 2px 3px 5px rgba(0,0,0,.3);
}
#go2-hero-home p {
	text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}
#go2-hero-home.go2-hero-sec:after {
	content: "";
	position: absolute;
	width: 33px;
	background: var(--go2-secondary-green);
	top: 0;
	right: 0;
	bottom: 0;
	mix-blend-mode: var(--go2-accent-bar-blend-mode);
    animation: go2ColorBarSlideIn 1s ease forwards;
}
#go2-hero-home .et_pb_column:nth-child(2) {
    align-self: stretch;
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
@keyframes go2ColorBarSlideIn {
    from {
        width:0;
    }
    to {
        width: 33px;
    }
}
@media (min-width: 768px) {
    #go2-hero-home .et_pb_column:nth-child(2) {
      justify-content: flex-end;
    }
}
@media (max-width: 979px) {
    #go2-hero-home .et_pb_row { /* center vertically on <= tablet */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/**
 * >>> NUMBER COUNTERS, ON HOMEPAGE HERO
 *
 * @see custom css in divi column settings for alignment
 */

body .et_pb_section .et_pb_row .go2-counter {
    background: var(--go2-brand-blue);
    display: inline-block;
    text-align: left;
    margin: 0;
    padding: 22px 23px 24px;
}
.go2-counter .percent-sign:before {
    content: "+";
}
body .et_pb_section .go2-counter .percent {
    height: auto;
    margin: 0;
}
.go2-counter .percent p {
    color: #fff;
    font-size: 1.7rem;
    margin: 0;
    line-height: 1;
}
.go2-counter .title {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 400;
    font-family: var(--go2-text-font);
    margin: 0;
    padding: 0;
}



/**
 * >>> ALL OTHER PAGE HEROES
 */

.go2-hero.et_pb_section  {
    min-height: 370px; /* cannot be overridden via widget controls, only module css */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.go2-hero.go2-accent-right:after {
    width: 33px; /* adjust accent, if utility class exists */
    animation: go2ColorBarSlideIn 1s ease forwards;
}
.go2-hero.go2-accent-right .et_pb_column {
    padding-right: 30px;
}
.go2-hero .et_pb_row {
    max-width: 1920px;
}
#go2-hero-home:before,
.go2-hero:before { /* blur mask */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(5px); /* safari */
    backdrop-filter: blur(5px);
}
@media (min-width: 2600px) {
    .go2-hero.et_pb_section  {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 768px) {
    #go2-hero-home:before,
    .go2-hero:before {
        mask-image: linear-gradient(to right, black 50%, transparent 60% );
    }
}
@media (min-width: 480px) {
    .go2-hero.et_pb_section  {
        min-height: 485px;
    }
}


/**
* >>> CORNER HEADING <<< 
*/

.go2-corner-heading {
    max-width: 900px; /* divi overrideable */
    margin-left: auto; /* center heading */
    margin-right: auto;
    width: calc(100% + -68px); /* edge margin on mobile */
}
.go2-corner-heading .et_pb_module_heading {
    text-align: center;
    position: relative;
    display: block; /* proposed: text align is unpredictable with inline-block */
    color: var(--go2-secondary-gray);
	/* bn possible corner heading adjustments */
	text-align: left;
	text-indent: -1.7rem;
}
.go2-corner-heading .et_pb_module_heading:before {
    content: "";
    top: -22px;
    width: 30px;
    height: 30px;
    margin-right: -15px;
    position: relative;
    display: inline-block;
    border-top: 19px solid var(--go2-secondary-green);
    border-left: 19px solid var(--go2-secondary-green);
}
.go2-slide-up.et_is_animating [class*="et_pb_"]:last-child,
.go2-corner-heading.et_is_animating .et_pb_heading_container,
.go2-corner-heading.et_is_animating .et_pb_module_heading, /* <- necessary for inheritance */
.go2-corner-heading.et_is_animating .et_pb_module_heading:before {
    animation-name: go2CornerHeadingToZero;
    animation-delay: inherit;
    animation-duration: inherit;
    animation-fill-mode: forwards;
    animation-timing-function: inherit;
}
/* et_is_animating class may be triggered at the module level by applying a dummy 
animation, other than Slide, at 0% intensity. The actual visible animation for 
this module is defined here. */
.go2-slide-up.et_is_animating [class*="et_pb_"]:last-child,
.go2-corner-heading.et_is_animating .et_pb_heading_container {
    transform: translate3d(0, 3.5em, 0);
}
/* utility class, for items immediately below corner headings */
.go2-corner-heading.et_is_animating .et_pb_module_heading:before {
    transform: translate3d(0, -3em, 0);
}
@keyframes go2CornerHeadingToZero {
    to {
        transform: translateZ(0);
    }
}



/**
 * >>> BANNER: default for wide blue heading format, big G watermark, with image on right <<< 
 * 
 * Requires utility classes for proper presentation, see divi library items
 */

body .go2-section-banner-base {
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0; /* image flush to edge */
}
.go2-section-banner-base .et_pb_row:first-child {
    padding: 0;
}
.go2-section-banner-base .et_pb_row:first-child .et_pb_column {
    padding: 0 var(--go2-accent-bar-width) 0 0; /* make space for accent on mobile */
}
.go2-section-banner-base .et_pb_row:nth-child(2) {
    padding-top: 0;
    padding-bottom: 0;
}
.go2-section-banner-base .et_pb_column {
    margin-right: 0;
}

.go2-section-banner-base .et_pb_row:nth-child(2) .et_pb_column:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
}
.go2-section-banner-base :is(.et_pb_module_heading, .et_pb_text, a) {
    color: #fff;
    border-color: #fff !important;
    margin: 0;
    padding: 0;
}
.go2-section-banner-base .et_pb_heading {
    margin-bottom: 1em !important; /* required to override divi 0 margin */
}
.go2-section-banner-base .et_pb_row:nth-child(2) .et_pb_column:first-child:before {
    left: max(calc((100% - 1660px) / 2), -160px); /* big G */
    bottom: -148px;
}
@media (max-width: 979px) {
    .go2-section-banner-base {
        padding-left: 0 !important;
    }
    .go2-section-banner-base .et_pb_row:nth-child(2) .et_pb_column:first-child {
        padding: 60px var(--go2-content-padding-mobile);
    }
    .go2-section-banner-base .et_pb_row:nth-child(2) .et_pb_column:first-child:after {
        display: none; /* remove accents on mobile */
    }
}
@media (min-width: 979px) {
    .go2-section-banner-base .et_pb_row:nth-child(2) .et_pb_column:first-child {
        order: 1;
        flex: 0 1 66%;
        padding: 60px calc( var(--go2-accent-bar-width) * 2 ) 60px 0;
    }
    .go2-section-banner-base .et_pb_row:nth-child(2) .et_pb_column:nth-child(2) {
        flex: 1;
    }
}


/**
 * >>> BIG "G" TESTIMONIAL <<<
 */

.go2-big-g-testimonial .et_pb_column:first-child {
    flex: 0;
    width: auto !important;
}
.go2-big-g-testimonial .et_pb_column:nth-child(2) {
    flex: 1 1 auto;
    width: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch; /* flex-start; */
}
.go2-big-g-testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.go2-big-g-testimonial:after {
    content: none; /* interferes with flex */
}
.go2-big-g-testimonial .et_pb_image {
    background-size: 380px;
    /* width: auto; */
    max-width: 100%;
}
.go2-big-g-testimonial .et_pb_image img {
    mix-blend-mode: multiply;
    clip-path: circle(155px at 47.5% 50%);
    /* clip-path: url(#go2ClipPath); */ /* @see functions.php */
    object-fit: cover;
    object-position: 50% 50%; /* customize for each image */
    width: 380px;
    height: 380px;
}
.go2-big-g-testimonial .go2-bgt-name .et_pb_module_heading {
    font-family: var(--go2-text-font);
    font-size: 1.4rem;
    line-height: 1.3em;
    margin: 0 0 0.1em;
    padding: 0;
    color: var(--go2-brand-blue);
}
.go2-big-g-testimonial :is(p, .et_pb_module_heading) {
    display: block;
}
.go2-big-g-testimonial p {
    color: var(--go2-text-gray);
    font-family: var(--go2-text-font);
    line-height: 1.75em;
    margin: 0;
}
.go2-big-g-testimonial .go2-bgt-role * {
    font-size: 0.9rem;
    font-style: italic;
}
.go2-big-g-testimonial .go2-bgt-place * {
    font-size: 0.8rem;
    line-height: 1.6em;
}
.go2-big-g-testimonial .go2-bgt-quote:before {
    content: "“";
    font-family: var(--go2-heading-font);
    position: absolute;
    font-size: 170px;
    color: var(--go2-flat-card-background-shade);
    z-index: -1;
    top: 65px;
    left: -23px;
}
.go2-big-g-testimonial .go2-bgt-quote * {
    font-weight: 700;
    line-height: 1.7em;
    margin: 1.75em 0 0.5em;
}
.go2-big-g-testimonial .go2-bgt-quote .et_pb_text_inner p:first-of-type:before { /* @todo breaks the divi builder editor modal, find out why */
    content: "“";
    font-family: var(--go2-heading-font);

}
.go2-big-g-testimonial .go2-bgt-quote .et_pb_text_inner p:last-of-type:after { /* @todo breaks the divi builder editor modal, find out why */
    content: "”";
    font-family: var(--go2-heading-font);
}
@media (max-width: 799px) {
    .go2-big-g-testimonial * {
        text-align: center;
    }
}
@media (max-width: 374px) {
    .go2-big-g-testimonial .et_pb_image {
        width: auto;
        background-size: 220px;
    }
    .go2-big-g-testimonial .et_pb_image img {
        clip-path: circle(90px at 47.2% 49.7%);
        width: 220px !important;
        height: 220px !important;
    }
    .go2-big-g-testimonial .et_pb_column:first-child {
        flex-basis: 230px;
    }
}
@media (min-width: 375px) and (max-width: 479px) {
    .go2-big-g-testimonial .et_pb_image {
        width: auto;
        background-size: 290px;
    }
    .go2-big-g-testimonial .et_pb_image img {
        clip-path: circle(118px at 47.2% 50%);
        width: 290px !important;
        height: 290px !important;
    }
    .go2-big-g-testimonial .et_pb_column:first-child {
        flex-basis: 320px;
    }
}
@media (min-width: 480px) and (max-width: 799px) {
    .go2-big-g-testimonial .et_pb_column:nth-child(2) {
        padding-top: 30px;
    }
}

@media (min-width: 800px) {
    .go2-big-g-testimonial {
        flex-direction: row;
        align-items: initial;
        gap: 36px;
    }
}
@media (min-width: 980px) {
    .go2-big-g-testimonial {
        gap: 64px;
    }
}


/**
 * >>> BANNER WITH IMG/IGON OVER WHITE, TEXT OVER BLUE AND GREEN BAR ON RIGHT
 */

.go2-row-banner-4 .et_pb_column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.go2-row-banner-4 .et_pb_column:nth-child(2) {
    padding-top: 40px;
    padding-bottom: 40px;
}





/**
 * >>> SIMPLE BANNER, WITH PHOTO ON LEFT, TEXT ON RIGHT, NO BACKGROUND <<<
 */

.go2-photo-panel-4 .et_pb_text {
    color: var(--go2-text-gray);
}
@media (max-width: 979px) {
    /* .go2-photo-panel-4 .et_pb_column:first-child {
        display: block;
    } */
    /* remove the accent bar */
    .go2-photo-panel-4 .et_pb_column:nth-child(2) {
        padding-left: 0;
    }
    .go2-photo-panel-4 .et_pb_column:after {
        display: none;
    }
}


/**
 * >>> FLAT ICON CARD WITH PALE GREEN BACKGROUND <<<
 */

.go2-icon-card {
    font-family: var(--go2-text-font);
    /* color: var(--go2-text-gray); */
    background: var(--go2-flat-card-background-shade);
    box-shadow: inset 0 0 0 1px var(--go2-flat-card-background-shade);
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 33px;
    height: 100%;
    font-size: 1rem;
    line-height: 1.4em;
    text-align: center;
    transition: background var(--go2-animation-faster-duration) ease-in-out, box-shadow var(--go2-animation-faster-duration) ease-in-out;
}
.go2-icon-card:hover {
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--go2-secondary-green);
}
.go2-icon-card .et_pb_module_header {
    padding: 0;
    margin: 0 0 0.9em;
}
.go2-icon-card p:last-child {
    margin: 0;
}
body .go2-icon-card .et_pb_main_blurb_image {
    /* width: 86px; */
    margin-bottom: 22px;
}
.go2-icon-card .et_pb_main_blurb_image .et_pb_image_wrap svg {
    width: 100%;
    height: 100%;
}
.go2-icon-card .et_pb_main_blurb_image .et_pb_image_wrap svg * {
    /* fill: var(--go2-brand-blue); */
}
.go2-icon-card .et_pb_image_wrap {
    /* margin-top: 75px;
    margin-bottom: 32px; */
    display: inline;
}
.go2-icon-card .et_pb_module_header {
    font-family: var(--go2-text-font);
    font-size: 1.4rem;
    line-height: 1.4em;
    font-weight: 700;
    text-align: center;
    color: #000;
}
.go2-icon-card .et_pb_blurb_description {
    padding-bottom: 75px;
}


/**
 * >>> GKC COURSE CARD <<<
 */

.go2-course-card {
    overflow: hidden;
    height: 100%;  
    transition: all var(--go2-animation-faster-duration);
}
.go2-course-card .et_pb_blurb_content {
    border: 1px solid var(--go2-secondary-green);
    height: 100%;
    padding: 13px;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}
.go2-course-card .et_pb_blurb_container {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.go2-course-card .et_pb_module_header {
    padding: 0;
    font-size: inherit !important;
    line-height: inherit !important;
}
.go2-course-card .et_pb_main_blurb_image {
    margin-bottom: 15px;
}
.go2-course-card .et_pb_blurb_description {
    /* color: #000; */
    display: flex;
    height: 100%;
    flex-direction: column;
}
.go2-course-card * {
    font-size: inherit;
    margin: 0;
    padding: 0;
}
.go2-course-card p:last-child {
    margin-top: auto;
}
.go2-course-card a {
    font-size: 22px;
    font-weight: 500;
    margin-top: 1em;
    padding-left: 10px;
    display: inline-block;
    height: 36px;
    line-height: 36px;
    width: 90px;
    color: var(--go2-brand-blue);
    background: var(--go2-secondary-green);
    transition: all var(--go2-animation-faster-duration) ease-in-out;
    box-shadow: -13px 2px 2px rgba(0,0,0,0.15);
    position: relative;
    margin-left: -13px;
}
.go2-course-card:hover {
    box-shadow: 0 6px 5px rgba(0,0,0,0.2);
    transform: translateY(-8px);
}
.go2-course-card a:hover {
    color: var(--go2-secondary-green);
    background: var(--go2-brand-blue);
    border: 0 none;
}
.go2-course-card a:before { /* little flag */
    content: "";
    position: absolute;
    top: 0;
    left: calc( 100% - 36px / 2 );
    width: 36px;
    height: 36px;
    background-color: #fff;
    transform: rotate(45deg);
    z-index: 1;
}
.go2-course-card a:after { /* wrap card in link */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
/* little banner */
.go2-course-card:before {
    content: "Free";
    position: absolute;
    padding: 5px 25px 3px 23px;
    right: -20px;
    top: 10px;
    background: var(--go2-secondary-green);
    color: var(--go2-brand-blue);
    z-index: 999;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
	display: none;
}


/**
 * >>> FLIP CARDS <<< 
 */

body .entry-content .go2-flip-card-row { /* actually applied to a divi section not a row */
    display: flex;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}
body .entry-content .go2-flip-card-row .et_pb_row {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}
.go2-flip-card {
    background-color: transparent;
    width: 100%;
    min-height: 490px;
}
.go2-flip-card .et_pb_column {
    position: relative;
    width: 100%;
    height: 100%;
}
.go2-flip-card .et_pb_column > .et_pb_module {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}
/* apply the bg color setting as an overlay so it's visible */
.go2-flip-card .et_pb_column > .et_pb_module:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: inherit;
}
body .go2-flip-card .et_pb_column > .et_pb_module:nth-child(1) {
    display: none;
}
body .go2-flip-card .et_pb_blurb .et_pb_module_header {
    font-family: var(--go2-heading-font);
    font-size: 1.8rem;
    line-height: 1em;
    margin: 0 0 0.278em;
    color: #fff;
    padding: 0;
}
.go2-flip-card .et_pb_blurb {
    font-family: var(--go2-text-font);
    font-size: 1rem;
    line-height: 1.6em;
    color: #fff;
    padding: 30px 30px 20px;
}
.go2-flip-card .et_pb_blurb .et_pb_module_header {
    text-align: left;
}
.go2-flip-card .et_pb_blurb_description p {
    margin: 0;
    padding: 0;
}
.go2-flip-card .et_pb_blurb_description em {
    display: block;
    font-size: 1.1rem;
    color: var(--go2-secondary-green);
    font-weight: 700;
    font-style: normal;
}
.go2-flip-card .et_pb_blurb_description a {
    color: #fff;
}

/* enable flip only on >= tablet */ 
@media (min-width: 980px) {
    body .go2-flip-card .et_pb_column > .et_pb_module {
        position: absolute;
        backface-visibility: hidden;
        transform-style: preserve-3d;
        transition: transform var(--go2-animation-slower-duration) ease-in-out;
    }
    /* the first/top widget is always the front flip */
    body .go2-flip-card .et_pb_column > .et_pb_module:nth-child(1) {
        display: initial;
        transform: none;
        align-items: flex-end;
    }
    body .go2-flip-card .et_pb_column {
        perspective: 1000px;
        transform-style: preserve-3d;
    }
    body .go2-flip-card .et_pb_column:hover > .et_pb_module:nth-child(1) {
        transform: rotateX(180deg) rotateY(0);
    }
    body .go2-flip-card .et_pb_column > .et_pb_module:nth-child(2) {
        transform: rotateX(-180deg) rotateY(0);
    }
    body .go2-flip-card .et_pb_column:hover > .et_pb_module:nth-child(2) {
        transform: none;
    }
}

@media (max-width: 979px) {
    body .entry-content .go2-flip-card-row.et_pb_section {
        flex-wrap: wrap;
    }
}



/**
 * >>> COMPOSITE PANEL AND CARDS <<<
 */

.go2-card-panel .et_pb_module_heading {
    color: #fff;
    padding-top: 82px;
    text-align: center;
    width: 70%;
    margin: 0 auto;
}
.go2-card-panel .et_pb_text {
    color: #fff;
    text-align: center;
    padding-bottom: 278px;
    width: 70%;
    margin: 0 auto;
}
.go2-card-panel .et_pb_row:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(max(-260px, -23%));
    z-index: 10;
}
.go2-card-panel .go2-icon-card {
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    padding-left: 33px;
    padding-right: 33px;
}
.go2-card-panel .go2-icon-card:hover {
    background: var(--go2-secondary-green) !important;
}
.go2-card-panel .go2-icon-card .et_pb_image_wrap {
    margin-top: 40px;
}
.go2-card-panel .go2-icon-card .et_pb_image_wrap svg * {
    fill: none; /* @todo css fill on the base card is completely filling these icons */
}
.go2-card-panel .go2-icon-card .et_pb_module_header {
    color: var(--go2-brand-blue);
}
.go2-card-panel .go2-icon-card .et_pb_blurb_description {
    text-align: center;
    padding-bottom: 32px;
    color: inherit !important;
}
@media (min-width: 980px) {
    .go2-card-panel .et_pb_text {
        padding-bottom: 278px;
    }
    .go2-card-panel .et_pb_row:nth-child(2) {
        transform: translateY(-50%);
        flex-direction: row;
    }    
}



/**
 * >>> CTA PANEL WITH BACKGROUND TEXTURE AND RIGHT ACCENT BAR <<<
 */

.go2-cta-panel-7 {
    position: relative;
    border-right: var(--go2-accent-bar-width) solid var(--go2-brand-light-blue);
    padding-bottom: 40px;
}
.go2-cta-panel-7 .et_pb_column:nth-child(2) {
    display: flex;
    align-items: center;
    justify-content: center;
}
.go2-cta-panel-7 .et_pb_module_heading {
    color: #fff;
    margin: 0;
    padding: 0;
}
.go2-cta-panel-7 .et_pb_text {
    color: #fff;
}
.go2-cta-panel-7 .et_pb_column:first-child {
    padding: 30px 10px 10px;
}
.go2-cta-panel-7 p {
    margin: 1em 0 0;
}
.go2-cta-panel-7:before {
    content: "";
    position: absolute;
    width: var(--go2-accent-bar-width);
    background: var(--go2-brand-light-blue);
    height: 100%;
    top: 0;
    right: 0;
    mix-blend-mode: multiply;
}
.go2-cta-panel-7 .et_pb_button {
    white-space: nowrap;
}
@media (max-width: 979px) {
    .go2-cta-panel-7 :is(.et_pb_text_inner, .et_pb_module_heading) {
        text-align: center;
    }
}
@media (min-width: 980px) {
    .go2-cta-panel-7 .et_pb_column:first-child {
        padding: 52px 0 52px 73px;
    }
}


/**
 *  >>> DESIGNATIONS TABS TAB PANEL <<<
 */

.go2-tabs {
    font-size: 100% !important;
    border: 0 none;
}
.go2-tabs ul.et_pb_tabs_controls:after {
    content: none;
}
.go2-tabs .et_pb_tabs_controls {
    background: none;
}
.go2-tabs .et_pb_tabs_controls li {
    display: initial;
    float: none;
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0 none;
    list-style-type: none;
}
.go2-tabs .et_pb_tabs_controls li a {
    color: #3C3494 !important;
    border: 2px solid var(--go2-brand-blue);
    letter-spacing: -0.05em;
    line-height: 1;
    font-size: 0.9rem;
    background-color: white;
    padding: 24px 15px;
    display: block;
    margin-bottom: 10px;
    transition: all var(--go2-animation-faster-duration) ease-in-out;
}
.go2-tabs .et_pb_tabs_controls .et_pb_tab_active a,
.go2-tabs .et_pb_tabs_controls li a:hover {
    background-color: var(--go2-secondary-green) !important;
    border-color: var(--go2-secondary-green);
    color: var(--go2-brand-blue);
}

/* panel content */

.go2-tabs .et_pb_tab {
    padding: 0;
}
.go2-tabs .et_pb_tab_content :is(h2, h3) {
    color: var(--go2-brand-blue);
    margin-top: 0;
}
.go2-tabs .et_pb_tab_content > h4 {
    /* margin-left: 77px; */
    margin-top: 1.5em;
}
.go2-tabs .et_pb_tab_content > ul > li {
    list-style-type: none;
    margin-left: 25px !important;
}
.go2-tabs .et_pb_tab_content > ul > li:before {
    content: "\f00c";
    font-family: FontAwesome;
    font-weight: 900;
    position: absolute;
    left: 0;
    margin-right: 25px;
    font-size: 1.1em;
    line-height: 1;
    padding: 9px;
    color: var(--go2-brand-blue);
    background: var(--go2-secondary-green);
}
.go2-tabs .et_pb_tab_content > ul > li:not(:last-child):after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid var(--go2-secondary-green);
    opacity: 0.25;
    margin-bottom: 1.1em;
    padding-bottom: 0.7em;
}
select.go2-stacked-tabs-select {
    margin-bottom: 1.5rem;
    padding: 15px 10px;
    width: 100%;
}
@media (max-width: 767px) {
    ul.et_pb_tabs_controls {
        position: absolute;
        height: 0;
        width: 0;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }
}

@media (min-width: 768px) {
    .go2-stacked-tabs-select {
        display: none;
    }
    .go2-tabs {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .go2-tabs .et_pb_tabs_controls {
        flex: 0 0 290px;
    }
    .go2-tabs .et_pb_tab {
        padding: 0 0 0 60px;
    }
    .go2-tabs .et_pb_all_tabs {
        flex: 1;
    }
}


/**
 * >>> ROW OF 3 FLAT GREEN CARDS WITH CTA <<<
 */

.go2-row-cards-6 .et_pb_column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 40px;
    float: none !important;
}
.go2-row-cards-6 .et_pb_module_heading {
    color: var(--go2-brand-blue);
    font-size: 1.6rem; /* heading widgets have incorrect default sizes */
    line-height: 1.1em;
    margin: 0;
    padding: 0; /* why do headings have padding by default */
}
.go2-row-cards-6 .et_pb_button_module_wrapper {
    margin-top: auto;
}
.go2-row-cards-6 .et_pb_button:after {
    display: inline-block; /* arrow */
    font-weight: 600 !important;
}
.go2-row-cards-6 ul {
    margin-left: 1em;
}
.go2-row-cards-6 li:first-child {
    margin-top: 0;
}
@media (max-width: 979px) {
    .go2-row-cards-6 .et_pb_column {
        margin: 20px 0 !important;
    }

}


/**
 * >>> TESTIMONIAL PHOTO CARD AND ROW <<< 
 */

.go2-testimonial-row {
    overflow: hidden;
}
.go2-testimonial-row .et_pb_column {
    height: initial !important; /* equal height */
}
body .go2-testimonial.et_pb_testimonial {
    background: transparent;
    height: 100%;
    overflow: hidden;
    padding: 0;
    position: relative;
    border-top: 1px solid transparent; /* prevent margin bleed */
}
body .go2-testimonial .et_pb_testimonial_portrait {
    border: 2px solid var(--go2-secondary-green);
    width: 110px;
    height: 110px;
    position: absolute;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
}
.go2-testimonial .et_pb_testimonial_description {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #E7EDB9; /* @todo parameterize */
    margin-top: calc( 110px / 2 );
    margin-left: 0 !important;
    padding: 60px 30px 30px;
    text-align: center;
}
.go2-testimonial .et_pb_testimonial_author {
    color: var(--go2-brand-blue);
    order: 1;
    font-size: 1.4rem;
}
.go2-testimonial .et_pb_testimonial_meta {
    order: 2;
    font-size: 0.8rem;
    color: #000;
    line-height: 1.5em;
    margin-top: 15px;
}
.go2-testimonial .et_pb_testimonial_description_inner {
    order: 3;
    color: #000;
    margin-top: 30px;
    padding-bottom: 50px;
}
.go2-testimonial .et_pb_testimonial_meta * {
    display: block;
}
.go2-testimonial .et_pb_testimonial_separator {
    display: none;
}
.go2-testimonial p {
    margin: 0;
    padding: 0 !important;
}
.go2-testimonial .et_pb_testimonial_description:after {
    content: "";
    background: url('https://hcp.go2.org/wp-content/uploads/5-stars.svg');
    display: block;
    width: 100px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
}
@media (min-width: 980px) {
    .go2-testimonial .et_pb_testimonial_description:after {
        bottom: 90px;
    }
}


/**
 * >>> Banner with offset upper seal and lower button <<<
 */

.go2-seal-banner {
    --seal-width: 182px;
    border-top: calc( var(--seal-width) / 2 ) solid transparent;
    /* border-bottom: 25px solid transparent;  */
    padding: 0;
}
.go2-seal-banner .et_pb_row {
    padding-top: 0;
    padding-bottom: 0;
}
.go2-seal-banner .et_pb_row .et_pb_column .et_pb_module {
    margin: 0 auto;
    text-align: center;
}
.go2-seal-banner :is(.et_pb_module_heading, .et_pb_text) {
    color: #fff;
}
.go2-seal-banner .et_pb_row .et_pb_column .et_pb_image {
    width: var(--seal-width);
    max-width: initial;
    height: auto;
    margin-top: calc( -1 * var(--seal-width) / 2 );
}
.go2-seal-banner .et_pb_row .et_pb_column .et_pb_heading {
    margin-top: 106px;
}
.go2-seal-banner .et_pb_row .et_pb_column .et_pb_text {
    margin-bottom: 90px;
    width: 768px;
    max-width: 100%;
}
.go2-seal-banner .et_pb_row .et_pb_column .et_pb_button {
    margin: 0;
    transform: translateY(50%);
}
.go2-seal-banner svg {
    width: 100%; /* @todo see if this should be a theme default */
    height: 100%;
}




/**
 * >>> CTA PANEL WITH BLUE BACKGROUND, BIG G, AND BLUE ACCENT ACROSS BOTTOM <<<
 * 
 * Two variations: 
 *   go2-cta-panel-2 - with svg on left, text in center, button on right
 *   go2-cta-panel-8 - with image on left and button on right
 */

body .et_pb_section .go2-cta-panel-2.et_pb_row,
body .et_pb_section .go2-cta-panel-8.et_pb_row {
    padding-top: 67px;
    padding-bottom: calc( 67px + var(--go2-accent-bar-width) ) !important;
    background: var(--go2-brand-blue);
    border-bottom: var(--go2-accent-bar-width) solid var(--go2-brand-light-blue);
    overflow: hidden;
}
.go2-cta-panel-2:before,
.go2-cta-panel-8:before {
    width: 625px; /* big G alignment, via utility class */
    left: -15px;
    bottom: -148px;
}
.go2-cta-panel-2:after,
.go2-cta-panel-8:after {
	mix-blend-mode: unset; /* adjust accent bar, via utility class */
	opacity: .4;
}
.go2-cta-panel-2 .et_pb_column,
.go2-cta-panel-8 .et_pb_column {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
}
.go2-cta-panel-2 svg,
.go2-cta-panel-8 img {
    width: 100%;
    height: 100%;
}
.go2-cta-panel-2 .et_pb_module,
.go2-cta-panel-8 .et_pb_module {
    display: block; /* resolves svg sizing */
}
.go2-cta-panel-2 .et_pb_column:first-child {
    flex: 0;
}
.go2-cta-panel-2 .et_pb_column:nth-child(2) {
    flex: 2.5;
}
.go2-cta-panel-2 .et_pb_column:nth-child(3) {
    flex: 2;
}
.go2-cta-panel-8 .et_pb_column:first-child {
    flex: 0;
}
.go2-cta-panel-8 .et_pb_column:nth-child(2) {
    flex: 1;
}
@media (min-width: 768px) and (max-width: 980px) {
    .go2-cta-panel-2 .et_pb_column,
    .go2-cta-panel-8 .et_pb_column { /* nudge the image centered */
        margin-right: var(--go2-content-padding-tablet);
    }
}
@media (min-width: 768px) {
    body .et_pb_section .go2-cta-panel-2.et_pb_row,
    body .et_pb_section .go2-cta-panel-8.et_pb_row {
        display: flex;
        flex-wrap: wrap;
    }
}



/**
 * >>> ROW - SUMMIT AND NAVIGATOR WORKSHOP DATE CARDS <<<
 */

.go2-row-date-cards .et_pb_column {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}
.go2-row-date-cards p {
    margin: 0 0 0.5em;
    padding: 0;
    color: #fff;
}
.go2-row-date-cards .et_pb_column .et_pb_module {
    margin-bottom: 0;
}
.go2-row-date-cards .et_pb_module_heading {
    font-family: var(--go2-text-font);
    font-weight: 700;
    font-size: 1.4rem;
    padding: 0;
    color: #fff;
}
.go2-row-date-cards .et_pb_button_module_wrapper {
    margin-top: 0.5em;
}
.go2-row-date-cards .et_pb_column:first-child {
    padding-left: calc( 3 * var(--go2-accent-bar-width) );
}
.go2-row-date-cards .et_pb_column:first-child:before {
    content: "";
    position: absolute;
    width: var(--go2-accent-bar-width);
    background: var(--go2-brand-light-blue);
    height: 100%;
    top: 0;
    left: var(--go2-accent-bar-width);
    mix-blend-mode: multiply;
}



/**
 * >>> WORKSHOP ORDERED LIST TOPICS <<<
 */

.go2-workshop-num-list ol {
    list-style-type: none;
    margin: 0;
    counter-reset: custom-counter;
}
.go2-workshop-num-list ol li {
    counter-increment: custom-counter;
    margin: 0 0 15px;
    padding: 15px 10px 15px 80px;
    background: var(--go2-transparent-green);
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
}
.go2-workshop-num-list ol li::before {
    content: counter(custom-counter, decimal-leading-zero);
    display: inline-block;
    font-family: var(--go2-text-font);
    background-color: var(--go2-secondary-green);
    color: var(--go2-brand-blue);
    font-weight: 800;
    line-height: 1;
    margin-right: 30px;
    padding: 10px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}
@media (min-width: 480px) {
    .go2-workshop-num-list ol {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        grid-gap: 20px;
    }
    .go2-workshop-num-list ol li {
        margin: 0;
    }
}



/**
 * >>> CTA PANEL WITH LEFT IMAGE, FLAT BACKGROUND, HEADING AND CTA <<<
 */

.go2-cta-panel-3 {
    background-image: linear-gradient(90deg, #FFFFFF00 0%, #FFFFFF26 100%);
    background-color: var(--go2-brand-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.go2-cta-panel-3:after {
    content: none; /* messes with flex */
}
.go2-cta-panel-3 .et_pb_module_heading {
    color: #fff;
    margin: 0;
    padding: 0;
}
.go2-cta-panel-3 .et_pb_column {
    display: flex;
    align-items: center;
    justify-content: center;
}
.go2-cta-panel-3 .et_pb_column:nth-child(1):before {
    content: "";
    position: absolute;
    background: var(--go2-brand-light-blue);
    width: var(--go2-accent-bar-width);
    right: 0;
    height: 100%;
    mix-blend-mode: multiply;
}
.go2-cta-panel-3 .et_pb_column:nth-child(1) {
    flex: 0 0 290px;
    box-shadow: var(--go2-accent-bar-width) 0 0 0 var(--go2-brand-light-blue);
}
.go2-cta-panel-3 .et_pb_button {
    white-space: nowrap;
}
@media (min-width: 980px) {
    .go2-cta-panel-3 {
        flex-direction: row;
        align-items: stretch;
        gap: 0;
    }
    body .et_pb_section .go2-cta-panel-3 .et_pb_column {
        margin-right: 80px !important;
        width: auto !important;
    }
}
@media (max-width: 980px) {
    .go2-cta-panel-3 .et_pb_column:nth-child(1) {
        width: 100% !important;
        max-width: 250px;
        height: 350px;
    }
    .go2-cta-panel-3 .et_pb_module_heading {
        padding: 0 20px;
        text-align: center;
    }
}



/**
 * >>> OPEN ICON CARD <<<
 *
 * Rounded icon and heading, no background. 
 */

.go2-row-open-card {
    row-gap: 40px !important;
}
.go2-row-open-card .et_pb_column {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.go2-open-card {
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}
body .go2-open-card .et_pb_blurb_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
body .go2-open-card .et_pb_blurb_content .et_pb_main_blurb_image {
    width: auto;
    margin-bottom: 15px;
}
.go2-open-card .et_pb_module_header {
    font-family: var(--go2-text-font);
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.214em;
    margin: 0;
    padding: 0;
    color: var(--go2-brand-blue);
    text-align: center;
}
body .go2-open-card .et_pb_image_wrap {
    background: var(--go2-secondary-green);
    width: 100px;
    height: 100px;
    border-radius: 100px;
    margin: 0 auto 0.9em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.go2-open-card .et_pb_image_wrap :is(.et-pb-icon, svg) {
    color: #fff;
    display: block;
    max-width: 100%;
    max-height: 60%;
    font-size: 60px;
    z-index: 10;
}
.go2-open-card svg {
    width: 100%; /* resolves hidden icon on safari */
}
.go2-open-card svg * {
    fill: #fff;
    opacity: 1; /* circumvents conflict with divi counter style */
}



/**
 * >>> Number counter statistic card <<<
 */

.go2-row-stat-cards .et_pb_column {
    background: var(--go2-brand-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    min-height: 94px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.go2-row-stat-cards .et_pb_column:after {
    content: "";
    position: relative;
    border-right: 2px solid rgba(255,255,255,0.2);
    height: 2.2rem;
}
body .go2-row-stat-cards .et_pb_column .et_pb_module {
    color: #fff;
    margin-bottom: 0;
}
.go2-row-stat-cards .et_pb_module:nth-child(2) {
    order: 3; /* center the pipe */
}
.go2-row-stat-cards .et_pb_module:first-of-type * {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}
.go2-row-stat-cards .et_pb_module:last-of-type * {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
}

 

/**
 * >>> FAQ ACCORDION <<< 
 */

.go2-faq .et_pb_toggle {
    border: 2px solid var(--go2-secondary-green);
    color: var(--go2-text-gray); /* needs more specifity */
    background: #fff;
    padding: 0;
}
body .go2-faq .et_pb_accordion_item .et_pb_toggle_title {
    font-family: var(--go2-text-font);
    font-weight: normal;
    margin: 0;
    padding: 26px 40px 26px 25px;
}
.go2-faq .et_pb_toggle_open .et_pb_toggle_title {
    color: var(--go2-brand-blue);
}
body .et_pb_column .go2-faq.et_pb_accordion .et_pb_toggle.et_pb_accordion_item h5.et_pb_toggle_title:before {
    content: "\FF0B" !important;
    font-weight: 100 !important;
    font-family: var(--go2-text-font) !important;
    font-size: 26px;
    color: var(--go2-brand-blue) !important;
    right: 20px;
}
.go2-faq .et_pb_toggle_content {
    padding: 0 25px 14px;
}



/**
 * >>> HEADING STEP/NUMBER CARD
 */

.go2-heading-step.et_pb_row :is(.et_pb_module, .et_pb_module_heading) {
    margin: 0;
    padding: 0;
}
.go2-heading-step.et_pb_row .et_pb_code { /* digits */
    font-family: var(--go2-montserrat-font);
    color: #E7EDB9;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    white-space: nowrap;
}
.go2-heading-step.et_pb_row .et_pb_heading {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
    flex: 1;
    margin-right: 120px;
}
.go2-heading-step.et_pb_row .et_pb_module_heading {
    font-size: 1.4rem;
    line-height: 1.179em;
    color: var(--go2-brand-blue);
}
.go2-heading-step.et_pb_row .go2-heading-digit-wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
}
.go2-heading-step.et_pb_row .et_pb_column .go2-heading-digit-wrap .et_pb_module {
    margin-bottom: 0;
}
@media (max-width: 979px) {
    .go2-heading-step.et_pb_row {
        padding-top: 0;
    }
}
@media (min-width: 480px) and (max-width: 979px) {
    .go2-heading-step.et_pb_row .go2-heading-digit-wrap {
        flex-direction: row;
    }
    .go2-heading-step.et_pb_row .et_pb_heading {
        margin-right: 0;
        margin-left: 106px;
    }
}


/**
 * FORMIDABLE FORMS
 * 
 * These styles carried over from coe.go2.org/apply
 */

#primary .with_frm_style {
	--border-color-active: #3c3494;
	--submit-bg-color: #3c3494;
    --submit-border-color: #3c3494;
	--toggle-on-color: #3c3494;
	--progress-active-bg-color: #3c3494;
}

.frm_display_format_buttons .frm_label_button_container {
	line-height: 1em; 
}

#form_contact-form .frm_submit button {
	background-color: var(--go2-secondary-green) !important;
    border: 0 none !important;
    color: var(--go2-brand-blue) !important;
    border-radius: 50px !important;
    font-weight: bold !important;
    font-style: normal !important;
    text-transform: none !important;
    text-decoration: none !important;
    transition: all var(--go2-animation-faster-duration);
}
#form_contact-form .frm_submit button:hover {
    background-color: var(--go2-brand-blue) !important;
    color: var(--go2-secondary-green) !important;
}

#form_contact-form fieldset {
    padding-bottom: 0;
}

.frm_other_input {
	margin-top: 10px;	
}

.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):focus, .frm_style_formidable-style.with_frm_style select:focus. .frm_style_formidable-style.with_frm_style textarea:focus {
	border-color: #3c3494;
	box-shadow: 0 1px 1px rgb(0 0 0 / 8%) inset, 0 0 8px rgb(60 520148 / 60%);
	box-shadow: none;
	background-color: #eee;
}

.with_frm_style input[type=text], .with_frm_style input[type=password], .with_frm_style input[type=email], .with_frm_style input[type=number], .with_frm_style input[type=url], .with_frm_style input[type=tel], .with_frm_style input[type=phone], .with_frm_style input[type=search], .with_frm_style select, .with_frm_style textarea, .frm_form_fields_style, .with_frm_style .frm_scroll_box .frm_opt_container, .frm_form_fields_active_style, .frm_form_fields_error_style, .with_frm_style .frm-card-element.StripeElement, .with_frm_style .chosen-container-multi .chosen-choices, .with_frm_style .chosen-container-single .chosen-single {
	border-top-width: 0;
	border-right-width: 0;
	border-left-width: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0 10px;
	color: #3c3494;
	font-weight: bold;
	background-color: transparent;
}

.with_frm_style textarea {
	border-width: 1px;
	padding: 5px;
	border-radius: 4px;
}

select:hover {
	border-color: #3c3494;
}

.with_frm_style select {
	padding-right: 35px;
}

.frm_color_block {
	background-color: rgba(60,52,148,.02);
  border: 1px solid #3c3494;
  padding: 20px 40px;
	/* adjusting 2024-09-08 */
	border: none;
	background-color: transparent;
}

/* removing because creating weird hover effect on facilities view - not sure why I originally had it in here div:has(> .frm_grid_container):hover {
	background-color: lightgray;
	cursor:pointer;
}
*/
/* .dt-buttons {
	width: 100%;
	float: right;
}

button.dt-button {
	float: right;
} */

/* end copied styles */

.frm_forms {
    box-shadow: 0 5px 20px rgba(0,0,0,.3);
    padding: 20px;
}
body .with_frm_style h3.frm_form_title {
    background: var(--go2-brand-blue);
    color: #fff;
    text-align: center;
    margin: -20px -20px 0;
    padding: 15px;
    font-size: 1.5rem;
	font-size: 1.3rem;
	letter-spacing: -0.04em;
	font-weight: 500;
	padding: 10px;
}
.frm_fields_container {
    margin-top: 15px;
}
/* form error */
body .et_pb_column .with_frm_style .frm_error_style {
    background: none;
    border: 0 none;
    padding: 0.2em 0 2.1em;
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5em;
}
/* form status message */
body .et_pb_column .with_frm_style .frm_message {
    background: none;
    border: 0 none;
    margin: 0;
}
body .et_pb_column .with_frm_style .frm_message p:last-child {
    margin: 0;
}

/* form button tweak */
.frm_submit input {
	letter-spacing: -0.04em;
}

.go2-form-submit-btn .frm_primary_label {
	display: none;
}

.horizontal_radio .frm_checkbox {
	margin-right: 12px;
}


/**
 * SWIPER / IMAGE CAROUSEL
 */

.dica_divi_carousel img {
    aspect-ratio: 1;
    object-fit: cover;
}


/* FORMIDABLE */
/* basic formidable forms adjustments */
.with_frm_style .frm_form_fields .frm_fields_container div.frm_description {
	line-height: 1.8em;
}

/* end basic formidable forms adjustments */

/* bootstrap modal form adjustments */
.modal-dialog .modal-content {
	border-radius: 0;
}
.modal-content .modal-header {
	border-width: 0;
}
.modal-header .modal-title {
	margin-top: 0;
	padding-bottom: 0;
	color: var(--go2-brand-blue);
}
.modal-content .frm_forms {
	box-shadow: none;
	padding: 0;
}
.modal-content .modal-body {
	padding-top: 0;
}

.modal-content .frm_fields_container, .modal-content .frm_section_heading:first-of-type {
	margin-top: 0;
}


/* end modal form adjustments */

/* modal button */
.go2-add-facility-action-area {
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
}
.go2-add-facility-action-area a {
	background-color: #baca33;
    border-color: #baca33;
    border-radius: 50px;
    font-style: normal;
    text-transform: none;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    padding: 5px 20px;
    display: inline-block;
}
.go2-add-facility-action-area a:hover {
	background: var(--go2-brand-blue);
	color: var(--go2-secondary-green);
	border: none;
}

/* end modal button */

/* permissions repeater section and buttons */
.frm_repeat_buttons {
	align-items: flex-end;
    justify-content: flex-start;
    display: flex;
    margin-bottom: 20px;
}
/* fix frm_hidden which gets overruled by display:flex on the frm_repeat_buttons above */
.frm_fields_container .frm_hidden {
	display: none; 
}
.frm_repeat_buttons a.frm_add_form_row,
.frm_repeat_buttons a.frm_remove_form_row {
    display: inline-block;
	padding: 5px 10px;
    border: 1px solid var(--go2-brand-blue);
    border-radius: 30px;
    font-family: 'Rubik', Helvetica, Arial, Lucida, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--go2-brand-blue);
    background-color: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 10px;
    line-height: 1;
}

.frm_repeat_buttons a.frm_add_form_row:hover,
.frm_repeat_buttons a.frm_remove_form_row:hover {
    background-color: var(--go2-brand-blue);
    color: #ffffff;
}

.frm_repeat_buttons a.frm_add_form_row svg,
.frm_repeat_buttons a.frm_remove_form_row svg {
    display: none;
}

.frm_repeat_buttons a.frm_add_form_row::before {
    content: "+";
    margin-right: 5px;
}

.frm_repeat_buttons a.frm_remove_form_row::before {
    content: "-";
    margin-right: 5px;
}
.with_frm_style .frm_repeat_sec {
    margin: 0;
    padding-bottom: 5px;
    border-width: 0;
}
.frm_repeat_sec [id^="field_loc_perm_role-"][id$="_label"],
.frm_repeat_sec [id^="field_loc_perm_user-"][id$="_label"] {
    display: none;
}

.frm_repeat_sec #field_loc_perm_role-0_label,
.frm_repeat_sec #field_loc_perm_user-0_label {
    display: block;
}

/* end permissions repeater section and buttons */

/* add facility form */
#field_loc_name {
	font-size: 1.2rem	
}

/* tighten spacing between line1 and line2 for address */
#form_location [id$="-line1_container"] {
	margin-bottom: 0;
}

/* end add facility form */

/* single post blog customizations */
.et_post_meta_wrapper h1.entry-title {
	font-size: 2rem;
	color: var(--go2-brand-blue);
}
#sidebar h2.wp-block-heading {
		font-size: 1.4rem; 
	}
@media (min-width:768px) {
	.et_post_meta_wrapper h1.entry-title {
		font-size: 2rem;
	}
	#sidebar h2.wp-block-heading {
		font-size: 1.4rem; 
	}
}

/* >>> MEMBER AND ADMIN DASHBOARD STYLES FROM THEME BUILDER SIDEBAR <<< */

  .go2-member-content {
    width: calc(100% - 230px) !important;
  }
.go2-sidebar-member-menu {
    border-right: solid 1px #ddd;
    padding: 10px 8px 40px 5px;
    width: 230px !important;
  }
.go2-sidebar-member-menu .et_pb_menu__menu {
    height: 100%;
    padding-right: 0;
    padding-top: 20px;
}
.go2-sidebar-member-menu .et_pb_menu__menu, .go2-sidebar-member-menu .et-menu-nav {
    width: 100%;
  }
.go2-sidebar-member-menu ul.et-menu {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    width: 100%;
}

.go2-sidebar-member-menu .et-menu li {
    padding: 0;
    margin: 0;
    display: block;
    padding-left: 0;
    padding-right: 11px;
}

.go2-sidebar-member-menu .et-menu li a {
    font-size: 0.8rem;
    color: var(--go2-text-base);
    padding: 10px 10px 10px 15px !important;
    position: relative;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    border-bottom: none;
    line-height: 1.5;
    opacity: 1 !important;
    width: 100%;
    
}
  
  .go2-sidebar-member-menu .et-menu li a svg {
  	margin-right: 7px;  
  }
  
.go2-sidebar-member-menu .et-menu li a:hover {
    background-color: rgba(60, 52, 148, 0.1);
    color: var(--go2-brand-blue);
}

.go2-sidebar-member-menu .et-menu li.current-menu-item a {
    background-color: rgba(60, 52, 148, 0.1);
    font-weight: 500;
    color: var(--go2-brand-blue);
    border-left: 1px solid var(--go2-brand-blue);
}

.go2-sidebar-member-menu .et_pb_menu__wrap,
.go2-sidebar-member-menu .et_pb_menu__menu {
    display: flex !important;
}

.go2-sidebar-member-menu .et_mobile_nav_menu {
    display: none !important;
}

.go2-member-greeting {
		padding-bottom: 0;
    margin-top: 0;
  }
  
.go2-member-role {
		font-size: .7rem;
  	line-height: 1em;
		color: #666;
  	display: inline-block;
		border: solid 1px var(--go2-secondary-green);
  	border-radius: 20px;
  	padding: 4px 10px 4px 8px !important;
  }
  .go2-member-role svg {
    color: var(--go2-secondary-green);
    margin-right: 5px;
  }

  /* formidable */
  .go2_dessp_repeater .frm_repeat_sec {
    padding: 10px;
    border: 1px solid #baca33 !important;
    margin-bottom: 20px;
  }
  .go2_dessp_repeater .frm-geolocation-map {
    display: none;
  }
  
.go2-facility-card {
  position: relative;
  /* ... existing styles ... */
}

.go2-verification-flag {
  position: absolute;
  top: 17px;
  right: -8px;
  background-color: #fff;
  color: var(--go2-alert-red);
  padding: 5px 15px;
  font-size: 0.8em;
  font-weight: 500;
  z-index: 1;
  box-shadow: -1px 3px 7px rgba(0,0,0,0.3);
}

.go2-verification-flag::before,
.go2-verification-flag::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
}

/* Right fork */
.go2-verification-flag::after {
  right: 0;
  bottom: -8px;
  border-top: 8px solid #bbb; /* Darker shade for the wrap */
  border-right: 8px solid transparent;
}
  
.go2-member-page .et_pb_button.go2-btn-sm {
    padding: .15em 1em !important;
    font-weight: 500;
  }

/* >>> END MEMBER AND ADMIN DASHBOARD STYLES FROM THEME BUILDER SIDEBAR <<< */


/* go2 member area */
.frm-modal .modal-dialog .modal-content, .frm-modal .frm_fields_container, .frm-modal .frm_form_field  {
	padding-top: 0;
	margin-top: 0;
}

/* >>> FROM FACILITY DETAIL VIEW <<< */
.go2-facility-detail .go2-mem-des-info, .go2-facility-detail .go2-mem-des-info p {
    font-size: .8rem;
}

.go2-mem-des-toggle {
    cursor: pointer;
    display: inline-block;
    margin-bottom: 4px;
}

.go2-facility-detail p.go2-mem-des-blurb {
    font-size: 0.8rem;
    text-align: left;
    color: #333;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 5px;
}

.go2-facility-detail p.go2-mem-des-crit-link {
    text-align: right;
}

.go2-mem-des-toggle:hover {
    text-decoration: underline;
}

.go2-mem-des-toggle svg {
    transition: transform 0.3s ease;
    margin-right: 5px;
}

.go2-mem-des-toggle.active svg {
    transform: rotate(180deg);
}

.go2-facility-detail p.go2-designation-status {
    font-weight: 600;
    margin-top: 0;
}
.go2-facility-detail p.go2-designation-status.none {
	font-weight: 400;
	margin-top: 10px;
	font-style: italic;
}

.go2-facility-detail {
    font-size: 0.9rem;
}

.go2-facility-detail p {
    font-size: 0.9rem;
    margin-top: 0.5em;
    padding-bottom: 0;
}

.go2-facility-detail .go2-facility-image {
    height: 100px;
    width: 110px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: solid 1px var(--go2-secondary-green);
    float: left;
	margin: 0;
    margin-right: 20px;
}

.go2-facility-detail .go2-facility-name {
    font-size: 1.8em;
    margin: 0;
    color: #333;
	line-height: 1em;
}

.go2-facility-detail .go2-facility-info p {
    font-size: 0.9rem;
    padding-bottom: 0;
    margin-top: 0;
}

.go2-facility-detail .go2-facility-info svg,
.go2-facility-detail .go2-facility-section svg {
    color: var(--go2-secondary-green);
    margin-right: 5px;
}

.go2-facility-section {
    margin-top: 2em;
    padding-top: 1em;
    clear: both;
}

.go2-facility-section h2 {
    color: var(--go2-brand-blue);
    font-size: 1.3em;
    margin-bottom: 0.5em;
    border-bottom: 1px solid var(--go2-secondary-green);
}

.go2-facility-section h3 {
    font-size: 1rem;
    margin-top: 0;
    padding-bottom: 0;
}

.go2-facility-detail .go2-facility-actions {
    justify-content: flex-start;
    gap: 1em;
    margin-top: 1em;
}

.go2-facility-detail .go2-btn-sm {
    font-size: 0.9rem;
}

.go2-facility-detail .go2-btn-blue-outline {
    background-color: transparent;
    border-color: var(--go2-brand-blue);
}

.go2-facility-detail .go2-btn-blue-outline:hover {
    background-color: var(--go2-brand-blue);
    color: #fff !important;
}

.go2-back-link {
    margin-bottom: 1em;
    display: inline-block;
    color: var(--go2-brand-blue);
    text-decoration: none;
    margin-top: -2em;
    font-size: .8rem;
}

.go2-back-link:hover {
    text-decoration: underline;
}

.go2-map-placeholder {
    background-color: #f0f0f0;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1em;
}

.go2-facility-main-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.go2-facility-address,
.go2-facility-contact {
    flex: 1;
    min-width: 250px;
}

.go2-facility-details,
.go2-health-system {
    margin-top: 20px;
}

.go2-designation-spec-info-grid, .go2-designation-status-grid, .go2-designation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.go2-designation-spec-info-card, .go2-designation-status-card, .go2-designation-card {
    border: 1px solid var(--go2-secondary-green);
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* For screens wider than 860px (210px * 4 + 20px gap * 3) */
@media (min-width: 1024px) {
    .go2-designation-status-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* For screens between 440px and 859px */
@media (min-width: 768px) and (max-width: 1023px) {
    .go2-designation-status-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For screens narrower than 440px */
@media (max-width: 767px) {
    .go2-designation-status-grid {
        grid-template-columns: 1fr;
    }
}

.go2-designation-status-card, .go2-designation-spec-info, .go2-designation-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.go2-designation-status-card .frm_no_entries {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.go2-designation-status-wrapper {
    text-align: center;
}
.go2-designation-status-wrapper.no-entries {
    margin-top: 2em;
}
.go2-facility-detail .go2-facility-section .go2-designation-status-wrapper svg {
    width: 120px;
    height: auto;
    margin: 0;
    margin-top: 10px;
}

.go2-facility-detail p.go2-designation-status-confirm-note {
    font-size: .7rem;
    line-height: 1.3;
    font-style: italic;
    text-align: left;
    margin-bottom: 1.5em;
}


.go2-info-text {
    font-style: italic;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.go2-facility-main-info {
    margin-left: 0;
}

.go2-facility-details p strong {
    font-weight: 500;
}

.go2-facility-detail p.with-icon {
    position: relative;
    padding-left: 30px;
}

.go2-facility-detail p.with-icon i,
.go2-facility-detail p.with-icon svg {
    position: absolute;
    left: 0;
    top: 0.25em;
}

.go2-verification-flag {
    position: absolute;
    top: 17px;
    right: -8px;
    background-color: #fff;
    color: var(--go2-alert-red);
    padding: 5px 15px;
    font-size: 0.8em;
    font-weight: 500;
    z-index: 1;
    box-shadow: -1px 3px 7px rgba(0,0,0,0.3);
}

.go2-verification-flag::before,
.go2-verification-flag::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
}

.go2-verification-flag::after {
    right: 0;
    bottom: -8px;
    border-top: 8px solid #bbb;
    border-right: 8px solid transparent;
}

/* begin go2 alert bar styling */
.go2-bar {
  border-width: 1px;
  border-style: solid;
  border-radius: 4px;
  /*margin-top: 1.5em; */
  display: flex;
  align-items: flex-start;
  padding: 16px;
}

.go2-bar-icon {
  font-size: 1.5rem;
  margin-right: 16px;
  flex-shrink: 0;
}

.go2-bar-content {
  flex-grow: 1;
}

.go2-bar-title {
  font-weight: bold;
  margin-right: 5px;
}

.go2-bar p {
  /* font-size: 0.875rem; */
  margin: 0 0 0.5em 0;
  font-size: .8rem;
}

.go2-bar p:last-child {
  margin-bottom: 0;
}

/* Info style */
.go2-bar-info {
  background-color: #CDE8F5;
  border-color: #7DBCE0;
  color: #447EAF;
  /* pull to brand colors */
}

/* Warning style */
.go2-bar-warning {
  background-color: #F8F4D5;
  border-color: #D8CF82;
  color: #96722E;
  /* fix for WCAG contrast compliance */
  background-color: #FBF8E5;
  color: #857110;
}

/* Action required style */
.go2-bar-action {
  background-color: #F2D6D4;
  border-color: #BE8180;
  color: #B4302B;
  margin-top: 20px;
}

/* Success style */
.go2-bar-success {
  background-color: #DDF3D5;
  border-color: #AFCDA4;
  color: #597151;
}

/* remove form status style - need to revise to only remove when has alert bar - btd */
.with_frm_style .frm_message{
	background: none;
    border: none;
    padding: 0;
}

/* end go2 alert bar styling */

.go2-facility-action-tracker table {
    width: 100%;
    table-layout: fixed;
}

.go2-facility-action-tracker th:nth-child(1),
.go2-facility-action-tracker td:nth-child(1) {
    min-width: 150px;
}

/* .go2-facility-action-tracker th:nth-child(2),
.go2-facility-action-tracker td:nth-child(2) {
    min-width: 120px;
}*/
/* this is the notes column for the admin view but removed for user */
.go2-facility-action-tracker th:nth-child(3),
.go2-facility-action-tracker td:nth-child(3) {
    width: auto;
}
/* changing to 3rd child since notes was removed for users */
.go2-facility-action-tracker th:nth-child(3),
.go2-facility-action-tracker td:nth-child(3) {
    width: 10ch;
}

.go2-facility-action-tracker p.go2-at-table-des {
	font-style: italic;
	font-weight: 600;
	font-size: .7rem;
	line-height: 1em;
	margin-bottom: .3em;
}
/* >>> END FROM FACILITY DETAIL VIEW <<< */

/* >>> ADMIN VIEWS <<< */
.go2-admin-table td, .go2-admin-table td p {
	font-size: .8rem;
	line-height: 1.4em;
}

th[style*="--v-responsive-table-label:\"FID\""],
td[style*="--v-responsive-table-label:\"FID\""] {
    width: 60px;
}

#main-content .go2-datatables-wrapper .dtsb-searchBuilder *, #main-content .go2-datatables-wrapper .dt-layout-cell * {
	font-size: .8rem;
}

#main-content .go2-datatables-wrapper .dtsb-searchBuilder button.dtsb-button {
	padding: .2em .4em;
}

.go2-datatables-wrapper .dt-buttons>.dt-button {
    padding: .2em .4em;
    font-size: .8rem;
    line-height: 1.4em;
}

/* .go2-datatables-wrapper .dtsb-searchBuilder>.dtsb-group {
	padding: 10px;
	border: 1px solid #808080;
} */

#main-content .go2-datatables-wrapper .dtsb-searchBuilder .dtsb-title {
	font-weight: 600;
	font-size: .9rem;
}

.go2-facility-action-tracker th:nth-child(1),
.go2-facility-action-tracker td:nth-child(1) {
    min-width: 150px;
	width: 250px;
}
.go2-facility-action-tracker.go2-facility-action-tracker-admin th:nth-child(2),
.go2-facility-action-tracker.go2-facility-action-tracker-admin td:nth-child(2) {
    min-width: 120px;
	width: 160px;
}
/* notes column in admin view */
.go2-facility-action-tracker.go2-facility-action-tracker-admin th:nth-child(3),
.go2-facility-action-tracker.go2-facility-action-tracker-admin td:nth-child(3) {
    width: auto;
}
/* date in 4th column for this admin table */
.go2-facility-action-tracker.go2-facility-action-tracker-admin th:nth-child(4),
.go2-facility-action-tracker.go2-facility-action-tracker-admin td:nth-child(4) {
    width: 10ch;
}

/* edit and view buttons */
.go2-facility-action-tracker.go2-facility-action-tracker-admin th:nth-child(5),
.go2-facility-action-tracker.go2-facility-action-tracker-admin td:nth-child(5) {
    width: 10ch;
}

.go2-edit-view-group {
	display: flex; 
	gap: 0 5px; 
	justify-content: flex-end; 
	padding-right: 5px;
}

/* Custom column widths for main action tracker table */
.go2-admin-action-tracker-table th:nth-child(1),
.go2-admin-action-tracker-table td:nth-child(1) {
    min-width: 40px;
	width: 40px;
}

.go2-admin-action-tracker-table th:nth-child(2),
.go2-admin-action-tracker-table td:nth-child(2) {
    min-width: 30px;
	width: 30px;
	text-align: right;
}

.go2-admin-action-tracker-table th:nth-child(3),
.go2-admin-action-tracker-table td:nth-child(3) {
    min-width: 150px;
	width: 200px;
}

.go2-admin-action-tracker-table th:nth-child(4),
.go2-admin-action-tracker-table td:nth-child(4) {
    min-width: 150px;
	width: 200px;
}

.go2-admin-action-tracker-table th:nth-child(5),
.go2-admin-action-tracker-table td:nth-child(5) {
	width: 150px;
}

.go2-admin-action-tracker-table th:nth-child(6),
.go2-admin-action-tracker-table td:nth-child(6) {
    min-width: 150px;
	width: auto;
}

.go2-admin-action-tracker-table th:nth-child(7),
.go2-admin-action-tracker-table td:nth-child(7) {
    min-width: 100px;
	width: 100px;
}

.go2-admin-action-tracker-table th:nth-child(8),
.go2-admin-action-tracker-table td:nth-child(8) {
    min-width: 100px;
	width: 100px;
}

.go2-external-link-icon {
	width: 16px;
	fill: var(--go2-brand-blue);
}

/* >>> END ADMIN VIEWS <<< */


/* remove border on add facility form */
.frm_style_formidable-style-3.with_frm_style .frm-show-form .frm_section_heading h3[class*="frm_pos_"] {
	border-top: none;
}

.page-id-7365 .frm_forms {
	box-shadow: none;
	padding: 0;
}

.go2-submit-button .frm_primary_label {
	display: none;
}

/* >>>>>>>  COE MEMBER PORTAL  <<<<<<<<< */
/* Facilities view start */
.go2-facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.go2-facility-card {
  background: var(--go2-flat-card-background-shade);
  box-shadow: inset 0 0 0 1px var(--go2-flat-card-background-shade);
  padding: 15px;
  height: 100%;
  font-size: 1rem;
  line-height: 1.3em;
  text-align: left;
  transition: background var(--go2-animation-faster-duration) ease-in-out, 
              box-shadow var(--go2-animation-faster-duration) ease-in-out, 
              outline var(--go2-animation-faster-duration) ease-in-out;
  display: flex;
  flex-direction: column;
  outline: solid 1px transparent;
}

.go2-facility-card:hover {
  background: #fff;
  outline: solid 1px var(--go2-secondary-green);
}

.go2-facility-card .go2-facility-image {
  transition: filter var(--go2-animation-faster-duration) ease-in-out; 
}

.go2-facility-card:hover .go2-facility-image {
	filter: contrast(120%);
}

.go2-facility-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: -15px;
  margin-bottom: 10px;
}

.go2-facility-image-fallback {
  background-color: var(--go2-secondary-gray);
  display: flex;
  justify-content: center;
  align-items: center;
}

.go2-facility-image-fallback svg {
  font-size: 48px;
  color: #fff;
}

.go2-facility-name {
  line-height: 1.4em;
  font-weight: 500;
  margin: 0.5em 0 0 0;
  letter-spacing: -0.06em;
  font-size: 1.1em;
}

.go2-facility-info p {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-size: .8rem;
  padding-bottom: 0;
}

.go2-facility-info svg {
  color: var(--go2-secondary-green);
  width: 20px;
  margin-right: 10px;
  text-align: center;
}

.go2-facility-actions {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  padding-top: 1em;
}

.go2-member-view .go2-btn-sm {
  line-height: normal !important;
  font-weight: 500;
  font-size: .8rem;
}

.go2-button {
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.go2-manage-button {
  background-color: var(--go2-secondary-green);
  color: white;
}

.go2-apply-button {
  background-color: var(--go2-brand-blue);
  color: white;
}

.go2-button:hover {
  opacity: 0.9;
}

.go2-facility-setting,
.go2-facility-service-location {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.go2-facility-setting h2,
.go2-facility-service-location h2 {
  margin-top: 0;
  color: var(--go2-brand-blue);
}
/* Facilities view end */
