/**
*   Here's where everything gets included. You don't need
*   to change anything here, and doing so might break
*   stuff. Here be dragons and all that.
*/
/**
*   Default variables
*
*   While these can be set with JavaScript, it's probably
*   better and faster to just set them here, compile to
*   CSS and include that instead to use some of that
*   hardware-accelerated goodness.
*/

.unslider
{
	overflow: auto;
	margin: 0;
	padding: 0;
}

.unslider-wrap
{
	position: relative;
}

.unslider-wrap.unslider-carousel > li
{
	float: left;
}

.unslider-vertical > ul
{
	height: 100%;
}

	.unslider-vertical li
	{
		float: none;
		width: 100%;
	}

.unslider-fade
{
	position: relative;
}

	.unslider-fade .unslider-wrap li
	{
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		z-index: 8;
	}

		.unslider-fade .unslider-wrap li.unslider-active
		{
			z-index: 10;
		}

.unslider ul, .unslider ol, .unslider li
{
	list-style: none;
	/* Reset any weird spacing */
	margin: 0;
	padding: 0;
	border: none;
}

.unslider-arrow
{
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	background: red;
	top: calc(50% - 15px);
	left: -200px;
	z-index: 2;
	cursor: pointer;
}

.unslider-arrow.next
{
	left: auto;
	right: -200px;
}



.unslider-nav ol
{
	position: absolute;
	list-style: none;
	text-align: center;
	bottom: 5px;
	right: -5px;
}

@media screen and (min-width : 768px)
{
	.unslider-nav ol
	{
		top: 33vw;
		right: 0px;
		left: 0px;
	}
}

	.unslider-nav ol li
	{
		display: inline-block;
		background: rgba(255,255,255,0.5);;
		width: 15px;
		height: 15px;
		margin: 0px 5px 0px 0px;
		overflow: hidden;
		text-indent: -999em;
		cursor: pointer;
		border-radius: 15px;
	}

	.unslider-nav ol li.unslider-active
	{
		background: rgba(0,0,0,0.5);
		cursor: default;
	}
