/*!***/
/* * Owl Carousel v2.3.4*/
/* * Copyright 2013-2018 David Deutsch*/
/* * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE*/
/* *!*/
/*!**/
/* * 	Default theme - Owl Carousel CSS File*/
/* *!*/
/*.owl-theme .owl-nav {*/
/*  margin-top: 10px;*/
/*  text-align: center;*/
/*  -webkit-tap-highlight-color: transparent; }*/
/*  .owl-theme .owl-nav [class*='owl-'] {*/
/*    color: #FFF;*/
/*    font-size: 14px;*/
/*    margin: 5px;*/
/*    padding: 4px 7px;*/
/*    background: #D6D6D6;*/
/*    display: inline-block;*/
/*    cursor: pointer;*/
/*    border-radius: 3px; }*/
/*    .owl-theme .owl-nav [class*='owl-']:hover {*/
/*      background: #869791;*/
/*      color: #FFF;*/
/*      text-decoration: none; }*/
/*  .owl-theme .owl-nav .disabled {*/
/*    opacity: 0.5;*/
/*    cursor: default; }*/

/*.owl-theme .owl-nav.disabled + .owl-dots {*/
/*  margin-top: 10px; }*/

/*.owl-theme .owl-dots {*/
/*  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 {*/
/*      width: 10px;*/
/*      height: 10px;*/
/*      margin: 5px 7px;*/
/*      background: #D6D6D6;*/
/*      display: block;*/
/*      -webkit-backface-visibility: visible;*/
/*      transition: opacity 200ms ease;*/
/*      border-radius: 30px; }*/
/*    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {*/
/*      background: #869791; }*/
.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;
  background: #404040ad;
  color: white;
}
.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;
}

/* Modified Owl theme */

.owl-theme .owl-controls {
  text-align: center;
  -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);
}

