.time_slider {
	display: flex;
}

.time_slider input[type=text] {
	flex-basis: 150px;
	margin-left: 10px;
}

.time_slider input[type=range] {
	flex-grow: 1;
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 4px;
	background: #d3d3d3;
	margin-top: 14px;
	border-radius: 2px;
}

.time_slider input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 25px;
	height: 25px;
	background: #2E4256;
	cursor: pointer;
	border-radius: 50%;
}

.time_slider input[type=range]::-moz-range-thumb {
	width: 25px;
	height: 25px;
	background: #2E4256;
	cursor: pointer;
	border-radius: 50%;
}