#publicHeader{
  display:block;
}

.public-header{
  background:#050505;
  border-bottom:1px solid rgba(255,255,255,.12);
  color:#fff;
  position:relative;
  z-index:100;
}

.public-topbar{
  border-bottom:1px solid rgba(255,255,255,.10);
  background:#050505;
}

.public-topbar-inner{
  width:94vw;
  max-width:1800px;
  min-height:42px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  font-size:13px;
  font-weight:850;
}

.public-top-left,
.public-top-right{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.public-divider{
  width:1px;
  height:18px;
  background:rgba(255,255,255,.25);
  display:inline-block;
}

#phMessages,
#phNotifications,
.top-text-button{
  color:#fff;
  text-decoration:none;
  white-space:nowrap;
  background:transparent;
  border:0;
  padding:0;
  font:inherit;
  cursor:pointer;
}

#phMessages.has-messages,
#phNotifications.has-notifications{
  color:#ed1c24;
}

.public-select-wrap{
  display:flex;
  align-items:center;
  gap:7px;
  color:#fff;
  font-size:13px;
  font-weight:850;
}

.public-select-wrap span{
  opacity:.9;
}

#phLanguage,
#phCurrency{
  width:auto;
  border:0;
  background:transparent;
  color:#fff;
  font-size:13px;
  font-weight:900;
  outline:none;
  cursor:pointer;
  padding:4px 0;
}

#phLanguage option,
#phCurrency option{
  color:#111;
}

.public-mainbar{
  background:#050505;
}

.public-mainbar-inner{
  width:94vw;
  max-width:1800px;
  margin:0 auto;
  min-height:124px;
  display:grid;
  grid-template-columns:290px 1fr;
  align-items:center;
  gap:42px;
}

.public-logo-link{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  text-decoration:none;
}

.public-logo{
  width:230px;
  max-width:100%;
  height:auto;
  display:block;
}

.public-nav{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:30px;
  white-space:nowrap;
  min-width:0;
}

.public-nav a,
.account-button{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:900;
  line-height:1;
  padding:12px 0;
  border:0;
  border-bottom:3px solid transparent;
  background:transparent;
  cursor:pointer;
  font-family:Arial,Helvetica,sans-serif;
}

.public-nav a:hover,
.account-button:hover{
  color:#ed1c24;
}

.public-nav a.active{
  border-bottom-color:#ed1c24;
}

.public-account{
  position:relative;
  display:inline-flex;
  align-items:center;
  padding-bottom:22px;
  margin-bottom:-22px;
}

.account-button{
  display:inline-flex;
  align-items:center;
  gap:7px;
}

.account-button:before{
  display:none;
}

.account-button:after{
  content:"";
  width:7px;
  height:7px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-2px);
  margin-left:4px;
}

.account-menu{
  display:none;
  position:absolute;
  top:100%;
  right:0;
  width:280px;
  background:#050505;
  border:1px solid rgba(255,255,255,.18);
  border-radius:16px;
  padding:12px;
  box-shadow:0 24px 70px rgba(0,0,0,.82);
  z-index:99999;
}

.public-account.menu-open .account-menu,
.public-account:hover .account-menu,
.public-account:focus-within .account-menu,
.account-menu:hover{
  display:block;
}

.account-menu a{
  display:block;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:900;
  padding:12px 14px;
  border-radius:10px;
  border:0;
  background:#050505;
}

.account-menu a:hover{
  background:#151515;
  color:#ed1c24;
}

.account-menu hr{
  border:0;
  border-top:1px solid rgba(255,255,255,.14);
  margin:8px 4px;
}

.notification-popover{
  display:none;
  position:absolute;
  top:42px;
  right:170px;
  width:280px;
  background:#050505;
  border:1px solid rgba(255,255,255,.18);
  border-radius:16px;
  padding:16px;
  box-shadow:0 24px 70px rgba(0,0,0,.82);
  z-index:99999;
}

.notification-popover.open{
  display:block;
}

.notification-popover strong{
  display:block;
  margin-bottom:8px;
  color:#fff;
}

.notification-popover p{
  margin:0;
  color:#bbb;
  font-size:13px;
}

.mobile-menu-button{
  display:none;
  width:46px;
  height:42px;
  border:0;
  background:transparent;
  padding:0;
  cursor:pointer;
}

