/* CSS Custom Properties 2.8.0 by Paul Richards. Copyright 2021 Fiserv. All rights reserved.*/
:root {
    --color1: #2e8bc9;
    --color1-rgba: 46,139,201;
    --color2: #666666;
    --color2-rgba: 102,102,102;
    --color3: #ff6600;
    --color3-rgba: 255,102,0;
    --color4: #eeeeee;
    --color4-rgba: 238,238,238;
    --text-color-dark: #000;
    --text-color-light: #FFF;
    --link-color: var(--color1);
    --link-hover-color: var(--color3);
    --logo-size: 3.5;
    --logo-size-mobile: 2;
    --logo-size-mobile-opennav: 2;
    --logo-padding: .35;
    --fixed-element-height: calc((var(--logo-size) *1rem) + .75rem + (var(--logo-padding)*2rem));
    --nav-height: 0rem;
    --page-padding-left: 4vw;
    --page-padding-right: 4vw;
    --page-margin-left: 0;
    --page-margin-right: 0;
    --input-bg: #FFF;
    --input-border: solid .055em rgba(var(--color2-rgba), 0.25);
    --input-text-color: #000;
    --input-icon-color: var(--color1);
    --vertical-spacing: .75em;
    --remix: 0;
    --depth: 0;
    --translucency: 1;
    --radius: calc(var(--remix) * .5em);
    --rotate: calc(var(--remix) * -10deg);
    --login-width: 20em;
}

    :root .logo-vertical {
        --fixed-element-height: 5rem;
        --logo-size-scroll: calc(var(--logo-size) * .75);
    }

    :root .header-full {
        --nav-height: 3.5rem;
    }

    :root .header-topnav {
        --nav-height: 2rem;
    }

@media (min-width:668px) and (max-width:1365px) {
    :root {
        --page-padding-left: 2em;
        --page-padding-right: 2em;
    }
}

@media (min-width:1366px) {
    :root {
        --page-padding-left: 10vw;
        --page-padding-right: 10vw;
    }
}

@media (max-width: 1000px) {
    :root {
        --fixed-element-height: calc((var(--logo-size-mobile) *1rem) + .75rem + (var(--logo-padding)*1rem));
    }
}
/* Expander 5.0.0 by Jesse Fowler & Kristen Rogers, Copyright 2015 Fiserv. All rights reserved. */
[class*="Table-Expandable"] {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
}

    [class*="Table-Expandable"] > caption {
        display: block;
        width: 100%;
        text-align: left;
        position: relative;
        cursor: pointer;
    }

    [class*="Table-Expandable"] > tbody {
        display: flex;
        width: 100%;
        transition: max-height 1.4s linear;
    }

body:not(#tinymce) [class*="Table-Expandable"] > tbody {
    animation: none;
    max-height: 0vh;
}

body:not(#tinymce) [class*="Table-Expandable"].expanded > tbody {
    animation: openExpandable 1s cubic-bezier(0.66, -0.1, 0.35, 1.07) 0s 1 normal forwards;
}

/* body:not(#tinymce) [class*="Table-Expandable"]:target > tbody {
    max-height: 100000vh;
} */

@keyframes openExpandable {
    0% {
        max-height: 0vh;
    }

    99% {
        max-height: 100vh;
    }

    100% {
        max-height: 100000vh;
    }
}

[class*="Table-Expandable"] > tbody > tr {
    display: flex;
    width: 100%;
}

    [class*="Table-Expandable"] > tbody > tr > td {
        display: block;
        width: 100%;
    }

[class*="Table-Expandable"] > caption > * {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    word-break: break-word;
}

    [class*="Table-Expandable"] > caption > *::before {
        content: "";
        display: block;
        order: 2;
        overflow: hidden;
        pointer-events: none;
        transition: color .2s ease-in-out;
        flex-grow: 1;
    }

    [class*="Table-Expandable"] > caption > *::after {
        content: "\f107";
        display: block;
        order: 3;
        min-width: 2rem;
        text-align: center;
        font-family: 'FontAwesome';
        font-size: 1em;
        font-weight: bold;
        overflow: hidden;
        color: rgba(0,0,0,.3);
        pointer-events: none;
        transition: all .2s ease-in-out;
    }

[class*="Table-Expandable"].expanded > caption > *::after {
    color: #008751;
}

