/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.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 */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.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;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.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 Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}
/* 
 * 	Default theme - Owl Carousel CSS File
 */

.owl-nav svg {
    padding: 10px;
    width: 100%;
    height: 100%;
}
.owl-nav div {
  cursor: pointer;
  position: absolute;
  top: 50%;
  border-radius: 50%;
  width: 30px;
  height: 80px;
  transform: translatey(-50%);
  -webkit-transform: translatey(-50%);
}
.owl-next {
    right: 15px;
}
.owl-prev {
    left: 15px;
}

.owl-nav polyline {
  stroke-width: 2;
}
.owl-nav div:hover polyline,
.owl-nav div:focus polyline {
  stroke-width: 3;
}

.owl-nav div:active polyline {
  stroke-width: 6;
  transition: all 100ms ease-in-out;
}

.owl-nav polyline {
  transition: all 250ms ease-in-out;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-dots {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  position: relative;
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: rgba(0,0,0,0.3);
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span:before, .owl-theme .owl-dots .owl-dot:hover span:before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    top: -2px;
    left: -2px;
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 50%;
}

/*--- Carousel ---*/
/* Style 1*/
.tn_block_featured_carousel .style1 .owl-nav div {
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    height: auto;
    transform: none;
    -webkit-transform: none;
    border-radius: 0;
    background: rgba(0,0,0,0.2);
    opacity: 0;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}
.tn_block_featured_carousel .style1:hover .owl-nav div {
    opacity: 1;
}
.tn_block_featured_carousel .style1 .owl-nav .owl-next {
    right: 0;
}
.tn_block_featured_carousel .style1 .owl-nav .owl-prev {
    left: 0;
}
.tn_block_featured_carousel .style1 .owl-nav div svg {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    -webkit-transform: translatey(-50%);    
}
/* Style 2*/
.tn_block_featured_carousel .style2 .owl-nav div {
    position: absolute;
    width: 30px;
    height: 70px;
    border-radius: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}
.tn_block_featured_carousel .style2:hover .owl-nav div {
    opacity: 1;
}
.tn_block_featured_carousel .style2 .owl-nav .owl-next {
    right: 0px;
}
.tn_block_featured_carousel .style2 .owl-nav .owl-prev {
    left: 0px;
}
.tn_block_featured_carousel .style2 .owl-nav polyline {
    stroke: #fff;
    stroke-width: 4;
}
.tn_block_featured_carousel .style2 .owl-nav div svg {
    padding: 8px;    
}

/* Style 3*/
.tn_block_featured_carousel .style3 .owl-nav div {
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    height: auto;
    transform: none;
    -webkit-transform: none;
    border-radius: 0;
    opacity: 0;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}
.tn_block_featured_carousel .style3 .owl-nav div:hover {
    background: rgba(0,0,0,0.2);
}
.tn_block_featured_carousel .style3:hover .owl-nav div {
    opacity: 1;
}
.tn_block_featured_carousel .style3 .owl-nav .owl-next {
    right: 0;
}
.tn_block_featured_carousel .style3 .owl-nav .owl-prev {
    left: 0;
}
.tn_block_featured_carousel .style3 .owl-nav div svg {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    -webkit-transform: translatey(-50%);    
}
.tn_block_featured_carousel .style3 .owl-nav polyline {
    stroke: #fff;
    stroke-width: 3;
}
/*--- Slider ---*/
.tn_block_featured_slider .owl-nav div {
    top: 50%;
    transform: translatey(-50%);
    -webkit-transform: translatey(-50%);
    width: 60px;
    height: 80px;
    border-radius: 0;
}
.tn_block_featured_slider .owl-next {
    right: 200px;
}
.tn_block_featured_slider .owl-prev {
    left: 200px;
}
.tn_block_featured_slider .owl-nav polyline {
    stroke: #333;
}
/* Style 1 */
.tn_block_featured_slider .style1 .owl-nav polyline {
    stroke: #fff;
}
.home-content .tn_block_featured_slider .style1 .owl-nav div {
    top: 50%;
    transform: translatey(-50%);
    -webkit-transform: translatey(-50%);
    width: 30px;
    height: 80px;
    background: rgba(0,0,0,0.2);
}
.home-content .tn_block_featured_slider .style1 .owl-next {
    right: 0px;
    border-radius: 3px 0 0 3px;
}
.home-content .tn_block_featured_slider .style1 .owl-prev {
    left: 0px;
    border-radius: 0 3px 3px 0;
}
.home-content .tn_block_featured_slider .style1 .owl-nav polyline {
    stroke: #fff;
    stroke-width: 3;
}
.home-content .tn_block_featured_slider .style1 .owl-nav div:hover polyline {
    stroke-width: 4;
}
.home-content .tn_block_featured_slider .style1 .owl-nav div:active polyline {
    stroke-width: 6;
}
.home-content .tn_block_featured_slider .style1 .owl-nav svg {
    padding: 7px;
}
/* Style 2 */
.tn_block_featured_slider .style2 .owl-nav div {
    width: 40px;
    height: 40px;
    padding: 3px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 -2px 0 rgba(0,0,0,0.27);
    -moz-box-shadow: inset 0 -2px 0 rgba(0,0,0,0.27);
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.27);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    margin: 0;
}
.tn_block_featured_slider .style2 .owl-nav polyline {
    stroke: #fff;
    stroke-width: 4px;
}
.tn_block_featured_slider .style2 .owl-nav div:hover polyline {
    stroke-width: 6px;
}
.tn_block_featured_slider .style2 .owl-nav div:active polyline {
    stroke-width: 10px;
}
.tn_block_featured_slider .style2 .owl-next {
    top: auto;
    bottom: 0px;
    right: -20px;
}
.tn_block_featured_slider .style2 .owl-prev {
    top: auto;
    bottom: 0px;
    left: -20px;
}
/* Style 3 */
.tn_block_featured_slider .style3 .owl-nav div {
    top: 50%;
    transform: translatey(-50%);
    -webkit-transform: translatey(-50%);
    width: 30px;
    height: 80px;
    background: rgba(0,0,0,0.5);
}
.tn_block_featured_slider .style3 .owl-nav div:hover {
    background: rgba(0,0,0,0.7);
}
.tn_block_featured_slider .style3 .owl-next {
    right: -30px;
    border-radius: 0 3px 3px 0;
}
.tn_block_featured_slider .style3 .owl-prev {
    left: -30px;
    border-radius: 3px 0 0 3px;
}
.tn_block_featured_slider .style3 .owl-nav polyline {
    stroke: #fff;
    stroke-width: 4;
}
.tn_block_featured_slider .style3 .owl-nav div:hover polyline {
    stroke-width: 4;
}
.tn_block_featured_slider .style3 .owl-nav div:active polyline {
    stroke-width: 6;
}
.tn_block_featured_slider .style3 .owl-nav svg {
    padding: 7px;
}

.content-section .tn_block_featured_slider .style3 .owl-nav div {
    opacity: 0;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}
.content-section .tn_block_featured_slider:hover .style3 .owl-nav div {
    opacity: 1;
}
.content-section .tn_block_featured_slider .style3 .owl-next {
    right: 0px;
    border-radius: 3px 0 0 3px;
}
.content-section .tn_block_featured_slider .style3 .owl-prev {
    left: 0px;
    border-radius: 0 3px 3px 0;
}
/*--- Grid ---*/
/* Style 3 */
.tn_block_featured_grid .layout3 .owl-nav div {
    position: absolute;
    width: 30px;
    height: 70px;
    border-radius: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
}
.tn_block_featured_grid .layout3:hover .owl-nav div {
    opacity: 1;
}
.tn_block_featured_grid .layout3 .owl-nav .owl-next {
    right: 0px;
}
.tn_block_featured_grid .layout3 .owl-nav .owl-prev {
    left: 0px;
}
.tn_block_featured_grid .layout3 .owl-nav polyline {
    stroke: #fff;
    stroke-width: 4;
}
.tn_block_featured_grid .layout3 .owl-nav div svg {
    padding: 8px;    
}