/* FDIC Header */

/*.header .main-nav li {
    height: 90px;
}

.header .logo img {
    margin-top: 50px;
}*/

.top-header {
    display: flex !important;
    justify-content: space-between !important;

    .fdic-area {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-left: clamp(7.5px, 2.5vw, 15px);
        
        .fdic-container {
            max-height:20px;
            display:flex;
            gap: 1rem;
        
            svg {
                height: 16px;
                position: relative;
                top: 1.5px;
            }

            p.fdic-header-text {
                color: #545253;
                font-style: italic;
                font-size: 14px;
            }
        }
    
    }
}

.fdic-mobile {

    @media screen and (min-width: 950px) {
        display: none;
    }

    @media screen and (max-width: 950px) {
        display: block;
    }


    .fdic-container {
        display: flex;
        gap: 1rem;
        justify-content: flex-start;
        align-items: center;
        margin: 1rem;

        svg {
            max-height: 17px;
            min-height: 14px;
        }

        p.fdic-header-text {
            color: #545253;
            font-style: italic;
            font-size: clamp(0.7rem, 14px, 1.4rem);
            margin: 0;
        }
    }
}

.fdic-login {
    .fdic-container {
        display: flex;
        gap: 1rem;
        justify-content: flex-start;
        align-items: center;
        margin: 2rem 0;

        svg {
            max-height: 17px;
            min-height: 17px;
        }

        p.fdic-header-text {
            color: #545253;
            font-style: italic;
            font-size: clamp(0.7rem, 14px, 1.4rem);
            margin: 0;
        }
    }
}


/* .fdic-area {
       position: absolute;
        top: 5px;
        left: 0;
        z-index: 1000;
    }
    
    .fdic-container {
        display: grid;
        justify-content: center;
    }
    
    .fdic-banner {
        background: transparent;
        margin: 0;
        padding-top: 0;
        max-width: 960px;
        color: #1b1b1b;
        line-height: 1.5;
        font-family: "Source Sans Pro Web", "Source Sans 3", sans-serif;
        font-size: 14px;
        font-weight: 400;
        pointer-events: none;
    }
    
    .fdic-icon {
        width: clamp(35px, 4vw, 62px);
        margin-right: 0.5rem;
        padding-top: 0;
        float: left;
        border-style: none;
        box-sizing: inherit;
    }
    
    .fdic-headliner {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        max-width: 960px;
        margin-right: auto;
        padding: 4px;
        cursor: pointer;
        position: relative;
    }
    
    .fit-auto {
        display: block;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
        position: relative;
        box-sizing: border-box;
        margin-right: 0.3rem;
    }
    
    .fdic-header-text {
        text-align: left;
        display: block;
        font-family: "Source Sans Pro Web", "Source Sans 3", sans-serif;
        font-style: italic;
        margin-left: 0.2em;
        margin-top: 1em;
        font-size: 1rem;
        line-height: 1.1;
    }
    
    .fdic-area svg {
        max-height: 20px;
        width: clamp(35px, 4vw, 62px);
        margin: 0.25em 0.5em 0 clamp(5px,1vw,20px);
    }
    
    .blue svg {
        fill: #003256;
    }
    
    @media screen and (max-width: 979px){
        .mobile-header .my-branch-mobile {
            margin-bottom: 40px;
        }
    
            .fdic-area {
                top: 30px;
                width: 100%;
            }
    
                .fdic-area svg {
                    flex-basis: 60px;
                }
    
            .fdic-headliner {
                justify-content: center;
            }
        } 
        
*/