[class*="Table-Expandable"].expanded caption > *::after, body#tinymce [class*="Table-Expandable"] caption > *::after {
    transform: rotate(180deg);
}

/* Validate Form 2.0.1 */

.validate-form label,
.validate-form fieldset {
    position: relative;
}

    .validate-form label .error,
    .validate-form fieldset .error {
        display: flex !important;
        content: "Please fill out this field.";
        font-size: 0.75em;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: block;
        z-index: 10;
        background-color: var(--color3);
        padding: 1em;
        box-sizing: border-box;
        color: #fff;
        pointer-events: none;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
        border-radius: var(--radius);
    }

.validate-form :invalid {
    box-shadow: none;
}

.validate-form .invalid {
    box-shadow: inset 0 0 0 2px #666 !important;
    z-index: 100;
    animation-name: slideShake;
    animation-iteration-count: 2;
    animation-duration: 0.0833s;
    animation-timing-function: ease-in-out;
    z-index: 900;
}

    .validate-form .invalid .error {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

.validate-form .validation {
    display: flex !important;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 0.75em;
    padding: 0.25em 0.5em 0.25em 0.25em;
    opacity: 0.5;
    transition: opacity 0.25s ease;
    z-index: 346;
    align-items: center;
    align-content: center;
    margin: 0;
}

    .validate-form .validation:hover {
        opacity: 1;
    }

    .validate-form .validation::before {
        display: block;
        font-family: 'FontAwesome';
        color: var(--color3);
    }

    .validate-form .validation::after {
        display: block;
        max-width: 0;
        overflow: hidden;
        transition: max-width 0.25s ease, margin 0.25s ease;
    }

    .validate-form .validation:hover::after {
        max-width: 5em;
        margin-left: 0.25em;
    }

.validate-form .required .validation::before {
    content: "\f06a";
}

.validate-form .required .validation::after {
    content: "Required";
}

.validate-form .valid .validation::before {
    content: "\f058";
}

.validate-form .valid .validation::after {
    content: "Completed";
}

.validate-form .valid .validation::before {
    color: var(--color1);
}

.validate-form fieldset label .validation,
.validate-form fieldset label .error {
    display: none !important;
}

@keyframes slideShake {
    0% {
        transform: translateX(0em);
    }

    25% {
        transform: translateX(-0.125em);
    }

    75% {
        transform: translateX(0.125em);
    }

    100% {
        transform: translateX(0em);
    }
}
/* Font Source Sans Pro 1.0.0 by Kristen Rogers, Copyright 2022 Fiserv. All rights reserved. */
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    src: local(''), url('/wp-content/themes/bank-theme/fonts/source-sans-pro-v21-latin-regular.woff2') format('woff2'), url('/wp-content/themes/bank-theme/fonts/source-sans-pro-v21-latin-regular.woff') format('woff');
}

/* FDIC Official Sign 1.0.0 by Kristen Rogers and Paul Richards, Copyright 2024 Fiserv. All rights reserved. */
:root {
    --page-padding-left: 4vw;
    --page-padding-right: 4vw;
}

body > .fdic-notice {
    order: 1
}

.fdic-notice {
    display: none;
    flex-direction: row;
    width: 100%;
    margin: 0;
    line-height: 1.25;
    overflow: hidden;
    box-sizing: border-box;
    text-align: left;
    font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
    font-style: italic;
    font-size: 12.8px;
    font-weight: 400;
    color: #000;
}

body.home .fdic-notice {
    display: flex;
}

body:not(.header-topnav) .fdic-notice {
    padding: 1em var(--page-padding-left) 1em var(--page-padding-right);
    align-items: center;
    justify-content: flex-start;
    background-color: #eeeeee;
}

@media (max-width: 1000px) {
    .header-topnav nav.secondary {
        flex-wrap: wrap;
        height: auto !important;
    }

    .fdic-notice {
        justify-content: center;
        padding: .75em 0;
        font-size: .65em;
    }

    body:not(.header-topnav) .fdic-notice {
        font-size: .6em;
        padding: .7em !important;
    }
}

.fdic-notice.fixed {
    position: fixed;
    z-index: 1000;
}

.fdic-notice img {
    width: auto;
    height: 15.74px;
    margin-right: .75em;
    display: block;
}

.header-topnav header nav.secondary {
    justify-content: space-between;
}

header nav.secondary p.fdic-notice + ul {
    width: 100%;
}

