/* FONT FACE */
@font-face {
	font-family: "PatrickHand";
	font-style: normal;
	font-weight: 400;
	src: url(../../css/PatrickHand-Regular.ttf) format('truetype');
}

body{
	margin: 0;
	font-family: "PatrickHand", Helvetica, Arial;
	color: #000;
	padding: 0 10px;
	background: #eee;
	letter-spacing: 1px;
	font-size: 25px;
}

#content{
	background: #fff;
	width: 500px;
	padding: 50px;
	overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}
#container{
	width: 500px;
    margin: 0px auto;
}

#default_labels{
	display:none;
}

input[type=range]{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height: 2px;
    border-radius: 5px;   
    background: #d3d3d3;
    outline: none;
    margin-top: 15px;
    margin-bottom: 15px;
}
input[type=range]::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 35px;
    border-radius: 8px; 
    background: #333;
    cursor: pointer;
    border:none;
}
input[type=range]::-moz-range-thumb{
	width: 15px;
    height: 35px;
    border-radius: 8px; 
    background: #333;
    cursor: pointer;
    border:none;
}

