/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.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;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.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-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img.product-image-photo {
    display: block;
    width: 100%;
}
.owl-carousel .owl-nav {
  position: absolute; 
  top:20%;
  width: 100%;

}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  position: absolute; 
  top:30%;
  width: 100%;
  display: none;
}
.owl-carousel  .owl-next:before{
    content: "\e70a";
    font-family: "iconfont";
    font-size: 40px;
    font-weight: normal;
    right:-40px;
    color: #999;
    position: absolute;
    line-height: normal;
}
.owl-carousel  .owl-prev:before{
    content: "\e637";
    font-family: "iconfont";
    font-size: 40px;
    font-weight: normal;
    left:-40px;
    color: #999;
    position: absolute;    
    line-height: normal;
}
.owl-carousel  .owl-next span,.owl-carousel  .owl-prev span{
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.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 {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -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 */
.no-js .owl-carousel {
    display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
    animation-duration: 1000ms;
    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 Carousel - Auto Height Plugin
 */
.owl-height {
    transition: height 500ms ease-in-out;
}

/*
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
    /**
      This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
      calculation of the height of the owl-item that breaks page layouts
     */
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
    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("../../../../../frontend/Magento/blank/en_US/Mageplaza_Core/css/owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms 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-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;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.owl-dots {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
}

.owl-dots button.owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 6px;
    height: 6px;
    background: #b0b0b0;
    border-radius: 10px;
}

.owl-dots button.owl-dot.active {
    background: #cd0000;

}

.loop .owl-item {
    background: #fff;
    border-radius: 5px;
    text-align: center;
    min-height: 300px;
    overflow: hidden;
}

.owl-carousel .product-image-photo {
    position: static;
}

.feature-dive {
    background: #fff;
    padding: 80px 0;
}

.news-dive-con {
    padding: 80px 0;
}

.feature-wide,
.news-wide,
.footer-ad-wide,.trivia-wide {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
}
.trivia{
    float: right;
    width: 50%;
    padding-left:20px;
    box-sizing: border-box;
}
.star-review{
    float: left;
    width:50%;
    padding-right:20px;
    box-sizing: border-box;
}
.trivia-wide .trivia .owl-carousel .owl-prev:before{
    font-size: 60px;
    left: -30px;
}
.trivia-wide .trivia .owl-carousel .owl-next:before{
   font-size: 60px;
    right: -30px;  
}
.star-review-content{
        border: 8px solid #e7e7e7;
    padding: 40px 60px 40px 60px;
    border-radius: 5px;
    position: relative;
        min-height: 300px;
    box-sizing: border-box;
    background: #e7e7e7;
}
.star-review-content .star i{
    padding-right: 3px;
    color: #f5a81c;

}
.star-review-content .review-content{
    padding-bottom: 0px;
    font-family: "Open Sans";
    font-size: 28px;
    text-align: center;
    font-weight: 400;
}
.star-review-content .name{
    font-family: "Oswald";
    font-size: 20px;
    text-align: center;
    font-weight: 700;
}
.star-review-content .star
{
padding-bottom: 10px;
}

.star-review-content:before{
    content: "\f10e";
    display: block;
    font-size: 40px;
    /*position: absolute;*/
    left: -20px;
    top: 15%;
    font-family: "FontAwesome";
    color: #3366ff;
    /*background: #fff;*/
    text-align: center;
    padding-bottom: 10px;

}

.feature-wide .item {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}

.news-wide .item {
    background: #3366ff;
    color: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.news-wide .news-con {
    padding: 0 20px;
}

.feature-wide .item h2 {
    font-size: 16px;
}

.news-wide h2 {
    font-size: 16px;
    text-transform: none;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: bold;
}

.news-wide h2 a {
    color: #fff;
}

.news-wide .more {
    display: block;
    background: #fff;
    margin: 10px 0;
    border-radius: 5px;
    padding: 10px 0;
    color: #3366ff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    text-align: center;
}

.feature-wide .fea-content {
    padding: 0 20px 20px 20px;
}

.feature-wide .more {
    font-weight: bold;
}

.feature-wide img:hover {
    opacity: 0.8
}

.footer-ad img {
    width: 100%;
}

.footer-ad {
    line-height: 0;
}

.footer-ad {
    background-size: cover;
    clear: both;
}

img {
    position: relative;
}

.footer-ad-content {
    box-sizing: border-box;
    color: #fff;
    max-width: 500px;
    line-height: normal;
    padding: 50px 20px 100px 20px;

}

.footer-ad-content h2 {
    font-family: 'Courgette', sans-serif;
    font-weight: bold;
    font-size: 45px;
    text-transform: none;
}

.footer-ad-content .text {
    padding-bottom: 20px;
}

.footer-ad-content .footer-btn {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 5px;
    background: #33ccff;
    color: #fff;
    max-width: 120px;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
}

.footer-ad-content .footer-btn:hover {
    background: #3366ff;
}

.footer-btn a,.footer-btn a:visited{
    color: #fff;
}

.footer-btn a:hover {
    text-decoration: none;
    color: #fff;
}

.news-con .mp-post-title a {
    color: white;
}

.news-wide h2 {
    height: 38px;
    overflow: hidden;
    margin-bottom: 10px;
}

.news-con .fea-content {
    height: 95px;
    overflow: hidden;
}

.news-wide .news-con {
    padding: 0 20px 10px;
}

.cms-page-view .main h2,
.cms-page-view .main h3,
.cms-page-view .main h4,
.cms-page-view .main h5,
.cms-page-view .main b,
.cms-page-view .main strong {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: bold;
}

.cms-page-view .main h2,
.cms-page-view .main h3 {
    color: #464646;
    font-size: 14px;
}

.cms-page-view .page-title {
    margin-bottom: 20px;
}

.cms-page-view .page-wrapper {
    background: #fff;
    color:#464646;
}

.optgroup {
    font-weight: bold;
    background: #efefef;
    color: #555;
}

.follow_link .box.boxs {
   /* max-width: 80px;*/
    overflow: hidden;
    float: left;
    max-height: 90px;
    /*margin-right: 5px;*/
    margin-bottom: 0px;
    text-align: center;
}

.follow_link .boxs img {
    max-width: 120px;
    margin: 0 auto;
    text-align: center;
    min-height: 90px;
}

.follow_link .boxs img:hover {
    opacity: 0.8;
}

.v-active {
    display: none;
}

.cms-page-view ol>li>ul {
    margin-top: 1rem;
}

.cms-page-view ol>li>ul>li {
    list-style-type: disc;
}



.cart-container .form-cart {
    background: #fff;
    border-radius: 5px;
    padding: 10px;
}

.cart-summary {
    background: #fff;
    border-radius: 5px;
}

#checkoutSteps {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
}

.opc-sidebar.opc-summary-wrapper {
    background: #fff;
    border-radius: 5px;
    margin-top: 0px;
}

.opc-block-summary {
    background: transparent;
}

.payment-method img {
    height: 30px;
}

.opc-progress-bar {
    margin-top: 20px;
}

.tips {
    text-align: center;
    color: red;
    clear: both;
}
.photos-wrapper {
    margin: 0 -2.5px;
}
.photos-wrapper a{
    display: block;
    overflow: hidden;
    line-height: 0;
}
.photos-wrapper >div{
        width: 33.3333%;
    float: left;
    overflow: hidden;
    padding: 0 2.5px 5px;
    box-sizing: border-box;
}

@media screen and (min-width: 768px) {
    .owl-dots{display: none;}

    .news-wide h2.mp-post-title {
        height: 38px;
        overflow: hidden;
    }

    .fea-content {
        height: 100px;
        overflow: hidden;
    }

    .fotorama__wrap .fotorama__stage {
        /*left: 0px !important;/*/

    }

}

@media screen and (max-width:768px) {
   
    .owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}
    .owl-dots {
        display: none;
    }
    .star-review,.trivia{
        width: 100%;
        padding:0;
    }
    .star-review{
        margin-bottom: 20px;
    }
    .top-dive .loop .owl-item{
        min-height: 435px;
    }
    .owl-carousel .owl-nav{display: none!important;}
    .diy-index-solution .owl-carousel .owl-nav{display: block!important;}
    .diy-index-solution .owl-carousel .owl-prev:before {
        content: "\e637";
        font-family: "iconfont";
        font-size: 25px;
        font-weight: normal;
        left: -10px;
        color: #999;
        position: absolute;
        line-height: normal;
    }
    .diy-index-solution .owl-carousel .owl-next:before {
        content: "\e70a";
        font-family: "iconfont";
        font-size: 25px;
        font-weight: normal;
        right: -10px;
        color: #999;
        position: absolute;
        line-height: normal;
    }
    .diy-index-solution .owl-carousel .owl-nav {
        position: absolute;
        top: 35%;
        width: 100%;
    }
    .star-review-content .review-content{
    padding-bottom: 0px;
    font-family: "Open Sans";
    font-size: 18px;
    text-align: center;
    font-weight: 400;
}
.star-review-content .name{
    font-family: "Oswald";
    font-size: 16px;
    text-align: center;
    font-weight: 700;
}
.star-review-content{
        padding: 20px 10px 10px 10px;
}

}