:root{
  --custom-header-height: 119.5px;
}

header{
  position: fixed;
  background: #F6F6F6;
}

.custom-header__button{
  width: fit-content;
  min-width: var(--button-min-width);
  font-family: 'MOBO-Bold';
  font-weight: 400;
  font-size: var(--button-font-size);
  letter-spacing: 0.05em;
  line-height: 1;
  color: #ffffff;
  background-color: #008CFF;
  border-radius: var(--button-border-radius);
  padding: var(--button-padding);
  position: relative;
  border: none;
}

.navicon {
  /* background: #3F3F3F; */
  display: block;
  height: 8px;
  width: 54px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  border-radius: 5px;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  /* background: #3F3F3F; */
  border-radius: 5px;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.menu-btn:checked ~ .menu-icon .navicon:before {
  background: #ffffff;
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  background: #ffffff;
}

@media screen and (max-width: 767px) {
  .custom-header__button{
    font-size: 12px
  }

  .header__button-area{
    align-items: center;
    justify-content: center;
    display: flex;
    gap: 0px !important;
  }

  .custom-header__button {
    padding: 0.9em 1.25em 1em 1.25em;
    min-width: unset;
}

}