@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    font-family: "Archivo", sans-serif;
    /* font-family: "Space Grotesk", sans-serif; */
}

:root
{
    --primary-color: #e3a95b;
    --bg-color: #050D14;
    --gray1: #161819; 
}

/*-- ====== index ======= --*/


/*-- menu --*/
.menu
{
    background-color: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 999999;
}

.logo img
{
    height: 80px;
    width: 150px;
    object-fit: contain;
}

.menu_left > ul 
{
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu_left > ul > li 
{
    display: inline-block;
}

.menu_left > ul > li > a 
{
    padding: 5px 12px;
    color: white !important;
    font-size: 17px;
    font-weight: 400;
}
.menu_left > ul > li > a.active,
.menu_left > ul > li > a:hover
{
    color: var(--primary-color) !important;
}

.menu_right
{
    display: flex;
    align-items: center;
    gap: 25px;
}
.menu_right > a 
{
    display: inline-block;
    color: white !important;
}
.menu_right > a > i 
{
    font-size: 20px;
}

/*-- /menu --*/

/*-- home offer show --*/
.home_offer_pop
{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    justify-content: center;
    padding-top: 40px;
}
.home_offer_pop_in
{
    height: fit-content;
    border-radius: 10px;
    overflow: hidden;
    max-width: 500px;
    width: 96%;
    background-color: black;
}
.home_offer_pop_in img 
{
    max-height: 500px;
    width: 100%;
    object-fit: contain;
}
.offer_btm a 
{
    text-align: center;
    color: var(--gray1) !important;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    background-color: var(--primary-color);
}




/*-- /home offer show --*/

/*-- hero --*/
.hero
{
    position: relative;
}
.hero_item
{
    position: relative;
}
.hero_item::before
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.6);
}
.hero_item img 
{
    height: 80vh;
    width: 100%;
    object-fit: cover;
}

