/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */

/*
 * General Widgetkit Style Sheet
 */


/* Grid and Clearing Tools
----------------------------------------------------------------------------------------------------*/

.clearfix:before,
.clearfix:after {
	content: "";
    display: table;
}
.clearfix:after { clear: both; }

/* Grid Units */
.width20 { width: 20%; }
.width25 { width: 25%; }
.width33 { width: 33.333%; }
.width50 { width: 50%; }


/* Content Helpers
----------------------------------------------------------------------------------------------------*/

/* Fluid images + Removes gap to image containers */
.wk-slideshow img,
.wk-gallery img,
.spotlight img,
a[data-lightbox] img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

.wk-slideset img,
.wk-slideshow canvas { vertical-align: middle; }

/* Force non-fluid image */
.wk-slideset img { max-width: none; }

/* Force Block element */
.wk-content > a:first-child { display: block; }

/* Remove margin */
.wk-content > *:first-child { margin-top: 0;}
.wk-content > *:last-child { margin-bottom: 0;}


/* Widget: Slideshow
----------------------------------------------------------------------------------------------------*/

.wk-slideshow { visibility: hidden; }

.wk-slideshow,
.wk-slideshow .slides { position: relative; }

.wk-slideshow .slides,
.wk-slideshow .nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wk-slideshow .slides > li { position: absolute; }
.wk-slideshow .slides > li > a { display: block; }

.wk-slideshow .nav li { cursor: pointer; }
.wk-slideshow .nav span { display: block; }

.wk-slideshow .next,
.wk-slideshow .prev {
	position: absolute;
	z-index: 5;
	cursor: pointer;
}

.wk-slideshow .caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	padding: 10px;
	background: rgba(0,0,0,0.5);
}

