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

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel.standard{
	margin:0px 0px 60px;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
   
}

.owl-carousel img{
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    
}

.owl-carousel.standard img{
    max-height: 100%;
	
}
.owl-carousel .owl-wrapper{

    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel.standard .owl-wrapper{
   /* background: url(../../img/home-icon.png);*/
	
    background: #f5f5f5;
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
	max-height: auto; /* Se cambia el valor de 900px a auto */
}
/*los siguientes tres datos son para poder hacer full screen en iphone*/
.owl-carousel.standard:-webkit-full-screen{
  width: 100%;
  height: 100%;
}

.owl-carousel.standard:-webkit-full-screen .owl-wrapper{
  height: 100%;
}

.owl-carousel.standard:-webkit-full-screen .owl-item{
  height: 100%;
}

@media screen and (max-width: 767px) {
  .owl-carousel.standard .owl-wrapper-outer {
    height: auto; /* Se cambia el valor de 270px a auto */
  }
}
.owl-carousel .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;
}
	
.owl-carousel .owl-item{
	float: left;
}
	/*
.owl-carousel.standard .owl-item{
    background: url(../../img/home-icon.png);
}*/
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls .owl-buttons div {
  position: absolute;
}
 
.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 { 
    cursor:url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .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 {
	margin:0px; 
	position: relative;
	direction: ltr !important;
	overflow: hidden;
}
.owl-carousel .owl-buttons div {
    color: #fff;
    transition: all .3s ease;
    top: 50%;
    background: #8c8c8c;
    padding: 0px 8px 2px;
    margin-top: -33px;
}
.owl-carousel:hover .owl-buttons div {
    padding: 0px 8px 1px;
    background: #464646;
}
.owl-carousel .owl-buttons div i {
    font-size: 30px;
    line-height: 40px;
}

.owl-carousel .owl-buttons .owl-prev {
	left: 0px; 
}
.owl-carousel .owl-buttons .owl-next {
	right: 0px; 
}
.owl-pagination {
    text-align: center;
    bottom: 0px;
    position: absolute;
    width: 100%;
    padding: 20px 0px;
}
.owl-controls .owl-page {
	display: inline-block;
	margin: 0px 6px;
}
.owl-controls .owl-page span {
	display: block;
	width: 5px;
	height: 5px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	box-shadow: 0 0 3px rgb(0,0,0);	
}
.owl-controls .owl-page.active span {
	background: rgba(255, 255, 255, 0.9);
}


