/*-------------container-------------*/
.c-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1220px;
    position: relative;
}
/*---------------------global styling--------------------------*/

div {
    box-sizing: border-box;
}


/*------------------Buttons------------------*/
.arrow-link {
    color: #FF8300;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin-top: 60px;
    position: relative;
    transition: 0.3s all ease;
    letter-spacing: 0.2em;
    cursor: pointer;
}

.arrow-link:after {
    content: "";
    background-image: url("/wp-content/themes/jupiter-child/product/images/arrow-read-more.svg");
    height: 10px;
    width: 26px;
    position: absolute;
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    right: -34px;
    background-size: 100%;
    transition: transform 0.3s ease-in-out;
    /*top: auto;*/
    /*bottom: 0;*/
}
.ua-ie .arrow-link::after {
    background-size: 100% 100%;
}

.arrow-link:hover::after {
    transform: translateY(-50%) translatex(12px);
}
.ua-ie  .arrow-link:after {
    top: 48%;
}
.product-btn {
    font-size: 16px;
    padding: 11px 46px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    letter-spacing: 0.19em;
    background: #ff8300;
    border: 1px solid #FF8300;
    text-align: center;
    cursor: pointer;
}

.product-btn:hover {
    background: rgba(255, 131, 0, 0.5);
    color: #fff;
    border: 1px solid #FF8300;
}

@media (max-width: 991px) {
    .btn-default {
        padding: 11px 40px;
    }
}
@media (max-width: 595px) {
    .btn-default {
        padding: 11px 20px;
    }
}


/*-------------------------video-overlay-product--------------------------------*/
.video-overlay-product {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.video-overlay-product .content-outer {
    position: relative;
    background: #ffffff;
    min-height: 490px;
    width: 100%;
    max-width: 810px;
    padding: 10px 20px;
    display: flex;
}

.video-overlay-product .content-outer iframe {
    height: auto;
    width: 100%;
    display: block;
}

.video-overlay-product .content-outer .close-overlay {
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: -40px;
    top: -40px;
    cursor: pointer;
    background: white;
}

.video-overlay-product .content-outer .close-overlay img {
    width: 100%;
}

.video-overlay-product.active {
    opacity: 1;
    visibility: visible;
    z-index: 9999999999;
}

@media (max-width: 992px) {
    .video-overlay-product .content-outer {
        min-height: 380px;
        max-width: 650px;
    }
}

@media (max-width: 768px) {
    .video-overlay-product .content-outer {
        max-width: 84%;
        min-height: 290px;
    }
}

@media (max-width: 595px) {
    .video-overlay-product .content-outer {
        height: auto;
        min-height: auto;
    }

    .video-overlay-product .content-outer .close-overlay {
        max-width: 30px;
        max-height: 30px;
        right: -20px;
        top: -40px;
    }
    .video-overlay-product.active {
        z-index: 9999999999;

    }
}
@media screen  and (max-height: 430px){
    .video-overlay-product .content-outer {
        min-height: 257px;
        max-width: 510px;
    }
}

.ua-ie-11 .video-overlay-product .content-outer {
    height: 100%;
    max-height: 600px;
}

.ua-ie-11 .video-overlay-product .content-outer iframe {
    height: 100%;
}

.ua-ie .testimonial a.watch-video::after {
    object-fit: cover;
    width: 94px;
    height: 94px;
}

/*---------------------background-----------------------*/
.bg-blue {
    background: #f6fafc !important;
}
.bg-white {
    background: #ffff;
}
.no-padding-bottom {
    padding-bottom: 0 !important;
}

.pb-90 {
    padding-bottom: 90px;
}
@media (max-width: 991px) {
    .pb-90 {
        padding-bottom: 40px;
    }
}


/*.hide-nav header .header-menu .header-menu__main .menu-desktop-wrap {*/
/*    display: none !important;*/
/*}*/
.hide-nav header {
    display: none !important;
}
.hide-nav .utility-nav {
    display: none !important;
}
.hide-nav #mk-theme-container {
    padding-top: 0 !important;
}


