.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 40px;
  height: 60px;
  width: 100%;
  text-align: center;
  background: white;
}

.header .logo {
  height: 100%;
  line-height: 40px;
  padding-right: 10px;
}

.header .logo img {
  height: 100%;
  vertical-align: middle;
}

.header .buttons button {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-left: 10px;
}

.header .sidebar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 90px;
  background: white;
  border-right: 1px solid #ccc;
}

.header .sidebar .menuToggle {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: width 0.3s;
  color: black;
}
.header .sidebar .menuToggle span {
  margin: 0;
  padding: 0;
  font-size: 15px;
  display: none;
  user-select: none;
  pointer-events: none;
  width: 100%;
  text-align: left;
}
.header .sidebar.open .menuToggle span {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 5px;
}

.header .sidebar .menuToggle span .icon-hotspot {
  width: 30px;
  height: 30px;
  object-fit: contain;
  animation: float 5s infinite ease-in-out;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.header .sidebar.open .menuToggle {
  width: 300px;
}

.header .sidebar .menuToggle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#sceneList {
  position: absolute;
  top: 60px;
  left: -220px;
  padding-top: 0;
  width: 0;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  margin-left: 0;
  transition: width 0.3s;
  height: calc(100% - 60px);
  background-color: white;
  color: black;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  font-size: 13px;
}
#sceneList .scenes {
  background-color: white;
  color: black;
  font-size: 13px;
}
#sceneList.open {
  width: 250px;
}

#sceneList .scene.current,
.no-touch #sceneList .scene:hover {
    background: #FF4438;
    color: white;
}

.header .buttons {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 90px;
  background: white;
  border-right: 1px solid #ccc;
}
.header .buttons button {
  width: 100%;
  height: 100%;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .buttons button img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

#autorotateToggle{
  display: none ;
}
