#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked + .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked + .menu__btn > span::before {
  top: 0;
  transform: rotate(0deg);
}
#menu__toggle:checked + .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  right: 0 !important;
}
.menu__btn {
  position: fixed;
  top: 23px;
  right: 20px;
  width: 26px;
  height: 26px;
	margin-left:10px;
  cursor: pointer;
  z-index: 9999;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #616161;
  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}
.menu__box {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 60px 0;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.3);
   -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, .4);
  transition-duration: .25s;
  z-index: 9998;
  overflow:auto;
}

.menu__item{
  display: block;
  padding: 5px 24px 5px 0px;
  font-size: 15px;
  text-decoration: none;
  transition-duration: .25s;
	background-color: #fff;
    border-radius: 12px;
    margin: 0px 15px 10px 15px;
}

.menu__item:hover {
    text-decoration: none;
    transition: 0.3s; 
}