.skip-link {
    display: block;
    background-color: var(--abc-grey-light);
    text-align: center;
    padding: 1rem;
    font-weight: 500;
    text-transform: uppercase;
}

.header-wrapper {
    display: grid;
        grid-template-columns: 96px 1fr;
        /*grid-template-rows: 64px;*/
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas: "Logo Main-Menu";
}

.logo-wrapper {
    grid-area: Logo;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo a {
  display: block;
	padding: 10px 0;
}

.logo a svg {
   width: 100%;
    height: auto;
}

.branch-locator-wrapper {
    grid-area: Branch-Locator;
    justify-self: end;
    align-self: start;
}

.menu-wrapper {
    grid-area: Main-Menu;
    align-self: end;
}

search-icon a {
    display: block;
    width: 30px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"%3E%3Cpath d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z" fill="white"%3E%3C/path%3E%3C/svg%3E');
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
    /* Hides text */
}

.search-icon a[data-search='open'] {
    display: block;
    width: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23fff' d='M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z'/%3E%3C/svg%3E");
    background-color: var(--abc-red);
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
    /* Hides text */
}

.search-icon a[data-search='open']:hover {
    background-color: var(--abc-grey-dark);
}
/* Overlay styles */

.search-overlay {
    display: none;
    position: absolute;
    width: 100%;
    height: 96px;
    background-color: #fff;
    border-bottom: 5px solid var(--abc-red);
    z-index: 999;
}

.search-overlay-content {
    padding: 27px 0;
}

.lws-search input {
    font-size: 1.5rem;
    width: 100%;
    height: 100%;
    font-weight: 300;
    border: none;
    background: transparent;
    -webkit-transition: font-size 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    transition: font-size 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

.lws-search .form-control {
    padding: 0.375rem 0.75rem 0.375rem 0;
}

.lws-search .form-control:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0);
}

.lws-search input:focus,
.lws-search button:focus {
    outline: none;
}

.lws-search button {
    font-size: 1rem;
    padding-right: 1rem;
    padding-left: 1rem;
}

/* New Code 3-21-2026 - START */
/* ======================================================
   BASE MENU STYLING (your original, cleaned up)
====================================================== */

/* Reset lists */
.menu-header-top-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Top-level layout */
.menu-header-top-container > ul,
.menu-header-top-container .menu,
.menu-header-top-container #menu_header_top {
  display: flex;
  align-items: stretch;
}

/* Top-level items */
.menu-header-top-container .menu-item {
  position: relative;
}

/* Base link styling */
.menu-header-top-container .menu-item > a {
  display: flex;
  align-items: center;
  padding: 4px 10px 5px 10px;
  font-weight: 300;
  border-left: 1px solid #FFFFFF30;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

/* Icon sizing (if using <i>) */
.menu-header-top-container .menu-item > a i {
  font-size: 0.875em;
}

/* Optional icon spacing */
.menu-header-top-container .menu-item.icon > a {
  gap: 6px;
}

/* Special styling for user item */
.menu-header-top-container .menu-item.user > a {
  background-color: var(--abc-red);
}

/* Hover/focus on top-level items */
.menu-header-top-container .menu-item > a:hover,
.menu-header-top-container .menu-item > a:focus {
  background-color: var(--abc-blue-dark);
}


/* ======================================================
   DROPDOWN CARET (▼)
====================================================== */

.menu-header-top-container .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
}


/* ======================================================
   DROPDOWN FUNCTIONALITY
====================================================== */

/* Hide submenu by default */
.menu-header-top-container .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
   min-width: unset;
  width: max-content; 
  z-index: 99999999;

  background-color: var(--abc-grey-lightest);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
}

/* Show submenu on hover + keyboard focus */
.menu-header-top-container .menu-item-has-children:hover > .sub-menu,
.menu-header-top-container .menu-item-has-children:focus-within > .sub-menu {
  display: block;
}


/* ======================================================
   SUBMENU STYLING
====================================================== */

/* Submenu links */
.menu-header-top-container .sub-menu .menu-item > a {
  display: block;
  width: 100%;
  padding: 8px;
  border-inline-start: 8px solid transparent;
  line-height: 1.1em;
  color: var(--abc-black);
  background-color: var(--abc-grey-lightest);

  border-left: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);

  text-decoration: none;
  white-space: nowrap;
}

/* Remove border from first item */
.menu-header-top-container .sub-menu .menu-item:first-child > a {
  border-top: none;
}


/* ======================================================
   SUBMENU HOVER STATE
====================================================== */

.menu-header-top-container .sub-menu .menu-item > a:hover,
.menu-header-top-container .sub-menu .menu-item > a:focus {
  background-color: var(--abc-grey-lighter);
  color: var(--abc-black);
}


/* ======================================================
   CURRENT MENU ITEM (WordPress classes)
====================================================== */

/* Active submenu item */
.menu-header-top-container .sub-menu .menu-item.current-menu-item > a,
.menu-header-top-container .sub-menu .menu-item.current-menu-ancestor > a {
  background-color: var(--abc-grey-lighter);
  color: var(--abc-black);
}

.menu-header-top-container .sub-menu .menu-item.current > a {
  background-color: var(--abc-blue-dark);
  color: var(--abc-white);
}


/* ======================================================
   OPTIONAL POLISH
====================================================== */

/* Small spacing to avoid visual collision */
.menu-header-top-container .sub-menu {
  margin-top: 0;
}

/* Ensure smooth hover transition area */
.menu-header-top-container .menu-item-has-children > a {
  position: relative;
}

/* New Code 3-21-2026 - END */

@media (min-width: 768px) {
    .search-overlay {
        height: 139px;
    }
    .search-overlay-content {
        padding: 32px 0;
    }
    .lws-search input {
        font-size: 3rem;
    }
    .lws-search button {
        font-size: 1.5rem;
        padding-right: 2rem;
        padding-left: 2rem;
    }
}

@media (min-width: 992px) {
    .header-wrapper {
        grid-template-columns: 136px 1fr;
       /* grid-template-rows: 82px;*/
    }
    .branch-locator-wrapper {
        height: 60px;
    }
    .search-overlay {
        height: 130px;
    }
    .search-overlay-content {
        padding: 27px 0;
    }

}

.fill-c3002f {
    fill: #c3002f;
}

.fill-00518a {
    fill: #00518a;
}

.fill-ffffff {
    fill: #ffffff;
}
