@charset 'utf-8';


.header {
  width: 1570px;
  max-width: 95%;
  margin: 20px auto 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 9999;
}
.menu {
  display: flex;
  align-items: center;
  padding: 0 0 0 25px;
  background-color: white;
  box-shadow: 0px 1px 5px #a3a3a3;
}
.menu .logo img {
  width: 230px;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.menu .links {
  display: flex;
  flex-grow: 1;
  justify-content: space-evenly;
  margin: 0 10px;
  font-size: clamp(14px, 1vw, 18px);
}
.menu .links a {
  text-decoration: none;
  white-space: nowrap;
  padding: 17px 5px 0 5px;
  margin-bottom: 15px;
}
.menu .links a:hover {
  color: #00b1ef;
}
.menu .buttons {
  display: flex;
}
.menu .buttons .button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: white;
  white-space: nowrap;
  height: 60px;
  font-size: clamp(14px, 1vw, 18px);
}
.store-info {
  background-color: #121b3a;
  width: 120px;
}
.mobile-order {
  background-color: #f62a00;
  width: 130px;
}
.menu .buttons .button img {
  height: 20px;
  margin-right: 5px;
}

.fa-file {
  padding: 0 5px 0 0;
}
.fa-phone {
  padding: 0 5px 0 0;
}
.fa-envelope {
  padding: 3px 5px 0 0;
}


.sp-h-logo {
  position: fixed;
  width: 190px;
  top: 15px;
  z-index: 99;
  padding: 0 0 0 5px;
}

@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}

#overlay-button {
  position: fixed;
  right: 10px;
  top: 10px;
  padding: 26px 11px;
  z-index: 999;
  cursor: pointer;
  user-select: none;
  background: #121b3a;
}
#overlay-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: white;
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: white;
  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: #fff;
}

input[type=checkbox] {
  display: none; 
  
}

input[type=checkbox]:checked ~ #overlay {
  visibility: visible; 
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
  
  
}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);

}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);


}

#overlay {
  height: 100vh;
  width: 100vw;
  background: #121b3a;
  z-index: 888;
  visibility: hidden;
  position: fixed;
  top: 0;
}
#overlay.active {

}
#overlay ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  height: 100vh;
  padding-left: 0;
  list-style-type: none;
}
#overlay ul li {
  border-bottom: 1px solid #fff;
  width: 80%;
  margin: 0 auto;
}
#overlay ul li a {
  display: inline-block;
  color: #fff;
  width: 100%;
  padding: 1em 0 1em .5em;
  font-size: 16px;
}
#overlay ul li a:hover {
  color: #000!important;
}

.sp-menu {
    z-index: 9999;
}