.sircon-showcaser,
.sircon-showcaser .nav-thumbs,
.sircon-showcaser .nav-with-thumb,
.sircon-showcaser .slides-container {
	position: relative;
}

.sircon-showcaser .nav-arrows,
.sircon-showcaser .nav-indexes,
.sircon-showcaser .showcase-designelement {
	position: absolute;
}

/*
	Main elements z-index
*/
.sircon-showcaser .slides-container		  {z-index: 20;}
.sircon-showcaser .showcase-designelement {z-index: 25;}
.sircon-showcaser .nav-thumbs			  {z-index: 30;}
.sircon-showcaser .nav-arrows			  {z-index: 40;}
.sircon-showcaser .nav-indexes			  {z-index: 50;}


/*
	Slide elements
*/
.sircon-showcaser .figure-wrap	{ z-index: 10;}
.sircon-showcaser .textly		{ z-index: 20;}


/* Reset margins */
.sircon-showcaser .the-figure,
.sircon-showcaser .title,
.sircon-showcaser .description * {
	margin: 0;
}


/*
 	SLIDE - positioning and visibility
*/
.sircon-showcaser {
	background: #333;
}

.sircon-showcaser .slide {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden; /* because the ken burns */
	will-change: transform;
	width: 100%;
	z-index: 90;
	pointer-events: none;
	opacity: 0;
	-webkit-transition: opacity 1s;
	-moz-transition: opacity 1s;
	transition: opacity 1s;
}

/* the current slide */
.sircon-showcaser .is-swipevisible {
	opacity: 1;
	-webkit-transition: none;
	-moz-transition: none;
	transition: none;
}

.sircon-showcaser .current {
	position: relative;
	z-index: 9001;
	pointer-events: auto;
	opacity: 1;
}


/*
	LINK formats and linkstuff
*/
.sircon-showcaser .entire-slide-link,
.sircon-showcaser .figure-link {
	display: block;
	text-decoration: none;
}

.sircon-showcaser .entire-slide-link * {
	text-decoration: none;
}


/*
	THE IMAGE
*/
.sircon-showcaser .figure-wrap {
	position: relative;
	overflow: hidden;
}

.sircon-showcaser .the-figure {
	background-repeat: no-repeat;
}

.sircon-showcaser .the-img {
	opacity: 0;
	height: auto;
	width: 100%;
}


/* Image formats */
.sircon-showcaser .img-format-cover .the-figure {
	background-size: cover;
}

.sircon-showcaser .img-format-contain .the-figure {
	background-size: contain;
}


/* Image alignments */
/* Default */
.sircon-showcaser .the-figure,
.sircon-showcaser .img-align-center-middle .the-figure { background-position: center center; }

/* All other aligments*/
.sircon-showcaser .img-align-left-top .the-figure { background-position: left top; }
.sircon-showcaser .img-align-left-middle .the-figure { background-position: left center; }
.sircon-showcaser .img-align-left-bottom .the-figure { background-position: left bottom; }
.sircon-showcaser .img-align-center-top .the-figure { background-position: center top; }
.sircon-showcaser .img-align-center-bottom .the-figure { background-position: center bottom; }
.sircon-showcaser .img-align-right-top .the-figure { background-position: right top; }
.sircon-showcaser .img-align-right-middle .the-figure { background-position: right center; }
.sircon-showcaser .img-align-right-bottom .the-figure { background-position: right bottom; }


/*
	basic textual display

	Small screens show static container under the image
	Larger screens show absoluted container on the image
*/
.sircon-showcaser .textly {
	position: relative;
	background: rgba(0,0,0,0.8);
	padding: 10px 20px;
}

.sircon-showcaser .textly.no-content{
	display: none;
}

@media(min-width: 768px){
	.sircon-showcaser .textly {
		position: absolute;
		bottom: 40px;
		left: 0;
		max-width: calc(100% - 80px);
		padding: 25px 30px 25px 100px;
	}

	.sircon-showcaser .visual-button .textly {
		padding-right: 90px;
	}
}

/* Title and description - Smaller on smaller screens */
.sircon-showcaser .title{
	font-size: 24px;
}

.sircon-showcaser .description{
	font-size: 15px;
	line-height: 1.3;
}

@media(min-width: 768px){
	.sircon-showcaser .title {
		font-size: 34px;
	}

	.sircon-showcaser .description {
		font-size: 20px;
		display: block;
	}
}

@media(min-width: 1024px){
	.sircon-showcaser .title {
		font-size: 60px;
	}

	.sircon-showcaser .description {
		font-size: 22px;
	}
}

/* Colortheme - default. Dark background, White text */
.sircon-showcaser .title,
.sircon-showcaser .description,
.sircon-showcaser .description * {
	color: #fff;
}

/* Colortheme inverted - Light background, dark text */
.sircon-showcaser .colortheme-inverted .textly {
	background: rgba(255,255,255,0.8);
}

