/********** Template CSS **********/
:root {
    --primary: #aee99f;
    --secondary: #545454;
    --light: #fffcf7;
    --dark: #1E1916;
}

::selection {
    background-color: rgb(193 185 185 / 0.70);
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.text-accent {
    color: #aee99f;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

    .btn.btn-primary {
        color: #FFFFFF;
    }

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 35px 15px;
    color: var(--light);
    outline: none;
}

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

.navbar.fixed-top {
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .3);
        background: var(--dark);
    }

        .navbar .navbar-nav .nav-link {
            padding: 10px 0;
        }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .60);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 600px;
    }

        .header-carousel .owl-carousel-item img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .header-carousel .owl-carousel-item p {
            font-size: 16px !important;
        }
}

.header-carousel .owl-nav {
    position: relative;
    width: 80px;
    height: 80px;
    margin: -40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .header-carousel .owl-nav::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: #FFFFFF;
        transform: rotate(45deg);
    }

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        position: relative;
        font-size: 40px;
        color: var(--primary);
        transition: .5s;
        z-index: 1;
    }

        .header-carousel .owl-nav .owl-prev:hover,
        .header-carousel .owl-nav .owl-next:hover {
            color: var(--dark);
        }

.page-header {
    margin-bottom: 6rem;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(..//img/slide4.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

    .fact-item:hover {
        margin-top: -10px;
        background: #FFFFFF !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    }


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 70%;
    top: 10%;
    left: 20%;
    background: #aee99f;
    /*border: 25px solid var(--light);*/
    border-radius: 6px;
    z-index: -1;
}


/*** Product ***/
.product-item {
    transition: .5s;
}

    .product-item:hover {
        background: var(--primary) !important;
    }

        .product-item:hover * {
            color: var(--light);
        }

        .product-item:hover .border-primary {
            border-color: var(--light) !important;
        }

    .product-item .product-overlay {
        position: absolute;
        width: 100%;
        height: 0;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, .5);
        overflow: hidden;
        opacity: 0;
        transition: .5s;
    }

    .product-item:hover .product-overlay {
        height: 100%;
        opacity: 1;
    }


/*** Team ***/
.team-item .team-text {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
    transition: .5s;
}

/*.team-item:hover .team-title {
    top: -100px;
}*/

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transition: .5s;
}

    .team-item .team-social .btn {
        margin: 0 3px;
    }

/*.team-item:hover .team-social {
    top: 0;
}*/


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

    .testimonial-carousel .owl-item.center .testimonial-item * {
        color: #FFFFFF !important;
    }

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 12px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        font-size: 22px;
        color: var(--light);
        background: var(--primary);
        transition: .5s;
    }

        .testimonial-carousel .owl-nav .owl-prev:hover,
        .testimonial-carousel .owl-nav .owl-next:hover {
            color: var(--primary);
            background: var(--dark);
        }


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: 100ms;
}

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: var(--light);
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        color: var(--primary);
        box-shadow: none;
    }

.copyright {
    background: #111111;
}

    .copyright a {
        color: var(--primary);
    }

        .copyright a:hover {
            color: var(--light);
        }

.slideCell {
    width: 100%;
    height: 99vh;
    overflow: hidden;
}

    .slideCell img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.backHeader {
    background-color: rgb(0 0 0 / 0.60);
    backdrop-filter: blur(10px);
}









/****************Admin*******************/

.Sideheader a {
    text-decoration: none;
}

.AdminMContainer {
    font-family: 'Work Sans', sans-serif;
    display: flex;
    justify-content: space-between;
    min-height: 100vh;
    background-color: #f3f3f3;
    transition: 300ms;
}

/*Link to JS*/
.Sideheader {
    width: 6%;
}
/*Link to JS*/
.Sideheader1 {
    width: 18%;
}

.btn2 {
    width: 100%;
    height: 10vh;
    background-color: transparent;
    color: #d7d7d7;
    border: none;
    font-size: 22px;
    outline: none;
    padding: 0 20px;
    background-color: #313131;
    cursor: pointer;
    margin-bottom: 10px;
}

    .btn2:hover {
        background-color: #aee99f;
        color: white;
    }

    .btn2:focus {
        outline: none;
    }


.Sideheader ul {
    width: 100%;
    text-decoration: none;
    list-style: none;
    padding: 0;
}

    .Sideheader ul li {
        margin: 5px 6px;
    }

