/* 
 *  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;
        }
        .slide-main-active .owl-carousel .owl-item img {
            height: auto !important;
        }

    .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;
    }

    /* ProductVideo added for active item selection*/
    /*owl-carousel Highlight current items*/
    .owl-item.active.current img {
        box-shadow: 0 0 5px rgba(81, 203, 238, 1);
        /* padding: 3px 0px 3px 3px;
    margin: 5px 1px 3px 0px;*/
        padding: 1px;
        margin: 0;
        border: 1px solid rgba(81, 203, 238, 1);
    }

    .owl-item.active img {
        box-shadow: none;
        padding: 0px;
        margin: 0;
        border: solid 1px #c3c4c6;
    }

    .owl-item > div {
        border: 0 !important;
    }

    /*new
.owl-thumb-item img {
    width: 150px;
    height: auto;
}

.owl-thumbs {
    position: absolute;
    bottom: 0;
    left: 0;
    display: table;
    width: 100%;
    text-align: center;
    padding: 5%;
}

.owl-thumb-item {
    display: table-cell;
    border: none;
    background: none;
    padding: 0;
    opacity: .4;
}

    .owl-thumb-item.active {
        opacity: 1;
    }

.label {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #0a6cff;
    color: white;
    padding: 10px 20px;
    z-index: 5;
    text-align: center;
}*/

    .big .item, .owl-video-big .item {
        padding: 0px;
        margin: 2px;
        color: #FFF;
        border-radius: 3px;
        text-align: center;
    }

    .thumbs .item, .owl-video-thumbs .item {
        height: 76px;
        padding: 0px;
        margin: 2px;
        color: #FFF;
        border-radius: 3px;
        text-align: center;
        cursor: pointer;
    }

        .thumbs .item h1 {
            font-size: 18px;
        }

    .thumbs .current .item {
        background: #000;
    }

    .owl-theme .owl-nav [class*='owl-'] {
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

        .owl-theme .owl-nav [class*='owl-'].disabled:hover {
            background-color: #D6D6D6;
        }

    .big.owl-theme {
        position: relative;
    }

        .big.owl-theme .owl-next, .big.owl-theme .owl-prev {
            background: transparent;
            width: 22px;
            line-height: 40px;
            height: 40px;
            margin-top: -20px;
            position: absolute;
            text-align: center;
            top: 50%;
            cursor: pointer;
        }

            .big.owl-theme .owl-next .fa, .big.owl-theme .owl-prev .fa {
                font-weight: normal;
            }

        .big.owl-theme .owl-prev {
            left: -30px;
        }

        .big.owl-theme .owl-next {
            right: -30px;
        }

    .thumbs.owl-theme .owl-next, .thumbs.owl-theme .owl-prev {
        background: transparent;
    }


    .product-details-area .owl-nav .owl-prev {
        left: -27px;
    }

    .product-details-area .owl-nav .owl-next {
        right: -27px;
    }




    /*Section*/
    section {
        margin: 65px 0 0 0;
        padding: 0px 20px 0 0px;
        border-radius: 0;
        width: 100%;
        display: inline-block;
        height: auto;
        border: 0;
    }

    @media only screen and (max-width: 767px) {
        section {
            padding: 0px 20px 0 20px;
        }
    }

    section .all {
        width: 100%;
        height: auto;
        display: inline-block;
    }

        section .all .slider {
            width: auto;
            height: auto;
            /*overflow: hidden;*/
            border-radius: 0px;
            position: relative;
        }

            section .all .slider .owl-nav, section .all .slider .owl-dots {
                display: none;
            }

            section .all .slider:hover .left {
                visibility: visible;
                opacity: 1;
                left: -30px;
            }

            section .all .slider:hover .right {
                visibility: visible;
                opacity: 1;
                right: -30px;
            }

            section .all .slider .item-box {
                padding: 00px;
                overflow: hidden;
                width: 100%;
                height: 100%;
                position: relative;
                border-radius: 0px;
                background: none;
                background-size: cover;
            }

                section .all .slider .item-box a, section .all .video-slider .item-box iframe {
                    margin-bottom: 0;
                    z-index: 1;
                }


                section .all .slider .item-box:after {
                    width: 100%;
                    height: 100%;
                    top: 0;
                    left: 0;
                    position: absolute;
                    content: "";
                    display: block;
                }

            section .all .slider .left {
                cursor: pointer;
                position: absolute;
                z-index: 1;
                top: 0;
                bottom: 0;
                left: -30px;
                margin: auto;
                visibility: visible;
                opacity: 1;
                transition: all ease 0.25s;
                width: 40px;
                height: 44px;
                color: #36bde5;
                font-size: 44px;
                text-align: center;
            }

                section .all .slider .left:hover {
                    visibility: visible;
                    opacity: 1;
                    left: -30px;
                }

                section .all .slider .left.nonl {
                    left: -30px;
                }

            section .all .slider .right {
                cursor: pointer;
                position: absolute;
                z-index: 1;
                top: 0;
                bottom: 0;
                right: -30px;
                margin: auto;
                visibility: visible;
                opacity: 1;
                transition: all ease 0.25s;
                width: 40px;
                height: 44px;
                color: #36bde5;
                font-size: 44px;
                text-align: center;
            }

                section .all .slider .right:hover {
                    visibility: visible;
                    opacity: 1;
                    right: -30px;
                }

                section .all .slider .right.nonr {
                    right: -20px;
                    opacity: 0;
                    visibility: hidden;
                }

        section .all .slider-two {
            width: auto;
            height: auto;
            /*overflow: hidden;*/
            position: relative;
        }

            section .all .slider-two .owl-nav, section .all .slider-two .owl-dots {
                display: none;
            }

            section .all .slider-two:hover .left-t {
                visibility: visible;
                opacity: 1;
                left: -30px;
            }

            section .all .slider-two:hover .right-t {
                visibility: visible;
                opacity: 1;
                right: -30px;
            }

            section .all .slider-two .item {
                transition: all ease 0.25s;
                height: auto;
                border-radius: 3px;
                border: solid 3px #e6ecf2;
                cursor: pointer;
                background-size: cover;
            }

                section .all .slider-two .item.active {
                    box-shadow: 0 0 7px rgba(81, 203, 238, 1);
                    padding: 0px;
                    margin: 0;
                    border: 1px solid rgba(81, 203, 238, 1) !important;
                }

            section .all .slider-two .owl-stage {
                padding: 20px 0;
            }

            section .all .slider-two .left-t {
                left: -40px;
                cursor: pointer;
                position: absolute;
                z-index: 1;
                top: 0;
                bottom: 0;
                left: 0px;
                margin: auto;
                visibility: hidden;
                opacity: 0;
                transition: all ease 0.25s;
                width: 40px;
                height: 44px;
                color: #36bde5;
                font-size: 44px;
                text-align: center;
            }

                section .all .slider-two .left-t:hover {
                    visibility: visible;
                    opacity: 1;
                    left: -30px;
                }

                section .all .slider-two .left-t.nonl-t {
                    left: -30px;
                    opacity: 0;
                    visibility: hidden;
                }

            section .all .slider-two .right-t {
                cursor: pointer;
                position: absolute;
                z-index: 1;
                top: 0;
                bottom: 0;
                right: 0px;
                margin: auto;
                visibility: hidden;
                opacity: 0;
                transition: all ease 0.25s;
                width: 40px;
                height: 44px;
                color: #36bde5;
                font-size: 44px;
                text-align: center;
            }

                section .all .slider-two .right-t:hover {
                    visibility: visible;
                    opacity: 1;
                    right: -30px;
                }

                section .all .slider-two .right-t.nonr-t {
                    right: -40px;
                    opacity: 0;
                    visibility: hidden;
                }

    section.video-slider-section {
        margin-top: 0;
    }
    /*Responsive video iframe*/
    [style*="--aspect-ratio"] > :first-child {
        width: 100%;
    }

    [style*="--aspect-ratio"] > img {
        height: auto;
    }


    [style*="--aspect-ratio"] {
        position: relative;
    }

        [style*="--aspect-ratio"]::before {
            content: "";
            display: block;
            padding-bottom: calc(100% / (var(--aspect-ratio)));
        }

        [style*="--aspect-ratio"] > :first-child {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
        }
    /*End Responsive video iframe*/


.gallery-details-slide .left-t {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0px;
    margin: auto;
    visibility: visible;
    opacity: 1;
    transition: all ease 0.25s;
    width: 40px;
    height: 44px;
    color: #36bde5;
    font-size: 44px;
    text-align: center;
}
.gallery-details-slide .right-t {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0px;
    margin: auto;
    visibility: visible;
    opacity: 1;
    transition: all ease 0.25s;
    width: 40px;
    height: 44px;
    color: #36bde5;
    font-size: 44px;
    text-align: center;
}
@media only screen and (max-width: 991px) {
    .gallery-details-area {
        width: 90%;
        margin: 0 auto;
    }
    .gallery-details-slide .owl-nav .owl-prev {
        left: -40px;
    }
    .gallery-details-slide .owl-nav .owl-next {
        right: -40px;
    }
    .gallery-details-slide .left-t {
        left: 8px;
    }

    .gallery-details-slide .right-t {
        right: 8px;
    }
}