.ui-buttons-game-container {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  max-height: 810px;
  margin: auto;
  pointer-events: none;
  transform: translateX(-50%);
}

.ui-buttons {
  position: absolute;
  top: 27px;
  left: 27px;
  display: flex;
}

.ui-button {
  display: none;
  align-items: center;
  height: 18px;
  padding: 0;
  margin-right: 32px;
  font-size: 10px;
  font-weight: 500;
  color: white;
  pointer-events: all;
  cursor: pointer;
  background: none;
  border: none;
}

.ui-button--show {
  display: flex;
}

.ui-button img {
  width: 18px;
  height: 18px;
  margin-right: 12px;
}
    
@media screen and (min-width: 927px) {
  .ui-buttons {
    top: 70px;
    left: 60px;
  }

  .ui-button {
    height: 24px;
    margin-right: 48px;
    font-size: 16px;
  }

  .ui-button img {
    width: 24px;
    height: 24px;
    margin-right: 16px;
  }
}

@media screen and (max-width: 425px) {
  .ui-button {
    margin-right: 0;
  }

  .ui-button-sound-on,
  .ui-button-sound-off {
    margin-left: calc(100vw - 170px);
  }
}