input[type="range"] { 
	margin: auto;
	-webkit-appearance: none;
	position: relative;
	overflow: hidden;
	height: 10px;
	width: 200px;
	cursor: pointer;
	border-radius: 4px; /* iOS */
}
::-webkit-slider-runnable-track {
	background: #ddd;
}

/*
 * 1. Set to 0 width and remove border for a slider without a thumb
 */
::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px; /* 1 */
	height: 10px;
	background: #fff;
	box-shadow: -100vw 0 0 100vw #65d1d1;
	border: 1px solid #999; /* 1 */
}

::-moz-range-track {
	height: 10px;
	background: #cadbde;
}

::-moz-range-thumb {
	background: #fff;
	height: 10px;
	width: 20px;
	border: 1px solid #999;
	border-radius: 4px !important;
	box-shadow: -100vw 0 0 100vw #65d1d1;
	box-sizing: border-box;
}

::-ms-fill-lower { 
	background: #65d1d1;
}

::-ms-thumb { 
	background: #fff;
	border: 1px solid #999;
	height: 10px;
	width: 20px;
	box-sizing: border-box;
}

::-ms-ticks-after { 
	display: none; 
}

::-ms-ticks-before { 
	display: none; 
}

::-ms-track { 
	background: #ddd;
	color: transparent;
	height: 10px;
	border: none;
}

::-ms-tooltip { 
	display: none;
}


.styled meter {
	/* Reset the default appearance */
	
	
	height: 10px;
	width: 150px;

	/* For Firefox */
	box-shadow: 0 2px 3px rgba(0,0,0,0.2) inset;
	border-radius: 3px; 
	margin-top: 2px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	border-radius: 4px; /* iOS */
}

.styled meter::-moz-meter-bar {
	background: #65d1d1;
}
.styled meter::-moz-meter-optimum {
	background: #cadbde;
}
.styled meter::-webkit-meter-bar {
	background: #eff7f8;
}
.styled meter::-webkit-meter-optimum-value {
	background: #65d1d1;
}