
/* Help menu */
.help-menu {
  position: fixed;
  right: 2vw;
  bottom: 2vw;
}

@media(min-width: 2000px) {
  .help-menu {
    right: 80px;
    bottom: 80px;
  }
}

.help-menu .icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 100%;
  cursor: pointer;
  margin-left: auto;
  transition-duration: 0.1s;
}

.help-menu:hover .icon-wrapper {
  transform: scale(0.9);
}

.help-menu .icon-wrapper img {
  width: 80%;
  width: calc(100% - 20px);
  margin: 10px;
}

.help-menu .menu-content {
  transform: scale(0);
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 8px;
  text-align: right;
  padding: 6px 10px;
  margin-bottom: 10px;
  width: 0;
  height: 0;
  position: relative;
  left: 50%;
  top: 40px;
  transition-duration: 0s;
}

.help-menu:hover .menu-content {
  width: initial;
  height: initial;
  left: 0;
  top: 0;
  transform: scale(1);
  transition-duration: 0.1s;
}

.help-menu .menu-content a {
  display: block;
  text-decoration: none;
  color: #000000;
}

.help-menu .menu-content a:hover {
  color: #67b826;
}
