/* =========================
   SMG55 GLOBAL BAR
   Shared / injected version
========================= */

:root{
  --smg55-gb-height: 36px;
  --smg55-gb-inner-height: 32px;
  --smg55-gb-gradient-height: 4px;
}

/* Optional helper for sites that need push-down */
body.has-smg55-globalbar{
  padding-top: var(--smg55-gb-height);
}

@media (max-width: 1328px){
    body.has-smg55-globalbar{
   padding-top: var(--smg55-gb-height);
    }
      .navbar-wrapper.affix {
       padding-top: var(--smg55-gb-height);
}
}

.smg55-global-bar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--smg55-gb-height);
  background: #000;
  z-index: 10001;
  display: flex;
  flex-direction: column;
}

.smg55-global-bar *,
.smg55-global-bar *::before,
.smg55-global-bar *::after{
  box-sizing: border-box;
}

.smg55-global-bar__inner{
  height: var(--smg55-gb-inner-height);
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  overflow: hidden;
}

.smg55-global-bar__links{
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.smg55-global-bar__links a{
  color: #d9d9da !important;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  opacity: .92;
  font-family: Lato;
}

.smg55-global-bar__links a:hover,
.smg55-global-bar__links a:focus-visible{
  opacity: 1;
  text-decoration: underline;
}

.smg55-global-bar__right{
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.smg55-brandbar-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

img.smg55-brandbar{
    display: block;
    width: 90%;
    margin-top: -8px;
}

.smg55-poweredby{
  display: block;
  width: auto;
  height: 12px;
  margin-left: 20px;
  opacity: .95;
}

.smg55-global-bar__center{
  display: none;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.smg55-brandbar-img{
    display: block;
    width: 90%;
    margin-top: -8px;
}

.smg55-global-bar__gradient{
  width: 100%;
  height: var(--smg55-gb-gradient-height);
  background: linear-gradient(270deg, #1268B3 0%, #9FB439 47.57%, #4EB857 100%);
}

@media (max-width: 1024px){
  .smg55-global-bar__links{
    display: none;
  }

  .smg55-global-bar__right{
    display: none;
  }

  .smg55-global-bar__center{
    display: flex;
  }

  .smg55-global-bar__inner{
    justify-content: center;
    padding: 0 12px;
  }
}