#slider-data-container ul {
	background: #eeeeee;
	padding: 0;
}
.slide-controls-container-wrapper {
	width: 100%;
	height: 100%;
	position: absolute;
}
.slider-shadow {
}
.slider-shadow-container {
    top: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	
}
.slide-controls-container {
	position: relative;
	top: 50%;
}
.slide-controls {
	position: absolute;
	top: 50%;
	right: 60px;
	width: 200px;
	height: 200px;
	transform: translate(0,-50%);
	z-index: 200;
}
.slide-controls .slide-controls-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}
.slide-controls-wrapper:before,
.slide-controls-wrapper:after {
	content: '';
	position: absolute;
}
.slide-controls-wrapper:before {
}
.controls-shadow-wrapper {
	position: relative;
	z-index: 50;
	width: 100%;
	height: 100%;
	transform: rotate(-45deg);
}
.slide-controls .controls-shadow {
	height: 1px;
	position: relative;
	left: 50%;
	top: 50%;
	overflow: hidden;
	padding: 0 200px;
	padding-bottom: 200px;
	transform: translate(-50%,0);
}
.slide-controls .controls-shadow:before,
.slide-controls .controls-shadow:after {
	content: '';
	position: absolute;	
}
.slide-controls .controls-shadow:before {
	top: 0;
	left: 50%;
	transform: translate(-50%,-100%);
	height: 200px;
	width: 200px;
	border-radius: 50%;
	transition: all 0.5s ease;
	animation: shadow-flash 5s infinite;
}

@keyframes shadow-flash {
  	0% {
    	box-shadow: 0 50px 50px rgba(0,0,0,0.5);
  	}
  	50% {
		box-shadow: 0 50px 50px rgba(0,56,223,0.5);
  	}
  	100% {
  		box-shadow: 0 50px 50px rgba(0,0,0,0.5);
  	}
}

.slide-controls .controls-shadow:after {
	left: 50%;
	transform: translate(-50%,0);
	height: 2px;
	width: 70%;
	background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.5) 50%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.5) 50%,rgba(255,255,255,0) 100%);	
}
.slide-controls .btn {
	position: relative;
	color: #0033CC;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	box-shadow: 0 0 0px 6px rgba(0,0,0,0.1);
	z-index: 50;
	display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.slide-controls .btn span {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	font-size: 32px;
	transition: all 0.5s ease;
}

.slide-controls .button-wrapper {
	position: absolute;
	z-index: 60;
	border-radius: 50%;
	border: rgba(0,0,0,0.2) 1px solid;
	padding: 5px;
}
.slide-controls .button-wrapper.left {
	left: 35px;
	bottom: 50%;
	margin-bottom: -20px;
}
.slide-controls .button-wrapper.right {
	right: 35px;
	top: 50%;
	margin-top: -20px;
}
.slide-controls .button-wrapper:before,
.slide-controls .button-wrapper:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	/*transform: translate(-50%,-50%);*/
	border-radius: 50%;
	transition: all 0.5s ease;
	z-index: 40;
}
.slide-controls .button-wrapper:before {
	left: 0;
	top: 0;
}
.slide-controls .button-wrapper:after {
	right: 0;
	bottom: 0;
}
.slide-controls .button-wrapper:hover:before {
	width: 100%;
	height: 100%;
	/*transition: width 0.2s ease, height 0.2s ease*/
	animation: roll 3s infinite;
	background: -moz-linear-gradient(left,  rgba(109,179,242,0.8) 0%, rgba(84,163,238,0.8) 50%, rgba(30,105,222,0.8) 51%, rgba(54,144,240,0.8) 100%);
	background: -webkit-linear-gradient(left,  rgba(109,179,242,0.8) 0%,rgba(84,163,238,0.8) 50%,rgba(30,105,222,0.8) 51%,rgba(54,144,240,0.8) 100%);
	background: linear-gradient(to right,  rgba(109,179,242,0.8) 0%,rgba(84,163,238,0.8) 50%,rgba(30,105,222,0.8) 51%,rgba(54,144,240,0.8) 100%);
}
.slide-controls .button-wrapper:hover:after {
	width: 100%;
	height: 100%;
	animation: roll-out 3s infinite;
	background: -moz-linear-gradient(left,  rgba(30,87,153,0.5) 0%, rgba(41,137,216,0.5) 50%, rgba(32,124,202,0.5) 51%, rgba(125,185,232,0.5) 100%);
	background: -webkit-linear-gradient(left,  rgba(30,87,153,0.5) 0%,rgba(41,137,216,0.5) 50%,rgba(32,124,202,0.5) 51%,rgba(125,185,232,0.5) 100%);
	background: linear-gradient(to right,  rgba(30,87,153,0.5) 0%,rgba(41,137,216,0.5) 50%,rgba(32,124,202,0.5) 51%,rgba(125,185,232,0.5) 100%);
}
.slide-description-container {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 100;
	top: 0;
	left: 0;
}
.slide-description-container .uk-container {
	position: relative;
}

