body {
  background: #f9f8ec;
  font-family: 'Open Sans', sans-serif;
}
.general_section {
  text-align: center;
}
input[type="range"] {
  -webkit-appearance: none !important;
  max-height: 3px;
  position: relative;
  top: -3px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  width: 15px;
  height: 15px;
  position: relative;
  top: -1px;
  background: #222;
}
.beat-range {
  background: #fff;
}
.accent-range {
  background: #5ec2ff;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + label {
  display: inline-block !important;
  height: 15px;
  width: 15px;
  margin: 0px 4px 0px 0px !important;
  padding: 0px;
  position: relative;
  top: 4px;
  background: #fff;
  cursor: pointer;
}
input[type="checkbox"] + label:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 8px;
  background: #f38630;
  opacity: 0;
  position: relative;
  top: -5px;
  right: -1px;
  transform: skewX(0deg);
  transition: all 0.24s;
}
input[type="checkbox"] + label:after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 15px;
  background: #f38630;
  opacity: 0;
  position: relative;
  top: -5px;
  right: -3px;
  transform: skewX(0deg);
  transition: all 0.24s;
}
input[type="checkbox"]:checked + label:before {
  transform: skewX(30deg);
  opacity: 1;
}
input[type="checkbox"]:checked + label:after {
  transform: skewX(-30deg);
  opacity: 1;
}
header {
  background: #3c444a;
  color: antiquewhite;
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  padding: 10px 5px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 5px 5px 0 0;
}
.metronome-container {
  color: antiquewhite;
  width: 100%;
  height: auto;
  position: relative;
  margin: 40px auto;
  text-align: center;
}
.metronome-container .options-btn {
  color: #fff;
  font-size: 22px;
  position: absolute;
  top: 20px;
  right: 15px;
  transform: rotateZ(0deg);
  cursor: pointer;
  transition: transform 0.3s;
}
.metronome-container .options-btn:hover {
  transform: rotateZ(60deg);
}
.metronome-container .options-active {
  max-height: 1000px !important;
  padding: 15px;
  overflow: visible !important;
}
/* .metronome-container .options {
  max-height: 0px;
  background: #fff;
  color: #333;
  overflow: hidden;
  transition: all 0.25s;
  position: absolute;
  top: 50px;
  right: 15px;
} */
.metronome-container .options .up {
  color: #fff;
  font-size: 22px;
  position: absolute;
  top: -14px;
  right: 3px;
  z-index: 500;
  transform: rotateZ(180deg);
}
.metronome-container .options label {
  display: block;
  margin-top: 10px;
}
.metronome-container .counter {
  width: 100%;
  padding-bottom: 10px;
  text-align: center;
}
.metronome-container .counter .dot {
  width: 15px;
  height: 15px;
  display: inline-block;
  margin: 25px 10px 10px 10px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.metronome-container .counter .active {
  background: #5ec2ff;
}
.metronome-container .controls {
  color: #fff;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
.metronome-container .controls label {
  display: block;
  margin-bottom: 18px;
}
.metronome-container .controls label span {
  color: #222;
  padding: 5px;
}
.metronome-container .controls label span i {
  color: #87e0b4;
  cursor: pointer;
  transition: color 0.2s;
  margin: 0 5px;
}
.metronome-container .controls label span i:hover {
  color: #fa6900;
}
.metronome-container .controls input {
  width: 60px;
  border: 0px solid;
  color: #222;
  text-align: center;
  padding: 4px;
  background: #87e0b4;
  margin: 0 5px;
}
.metronome-container .controls select {
  border: 0px;
  color: #222;
}
.play-btn {
  width: fit-content;
  background: #d6e26d;
  border: 0px;
  border-radius: 5px;
  padding: 12px 50px;
  color: #3d430d;
  transition: background 0.3s;
}
.play-btn:hover {
  background: #e8efad;
}
.metronome-container .controls .tap-btn {
  width: 45%;
  background: #888;
  border: 0px;
  border-radius: 5px;
  padding: 12px;
  color: #fbfbfb;
  transition: background 0.3s;
}
.metronome-container .controls .tap-btn:hover {
  background: #959595;
}
.hints {
  width: fit-content;
  height: auto;
  padding: 10px;
  margin: 20px auto;
  text-align: center;
  border-radius: 5px;
  border: 1px dashed;
}