body {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

#video-container {
    position: relative;
}

#heading, #heatmap, #play, #time-control, .vote, .comment,
.comment-input input[type=text] {
    box-sizing: border-box;
}

#heading {
    width: 100%;
    position: absolute;
    top: 0;
    font-size: 38pt;
    color: white;
    background-color: #0BA4E8;
    padding: 40px 20px;
    z-index: 100;

}

#heatmap {
    width: 100%;
    height: 200px;
    padding: 0 50px;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);

}

.play {
  width: 0;
  height: 0;
  border: 0;
  padding: 0;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  border-left: 60px solid #2c2c2c;
  background-color: transparent;
}

.pause {
    background-color: transparent;
    width: 40px;
    height: 80px;
    border: 0;
    border-right: 20px solid #2c2c2c;
    border-left: 20px solid #2c2c2c;
}

.valign {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#time-container {
    width: 90%;
    position: relative;
    height: 0;
    margin-top: -20px;
}

.play-container {
    width: 10%;
}

#time-control {
    position: relative;
    width: 100%;
    z-index: 99;
}

.point{
    height: 50px;
    width: 2%;
    left: 0.6%;
    bottom: -10px;
    position: absolute;
    background-color: #3FD26A;
    background: linear-gradient(#5FFBA7, #35BB6F);
    z-index: 1;
}

.point.active {
    background-color: #35A5BB;
    background: linear-gradient(#5FEDFB, #35A5BB);
}

#comments {
    width: 100%;
    height: 100vh;
    background-color: lightgrey;
    display: block;
    padding-top: 10px;
    font-size: 28pt;
    position: relative;
    z-index: 1000;
}

.comment-container{
    background-color: white;
    margin: 0;
    padding: 50px;
    border-radius: 2px;
    border-bottom: 2px solid lightgrey;
    /*-webkit-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 3px 3px 5px 0px rgba(0,0,0,0.75); */
}

.vote, .comment {
    display: inline-block;
}

.up-vote, .down-vote{
    border-right: 10px solid;
    border-bottom: 10px solid;
    width: 40px; height: 40px;
    border-color: #C9C9C9;
    margin: 0 auto

}

.up-vote {
    transform: rotate(-135deg);
}

.down-vote {
    transform: rotate(45deg);
}

.vote{
    width: 10%;
    text-align: center;
}

.comment {
    width: 90%;
    font-family: Arial;
    color: #494949

}

.comment-input {
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: white;

}

.comment-input input{
    display: inline-block;

}

.comment-input input[type=text] {
    width: 80%;
    height: 175px;
    border: 0;
    font-size: 28pt;
    padding: 25px 50px;

}

.comment-input input[type=submit] {
    font-size: 28pt;
    color: #0076FF;
    background-color: white;
    border: 0;
}

video {
    margin: 0;
    padding: 0;
}



input[type='range']{

    background: #2c2c2c;

    height:10px;

}



input[type=range] {
    /*removes default webkit styles*/
    -webkit-appearance: none;

    /*fix for FF unable to apply focus style bug */
    border: none;

    /*required for proper track sizing in FF*/
    width: 300px;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 300px;
    height: 3px;
    background: none;
    border: none;
    border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    border: 1px solid black;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: white;
    margin-top: -19px;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: none;
}

input[type=range]::-moz-range-track {
    width: 300px;
    height: 3px;
    background: none;
    border: none;
    border-radius: 3px;
}
input[type=range]::-moz-range-thumb {
    border: none;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid black;
    background: white;
}

/*hide the outline behind the border*/
input[type=range]:-moz-focusring{
    outline: 1px solid white;
    outline-offset: -1px;
}

input[type=range]::-ms-track {
    width: 300px;
    height: 3px;

    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    background: transparent;

    /*leave room for the larger thumb to overflow with a transparent border */
    border-color: transparent;
    border-width: 6px 0;

    /*remove default tick marks*/
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #777;
    border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
    background: #ddd;
    border-radius: 10px;
}
input[type=range]::-ms-thumb {
    border: none;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid black;
    background: white;
}
input[type=range]:focus::-ms-fill-lower {
    background: #888;
}
input[type=range]:focus::-ms-fill-upper {
    background: #ccc;
}