.anchor {
    overflow: hidden;
    border-radius: 10px;
    justify-content: center;
    background-color: #d7d7d7;
    display: flex;
    width: 15vw;
    transition: 300ms;
    width: 100%;
    height: 10vh;
    align-items: center;
    padding: 0 10%;
    color: #444;
    outline: none;
}

    .anchor:hover {
        color: #ffffff;
        background-color: #d0a761;
    }

        .anchor:hover .name1 {
            color: #ffffff;
        }

    .anchor > i {
        font-size: 20px;
    }


.btnAnchor {
    overflow: hidden;
    border-radius: 10px;
    justify-content: center;
    background-color: #d7d7d7;
    display: flex;
    transition: 300ms;
    width: 200px;
    height: 55px;
    align-items: center;
    /* padding: 0 10%;*/
    color: #444;
    outline: none;
    margin-top: 30px;
}

    .btnAnchor:hover {
        color: #ffffff;
        background-color: #18B259;
    }

        .btnAnchor:hover .name1 {
            color: #ffffff;
        }

    .btnAnchor > i {
        font-size: 20px;
    }


.lnkAnchor {
    overflow: hidden;
    border-radius: 10px;
    justify-content: center;
    background-color: #d7d7d7;
    display: flex;
    transition: 300ms;
    width: 200px;
    height: 55px;
    align-items: center;
    /*padding: 0 10%;*/
    color: #444;
    outline: none;
    margin-top: 30px;
    border: 2px solid #000;
}

    .lnkAnchor:hover {
        color: #ffffff;
        background-color: #18B259;
    }

        .lnkAnchor:hover .name1 {
            color: #ffffff;
        }

.btnAnchor > i {
    font-size: 20px;
}
/*Link to JS*/
.name {
    width: 60%;
    display: none;
    margin: 0 5px;
}

/*Link to JS*/
.name1 {
    width: 100%;
    margin: 0 0 0 15px;
    display: block;
    font-weight: 400;
    transition: 300ms;
}

/*Link to JS*/
.bodyContainer {
    width: 94%;
    min-height: 100vh;
    background-color: #ffffff;
    font-family: 'Work Sans', sans-serif;
    background-attachment: fixed;
    background-size: cover;
    padding: 20px;
}
/*Link to JS*/
.bodyContainer1 {
    width: 82%;
    min-height: 100vh;
    background-color: white;
    padding: 20px;
}

@media (max-width:1000px) {

    /*Link to JS*/
    .Sideheader {
        width: 8%;
    }
    /*Link to JS*/
    .Sideheader1 {
        width: 22%;
    }


    /*Link to JS*/
    .bodyContainer {
        width: 92%;
    }
    /*Link to JS*/
    .bodyContainer1 {
        width: 78%;
    }
}

@media (max-width:830px) {

    /*Link to JS*/
    .Sideheader {
        width: 10%;
    }
    /*Link to JS*/
    .Sideheader1 {
        width: 26%;
    }


    /*Link to JS*/
    .bodyContainer {
        width: 90%;
    }
    /*Link to JS*/
    .bodyContainer1 {
        width: 74%;
    }
}

@media (max-width:600px) {

    /*Link to JS*/
    .Sideheader {
        width: 14%;
    }
    /*Link to JS*/
    .Sideheader1 {
        width: 32%;
    }


    /*Link to JS*/
    .bodyContainer {
        width: 86%;
    }
    /*Link to JS*/
    .bodyContainer1 {
        width: 68%;
    }

    .bt-group {
        flex-flow: column wrap;
    }

    .leftDiv {
        margin-bottom: 20px;
    }

    .rightDiv {
        margin-bottom: 20px;
    }
}

@media (max-width:450px) {

    /*Link to JS*/
    .Sideheader {
        width: 18%;
    }
    /*Link to JS*/
    .Sideheader1 {
        width: 40%;
    }


    /*Link to JS*/
    .bodyContainer {
        width: 82%;
    }
    /*Link to JS*/
    .bodyContainer1 {
        width: 60%;
    }
}

.Adminlogo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .Adminlogo img {
        width: 80%;
    }

.AdminContainer h2 {
    margin-bottom: 10px;
}

.AdminContainer input {
    margin: 0 0 20px 0;
}

    .AdminContainer input[type=text] {
        margin: 0 0 20px 0;
        height: 32px;
    }

    .AdminContainer input[type=submit] {
        margin: 10px 0 15px 0;
        padding: 12px 25px;
        border-radius: 0px;
    }

.AdminContainer .btn {
    margin: 20px 0;
}

.AdminContainer label {
    margin: 0 0 5px 0;
    color: #808080;
}

.AdminContainer a {
    color: #00b6b6;
    text-decoration: none #dddddd;
}

    .AdminContainer a:hover {
        color: #297676;
        text-decoration: underline #b5b5b5;
    }



