.header-container{
    width: 100%;
    position: fixed;
    top: var(--wp-admin--admin-bar--height, 0px);
    left: 0;
    padding: 1.25rem 0;
    z-index: 99;
    background: #ffffff;
    border-bottom: #eeeeee solid 1px;
}
.header-container-content-wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header-container-content-left{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}
.header-brand-logo{
    height: 3.75rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.header-brand-logo-img{
    height: 3.75rem;
    object-fit: contain;
}
.header-brand-logo-img:last-of-type{
    display: none;
}
.header-container-content-right{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.header-menu-list{
    padding-right: 9.0625rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.header-menu{
    text-decoration: none;
    color: #000000;
    font-size: 1.125rem;
    padding: 0.625rem 0;
    margin-right: 2.5rem;
    border-bottom: rgba(0,0,0,0) solid 0.25rem;
}
.header-menu:last-of-type{
    margin-right: 0;
}
.header-menu-active, .header-menu:hover{
    border-bottom: #209443 solid 0.25rem;
}
.header-actions{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}
.header-action{
    width: 3.125rem;
    height: 3.125rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.header-action-icon{
    width: 3.125rem;
    height: 3.125rem;
    object-fit: contain;
}

.header-transparent{
    background: transparent;
    border-bottom: rgba(0,0,0,0) solid 1px;
}
.header-transparent .header-menu{
    color: #ffffff;
}
.header-transparent .header-brand-logo-img:last-of-type{
    display: block;
}
.header-transparent .header-brand-logo-img:first-of-type{
    display: none;
}