/* TITLE */
.elementor-heading-title{
    line-height: 1.3!important;
}
/* TITLE */

/* ABOUT US */
.about-us-intro-hide-in-mobile{
    display: block;
}
.about-us-intro-show-in-mobile{
    display: none;
}
.milestones-outer-div{
    margin: 0;
    &:before{
    content: '';
    position: absolute;
    top: 35px;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 1px;
    background-color: #D2D5DA;
    }
    .timeline-div{
        margin: auto;
        position: relative;
        .single-timeline{
            width: calc(50% - 40px);
            float: left;
            padding: 20px;
            clear: both;
            text-align: right;
            &:not(:first-child){
                margin-top: -60px;
            }
            .year{
                font-weight: 500;
                font-size: 20px;
                color: #191919;
                margin-bottom: 0;
                position: relative;
                &:before{
                    content: '';
                    position: absolute;
                    width: 20px;
                    height: 20px;
                    border: 2px solid #18150E;
                    background-color: #18150E;
                    border-radius: 100%;
                    top: 50%;
                    transform: translateY(-50%);
                    right: -70px;
                }
            }
            &:nth-child(2n){
                text-align: left;
                float: right;
                .year{
                    &:before{
                    left: -70px;
                    }
                }
            }
        }
    }
}
@media only screen and (max-width: 767px) {
    .about-us-intro-hide-in-mobile{
        display: none;
    }
    .about-us-intro-show-in-mobile{
        display: block;
    }
    .milestones-outer-div{
        &:before{
        left: 10px;
        }
        .timeline-div{
            .single-timeline{
                margin-left: 20px;
                width: calc(100% - 30px);
                text-align: left;
                &:not(:first-child){
                    margin-top: 0;
                }
                .year{
                    &:before{
                        left: -40px;
                    }
                }
                &:nth-child(2n){
                    float: left;
                    .year{
                        &:before{
                        left: -40px;
                        }
                    }
                }
            }
        }
    }
}
/* ABOUT US */

/* PRODUCT */
.product-intro{
    max-width: 50%!important;
}
.product-listing-div.all-products .filters-div .filter-div .single-filter select,
.product-listing-div.all-products .filters-div .filter-div .apply-btn .btn-falcon{
    height: 40px;
}
.product-listing-div.all-products .filters-div .filter-div .apply-btn .btn-falcon{
    padding: 10px 15px;
}
/* PRODUCT */

