.custom-context-menu {
  display: none;
  position: absolute;
  background: #414242;
  color: #41beb8;
  border-radius: 4px;
  border: 1px solid #272727;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 0;
  min-width: 55%;
  max-width: 85%;
  font-family: Arial, sans-serif;
}
.custom-context-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.custom-context-menu li {
  padding: 8px 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.custom-context-menu li:hover {
  background: #414242;
}

.custom-context-trigger {
  cursor: pointer;
  display: inline-block;
  padding: 2px;
  margin: 0;
  position: absolute;
  top: 5px;
  right: 20px;
  background: #414242;
  color: #41beb8;
  width: 48px;
  height: 45px;
  border: 1px #272727 solid;
  border-radius: 4px;
}

.float-right {
  float: right;
  position: relative;
  right: 0;
  top: 0;
}

.custom-context-menu a {
  text-decoration: none;
  color: #41beb8;
  display: block;
}

.custom-context-menu a:hover {
  color: #41beb8;
}
.custom-context-menu a {
  font-weight: bold;
  font-size: 15px;
}
.custom-context-trigger  .fa-bars:before {
  color: #41beb8;
  font-size: 20px;
}
.custom-context-menu-hide {
  display: none;
}
.custom-context-menu-show {
  top: 50px;
  right: 20px;
  display: block;
}


/* nav-icon-5 */
.context-icon {
  width: 30px;
  height: 26px;
  margin: 6px;
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.context-icon span {
  background-color: #41beb8;
  position: absolute;
  border-radius: 2px;
  transition: .3s cubic-bezier(.8, .5, .2, 1.4);
  width: 100%;
  height: 4px;
  transition-duration: 500ms;
}
.context-icon span:nth-child(1) {
  top: 0px;
  left: 0px;
}
.context-icon span:nth-child(2) {
  top: 11px;
  left: 0px;
  opacity: 1;
}
.context-icon span:nth-child(3) {
  bottom: 0px;
  left: 0px;
}
.context-icon:not(.open):hover span:nth-child(1) {
  transform: rotate(-3deg) scaleY(1.1);
}
.context-icon:not(.open):hover span:nth-child(2) {
  transform: rotate(3deg) scaleY(1.1);
}
.context-icon:not(.open):hover span:nth-child(3) {
  transform: rotate(-4deg) scaleY(1.1);
}
.context-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 13px;
}
.context-icon.open span:nth-child(2) {
  opacity: 0;
}
.context-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 13px;
}


@media screen and (max-width: 415px) {
  .custom-context-menu {
    min-width: 55%;
    max-width: 65%;
  }
  .custom-context-menu a {
    font-size: 17px;
  }
  .custom-context-trigger  .fa-bars:before {
    font-size: 28px;
  }
  .custom-context-menu-show {
    top: 50px;
    right: 20px;
    display: block;
  }
  .custom-context-menu li {
    padding: 10px 15px;
  }
}
