
.square1 img {
	display:none;
}

.slides_container {
    position: relative;
    height: 100%;
	overflow: hidden;
}

.image_wrapper,
.wrap_placeholder {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color: none;
	background-size: 0;
	background-position:center center;
	background-repeat:no-repeat;
	transition: transform 1s ease-in-out;
}

.image_wrapper.no_transition,
.wrap_placeholder.no_transition {
	transition: none !important;
}

.image_wrapper > a {
	display:block;
	width:100%;
	height:100%;
}

.square1_prev_image,.square1_next_image {
	position:absolute;
	top:50%;
	right:20px;
	width:30px;
	height:60px;
	background: url("../images/leftnav.svg");
	background-size: cover;
	color: rgba(255,255,255,.3);
	cursor:pointer;
	transform:translate(0,-50%);
	z-index:1000;
	cursor:pointer;
	text-indent:-9999px;
	overflow:hidden;
	transition: opacity .3s ease-in-out;
}

.square1_prev_image:hover,.square1_next_image:hover {
	opacity: 1;
}

.square1_next_image {
	transform: translate(0,-50%) rotate(180deg);
	right:auto;
	left:20px;
}

.square1_dots {
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	text-align:center;
	z-index:100;
	overflow:hidden;
}

.square1_dots span {
	position:relative;
	display:inline-block;
	margin:0;
	padding:7px;
	cursor:pointer;
	transition:all .3s ease-in-out;
	-webkit-transition:all .3s ease-in-out;
}

.square1_dots span:before {
	content:" ";
	display:inline-block;
	width:10px;
	height:10px;
	border-radius:5px;
	background:rgba(0,0,0,.3);
	box-shadow: 0 0 14px 0px rgba(255,255,255,.4)
}

.square1_dots span.current:before {
	background:rgba(0,0,0,1);
}

.square1_dots span:hover:before {
	background:rgba(0,0,0,1);
	box-shadow:0 0 2px rgba(255,255,255,.4);
}

.square1_spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	/* transform: translate(-50%, -50%); */
	width: 40px;
	height: 40px;
	border-radius: 50px;
	border: 5px solid rgba(0,0,0,0);
	border-top: 5px solid rgba(0,0,0,.5);
	animation: square1_spinner 1s linear infinite;
	z-index: -1;
	display: none;
}

.square1.loading .square1_spinner {
	display: block;
}


@keyframes square1_spinner {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}


/* custom settings styles */

.fill_mode-contain .image_wrapper,
.fill_mode-contain .wrap_placeholder {
	background-size: contain;
}

.fill_mode-cover .image_wrapper,
.fill_mode-cover .wrap_placeholder  {
	background-size: cover;
}



.prev_next_nav-outside .square1_prev_image {
	left: -60px;
}

.prev_next_nav-outside .square1_next_image {
	right: -60px;
}

.prev_next_nav-hover .square1_prev_image {
	left: -60px;
	opacity: 0;
}

.prev_next_nav-hover:hover .square1_prev_image{
	left: 20px;
	opacity: 1;
}

.prev_next_nav-hover .square1_next_image {
	right: -60px;
	opacity: 0;
}

.prev_next_nav-hover:hover .square1_next_image{
	right: 20px;
	opacity: 1;
}

.prev_next_nav-none .square1_prev_image,
.prev_next_nav-none .square1_next_image {
	display: none;
}

.dots_nav-outside .square1_dots {
	bottom: -34px;
}

.dots_nav-hover .square1_dots {
	bottom: -34px;
	opacity: 0;
	transition: bottom .3s ease-in-out, opacity .3s ease-in-out;
}

.dots_nav-hover:hover .square1_dots {
	bottom: 0;
	opacity: 1;
}

.dots_nav-none .square1_dots {
	display: none;
}


.square1_caption {
	position:absolute;
	bottom:-54px;
	left:0;
	right:0;
	font-size: .75em;
	text-align:center;
	display:none;
}

.caption-none .square1_caption {
	height: 0;
	width: 0;
	overflow: hidden;
}

.caption-inside .square1_caption {
	bottom: 0;
	padding: 0.7em;
	color: rgba(255,255,255,.8);
	background: rgba(0,0,0,.4);
}

.caption-hover .square1_caption {
	opacity: 0;
	transition: opacity .3s ease-in-out;
}

.caption-hover:hover .square1_caption {
	opacity: 1;
}

.dots_nav-inside .square1_caption,
.dots_nav-hover .square1_caption,
.dots_nav-none .square1_caption {
	bottom: -25px;
}

.dots_nav-inside.caption-inside .square1_caption,
.dots_nav-hover.caption-inside .square1_caption,
.dots_nav-none.caption-inside .square1_caption {
	bottom: 0;
}

.dots_nav-inside.caption-inside .square1_dots,
.dots_nav-hover.caption-inside:hover .square1_dots {
	bottom: 30px;
	opacity: 1;
}




/* Light Theme */

.theme-light .square1_prev_image,
.theme-light .square1_next_image {
		background: url("../images/rightnav.svg");
		background-size: cover;
}

.theme-light .square1_dots span:before {
	background: rgba(200,200,200,.4);
}

.theme-light .square1_dots span:before {
	background:rgba(200,200,200,.4);
	box-shadow: 0 0 14px 0px rgba(0,0,0,.4);
}

.theme-light .square1_dots span.current:before {
	background:rgba(255,255,255,.7);
}

.theme-light .square1_dots span:hover:before {
	background:rgba(255,255,255,.7);
	box-shadow:0 0 2px rgba(0,0,0,.4);
}

.theme-light.caption-inside .square1_caption {
	background: rgba(255,255,255,.7);
	color: rgba(0,0,0,.8);
}

.theme-light .square1_spinner {
	border-top: 5px solid rgba(255,255,255,.5);
}



/* Responsive */

@media (max-width: 600px) {
	.square1_prev_image {
		right: 0px;
	}
	.square1_next_image {
		left: 0px;
		right: auto;
	}
	.square1_spinner {
		width: 20px;
		height: 20px;
	}
}