/* RECIPES */
.page-recipes .featured-recipes-wrapper{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    height: 500px;
}
.page-recipes .featured-recipes-wrapper a:nth-child(1) { grid-area: 1 / 1 / 13 / 7; }
.page-recipes .featured-recipes-wrapper a:nth-child(2) { grid-area: 1 / 7 / 7 / 13; }
.page-recipes .featured-recipes-wrapper a:nth-child(3) { grid-area: 7 / 7 / 13 / 13; }
.page-recipes .featured-recipes-wrapper a{
    position: relative;
    background-position: center;
    background-size: cover;
}
.page-recipes .featured-recipes-wrapper a::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, .6) 95%);
    opacity: 1;
    z-index: 0;
    transition: 300ms all ease-in-out;
    -o-transition: 300ms all ease-in-out;
    -ms-transition: 300ms all ease-in-out;
    -moz-transition: 300ms all ease-in-out;
    -webkit-transition: 300ms all ease-in-out;
}
.page-recipes .featured-recipes-wrapper a:hover:before{
    opacity: .5;
}
.page-recipes .featured-recipes-wrapper a span{
    font-size: 20px;
    position: absolute;
    bottom: 0;
    padding: 15px;
    font-weight: 400;
    color: white;
    line-height: 1.3;
}
.page-recipes .recipe-filter-wrapper{
    padding: 30px 0;
}
.page-recipes .recipe-filter-wrapper .form-recipe-filter,
.page-recipes .recipe-filter-wrapper .form-features-functions-filter{
    display: flex;
    gap: 0 15px;
}
.page-recipes .recipe-filter-wrapper .form-falcon .form-group .form-control{
    border: 1px solid #707070;
    border-radius: 5px;
    padding: 8px 30px 8px 15px;
    font-size: 12px;
    color: #322F2D;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 90px;
    width: 100%;
    background-image: url(../images/icon-arrow-down@2x.webp);
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-size: 12px 12px;
    outline: none;
    width: ;
    height: 40px;
}
.page-recipes .recipe-filter-wrapper .form-falcon .form-group .form-control:focus{
    box-shadow: none;
}
.page-recipes .recipe-filter-wrapper .form-falcon .form-group .btn-falcon{
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 400;
    height: 40px;
}
.page-recipes .recipe-listing-wrapper > div{
    gap: 20px 0;
}
.page-recipes .recipe-listing-wrapper .block-wrapper-recipe{
    border: 1px solid #D2D5DA;
    border-radius: 1rem;
    height: 100%;
    overflow: hidden;
}
.page-recipes .recipe-listing-wrapper .block-wrapper-recipe .block-recipe .recipe-image img{
    width: 100%;
}
.page-recipes .recipe-listing-wrapper .block-wrapper-recipe .block-recipe .recipe-details{
    margin: 15px;
}
.page-recipes .recipe-listing-wrapper .block-wrapper-recipe .block-recipe .recipe-details span.list-categories{
    display: flex;
    gap: 0 10px;
}
.page-recipes .recipe-listing-wrapper .block-wrapper-recipe .block-recipe .recipe-details span.list-categories span{
    color: var(--color-black);
    font-weight: 400;
    font-size: 12px;
}
.page-recipes .recipe-listing-wrapper .block-wrapper-recipe .block-recipe .recipe-details div.recipe-title{
    margin-top: 10px;
    color: var(--color-black);
    font-weight: 500;
    line-height: 1.3;
}
.page-recipes .recipe-listing-wrapper .block-wrapper-recipe .block-recipe .recipe-details div.recipe-title:hover{
    color: var(--color-black-hovered);
}
/* RECIPES */

