#topbar-placeholder{
  display:block;
  min-height:0;
}

.top-bar{
  position:fixed;
  inset:0 0 auto 0;
  z-index:1400;
  height:36px;
  max-height:36px;
  overflow:hidden;
  background:#00162c;
  color:#f7f2e3;
  border:0;
  box-shadow:none;
  opacity:1;
  transform:translateY(0);
  transition:transform .35s ease, opacity .25s ease;
}

.top-bar .top-bar-grid{
  min-height:36px;
  width:100%;
  max-width:none;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:10px;
  padding:4px 40px 4px 12px;
}

/* Prevent broad static-page .container rules from shrinking topbar content width. */
.top-bar .container{
  width:100%;
  max-width:none;
  margin:0;
  padding:0;
}

.top-bar-slider{
  position:relative;
  flex:1 1 auto;
  min-width:0;
  height:24px;
  overflow:hidden;
  display:block;
  pointer-events:none;
}

.top-bar-slide{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0;
  padding:0 8px;
  text-align:center;
  font-family:'Josefin Sans', var(--site-font-fallback);
  font-size:20px;
  font-weight:600;
  line-height:1.25;
  letter-spacing:.015em;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  color:#ffffff;
  text-decoration:none;
  opacity:0;
  transform:translateX(115%);
  transition:opacity .42s ease, transform .42s cubic-bezier(.22,.61,.36,1), color .2s ease;
  pointer-events:none;
}

.top-bar-slider{
  transform:translateY(2px);
}

.top-bar-slide.is-active{
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}

.top-bar-slide.is-exit{
  opacity:0;
  transform:translateX(-115%);
  pointer-events:none;
}

.top-bar-link{
  color:#ffffff;
  pointer-events:auto;
  text-decoration:none;
  font-weight:600;
}

.top-bar-link:hover,
.top-bar-link:focus-visible{
  color:#ffffff;
  text-decoration:underline;
}

.top-bar-close{
  width:auto;
  height:auto;
  border:0;
  background:transparent;
  color:#ffffff;
  font-size:28px;
  font-weight:400;
  font-family:Arial, var(--site-font-fallback);
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:color .2s ease, opacity .2s ease;
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
}

.top-bar-close:hover,
.top-bar-close:focus-visible{
  color:#ffffff;
  opacity:.82;
}

.top-bar.hidden{
  transform:translateY(-100%);
  opacity:0;
  pointer-events:none;
}

.top-bar.top-bar-initial-hidden{
  transform:translateY(-100%);
  opacity:0;
  pointer-events:none;
}

body.ui-preinit .top-bar{
  transition:none !important;
}

@media (max-width:991px){
  .top-bar{
    height:38px;
    max-height:38px;
  }

  .top-bar .top-bar-grid{
    min-height:38px;
    padding:6px 34px 6px 8px;
    gap:6px;
  }

  .top-bar-slider{
    height:26px;
  }

  .top-bar-slide{
    font-size:15px;
    line-height:1.2;
    padding:0 4px;
  }

  .top-bar-close{
    width:auto;
    height:auto;
    font-size:22px;
    right:8px;
  }
}