.hero_content
{
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    max-width: 800px;
    width: 100%;
    z-index: 99;
    padding: 10px;
}
.hero_content > h1 
{
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
    font-family: "Space Grotesk", sans-serif;
}
.hero_content > h1 > span 
{
    color: var(--primary-color);
}
.hero_content > p 
{
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 10px;
    color: white;
    letter-spacing: 1px;
}
.hero_btn_btm
{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.hero_btn_btm a 
{
    font-size: 17px;
    font-weight: 600;
    padding: 14px 25px;
    border-radius: 30px;
    color: var(--primary-color) !important;
    background-color: var(--bg-color);
    border: 2px solid var(--primary-color);
    transition: all linear 0.3s;
}

.hero_btn_btm a:hover
{
    color: var(--bg-color) !important;
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
}


.hero .owl-carousel .owl-nav button.owl-prev
{
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    height: 45px;
    width: 45px;
    border-radius: 4px;
    background-color: rgba(0,0,0,0.3);
    line-height: 40px;
    border: 1px solid var(--primary-color);
}
.hero .owl-carousel .owl-nav button.owl-next
{
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    height: 45px;
    width: 45px;
    border-radius: 4px;
    background-color: rgba(0,0,0,0.3);
    line-height: 40px;
    border: 1px solid var(--primary-color);
}


.hero .owl-carousel .owl-nav button.owl-prev:hover,
.hero .owl-carousel .owl-nav button.owl-next:hover
{
    background-color: var(--primary-color);
}

.hero .owl-theme .owl-nav
{
    margin-top: 0 !important;
}

/*-- /hero --*/

/*-- categories --*/
.categories
{
    background-color: var(--bg-color);
    padding-top: 60px;
    padding-bottom: 50px;
}

.categories h1 
{
    text-align: center;
    font-size: 45px;
    font-weight: 600;
    color: white;
}
.categories h5 
{
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin: 10px 0;
}
.categories_in
{
    margin-top: 30px;
}

.categories_item
{
    display: block;
    margin: 10px 0;
    background-color: #16181a;
    border-radius: 17px;
    padding: 20px 15px;
    text-align: center;
}

.categories_item img 
{
    width: 70px !important;
    height: 70px;
    object-fit: contain;
    display: block;
    margin: auto;
}

.categories_item p 
{
    margin-top: 15px;
    margin-bottom: 0;
    color: white !important;
    font-size: 16px;
    font-weight: 400;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*-- /categories --*/

/*-- feature --*/
.feature
{
    padding-top: 50px;
    padding-bottom: 40px;
    background-color: var(--bg-color);
}

.feature_item
{
    margin: 12px 0;
    color: white;
    padding: 30px;
    border-radius: 30px;
    border: 1px solid var(--primary-color);
}

.feature_item img 
{
    width: 60px;
}
.feature_item h3 
{
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
}
.feature_item p 
{
    font-size: 16px;
    font-weight: 400;
    margin: 10px 0;
}
/*-- /feature --*/

/*-- promo video --*/
.promo_video
{
    padding: 40px 0;
    background-color: var(--bg-color);
}
.promo_video h1 
{
    color: white;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.promo_video p 
{
    color: white;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.promo_video a 
{
    color: var(--bg-color) !important;
    background-color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none !important;
}

.promo_in
{
    margin-top: 60px;
}

.promo_in > video
{
    border-radius: 10px;
    width: 100%;
    height: 700px;
    object-fit: cover;
}

/*-- /promo video --*/

/*-- order promo --*/

.order_promo
{
  background-color: var(--bg-color);
  padding-top: 80px;
  padding-bottom: 60px;
}

.order_promo_in
{
    display: grid;
    grid-template-columns: 70% auto;
    gap: 20px;
    align-items: center;
    background-color: var(--primary-color);
    padding: 40px 40px;
    border-radius: 20px;
}

.order_promo_left h2 
{
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--bg-color);
}

.order_promo_left a  
{
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    padding: 18px 26px;
    background-color: var(--bg-color);
    color: white !important;
}

.order_promo_right img 
{
    max-width: 300px;
    width: 100%;
    display: block;
    margin: auto;
}

/*-- /order promo --*/


/*-- footer --*/
.footer 
{
    padding-top: 40px;
    padding-bottom: 100px;
    background-color: var(--bg-color);
}
.footer_item
{
    margin: 10px 0;
    color: white;
}
.footer_item.info a img 
{
    width: 160px;
}

.footer_item.info p
{
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
}

.footer_item.business_hour h2, 
.footer_item.footer_social h2
{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
} 

.footer_item.business_hour p 
{
    font-size: 17px;
    font-weight: 400;
    margin: 5px 0;
}
.footer_map iframe
{
    height: 300px;
    border-radius: 10px;
}

.footer_social > ul  
{
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer_social > ul > li 
{
    margin: 10px 0;
}

.footer_social > ul > li > a 
{
    color: white !important;
    font-size: 16px;
    font-weight: 400;
}

.footer_social > ul > li > a:hover 
{
    color: var(--primary-color) !important;
}

.footer_item.footer_social a 
{
    color: white !important;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 400;
    display: block;
}

.footer_item.footer_social a:hover
{
    color: var(--primary-color) !important;
}

/*-- /footer--*/

/*-- copyright--*/
.copyright
{
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #bababa63;
}
.copyright p 
{
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}
/*-- /copyright--*/

/*-- btm menu--*/
.btm_menu
{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none; 
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 10px;
    background-color: white;
    padding: 10px;
    z-index: 999;
}

.btm_menu a 
{
    display: block;
    text-align: center;
    color: var(--bg-color) !important;
}

.btm_menu a i 
{
    font-size: 22px;
    display: block;
}

.btm_menu a span 
{
    font-size: 12px;
    font-weight: 400;
}
/*-- /btm menu--*/



/*-- responsive --*/

@media(max-width : 767px)
{
    .menu_left > ul
    {
        display: none;
    }
    .logo img {
        height: 60px;
        width: 100px;
    }
    .menu_right > a > img {
        width: 28px;
    }
    .menu_right {
        gap: 18px;
    }

    .btm_menu
    {
        display: grid;
    }

}

@media(max-width : 425px)
{
    .hero_item img {
        height: 500px;
    }
    .hero_content {
        left: 50%;
        text-align: center;
    }
    .hero_content > h1 {
        font-size: 40px;
    }
    .hero_content > p {
        font-size: 16px;
    }
    .hero_btn_btm a {
        font-size: 15px;
        padding: 14px 20px;
    }
    .hero_btn_btm 
    {
        justify-content: center;
        gap: 12px;
    }
    .hero .owl-carousel .owl-nav button.owl-prev,
    .hero .owl-carousel .owl-nav button.owl-next
    {
        display: none;
    }

    .categories {
        padding-bottom: 30px;
    }
    .categories h1 {
        font-size: 30px;
    }
    .categories h5 {
        font-size: 16px;
    }
    .categories_item p {
        font-size: 15px;
    }

    .promo_video h1 {
        font-size: 30px;
    }
    .promo_video p {
        font-size: 16px;
    }
    .promo_in > video {
        height: 400px;
    }
    .order_promo_in {
        gap: 40px 20px;
        grid-template-columns: 100%;
    }
    .order_promo_left h2 {
        font-size: 30px;
    }

    .footer_item.business_hour h2, .footer_item.footer_social h2 {
        font-size: 20px;
    }

    .footer_item.business_hour p {
        font-size: 16px;
    }
}

@media(min-width : 426px) and (max-width : 575px)
{
    .hero_item img {
        height: 500px;
    }
    .hero_content {
        left: 50%;
        text-align: center;
    }
    .hero_content > h1 {
        font-size: 50px;
    }
    .hero_btn_btm 
    {
        justify-content: center;
    }
    .hero .owl-carousel .owl-nav button.owl-prev,
    .hero .owl-carousel .owl-nav button.owl-next
    {
        display: none;
    }
    .categories h1 {
        font-size: 40px;
    }
    .categories {
        padding-bottom: 30px;
    }
    
    .promo_in > video {
        height: 450px;
    }
    .order_promo_left h2 {
        font-size: 30px;
    }

    .order_promo_in {
        grid-template-columns: 67% auto;
        gap: 10px;
        padding: 30px 20px;
    }
    .order_promo_left a {
        font-size: 15px;
    }

}

@media(min-width : 576px) and (max-width : 767px)
{
    .hero_item img {
        height: 500px;
    }
    .hero_content {
        left: 50%;
        text-align: center;
    }
    .hero_btn_btm 
    {
        justify-content: center;
    }
    .hero .owl-carousel .owl-nav button.owl-prev,
    .hero .owl-carousel .owl-nav button.owl-next
    {
        display: none;
    }
    .order_promo_in {
        grid-template-columns: 65% auto;
    }
    .promo_in > video {
        height: 500px;
    }
}


@media(min-width : 768px) and (max-width : 991px)
{
    .logo img {
        height: 70px;
        width: 120px;
    }
    .menu_left > ul > li > a {
        font-size: 16px;
    }
    .menu_right > a > img {
        width: 26px;
    }

    .hero_content {
        left: 50%;
        max-width: 600px;
    }
    .hero .owl-carousel .owl-nav button.owl-prev {
        left: 2%;
    }
    .hero .owl-carousel .owl-nav button.owl-next {
        right: 2%;
    }

    .feature_item {
        padding: 30px 20px;
    }

    .promo_in > video {
        height: 500px;
    }
}


@media(min-width : 992px) and (max-width : 1199px)
{
    .hero_content {
        left: 52%;
        max-width: 700px;
    }

    .hero .owl-carousel .owl-nav button.owl-prev {
        left: 6%;
    }
    .hero .owl-carousel .owl-nav button.owl-next {
        right: 6%;
    }

    .promo_in > video {
        height: 500px;
    }

}


@media(min-width : 1200px) and (max-width : 1550px)
{
    .hero_content {
        left: 45%;
        max-width: 750px;
    }
}


/*-- ====== /index ======= --*/


/*-- ====== contact ======= --*/

/*--- contact form ---*/

.contact_form
{
    padding-top: 60px;
    padding-bottom: 40px;
    background-color: var(--bg-color);
}

.contact_form h1 
{
    color: var(--primary-color);
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact_form_left,
.contact_form_right
{
    margin: 12px 0;
}

.contact_form_inp
{
    margin: 20px 0;
}
.contact_form_inp label
{
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin-bottom: 5px;
}

.contact_form_inp input,.contact_form_inp textarea
{
    height: 50px;
    width: 100%;
    padding: 5px 12px;
    font-size: 16px;
    font-weight: 400;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 5px 0;
    border-radius: 5px;
}
.contact_form_inp textarea
{
    height: 100px;
}

.contact_form_submit_btn
{
    background-color: var(--primary-color);
    color: var(--bg-color);
    font-size: 16px;
    font-weight: 400;
    padding: 12px 20px;
    border-radius: 5px;
    border: none;
    outline: none;
    box-shadow: none;
}

.contact_form_submit_btn:hover
{
    opacity: 0.9;
}

.error_msg,
.contact_error_msg
{
    color: red;
    font-size: 14px;
    font-weight: 200;
    margin: 5px 0;
    display: none;
}

.contact_form_call_us h3 
{
    color: var(--primary-color);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact_form_call_us p 
{
    margin: 15px 0;
}
.contact_form_call_us a 
{
    color: white !important;
    font-size: 16px;
    font-weight: 400;
}
.contact_form_call_us a:hover 
{
    color: var(--primary-color) !important;
}

.resturant_scehdule
{
    margin-top: 30px;
}

.resturant_scehdule > h3 
{
    color: var(--primary-color);
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}

.resturant_scehdule > p 
{
    margin: 6px 0;
    font-size: 16px;
    font-weight: 400;
    color: white;
}

/*--- responsive  ---*/
@media(max-width : 767px)
{
    .contact_form h1 
    {
        font-size: 40px;
    }
}
/*--- /responsive  ---*/

/*--- /contact form ---*/

/*-- ====== /contact  ======= --*/


/*-- ====== about  ======= --*/

/*--- about  ---*/
.about
{
    padding-top: 60px;
    padding-bottom: 40px;
    background-color: var(--bg-color);
}
.about h1 
{
    color: var(--primary-color);
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 30px;
}
.about_left,
.about_right
{
    margin: 10px 0;
}

.about_left h2 
{
    color: white;
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
}

.about_left p 
{
    margin: 15px 0;
    color: white;
    font-size: 16px;
    font-weight: 400;
}
.about_right img 
{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
/*--- /about  ---*/

/*--- about feature  ---*/
.a_feature
{
    padding: 50px 0;
    background-color: var(--bg-color);
}
.a_feature_item
{
    margin: 10px 0;
}
.a_feature_item h2 
{
    color: #6c757d;
    font-size: 35px;
    font-weight: 500;
}
.a_feature_item h3,
.a_feature_item h3 span 
{
    margin-top: 10px;
    margin-bottom: 10px;
    color: white;
    font-size: 25px;
    font-weight: 500;
}
.a_feature_item h3 span
{
    color: var(--primary-color);
}

.a_feature_item p
{
    color: white;
    margin: 15px 0;
    font-size: 16px;
    font-weight: 300;
}

/*--- /about feature  ---*/

/*--- responsive  ---*/
@media(max-width : 767px)
{
    .about h1 
    {
        font-size: 40px;
    }
    .a_feature {
        padding: 30px 0;
    }
    .order_promo {
        padding-top: 50px;
    }
}
/*--- /responsive  ---*/


/*-- ====== /about  ======= --*/


/*-- ====== reservation  ======= --*/

/*--- reservation ---*/
.reservation 
{
    padding-top: 60px;
    padding-bottom: 40px;
    background-color: var(--bg-color);
}

.reservation h1 
{
    color: var(--primary-color);
    text-align: center;
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
}
.reservation h2 
{
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.reservation_left,
.reservation_right 
{
    margin: 12px 0;
}


.reservation_inp
{
    margin: 12px 0;
}

.reservation_inp label
{
    display: block;
    color: white;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
}
.reservation_inp input,.reservation_inp select
{
    height: 45px;
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 400;
}

.reserve_submit_btn
{
    background-color: var(--primary-color);
    color: var(--bg-color);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 5px;
    border: none;
    outline: none;
    box-shadow: none;
}

#calendar
{
    width: 100%;
}
#calendar a 
{
    color: black !important;
    text-decoration: none;
}
#calendar table th 
{
    padding-top: 6px;
    padding-bottom: 6px;
}
#calendar a {
    color: white !important;
}

/*--- /reservation ---*/

/*--- responsive  ---*/
@media(max-width : 767px)
{
    .reservation h1 
    {
        font-size: 40px;
    }
}
/*--- /responsive  ---*/

/*-- ====== /reservation  ======= --*/


/*-- ====== Offer Page  ======= --*/

/*--- offered product  ---*/
.offered_product
{
    padding-top: 70px;
    padding-bottom: 40px;
    background-color: var(--bg-color);
}

.offered_product h1 
{
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.offered_product h2 
{
    color: white;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 30px;
}

.offered_product_in
{
    margin-top: 60px;
}

.offered_product_item
{
    margin: 10px 0;
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    gap: 60px;
}

.offered_product_left,
.offered_product_right
{
    margin: 10px 0;
}
.offered_product_left img 
{
    max-width: 400px;
    width: 100%;
    display: block;
    margin: auto;
    border-radius: 10px;
}

.offered_product_right h3 
{
    color: white;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.offered_product_right h5 
{
    color: white;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.offered_product_right h4 
{
    color: white;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 30px;
}

.offered_product_right a 
{
    background-color: var(--primary-color);
    color: var(--bg-color);
    font-size: 18px;
    font-weight: 500;
    padding: 14px 25px;
    border-radius: 5px;
}
/*--- /offered product  ---*/

/*--- special product  ---*/
.special_product
{
    padding-top: 50px;
    padding-bottom: 30px;
    background-color: var(--bg-color);
}

.special_product h1 
{
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;  
}

.special_product_in
{
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 20px;
}
.product_single
{
    background-color: var(--gray1);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    position: relative;
}
.product_img img 
{
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: whitesmoke;
}

.product_info
{
    padding: 15px 15px 10px 15px;
    color: white;
}

.product_info h2 
{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.product_info p 
{
    margin: 5px 0;
    font-size: 14px;
    font-weight: 400;
}
.product_info h3 
{
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}
.product_info h3 del 
{
    font-size: 18px;
    color: red;
    text-decoration-line: line-through !important; 
}

.product_promot
{
    width: 100px;
    height: 40px;
    position: absolute;
    top: 0px;
    left: -35px;
    background-color: red;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    padding-top: 6px;
    padding-left: 5px;
}

/*--- /special product  ---*/

/*--- responsive ---*/
@media(max-width : 425px)
{
    .offered_product h1 {
        font-size: 35px;
    }
    .offered_product_item {
        grid-template-columns: 100%;
        gap: 10px;
    }
    .offered_product_left img {
        max-width: 250px;
    }

    .offered_product_right
    {
        text-align: center;
    }

    .offered_product_right h3 {
        font-size: 30px;
    }
    .offered_product_right h4 {
        font-size: 30px;
    }

    .special_product h1 {
        font-size: 35px;
    }

    .special_product_in {
        margin-top: 40px;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product_img img {
        width: 100%;
        height: 140px;
    }

    .product_info {
        padding: 12px 12px 6px 12px;
    }
    .product_info h2 {
        font-size: 16px;
    }

    .product_info p {
        margin: 6px 0;
        font-size: 12px;
    }

}

@media(min-width : 426px) and (max-width : 575px)
{
    .offered_product_item {
        gap: 15px;
    }
    .offered_product_right h3 {
        font-size: 30px;
    }
    .offered_product_right h4 {
        font-size: 30px;
    }
    .offered_product_right a {
        font-size: 16px;
    }
    .special_product_in {
        margin-top: 50px;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .product_img img {
        height: 160px;
    }
}

@media(min-width : 576px) and (max-width : 767px)
{
    .special_product_in {
        margin-top: 50px;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .product_img img {
        height: 160px;
    }
}

@media(min-width : 768px) and (max-width : 991px)
{
    .special_product_in {
        margin-top: 50px;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media(min-width : 992px) and (max-width : 1199px)
{
    .special_product_in {
        margin-top: 50px;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}
/*--- /responsive ---*/

/*-- ====== /Offer Page  ======= --*/

/*-- ====== login  ======= --*/

/*--- login ---*/
.login
{
    padding-top: 60px;
    padding-bottom: 50px;
    background-color: var(--bg-color);
}
.login h1 
{
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.login_in
{
    max-width: 500px;
    width: 96%;
    margin: auto;
}
.login_inp
{
    margin: 35px 0;
}
.login_inp label
{
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: white;
}
.login_inp input
{
    height: 45px;
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 5px;
}

.login_submit_btn
{
    background-color: var(--primary-color);
    color: var(--bg-color);
    font-size: 16px;
    font-weight: 500;
    padding: 12px 25px;
    border-radius: 5px;
    border: none;
    outline: none;
    box-shadow: none;
}

.login_btm > a 
{
    display: block;
    margin: 4px 0;
    color: #74b9ff !important;
    font-size: 18px;
    font-weight: 400;
    text-decoration: underline !important;
}

.login_btm > a:hover 
{
    opacity: .8;
}

/*--- /login ---*/

/*-- ====== /login  ======= --*/


/*-- ====== reset password  ======= --*/

/*--- email sent successfully ---*/
.email_sent_success
{
    text-align: center;
    border-radius: 15px !important;
}

.email_sent_success dotlottie-player 
{
    width: 150px;
    height: 150px;
    display: block;
    margin: auto;
}
.email_sent_success p 
{
    margin: 0;
    font-size: 18px;
    font-weight: 400;
}
.email_sent_success p span
{
    font-weight: 700;
}
.email_sent_success > a 
{
    background-color: var(--primary-color);
    color: white;
    padding: 16px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
}
/*--- /email sent successfully ---*/


/*--- responsive  ---*/
.email_sent_success dotlottie-player 
{
    width: 120px;
    height: 120px;
}
/*--- /responsive  ---*/


/*-- ====== /reset password   ======= --*/



/*-- ====== menu  ======= --*/

/*--- menu offer image ---*/
.menu_offer_box
{
    padding-top: 30px;
    background-color: var(--bg-color);
}
.menu_offer
{
    max-width: 1100px;
    width: 100%;
    margin: auto;
    text-align: center;
}

/*--- /menu offer image ---*/

/*--- /menu icon ---*/
.menu_icon
{
    background-color: var(--bg-color);
    padding-top: 30px;
}
.menu_icon_in
{
    max-width: 1100px;
    width: 100%;
    margin: auto;
    position: relative;
}

.menu_icon_in > h4 
{
    color: var(--primary-color);
    font-weight: 600;
    font-size: 25px;
}

.menu_icon_box
{
    margin: 10px 0;
    text-align: center;
    padding: 15px 5px;
    display: block;
    background-color: #16181a; 
    border-radius: 17px;
}

.menu_icon_box.active 
{
    background-color: var(--primary-color);
}

.menu_icon_box img 
{
    height: 70px;
    width: 100px !important;
    object-fit: contain;
    display: block;
    margin: auto;
}
.menu_icon_box p 
{
    margin-top: 7px;
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    color: white !important;
    word-wrap: break-word;
}

.menu_icon_in .owl-theme .owl-nav
{
    margin-top: 0;
}

.menu_icon_in .owl-carousel .owl-nav button.owl-prev
{
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    left: -10px;
    font-size: 20px;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: orange;
    color: white !important;
}

.menu_icon_in .owl-carousel .owl-nav button.owl-next
{
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    right: -10px;
    font-size: 20px;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: orange;
    color: white !important;
}

/*--- /menu icon ---*/

/*--- product ---*/

.submenu
{
    text-align: center;
}
.submenu > ul 
{
    margin: 0;
    padding: 0;
    list-style: none;
}
.submenu > ul > li 
{
    display: inline-block;
    margin: 2px;
}

.submenu > ul > li > a 
{
    color: var(--bg-color);
    background-color: #FDD385;
    opacity: .5;
    padding: 14px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.submenu > ul > li > a.active 
{
    background-color: var(--primary-color);
    opacity: 1;
}

.product_box_in 
{
    margin-top: 40px;
}
/*--- /product ---*/

/*--- responsive ---*/
@media(max-width : 575px)
{
    .menu_icon_box
    {
        padding: 6px 4px;
    }
    .menu_icon_box img {
        height: 60px;
        width: 60px !important;
    }
    .menu_icon_box p 
    {
        margin-top: 5px;
        font-size: 13px;
    }

    .special_product {
        padding-top: 30px;
    }
    .submenu > ul > li {
        margin: 8px 4px;
    }
    .submenu > ul > li > a {
        padding: 8px 8px;
        font-size: 13px;
    }


}

@media(min-width : 576px) and (max-width : 767px)
{
    .menu_icon_box img {
        height: 60px;
        width: 60px !important;
    }
    .menu_icon_box p 
    {
        margin-top: 5px;
    } 
    
     .menu_icon_in .owl-carousel .owl-nav button.owl-prev
    {
        left: -30px;
    }
    .menu_icon_in .owl-carousel .owl-nav button.owl-next
    {
        right: -30px;
    }
    
}

@media(min-width : 768px) and (max-width : 991px)
{
    .menu_icon_box p 
    {
        margin-top: 5px;
    } 
    
    .menu_icon_in .owl-carousel .owl-nav button.owl-prev
    {
        left: -30px;
    }
    .menu_icon_in .owl-carousel .owl-nav button.owl-next
    {
        right: -30px;
    }
}
/*--- /responsive ---*/

/*-- ====== /menu  ======= --*/

/*-- ====== cart  ======= --*/

/*--- cart ---*/
.cart
{
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--bg-color);
}
.cart_in > h1 
{
    color: var(--primary-color);
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
} 
.shopping-cart table
{
    white-space: nowrap;
    --bs-table-bg: transparent;
    border: 0.2px solid rgba(255, 166, 0, 0.325);
}

.shopping-cart thead th 
{
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    color: white;
}

.shopping-cart tbody td 
{
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
    color: white;
}

.product_cart_box
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 30px;
}
.product-image img 
{
    width: 90px;
    height: 80px;
    object-fit: fill;
}

.product-title 
{
    font-size: 16px;
    font-weight: 500;
}

.product-title ul 
{
    padding: 0px;
    margin: 0px;
    padding-left: 15px;
    font-size: 14px;
    font-weight: 400;
}

.quantity__minus,.quantity__plus
{
    text-decoration: none;
    font-size: 14px;
    color: black !important;
    background-color: var(--primary-color);
    display: inline-block;
    width: 25px;
    width: 25px;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
    border-radius: 2px;
}

.quantity__input 
{
    width: 60px;
    text-align: center;
    border: 1px solid var(--primary-color);
    outline: none;
    box-shadow: none;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
    background-color: transparent;
    color: white;
    border-radius: 5px;
}

.remove_product_btn
{
    height: 40px;
    width: 44px;
    text-align: center;
    color: red !important;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    margin: auto;
    transition: all 0.3s linear;
    border-radius: 2px;
}

.remove_product_btn:hover 
{
    background-color: red;
    border: 1px solid red;
    color: white !important;
    transition: all 0.3s linear;
}
.total-price span
{
    font-size: 16px;
    font-weight: 600;
    white-space: pre-wrap;
}
.shopping-cart tfoot tr td
{
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 18px;
    font-weight: 600;
    color: white;
}
.continue_box
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.order_more_btn
{
    font-size: 17px;
    font-weight: 500;
    padding: 14px 20px;
    text-decoration: none;
    color: white !important;
    background-color: royalblue;
    border-radius: 4px;
}

.proceed_checkout_btn
{
    font-size: 17px;
    font-weight: 500;
    padding: 14px 20px;
    text-decoration: none;
    color: black !important;
    background-color: var(--primary-color);
    border-radius: 4px;
}

/*--- /cart ---*/

/*--- responsive ---*/
@media(max-width : 425px)
{
    .continue_box 
    {
        margin-top: 30px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 10px;
    }
}
/*--- /responsive ---*/
/*-- ====== /cart  ======= --*/

/*-- ====== my_account  ======= --*/

/*--- account menu ---*/
.my_account
{
    padding-top: 60px;
    padding-bottom: 30px;
    background-color: var(--bg-color);
}
.my_account_in > ul 
{
    margin: 0px;
    padding: 0;
    list-style: none;
}

.my_account_in > ul > li  
{
    display: inline-block;
    margin: 5px 4px;
}

.my_account_in > ul > li > a 
{
    font-size: 14px;
    font-weight: 600;
    color: var(--gray1) !important;
    background-color: #ccc;
    padding: 14px 14px;
    border-radius: 5px;
    text-transform: uppercase;
}

.my_account_in > ul > li > a.active 
{
    color: white;
    background-color: var(--primary-color);
}
/*--- /account menu ---*/

/*--- profile update ---*/
.profile_update
{
    background-color: var(--bg-color);
    padding-top: 20px;
    padding-bottom: 30px;
}
.account_left, 
.account_right 
{
    margin: 10px 0;
    color: white;
}

.account_left > h4 
{
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
}

.account_inp
{
    margin: 20px 0;
}

.account_inp > label
{
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.account_inp > input
{
    height: 45px;
    width:100%;
    padding: 5px 10px;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    background-color: #ffffffd8;
}

.account_inp > button
{
    display: block;
    cursor: pointer;
    background-color: var(--primary-color);
    color: white;
    text-transform: uppercase; 
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
    height: 50px;
    border-radius: 8px;
}

/*--- /profile update ---*/

/*--- responsive  ---*/
@media(max-width : 575px)
{
    .my_account {
        padding-top: 40px;
        padding-bottom: 10px;
    }
    .my_account_in > ul > li {
        margin: 15px 4px;
    }

    .my_account_in > ul > li > a {
        font-size: 13px;
    }
    .account_inp > button {
        font-size: 13px;
    }
}

@media(min-width : 576px) and (max-width : 767px)
{
    .my_account_in > ul > li > a {
        font-size: 13px;
        padding: 14px 10px;
    }
}
/*--- /responsive  ---*/

/*-- ====== /my_account  ======= --*/


/*-- ====== my_order  ======= --*/

/*--- My Order  ---*/
.my_order
{
    background-color: var(--bg-color);
    padding-top: 30px;
    padding-bottom: 30px;
}

.order_table,
.order_info,
.product_det_table
{
    border-radius: 10px;
    overflow: hidden;
}

.order_table tr th 
{
   padding: 18px 14px;
   font-size: 15px;
   font-weight: 600;
}

.order_id_tbl
{
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    height: 45px;
    width: 50px;
    font-size: 20px;
    font-weight: 600;
}

.order_info tr td,.order_info tr th
{
  padding: 9px 14px;
  font-size: 15px;
  font-weight: 600;
}

.order_type_view
{
    display: inline-block;
    padding: 6px 10px;
    background-color: orangered;
    color: white;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
}

.order_status_view
{
    display: inline-block;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
}

.product_det_table tr td,.product_det_table tr th
{
  padding: 9px 14px;
  font-size: 15px;
  font-weight: 500;
}

/*--- /My Order  ---*/

/*-- ====== /my_order  ======= --*/

/*-- ====== offer_card  ======= --*/

/*--- offer card ---*/
.offer_card_main
{
    padding-top: 30px;
    padding-bottom: 40px;
    background-color: var(--bg-color);
}


.offer_card_left
{
    padding: 0px 30px 0px 0px;
}
.offer_card_left h5 
{
    font-size: 18px;
    font-weight: 400;
    margin-top: 30px;
    margin-bottom: 20px;
    line-height: 28px;
}
.generate_qr_btn
{
    border: none;
    outline: none;
    box-shadow: none;
    background-color: #007ac1;
    color: white;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 20px;
    border-radius: 5px;
}

.offer_card {
    padding: 20px 30px;
    z-index:3;
    border-radius: 5px;
    background: url("../image/offer_card_bg.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
    max-width: 490px;
}

.offer_card_top
{
  display:flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
}


.offer_card .logo
{
  width: 80px;
  object-fit: contain;
  margin-bottom: 5px;
  margin-top: 0px;
}
.offer_card .bar_code
{
  width: 100px;
  overflow: hidden;
  margin-top: 5px;
  margin-bottom: 15px;
}


.offer_card .bar_code img 
{
  width: 100%;
  transform: scale(1.4);
}
.offerBox
{
  justify-content: center;
  align-items:center;
}

.offerBoxDiv 
{
   margin:5px;
   display: grid;
   grid-template-columns: 30% 30% 30%;
   justify-content: space-between;
   gap: 12px;
}

.offerBoxDiv div 
{
  background-color:white;
  border-radius: 5px;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offerBoxDiv div i 
{
  font-size: 55px;
  color:green;
}

.bottom_text p 
{
  background-color: white; 
  color:black;
  text-align:center;
  font-size: 17px;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 5px;
  width: 90%;
  margin: 15px auto 0 auto;
}
.rotate_text
{
   color:white;
   font-size: 20px;
   transform:rotate(270deg);
   position:absolute;
   left: -60px;
   top:50%;
   font-weight: 500;
   letter-spacing: 1px;
}
.offer_11th_box1
{
  display:flex;
  justify-content: space-between;
  align-items: center;
  flex-basis: 100% !important; 
  padding: 4px 0;
}
.spanDiv
{
  margin-right: 5px;
  margin-left: 5px;
  width: 50%;
}
.imageBoxOffer
{
  width: 50%;
  overflow: hidden;
}

.offer_11th_box1 span 
{
  display:block;
  font-size:13px;
  font-style: italic;
  font-weight:600;
  margin:0 1px;
}
.offer_11th_box1 span:nth-child(1)
{
  color: rgba(0,0,0,0.6);
   text-shadow: 2px 8px 6px rgba(0,0,0,0.2),
                 0px -5px 35px rgba(255,255,255,0.3);
}

.offer_11th_box1 span:nth-child(2)
{
  color:red;
   text-shadow: 2px 8px 6px rgba(0,0,0,0.2),
                 0px -5px 35px rgba(255,255,255,0.3);
}

/*--- /offer card ---*/

/*--- responsive ---*/
@media(max-width: 425px)
{  
    .offer_card_left 
    {
        padding: 0px 0px 0px 0px; 
    }
    .offerBoxDiv {
        grid-template-columns: 33% 33% 33%;
    }
    .offerBoxDiv div {
        height: 75px;
    }
    .offerBoxDiv div i {
        font-size: 36px;
    }
    .offer_card {
        padding: 20px 15px;
    }
    .rotate_text {
        font-size: 16px;
        left: -50px;
    }
    .bottom_text p {
        width: 85%;
    }
}

@media(min-width: 426px) and (max-width: 575px)
{
    .offer_card_left 
    {
        padding: 0px 0px 0px 0px; 
    }
    .offerBoxDiv {
        grid-template-columns: 31% 31% 31%;
    }
    .offerBoxDiv div {
        height: 75px;
    }
    .offerBoxDiv div i {
        font-size: 45px;
    }
    .offer_card {
        padding: 20px 15px;
    }
    .rotate_text {
        font-size: 16px;
        left: -50px;
    }
 
}

@media(min-width: 576px) and (max-width: 991px)
{
    .offerBoxDiv {
        grid-template-columns: 31% 31% 31%;
    }
    .offerBoxDiv div i {
        font-size: 55px;
    }
}
/*--- /responsive ---*/

/*-- ====== /offer_card  ======= --*/


/*-- ====== float cart icon   ======= --*/
#cartButtomBtn {
    display: inline-block;
    background-color: orange;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 25px;
    position: fixed;
    bottom: 120px;
    right: 12px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    z-index: 10;
    font-size: 18px;
    text-decoration: none;
}

#cartButtomBtn:hover {
    display: inline-block;
    animation: shakeY;
    animation-duration: 2s; 
}

#cartButtomBtn i 
{
    color: black !important;
}

@media(min-width : 1200px)
{
    #cartButtomBtn {
        right: 80px;
    } 
}
.option-badge 
{
    position: absolute;
    top: -7px;
    right: -5px;
    color: black;
    background-color: white;
    display: inline-block;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    line-height: 24px;
    font-size: 13px;
    font-weight: 700;
}


/*-- ====== /float cart icon   ======= --*/

/*-- ====== show packages for menu  ======= --*/
.swal-overlay
{
    z-index: 999999999 !important;
}
.package_modal,
#offerDetails
{
    z-index: 9999999 !important;
}
.customModal
{
    background-color: var(--bg-color) !important;
    border: 0.5px solid var(--primary-color) !important;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.package_modal .modal-header,
#offerDetails .modal-header
{
    padding: 10px 15px;
    border: 0.5px solid var(--primary-color) !important;
}

.package_modal .modal-footer,
#offerDetails .modal-footer
{
    border-top : 0.5px solid var(--primary-color) !important;
}

.menu_product_top
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu_product_top h5
{
    margin: 0px;
    font-size: 16px;
    font-weight: 700; 
    text-transform: uppercase;
    color: white;
}

.menu_product_top button
{
    display: block;
    text-decoration: none;
    color: red ;
    font-size: 30px;
    font-weight: 900;
    border: none;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    text-align: center;
}

.proOptionTitle h6
{
    font-size: 16px;
    font-weight: 700;
    background-color: var(--primary-color);
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 15px;
    border-radius: 4px;
    text-align: center;
    text-transform: uppercase;
}

.pro_option
{
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    margin: 5px 0;
}

.pro_option label
{
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn_pro 
{
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu_desc
{
    display: none;
}

.pro_option img 
{
    width: 60px;
    margin: auto;
    cursor: pointer;
    height: 50px;
    object-fit: fill;
}

.pro_option input
{
    display: none;
}

.pro_option p 
{
    margin-top: 4px;
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
}

.pro_option p span
{
    color: var(--primary-color);
}


.pro_option label::before {
    content: "";
    position: absolute;
    background-color: transparent; 
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    width: 25px;
    height: 25px;
    margin-right: 0px;
    border: 1px solid transparent;  
    
}

.pro_option input[type="radio"]:checked + label::before,
.pro_option input[type="checkbox"]:checked + label::before {
    background-color: orange;
    border-radius: 50%;
    font-size: 14px;
}


.pro_option input[type="radio"]:checked + label::after,
.pro_option input[type="checkbox"]:checked + label::after 
{
    content: "✓";
    color: #000;
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 17px;
    font-size: 15px;
    text-align: center;
}

.popup_add_btn
{
    background-color: var(--primary-color);
    color: var(--gray1);
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 5px;
}

.popup_add_btn:hover
{
    opacity: .9;
} 

/* 
.menu_desc
{
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    padding-top: 15px;
    padding-left: 5px;
    padding-right: 5px;
    background-color: white;
    border-radius: 10px; 
    display: none;
}
.menu_desc::-webkit-scrollbar
{
    display: none;
}
.menu_desc.active 
{
    display: block;
}
.menu_desc h5 
{
    font-size: 13px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.menu_desc p 
{
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 0px;
    text-transform: capitalize;
}
.menu_info_btn
{
    display: inline-block;
    margin-left: 5px;
    position: absolute;
    top: 5px;
    left: -2px;
    z-index: 99;
}
.menu_info_btn i 
{
    color: black;
    background-color: orange;
    height: 20px;
    width: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
} */

/*-- ====== /show packages for menu  ======= --*/

/*-- ====== checkout ======= --*/
.checkout_box
{
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--bg-color);
}
.checkout_in > h1 
{
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

.checkout_coupon_in
{
    background-color: var(--primary-color);
    padding: 20px 20px;
    border-radius: 10px;
}
.checkout_coupon h3 
{
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 15px;
    color: white;
}

.couponTable
{
    font-size: 20px;
    font-weight: 600;
    --bs-table-bg : transparent !important;
}

.couponTable th,
.couponTable td 
{
    font-size: 17px;
    font-weight: 600;
}

.coupon_search_in
{
    display: grid;
    grid-template-columns: 70% 30%;
    align-items: center;
}

.coupon_search input
{
    height: 45px;
    width: 100%;
    outline: none;
    box-shadow: none;
    padding: 8px 14px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #ccc;
}

.coupon_search button
{
    height: 45px;
    width: 100%;
    background-color: #0069d9;
    border: none;
    display: block;
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
}

.coupon_search p  
{
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}

.twocheckout_top h1 
{
    font-size: 25px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 25px;
    color: white;
}
.twocheckout_select
{
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 40px;
    color: white;
}
.twocheckout_select label input
{
    display: none;
}
.twocheckout_select label
{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    background-color: rgba(128, 128, 128, 0.531);
    color: white;
} 
.twocheckout_select label.active 
{
    background-color: var(--primary-color);
    color: black;
}
.twocheckout_select label i 
{
   font-size: 30px; 
}

.twocheckout_select p 
{
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.billing_title
{
    font-size: 20px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
    color: white;
}

.order_details_inp
{
    margin: 10px 0;
}

.order_details_inp label
{

    display: block;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
    color: white;
}

.order_details_inp input,.order_details_inp select
{
    width: 100%;
    height: 45px;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    box-shadow: none;
}

.order_details_payment
{
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.order_details_payment label
{
    background-color: #007ac1;
    color: white;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.order_details_payment label input
{
    margin-right: 10px;
    height: 15px;
    width: 15px;
}
.order_details_payment label .form-check-input:checked {
    background-color: #FF9800;
    border-color: #FFC107;
}
.special_amountBox 
{
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 20px;
}

#order_details_btn
{
    background-color: orange;
    color: black;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    display: block;
    text-transform: uppercase;
    width: 100%;
}

.coupon_popup
{
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    z-index: 999999;
    justify-content: center;
}

.coupon_popup_in
{
    background-color: #0069d9;
    padding: 20px 40px;
    border-radius: 10px;
    height: fit-content;
    max-width: 650px;
    width: 98%;
    margin-top: 40px;
    color: white;
}

.coupon_popup_in h3 
{
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.428);
}

.coupon_popup_in p 
{
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0;
}

.coupon_popup_in p span
{
    background-color: orange;
    color: black;
    padding: 2px 5px;
    border-radius: 2px;
    text-align: center;
}

.coupon_popup_in  button
{
    background-color: red;
    color: white;
    font-size: 17px;
    font-weight: 500;
    padding: 8px 40px;
    border-radius: 5px;
    border: none;
    outline: none;
    box-shadow: none;
    margin: 30px auto 0px;
    display: flex;
    justify-content: center;
}
.coupon_result
{
    font-size: 18px;
    font-weight: 500;
    margin-top: 15px;
}
.delivery_charge_msg
{
    margin-top: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.amount_check
{
    font-size: 25px;
    font-weight: 600;
    color: white;
}
.stripe_btn_design
{
    margin: auto;
    background-color: #0069d9;
    color: white;
    padding: 10px 30px;
    border-radius: 3px;
    display: block;
    margin-top: 20px;
    border: none;
    outline: none;
    box-shadow: none;
}

/*-- ====== /checkout ======= --*/


/*-- ====== /thank_you ======= --*/
.thank_you_main
{
    background-color: var(--bg-color);
    padding-top: 50px;
    padding-bottom: 40px;
}
.thank_you_in
{
    text-align: center;
    color: white;
}

.thank_you_in dotlottie-player
{
    height: 200px;
    max-width: 300px;
    width: 100%;
    display: block;
    margin: auto;
}

.thank_you_in h1 
{
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.thank_you_in p  
{
    margin: 10px 0;
    font-size: 16px;
    font-weight: 400;
}

.thank_you_btn_flex
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.thank_you_btn_flex a 
{
    padding: 14px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}
.thank_you_btn_flex a:nth-child(1)
{
    color: white !important;
    background-color: #0069d9;
}

.thank_you_btn_flex a:nth-child(2)
{
    color: var(--gray1) !important;
    background-color: var(--primary-color);
}

/*-- ====== /thank_you ======= --*/

.swal-text
{
    text-align: center !important;
}