/* RECIPES - DETAIL */
.page-recipe-details .recipe-top-wrapper > div:nth-child(1){
    padding: 0;
}
.page-recipe-details .recipe-top-wrapper .recipe-details ul.list-category{
    list-style: none;
    margin-left: 0;
    padding: 0;
}
.page-recipe-details .recipe-top-wrapper .recipe-details ul.list-category li{
    display: inline-block;
    margin-right: 20px;
    text-transform: capitalize;
    font-weight: 400;
}
.page-recipe-details .recipe-top-wrapper .recipe-details .recipe-info .info-block{
    display: flex;
    padding-top: 15px;
    gap: 15px;
}
.page-recipe-details .recipe-top-wrapper .recipe-details .recipe-info .info-block span{
    font-weight: 400;
    width: 80%;
}
.page-recipe-details .recipe-top-wrapper .recipe-details .recipe-info .info-block small{
    display: block;
    font-weight: 300;
}
.page-recipe-details .recipe-top-wrapper .recipe-details .recipe-actions{
    margin-top: 60px;
    flex-wrap: nowrap;
    gap: 0 15px;
}
.page-recipe-details .recipe-bottom-wrapper{
    padding: 30px 0;
}
.page-recipe-details .recipe-bottom-wrapper .recipe-ingredients ul,
.page-recipe-details .recipe-bottom-wrapper .recipe-method ul{
    margin-bottom: 25px;
    margin-left: 0;
}
.page-recipe-details .recipe-bottom-wrapper .recipe-ingredients ul li,
.page-recipe-details .recipe-bottom-wrapper .recipe-ingredients p,
.page-recipe-details .recipe-bottom-wrapper .recipe-method ul li,
.page-recipe-details .recipe-bottom-wrapper .recipe-method p{
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
.page-recipe-details .recipe-bottom-wrapper > div:nth-child(1){
    padding: 20px 40px;
    background-color: #fafafa;
    border-radius: 1rem;
}
.page-recipe-details .recipe-top-wrapper > div:nth-child(2),
.page-recipe-details .recipe-bottom-wrapper > div:nth-child(2){
    padding-top: 20px;
    padding-left: 40px;
}
.page-recipe-details .recipe-bottom-wrapper > div > h4{
    line-height: 2.5;
}
.page-recipe-details .other-recipes-listing{
    padding: 30px 0;
}
.page-recipe-details .other-recipes-listing .list-recipes{
    padding: 20px 0;
    display: flex;
    gap: 20px;
}
.page-recipe-details .other-recipes-listing .list-recipes .block-recipe{
    border: 1px solid #D2D5DA;
    border-radius: 1rem;
    overflow: hidden;
}
.page-recipe-details .other-recipes-listing .list-recipes .block-recipe a img{
    width: 100%;
}
.page-recipe-details .other-recipes-listing .list-recipes .block-recipe ul.list-categories{
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    margin-top: 15px;
    padding: 0 15px;
    list-style: none;
    gap: 0 20px;
}
.page-recipe-details .other-recipes-listing .list-recipes .block-recipe ul.list-categories li{
    color: var(--color-black);
    font-weight: 400;
    font-size: 12px;
}
.page-recipe-details .other-recipes-listing .list-recipes .block-recipe .recipe-name{
    padding: 0 15px;
    margin: 5px 0 15px;
}
.page-recipe-details .other-recipes-listing .list-recipes .block-recipe .recipe-name a{
    color: #322F2D;
    margin-top: 10px;
    font-weight: 500;
    line-height: 1.3;
}
.page-recipe-details .other-recipes-listing .list-recipes .block-recipe .recipe-name a:hover{
    color: var(--color-black-hovered);
}
.page-recipe-details .other-recipes-listing .btn-falcon{
    margin-top: 25px;
}
/* RECIPES - DETAIL */

/* FF - DETAIL */
.page-ff-details .ff-details .list-category li{
    font-weight: 500;
}
/* FF - DETAIL */

/* WARRANTY */
.form-falcon .row{
    padding: 5px 0;
}
.form-falcon .form-group input[type="file"].form-control{
    display: none;
}
.form-falcon .form-group label.custom-file-button{
    font-weight: 400;
    margin: 0;
}
.form-falcon .form-group label.custom-file-button::after{
    content: 'Upload';
    float: right;
    color: #82251c;
}
.form-falcon .form-group select{
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
}
/* WARRANTY */

/* CUSTOMER SUPPORT */
.customer-support-info .single-div{
    padding: 30px 0;
    border-bottom: solid 1px #D6DADD;
    width: calc(100% - 15px);
    margin-left: 30px;
}
.customer-support-info .single-div h2{
    font-weight: 400;
    margin-bottom: 0.8rem;
}
.customer-support-info .single-div h2::before{
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: -50px;
    width: 40px;
    height: 40px;
    background-size: cover;
}
.customer-support-info .single-div:nth-child(1) h2:before{
    background-image: url('../images/icon-warranty@2x.webp');
}
.customer-support-info .single-div:nth-child(2) h2:before{
    background-image: url('../images/icon-contact-us@2x.webp');
}
.customer-support-info .single-div:nth-child(3) h2:before{
    background-image: url('../images/icon-find-a-retailer@2x.webp');
}
.customer-support-info .single-div:nth-child(3){
    border-bottom: none;
}
.customer-support-info .single-div p,
.customer-support-info .single-div a{
    font-weight: 400;
}
.customer-support-info .single-div p{
    margin-bottom: 20px;
}
/* CUSTOMER SUPPORT */

/* FOOTER */
.footer-wrapper .quick-actions-wrapper .list-actions .action-item a span{
    position: relative;
    padding-bottom: 5px;
}
.footer-wrapper .quick-actions-wrapper .list-actions .action-item a span::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-link);
    border-radius: 0;
    transition: 300ms all ease-in-out;
    -o-transition: 300ms all ease-in-out;
    -ms-transition: 300ms all ease-in-out;
    -moz-transition: 300ms all ease-in-out;
    -webkit-transition: 300ms all ease-in-out;
}
.footer-wrapper .quick-actions-wrapper .list-actions .action-item a span:hover::after{
    width: 100%;
}
.footer-widgets .sidebar-column .menu li {
    padding: 5px 0;
}
.footer-widgets .sidebar-column .menu li a{
    position: relative;
    padding-bottom: 5px;
}
.footer-widgets .sidebar-column .menu li a::after{
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-link);
    border-radius: 0;
    transition: 300ms all ease-in-out;
    -o-transition: 300ms all ease-in-out;
    -ms-transition: 300ms all ease-in-out;
    -moz-transition: 300ms all ease-in-out;
    -webkit-transition: 300ms all ease-in-out;
}
.footer-widgets .sidebar-column .menu li a:hover::after{
    width: 100%;
}
/* FOOTER */

