/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

/* The Nivo Slider styles */
.nivoSlider {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.nivoSlider img {
	position: absolute;
	top: 0px;
	left: 0px;
	max-width: none;
}

.nivo-main-image {
	display: block !important;
	width: 100% !important;
	position: relative !important;
}

body.inner .nivoSlider {}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	margin: 0;
	z-index: 6;
	display: none;
	background: white;
	filter: alpha(opacity=0);
	opacity: 0;
}

/* The slices and boxes in the Slider */
.nivo-slice {
	display: block;
	position: absolute;
	z-index: 5;
	height: 100% !important;
	top: 0;
}

.nivo-box {
	display: block;
	position: absolute;
	z-index: 5;
	overflow: hidden;
}

.nivo-box img {
	display: block;
}

/* Caption styles */
.nivo-caption {
	color: #afafaf;
	width: 100%;
	padding: 10px 0px;
	overflow: hidden;
	display: none;
	-webkit-box-sizing: border-box;
	/* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;
	/* Firefox, other Gecko */
	box-sizing: border-box;
	/* Opera/IE 8+ */
}

.nivo-caption p {
	padding: 5px;
	margin: 0;
}

.nivo-caption a {}

.nivo-html-caption {
	display: none;
}

/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav {
	width: 100%;
}

.nivo-directionNav a {
	display: block;
	width: 37px;
	height: 52px;
	text-indent: -9999px;
	border: 0;
	z-index: 100;
	position: absolute;
}

.nivo-directionNav a:hover {
	opacity: 0.8;
}

.nivo-prevNav {
	background: url(left.png) no-repeat;
	left: 50%;
	margin-left: -496px;
	bottom: 35px;
	float: left;
	cursor: pointer;
}

.nivo-nextNav {
	background: url(right.png) no-repeat;
	right: 50%;
	margin-right: -496px;
	bottom: 35px;
	float: right;
	cursor: pointer;
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
	text-align: center;
	padding: 5px 0;
	position: absolute;
	bottom: calc(var(--nivo-caption-bottom, 3rem) + 1.2rem);
	z-index: 1000;
	right: 50%;
	display: flex;
	align-items: center;
}

.nivo-controlNav a {
	cursor: pointer;
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: var(--color-white);
	text-indent: -9999px;
	border: 0;
	margin-left: 24px;
	transition: all 0.3s ease;
}

.nivo-controlNav a.active {
	position: relative;
	background-color: var(--color-orange);
}

.nivo-controlNav a.active::after {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	border: 2px solid var(--color-orange);
	border-radius: 50%;
}

.nivo-controlNav a:hover {
	background-color: var(--color-orange);
}

@media only screen and (max-width: 1024px) {
	.nivo-controlNav {
		padding: 4px 0;
		/* bottom: calc(var(--nivo-caption-bottom, 1.5rem) + 0.5rem); */
	}

	.nivo-controlNav a {
		width: 10px;
		height: 10px;
		margin-left: 20px;
	}

	.nivo-controlNav a:first-child {
		margin-left: 0;
	}

	.nivo-controlNav a.active::after {
		top: -4px;
		left: -4px;
		right: -4px;
		bottom: -4px;
		border-width: 1.5px;
	}
}

@media only screen and (max-width: 576px) {
	.nivo-controlNav {
		padding: 3px 0;
		/* bottom: calc(var(--nivo-caption-bottom, 1.2rem) - 1.2rem); */
	}

	.nivo-controlNav a {
		width: 8px;
		height: 8px;
		margin-left: 15px;
	}

	.nivo-controlNav a.active::after {
		top: -3px;
		left: -3px;
		right: -3px;
		bottom: -3px;
		border-width: 1.5px;
	}
}

@media only screen and (max-width: 400px) {
	.nivo-controlNav a {
		width: 6px;
		height: 6px;
		margin-left: 10px;
	}

	.nivo-controlNav a.active::after {
		top: -3px;
		left: -3px;
		right: -3px;
		bottom: -3px;
		border-width: 1px;
	}
}