/*---------------------------------
OWL DOTS
-----------------------------------*/
.owl-dots {
	text-align 						: center;
	-webkit-tap-highlight-color 	: transparent;
	width 							: 100%;
	bottom 							: 0;
	padding 						: 10px 0;
}

.owl-dots .owl-dot {
	display 					: inline-block;
	zoom 						: 1;
}

.owl-dots .owl-dot span {
	width 						: 10px;
	height 						: 10px;
	border-radius 				: 100%;
	margin 						: 5px 5px;
	background 					: rgba(52,48,47,.3);
	display 					: block;
	-webkit-backface-visibility : visible;
	-webkit-transition 			: all 0.3s ease 0s;
	-o-transition 				: all 0.3s ease 0s;
	transition 					: all 0.3s ease 0s;
	border 						: 1px solid transparent;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
	border 						: 1px solid rgba(52,48,47,.3);
	background 					: transparent;
	transform 					: scale(1.5);
}

/* --- DOTS WHITE --- */
.white .owl-dots .owl-dot span {
	background 					: rgba(255,255,255,.5);
}

.white .owl-dots .owl-dot.active span,
.white .owl-dots .owl-dot:hover span {
	border 						: 1px solid rgba(255,255,255,.5);
	background 					: transparent;
}

/* --- DOTS ORANGE --- */
.orange .owl-dots .owl-dot span {
	background 					: rgba(240,126,0,.5);
}

.orange .owl-dots .owl-dot.active span,
.orange .owl-dots .owl-dot:hover span {
	border 						: 1px solid rgba(240,126,0,.5);
	background 					: transparent;
}