/* Slider styling, from: http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */
input[type=range] {
    /*removes default webkit styles*/
    -webkit-appearance: none;
    
    /*fix for FF unable to apply focus style bug */
    border: 1px solid white;
    
    width: 98%;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 98%;
    height: 5px;
    background: #ddd;
    border: none;
    border-radius: 3px;
}
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: goldenrod;
    margin-top: -4px;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #ccc;
}

.date_step_cols {
    width: 95%;
    display: flex;
    /*border:1px solid black;*/
    margin:auto;
}

.date_button {
    float: left;
    width: fit-content;
    /*border:1px solid black;*/
}

.slider_rows {
    margin:auto;
    float: left;
    width: auto;
    flex-grow: 1;
    margin-right: 5px; 
    margin-left: 0px;
}

.slider_date_left {
    text-align:left;
    width: auto;
    float: left;
}

.slider_date_right  {
    text-align:right;
    width: auto;
    float: right;
}