.sircon-showcaser .colortheme-inverted .title,
.sircon-showcaser .colortheme-inverted .description,
.sircon-showcaser .colortheme-inverted .description * {
	color: #222;
}


/*
	The button - or the alternative button
*/
.sircon-showcaser .slide-btn-outer {
	position: relative;
}

.sircon-showcaser .slide-btn {
	display: block;
}


/* Textly button  */
.sircon-showcaser .textly-button .slide-btn-outer::after {
	clear: both;
	display: block;
	content: "";
}

.sircon-showcaser .textly-button .slide-btn {
	float: right;
}

@media(min-width: 768px){
	.sircon-showcaser .textly-button .slide-btn-outer {
		float: none;
		position: absolute;
		right: 20px;
		top: auto;
	    bottom: -20px;
		width: auto;
	}
}

.sircon-showcaser .textly-button .slide-btn {
    background-color: #045f93;
    padding: 5px 20px;
    color: #fff;
}


/* Visual button */
.sircon-showcaser .visual-button .slide-btn-outer {
	width: 70px;
}
.sircon-showcaser .visual-button .slide-btn-outer,
.sircon-showcaser .visual-button .slide-btn {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
}

.sircon-showcaser .visual-button .slide-btn {
	left: 0;
	background:#045f93;
	color: transparent;
	font-size: 0;
	width: 100%;
	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	transition: background 0.4s;
}

.sircon-showcaser .visual-button .slide-btn::before {
	display: block;
	content: "";
	height: 70%;
	width: 70%;
	background: transparent url(arrow-right.png) left 50% no-repeat;
	background-size: 200% 100%;
	position: absolute;
	top: 15%;
	left: 15%;
}


/*
	Designelement, optional
*/
.sircon-showcaser .showcase-designelement {
	position: absolute;
	z-index: 9100;
    bottom: 130px;
    right: 20px;
}

@media(min-width: 768px){
	.sircon-showcaser .showcase-designelement {
	    bottom: 30px;
	    right: 80px;
	}
}


/*
	Some common nav
*/
.sircon-showcaser .nav-index,
.sircon-showcaser .nav-arrow {
	cursor: pointer;
}


/*
	basic nav index visibility
*/
.sircon-showcaser .nav-indexes {
	top: 10px;
	left: 0;
	right: 0;
	height: 0;
	text-align: center;
}

.sircon-showcaser .nav-indexes .nav-index {
	display: inline-block;
	margin: 0 4px;
	height: 30px;
	width: 30px;
	background: rgba(0,0,0,0.8);
	color: #fff;
	font-size: 13px;
	padding-top: 5px;
	transition: background 0.3s, color 0.3s;
}

.sircon-showcaser .nav-index:hover,
.sircon-showcaser .nav-indexes .current {
	background: rgba(255,255,255,0.8);
	color: #222;
}


/*
	basic nav thumbs visibility
*/

.sircon-showcaser .nav-thumbs {
	background: #eee;
	padding: 10px;
	overflow: hidden;
}

.sircon-showcaser .nav-thumbs .swipeablecontainer{
	white-space: nowrap;
}

.sircon-showcaser .nav-with-thumb {
	display: inline-block;
	vertical-align: top;
	height: 80px;
	width: 80px;
	margin: 0 0 0 10px;
}

.sircon-showcaser .nav-with-thumb:first-child {
	margin-left: 0;
}

.sircon-showcaser .nav-thumb {
	margin: 0;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: 50%;
}

.sircon-showcaser .nav-thumb > img {
	opacity: 0;
	width: 100%;
}

.sircon-showcaser .nav-with-thumb::after {
	background: #045f93;
	height: 5px;
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transition: opacity 0.3s;
}

.sircon-showcaser .nav-thumbs .current::after {
	opacity: 1;
}


/*
	ARROWS
*/
.sircon-showcaser .outer-slidearrows {
	display: none;
}

.sircon-showcaser .inner-slidearrows {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9100;
	pointer-events: none;
}

.sircon-showcaser .nav-arrow {
	pointer-events: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 70px;
	background: rgba(0,0,0,0.1);
	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	transition: background 0.4s;
}

.sircon-showcaser .nav-arrow:hover {
	background-color: rgba(0,0,0,0.7);
}

.sircon-showcaser .nav-arrow::before {
	content: "";
	display: block;
	height: 70px;
	width: 40px;
	position: absolute;
	top: calc(50% - 20px);
	left: calc(50% - 20px);
	background: url(arrow-right.png) left 50% no-repeat;
	background-size: 80px 70px;
}

.sircon-showcaser .nav-prev::before {
	-webkit-transform: scaleX(-1);
	-moz-transform: scaleX(-1);
	transform: scaleX(-1);
}

.sircon-showcaser .nav-prev{left: 0;}
.sircon-showcaser .nav-next{right: 0;}

/* inverted colors */
.sircon-showcaser.colortheme-inverted .nav-arrow {
	background-color: rgba(255,255,255,0.1);
}