@media only screen and (max-width: 767px) {
    /* PRODUCT */
    .product-intro{
        max-width: calc(100% - 20px) !important;
    }
    .product-listing-div.all-products .filters-div .filter-div .single-filter {
        margin: 0 8px 15px 0;
    }
    /* PRODUCT */

    /* RECIPES */
    .page-recipes .featured-recipes-wrapper{
        display: block;
        height: 100%;
    }
    .page-recipes .featured-recipes-wrapper a:nth-child(1) { grid-area: 1 / 1 / 13 / 7; }
    .page-recipes .featured-recipes-wrapper a:nth-child(2) { grid-area: 1 / 7 / 7 / 13; }
    .page-recipes .featured-recipes-wrapper a:nth-child(3) { grid-area: 7 / 7 / 13 / 13; }
    .page-recipes .featured-recipes-wrapper a{
        position: relative;
        background-position: center;
        background-size: cover;
    }
    .page-recipes .featured-recipes-wrapper a{
        display: block;
        height: 300px;
        margin: 15px 0;
    }
    .page-recipes .featured-recipes-wrapper a:nth-child(1){
        height: 500px;
    }
    .page-recipes .recipe-listing-wrapper .block-wrapper-recipe .block-recipe .recipe-details span.list-categories span{
        font-size: 10px;
    }
    .page-recipes .recipe-listing-wrapper .block-wrapper-recipe .block-recipe .recipe-details div.recipe-title{
        margin-top: 8px;
        font-size: 13px;
    }
    /* RECIPES */
    
    /* RECIPES - DETAIL */
    .page-recipe-details .recipe-top-wrapper{
        width: 100%;
        margin: 0;
        justify-content: center;
    }
    .page-recipe-details .recipe-top-wrapper > div:nth-child(2){
        padding-top: 30px;
        padding-left: 15px;
    }
    .page-recipe-details .recipe-top-wrapper .recipe-details ul.list-category li{
        font-size: 18px;
    }
    .page-recipe-details .recipe-top-wrapper .recipe-details h1.recipe-title{
        font-size: 32px;
    }
    .page-recipe-details .recipe-top-wrapper .recipe-details .recipe-info.row{
        display: block;
    }
    .page-recipe-details .recipe-top-wrapper .recipe-details .recipe-info .info-block{
        margin: 5px 0;
    }
    .page-recipe-details .recipe-top-wrapper .recipe-details .recipe-actions{
        margin-top: 30px;
    }
    .page-recipe-details .recipe-top-wrapper .recipe-details .recipe-actions > button{
        margin-top: 20px;
    }
    .page-recipe-details .recipe-bottom-wrapper > div:nth-child(1){
        padding: 4px 20px;
        max-width: calc(100% - 30px);
        margin: 15px;
    }
    .page-recipe-details .recipe-bottom-wrapper > div:nth-child(2){
        padding: 4px 20px;
        padding-top: 30px;
        max-width: calc(100% - 30px);
        margin: 15px;
    }
    .page-recipe-details .other-recipes-listing .list-recipes{
        flex-wrap: wrap;
    }
    .page-recipe-details .other-recipes-listing .list-recipes .block-recipe {
        width: calc((100% - 10px) / 2);
    }
    .page-recipe-details .other-recipes-listing .list-recipes {
        gap: 20px 10px;
    }
    .page-recipe-details .other-recipes-listing .list-recipes .block-recipe ul.list-categories li{
        font-size: 10px;
    }
    .page-recipe-details .other-recipes-listing .list-recipes .block-recipe .recipe-name{
        margin-top: 8px;
        font-size: 13px;
    }
    div.heateor_sss_follow_ul, div.heateor_sss_sharing_ul {
        display: flex;
    }
    /* RECIPES - DETAIL */

    /* WARRANTY */
    .form-falcon .row {
        padding: 0;
    }
    .form-falcon .form-group .form-label{
        padding-top: 10px;
    }
    .help-text {
        padding: 5px 0 15px;
    }
    /* WARRANTY */
}





