@charset "utf-8";

/**************************************************
Global
**************************************************/

* {
	margin: 0;
	padding: 0;
}

img {
	text-decoration: none;
	border: 0;
}

/* button selector here affects both the arrows and the indicator dots */

button {
	border: none;
	outline: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-moz-tap-highlight-color: rgba(0, 0, 0, 0);
	tap-highlight-color: rgba(0, 0, 0, 0);
}

/* vertical centering - for the purposes of this demo only */

#stage-center {
	position: absolute;
	top: 50%;
	margin-top: -135px;
	left: 0;
	width: 100%;
}

/**************************************************
Slider
**************************************************/

#dynamic-slider { /* you may need to fiddle with these values a bit pending the needs of your site or application */
	width: 100%;
	max-width: 1280px;
	margin: 60px auto;
	position: relative;

}

@media only screen and (min-width : 601px) {
  #dynamic-slider {width: 100%; }
  }

@media only screen and (min-width : 993px) {
  #dynamic-slider {width: 100%; }
  }

#dynamic-slider .slide-container {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

/* #dynamic-slider ul width is automatically edited in the script to account for the total number of slides */

#dynamic-slider ul {
	list-style: none;
	height: 100%;
}

#dynamic-slider ul li {
	position: relative;
	float: left;
}

#dynamic-slider ul li,
#dynamic-slider ul li img {
	width: 100%;
}

/**************************************************
Controls
**************************************************/

#dynamic-slider .controls {
	position: absolute;
	top: 45%;
	margin-top: -20px;
	width: 100%;
}

#dynamic-slider .controls .arrow {
	position: absolute;
	width: 31px;
	height: 40px;
	cursor: pointer;
	opacity: 0.5;
	transition: opacity 0.4s;
}

#dynamic-slider .controls .left-arrow {
	background: url('../img/left-arrow.png') no-repeat 0 0;
	background-size: 31px 40px;
	left: -5px;
}

#dynamic-slider .controls .right-arrow {
	background: url('../img/right-arrow.png') no-repeat 0 0;
	background-size: 31px 40px;
	right: -5px;
}

/* Hover states are controlled in JavaScript so as to avoid foolish "sticky-hover" errors on mobile browsers */

#dynamic-slider .controls .arrow.hover {
	opacity: 1;
}

/**************************************************
Indicator Dots
**************************************************/

#dynamic-slider .indicators {
	width: 100%;
	position: absolute;
	bottom: -32px;
	text-align: center;
}

#dynamic-slider .indicators .indicator {
	cursor: pointer;
	width: 10px;
	height: 10px;
	margin: 0 10px;
	border-radius: 20px;
	background: #333;
	opacity: 0.5;
	transition: opacity 0.4s;
}

#dynamic-slider .indicators .indicator.hover,
#dynamic-slider .indicators .indicator.active {
	opacity: 1;
}