﻿#image-carousel {
    margin-bottom: 20px;
}

    #image-carousel .item div {
        background-size: cover;
        background-position: center center;
        padding-bottom: 43.75%;
    }

.main-image {
    width: 100%;
    line-height: 0;
}

    .main-image img {
        width: 100%;
    }

.carousel-container {
    position: relative;
}

.carousel-items {
    position: absolute;
    top: 0;
    right: 0;
    color: #FFF;
    text-shadow: 1px 1px 1px #000;
    padding: 10px;
    z-index: 2;
}

.item {
    width: 100%;
}

.item-image {
    padding-bottom: 75%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Overlay */
.carousel-overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
    opacity: .5;
    background-color: #0b0b0b;
    z-index: 2;
    transition: opacity 1.0s;
}

.center .carousel-overlay {
    opacity: 0;
}
/* End Overlay */

/* Navigation */
.owl-dots {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
}

.owl-theme .owl-controls {
    margin-top: 0;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #e1684c;
}

.owl-theme .owl-dots .owl-dot span {
    background: #fff;
}

.owl-theme .owl-controls .owl-nav [class*=owl-] {
    position: absolute;
    top: 50%;
    display: block;
    width: 40px;
    height: 52px;
    font-size: 50px;
    text-align: center;
    color: #fff;
    background: none;
    padding: 0;
    margin: 0;
    margin-top: -25px;
    border-radius: 0;
}

    .owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
        background: none;
    }

.owl-carousel .owl-controls .owl-prev {
    left: 0;
}

.owl-carousel .owl-controls .owl-next {
    right: 0;
}
/* End Navigation*/

@media only screen and (max-width: 768px) {
    .carousel-items {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    #image-carousel .item div,
    .blog-image-full div {
        padding-bottom: 75% !important;
    }
}


.item.listing-video-item:before {
    content: " ";
    padding-top: 75%;
    display: block;
}

.item.listing-video-item {
    position: relative;
    background: #000;
}

.listing-video-item > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-yt-nav {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    padding: 15px;
    background: #241f20;
    border-radius: 4px;
    color: #fff;
    content: " ";
    display: inline-block;
    background-image: url(/controls/carousel/img/yt_icon_rgb.png);
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 60px;
    cursor: pointer;
    user-select: none;
    transition: all 0.25s;
}

.carousel-yt-nav.carousel-yt-slide {
    opacity: 0;
    transform: scale(0.5);
}