.slide-description {
	z-index: 120;
	position: absolute;
	top: 150px;
	left: 80px;
}
.slide-header .h1 {
	color: #ffffff;
	font-size: 64px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
	line-height: 1.1;
}
.slide-text {
	position: relative;
	padding: 25px 0;
	margin-top: 20px;
	margin-bottom: 2px;
	z-index: 50;
	text-align: center;
}
.slide-text .slide-text-bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 40;
	background: -moz-linear-gradient(-45deg,  rgba(255,255,255,0) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 25%, rgba(255,255,255,0.15) 30%, rgba(255,255,255,0) 35%, rgba(255,255,255,0.3) 60%, rgba(255,255,255,0) 80%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(-45deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 15%,rgba(255,255,255,0.15) 20%,rgba(255,255,255,0) 25%,rgba(255,255,255,0.15) 30%,rgba(255,255,255,0) 35%,rgba(255,255,255,0.3) 60%,rgba(255,255,255,0) 80%,rgba(255,255,255,0) 100%);
	background: linear-gradient(135deg,  rgba(255,255,255,0) 0%,rgba(255,255,255,0) 15%,rgba(255,255,255,0.15) 20%,rgba(255,255,255,0) 25%,rgba(255,255,255,0.15) 30%,rgba(255,255,255,0) 35%,rgba(255,255,255,0.3) 60%,rgba(255,255,255,0) 80%,rgba(255,255,255,0) 100%);
}
.slide-text-bg:before,
.slide-text-bg:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	z-index: 40;
	left: 0;
	background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
	background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.5) 50%,rgba(255,255,255,0) 100%);
	background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,0.5) 50%,rgba(255,255,255,0) 100%);
}

@keyframes shadow-pulse {
  	0% {
    	box-shadow: 0 0 0 rgba(0,0,0,0);
  	}
  	50% {
    	box-shadow: -10px 10px 30px rgba(0,0,0,0.25);
  	}
  	100% {
  		box-shadow: 0 0 0 rgba(0,0,0,0);
  	}
}

.slide-text-bg:before {
	top: -1px;
}
.slide-text-bg:after {
	bottom: -1px;
}
.slide-text p {
	color: #eeeeee;
	font-size: 24px;
	text-transform: uppercase;
	position: relative;
	z-index: 50;
	margin: 0;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
	/*text-shadow: 0 0 3px rgba(0,0,0,0.5);*/
}

@keyframes roll {
  	0% {
    	transform: rotate(0);
  	}
  	100% {
    	transform: rotate(360deg);
  	}
}
@keyframes roll-out {
  	0% {
    	transform: rotate(0);
  	}
  	100% {
    	transform: rotate(-360deg);
  	}
}


/* ========= @media QUERIES ========= */


@media screen and (max-width: 1199px) {

}

@media screen and (max-width: 991px) {
	
	.slide-controls {
		right: 0;
	}
	.slide-controls .btn {
		width: 60px;
		height: 60px;
	}
	.slide-controls .btn span {
		font-size: 28px;
	}
	.slide-controls .button-wrapper.left {
		left: 42px;
		bottom: 50%;
		margin-bottom: -18px;
	}
	.slide-controls .button-wrapper.right {
		right: 42px;
		top: 50%;
		margin-top: -18px;
	}
	.slide-header .h1 {
		font-size: 36px;
	}
	.slide-text p {
		font-size: 14px;
	}
}

@media screen and (max-width: 767px) {
	.slide-description {
		position: absolute;
		top: 30px;
		left: 30px;
		transform: none;
	}
	.slide-header .h1 {
		font-size: 36px;
	}
	.slide-text {
		margin-top: 10px;
		padding: 15px;
	}
	.slide-text p {
		font-size: 14px;
	}
	.slide-controls .btn {
		width: 50px;
		height: 50px;
	}
	.slide-controls .btn span {
		font-size: 24px;
	}
	
	.slide-controls .button-wrapper.left {
		left: 52px;
		bottom: 50%;
		margin-bottom: -15px;
	}
	.slide-controls .button-wrapper.right {
		right: 52px;
		top: 50%;
		margin-top: -15px;
	}
	.slider-page-wrapper {
		position: absolute;
		width: 100%;
	}

}

@media screen and (max-width: 479px) {
	.slide-description {
		top: 20px;
		left: 20px;
	}
	.slide-controls {
		width: 100px;
		height: 100px;
		right: 0;
	}
	.slide-controls .controls-shadow {
		/*width: 1;*/
		height: 1px;
		position: relative;
		left: 50%;
		top: 50%;
		overflow: hidden;
		padding: 0 100px;
		padding-bottom: 100px;
		transform: translate(-50%,0);
	}
	.slide-controls .controls-shadow:before {
		height: 100px;
		width: 100px;
	}
	.slide-controls .button-wrapper.left {
		left: 20px;
		bottom: 50%;
		margin-bottom: -12px;
	}
	.slide-controls .button-wrapper.right {
		right: 18px;
		top: 50%;
		margin-top: -12px;
	}
	.slider-wrapper {
		margin-bottom: 30px;
	}
	.slide-header .h1 {
		text-align: left;
		font-size: 18px;
	}
	.slide-text {
		margin-top: 5px;
		padding: 10px 0;
	}
	.slide-text p {
		font-size: 12px;
	}
	.slide-controls .btn {
		width: 30px;
		height: 30px;
	}
	.slide-controls .btn span {
		font-size: 16px;
	}
}