/*
 * jQuery UI Slider Button 2.0.1
 * http://github.com/j-ulrich/jquery-sliderbutton
 *
 * Copyright (c) 2013 Jochen Ulrich <jochenulrich@t-online.de>
 * Licensed under the MIT license (MIT-LICENSE.txt).
 */

.ju-sliderbutton {
	background-color: #ffffff;
	/*background-color: #000000;*/
	border: 1px solid #babdb6;
/*	
	background: #45484d;
	background: -moz-linear-gradient(top,  #45484d 0%, #000000 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#45484d), color-stop(100%,#000000));
	background: -webkit-linear-gradient(top,  #45484d 0%,#000000 100%);
	background: -o-linear-gradient(top,  #45484d 0%,#000000 100%);
	background: -ms-linear-gradient(top,  #45484d 0%,#000000 100%);
	background: linear-gradient(to bottom,  #45484d 0%,#000000 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 );
*/
	
	border-radius: 0px;
	height: 50px;
	text-align: right;
}

.ju-sliderbutton.ju-sliderbutton-mini {
	height: 28px;
}

.ju-sliderbutton-left {
	text-align: left;
}

.ju-sliderbutton .ju-sliderbutton-text {
	/*color: #FFFFFF;*/
	color: #000000;
	line-height: 50px;
	margin-right: 1em;
	font-size: 24px;
	
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	   -moz-user-select: none;
	    -ms-user-select: none;
	        user-select: none;
}

.ju-sliderbutton.ju-sliderbutton-mini .ju-sliderbutton-text {
	line-height: 28px;
	font-size: 14px;
}

.ju-sliderbutton-left .ju-sliderbutton-text {
	margin-right: 0px;
	margin-left: 1em;
}

.ju-sliderbutton .ju-sliderbutton-input {
	display: none;
}

.ju-sliderbutton .ui-slider {
	background: transparent;
	height: 0px;
	border: none;
	margin-top: -50px;
	margin-left: 35px;
	margin-right: 35px;
	display: block;
	top: 0px;
	width: auto;
	border-radius: 0px;
}

.ju-sliderbutton.ju-sliderbutton-mini .ui-slider {
	margin-top: -28px;
}

.ju-sliderbutton .ui-slider .ui-slider-handle {
	background-color: #babdb6;
	background-image: url("../img/misc/sliderbutton-handle.svg");
	background-position: center;
	-webkit-background-size: 100%;
	   -moz-background-size: 100%;
	        background-size: 100%;
	background-repeat: no-repeat;
	border-radius: 0px;
	height: 50px;
	border: none;
	top: 0px;
	width: 70px;
	margin-left: -35px;
	position: relative;
}

.ju-sliderbutton .ui-shadow {
	-webkit-box-shadow: 0px 0px 0px;
	        box-shadow: 0px 0px 0px;
}

.ju-sliderbutton .ui-btn-inner {
	border: 0px;
}

.ju-sliderbutton.ju-sliderbutton-mini .ui-slider .ui-slider-handle {
	height: 28px;
	-webkit-background-size: 50%;
	   -moz-background-size: 50%;
	        background-size: 50%;
}


.ju-sliderbutton-left .ui-slider-handle {
	-webkit-transform: scale(-1, 1);
	-moz-transform: scale(-1, 1);
	-o-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1);
}
