/**
 * Recent posts slider
 */

.owl-widget-single {}

.posts-slider {
    position: relative;
}
.posts-slider__slide {}
.posts-slider__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 10;
    padding-bottom: 60px;
}

/* Recent posts slider -- Image */
.posts-slider__image {
    position: relative;
    overflow: hidden;
    min-height: 330px;
}
.posts-slider__overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(50, 50, 50, 0.3);
}
.posts-slider:hover .posts-slider__overlay {
    background-color: rgba(50, 50, 50, 0.5);
}

/* Recent posts slider -- Title */
.posts-slider__title {
    display: block;
}
.posts-slider__title a {
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.1111;
    max-width: 100%;
    color: #ffffff;
}
.posts-slider__title a:hover,
.posts-slider__title a:active,
.posts-slider__title a:focus {
    color: #adadad;
}

/* Recent posts slider -- Meta */
.posts-slider__category {
    display: block;
    position: absolute;
    top: 0;
    text-align: center;
    width: 100%;
    line-height: 0;
}
.posts-slider__category a {
    display: inline-block;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    padding: 4px 16px;
    margin-bottom: 13px;
    background-color: #00abef;
    color: #ffffff;
}
.posts-slider__category a:hover {
    color: rgba(255,255,255,0.5);
}
.posts-slider__date {
    display: block;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    text-transform: uppercase;
    margin-top: 15px;
    color: #b2b2b2;
}

/* Recent posts slider -- next, prev */
.posts-slider.owl-carousel .owl-controls .owl-nav .owl-next {right: 0;}
.posts-slider.owl-carousel .owl-controls .owl-nav .owl-prev,
.posts-slider.owl-carousel .owl-controls .owl-nav .owl-next {
    width: 60px;
    position: absolute;
    top: 0;
    bottom: 0;
    height: auto;
    padding: 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
}
.posts-slider.owl-carousel .owl-controls .owl-nav .owl-prev:hover,
.posts-slider.owl-carousel .owl-controls .owl-nav .owl-next:hover {
    background: rgba(255, 255, 255, 0.3);
}
.posts-slider.owl-carousel .owl-controls {margin-top: 0;}
.posts-slider.owl-carousel .owl-controls .owl-nav {
    position: initial;
    -webkit-transform: initial;
    -ms-transform: initial;
    transform: initial;
}
.posts-slider__icon {
    position: absolute;
    top: 50%;
    left: 0;
    width: 60px;
    font-size: 14px;
    line-height: 14px;
    margin-top: -7px;
    color: #f6f6f6;
}

/* Recent posts slider -- helpers classes */
.posts-slider__table {
    display: table !important;
    height: 100% !important;
    width: 100% !important;
}
.posts-slider__cell {
    display: table-cell !important;
    vertical-align: bottom !important;
}

/* Font family */
.posts-slider__title a,
.posts-slider__category,
.posts-slider__date,
.font-family--roboto {
    font-family: 'Roboto', sans-serif;
}

/* Animate/Transition */
.posts-slider .posts-slider__overlay,
.posts-slider:hover .posts-slider__overlay,
.posts-slider.owl-carousel .owl-controls .owl-nav .owl-prev,
.posts-slider.owl-carousel .owl-controls .owl-nav .owl-next,
.posts-slider.owl-carousel .owl-controls .owl-nav .owl-prev:hover,
.posts-slider.owl-carousel .owl-controls .owl-nav .owl-next:hover,
.transition--on {
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

/* Disable: Animate/Transition */
.transition--off {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

/**
 * Responsive and widget placements
 */

.widget-width__container .posts-slider__image {
    min-height: 500px;
}
@media screen and (max-width: 767px) {
    .widget-width__container .posts-slider__image {
        min-height: 330px;
    }
}