#total{
    width: 100px;
    border: none;
    text-align: center;
    /*font-size: 28px;*/
}
.tr{
    margin-top: 40px
}
input[type=range] {
    /*removes default webkit styles*/
    -webkit-appearance: none;   
    /*fix for FF unable to apply focus style bug */
    border: 1px solid white;   
    /*required for proper track sizing in FF*/
    width: 260px;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 260px;
    height: 12px;
    background: #009688 ;
    border: none;
    border-radius: 3px;
    margin-top:10px; 
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background: #BDBDBD;
    margin-top: -11px;
}
input[type=range]:hover::-webkit-slider-thumb {
    background: #B2DFDB;
    transition: all;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]:hover::-webkit-slider-runnable-track {
    background: #FF9800 ;
}

input[type=range]::-moz-range-track {
    width: 260px;
    height: 12px;
    background: #009688 ;
    border: none;
    border-radius: 3px;
    margin-top:10px; 
}
input[type=range]::-moz-range-thumb {
    border: none;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background: #BDBDBD;
    margin-top: -11px;
}
input[type=range]:hover::-moz-range-thumb {
    background: #B2DFDB;
    transition: all;
}
input[type=range]:hover::-moz-range-track {
    background: #FF9800 ;
}

/*hide the outline behind the border*/
input[type=range]:-moz-focusring{
    outline: 1px solid white;
    outline-offset: -1px;
}

input[type=range]::-ms-track {
    width: 260px;
    height: 12px;
    background: #009688 ;
    border: none;
    border-radius: 3px;
    margin-top:10px;
    
    /*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: #009688;
    border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
    background: #009688;
    border-radius: 10px;
}
input[type=range]::-ms-thumb {
    border: none;
    height: 50px;
    width: 50px;
    border-radius: 20%;
    background: #BDBDBD;
    /*margin-top: -15px;*/
}
input[type=range]:hover::-ms-thumb {
    background: #B2DFDB ;
}
input[type=range]:hover::-ms-thumb {
    background: #B2DFDB ;
}
input[type=range]:hover::-ms-fill-lower {
    background: #FF9800;
}
input[type=range]:hover::-ms-fill-upper {
    background: #FF9800;
}
