.controls {
    text-align: center;
}

button{
    border: none;
    padding: 10px;
    min-width: 30px;
    min-height: 30px;
    border-radius: 5px;
    position: relative;
    outline: none;
}
button:hover{color:#fff}
button.play {
    /*background-color: rgb(36, 36, 36);
    min-width: 30px;
    border-radius: 0px 5px 5px 0px;*/
}

button.play:before {
    content: " ";
    position: absolute;
    left: 45%;
	top:35%;
    border: 8px solid transparent;
    border-width: 12px 30px;
    border-left-color: #FFFFFF;
    margin-top: -6px;
    background: transparent;
}

button.play:hover {
    background-color: rgb(71, 71, 71);
}

button.play:active {
    background-color: rgb(34, 34, 34);
}

button.stop {
    /*background-color: rgb(36, 36, 36);
    border-radius: 5px 0px 0px 5px;
	color: #474747*/
}

button.stop:before {
    content: "";
    position: absolute;
    left: 10px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    background: white;
}

button.stop:hover {
    background-color: rgb(71, 71, 71);

}

button.stop:active {
    background-color: rgb(34, 34, 34);
}

button.pause:before {
    content: "";
    position: absolute;
    left: 45%;
	top:35%;
    width: 20px;
    height: 26px;
    border: 2px solid #FFFFFF;
    border-width: 0px 6px;
    margin-top: -6px;
    background:transparent;
}

button:disabled {
    background-color: #777;
}

button[disabled], button[disabled]:hover, button[disabled]:active {
    background-color: #777;
}

.slider-group {
    margin-bottom: 10px;
}

.slider {
    height: 34px;
    width: 440px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -1px;
    padding: 0px 0px 0px 0px;
    border: solid 2px #D8D6D6;
    overflow: hidden;
}

.slider:first-child {
    border-radius: 8px 8px 0px 0px;
}

.slider:last-child {
    border-radius: 0px 0px 8px 8px;
}

.slider:only-child {
    border-radius: 8px 8px 8px 8px;
}

.slider>label {
    width: 120px;
    display: block;
    float: left;
    margin-right: 10px;
    height: 34px;
    text-align: right;
    font-weight: bold;
    line-height: 31px;
    vertical-align: middle;
    color: #6B6969;
}

.slider-value {
    height: 34px;
    width: 50px;
    display: inline-block;
    border-left: solid 2px #ccc;
    float: right;
    line-height: 34px;
    vertical-align: middle;
    padding-left: 3px;
    background: #EAE9E9;
    font-size: 0.9em;
}

/**** Reset input range styles ****/
input[type=range] {
    -webkit-appearance: none;
    line-height: 34px;
    display: inline;
    vertical-align: middle;
    width: 250px;
    padding-top: 8px;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
}

input[type=range]:focus {
    outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

input[type=range]::-ms-track {
    width: 100%;
    cursor: pointer;
    background: transparent; /* Hides the slider so custom styles can be added */
    border-color: transparent;
    color: transparent;
}

/**** Style input range ****/
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: rgb(237, 45, 58);
    border: 4px solid #ccc;
    cursor: pointer;
    margin-top: -8px;
    box-shadow: 1px 1px 1px #333, 0px 0px 1px #333;
}

input[type=range]::-moz-range-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: rgb(237, 45, 58);
    border: 4px solid #ccc;
    cursor: pointer;
}

input[type=range]::-ms-thumb {
    box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    background: rgb(237, 45, 58);
    border: 4px solid #ccc;
    cursor: pointer;
}

input[type=range]:disabled::-webkit-slider-thumb,
input[type=range]:disabled::-moz-range-thumb,
input[type=range]:disabled::-ms-thumb {
    background: #777;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: #444;
    border-radius: 3px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: #444;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: #444;
    border-radius: 3px;
}

input[type=range]::-ms-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    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;
}
input[type=range]:focus::-ms-fill-lower {
    background: #3071a9;
}
input[type=range]::-ms-fill-upper {
    background: #3071a9;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
}
input[type=range]:focus::-ms-fill-upper {
    background: #367ebd;
}
