body, section, div {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  background: #000;
}

#play {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
  color: #aaa;
}

#play i {
  font-size: 400%;
}

.step {
  display: inline-block;
  border: 1px solid black;
  border-radius: 8px 8px 8px 8px;
  -webkit-border-radius: 8px 8px 8px 8px;
  -moz-border-radius: 8px 8px 8px 8px;
  width: 100px;
  height: 100px;
  box-shadow: inset 0 1px 0 0 #333,inset 0 -1px 0 0 #999,inset 0 0 0 1px #333,0 2px 4px 0 #111;
  -moz-box-shadow: inset 0 1px 0 0 #333,inset 0 -1px 0 0 #999,inset 0 0 0 1px #333,0 2px 4px 0 #111;
  -webkit-box-shadow: inset 0 1px 0 0 #333,inset 0 -1px 0 0 #999,inset 0 0 0 1px #333,0 2px 4px 0 #111;
  background-image: linear-gradient(to top, #555, #000);
  background-color: #ccc;
  padding: 5px;
  margin: 5px;
}

#sequencer {
  width: 1000px;
  margin: auto;
}

.container {
  margin: 20px auto;
  width: 1010px;
  text-align: center;
}

input[type="text"] {
  width: 50px;
  text-align: center;
}

input[type=range] {
  -webkit-appearance: none;
  margin: 20px 0;
  width: 100%;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #bbb;
  border-radius: 1.8px;
  border: 0.2px solid #010101;
}
input[type=range]::-webkit-slider-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 30px;
  width: 10px;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -12px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #367ebd;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #3071a9;
  border-radius: 1.8px;
  border: 0.2px solid #010101;
}
input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #2a6495;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-fill-upper {
  background: #3071a9;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 8px;
  background: #444;
  cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
  background: #3071a9;
}
input[type=range]:focus::-ms-fill-upper {
  background: #367ebd;
}

.styled-select {
  margin-top: 5px;
  height: 40px;
  overflow: hidden;
  width: 40%;
  border: 1px solid black;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}

.styled-select select {
  background: transparent;
  border: none;
  font-size: 14px;
  height: 29px;
  padding: 5px; /* If you add too much padding here, the options won't show in IE */
  width: 268px;
}

.semi-square {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.blue    { background-color: rgb(144, 144, 144); }
.blue select    { color: #444; }
