/**
 * styling for DIVAS slider - skin 1
 * @author Federica Sibella - Michela Chiucini
 * @date 2014/04/10
 * @version 0.1
 */

/*
 * divas main style
 */
#slider_wrapper {
	overflow: hidden;
}

.divas-slider {
	position: relative;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	height: auto;
	overflow: hidden;
}

.divas-slider-container {
	position: relative;
	margin: 0;
	padding: 0;
}

.divas-slider-container:after {
  content: "";
  display: table;
  clear: both;
}

.divas-slide {
	position: relative;
	margin: 0;
	padding: 0;
	float: left;
	overflow: hidden;
}

.divas-slide img {
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	outline: 0 none;
	-webkit-backface-visibility: hidden;
  	-moz-backface-visibility: hidden;
 	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	margin-top: -22px;
}

/*********************************
 * skin 1
 *********************************/

/*
 * divas slide transitions
 */
.divas-slide-transition-left {    
	 -webkit-transition: left 1s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	 -moz-transition: left 1s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	 -o-transition: left 1s cubic-bezier(0.23, 1, 0.32, 1) 0s;
	 transition: left 1s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}

/*
 * divas navigation buttons
 */
.divas-navigation {
	clear: both;
	position: absolute;
	margin: 0px auto;
	height: 0;
	width: 100%;
	text-align: center;
	top: 47%;
	top: calc(50% - 33px);
}
.divas-has-bullets .divas-navigation {
    top: calc(50% - 61px);
}

.divas-navigation span {
	height: 66px;
	outline: 0 none; 
	position: absolute;
	width: 42px; 
	z-index: 9999;
	cursor: pointer;
	margin: 0;
	font-size: 3em;
	color: #fff;
}

.divas-navigation span:hover {
	color: #ffffff;
}

.divas-controls span.divas-start,
.divas-controls span.divas-stop {
	display: none;
}

.divas-navigation span.divas-prev {
	left: 1em;
	background: url("http://www.codingdivas.net/divasslider/images/prev.svg") no-repeat top center rgba(0, 0, 0, 0);
}

.divas-navigation span.divas-next {
	right: 1em;
	background: url("http://www.codingdivas.net/divasslider/images/next.svg") no-repeat top center rgba(0, 0, 0, 0);
}

@media screen and (max-width: 40em) {
	.divas-navigation span.divas-prev,
	.divas-navigation span.divas-next {
		background-position: center center;
		-webkit-background-size: 75% auto;
		-moz-background-size: 75% auto;
		-o-background-size: 75% auto;
		background-size: 75% auto;
	}
	.divas-navigation span.divas-prev {
		left: 0.5em;
	}
	.divas-navigation span.divas-next {
		right: 0.5em;
	}
}	

/*
 * divas navigation bullets
 */
.divas-bullets {
	clear: both;
	position: relative;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
}

.divas-bullets ul {
	list-style: none;
}

.divas-bullet {
  	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 1.5em;
    display: inline-block;
    height: 16px;
    margin: 0 0.3em;
    text-indent: -9999px;
    width: 16px;
}

.divas-bullet-current {
   	background-color: rgba(0, 0, 0, 0.25);
}

/**
 * divas zoom effect for images
 * (you can add class .divas-zoom to any image you want to animate)
 */
li img.divas-zoom  {
	-webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
	backface-visibility: hidden;
}

li:hover > img.divas-zoom  {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
	opacity: 0.9;
}


/**
 * styles for demo 2 single image
 * (divas-full)
 */
.divas-full li.divas-active img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
	-webkit-transition: -webkit-transform 4s ease-in-out;
    -moz-transition: -moz-transform 4s ease-in-out;
    -o-transition: -o-transform 4s ease-in-out;
    transition: transform 4s ease-in-out;
}

.divas-full p {
	font-style: normal;
	font-weight: normal;
	padding: 0 20px;
}

.divas-full p,
.divas-full h1 {
	text-align: center;
	max-width: 100%;
}

.divas-full h1 {
	padding: 0 40px;
	text-transform: none;
	font-weight: 900;
	letter-spacing: 0;
	font-style: italic;
}
	 
.divas-full li .divas-caption {
	margin: 0;
	top: 30%;
	left: 38%;
	text-align: center;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: rgba(0,0,0,.3);
	-webkit-transition: -webkit-transform 0.5s ease-in-out;
    -moz-transition: -moz-transform 0.5s ease-in-out;
    -o-transition: -o-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
}

