.draggable-slider-wrapper {
	position: relative;
	width: auto;
	margin-bottom: 20px;
}
@media only screen and (max-width: 768px) and (orientation: portrait) {
	.draggable-slider-wrapper {
		
	}
}
.draggable-slider-wrapper * {
	box-sizing: border-box;	
}
.draggable-slider {
	position: relative;
	z-index: 1;
	height: 100%;
}
.draggable-slider-item {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
	box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
/*
	.draggable-slider-item {
		height: auto;
	}	
*/
}
.draggable-slider-item img {
	display: block;
	margin: 0;
	height: 100%;
	width: auto;
	position: relative;
}
.draggable-slider-item p {
	position: absolute;
	top: 0px;
	text-shadow: 1px 1px 0px #000000;
	left: 70%;
	right: 0;
	padding: 0 20px;
	text-shadow: none;
	line-height: 1.3em;
	height: 100%;
	display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
@media only screen and (max-width: 768px) {
	.draggable-slider-item p {
		width: 100%;
		position: relative;
		top: 55px;
		left: 0;
		padding: 0 7px;
		bottom: auto;
		display: block;
		height: auto;
	}	
}
.draggable-slider-ui {
	position: absolute;
	bottom: -45px;
	left: 0;
	width: 70%;
	z-index: 100;
}
@media only screen and (max-width: 768px) {
	.draggable-slider-ui {
		left: 0;
		right: 0;
		width: auto;
	}	
}
.draggable-slider-ui label {
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px, 1px, 1px, 1px);
}
.ui-slider-track {
	background-color: #dedede;
	-moz-box-shadow:    inset -2px 2px 3px #999;
	-webkit-box-shadow: inset -2px 2px 3px #999;
	box-shadow:         inset -2px 2px 3px #999;
	border-width: 0 !important;
	border-radius: 4px;
}
.ui-slider-handle {
	border: 1px solid #eee;
	box-shadow: 1px 1px 4px #555;
	top: -4px !important;
	width: 34px !important;
	height: 34px !important;
	border-radius: 17px !important;
	background-color: #fff;
	background-image:URL(images/arrow-right.svg);
	background-repeat: no-repeat;
	background-size: 22px 22px;
	background-position: center center;
}