.wk-slideshow .captions { display: none; }
.wk-slideshow .caption,
.wk-slideshow .caption a { color: #fff; }
.wk-slideshow .caption a { text-decoration: underline; }


/* Widget: Slideset
----------------------------------------------------------------------------------------------------*/

.wk-slideset { visibility: hidden; }

.wk-slideset .sets { overflow: hidden; }

.wk-slideset .set,
.wk-slideset .nav {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wk-slideset .set {
	display: none;
	position: relative;
	text-align: center;
	-webkit-transform-origin: left top;
	-moz-transform-origin: left top;
	-ms-transform-origin: left top;
	-o-transform-origin: left top;
	transform-origin: left top;
}
.wk-slideset .set:first-child { display: block; }

.wk-slideset .set > li { position: absolute; }

.wk-slideset .nav span {
	display: block;
	cursor: pointer;
}

.wk-slideset .next,
.wk-slideset .prev {
	position: absolute;
	z-index: 5;
	cursor: pointer;
}


/* Widget: Accordion
----------------------------------------------------------------------------------------------------*/

.wk-accordion .toggler {
	margin: 0;
	cursor: pointer;
}


/* Responsive
----------------------------------------------------------------------------------------------------*/

.wk-accordion,
.wk-map { max-width: 100%; }

/* Only Phones */
@media (max-width: 767px) {

	.wk-slideshow .caption {
		font-size: 10px;
		line-height: 14px;
	}

}/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */


/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */

/*
 * Widgetkit Accordion: Default Style
 */


/* Toogler
----------------------------------------------------------------------------------------------------*/

.wk-accordion-default { margin-bottom: -10px; }

.wk-accordion-default .toggler {
	margin-bottom: 10px;
	padding: 7px;
	border: 1px solid #ddd;
	background: #F5F5F5;
	background: -moz-linear-gradient(top, #FAFAFA 0%, #F5F5F5 100%);
	background: -webkit-linear-gradient(top, #FAFAFA 0%, #F5F5F5 100%);
	background: -o-linear-gradient(top, #FAFAFA 0%, #F5F5F5 100%);
	background: linear-gradient(to bottom, #FAFAFA 0%, #F5F5F5 100%);
    border-radius: 5px;
    box-shadow: 0 1px 0 #fff inset;
    text-shadow: 0 1px 0 #fff;
}


/* Content
----------------------------------------------------------------------------------------------------*/

.wk-accordion-default .content { padding: 10px; }/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */

/*
 * Widgetkit Gallery: Simple Style
 */


/* Navigation
----------------------------------------------------------------------------------------------------*/

.wk-slideshow-inside .nav {
	position: absolute;
	bottom: 0;
	z-index: 3;
	width: 100%; /* IE9 + IE8 */
	overflow: hidden;
}

.wk-slideshow-inside .nav li {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 7px 7px 0 0;
	background: #fff;
	float: left;
}

.wk-slideshow-inside .nav:hover img { opacity: 0.4; }
.wk-slideshow-inside .nav li:hover img { opacity: 1; }

/* Transition */
.wk-slideshow-inside .nav li img {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}


/* Buttons
----------------------------------------------------------------------------------------------------*/

.wk-slideshow-inside > div { position: relative; }

.wk-slideshow-inside > div:hover .next,
.wk-slideshow-inside > div:hover .prev {
	top: 50%;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	background: url(media/widgetkit/widgets/gallery/styles/inside/images/buttons.png) 0 50px no-repeat;
}

.wk-slideshow-inside > div:hover .next {
	right: 30px;
	background-position: 0 0;
}

.wk-slideshow-inside > div:hover .prev {
	left: 30px;
	background-position: 0 -50px;
}


/* Caption
----------------------------------------------------------------------------------------------------*/

.wk-slideshow-inside .caption {
	bottom: auto;
	top: 0;
}


/* Responsive
----------------------------------------------------------------------------------------------------*/

/* Only Touch Devices */
@media (max-device-width: 1024px) {

	.wk-slideshow-inside .next,
	.wk-slideshow-inside .prev { display: none; }

}/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */

/*
 * Widgetkit Gallery: Showcase Style
 */


/* Slideshow: Buttons
----------------------------------------------------------------------------------------------------*/

.wk-gallery-showcase .slides-container { position: relative; }

.wk-gallery-showcase .slides-container:hover .next,
.wk-gallery-showcase .slides-container:hover .prev {
	top: 50%;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	background: url(media/widgetkit/widgets/gallery/styles/showcase/images/buttons.png) 0 50px no-repeat;
}

.wk-gallery-showcase .slides-container:hover .next {
	right: 30px;
	background-position: 0 0;
}

.wk-gallery-showcase .slides-container:hover .prev {
	left: 30px;
	background-position: 0 -50px;
}


/* Slideset: Container
----------------------------------------------------------------------------------------------------*/

.wk-gallery-showcase .wk-slideset > div { padding: 0 60px; }
.wk-gallery-showcase .wk-slideset.no-buttons > div { padding: 0; }

.wk-gallery-showcase .wk-slideset .sets { padding: 10px 0 3px 0; }


/* Slideset: Content
----------------------------------------------------------------------------------------------------*/

.wk-gallery-showcase .wk-slideset .set > li > div {
	margin: 0 3px;
	cursor: pointer;
}

.wk-gallery-showcase .wk-slideset .set > li > div > img { display: block; }

.wk-gallery-showcase .wk-slideset .set:hover > li > div { opacity: 0.4; }
.wk-gallery-showcase .wk-slideset .set > li > div:hover { opacity: 1; }

/* Transition */
.wk-gallery-showcase .wk-slideset .set:hover > li > div {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}



/* Slideset: Buttons
----------------------------------------------------------------------------------------------------*/

.wk-gallery-showcase .wk-slideset > div { position: relative; }

.wk-gallery-showcase .wk-slideset > div .next,
.wk-gallery-showcase .wk-slideset > div .prev {
	top: 50%;
	width: 30px;
	height: 30px;
	margin-top: -13px;
	background: url(media/widgetkit/widgets/gallery/styles/showcase/images/navigation_buttons.png) 0 30px no-repeat;
}

.wk-gallery-showcase .wk-slideset > div .next {
	right: 25px;
	background-position: 0 0;
}

.wk-gallery-showcase .wk-slideset > div .prev {
	left: 25px;
	background-position: 0 -90px;
}


.wk-gallery-showcase .wk-slideset > div .next:hover { background-position: 0 -30px; }
.wk-gallery-showcase .wk-slideset > div .next:active { background-position: 0 -60px; }
.wk-gallery-showcase .wk-slideset > div .prev:hover { background-position: 0 -120px; }
.wk-gallery-showcase .wk-slideset > div .prev:active { background-position: 0 -150px; }


/* Responsive
----------------------------------------------------------------------------------------------------*/

/* Only Touch Devices */
@media (max-device-width: 1024px) {

	.wk-gallery-showcase .slides-container .next,
	.wk-gallery-showcase .slides-container .prev { display: none; }

}/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */

/*
 * Widgetkit Gallery: Showcase Box Style
 */


.wk-gallery-showcasebox .slides-container {
	border-radius: 5px 5px 0 0;
	overflow: hidden;
}


/* Slideshow: Buttons
----------------------------------------------------------------------------------------------------*/

.wk-gallery-showcasebox .slides-container { position: relative; }

.wk-gallery-showcasebox .slides-container:hover .next,
.wk-gallery-showcasebox .slides-container:hover .prev {
	top: 50%;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	background: url(media/widgetkit/widgets/gallery/styles/showcase_box/images/buttons.png) 0 50px no-repeat;
}

.wk-gallery-showcasebox .slides-container:hover .next {
	right: 30px;
	background-position: 0 0;
}

.wk-gallery-showcasebox .slides-container:hover .prev {
	left: 30px;
	background-position: 0 -50px;
}


/* Slideset: Container
----------------------------------------------------------------------------------------------------*/

.wk-gallery-showcasebox .wk-slideset > div {
	padding: 0 60px;
	border: 1px solid #222;
	background: #555;
	background: -moz-linear-gradient(top, #444 0%, #555 7%, #444 100%);
	background: -webkit-linear-gradient(top, #444 0%, #555 7%, #444 100%);
	background: -o-linear-gradient(top, #444 0%, #555 7%, #444 100%);
	background: linear-gradient(to bottom, #444 0%, #555 7%, #444 100%);
	box-shadow: 0 0 20px rgba(0,0,0,0.5) inset,
				0 0 50px rgba(0,0,0,0.2) inset;
	border-radius: 0 0 5px 5px;
}
.wk-gallery-showcasebox .wk-slideset.no-buttons > div { padding: 0; }

.wk-gallery-showcasebox .wk-slideset .sets { padding: 15px 0; }


/* Slideset: Content
----------------------------------------------------------------------------------------------------*/

.wk-gallery-showcasebox .wk-slideset .set > li > div {
	margin: 0 3px;
	padding: 1px;
	background: #333;
	background: -moz-linear-gradient(top, #333 80%, #222 100%);
	background: -webkit-linear-gradient(top, #333 80%, #222 100%);
	background: -o-linear-gradient(top, #333 80%, #222 100%);
	background: linear-gradient(to bottom, #333 80%, #222 100%);
    border-radius: 5px;
	cursor: pointer;
}

.wk-gallery-showcasebox .wk-slideset .set > li > div > div {
	padding: 5px;
	background: #444;
	border-radius: 5px;
	box-shadow: 0 1px 0 rgba(255,255,255,0.1) inset;
}

.wk-gallery-showcasebox .wk-slideset .set > li > div > div > img {
	display: block;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
	opacity: 0.8;
}

/* Hover */
.wk-gallery-showcasebox .wk-slideset .set > li:hover > div {
	background: #333;
	background: -moz-linear-gradient(top, #333, #222);
	background: -webkit-linear-gradient(top, #333, #222);
	background: -o-linear-gradient(top, #333, #222);
	background: linear-gradient(to bottom, #333, #222);
	box-shadow: 0 2px 3px rgba(0,0,0,0.3);
}

.wk-gallery-showcasebox .wk-slideset .set > li:hover > div > div {
	background: #666;
	background: -moz-linear-gradient(top, #666, #555);
	background: -webkit-linear-gradient(top, #666, #555);
	background: -o-linear-gradient(top, #666, #555);
	background: linear-gradient(to bottom, #666, #555);
}

.wk-gallery-showcasebox .wk-slideset .set > li:hover > div > div > img { opacity: 1; }

/* Active */
.wk-gallery-showcasebox .wk-slideset .set > li.active > div {
	background: #222;
	background: -moz-linear-gradient(top, #111, #222);
	background: -webkit-linear-gradient(top, #111, #222);
	background: -o-linear-gradient(top, #111, #222);
	background: linear-gradient(to bottom, #111, #222);
	box-shadow: 0 0 1px rgba(255,255,255,0.2);
}

.wk-gallery-showcasebox .wk-slideset .set > li.active > div > div {
	background: #444;
    box-shadow: 0 1px 4px rgba(0,0,0,0.7) inset;
}

.wk-gallery-showcasebox .wk-slideset .set > li.active > div > div > img { opacity: 1; }


/* Slideset: Buttons
----------------------------------------------------------------------------------------------------*/

.wk-gallery-showcasebox .wk-slideset > div { position: relative; }

.wk-gallery-showcasebox .wk-slideset > div .next,
.wk-gallery-showcasebox .wk-slideset > div .prev {
	top: 50%;
	width: 30px;
	height: 32px;
	margin-top: -16px;
	background: url(media/widgetkit/widgets/gallery/styles/showcase_box/images/navigation_buttons.png) 0 0 no-repeat;
}

.wk-gallery-showcasebox .wk-slideset > div .next {
	right: 25px;
	background-position: 0 0;
}

.wk-gallery-showcasebox .wk-slideset > div .prev {
	left: 25px;
	background-position: 0 -96px;
}


.wk-gallery-showcasebox .wk-slideset > div .next:hover { background-position: 0 -32px; }
.wk-gallery-showcasebox .wk-slideset > div .next:active { background-position: 0 -64px; }
.wk-gallery-showcasebox .wk-slideset > div .prev:hover { background-position: 0 -128px; }
.wk-gallery-showcasebox .wk-slideset > div .prev:active { background-position: 0 -160px; }


/* Responsive
----------------------------------------------------------------------------------------------------*/

/* Only Touch Devices */
@media (max-device-width: 1024px) {

	.wk-gallery-showcasebox .slides-container .next,
	.wk-gallery-showcasebox .slides-container .prev { display: none; }

}

/* Only Phones */
@media (max-width: 767px) {

	.wk-gallery-showcasebox .wk-slideset > div { padding: 0 40px; }

	.wk-gallery-showcasebox .wk-slideset > div .next { right: 5px; }
	.wk-gallery-showcasebox .wk-slideset > div .prev { left: 5px; }

}/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */

/*
 * Widgetkit Gallery: Slider Style
 */


.wk-gallery-slider { overflow: hidden; }

.wk-gallery-slider ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wk-gallery-slider ul li {
	float: left;
	overflow: hidden;
}

.wk-gallery-slider ul li > a { display: block; }

.wk-gallery-slider ul li .spotlight { max-width: none; }


/* Only Phones */
@media (max-width: 767px) {

	.wk-gallery-slider ul li .spotlight {
		font-size: 10px;
		line-height: 14px;
	}

}