#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
    background-color: #000000;
    
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);background-color: #000000;
}
#menu__toggle:checked + .menu__btn > span::after {
    background-color: #000000;
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  left: 0 !important;
}
.basetoggle {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 45px;
  height: 40px;
background-color: #000000;
    
}
.menu__btn {
  position: fixed;
  top: 20px;
  left: 10px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1;
    
}
.menu__btn > span,
.menu__btn > span::before,

.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition-duration: .25s;
}
.menu__btn > span::before {
    
  content: '';
  top: -8px;background-color:#ffffff;
}
.menu__btn > span::after {
  content: '';  
  top: 8px;
    background-color: #ffffff;
}
.menu__box {
  display: block;
  position: fixed;
  top: 0;
  left: -500px;
  width: 400px;
  height: 100%;
  margin: 0;
  padding: 80px 0;
  list-style: none;
  background-color: #ffffff;
  transition-duration: .25s;
}
.menu__item {
  display: block;
    background: #ffffff;
  padding: 10px 30px;
  color: #000;
  font-family: 'montserratregular';
  font-size: 14px;
  text-decoration: none;

 
}
.menu__item:hover {
  background-color: #eeeeee;
}

