/* widget styles */
.widget {
	box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
	border-radius: 5px;
	background: #fff;
	font-size: 14px;
	margin: 0px auto;
	padding: 10px;
	width: 90%;
}

.widget .control-links {
	border-top: 1px dotted #ddd;
	text-align: center;
	overflow: hidden;
	margin: 10px 0 0;
	padding: 10px 1px 0;
}

.widget .control-links .switcher-holder {
	display: inline-block;
}

.widget .btn-prev,
.widget .btn-next {
	border-radius: 5px;
	border: 1px solid #ccc;
	width: 26px;
	height: 26px;
	color: #ccc;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
	float: left;
}

.widget .btn-next {
	float: right;
}

.widget .btn-prev:hover,
.widget .btn-next:hover {
	text-decoration: none;
	border-color: #000;
	color: #000;
}

.widget .btn-prev:active,
.widget .btn-next:active {
	margin: 1px -1px -1px 1px;
}

.widget .switcher {
	overflow: hidden;
	list-style: none;
	padding: 0;
	margin: 0;
}

.widget .switcher li {
	/* margin: 0 5px 0 0; */
	float: left;
}

.widget .switcher li a {
	border: 1px solid transparent;
	border-radius: 5px;
	text-align: center;
	float: left;
	color: #000;
	padding: 0 10px;
	height: 26px;
	line-height: 26px;
}

.widget .switcher li a:hover {
	border-color: #eee;
	text-decoration: none;
}

.widget .switcher li a:active {
	line-height: 28px;
}

.widget .switcher .active a {
	background: #777;
	color: #000;
}

.widget .switcher .active a:hover {
	border-color: transparent;
}

.widget .switcher .lava-item a {
	text-indent: -9999px;
	display: block;
	float: none;
}

.widget .switcher .lava-anim-to a {
	border-color: transparent !important;
}

/* slideset styles */
.widget .slideset {
	position: relative;
	list-style: none;
	height: 256px;
	padding: 0;
	margin: 0;
}

.widget .slideset li {
	position: absolute;
	overflow: hidden;
	background: #fff;
	height: 256px;
	width: 750px !important;
	top: 0;
	left: 0;
	z-index: 1;
	-webkit-transition: opacity 1.5s;
	-o-transition: opacity 1.5s;
	transition: opacity 1.5s;
	opacity: 0;
}

.widget .slideset li.active {
	z-index: 2;
	opacity: 1;
}

.widget .slideset li img {
	/* margin: 0 0 0 25px; */
	max-width: 340px;
	height: 256px;
}

.widget .slideset .description {
	border-radius: 5px;
	background: #f5f5f5;
	padding: 20px;
	color: #000 !important;
	float: right;
	width: 50%;
}