/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel-wrapper{
	margin: 0 -5px
}
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;

}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -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;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */

  z-index: 1; 

}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;

}
.owl-carousel .owl-item .item-padding{
	padding: 5px
}
.owl-carousel .owl-item .name{
	
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

.owl-thumbs .item{
	display: block;
    border: 1px solid #ddd;
    padding: 5px;
    text-align: center;
    line-height: 95px;
    font-size: 0;
}
.owl-thumbs .owl-nav{
}
.owl-thumbs .owl-nav div{
    width: 30px;
    height: 107px;
    text-align: center;
    line-height: 107px;
    background: rgba(51, 51, 51, 0.45);
    transition: all .3s ease;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    color: #fff;
    font-family: monospace;
    visibility: visible;
    opacity: 1;
}
.owl-thumbs .owl-nav div.owl-prev{
    left: 0;
}
.owl-thumbs .owl-nav div.owl-next{
    right: 0px;
}
.owl-thumbs .owl-nav div:hover{
    background: #f6921e;
}
.owl-thumbs .owl-nav div.disabled{
    background: rgba(0, 0, 0, 0.15);
}

/* Owl main */
.owl-main-cover{
    padding: 0 50px;
}
.owl-main .item{
    padding: 5px 5px 0;
}
.owl-main .owl-nav div{
    transition: all .3s ease;
    position: absolute;
    top: 50%;
    z-index: 2;
    color: #a3a3a3;
    line-height: normal;
    padding: 4px 6px 0;
    margin-top: -16px;
}
.owl-main .owl-nav div.owl-prev{
    left: -50px;
}
.owl-main .owl-nav div.owl-next{
    right: -50px;
}
.owl-main .owl-nav div:hover{color: #f6921e;}
.owl-main .owl-nav div.disabled{color: #ddd;}

@media screen and (min-width: 1300px) {
	.owl-main-cover{
		padding: 0;
    margin: 0 -5px;
	}
	.owl-main .item{}
	.owl-main .owl-nav div.owl-prev{}
	.owl-main .owl-nav div.owl-next{}
}