
#full-slider-container *{
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;    
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
    white-space: nowrap;
}


/* range input and buttons (position) */

.slidercontainer {
	margin: 10% auto;
	text-align: center;
}


.inputcontainer {
	width: 276px; /* container width and handle width need to add to input width*/
	margin: 0 auto;
	position: relative;
	display: inline-block;
	top: 8px;
}


.button {
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	padding: 0px;
	background-color: #bf4e7c;
	color: #fff;
	cursor: pointer;
	margin-top: -4px;
}

.button:active{
	background-color: #2bc1dc;
}

.add {
	margin-left: 30px;
}

/* range input bar and handle (styling)*/


input[type=range] {
	display: inline;
    -webkit-appearance: none;
    width: 300px;
    margin: 0px;
    border-radius: 10px;
    height: 20px;
    border: 3px solid #bdc3c7;
    background-color: #fff;
}


input[type='range']::-webkit-slider-thumb {
	-webkit-appearance: none;
	background-color: #2bc1dc;
	border: 2px solid black;
	width: 24px;
	height: 36px;
	border-radius: 8%;
	cursor: pointer;
}

input:focus {
	outline: none;
}

/* range input value display (positioning) */

.slidevalue {
	top: 0px;
	position: absolute;
	font-family: courier;
	font-size: 10px;
	left: 50%;
	pointer-events: none;
	text-align: center;
	width: 25px;
	border: 2px solid transparent; 
}

.pop {
	background-color: #f68d24;
	position: absolute;
	width: 50px;
	height: 50px;
	top: -75px;
	text-align: center;
	font-size: 28px;
	left: -12px;
	display: none;
	border-radius: 10px;
	padding-top: 10px;
}

.pop:after {
	content: "";
	position: absolute;
	width: 0px;
	height: 0px;
	bottom: -10px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #f68d24;
	display: block;
	left: 15px;
}

/* Submit Button position & styling */

.submit-button {
	margin-top: 20px;
}

input[type=submit] {
    -webkit-appearance: none;
    border-radius: 5px;
    border: 0px;
    background-color: #f68d24;
	font-family: helvetica;
	font-weight: bold;
	cursor: pointer;
}

input[type=submit]:active {
	background-color: #ffcc00;
}

/* Submitted Value */

.implement {
	text-align: center;
	font-size: 200%;
	color: red;
	font-family: Monaco;
	display: none;
	white-space: normal !important;
}
