.one-day-menu,
.one-day-menu *{
  box-sizing:border-box;
}

.one-day-menu{
  position:sticky;
  top:0;
  z-index:999;
  width:100%;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(8,22,42,.10);
  backdrop-filter:blur(14px);
}

.one-day-menu__inner{
  width:min(1180px,calc(100% - 44px));
  height:68px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  flex-wrap:nowrap;
}

.one-day-menu__brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  flex:0 0 245px;
  width:245px;
  max-width:245px;
  height:68px;
  overflow:visible;
  text-decoration:none;
  background:transparent!important;
}

.one-day-menu__brand picture{
  display:flex;
  align-items:center;
  width:245px;
  height:68px;
  background:transparent!important;
}

.one-day-menu__brand img{
  display:block;
  width:245px;
  height:auto;
  max-width:245px;
  object-fit:contain;
  object-position:left center;
  background:transparent!important;
}

.one-day-menu__links{
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:26px;
  white-space:nowrap;
  font-family:Calibri,"Segoe UI",Arial,sans-serif;
  font-size:16px;
  font-weight:800;
}

.one-day-menu__links a{
  color:#263a53;
  text-decoration:none;
}

.one-day-menu__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 23px;
  border-radius:999px;
  background:linear-gradient(135deg,#1769ff,#64a2ff);
  color:#fff!important;
  font-weight:900;
  box-shadow:0 14px 30px rgba(23,105,255,.22);
}

@media(max-width:720px){
  .one-day-menu__inner{
    width:min(100% - 24px,1180px);
    min-height:62px;
    height:auto;
    padding:8px 0;
    gap:12px;
  }

  .one-day-menu__brand,
  .one-day-menu__brand picture{
    width:200px;
    max-width:200px;
    flex:0 0 200px;
    height:auto;
  }

  .one-day-menu__brand img{
    width:200px;
    max-width:200px;
    height:auto;
  }

  .one-day-menu__links{
    gap:12px;
    font-size:14px;
  }

  .one-day-menu__links a:not(.one-day-menu__cta):not([href="login.html"]){
    display:none;
  }

  .one-day-menu__cta{
    padding:10px 16px;
    font-size:14px;
  }
}
