::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar-button {
  display: none;
}

body {
  -ms-overflow-style: none;
}

#viewer3d {
  width: 100%;
  display: none;
}

#viewer3d canvas {
  margin: -8px 0 0 -8px;
}

.menu {
  background-color: rgb(126, 127, 126, 1);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.brand {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 70px !important;
  height: fit-content !important;
  object-fit: contain;
}

.button {
  width: 50px;
  height: 50px;
  background-color: #17181a;
  border: none;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #4caf50;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 2px 3px rgba(255, 255, 255, 1);
  position: relative;
  overflow: hidden;
}
.button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), transparent);
}
.button:hover {
  background-color: #b0b0b0;
}
.button:active {
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}

.pressed {
  transform: translateY(2px);
}

.empty {
  visibility: hidden;
}
.light {
  font-size: 18px;
}
.row {
  display: flex;
  justify-content: center;
  gap: 15px;
  grid-column: span 3;
}

.menu {
  display: flex;
  flex-flow: column;
  justify-items: center;
  padding: 20px;
  border-radius: 18px;
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 99;
}

.menu img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.remote1 {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.remote2 {
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