.owl-controls .owl-nav,
.owl-controls .owl-dot{
  cursor: pointer;
  cursor: hand;

}
/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-nav div{
  display: block;
  margin-top: -44px;
  font-size: 21px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: absolute;
  top: 55%;
  text-align: center;
  padding: 0.907em 0;
  line-height: 0;
  text-decoration: none;
  z-index: 10;
}
/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls .owl-nav div:hover{
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  text-decoration: none;
}
.owl-theme .owl-controls .owl-next {
  right: -44px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
.owl-theme .owl-controls .owl-next:after {
  /*content: '\e095';*/
  /*font-family: 'icons', serif;*/
  /*width: 44px;*/
  /*height: 44px;*/
  /*line-height: 44px;*/
  /*display: block;*/
  /*position: absolute;*/
  /*padding-left: 2px;*/
  /*top: 0;*/
  /*left: 0;*/
  /*text-align: center;*/
}
.owl-theme .owl-controls .owl-prev {
  left: -44px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
.owl-theme .owl-controls .owl-prev:after {
  /*content: '\e094';*/
  /*font-family: 'icons', serif;*/
  /*width: 44px;*/
  /*height: 44px;*/
  /*line-height: 44px;*/
  /*display: block;*/
  /*position: absolute;*/
  /*padding-right: 2px;*/
  /*top: 0;*/
  /*left: 0;*/
  /*text-align: center;*/
}
.owl-carousel:hover .owl-controls .owl-next{
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  right: 0;
}
.owl-carousel:hover .owl-controls .owl-prev {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  left: 0;
}
.owl-theme .owl-controls .owl-nav div:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  -moz-opacity: 0.9;
  -khtml-opacity: 0.9;
  opacity: 0.9;
}
/* Styling dots*/

.owl-theme .owl-dots .owl-dot{
  display: inline-block;
  zoom: 1;
  *display: inline;/*IE7 life-saver */
}
.owl-theme .owl-dots .owl-dot span{
  -webkit-backface-visibility: visible;
  display: block;
  width:44px;
  height: 9px;
  margin: 0 0 0 1px;
  background: #444;
  transition-property: opacity;
  transition-duration: 200ms;
  transition-timing-function: ease;
}
/*.owl-theme .owl-dots .owl-dot:hover span,*/
.owl-theme .owl-dots .owl-dot.active span{
}

.carousel, .simple-carousel {
  margin-bottom: 2.618em;
}
.carousel .media-holder, .simple-carousel .media-holder {
  padding: 0 0.236em 0 0;
}
.carousel .small-slide {
  width: 50%;
  float:left;
}
.newsticker {
  position: relative;
  height:2.945em;
}
/*.newsticker:before {
    position: absolute;
    content: "\e034";
    font-family: 'icons', serif;
    font-size: 1.618em;
    padding: 0.236em 0.382em;
}*/
.news-item {
  padding: 1em 0 1em 5.997em;
  font-size: 0.875em;
  font-weight: 300;
}
.newsticker .news-date {
  padding-right: 0.75em;
  font-style: italic;
}
.newsticker .owl-controls {
  top: 0.541em;
  left: 0.75em;
  position: absolute;
}
.newsticker .owl-controls .owl-nav div {
  font-size: 0.695em;
  width: 28px;
  height: 28px;
  margin-top: 0;
  top: 0;
  -webkit-text-shadow: none;
  -moz-text-shadow: none;
  text-shadow: none;
  border-width: 1px;
  border-style: solid;
}
.newsticker .owl-controls .owl-next, .newsticker .owl-carousel:hover .owl-controls .owl-next {
  left: 32px;
  right: auto !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}
.newsticker .owl-controls .owl-prev, .newsticker .owl-carousel:hover .owl-controls .owl-prev {
  left: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
}

.newsticker.owl-theme .owl-controls .owl-prev:after {
  width: 28px;
  height: 28px;
  line-height: 28px;
  display: block;
  position: absolute;
  padding-right: 3px;
  top: 0;
  left: 0;
  text-align: center;
}
.newsticker.owl-theme .owl-controls .owl-next:after {
  width: 28px;
  height: 28px;
  line-height: 28px;
  display: block;
  position: absolute;
  padding-right: 3px;
  top: 0;
  left: 0;
  text-align: center;
}
/*.slider .media-holder{*/
/*  margin-bottom: 2.618em;*/
/*}*/
.slider .is-hover .entry-title {
  font-size: 1.618em;
}

/* Simple Map Plugin */

.simplemap {
  margin-bottom: 1.618em;
}

/* Flickr Plugin */

.wpfw_flickr_widget {
  clear: both;
  overflow: hidden;
}
.flickr {
  margin-top: 0.125em;
}
.flickr a{
  margin-bottom:2px;
  margin-right:2px;
  line-height:1;
  float:left;
}
.flickr a:last-of-type {
  margin-right: 0;
}
.flickr a img{
  line-height:0;
  width: 4.5em;
  border: 0;
}

/* Instagram Widget */

.horizontal .null-instagram-feed .widget-title {
  top: 1.92em;
  margin-top: -1.92em;
  line-height: 0;
}
.null-instagram-feed .clear {
  font-size: 0.875em;
  clear:both;
  margin: 0;
}
ul.instagram-pics {
  margin: 0 -0.681em 0 0;
  padding: 0;
}
.horizontal ul.instagram-pics {
  margin: 0;
}
ul.instagram-pics li.instagram-image {
  width: 49.9998%;
  display: inline;
  float: left;
  padding: 0 0.618em 0.618em 0;
  margin: 0;
}
.horizontal ul.instagram-pics li.instagram-image {
  width: 33.33333333333333%;
  display: inline;
  float: left;
  margin: 0;
  padding: 0;
}
.instagram-pics ul li.instagram-image img {
  max-width: 100%;
}

/* Social Likes */

.social-likes {
  margin: 0 0 1.618em 0 !important;
  font-size: 1em !important;
  text-align: center;
}
.social-likes__widget {
  margin: 0 1.618em 0 0 !important;
}
/*
 * Nivo Lightbox Default Theme v1.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

.nivo-lightbox-theme-default.nivo-lightbox-overlay {
  background: #666;
  background: rgba(0,0,0,0.6);
}
.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { background: url(/img/nivo/loading.gif) no-repeat 50% 50%; }

.nivo-lightbox-theme-default .nivo-lightbox-nav {
  top: 10%;
  width: 8%;
  height: 80%;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}
.nivo-lightbox-theme-default .nivo-lightbox-nav:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.nivo-lightbox-theme-default .nivo-lightbox-prev {
  background-image: url(../img/nivo/prev.png);
  -moz-border-radius: 0 3px 3px 0;
  -webkit-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.nivo-lightbox-theme-default .nivo-lightbox-next {
  background-image: url(../img/nivo/next.png);
  -moz-border-radius: 3px 0 0 3px;
  -webkit-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}

.nivo-lightbox-theme-default .nivo-lightbox-close {
  display: block;
  background: url(../img/nivo/close.png) no-repeat 5px 5px;
  width: 16px;
  height: 16px;
  text-indent: -9999px;
  padding: 5px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}
.nivo-lightbox-theme-default .nivo-lightbox-close:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { bottom: -7%; }
.nivo-lightbox-theme-default .nivo-lightbox-title {
  font: 14px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  background: #333;
  color: #fff;
  padding: 7px 15px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-image img {
  background: #fff;
  -webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
  box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
}
.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
  background: #fff;
  padding: 40px;
  -webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
  box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
}


div.small-block-slide {
  display: inline-block;
  width: 50%;
  /*margin-top: 2px;*/
}
.owl-carousel .owl-item .item .s-item,.owl-carousel .owl-item .item .s-item .small-block-slide {
  height: 225px !important;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel .owl-item .big-itms.item {
  height: 450px !important;
  -webkit-transform-style: preserve-3d;
}
.media-holder.overlay .is-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
}
.media-holder.overlay .is-hover .inner {
  position: absolute;
  bottom: 0;
  left: 0;
}
.media-holder.overlay .is-hover .inner-box {
  padding: 2.618em;
  width: 100%;
}
.entry-cat {
  text-transform: uppercase;
  font-size: 0.875em;
  margin: 0 0.541em 0 0;
  display: inline-block;
  font-weight: 300;
  letter-spacing: 0.236em;
}
.is-hover .entry-cat a {
  padding: 0 0.236em 0 0.43em;
  display: inline;
  font-size: 0.875em;
  margin: 0;
  line-height: 1.618;
  color: #ffffff;
  background: #cf2030;
  padding: 2px;
}
.is-hover .entry-title {
  margin: 0;
  font-weight: 700;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
}
h2.entry-title {
  margin: 0;
  font-weight: 700;
  font-size: 1.416em;
  line-height: 1.2;
  text-align: left;
}
h2.entry-title a {
  color: white !important;
}


