.single_recipe .product_gallery .carousel-item {
    padding: 0;
}
.single_recipe .product_gallery .carousel-item img{
    border-radius: 10px;
}
.single_recipe .product_gallery .carousel-indicators button{
    padding:0;
}
.single_recipe .product_gallery .carousel-indicators button img{
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.single_recipe .share_btn.btn {
    padding: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}
.single_recipe .category_badge img {
    margin-bottom: 0;
}
.single_recipe .product_title {
    margin-bottom: 5px;
    font-size: 30px;
}
.single_recipe .recipe_details .sub_title{
    font-size: 18px;
    color: var(--black);
}
.single_recipe .recipe_details {
    padding: 25px 0;
}
.single_recipe .cus_list{
    display: flex;
}
.single_recipe .cus_list .item{
    margin-bottom: 11px;
    margin-right: 30px;
}
.single_recipe .cus_list .item img{
    margin-right: 7px;
    width: 23px;
}
.single_recipe .nav-pills .btn {
    border-radius: 3px;
    border: 1px solid #f2f2f2;
    background: transparent;
    color: var(--t_color);
    padding: 13px 26px;
    width: 195px;
}
.single_recipe .nav-pills .btn svg{
    width: 22px;
    height: 23px;
    margin-right: 5px;
    margin-top: -5px;
}
.single_recipe .nav-pills .btn svg path {
    fill: var(--t_color);
}
.single_recipe .nav-pills .btn.active, .single_recipe .nav-pills .btn:hover{
    background: var(--t_color);
    color: var(--white);
}
.single_recipe .nav-pills .btn.active svg path, .single_recipe .nav-pills .btn:hover svg path{
    fill: var(--white);
}
.ingredients_list{
    padding: 15px;
    border: 1px solid #f2f2f2;
    border-radius: 10px;
}
.ingredients_list li{
    position: relative;
    padding-left: 17px;
    margin-bottom: 5px;
}
.ingredients_list li:after{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--t_color);
    left: 0;
    border-radius: 50%;
    top: 9px;
}
.ingredients_list.recipe_steps li{
    border-bottom:1px solid #f2f2f2;
    padding: 15px;
    margin-bottom: 0;
}

.recipe_steps li .text{
    color: #707070;
}
.ingredients_list.recipe_steps{padding: 0;}
.ingredients_list.recipe_steps li:after{
    display: none;
}

@media (max-width:767px){
    .single_recipe .category_badge img {
        width: 27px;
    }
    .single_recipe .product_title {
        margin-bottom: 5px;
        font-size: 20px;
    }
    .single_recipe .recipe_details .sub_title {
        font-size: 16px;
    }
    .single_recipe .cus_list .item img {
        width: 21px;
    }
    .single_recipe .cus_list .item {
        margin-right: 13px;
    }
    .single_recipe .nav.nav-pills{
        justify-content: center;
    }
    .single_recipe .nav-pills .btn {
        padding: 13px 23px;
        width: 150px;
    }
    .single_recipe .recipe_details {
        padding-bottom: 0;
    }
}