.EmptyContainer {
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.alignme {
    padding: 0;
    width: 25%;
    display: flex;
    justify-content: end;
}

.text-yo {
    font-size: 15px;
}

.AdminDeleteContainer {
    width: 100%;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.SubDelete {
    width: 50%;
    min-height: 45vh;
    background-color: rgb(221 221 221 / 0.74);
    padding: 30px;
    border-radius: 8px;
    /*margin:10% 0 0 0;*/
}

    .SubDelete dt {
        color: #515151;
    }

    .SubDelete dd {
        font-size: 18px;
        color: #757575;
    }

.imgdiv1 {
    width: 100%;
    height: 100%;
    overflow: hidden;
    align-items: center;
    display: flex;
    justify-content: center;
    align-self: center;
    justify-self: center;
}

    .imgdiv1 img {
        width: 100%;
    }

.imgdiv2 {
    width: 180px;
    height: 150px;
    overflow: hidden;
    align-items: center;
    display: flex;
    justify-content: center;
    align-self: center;
    justify-self: center;
}

    .imgdiv2 img {
        height: 100%;
    }

.EmptyContainer1 {
    width: 100%;
    height: 110px;
}

.fixHeight {
    max-height: 50px;
}

.container1 {
    width: 90%;
    margin: 0 auto;
}


.fm-group {
    width: 100%;
    height: 100%;
}

    .fm-group .lbl {
        width: 100%;
        height: 40px;
        line-height: 40px;
        color: #444;
    }

    .fm-group .fm-control {
        width: 100%;
        height: 50px;
        border: none;
        border-bottom: 1px solid #444;
        outline: none;
    }

.bt-group {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.leftDiv {
    width: 30%;
    height: 50px;
}

.rightDiv {
    width: 30%;
    height: 50px;
}

.loginContainer {
    width: 100%;
    background-color: #fffdf9;
    border-radius: 10px;
    overflow: hidden;
}

.loginside {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgb(5 5 5 / 0.61),rgb(5 5 5 / 0.61)),url(../img/slide4.jpg);
    background-size: cover;
    backdrop-filter: blur(5px);
}

.loginside1 {
    width: 100%;
    height: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(rgb(5 5 5 / 0.61),rgb(5 5 5 / 0.61)),url(../img/slide4.jpg);
    background-size: cover;
    backdrop-filter: blur(5px);
}

.TextBoxAligh {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.TextChefAligh {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 40px;
}

    .TextChefAligh input[type=text] {
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #dbd2c9;
        border-radius: 0;
        margin-bottom: 25px;
        height: 45px;
    }

    .TextChefAligh input[type=number] {
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #dbd2c9;
        border-radius: 0;
        margin-bottom: 25px;
        height: 45px;
    }

    .TextChefAligh input[type=password] {
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #dbd2c9;
        border-radius: 0;
        margin-bottom: 25px;
        height: 45px;
    }

    .TextChefAligh input:focus {
        border-bottom: 1px solid #aa9a8a;
        background-color: transparent;
        border-color: none;
        outline: 0;
        box-shadow: none;
    }

    .TextChefAligh h1 {
        font-size: 60px;
        margin-bottom: 25px;
    }

    .TextChefAligh label {
        margin-bottom: 5px;
    }

.bg-res {
    width: 100%;
    background-color: rgb(0 0 0 / 0.09)
}

.TextBoxAligh input[type=text] {
    margin-bottom: 25px;
    height: 45px;
}

.TextBoxAligh input[type=password] {
    margin-bottom: 25px;
    height: 45px;
}

.TextBoxAligh h1 {
    font-size: 60px;
    margin-bottom: 25px;
}

.TextBoxAligh label {
    margin-bottom: 5px;
}

.chefImage {
    width: 100%;
    height: 300px !important;
}

    .chefImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.recentChefImage {
    width: 100%;
    height: 200px !important;
}

    .recentChefImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.linkPointer {
    cursor: pointer;
}


















/*Profile********************************************/

.overh {
    overflow-x: hidden;
}

.profileSection h1,
.profileSection h2,
.profileSection h5,
.profileSection h6,
.profileSection h3,
.profileSection h5 {
    font-family: "Josefin Sans", sans-serif;
}

.profileInfo {
    min-height: 250px;
    background-color: #fff;
    margin: 20px 0 0 0px;
    border-radius: 10px;
    padding: 40px 25px;
    box-shadow: 0 2px 30px rgb(0 0 0 / 0.07);
}

.orderSection {
    min-height: 300px;
    background-color: #f7f7f7;
    margin: 20px 0 0 0px;
    border-radius: 10px;
    padding: 0px 10px;
    border: 10px solid #fff;
    box-shadow: 0 2px 30px rgb(0 0 0 / 0.07);
}

.reviewSection {
    min-height: 300px;
    background-color: white;
    margin: 20px 0 0 0px;
    border-radius: 10px;
    padding: 0px 10px;
    border: 10px solid #fff;
    box-shadow: 0 2px 30px rgb(0 0 0 / 0.07);
}

.profileimgdiv {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.pImage {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    border: 6px solid #aee99f;
}

    .pImage img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }




.orderItem {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    background-color: #eaeaea;
    transition: 300ms;
    margin: 10px 0px;
    text-decoration: none;
    color: #727272;
}

.orderItem1 {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    border-radius: 13px;
    background-color: #f2f2f2;
    transition: 300ms;
    margin: 10px 0px;
    text-decoration: none;
    color: #727272;
}

    .orderItem1 p {
        margin: 0;
    }

    .orderItem1:hover {
        background-color: #ffffff;
    }

.orderItem p {
    margin: 0;
}

.orderItem:hover {
    background-color: #ffffff;
}

.orderItemSuccess {
    width: 100%;
    min-height: 150px;
    border-radius: 13px;
    transition: 300ms;
    margin: 10px 0px;
    text-decoration: none;
    color: #858585;
    position: relative;
    padding: 25px 10px;
    transition: 600ms;
}


    .orderItemSuccess:hover {
        background-color: #abd8ad;
    }

        .orderItemSuccess:hover img {
            bottom: 13px;
        }

    .orderItemSuccess img {
        transition: 1s;
        width: 200px;
        position: absolute;
        bottom: 0px;
        right: 20px;
    }

.logInconatiner {
    width: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
}

    .logInconatiner input {
        margin-bottom: 25px;
    }

.logInBox {
    padding: 80px 30px;
    margin: 50px 0;
    margin-top: -100px;
    width: 600px;
    min-height: 400px;
    background-color: #fff;
    border-radius: 6px;
}

.customerLogin {
    z-index: 600;
    padding: 80px 30px;
    margin: 50px 0;
    margin-top: -160px;
    width: 1000px;
    min-height: 400px;
    background-color: #fff;
    border-radius: 8px;
}

@media (max-width:768px) {
    .logInBox {
        margin: 50px 0;
        margin-top: 50px;
        padding: 60px 15px;
    }

    .customerLogin {
        margin: 50px 0;
        margin-top: 50px;
        padding: 60px 15px;
    }
}

.pro-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid #c3c3c3;
    color: #7d7d7d;
    transition: 500ms;
}

    .pro-btn:hover {
        color: #575757;
        border-color: #575757;
        background-color: #ffde82;
    }

.log-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid #c3c3c3;
    color: #7d7d7d;
    transition: 500ms;
}

    .log-btn:hover {
        color: #575757;
        border-color: #575757;
        background-color: #ff9494
    }

.ratingdiv {
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #ffc107;
    color: white;
}

.ratingdivG {
    background-color: #00981a
}

.ratingdivY {
    background-color: #ffc932;
}

.ratingdivR {
    background-color: #ff4532;
}

.cursorpointer {
    cursor: pointer;
}

.px-6 {
    padding-left: 96px;
    padding-right: 96px;
}

.imgSet {
    overflow: hidden;
    border-radius: 8px;
    width: 100%;
}

    .imgSet img {
        width: 100%;
        object-fit: cover;
    }

.font-josefin h1,
.font-josefin h2,
.font-josefin h5,
.font-josefin h6,
.font-josefin h3,
.font-josefin h4 {
    font-family: "Josefin Sans", sans-serif;
}

.pricingContainer {
    width: 100%;
    background-color: #fafafa99;
    border-radius: 10px;
    overflow: hidden;
}

    .pricingContainer h1,
    .pricingContainer h2,
    .pricingContainer h3,
    .pricingContainer h5,
    .pricingContainer h6,
    .pricingContainer h4 {
        font-family: "Josefin Sans", sans-serif;
    }

.pricingChamp {
    width: 100%;
    background-color: white;
    border-radius: 7px;
}

    .pricingChamp span {
        font-size: 35px;
        font-weight: 700;
    }

.pricingRec {
    background-color: #f4ffef !important;
    border: 2px solid #aee99f;
}

    .pricingRec span {
        font-size: 35px;
        font-weight: 700;
    }

.fixH {
    min-height: 100px;
}

.recDiv {
    display: flex;
    justify-content: center;
    color: white;
    width: 100%;
    height: 40px;
    align-items: center;
    margin-top: -40px;
    border-radius: 7px 7px 0 0;
}

.recB {
    border: 2px solid #aee99f;
}

.star-rating {
    display: flex;
    gap: 5px;
}

.star {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
}

    .star.selected,
    .star:hover ~ .star {
        color: #ffc107;
    }

.bookingContent {
    width: 100%;
    min-height: 200px;
    background-color: #ffffff;
    border-radius: 12px;
    /*border:1px solid #d0d0d0;*/
}

.bookingSideContent {
    width: 100%;
    min-height: 300px;
    background-color: #ffffff;
    border-radius: 12px;
}

    .bookingSideContent p {
        color: #a7a7a7;
        font-weight: 400;
    }

    .bookingSideContent b {
        display: block;
        text-align: end;
    }

.innerChef {
    width: 100%;
    min-height: 100px;
    background-color: #f1fae7;
    border-radius: 8px;
    padding: 10px;
}

.br-2 {
    border-radius: 5px;
}

.InfoText p {
    margin: 0;
    color: #a7a7a7;
    font-weight: 400;
}

.InfoText b {
    display: block;
    margin: 5px 0 15px 0;
}

.backgroundTC {
    background-image: url(../images/wallpapers.jpg);
    width: 100%;
    height: 120px;
}

.ThanksContainer {
    width: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #e5e5e5;
}

.tBox {
    width: 700px;
    min-height: 400px;
    background-color: white;
    padding: 15px;
    margin: 3vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 1px 2px 25px #00000012;
    border-radius: 3px;
}

    .tBox h2 {
        font-size: 50px;
        color: #209039;
        font-weight: 400;
    }

    .tBox img {
        width: 30%;
        margin: 10px 0;
    }

.text-gray {
    color: #949494;
}





.AdminAlign {
    display: flex;
    margin: 10px 0;
}

    .AdminAlign dt {
        width: 20%;
        font: 700;
        color: #353535;
    }

    .AdminAlign dd {
        width: 80%;
        color: #585858;
    }

.AdminAlign1 {
    display: flex;
    margin: 10px 0;
}

    .AdminAlign1 dt {
        width: 30%;
        font: 700;
        color: #353535;
    }

    .AdminAlign1 dd {
        width: 70%;
        color: #585858;
    }


.cCard {
    width: 380px;
    min-height: 220px;
    background-color: #e1ebeb;
    border-radius: 20px;
    padding: 20px 20px;
}

.email-pil {
    /*width: 300px;*/
    padding: 10px ;
    padding-right:15px; 
    display: inline-block;
    background-color: #b9c8c8;
    border-radius: 40px;
    color: black;
}

.emailPilInner {
    display: flex;
    align-items: center;
}

.Pil {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-color: #c4cfd0;
    overflow: hidden;
}

    .Pil img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/*notifications*/


.notification-modal {
    position: fixed;
    top: 0;
    right: -450px;
    /*right: 0px;*/
    width: 400px;
    height: 95vh;
    background-color: #a8a8a8b1;
    backdrop-filter: blur(25px);
    border: 1px solid #00000019;
    /*box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);*/
    transition: right 0.4s ease-in-out;
    padding: 10px 15px;
    overflow-y: auto;
    border-radius: 14px;
    z-index: 10000;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 20px;
}

    .notification-modal.show {
        right: 0;
    }

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ffffff66;
    padding-bottom: 10px;
}

    .modal-header h2 {
        font-size: 20px;
    }

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #555;
}

    .close-btn:hover {
        color: #000;
    }

.notifications-list {
    list-style: none;
    margin-top: 15px;
    padding: 0;
}

.notificationBox {
    display: flex;
    width: 100%;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
    /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
    transition: background-color 0.3s;
    height: 110px;
}

.newMsg {
    width: 5px;
    height: 100%;
    position: relative;
}

    .newMsg::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #dd0000;
    }

.notificationInner {
    width:100%;
    padding: 15px;
}

.notificationBox:hover {
    background-color: #f0f0f0;
}

.msg-time {
    font-size: 14px;
    color: #999;
    font-weight: 300;
}

.msg-text {
    font-weight: 400;
    font-size: 15px;
    color: #333;
    margin: 0;
}

.msg-name {
    font-weight: 900;
    font-size: 16px;
    color: #676767;
}

.notification-modal::-webkit-scrollbar {
    width: 2px;
}

.notification-modal::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
}

.notification-modal::-webkit-scrollbar-thumb {
    background: #1515151a;
    border-radius: 1px;
}

    .notification-modal::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
