@font-face {
  font-family: 'Shallot';
  src: url('../fonts/shallot/Shallot-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Shallot';
  src: url('../fonts/shallot/Shallot-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Shallot';
  src: url('../fonts/shallot/Shallot-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Shallot';
  src: url('../fonts/shallot/Shallot-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Shallot';
  src: url('../fonts/shallot/Shallot-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Shallot';
  src: url('../fonts/shallot/Shallot-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: 'Shallot';
  src: url('../fonts/shallot/Shallot-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Shallot';
  src: url('../fonts/shallot/Shallot-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
}
@font-face {
  font-family: 'Delicy';
  src: url('../fonts/delicy/Delicy-Extrude.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Delicy';
  src: url('../fonts/delicy/Delicy-Outline.woff') format('truetype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Delicy';
  src: url('../fonts/delicy/Delicy-Regular.woff') format('truetype');
  font-weight: 400;
  font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color--: #536c40;
    --primary-color-1--: #a9746e;
    --secondary-color-1--: #c2c1a5;  
    --secondary-color-2--: #edeaca;
    --secondary-color-3--: #b09f91;
    --secondary-color-4--: #dde8b9;
    --secondary-color-5--: #efe3c8;
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: 'Shallot', sans-serif;
    background: var(--secondary-color-5--);
}

h1,h2,h3,h4,h5,h6{
    color: #000;
    margin-bottom: 0;
    font-family: 'Delicy', sans-serif;
}

p{
    font-size: 16px;
    margin: 0;
    color: #000;
}

section{
    overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4%;
    background: var(--primary-color--);
    position: sticky;
    z-index: 99;
    top: 0;
}

header .logo img{
    height: 60px;
}

header .right_side{
    display: flex;
    gap: 20px;
    align-items: center;
}

header .right_side .search_box{
    display: flex;
    /* gap: 10px; */
    /* align-items: center; */
    /* background: var(--primary-color-1--); */
    border-radius: 50px;
    overflow: hidden;
}

header .right_side .search_box .form-control{
    border-radius: 0;
    box-shadow: none;
    width: 210px;
}

header .right_side .search_box button{
    padding-left: 10px;
    padding-right: 15px;
    background: var(--primary-color-1--);
    border: none;
    color: #fff;
}

header .right_side .login a{
    color: var(--secondary-color-5--);
}

header .location_btn{
    display: none;
}

.user_dropdown{
    position: relative;
}

.user_dropdown > a{
    color: var(--secondary-color-5--);
    padding: 15px 0;
    display: inline-block;
    position: relative;
}

.user_dropdown > a::before{
    content: '';
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    transition: 0.1s;
}

.user_dropdown:hover > a::before{
    visibility: visible;
    opacity: 1;
}

.user_dropdown .drop_menu{
    position: absolute;
    width: 200px;
    background: #fff;
    right: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    visibility: hidden;
    opacity: 0;
    top: 100%;
    transition: 0.1s;
}

.user_dropdown:hover .drop_menu{
    visibility: visible;
    opacity: 1;
}

.user_dropdown .drop_menu ul li a{
    padding: 15px 13px;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid var(--secondary-color-2--);
    color: #000;
}

.user_dropdown .drop_menu ul li a:hover{
    background-color: var(--secondary-color-2--);
}

.user_dropdown .drop_menu ul li a i{
    width: 25px;
    color: var(--primary-color-1--);
    font-size: 16px;
}

.heading h2{
    font-size: 32px;
    color: var(--primary-color--);
}

.heading h2 i{
    font-size: 20px;
}

.heading span{
    font-size: 24px;
}

.meal_plane_card{
    /* background: var(--primary-color--); */
    /* margin-top: 40%; */
    padding: 20px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: 0.3s; 
    padding-bottom: 35px;
    /* margin-bottom: 40px; */
    height: 100%;
}

.meal_plane_card:hover{
    transform: scale(1.1)
}

.meal_plane_card::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color--);
    background-size: cover;
    left: 0;
    top: 0;
    z-index: -2;
    border-radius: 20px;
    transition: 0.3s;
}

.meal_plane_card:hover::before{
    background: #fff;
}


.meal_plane_card::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/meal_plane_card_bg.png);
    background-size: cover;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 20px;
    opacity: 0.5;
}

.meal_plane_card .meal_plane_card_img{
    text-align: center;
    /* margin-top: -10%; */
}

.meal_plane_card .meal_plane_card_img img{
    width: 70%;
    border-radius: 50%;
    margin-top: -40%;
}

.meal_plane_card .content h3{
    font-size: 28px;
    margin: 15px 0;
    color: #fff;
    text-align: center;
    transition: 0.3s;
}

.meal_plane_card:hover .content h3{
    color: var(--primary-color--);
}

.meal_plane_card .content p{
    font-size: 16px;
    color: #fff;
    text-align: center;
    transition: 0.3s;
    line-height: 1.3;
}

.meal_plane_card:hover .content p{
    color: var(--primary-color--);
}

.meal_plane_card .buy_subscription_btn{
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    color: var(--primary-color--);
    border-radius: 50px;
    /* margin-bottom: -10%; */
    transition: 0.3s;
    font-weight: 500;
}

.meal_plane_card:hover .buy_subscription_btn{
    background: var(--primary-color--);
    color: #fff;
}

.meal_plane_card .buy_subscription{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 100%;
}

.mt_10{
    margin-top: 120px;
}

.bg_primary{
    background: var(--primary-color--);
}

.meal_plane_card_1{
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
}

.meal_plane_card_1 .offer_p{
    color: #536c40;
    padding-top: 7px;
    border-top: 1px dashed #000;
    margin-top: 10px;
}

.meal_plane_card_1 .meal_plane_card_img{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.meal_plane_card_1 .meal_plane_card_img img{
    border-radius: 20px; 
}

.meal_plane_card_1 .meal_plane_card_img .plane_amt{
    background: var(--primary-color--);
    position: absolute;
    display: inline-block;
    padding: 10px 20px;
    left: 0;
    bottom: 0;
    color: #fff;
    border-radius: 0 20px 0 0;
    font-size: 14px;
    line-height: 1.5;
}

.meal_plane_card_1 .content h3{
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.meal_plane_card_1 .content h3 i{
    padding-right: 10px;
}

.meal_plane_card_1 .content p{
    font-size: 14px;
    line-height: 1.5;
}
/* 
.meal_plane_card_1 .content ul{
    display: table;
} */

.meal_plane_card_1 .content ul li{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--secondary-color-1--);
    padding: 10px 0;
}

.meal_plane_card_1 .content ul li:last-child{
    border: none;
}

.meal_plane_card_1 .content ul li strong, .meal_plane_card_1 .content ul li span{
    display: table-cell;
}

.meal_plane_card_1 .content ul li span{
    padding-left: 10px;
}

.veg-badge-container{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid green;
    height: 25px;
    width: 25px;
    flex: 0 0 auto;
}

.non-veg-badge-container{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e43b4f;
    height: 25px;
    width: 25px;
    flex: 0 0 auto;
}

.circle{
    position: absolute;
    background-color: green;
    border-radius: 50%;
    height: 15px;
    width: 15px;
}

.triangle{
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 2px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #e43b4f;
}

.gd {
  display: grid;
}

/* #container {
  width: 600px;
  margin: 80px auto;
  counter-reset: button-counter;
  grid-template-columns: repeat(3, 1fr);
} */

.toggle-button-container {
    position: relative;
    width: 200px;
    height: 60px;
    box-sizing: border-box;
}

.toggle-button {
  position: relative;
  /* height: 100px;
  margin: 20px;
  background-color: #fff;
  box-shadow: 0 10px 20px -8px #c5d6d6; */
  border-radius: 4px;
}

/* .toggle-button:before {
    counter-increment: button-counter;
    content: counter(button-counter);
    position: absolute;
    right: 0;
    bottom: 0;
    color: #d7e3e3;
    font-size: 12px;
    line-height: 1;
    padding: 5px;
} */

.knob,
.btn_new-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.btn_new {
    position: relative;
    /* top: 50%; */
    width: 176px;
    height: 45px;
    /* margin: -20px auto 0 auto; */
    overflow: hidden;
}

.btn_new.btn_new-pill,
.btn_new.btn_new-pill > .btn_new-bg {
  border-radius: 100px;
}

.btn_new.btn_new-rect {
  border-radius: 2px;
}

.checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.knob {
  z-index: 2;
}

.btn_new-bg {
  width: 100%;
  background-color: #e0ffe0;
  transition: 0.3s ease all;
  z-index: 1;
}

/* Button 10 */
#button-10 .knob:before,
#button-10 .knob:after,
#button-10 .knob span {
    position: absolute;
    top: 4px;
    width: 82px;
    height: 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1px;
    padding: 18px 4px;
    border-radius: 2px;
    transition: 0.3s ease all;
}

#button-10 .knob:before {
  content: "";
  left: 4px;
  background-color: #008000;
}

#button-10 .knob:after {
  content: "Non-veg";
  right: 4px;
  color: #4e4e4e;
}

#button-10 .knob span {
  display: inline-block;
  left: 4px;
  color: #fff;
  z-index: 1;
}

#button-10 .checkbox:checked + .knob span {
  color: #4e4e4e;
}

#button-10 .checkbox:checked + .knob:before {
  left: 88px;
  background-color: #f44336;
}

#button-10 .checkbox:checked + .knob:after {
  color: #fff;
}

