.menu--right {
  position: fixed;
  top: 180px;
  right: 10px;
}

.menu--right__button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.1s;
}

.menu--right__button.hide {
  display: none !important;
}
.menu--right__button__icon {
  font-size: 35px;
  font-weight: bold;
  color: #2e2d2dd3;
}
.menu--right__button__text {
  font-size: 15px;
  font-weight: bold;
  color: #fff;
}
.menu--right .main-menu {
  position: fixed;
  top: 30%;
  right: 1%;
  transform: translateX(200%);

  width: 50px;
  height: 320px;
  padding: 20px 0;
  border-radius: 10px;

  background-color: #2e2d2da6;
  z-index: 1;
  transition: all 0.3s;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
.menu--right .main-menu.active {
  transform: translateX(0);
}
.menu--right .main-menu__btn {
  position: absolute;
  top: 20;
  right: 80%;

  border-radius: 5px;
  padding: 5px;

  transform: rotate(-90deg);

  font-size: 12px;
  color: #fff;
  background-color: #2e2d2d69;
}
.menu--right .sound img {
  width: 27px;
  height: 28px;
  object-fit: contain;
}

/* .menu--right .info img {
  width: 27px;
  height: 23x;
  object-fit: contain;
} */
/* .menu--right .fullscreen img {
  width: 25px;
  height: 22px;
  object-fit: contain;
} */
/* .menu--right .facebook img {
  width: 36px;
  height: 35px;
  object-fit: contain;
} */
/* .menu--right .website img {
  width: 34px;
  height: 33px;
  object-fit: contain;
} */
.menu--right .main-menu__item img {
  transition: all 0.3s ease-in-out;
}
.menu--right .main-menu__item {
  position: relative;
}
.menu--right .main-menu__item .desc {
  position: absolute;
  top: 0;
  right: 150%;

  border: 1px solid #e0e0e0a6;
  border-radius: 8px;

  width: fit-content;
  height: fit-content;

  white-space: nowrap;
  padding: 10px;
  background-color: #2e2d2da6;

  font-size: 10px;
  color: #fff;

  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}
.menu--right .main-menu__item:hover .desc {
  opacity: 1;
  pointer-events: all;
}

.menu--right .main-menu__item:hover img {
  transform: scale(1.2);
}

.menu--right__button:hover {
  transform: translateY(5px);
}

.volumeOff {
  display: none;
}

.volumeOn, volumeOff {
  font-size: 20px;
  color: #fff
}
.vr-mode {
    display: none;
}

@media screen and (max-width: 1023.98px) {
    .facebook {
        display: none;
    }
    .vr-mode{
        display: block;
    }
}


/* Heart */

.heart {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  color: #fff;
}

.heart-increment {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  color: #fff;
  opacity: 0;
  /* animation-play-state: paused; */
}

.heart-icon {
  color: #fff;
  font-size: 27px; /* Chỉnh size */
  transition: scale 0.2s ease-in-out;
  animation: heartBeat 0.8s infinite;
}

.heart-icon:hover {
  font-size: 29px;
}

.heart-icon.active {
  animation: heartActive 0.5s forwards;
  animation-play-state: paused;
}

.heart-icon.active ~ .heart-increment {
  animation: heart-increment 0.5s linear alternate;
}

@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes heartActive {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0.6);
  }
  40% {
    transform: scale(0.2);
  }
  50% {
    transform: scale(0);
  }
  70% {
    transform: scale(0.8);
    color: #ff0000;
  }
  100% {
    transform: scale(1.3);
    color: #ff0000;
  }
}

@keyframes heart-increment {
  0% {
    top: 0;
    opacity: 0;
  }
  50% {
    top: -10%;
    opacity: 0.5;
  }
  100% {
    top: -25%;
    opacity: 1;
  }
}