body,
html {
  overflow: hidden;
}

.header-fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
}

.no-background-color {
  background: transparent !important;
}

.logo {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.15px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 44px;
  cursor: pointer;
}

.navigation-item {
  color: #fff !important;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0.15px;
  font-style: normal;
  font-weight: 400;
}

.more-options-list {
  background-color: transparent !important;
  border: 1px solid #ffffff81;
  min-width: 160px;
}

.background-music-container {
  position: fixed;
  width: 100%;
  z-index: 1;
  left: 0px;
  bottom: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.15px;
}

.toggle-music {
  background: rgba(255, 255, 255, 0.1);
  padding: 7px 20px;
  line-height: 0px;
  cursor: pointer;
  position: relative;
}

.music-disabled {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.music-disabled::before {
  content: '';
  position: absolute;
  top: 80%;
  left: 32%;
  right: 25%;
  height: 1px;
  background-color: #fff;
  transform: rotate(-45deg);
  transform-origin: left;
}

@media (max-width: 768px) {
}

@media (max-width: 576px) {
  .background-music-container {
    flex-direction: column;
    bottom: 20px;
  }

  .description {
    padding: 0px 20px;
    text-align: center;
  }

  .navigation-list.no-background-color li {
    padding: 12px 24px;
  }

  .more-options.more-options-list li {
    padding: 0px;
  }
}
