button.burger-button {
  background-color: rgba(255, 255, 255, 0)!important;
  border: none;
  appearance:none;
}

.mobile-nav {
 padding-right:18px;
}
button.burger-button:focus{
   outline:rgba(0,0,0,0)!important;
 }

button.burger-button rect{
   fill:var(--brand);
 }

button.burger-button:focus svg rect{
   fill:var(--pristine);
 }


.landscape-nav {
  /* min-height: 70px; */
  display: none;
  padding:0 var(--spacingX);
  background-color: var(--pristine, #fff);
}



@media (orientation: landscape) {
  .landscape-nav {
    /* min-height:120px; */
    display: block;
  }
  .mobile-nav {
    display: none;
  }
}

svg.nav-logo {
  transform: scale(0.5);
  transform-origin: center center;
}
svg.nav-logo-aside {
  transform: scale(0.6);
  transform-origin: left center;
}
.landscape-nav nav > *:not(:last-child),
.landscape-nav ul:not(.social-links) > *:not(:last-child) {
  margin-right: 20px;
}

.pushbar-close {
  font-size:4.6rem;
}
a.nav-link {
  color: var(--brand, #002bff) !important;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  padding: 8px;
  border: 4px solid transparent;

  font-weight: var(--type-weight-bold);

  position: relative;
  transition: color 0.25s;

      white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
    min-width: 0;
    max-width: 150px;
}

a.nav-link:not(.active):before,
a.nav-link:not(.active):after {
  border: 4px solid transparent;
  width: 0;
  height: 0;
  content: "";
  position: absolute;
  border-radius: 2px;
}

a.nav-link:not(.active):before {
  top: 0;
  left: 0;
}

a.nav-link:not(.active):after {
  bottom: 0;
  right: 0;
}

a.nav-link:hover {
  color: inherit;
  text-decoration: none;
}
a.nav-link:not(.active):hover:before,
a.nav-link:not(.active):hover:after {
  width: 100%;
  height: 100%;
}
a.nav-link:not(.active):hover:before {
  border-top-color: var(--brand, #002bff);
  border-right-color: var(--brand, #002bff);
  transition: width 0.15s ease-out, height 0.15s ease-out 0.15s;
}
a.nav-link:not(.active):hover:after {
  border-bottom-color: var(--brand, #002bff);
  border-left-color: var(--brand, #002bff);
  transition: border-color 0s ease-out 0.3s, width 0.15s ease-out 0.3s,
    height 0.15s ease-out 0.5s;
}

.landscape-nav a.active {
  border: 4px solid var(--brand);
  padding: 4px !important;
}

@media screen and (max-width: 950px) {
  .landscape-nav .social-links {
    display: none;
  }
}

html.pushbar_locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.pushbar_locked .pushbar_main_content.pushbar_blur {
  filter: blur(1px);
}

.pushbar_overlay {
  z-index: -999;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  will-change: opacity;
  transition: opacity 0.5s ease;
  opacity: 0;
  background: rgba(0, 0, 0, 0);
}

html.pushbar_locked .pushbar_overlay {
  opacity: 0.8;
  z-index: 999;
}

[data-pushbar-id] {
  background-color: var(--brand);
  width: 100%!important;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  will-change: transform;
  transition: transform 0.5s ease;
}

[data-pushbar-id="left"] p {
  text-align: right;
  margin-bottom: 12px;
}

[data-pushbar-direction="left"][data-pushbar-id],
[data-pushbar-direction="right"][data-pushbar-id] {
  top: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

[data-pushbar-direction="left"][data-pushbar-id] {
  left: 0;
  transform: translateZ(0) translateX(-100%);
}

[data-pushbar-id].opened {
  display: block;
  transform: translateX(0px) translateY(0px);
}

[data-pushbar-id] a,
[data-pushbar-id] a:hover,
[data-pushbar-id] a:visited,
[data-pushbar-id] a:focus {
  color: var(--pristine, #fff);
  text-decoration: none;
  text-transform: uppercase;
  opacity: 1;
  display: block;
  margin-bottom: 12px;
  font-size:1.5rem;
}
[data-pushbar-id] img {
  max-width: 100px;
}
[data-pushbar-id] a.active {
  font-weight: bolder;
}