/* PRODUCT DETAIL */
.product-sticky-wrapper {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%; 
    background: #F0EEE4;
    z-index: 3;
}

.clone {
    position: relative;
    opacity: 0;
    visibility: hidden;
    line-height: normal;
    z-index: 0;
}

.product-sticky-wrapper .content {
    max-width: 1140px;
    padding: 25px 15px 20px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.product-sticky-wrapper .content h4 {
    font-size: 16px;
}

.product-sticky-wrapper .content .title-n-review-div {
    width: calc(40% - 20px);
}  

.product-sticky-wrapper .content .title-n-review-div h4 {
	text-transform: uppercase;
}  

.product-sticky-wrapper .content .price-div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(30% - 20px);
    text-align: right;
}

.product-sticky-wrapper .content .mobile-only {
    display: none;
}

.product-sticky-wrapper .content .price-div .single-price .price {
    display: flex !important;
    margin: 0 !important;
    justify-content: end;
    align-items: end;
    gap: 20px;
}

.product-sticky-wrapper .content .price-div .single-price .price del{
    font-size: 14px;
    color: #322F2D; 
    line-height: 1;
}

.product-sticky-wrapper .content .price-div .single-price .price ins{
    display: block;
    font-size: 24px;
    color: #322F2D;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -1px;
}

.product-sticky-wrapper .content [data-bv-show="rating_summary"] .bv_main_container {
    display: none !important;
}

.product-sticky-wrapper .content .product-rating-wrapper,
.product-sticky-wrapper .content .price-div .discount-amount {
    margin: 0;
    line-height: normal;
}

.product-sticky-wrapper .content .price-div .discount-amount p {
    margin: 10px 0 0;
}

.product-sticky-wrapper .content .product-cta-div {
    width: 30%;
    text-align: right;
}

@media screen and (max-width: 1199px) {
      
    .product-sticky-wrapper .content .title-n-review-div {
        width: calc(35% - 20px);
    } 

    .product-sticky-wrapper .content .product-cta-div {
        width: 35%;
    }

}

@media screen and (max-width: 991px) {
    
    .product-sticky-wrapper .content {
        flex-wrap: wrap;
    } 

    .product-sticky-wrapper .content .product-rating-wrapper{
        margin: 0 0 10px;
    }

    .product-sticky-wrapper .content .title-n-review-div {
        width: 60%;
    } 

    .product-sticky-wrapper .content .price-div {
        width: calc(40% - 20px);
    }

    .product-sticky-wrapper .content .product-cta-div {
        width: 100%;
    }

}

@media screen and (max-width: 767px) {
     
    .product-sticky-wrapper .content {
        padding: 15px;
        gap: 0;
    }
    
    .product-sticky-wrapper .content .desktop-only {
        display: none;
    }

    .product-sticky-wrapper .content .title-n-review-div {
        width: 65%;
    } 

    .product-sticky-wrapper .content .title-n-review-div h4{
        margin-bottom: 5px;
    } 

    .product-sticky-wrapper .content .price-div {
        width: 35%;
    }

    .product-sticky-wrapper .content .price-div .single-price .price {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 20px;
    }

    .product-sticky-wrapper .content .mobile-only {
        display: block;
        margin-bottom: -20px;
        text-align: center;
        width: 100%;
    }

}
/* PRODUCT DETAIL */