@media screen and (min-width: 35.001em) {
	.divas-full li .divas-caption {
		height: 250px;
		width: 250px;
	    top: calc(50% - 125px);
		left: calc(50% - 125px);
		display: -webkit-box;
		display: -moz-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
	    -webkit-flex-direction: column;
	    -msflex-direction: column;
	    flex-direction: column;
	    -webkit-flex-wrap: nowrap;
	    -ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	    -webkit-justify-content: center;
	    justify-content: center;
	    -webkit-align-content: stretch;
	    align-content: stretch;
	    -webkit-align-items: center;
	    align-items: center;
	}
	
	.divas-full li.divas-active .divas-caption {
		top: 38%;
	    top: calc(50% - 125px);
	}
	
	.divas-full li.divas-active .divas-caption {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
	
	.divas-full h1:after {
		background: #fff;
		display: block;
		width: 80px;
		height: 1px;
		content: "";
		margin: 15px auto 23px;
	}
}	

@media screen and (min-width: 56.751em) {
	.divas-full li .divas-caption {
		height: 300px;
		width: 300px;
	    top: calc(50% - 150px);
		left: calc(50% - 150px);
	}
	
	.divas-full li.divas-active .divas-caption {
	    top: calc(50% - 150px);
	}
}	

@media screen and (min-width: 75.001em) {
	.divas-full li .divas-caption {
		height: 350px;
		width: 350px;
	    top: calc(50% - 175px);
		left: calc(50% - 175px);
	}
	
	.divas-full li.divas-active .divas-caption {
	    top: calc(50% - 175px);
	}
}	

@media screen and (min-width: 87.501em) {
	.divas-full li .divas-caption {
		height: 400px;
		width: 400px;
	    top: calc(50% - 200px);
		left: calc(50% - 200px);
	}
	
	.divas-full li.divas-active .divas-caption {
	    top: calc(50% - 200px);
	}
}	

@media screen and (max-height: 43.75em) {
	.divas-full #slider_wrapper,
	.divas-full .divas-slide {
		max-height: 500px;
	}
}	
@media screen and (max-height: 57.5em) {
	.divas-full #slider_wrapper,
	.divas-full .divas-slide {
		max-height: 720px;
	}
}	

/**
 * styles for demo 3 roll images
 * (divas-roll)
 */

.divas-roll .divas-wing {
	display: none;
}

.divas-roll > ul > li {
	background: #1a1a1a;
}

.divas-roll > ul > li:after {
	position: absolute;
	display: block;
	background: #fff;
	height: 100%;
	width: 1px;
	top: 0; 
	right: 0;
	content:"";
}

.divas-roll li img {
	 opacity: 0.4;
	 filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); 
	 filter: gray; 
    -webkit-filter: grayscale(100%); 
	-webkit-transition: opacity 0.5s ease-in-out;
    -moz-transition: opacity 0.5s ease-in-out;
    -o-transition: opacity  0.5s ease-in-out;
    transition: opacity  0.5s ease-in-out;
}

.divas-roll li:hover img {
	 opacity: 1;
	 filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
	-webkit-filter: grayscale(0%);
}

.divas-roll .divas-caption {
	top: 32%;
	opacity: 1;
	width: 100%;
	text-align: center;
	background: none;
	margin: 0;
	padding: 0;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.divas-roll li:hover .divas-caption {
	top: -100%;
}

.divas-roll h1 {
	font-weight: 900;
	font-size: 3.6em; 
}

.divas-roll p {
	font-style: normal;
	font-weight: normal;
}

/**
 * styles for demo 4 framed
 * (divas-framed)
 */

.divas-framed h1 {
	 font-weight: 300;
}

.divas-framed .divas-navigation span {
	background-color: #fff;
	background-position: center center;
}

.divas-framed .divas-navigation span.divas-prev {
	left: 0;	
	background-image: url("../images/prev-black.svg");
}

.divas-framed .divas-navigation span.divas-next {
	right: 0;	
	background-image: url("../images/next-black.svg");
}

.divas-framed li {
	-webkit-perspective: 1600px;
	-moz-perspective: 1600px;
	perspective: 1600px;
}

.divas-framed .divas-caption h1,
.divas-framed .divas-caption p {
	text-align: center;
	display: inline-block;
}

/**
 * 	title transition for framed style
 */
 
.divas-framed .divas-title-transition-framed {
	-webkit-transition: -webkit-transform 1s ease-in-out;
    -moz-transition: -moz-transform 1s ease-in-out;
    -o-transition: -o-transform 1s ease-in-out;
    transition: transform 1s ease-in-out;
}

.divas-framed .divas-title-transition-framed-start {
	height: 100%;
	top: 0;
	margin: 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	-msflex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-content: stretch;
	align-content: stretch;
	-webkit-align-items: center;
	align-items: center;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    -o-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -webkit-transform: translateX(-100%) rotateY(-55deg);
    -moz-transform: translateX(-100%) rotateY(-55deg);
    -ms-transform: translateX(-100%) rotateY(-55deg);
    -o-transform: translateX(-100%) rotateY(-55deg);
	transform: translateX(-100%) rotateY(-55deg);
}


.divas-framed .divas-title-transition-framed-stop {
	left: 4em;
	width: 90%;
	width: calc(100% - 8em);
	top: 4em;
	height: 90%;
	height: calc(100% - 8em);
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4);
	-webkit-transform: translateX(0) rotateY(0deg);
	-moz-transform: translateX(0) rotateY(0deg);
	-ms-transform: translateX(0) rotateY(0deg);
	-o-transform: translateX(0) rotateY(0deg);
	transform: translateX(0) rotateY(0deg);
}

