/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.xet_default_owl .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.xet_default_owl{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.xet_default_owl .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.xet_default_owl .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.xet_default_owl .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.xet_default_owl .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing { 
}

/* fix */
.xet_default_owl  .owl-wrapper,
.xet_default_owl  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}


/*
* 	Owl Carousel Theme 
*/
.xet_default_owl_theme .owl-wrapper-outer {}
.xet_default_owl_theme .owl-item{
	padding: 0 15px;
}
.xet_default_owl_theme .owl-controls{
	margin-top: 20px;
	margin-bottom: 10px;
	text-align: center;
}
.xet_default_owl_theme .owl-controls:after {
	content: "";
	display: block;
	clear: both;
}

/* Styling Next and Prev buttons */
.xet_default_owl_theme .owl-controls .owl-buttons {
	float: right;
}
.xet_default_owl_theme .owl-controls .owl-buttons div {
	float: left;
	width: 24px; 
	line-height: 24px;
	font-size: 11px;
	overflow: hidden;
	text-align: center;
	margin: 0 0 0 -1px; 
	padding: 0; 
	cursor: pointer;
	border: 1px solid #e1e1e1; 
	background: transparent;
	color: #555;
}
.xet_default_owl_theme .owl-controls .owl-buttons div i[class*="xi-"] {
	margin-right: 0px;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.xet_default_owl_theme .owl-controls.clickable .owl-buttons div:hover{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
	text-decoration: none;
}
/* Styling Pagination*/
.xet_default_owl_theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.xet_default_owl_theme .owl-controls .owl-page span{
	display: block;
	width: 10px;
	height: 10px;
	margin: 3px;
	filter: Alpha(Opacity=50);/*IE7 fix*/
	opacity: 0.5;
	background: #999;
	-webkit-border-radius:  50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}
.xet_default_owl_theme .owl-controls .owl-page.active span,
.xet_default_owl_theme .owl-controls.clickable .owl-page:hover span{
	filter: Alpha(Opacity=100);/*IE7 fix*/
	opacity: 1;
}


/* 모바일 이하
---------------------------------------------------------------------------- */
@media (max-width: 767px) {		
	.xet_default_owl_theme .owl-item{
		padding: 0 5px;
	}
}