﻿/* rt-image-slider element-two */

.rt-image-slider.element-two{
	position:relative;
	width:auto;
	margin-left:-7px;
	margin-right:-7px;
}

.rt-image-slider.element-two .rt-image-slider-item{
	padding:7px;
}

.rt-image-slider.element-two .rt-image-slider-item > .holder{
	position:relative;
	box-shadow:0px 0px 7px rgba(0,0,0,0.2);
}

.rt-image-slider.element-two .rt-image-slider-item > .holder > .overlay{
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:1;
	display:flex;
	align-items:center;
	justify-content:center;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#eb133b+0,a01086+100&0.9+1,0.9+100 */
	background: -moz-linear-gradient(top, rgba(235,19,59,0.9) 0%, rgba(234,19,60,0.9) 1%, rgba(160,16,134,0.9) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(235,19,59,0.9) 0%,rgba(234,19,60,0.9) 1%,rgba(160,16,134,0.9) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(235,19,59,0.9) 0%,rgba(234,19,60,0.9) 1%,rgba(160,16,134,0.9) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6eb133b', endColorstr='#e6a01086',GradientType=0 ); /* IE6-9 */
	opacity:0;
	visibility:hidden;
	transition:all 0.4s ease-in-out;
	-webkit-transition:all 0.4s ease-in-out;
}

.rt-image-slider.element-two .rt-image-slider-item > .holder:hover > .overlay{
	opacity:1;
	visibility:visible;
}

.rt-image-slider.element-two .rt-image-slider-item > .holder > .overlay .zoom-button{
	display:inline-block;
	vertical-align:top;
	width:53px;
	height:53px;
	background:url(../images/Zoom-Icon-53x53.png) center center no-repeat;
	cursor:pointer;
	opacity:0;
	visibility:hidden;
	transform:translateY(20px);
	-webkit-transform:translateY(20px);
	transition:all 1s ease-in-out;
	-webkit-transition:all 1s ease-in-out;
}

.rt-image-slider.element-two .rt-image-slider-item > .holder:hover > .overlay .zoom-button{
	opacity:1;
	visibility:visible;
	transform:translateY(0);
	-webkit-transform:translateY(0);
}

.rt-image-slider.element-two .owl-dots{
	margin-top:40px;
	text-align:center;
}

.rt-image-slider.element-two .owl-dots > .owl-dot{
	display:inline-block;
	vertical-align:top;
	margin-left:3px;
	margin-right:2px;
}

.rt-image-slider.element-two .owl-dots > .owl-dot > span{
	display:block;
	width:12px;
	height:12px;
	background-color:#c2bebf;
	border-radius:50%;
	transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}

.rt-image-slider.element-two .owl-dots > .owl-dot.active > span{
	background-color:#fe002f;
}

/* LARGE DESKTOP PART */
@media screen and (min-width:1200px){
}

/* DESKTOP PART */
@media screen and (min-width:992px) and (max-width:1199px){
}

/* TABLET LANDSCAPE PART */
@media screen and (min-width:768px) and (max-width:991px){
}

/* TABLET PROTRAIT PART */
@media screen and (min-width:480px) and (max-width:767px){
}

/* SMART PHONE LANDSCAPE PART */
@media screen and (min-width:321px) and (max-width:479px){
}

/* SMART PHONE PROTRAIT PART */
@media screen and (max-width:320px){
}