@media screen and (max-width: 32em) {
	.divas-framed .divas-caption h1 {
		font-size: 3em;
	}
	.divas-framed .divas-caption p {
		display: none;
	}
}	


/**
 * styles for demo 5 classic
 * (divas-classic)
 */
.divas-classic h1 {
	 font-weight: 300;
}
 
.divas-classic li .divas-caption {
	background: #1a1a1a;
	padding: 3em 5em 4em;
	top: auto;
	bottom: 0;
	left: 0;
	margin: 0;
	width: 50%;
}
.divas-classic .divas-controls {
	background: rgba(0, 0, 0, 0.5);
	bottom: 1em;
	height: 3em;
	padding-left: 1em;
	position: absolute;
	right: 1em;
	width: 8em;
}

.divas-classic .divas-controls span.divas-start,
.divas-classic .divas-controls span.divas-stop {
	color: #fff;
	display: inline-block;
	font-size: 1.5em;
	text-align: center;
	width: 2em;
	line-height: 2em;
	cursor: pointer;
}

.divas-classic .divas-controls span.disabled {
	opacity: 0.5;
}

.divas-classic .shade0 .divas-caption {
	background: #7f7e86;
}

.divas-classic .shade1 .divas-caption {
	background: #bb381b;
}

.divas-classic .shade2 .divas-caption {
	background: #1f55ab;
}

.divas-classic .shade3 .divas-caption {
	background: #1f55ab;
	background: #454f50;
}

.divas-classic .shade4 .divas-caption {
	background: #d75b39;
}

.divas-classic .shade5 .divas-caption {
	background: #9e9995;
}

.divas-classic .shade6 .divas-caption {
	background: #2e241f;
}

.divas-classic .divas-caption h1 {
	font-size: 3.6em;
	padding: 0.4em 0 0.5em;
}

.divas-classic .divas-caption p {
	padding: 0 0 0.7em 0;
}

/*---------------------------------------------------------------------------------------	
		DEMO PURPOSES
----------------------------------------------------------------------------------------*/
input {
    -webkit-appearance: none;
}
 #logo img{
	max-width: 290px;
	margin: 15px 0;
}

#demos {
	position: relative;
	margin: 2em auto 0em auto;
	padding: 0;
}

#demos_buttons {
	position: relative;
	text-align: center;
	max-width: 1140px;
	margin: 0 auto;
}

#demos_buttons input[type=button] {
    border: medium none;
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    font-size: 150%;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 15px 1% 0;
    outline: medium none;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    background: none repeat scroll 0 0 #ff744d;
    border-radius: 4px;
    color: #FFFFFF;
    padding: 0.75em 2em;
    border: 2px solid #ff744d;
}


#demos_buttons input[type=button].demo-active, 
#demos_buttons input[type=button]:active,
#demos_buttons input[type=button]:hover {
	background: #fff;
    color: #ff744d;
}

@media screen and (min-width: 46em) {
	
	#demos_buttons input[type=button] {
		width: 17%;
	}
	
	.content.bg {
		background: url('../images/bg.jpg') center center no-repeat #ff744d;
		background-size: cover;
	}
		
}


.content.bg a.download {
    color: #fff;
    font-size: 0.4em;
    font-weight: normal;
    padding: 0 0.5em;
    text-decoration: none;
	border-color: #fff;
}
.content.bg a.purchase {
    border-color: #fff;
	background: #fff;
    color: #ff744c;
}
