body, html {
    background-color: black; 
    height: 100%;
}

.beats {
    width: 100%;
    height: 175px;
    top: 50%;
    position: absolute;
    -ms-transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    -webkit-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
}

.beat {
    background-color: blue;
    width: 25%;
    height: 100%;
    position: relative;
    float: left;
    opacity: 0;
}

.controller {
    background-color: #000000;
}

.splash {
    display: inline-block;
    padding: 15px 25px;
    width: 50%;
    font-family: Arial;
    font-size: 100px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #000000;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.wrapper {
    text-align: center;
    position: absolute;
    top: 25%;
    left: 50%;
    width: 100%;
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#container {
    top: 50%;
}

#timer {
    width: 100%;
    color: white;
    font-family: "Lucida Console", Monaco, monospace;
    font-size: 250px;
}

#resetButton {
    display: none;
    color: white;
    background-color: #ff0000;
}

#startButton {
    color: black;
    background-color: #00ff00;
}

button:active {
    border: 2px solid #000000;
    box-shadow: none;
}

form, input {
    /* Remove First */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    color: white;
    font-family: Arial;
    font-size: 50px;
}

input[type=password] {
    width: 90%;
    height: 100px;
    color: black;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=password]:focus {
    background-color: #DDDDDD;
}

input[type=submit] {
    width: 90%;
    height: 100px;
    /*background-color: #4CAF50;*/
    background-color: #00ff00;
    color: black;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=number] {
    width: 15%;
    color: black;
    padding: 12px 20px;
    margin: 20px 20px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 51px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .2s;
    transition: .2s;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 39px;
    width: 39px;
    left: 6px;
    bottom: 6px;
    background-color: white;
    -webkit-transition: .2s;
    transition: .2s;
}

input:checked + .slider {
    background-color: blue; /* 2196F3 */
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(39px);
    -ms-transform: translateX(39px);
    transform: translateX(39px);
}

.slidecontainer {
  width: 15%; /* Width of the outside container */
}

/* The slider itself */
input.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  margin-left: 20px;
  background: #ffffff; /* white background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
input.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
input.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: blue; /* blue background */
  cursor: pointer; /* Cursor on hover */
}

input.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: blue; /* blue background */
  cursor: pointer; /* Cursor on hover */
} 


/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* #first {
    background-color: #212227;
}
#second {
    background-color: #b10707;
}
#third {
    background-color: #ff5400;
}
#fourth {
    background-color: #ffd400;
}
#fifth {
    background-color: #ffff67;
} */

.strip {
    background-color: black;
}

/* TODO: divs for animation on phones */
.visualization {
    width: 100%;
    height: 100%;
}

.visualization div {
    float: left;
    width: 11.111%;
    /* width: 20%; */
    height: 100%;
}