#accessWeb {
  position: fixed;
  right: 70px;
  top: 270px;
  z-index: 5;
}
.acc-menu-toggler {
  position: absolute;
  display: block;
  top:0;
  bottom:0;
  right:0;
  left:0;
  margin:auto;
  width:40px;
  height:40px;
  z-index:999;
  opacity:0;
  cursor:pointer;
}
.acc-menu-toggler:hover + label {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.8);
  color: var(--theme-color4);
}
.acc-menu-toggler:checked + label {
  background: #fff;
  color: var(--theme-color4);
  transform: rotate(360deg);
}
.acc-menu-toggler:checked ~ ul .acc-menu-item { 
  opacity: 1;
}
.acc-menu-toggler:checked ~ ul .acc-menu-item:nth-child(1) {
  transform: rotate(-90deg) translateX(-90px);
}
.acc-menu-toggler:checked ~ ul .acc-menu-item:nth-child(2) {
  transform: rotate(-54deg) translateX(-90px);
}
.acc-menu-toggler:checked ~ ul .acc-menu-item:nth-child(3) {
  transform: rotate(-18deg) translateX(-90px);
}
.acc-menu-toggler:checked ~ ul .acc-menu-item:nth-child(4) {
  transform: rotate(18deg) translateX(-90px);
}
.acc-menu-toggler:checked ~ ul .acc-menu-item:nth-child(5) {
  transform: rotate(54deg) translateX(-90px);
}
.acc-menu-toggler:checked ~ ul .acc-menu-item:nth-child(6) {
  transform: rotate(90deg) translateX(-90px);
}

.acc-menu-toggler:checked ~ ul .acc-menu-item a {
  pointer-events:auto;
}
.acc-menu-toggler + label {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 50%;
  background: var(--theme-color4);
  color: white;
  box-shadow: 0 3px 4px 0 rgba(43, 43, 49, 0.3);
  transition: 0.6s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 26px;
  cursor: pointer;
}
.acc-menu-item:nth-child(1) a {
  transform: rotate(90deg);
}
.acc-menu-item:nth-child(2) a {
  transform: rotate(54deg);
}
.acc-menu-item:nth-child(3) a {
  transform: rotate(18deg);
}
.acc-menu-item:nth-child(4) a {
  transform: rotate(-18deg);
}
.acc-menu-item:nth-child(5) a {
  transform: rotate(-54deg);
}
.acc-menu-item:nth-child(6) a {
  transform: rotate(-90deg);
}
.acc-menu-item {
  position: absolute;
  display: block;
  top: -5px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 45px;
  height: 45px;
  opacity: 0;
  transition: 0.5s;
}
.acc-menu-item a {
  display: block;
  width: inherit;
  height: inherit;
  line-height: 40px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--theme-color4);
  border-radius: 40%;
  text-align: center;
  text-decoration: none;
  font-size: 40px;
  pointer-events: none;
  transition: 0.6s;
  box-shadow: 0 3px 4px 0 rgba(43, 43, 49, 0.3);
}
.acc-menu-item a:hover, .acc-menu-item a.active {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
  color: white;
  background: rgba(255, 255, 255, 0.8);
  font-size: 44.44px
}
.acc-menu-item a img {
  display: inline-block;
  height: 30px;
  vertical-align: middle;
}
#accessWeb {
  display: none;
}

@media screen and (min-width: 768px) {
  #accessWeb {
    display: block;
  }
}