/* css reset */

img {border-style:none;}
a {
	text-decoration:none;
}
a:hover {text-decoration:underline;}
input,
textarea,
select {
	font:100% Arial, Helvetica, sans-serif;
	vertical-align:middle;
	color:#000;
}
form, fieldset {
	margin:0;
	padding:0;
	border-style:none;
}
/* widget styles */
.widget {
	/* border: 1px solid #bababa;
	border-radius: 5px;
	background: #fff;
	font-size: 14px;
	margin: 100px auto;
	padding: 10px; */
	padding: 1% 0 5%;
	margin: 20px 0;
	height:40vh;
	width: 100%;
}
.widget-c .control-links {
	border-top: 1px dotted #ddd;
	overflow: hidden;
	margin: 10px 0;
	padding: 10px 1px 0;
}
.widget-c .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-c .switcher {
	overflow: hidden;
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}
.widget-c .switcher li {
	margin: 0 5px 10px 0;
	display:inline-block
}
.widget-c .switcher li a { 
	display:block;
	border: 1px solid transparent;
	text-align: center;
	color: #447FDB;
	padding: 8px 20px;
	line-height: 26px;
	min-width:150px;
	border:1px solid #447FDB;
}
.widget-c .switcher li a:hover {
	border-color: #eee;
	text-decoration: none;
}
.widget-c .switcher li a:active {
	line-height: 28px;
}
.widget-c .switcher .active a {
	background: #447FDB;
	color: #fff;
}
.widget-c .switcher .active a:hover {
	border-color: transparent;
}
.widget-c .switcher .lava-item a {
	text-indent: -9999px;
	display: block;
	float: none;
}
.widget-c .switcher .lava-anim-to a {
	border-color: transparent !important;
}
/* slideset styles */
.widget .slideset {
	position: relative;
	list-style: none;
	min-height: 300px;
	padding: 0;
	margin: 0;
}
.widget .slideset li {
	position: absolute;
	overflow: hidden;
	min-height: 300px;
	top: 0;
	left: 0;
	z-index: 1;
	-webkit-transition: opacity 1.5s;
	-o-transition: opacity 1.5s;
	transition: opacity 1.5s;
	opacity: 0;
	display:none;
	-webkit-transition: display 1.5s;
	-o-transition: display 1.5s;
	transition: display 1.5s;
}
.widget .slideset li.active {
	z-index: 2;
	opacity:1;
	display: block;
}
.widget .slideset li img {
	margin: 0 0 0 25px;
	width: 100%;
	height: auto;
}
.widget .slideset .description {
	padding: 10% 6%;
	font-size:1.2rem;
}

@media(max-width: 768px){
	.widget {
		position:relative;
		min-height:90vh;
		height:auto;
	}
	.widget .slideset li {
		position: relative;
		float: left;
	}
}