#menu__toggle {
  opacity: 0;
  width: 34px;
  height: 35px;
  cursor: pointer;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
  background-color: #000000f0;
}

.menu__btn {
  display: flex;
  /*align-items: center;*/
  position: relative;
  top: -25px;
  /* right: 20px; */
  width: 33px;
  /* height: 35px; */
  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: #e1d5d5;
    transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -10px;
}
.menu__btn > span::after {
  content: '';
  top: 10px;
}

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: -100%;

  width: 300px;
  height: 100%;

  margin: 0;
  padding: 80px 0;

  list-style: none;

  background-color: #ECEFF1;
  box-shadow: 1px 0px 6px rgba(0, 0, 0, .2);

  transition-duration: .25s;
}

.menu__item {
  display: block;
  padding: 12px 24px;

  color: #eae1e1;

  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 600;

  text-decoration: none;

  transition-duration: .25s;
}
.menu__item:hover {
  background-color: #CFD8DC;
}

.fa-tel-burg-menu {
	transform: rotate(90deg);
    margin-right: 6px;
}

@media only screen and (max-width:768px){
	.menu__btn {
    top: -26px;
	}
	.menu__btn > span, .menu__btn > span::before, .menu__btn > span::after {
    height: 1.5px;
	}
	.menu__btn > span::before {
    top: -8px;
	}
	.menu__btn > span::after {
    top: 8px;
	}

}