.mobile-menu-button span{
  display:block;
  width:28px;
  height:2px;
  margin:6px 0;
  background:#fff;
  border-radius:999px;
}

.mobile-drawer-backdrop{
  display:none;
}

.mobile-drawer{
  display:none;
}

.hidden{
  display:none !important;
}

@media(max-width:1450px){
  .public-mainbar-inner{
    grid-template-columns:250px 1fr;
    gap:30px;
  }

  .public-logo{
    width:210px;
  }

  .public-nav{
    gap:21px;
  }

  .public-nav a,
  .account-button{
    font-size:14px;
  }
}

@media(max-width:1180px){
  .public-topbar-inner{
    width:92vw;
  }

  .public-top-left,
  .public-top-right{
    gap:10px;
  }

  .public-select-wrap span{
    display:none;
  }

  .public-mainbar-inner{
    width:92vw;
    min-height:90px;
    grid-template-columns:auto 1fr;
    gap:16px;
  }

  .mobile-menu-button{
    display:block;
    grid-column:1;
    grid-row:1;
  }

  .public-logo-link{
    grid-column:2;
    justify-content:flex-start;
  }

  .public-logo{
    width:180px;
  }

  .public-nav{
    display:none;
  }

  .mobile-drawer-backdrop{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.62);
    z-index:2000;
  }

  .mobile-drawer{
    display:block;
    position:fixed;
    top:0;
    left:0;
    width:min(86vw,360px);
    height:100vh;
    background:#080808;
    border-right:1px solid rgba(255,255,255,.14);
    transform:translateX(-105%);
    transition:transform .25s ease;
    z-index:2001;
    padding:18px;
    overflow:auto;
    box-shadow:20px 0 60px rgba(0,0,0,.65);
  }

  body.mobile-menu-open .mobile-drawer{
    transform:translateX(0);
  }

  body.mobile-menu-open .mobile-drawer-backdrop{
    display:block;
  }

  .mobile-drawer-head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    padding-bottom:18px;
    border-bottom:1px solid rgba(255,255,255,.12);
  }

  .mobile-drawer-head img{
    width:160px;
    display:block;
  }

  .mobile-drawer-head button{
    border:1px solid rgba(255,255,255,.18);
    background:transparent;
    color:#fff;
    border-radius:999px;
    padding:9px 13px;
    font-weight:900;
    cursor:pointer;
  }

  .mobile-nav,
  .mobile-account{
    display:grid;
    gap:4px;
    padding:18px 0;
  }

  .mobile-nav a,
  .mobile-account a{
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:900;
    padding:13px 10px;
    border-radius:12px;
  }

  .mobile-nav a:hover,
  .mobile-account a:hover{
    background:#1c1c1c;
    color:#ed1c24;
  }

  .mobile-section-title{
    color:#ed1c24;
    font-size:13px;
    font-weight:900;
    letter-spacing:.12em;
    text-transform:uppercase;
    margin:8px 10px;
  }
}

@media(max-width:700px){
  .public-topbar-inner{
    min-height:auto;
    padding:9px 0;
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
  }

  .public-top-left,
  .public-top-right{
    width:100%;
    justify-content:space-between;
  }

  .public-divider{
    display:none;
  }

  #phMessages{
    font-size:0;
  }

  #phMessages:before{
    content:"Messages";
    font-size:13px;
  }

  #phNotifications{
    font-size:0;
  }

  #phNotifications:before{
    content:"Alerts";
    font-size:13px;
  }

  .public-mainbar-inner{
    min-height:86px;
  }

  .public-logo{
    width:155px;
  }
}
.notification-item{
  display:flex;
  gap:10px;
  padding:12px;
  border-radius:12px;
  color:#fff;
  text-decoration:none;
  background:#050505;
}

.notification-item:hover{
  background:#151515;
  color:#ed1c24;
}

.notification-item.unread{
  border-left:3px solid #ed1c24;
}

.notification-icon{
  width:28px;
  flex:0 0 28px;
  font-size:18px;
}

.notification-copy{
  display:grid;
  gap:3px;
}

.notification-copy strong{
  font-size:14px;
  font-weight:900;
}

.notification-copy small{
  color:#bbb;
  font-size:12px;
  line-height:1.35;
}