/**
 * Owl Carousel v2.1.6
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;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;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%;-webkit-transform-style:preserve-3d}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{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-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.no-js .owl-carousel{display:block}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.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;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}

.tcowl-wrap .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.tcowl-wrap .owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.tcowl-wrap .owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.tcowl-wrap .owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin:20px 7px;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

/* Ends Dots Style */
/* nav style two  top-right */
.tcowl-wrap .tcowl-nav {
  position: relative;
}
.tcowl-wrap .tcowl-nav .owl-controls .owl-next,
.tcowl-wrap .tcowl-nav .owl-controls .owl-prev {
  position: absolute;
  top: -46px;
  z-index: 2;
}
.tcowl-wrap .tcowl-nav .owl-controls .owl-next {
  right: 0;
}
.tcowl-wrap .tcowl-nav .owl-controls .owl-prev {
  right:31px;
}
.tcowl-wrap .tcowl-nav .owl-controls .owl-nav [class*=owl-] {
  color: #fff;
  font-size:20px;
  margin: 5px;
  display: inline-block;
  cursor: pointer;
  height: 30px;
  width: 30px;
  text-align: center;
  padding: 2px;
}
.tcowl-wrap .tcowl-nav  .owl-controls .owl-nav [class*=owl-]:hover {
  color: #fff;
}