.sircon-showcaser.colortheme-inverted .nav-arrow:hover {
	background-color: rgba(255,255,255,0.7);
}

.sircon-showcaser.colortheme-inverted .nav-arrow::before {
	background-position: right 50%;
}

/* phone styles */
@media(max-width: 768px){
	.sircon-showcaser .nav-arrow {
		top: calc(50% - 40px);
		height: 80px;
	}
	.sircon-showcaser .nav-arrow::before {
		height: 40px;
	}
}


/*
	VIDEO SPECIFICS slidestyle!
*/
.sircon-showcaser .no-image.template-video {
	padding-bottom: 50%; /* usually, the image will provide the height. Not in this case.. Fixed! */
}

.sircon-showcaser .slide-videoframe {
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;
	z-index: 9001;
	opacity: 0;
}

.sircon-showcaser .the-figure {
	opacity: 1;
}

.sircon-showcaser .video-ready .the-figure,
.sircon-showcaser .video-ready::before,
.sircon-showcaser .slide-videoframe {
	-webkit-transition: opacity 2s;
	-moz-transition: opacity 2s;
	transition: opacity 2s;
}

/* Hide the figure while the video is playing */
.sircon-showcaser .video-playing .slide-videoframe {
	opacity: 1;
}

.sircon-showcaser .video-playing .the-figure {
	opacity: 0;
}

/* Visualize how the user can actually interact with this slide by clicking */
.sircon-showcaser .video-ready::before {
	content: "";
	display: block;
	opacity: 1;
	height: 120px;
	width: 120px;
	background: url(playpause.png) left top no-repeat;
	background-size: 240px 240px;
	position: absolute;
	z-index: 9009;
	top: calc(50% - 60px);
	left: calc(50% - 60px);
	cursor: pointer;
	pointer-events:none;
}

.sircon-showcaser .video-playing::before {
	background-position: left bottom;
	opacity: 0;
}


/* Hide textly when playing the video */
.sircon-showcaser .hide-textly-on-play .textly {
	opacity: 1;
	-webkit-transition: opacity 1s 1s;
	-moz-transition: opacity 1s 1s;
	transition: opacity 1s 1s;
}

.sircon-showcaser .video-playing.hide-textly-on-play .textly {
	opacity: 0;
	pointer-events: none;
}


/* Video Muter */
.sircon-showcaser .video-muter {
	height: 40px;
	width: 50px;
	background: url(mute-icon.png) 50% top no-repeat;
	background-size: 50px 80px;
	z-index: 9100;
	position: absolute;
	top: 20px;
	right: 110px;
	opacity: 0;
	-webkit-transition: opacity 0.3s 1s;
	-moz-transition: opacity 0.3s 1s;
	transition: opacity 0.3s 1s;
	cursor: pointer;
}

.sircon-showcaser .video-muted .video-muter {
	background-position: 50% bottom;
}

.sircon-showcaser .video-playing .video-muter {
	opacity: 0.5;
}

.sircon-showcaser .video-playing .video-muter:hover {
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	transition: opacity 0.3s;
}


/* Ken Burns */
@media(min-width: 768px){
	.sircon-showcaser.effects-kenburns .slide .the-figure {
		animation: 40s ease-in-out 0s infinite alternate kenburns;
	}
	.sircon-showcaser.effects-kenburns .slide:nth-child(4n+1) .the-figure{
		-webkit-transform-origin: top right;
		transform-origin: top right;
	}
	.sircon-showcaser.effects-kenburns .slide:nth-child(4n+2) .the-figure{
		-webkit-transform-origin: bottom left;
		transform-origin: bottom left;
	}
	.sircon-showcaser.effects-kenburns .slide:nth-child(4n+3) .the-figure{
		-webkit-transform-origin: center left;
		transform-origin: center left;
	}
	.sircon-showcaser.effects-kenburns .slide:nth-child(4n+4) .the-figure{
		-webkit-transform-origin: center right;
		transform-origin: center right;
	}
}

@keyframes kenburns{
	0% {
		-webkit-transform: scale(1.0, 1.0);
		-ms-transform: scale(1.0, 1.0);
		transform: scale(1.0, 1.0);
	}
	75% {
		-webkit-transform: scale(1.1, 1.1);
		-ms-transform: scale(1.1, 1.1);
		transform: scale(1.1, 1.1);
	}
	100% {
		-webkit-transform: scale(1.0, 1.0);
		-ms-transform: scale(1.0, 1.0);
		transform: scale(1.0, 1.0);
	}
}


/*
	Title in thumb
*/
.sircon-showcaser .nav-with-thumb .thumb-title {
	overflow: hidden;
	background: rgba(0,0,0,0.7);
	color: #fff;
	padding: 5px;
	line-height: 1.2;
	font-size: 12px;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	transition: opacity 0.2s;
	text-align: center;
}



/*
	Accomodate swiping
*/
.sircon-showcaser.is-swiping * {
	transition: none!important;
}
.sircon-showcaser.is-swiping .slides-container{
	overflow:hidden;
}