/*********************
WP POSTS CAROUSEL (plugin)
**********************/
.wp-posts-carousel {
    overflow: hidden;
}
.wp-posts-carousel-details {
    padding: 0.5rem;
    position: absolute;;
    bottom: -151px;
    background: rgba(0,0,0,0.75);
    transition: all .3s ease;
	}

  .active .wp-posts-carousel-details {
      bottom: 0;
  }
  .wp-posts-carousel-image {
      max-height: 315px;
  }

.wp-posts-carousel-desc {
    font-size: 15px;
    padding: 0;
    margin-bottom: 0;
    color: white;
}

.wp-posts-carousel-desc p {
    font-size: inherit;
    line-height: 1;
    margin-bottom: 1rem;
    text-rendering: optimizeLegibility;
    padding-left: 2px;
}
/*** Dots ***/
.wp-posts-carousel .owl-dots {
    margin-top: 10px;
    text-align: center;
}

.wp-posts-carousel .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}

.wp-posts-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    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;
}

.wp-posts-carousel .owl-dots .owl-dot:hover span {
    transform: scale(1.3);
}

.wp-posts-carousel .owl-dots .owl-dot.active span {
    background: #869791;
}

.wp-posts-carousel .owl-controls .owl-nav div {
    /*background: #000;*/
    color: #fff;
    /*border: 1px solid #000;*/
    text-align: center;
    text-decoration: none;
    display: block;
    width: 0px;
    height: 30px;
    line-height: 30px;
    position: absolute;
    top: 23%;
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
    /*border-radius: 50%;*/
    -webkit-border-radius: 50%;
}

.wp-posts-carousel .owl-nav div:before {
    font-family: "FontAwesome";
    font-size: 50px;
    display: inline-block;
}
.wp-posts-carousel .owl-nav .owl-prev:before {
    content: '\f104';
}
.wp-posts-carousel .owl-nav .owl-next:before {
    content: '\f105';
}
.wp-posts-carousel .owl-controls .owl-nav .owl-prev {
    left: -50px;
    padding: 0px 25px 0px 10px;
}

.wp-posts-carousel .owl-controls .owl-nav .owl-next {
    right: -50px;
    padding: 0px 25px 0px 10px;
}

.wp-posts-carousel:hover .owl-controls .owl-nav .owl-prev {
    opacity: 1;
    left: 5px;
}

.wp-posts-carousel:hover .owl-controls .owl-nav .owl-next {
    opacity: 1;
    right: 5px;
}