#button-10 .checkbox:checked ~ .btn_new-bg {
  background-color: #fcebeb;
}

footer{
    /* background: #e9e9e9; */
    background: var(--primary-color-1--);
    padding: 20px 0 0 0;
    overflow: hidden;
}

footer p{
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

footer .footer-menu{
    width: 100%;
}

footer .footer-menu h3{
    font-size: 22px;
    font-weight: 400;
    color: #fff;
}

footer .footer-menu ul li{
    margin-bottom: 5px;
}

footer .footer-menu ul li a{
    color: #fff;
    transition: 0.3s;
    font-weight: 500;
}

footer .footer-menu ul li a:hover{
    color: var(--secondary-color-2--);
}

footer .footer-contact h3{
    font-size: 22px;
    font-weight: 400;
    color: #fff;
}

footer .footer-contact ul li{
    padding-left: 25px;
    position: relative;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
}

footer .footer-contact ul li i{
    position: absolute;
    top: 5px;
    left: 0;
    color: #fff;
}

footer .footer-contact ul li a{
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

footer .footer-contact ul li a:hover{
    color: var(--secondary-color-2--);
}

footer .footer-contact span{
    display: block;
    color: #d6d6d6;
    font-size: 16px;
    font-weight: 600;
}

footer .footer-icons{
    margin: 10px 0;
    text-align: center;
}

footer .footer-icons ul li{
    display: inline-block;
    margin: 0 10px;
}

footer .footer-icons ul li a{
    color: var(--secondary-color-2--);
    font-size: 18px;
    transition: 0.3s;
}
footer .footer-icons ul li a:hover{
    color: #000;
}

/* footer .footer-bottom{
    padding: 10px 0;
    border-top: 2px solid #848484;
} */

.border {
    border: 1px solid #81888e !important;
}

.copy_right_bg{
    background: #231e1e;
    padding: 10px 0;
}

.copy_right{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.copy_right p ,.copy_right p a{
    color: #fff;
    margin-bottom: 0;
}

.testimonials_card{
    text-align: center;
    padding: 0 1%;
}

.testimonials_card img{
    width: 100px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 15px;
}

.testimonials_card .testimonial_head h3{
    font-size: 22px;
}

.testimonials_card .content{
    margin-top: 20px;
    position: relative;
}

.testimonials_card .content p{
    font-size: 18px;
}

.testimonials_card .content img{
    position: absolute;
    width: 80px;
    left: 0;
    top: 0;
    transform: translate(-15% , -30%);
    z-index: -1;
}

.testimonials_slider{
    position: relative;
}

.testimonials_slider .slick-arrow{
    position: absolute;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: var(--primary-color--);
    color: #fff;
    border-radius: 50%;
    border: none;
    transition: 0.3s;
    display: grid;
    place-items: center;
    top: 50%;
    transform: translateY(-50%);
}

.testimonials_slider .slick-arrow.slick-disabled{
    display: none !important;
}

.testimonials_slider .slick-arrow:hover{
    background: #fff;
    color: var(--primary-color--);
}

.testimonials_slider .slick-arrow.slick-prev{
    left: 0%;
}

.testimonials_slider .slick-arrow.slick-next{
    right: 0%;
}

.bg_white{
    background: #fff;
}

.offer_card img{
    border-radius: 10px;
}

.meal_tabs{
    flex-wrap: nowrap;
    background-color: #fff;
    border-radius: 10px 0 50px 0;
}

.meal_tabs .nav-link{
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    padding: 10px 10px;
    border-radius: 10px 0 50px 0;
    box-shadow: rgba(149, 157, 165, 0.2) 15px 8px 18px;
    border: none !important;
    color: var(--primary-color--);
    transition: 0.3s;
}

.meal_tabs .nav-link.active{
    color: #fff;
    transform: scale(1.05);
    background: var(--primary-color-1--);
}

.meal_plane_card_2{
    padding: 20px;
    border-radius: 20px;
    /* background: #fff; */
    /* background: url(../images/meal_plane_card_bg_1.jpg); */
    background-size: cover;
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 100%;
}

.meal_plane_card_2::before{
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    z-index: -1;
    background: url(../images/meal_plane_card_bg_1.jpg);
    background-size: cover;
    opacity: 0.5;
}

.meal_plane_card_2::after{
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    z-index: -2;
    background: #000;
    background-size: cover;
    /* opacity: 0.7; */
}

.meal_plane_card_2 h3{
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1/1;
    border: 1px solid #fff;
    /* border: 1px solid var(--primary-color--); */
    justify-content: center;
    display: flex;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    /* color: var(--primary-color--); */
    margin: 0 auto;
    text-align: center;
    margin-bottom: 20px;
}

.meal_plane_card_2 p{
    font-size: 26px;
    font-weight: 600;
}

.veg_c{
    color: #008000 !important;
    font-weight: 600;
}

.non_veg_c{
    color: #e43b4f !important;
    font-weight: 600;
}

.meal_plane_card_2 ul{
    display: table;
    width: 100%;
    border-collapse: collapse;
}

.meal_plane_card_2 ul li{
    display: table-row;
    /* justify-content: space-between; */
    gap: 20px;
    /* border-bottom: 1px solid var(--secondary-color-1--); */
    border-bottom: 1px solid #fff;
    padding: 5px 0;
}

.meal_plane_card_2 ul li:last-child{
    border: none;
}

.meal_plane_card_2 ul li strong, .meal_plane_card_2 ul li span{
    display: table-cell;
    /* border: 1px solid var(--secondary-color-1--); */
    border: 1px solid #fff;
    padding: 5px 10px;
    color: #fff
}

.meal_plane_card_2 ul li strong{
    width: 100%;
}

.meal_plane_card_2 ul li span{
    /* padding-left: 20px; */
    width: 30%;
    white-space: nowrap;
}

.non_veg_flex{
    display: flex;
    flex-wrap: wrap;
}

.non_veg_flex > div{
    /* width: 50%; */
}

.account_setting_nav{
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 8;
    top: 100px;
}

.account_setting_nav li{
    padding: 10px 20px;
    border-radius: 5px;
    transition: .3s;
    cursor: pointer;
    border: 1px solid #2E2E2E;
    font-size: 20px;
    color: #000;
}

.account_setting_nav li.active, .account_setting_nav li:hover{
    background: var(--primary-color--);
    border: 1px solid var(--primary-color--);
    color: #fff;
}

.profile_img{
    width: 150px;
    position: relative;
}

.profile_img img{
    border-radius: 50%;
}

.profile_img .edit_profile_btn{
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    background-color: var(--primary-color--);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    right: 0;
    bottom: 5%;
    cursor: pointer;
}

.addresses_sec_bg{
    /* background: var(--primary-color--); */
    border: 1px solid #2E2E2E;
    padding: 20px;
    border-radius: 15px;
    height: 100%;
}

.addresses_sec_bg .addresses_sec:not(:last-child){
    border-bottom: 1px dashed #2E2E2E;
}

.addresses_sec .addresses_type span {
    color: #000;
    border-radius: 2px;
    font-weight: 600;
    font-size: 20px;
}

.addresses_select {
    display: flex;
    gap: 10px;
    align-items: start;
    cursor: pointer;
}
.addresses_select label{
    cursor: pointer;
}

.addresses_select input:checked ~ .checkmark::before{
    transform: scale(1);
}

.addresses_select input:checked ~ .checkmark{
    border: 1px solid var(--primary-color--);
}

.addresses_sec .address_info p {
    color: #000;
}

.addresses_sec .addresses_btns button{
    background: none;
    border: none;
    outline: none;
}

.addresses_sec .addresses_btns{
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.addresses_sec .addresses_btns .addresses_btns_edit{
    color: var(--primary-color--);
}

.addresses_sec .addresses_btns .addresses_btns_del{
    color: var(--primary-color-1--)
}

.addresses_flex{
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.add_address_btn {
    padding: 15px 20px;
    background: var(--primary-color--);
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-block;
}

.add_address_btn:hover{
    transform: scale(1.08);
    color: #fff;
}

.address_heading{
    font-size: 24px;
    /* font-weight: 600; */
    color: #000;
}

.check_box input{
    position: absolute;
    visibility: hidden;
}

.check_box{
    display: flex;
    gap: 35px;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid #2E2E2E;
    cursor: pointer;
    padding-left: 10px;
    background: var(--primary-color--);
    color: #FFFFFF;
}

.checkmark{
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border: 1px solid #D9D9D9;
    border-radius: 50%;
    position: relative;
    flex: 0 0 auto;
}

.checkmark.checkmark_new{
    border: 1px solid var(--primary-color--);
}

.checkmark::before{
    content: '';
    width: 12px;
    height: 12px;
    background: var(--secondary-color-5--);
    border-radius: 50%;
    transform: scale(0);
    transition: 0.3s ease-in-out;
}

.checkmark.checkmark_new::before{
    background: var(--primary-color--);
}

.check_box input:checked ~ .checkmark::before{
    transform: scale(1);
}

.check_box input:checked ~ .checkmark{
    border: 1px solid var(--secondary-color-5--);
}

.form_label{
    font-size: 18px;
    /* font-weight: bold; */
    color: #000;
}

.form_label_bold{
    font-weight: bold;
}

.form_control{
    background-color: #536c404f !important;
    border: 1px solid #2E2E2E;
    outline: none !important;
    box-shadow: none;
    color: #000 !important;
    padding-top: 10px;
    padding-bottom: 10px;
    accent-color: #000;
}

.form_control:focus{
    border-color: var(--primary-color--);
    outline: none;
    box-shadow: 0 0 5px var(--primary-color--);
    background-color: #111;
}

.form_control:disabled, .form_control[readonly] {
    background-color: #e9ecef00;
    opacity: 1;
    color: #0000007d !important;
}

.sub_new_btn{
    width: 100%;
    padding: 10px 20px;
    background: var(--primary-color--);
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
}

.edit_btn{
    width: 100%;
    padding: 10px 20px;
    background: var(--primary-color--);
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    border: none;
}

.edit_btn.cancel_btn{
    background: var(--primary-color-1--);
    color: #fff;
}

.new_table{
    color: #fff;
    margin-bottom: 0;
}

.new_border{
    border: 1px solid #fff;
}

.border_right{
    border-right: 1px solid;
}

.border_1{
    background: #fff;
}

.wallet{
    padding: 5px 10px;
    background: var(--primary-color-1--);
    color: #fff;
    border-radius: 5px;
}

.wallet a{
    /* display: flex;
    align-items: center; */
    color: #fff;
}

.my_order_card {
  /* background: #060606; */
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--primary-color--);
}

.my_order_card .card_head{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 20px;
    padding: 15px 30px;
    background: var(--primary-color--);
}

.my_order_card .card_head p{
    color: #fff;
}

.my_order_card .card_head p span{
    font-size: 14px;
    display: block;
}

.my_orders_list{
    padding: 0 30px;
    border-bottom: 1px solid var(--primary-color--);
}

.my_orders_list .orders_list{
    /* display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center; */
    padding: 20px 0;
}

.my_orders_list .orders_list img{
    width: 100px;
    border-radius: 10px;
}

.my_orders_list .orders_list .content{
    display: flex;
    justify-content: space-between;
    gap: 10px 20px;
    flex-wrap: wrap;
    flex: 1;
    align-items: center;
}

.my_orders_list .orders_list .content p{
    font-size: 18px;
    color: #000;
}

.my_orders_list .orders_list .content span{
    font-size: 16px;
    display: block;
}

.my_orders_footer{
    padding: 20px 30px;
}

.cancel_order_btn{
    background: none;
    border: none;
    outline: none;
    color: #E93551;
}

.delivered_color{
    color: #008000;
}

.nav-tabs.new_tabs{
    display: flex;
    flex-wrap: nowrap;
}

.nav-tabs.new_tabs .nav-link{
    width: 100%;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    border: none;
}

.nav-tabs.new_tabs .nav-item.show .nav-link, .nav-tabs.new_tabs .nav-link.active{
    background: none;
    color: var(--secondary-color-5--);
    border-bottom: 2px solid #fff;
}

.meal_plane_tab{
    display: flex;
    justify-content: space-between;
}

.meal_plane_tab > div{
    width: 100%;
    padding: 0 1rem;
    flex: 1;
    text-align: center;
}

.meal_plane_tab .meal_plane_tab_head .meal_plane_heading{
    font-size: 22px;
    color: #fff;
    font-weight: 500;
}

.meal_plane_tab .price_c{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.meal_plane_tab .price_c p{
    color: #fff;
    margin-top: 10px;
}

.tab-pane .meal_plane_tab:not(:last-child){
    border-bottom: 1px dashed var(--secondary-color-1--);
    padding-bottom: 10px;
}

.meal_bg{
    position: relative;
    z-index: 2;
}

.meal_bg::before, .meal_bg::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.meal_bg::before{
    background: url(../images/meal_bg_img.avif) no-repeat;
    z-index: -2;
    background-attachment: fixed;
}

.meal_bg::after{
    background: var(--primary-color--) no-repeat;
    z-index: -1;
    opacity: 0.8;
}

.watch_video_btn{
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    transition: 0.3s;
    background: var(--primary-color-1--);
}

.watch_video_btn:hover{
    transform: scale(1.1);
    color: #fff;
}

.meal_details_img_sec{
    position: sticky;
    top: 120px;
    left: 0;
    z-index: 9;
}

.meal_details_img{
    position: relative;
}

.meal_details_img img{
    border-radius: 10px;
}

.meal_details_img iframe{
    aspect-ratio: 546/341;
    width: 100%;
}

.meal_details_img .watch_video_btn{
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.meal_details_content h2{
    font-size: 26px;
    /* margin-top: 15px; */
    /* margin-bottom: 10px; */
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color--);
}

.meal_details_content p{
    font-size: 16px;
    font-weight: 600;
}

.meal_details_content p.lunch_dinner_p{
    color: var(--primary-color-1--);
    font-size: 20px;
}

.meal_detail_heading h3{
    font-size: 22px;
    color: #827162;
}

.meal_detail_heading h3 span{
    color: var(--primary-color--);
}

.border_2{
    background: var(--primary-color--);
}

.you_can_expect p{
    display: flex;
    gap: 10px;
}

.you_can_expect p i{
    color: var(--primary-color--);
    line-height: 1.3;
}

.text_pr_1{
    color: #646355;
    font-weight: 500;
}

.delivery_days_heading p{
    font-size: 22px;
    font-weight: 600;
}

.days_check_box input{
    display: none;
}

.days_check_box{
    cursor: pointer;
}

.days_checkmark{
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid var(--primary-color--);
    background: #fff;
    color: var(--primary-color--);
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.days_check_box input:checked ~ .days_checkmark{
    background: var(--primary-color--);
    color: #fff;
}

.delivery_days{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

#ui-datepicker-div {
	display: none;
	background-color: #fff;
	box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.1);
	margin-top: 0.25rem;
	border-radius: 0.5rem;
	padding: 0.5rem;
}
.ui-datepicker-calendar table {
	border-collapse: collapse;
	border-spacing: 0;
}
.ui-datepicker-calendar thead th {
	padding: 0.25rem 0;
	text-align: center;
	font-size: 0.75rem;
	font-weight: 400;
	color: #78909C;
}
.ui-datepicker-calendar tbody td {
	width: 2.5rem;
	text-align: center;
	padding: 0;
}
.ui-datepicker-calendar tbody td a {
	display: block;
	border-radius: 0.25rem;
	line-height: 2rem;
	transition: 0.3s all;
	color: #546E7A;
	font-size: 0.875rem;
	text-decoration: none;
}
.ui-datepicker-calendar tbody td a:hover {	
	background-color: #E0F2F1;
}
.ui-datepicker-calendar tbody td a.ui-state-active {
	background-color: var(--primary-color--);
	color: white;
}
.ui-datepicker-header a.ui-corner-all {
	cursor: pointer;
	position: absolute;
	top: 0;
	width: 2rem;
	height: 2rem;
	margin: 0.5rem;
	border-radius: 0.25rem;
	transition: 0.3s all;
}
.ui-datepicker-header a.ui-corner-all:hover {
	background-color: #ECEFF1;
}
.ui-datepicker-header a.ui-datepicker-prev {	
	left: 0;	
	background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
	background-repeat: no-repeat;
	background-size: 0.5rem;
	background-position: 50%;
	transform: rotate(180deg);
}
.ui-datepicker-header a.ui-datepicker-next {
	right: 0;
	background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==');
	background-repeat: no-repeat;
	background-size: 10px;
	background-position: 50%;
}
.ui-datepicker-header a>span {
	display: none;
}
.ui-datepicker-title {
	text-align: center;
	line-height: 2rem;
	margin-bottom: 0.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	padding-bottom: 0.25rem;
}
.ui-datepicker-week-col {
	color: #78909C;
	font-weight: 400;
	font-size: 0.75rem;
}

.calendar_new {
  width: 100%;
  margin: 40px auto;
  background: #a9746e9c;
  border: 1px solid #fff;
}

.calendar_new .fc-toolbar.fc-header-toolbar{
    margin-bottom: 0;
    padding: 20px;
}

.calendar_new .fc-toolbar h2{
    color: #fff;
}

.fc-button-primary{
    background-color: var(--primary-color--) !important;
    border-color: var(--primary-color--) !important;
    text-transform: capitalize !important;
}

.fc-unthemed td.fc-today {
  background: #a9746e !important;
  color: #fff;
}

.fc .fc-row .fc-content-skeleton td{
    border-color: #ddd !important;
}

.view_order_btn{
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    /* background: var(--primary-color--); */
    border: 1px solid var(--primary-color--);
    color: var(--primary-color--);
    align-items: center;
    border-radius: 20px;
    transition: 0.3s;
    font-weight: 600;
    gap: 15px;
}

.view_order_btn.bg_view_order_btn{
    background: var(--primary-color--);
    /* border: 1px solid var(--primary-color--); */
    color: #fff;
}

.view_order_btn:hover{
    background: var(--primary-color--);
    /* border: 1px solid var(--primary-color--); */
    color: #fff;
}

.view_order_btn.bg_view_order_btn:hover{
    background: none;
    /* border: 1px solid var(--primary-color--); */
    color: var(--primary-color--);
}

.button_flex > a{
    width: 50%;
}

.delivery_type{
    /* background: var(--primary-color--); */
    background: #a0a783;
    border: 1px solid #2E2E2E;
    padding: 20px;
    border-radius: 15px;
    height: 100%;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.delivery_type.active{
    background: var(--primary-color--);
    border: 1px solid var(--primary-color-1--);  
}

.check_box_1{
    width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 16px;
    overflow: hidden;
    margin-left: auto;
}

.check_box_1 i{
    width: 100%;
    height: 100%;
    background: var(--primary-color-1--);
    display: grid;
    place-items: center;
    font-size: 16px;
    transform: scale(0);
    transition: 0.3s;
    color: #fff;
    border-radius: 50%;
}

.delivery_type input:checked ~ .check_box_1 i{
    transform: scale(1);
}

.delivery_type .content{
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.delivery_type .content p{
    color: #fff;
    font-size: 20px;
}

.delivery_type.active p.price{
    color: var(--secondary-color-5--);
}


.delivery_type .content p span{
    font-size: 16px;
    display: block;
}

.delivery_type .estimate_delivery{
    display: flex;
    gap: 10px;
    background: #fff;
    align-items: center;
    padding: 10px 20px;
    border-radius: 50px;
}

.delivery_type .estimate_delivery i{
    color: var(--secondary-color-5--);
}

.delivery_type .estimate_delivery p{
    font-size: 16px;
}

.order_summery{
    background: #111;
    padding: 20px 20px;
    border-radius: 10px;
}

.summery_heading h3{
    color: #fff;
    font-size: 18px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #A7A7A7;
    margin-bottom: 15px;
}

.order_summery .summery_price {
    padding-bottom: 15px;
    border-bottom: 1px dashed #A7A7A7;
    margin-bottom: 15px;  
}

.order_summery .summery_price ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order_summery .summery_price ul li{
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.text_browm{
    color: var(--primary-color--);
}

.order_summery .summary_total{
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.order_summery .summary_total p{
    font-size: 24px;
}

.order_summery .summary_total p.summary_total_heading{
    font-weight: 700;
    color: #fff;
}

.order_summery .summary_total p.summary_total_price{
    font-weight: 500;
    color: var(--primary-color--);
}

.order_summery_new{
    background: #FAFAFA;
}

.order_summery.order_summery_new .summery_price ul li {
    color: #000;
}

.order_summery.order_summery_new .summary_total p.summary_total_heading {
    color: #000;
}

.add_service_modal{
    border-radius: 20px;
}
.add_service_modal .modal-header{
    border-color: #E7E7E7;
    padding: 10px;
}
.add_service_modal .modal-title{
    font-size: 32px;
    /* font-weight: 700; */
    text-align: center;
    width: 100%;
    color: var(--primary-color--);
}

.meal_consume{
    padding-top: 20px;
}

.meal_consume ul{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
    align-items: center;
}


.meal_consume ul li{
    font-size: 18px;
    color: var(--primary-color--);
}

.deliverable_days p{
    font-size: 18px;
}

.deliverable_days ul{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.deliverable_days ul li{
    padding: 5px 10px;
    background: var(--primary-color-1--);
    color: #fff;
    border-radius: 10px;
}

.location_modal .modal-content{
    border-radius: 20px;
    padding: 20px 20px;
    /* background: #111; */
    box-shadow: rgba(255, 255, 255, 0.2) 0px 7px 29px 0px;
}

.location_modal .modal-header{
    border: none;
    text-align: center;
    position: relative;
}

.location_modal .modal-header img{
    width: 140px;
    margin: 0 auto;
}

.location_modal .modal-header .btn-close{
    position: absolute;
    opacity: 1;
    right: 20px;
    top: 20px;
}

.location_modal .location_heading h3{
    font-size: 24px;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
    color: var(--primary-color-1--);
}

.location_modal .location_heading h3::before{
    content: '';
    position: absolute;
    width: 120%;
    height: 4px;
    background: var(--primary-color--);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.location_modal .location_heading p{
    color: #000;
}

.location_modal .modal-body ul.locations{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
}

.location_modal .modal-body ul.locations li{
    width: 50%;
    padding: 0 5px;
}

.location_modal .modal-body ul.locations li a{
    padding: 15px 0;
    display: block;
    color: #000;
    border: 1px solid #DEDEDE;
    border-radius: 5px;
    text-align: center;
    transition: 0.3s;
}

.location_modal .modal-body ul.locations li a:hover, .location_modal .modal-body ul.locations li a.active{
    color: var(--yellow--);
    border: 1px solid var(--yellow--);
}

.book_now_form .input-group{
    background: none;
    border: 1px solid #2E2E2E;
    border-radius: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.book_now_form .input-group i{
    color: var(--primary-color--);
    font-size: 22px;
}

.book_now_form .input-group-text{
    background: none;
    border: none;
}

.book_now_form .form-control{
    border: none;
    box-shadow: none !important;
    padding-left: 0;
    background: none;
    /* color: #fff; */
}

.book_now_form .form-label{
    font-weight: 500;
    /* color: #fff; */
}

.book_now_form button{
    width: 100%;
    padding: 10px 20px;
    background: var(--primary-color--);
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    border: none;
    /* border-radius: 0 20px 20px 0; */
}

.calender_form{
    width: 100%;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 5px;
    border: none;
    /* border-radius: 0 20px 20px 0; */
}

.calender_form button{
    width: 100%;
    padding: 10px 20px;
    background: var(--primary-color--);
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    border: none;
    /* border-radius: 0 20px 20px 0; */
}



.otp-input-container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: auto;
}

.otp-input {
    width: 100%;
    /* height: 40px; */
    text-align: center;
    font-size: 22px;
    margin: 5px;
    border: 1px solid #2E2E2E;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
    background: none;
    color: #000;
}

.otp-input:focus {
    border-color: var(--primary-color--);
    outline: none;
    box-shadow: 0 0 5px var(--primary-color--);
}

.reg-otp-input-container {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: auto;
}

.reg-otp-input {
    width: 100%;
    /* height: 40px; */
    text-align: center;
    font-size: 22px;
    margin: 5px;
    border: 1px solid #2E2E2E;
    border-radius: 4px;
    aspect-ratio: 1 / 1;
    background: none;
    color: #000;
}

.reg-otp-input:focus {
    border-color: var(--primary-color--);
    outline: none;
    box-shadow: 0 0 5px var(--primary-color--);
}

.resend_otp a{
    color: var(--primary-color--);
    text-decoration: underline !important;
}

.change_num{
    color: var(--primary-color--) !important;
    text-decoration: underline !important;
    font-size: 12px;
}

.regi-form-btn h4{
    font-size: 16px;
    font-weight: 400;
}

.regi-form-btn h4 a{
    color: var(--primary-color--);
}

.wallet_card{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-radius: 20px;
    background: var(--primary-color--);
    align-items: center;
}

.wallet_card .wallet_card_icon i{
    font-size: 42px;
    color: #fff;
}

.wallet_card .wallet_amount h3{
    color: #fff;
    font-weight: 400;
}

.wallet_card .wallet_amount p{
    color: var(--secondary-color-5--);
}

.add_wallet {
  /* width: 100%; */
  padding: 10px 20px;
  background: var(--primary-color-1--);
  color: #fff;
  font-size: 20px;
  border-radius: 5px;
  border: none;
  display: inline-block;
}

.pe_3{
    padding-left: 10px !important;
}

.view-plan-btn {
    background-color: var(--primary-color--);
    color: #fff;
    border-radius: 10px;
    text-align: center;
    padding: 10px 25px;
    font-size: 16px;
    /* height: 37px; */
    /* width: 100%; */
    display: inline-block;
    transition: 0.3s;
}

.view-plan-btn:hover{
    transform: scale(1.1);
    color: #fff;
}

.font_42{
    font-size: 42px !important;
}

.account_setting_nav_new{
    flex-direction: row;
    /* gap: 1%; */
    flex-wrap: nowrap
}

.account_setting_nav_new li{
    width: 100%;
    text-align: center;
}

p.note {
    color: red;
    font-size: 14px;
}

.puse-plan{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.carry-forward-btn{
    background: var(--primary-color-1--);
}

.min-heigh{
    min-height: calc(100vh - 469px);
}

tbody, td, tfoot, th, thead, tr{
    border-color: var(--primary-color--);
}

.footer_login_menu{
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 99;
    display: none;
}

.footer_login_menu ul{
    display: flex;
    background: var(--primary-color--);
    border-top: 1px solid #fff;
}

.footer_login_menu ul li{
    flex: 1;
}

.footer_login_menu ul li:not(:last-child){
    border-right: 1px solid #fff;
}

.footer_login_menu ul li a{
    text-align: center;
    color: #fff;
    display: block;
    padding: 10px;
    font-size: 12px;
}
.footer_login_menu ul li a i{
    display: block;
    margin-bottom: 5px;
}

.your_cart_border {
  border: 1px solid var(--primary-color--);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.your_cart_border .your_cart:not(:first-child) {
  border-top: 1px solid var(--primary-color--);
}

.your_cart {
  display: flex;
  gap: 20px;
  padding: 20px 20px;
}

.your_cart .your_cart_img {
  width: 30%;
  flex: 0 0 auto;
}

.your_cart .your_cart_img img {
  border-radius: 5px;
  height: 100%;
  object-fit: cover;
}

.your_cart .your_cart_detail .pro_name h3 {
    display: flex;
    font-size: 22px;
    color: #000;
    gap: 10px;
}

.your_cart_detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.your_cart_detail .your_cart_btns {
  display: flex;
  gap: 25px;
  /* justify-content: end; */
}

.your_cart_detail .your_cart_btns a {
  color: var(--primary-color--);
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

.place_order {
  padding: 20px 20px;
  box-shadow: 0 -2px 10px 0 rgba(0, 0, 0, .1);
}

.place_order button , .place_order a{
  padding: 10px 25px;
  background: var(--primary-color--);
  color: #fff;
  font-weight: 600;
  border: 1px solid var(--primary-color--);
  border-radius: 5px;
}

.save_later_heading{
    padding: 10px 20px;
}

.save_later_heading h3{
    font-size: 24px;
}

.heading h3{
    font-size: 24px;
    color: var(--primary-color-1--);
}

.contact_us_card h4{
    font-size: 18px;
    color: var(--primary-color--);
    margin-bottom: 5px;
}

.contact_us_card a{
    color: var(--secondary-color-3--);
}

.contact_us_card a:hover{
    color: var(--primary-color--);
}

.about_img_sec .about_img_1{
    border-radius: 50%;
    overflow: hidden;
    /* border: 10px solid var(--secondary--); */
}

.about_img_sec .about_img_2{
    width: 50%;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid var(--secondary-color-5--);
    margin-top: -40%;
    z-index: 2;
    position: relative;
}

.about_sec .about_img_sec{
    width: 40%;
    float: left;
    padding-right: 40px;
}

.about_sec .about_sec_content .content p{
    margin-bottom: 10px;
}

.bold{
    color: var(--primary-color--);
}

.about_card img{
    width: 100px;
    margin: 0 auto;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.form-check-input{
    box-shadow: none !important;
}

.form-check-input:checked {
  background-color: var(--primary-color--);
  border-color: var(--primary-color--);
}

.radio_in{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.save_btn{
    display: inline-block;
    color: var(--primary-color--) !important;
}
.cancel_btn_1{
    display: inline-block;
    color: var(--primary-color-1--) !important;
}

.save_can_btn{
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.food_item_name{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.food_item_name a{
    color: var(--primary-color-1--);
}

.food_items_list .food_items{
    padding: 10px 0;
}

.food_items_list .food_items:not(:last-child){
    border-bottom: 1px dashed #2E2E2E;
}

.login_new_btn{
    font-size: 22px !important;
    display: flex !important;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.add_service_modal{
    border-radius: 20px;
}
.add_service_modal .modal-header{
    border-color: #E7E7E7;
    padding: 10px;
}
.add_service_modal .modal-title{
    font-size: 32px;
    /* font-weight: 700; */
    text-align: center;
    width: 100%;
}

.choose_item_card{
    display: flex;
    justify-content: space-between;
    gap: 0px 20px;
    align-items: center;
    padding: 10px 0;
    flex-wrap: wrap;
    border-bottom: 1px solid #E7E7E7;
}

.choose_item_card img{
    width: 80px;
    flex: 0 0 auto;
}

.choose_item_card .content{
    /* flex: 1; */
    /* width: calc(100% - 230px); */
}

.choose_item_card .content h3{
    font-size: 18px;
}

.choose_item_card .content p{
    white-space: nowrap;
}

.input_plus{
    width: 110px !important;
    border: none !important;
    background: var(--primary-color--);
    border-radius: 5px;
    overflow: hidden;
}

.input_plus .input_number{
    border: none;
    width: 60px;
    outline: none;
    text-align: center;
    margin-left: 0 !important;
    color: #fff;
    background: var(--primary-color--);
}

.input_plus .input-group-btn{
    /* border: 1px solid #707070 !important; */
    color: #fff;
    /* border-radius: nob !important; */
    background: var(--primary-color--);
}

.input_plus .input-group-btn button{
    box-shadow: none !important;
    height: 30px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    font-size: 15px;
    color: #fff;
}

.input_plus .input-group-btn button:focus{
    box-shadow: none !important;
}

.login_btn{
    color: #fff;
    background: var(--primary-color--);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 10px;
    transition: 0.3s;
    border: none;
}

.login_btn:hover{
    transform: scale(1.1);
    color: #fff;
}

.select2-container{
    z-index: 9999;
}

.multi_select{
    /* width: 100%; */
    width: calc(100% - 360px);
}

.checkbox_1 input{
    margin-right: 5px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected]{
    background-color: #fff;
    color: #000;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #fff;
  color: #000;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice{
    background: var(--primary-color-1--);
    color: #fff;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    color: #fff;
}

.meal_plane_card_new{
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
    transition: 0.3s;
}

.meal_plane_card_new:hover{
    transform: scale(1.1);
}

.meal_plane_card_new .meal_plane_card_img img{
    border-radius: 50%;
    margin-bottom: 15px;
}

.meal_plane_card_new .content h3{
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color--);
}

.meal_plane_card_new .content p{
    font-size: 14px;
    color: var(--primary-color-1--);
    margin-bottom: 15px;
}

.meal_plane_card_new .buy_subscription_btn{
    width: 100%;
    padding: 10px;
    text-align: center;
    background: var(--primary-color--);
    color: #fff;
    display: inline-block;
    border-radius: 50px;
}

.service_card{
    background: var(--primary-color-1--);
    border-radius: 20px;
    border: 1px solid transparent;
    padding: 20px;
    transition: 0.3s;
    height: 100%;
}

/* .service_card.service_card_gray{
    background: #111;
} */

.service_card img{
    border-radius: 20px;  
}

.service_card h3{
    font-size: 22px;
    /* font-weight: 700; */
    margin-bottom: 20px;
    color: #fff;
}

.service_card p{
    color: #fff;
}

.service_card .content{
    position: relative;
}
.service_card .content .input_plus{
    position: absolute;
    top: 0;
    right: 6%;
    transform: translateY(-150%);
}


.price{
    font-size: 20px;
    color:#fff;;
    font-weight: 600;
}

.space_1{
    display:flex; 
    /* justify-content:space-between; */
    align-items:center;
    background: var(--primary-color--);
    gap: 20px;
    padding: 10px 15px;
}

.space_1 h3{
    color: #fff;
}

/* Nik New */
.custom-checkbox .knob {
    /* background-color: #e0e0e0; */
    padding: 10px 20px;
    border-radius: 20px;
    transition: background-color 0.3s;
}

/* Active styles */
.knob.green {
    background-color: green;
    color: #fff;
}

.knob.red {
    background-color: red;
    color: #fff;
}


.choose_item_card{
    display: flex;
    justify-content: space-between;
    gap: 0px 20px;
    align-items: center;
    padding: 10px 0;
    flex-wrap: wrap;
    border-bottom: 1px solid #E7E7E7;
}

.choose_item_card img{
    width: 80px;
    flex: 0 0 auto;
}

.choose_item_card .content{
    flex: 1;
}

.choose_item_card .content h3{
    font-size: 18px;
}

.choose_item_card_new {
    background: #F7F7F7;
    border-bottom: none;
    margin-bottom: 10px;
    padding: 20px;
    border-radius: 20px;
}

.step_card .num{
    /* padding: 20px; */
    border: 2px dashed var(--primary-color--);
    border-radius: 50%;
    display: grid;
    place-items: center;
    width: 90px;
    height: 90px;
}

.step_card.step_card_2 .num{
    border-color: #8e67eb;
}

.step_card.step_card_3 .num{
    border-color: #e95189;
}

.step_card.step_card_4 .num{
    border-color: #f4b046;
}

.step_card .num span{
    width: 75px;
    height: 75px;
    display: grid;
    place-items: center;
    background: var(--primary-color--);
    color: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: rgba(149, 157, 165, 0.77) 0px 8px 24px;
    font-size: 26px;
}

.step_card.step_card_2 .num span{
    background: #8e67eb;
}

.step_card.step_card_3 .num span{
    background: #e95189;
}

.step_card.step_card_4 .num span{
    background: #f4b046;
}

.step_card h3{
    font-size: 26px;
}

.contact-sub{
    font-size: 19px;
    color: #4a4a4a;
}

.contact-servicehour{
    white-space: nowrap;
    color: #b09f91; 
    font-size: 16px;
    font-weight: 400;
}

.contact-btn-wrapper{
    display: flex;
    justify-content: center;
    width: 100%;
}

.contact-btn-link{
    padding: 10px 25px;
    margin-bottom: 10px;
    margin-top: -48px;
    background: var(--primary-color--);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--primary-color--);
    display: inline-block;
    transition: 0.3s ease;
}

.contact-btn-link:hover{
    background: #fff;
    color: var(--primary-color--) !important;
}

.meal-deatils-sub{
    font-size: 17px !important;
    color: #4a4a4a;
}
