#menu {
  width: 100%;
  height: 100%;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(/assets/custom_apps/nnplay/background-90117cb04a7cdb312ae19ba553196a0e334f85824c304fb929e507536d22f632.jpg);
  background-size: cover;
}

#menu .top-bar {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #030322;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 50px;
  width: 100%;
}

#menu .top-bar .left {
  width: 30px;
  height: 30px;
  padding-left: 15px;
}

#menu .top-bar .left .back-img {
  width: 25px;
  height: 25px;
  fill: white;
  stroke: white;
}

#menu .top-bar .middle {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

#menu .top-bar .right {
  width: 30px;
  height: 30px;
  padding-right: 15px;
}

#menu .top-bar .left,
#menu .top-bar .middle,
#menu .top-bar .right {
  display: flex;
  align-items: center;
  justify-content: center;
}

#menu .menu-items {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-left: 30px;
  padding-right: 30px;
}

#menu .menu-items a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#menu .menu-items a img {
  width: 80px;
  height: 80px;
}

#menu .privacy-policy-link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#menu .privacy-policy-link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #605c5c;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  font-size: 13px;
  padding-left: 27px;
  padding-right: 27px;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  margin-left: 20px;
  margin-right: 20px;
}

#menu .privacy-policy-link a img {
  width: 30px;
  height: 30px;
}

@keyframes fromRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes toRight {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

.animate-from-right {
  animation: fromRight 300ms forwards;
}

.animate-to-right {
  animation: toRight 300ms forwards;
}
