.gaming-mode {
  position: absolute;
  top: 20px;
  right: 0px;
  width: 100px;
}

.gaming-mode p {
  font-size: 8px;
  padding: 0;
  margin: 0;
  opacity: 0.3;
  transition: ease-in-out all 0.5s;
}

.mode-active {
  opacity: 1 !important;
  font-size: 12px !important;
  font-weight: bold;
}

.switch-container {
  height: 40px;
  margin: auto;
  text-align: center;
}

/** Switch
 -------------------------------------*/

.switch input {
  position: absolute;
  opacity: 0;
}

/**
 * 1. Adjust this to size
 */

.switch {
  display: inline-block;
  font-size: 20px; /* 1 */
  height: 1em;
  width: 2em;
  background: #ffa500;
  border-radius: 1em;
  margin-top: 8px;
}

.switch div {
  height: 1em;
  width: 1em;
  border-radius: 1em;
  background: #fff;
  box-shadow: 0 0.1em 0.3em rgba(0, 0, 0, 0.3);
  -webkit-transition: all 300ms;
  -moz-transition: all 300ms;
  transition: all 300ms;
}

.switch input:checked + div {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
