 /* our location modal css */
    #location-services .modal-dialog {
        transform: translate(-50%, -50%);
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        margin: 0;
    }
    #location-services .modal-body {
        background-color: #fff;
        padding: 0 !important;
        border-radius: 10px;
    }
    #location-services .modal-content {
        border-radius: 10px;
    }
    #location-services-container > h3 {
        margin: 10px auto;
        width: 87%;
    }
    #location-services-container .close-location-modal {
        top:16px;
        background: #000;
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff !important;
        border-radius: 25px;
        z-index: 999;
        right: 30px;
        cursor: pointer;
        position: absolute;
    }
    #location-services-container .close-location-modal:hover {
        opacity: 0.6;
    }
    .location-services-content-container {
        margin: 0 auto;
        width: 87%;
        padding: 10px 0;
        overflow: auto;
       max-height: 425px;
    }
    .location-message {
        background: #eef9be;
        padding: 5px;
        border-radius: 10px;
        border-left: 5px solid #86b010;
        margin: 0 0 30px 0;
    }
    .location-message p {
        margin: 0;
    }
    .location-message p a {
        color: #86b010;
    }
    .location-iframe-container {
        width: 97%;
        height: auto;
        max-height: 265px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0px 0px 5px 1px #ccc;
        padding: 0px;
        margin: 0 auto;
    }
    .location-iframe-container iframe {
        width: 100%;
        height: 265px;
    }
    .location-button {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .location-button a {
        background: #86b010;
        width: 100%;
        display: inline-flex;
        max-width: 170px;
        justify-content: center;
        align-items: center;
        padding: 10px;
        color: #fff;
        border-radius: 10px;
        margin: 15px;
    }
    .location-button a:hover
    {
        background:#000;
    }
    /* comman footer logo and content css */
    .comman-logo-heading {
        display: flex;
        gap: 15px;
        align-items: center;
        padding: 15px 0;
        margin: 0 auto;
        width: 90%;
    }
    .comman-logo-heading img {
        max-width: 125px;
    }
   .comman-logo-text-container {
        display: flex;
        margin: 0 auto;
        width: 87%;
        justify-content: space-between;
        align-items: center;
        padding: 0 0 4%;
    }
    .comman-logo-text-container img {
        max-width: 120px;
    }


/* our offer modal css */
#offer-card .modal-dialog {
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    margin: 0;
    max-width: 1000px;
}
#offer-card .modal-body {
    background-color: #fff;
    padding: 0 !important;
    border-radius: 10px;
}
#offer-card .modal-content {
    border-radius: 10px;
}
#offer-services-container > h3 {
    margin: 10px auto;
    width:95%;
}
#offer-services-container .close-offers-modal {
    top: 9px;
    background: #000;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    border-radius: 25px;
    z-index: 999;
    right: 35px;
    cursor: pointer;
    position: absolute;
}
#offer-services-container .close-offers-modal:hover {
    opacity: 0.6;
}
.offer-services-content-container {
    margin: 0 auto;
    width:95%;
    padding: 10px 0;
    overflow: auto;
   max-height: 425px;
}
.offer-message {
    background: #eef9be;
    padding: 5px;
    border-radius: 10px;
    border-left: 5px solid #86b010;
    margin: 0 0 30px 0;
}
.offer-message p {
    margin: 0;
}
.offer-message p a {
    color: #86b010;
}

.offer-main-container
{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    gap: 25px;
}
.offer-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    /* min-height: 275px; */
    /* background: #fff; */
    /* border: 2px solid #ccc; */
    /* box-shadow: 0px 3px 6px 0px #ccc; */
    flex-direction: column;
    /* border-radius: 10px; */
}
.offer-box-content
{
    display: flex;
    width: 100%;
    height:auto;
    flex-direction:column;
    position: relative;
    z-index: 99;
}
.offer-box p{
    margin: 0;
}
.offer-box h2 {
    display: flex;
    width: 100%;
    font-size: 25px;
    font-weight: bold;
    color: #86b010;
    margin: 0 0 15px 0;
}
.offer-box p
{
    display: flex;
    width: 100%;
    font-size: 16px;
}
.offer-box
{
    display: flex;
    width: 100%;
    height:auto;  
    position: relative;
}
.offer-box p.offter-red-text
{
    display: flex;
    width: 100%;
    color:red;
    font-size: 16px;
}
.offer-green
{
    background:#86b010;
}
.offer-green h2, .offer-green p 
{
    color:#fff;
}
.offer-box p.offter-yellow-text
{
    color:yellow;
}

/* two offer container */
.offer-two-box .offer-box-content, .offer-two-box .offer-box-bottom-content
{
    position: relative;
    z-index: 999;
}
.offer-two-box .offer-green {
    position:relative;
}
.offer-two-box .offer-box {
    min-height: 200px;
}
.offer-green::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #86b01085;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* single offter container */
.offer-single-box  .offer-box {
    margin: 0 auto;
    width: 100%;
    max-width: 430px;
    align-items: center;
}
.offer-single-box .offer-box .offer-box-content h2, .offer-single-box .offer-box .offer-box-content p {
    text-align: center;
    width: 100%;
    display: block;
}

/* comman footer logo and content css */
.comman-logo-text-container {
    display: flex;
    margin: 0 auto;
    width:95%;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 4%;
}
.comman-logo-text-container img {
    max-width: 120px;
}

#view-offers-modal, .our-location-modal{
    cursor: pointer;
}

.offer-box-bottom-content {
    position: relative;
    z-index: 99;
}

.offer-box img {
    border-radius: 10px;
    min-height: 250px;
    max-height: 350px;
    width: 100%;
    object-fit: cover;
}

/* our servcies rate css */
#our-service-rate .modal-dialog {
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    margin: 0;
}
#our-service-rate .modal-body {
    background-color: #fff;
    padding: 0 !important;
    border-radius: 10px;
}
#our-service-rate .modal-content {
    border-radius: 10px;
}
#our-services-container > h3 {
    margin: 10px auto;
    width: 87%;
}
#our-services-container .close-service-modal {
    top: 9px;
    background: #000;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    border-radius: 25px;
    z-index: 999;
    right: 30px;
    cursor: pointer;
    position: absolute;
}
#our-services-container .close-service-modal:hover {
    opacity: 0.6;
}
.our-services-container {
    margin: 0 auto;
    width: 87%;
    padding: 10px 0;
    overflow: auto;
    max-height: 380px;
}
.our-services-message {
    background: #eef9be;
    padding: 5px;
    border-radius: 10px;
    border-left: 5px solid #86b010;
    margin: 0 0 30px 0;
}
.our-services-message p {
    margin: 0;
}
.our-services-message p a {
    color: #86b010;
}
.our-services-table {
    border: 1px solid #ccc;
    border-radius: 10px;
}
.our-services-heading {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 15px;
    background: #f1f1f1;
    border-radius: 10px 10px 0 0;
}
.our-services-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 15px;
    border-bottom: 1px solid #ccc;
}
.last-our-servcies{border:none;}
.our-services-row p{
    margin:0px;
}

#service-rates-modal{
    cursor: pointer;
}

/* Gallery Module CSS */

#gallery-modal .modal-dialog
{
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    margin: 0;
    max-width: 1000px;
}
#gallery-modal .modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    outline: 0;
    border-radius: 15px;
}
#gallery-modal .modal-body {
    background-color: #fff;
    padding: 0 !important;
    border-radius: 20px;
}
#gallery-modal > h3
{
    width:93%;
}
#gallery-modal-inner .close-callback-modal
{
    top: 9px;
    background: #000;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    border-radius: 25px;
    z-index: 999;
    right: 30px;
    cursor: pointer;
    position: absolute;
}
#gallery-modal-inner > h3 {
    margin: 10px auto;
    width: 95%;
}
#gallery-modal-inner .close-callback-modal {
    top: 9px;
    background: #000;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    border-radius: 25px;
    z-index: 999;
    right: 30px;
    cursor: pointer;
    position: absolute;
}

#gallery-modal  .modal-dropdown-cont {
    position: absolute;
    right: 80px;
    top: 4px;
    z-index: 999;
    cursor: pointer;
}
#gallery-modal  .modal-dropdown-cont span.more-options {
    color: #000;
    font-size: 30px;
}
#gallery-modal  .modal-dropdown-cont ul.modal-dropdown-list {
    display: none;
}
#gallery-modal  .modal-dropdown-cont:hover ul.modal-dropdown-list {
    display: block;
    position: absolute;
    right: 0;
    background: #000;
    width: 100%;
    min-width: 230px;
    padding: 10px !important;
    border-radius: 10px;
    top: 36px;
}
.modal-dropdown-cont:hover ul.modal-dropdown-list li {
    padding: 5px;
    font-size: 18px;
    color: #fff;
}
#gallery-modal-inner .nav-tabs li.nav-item {
    display: block;
    width: auto;
    margin: 0 10px;
}
.gallery-container {
    padding: 1%;
}
.slick-track
{
    width: auto;
}
.gallery-image {
    text-align: center;
}
.gallery-image img, .menu-slide-item img, .service-slide-item img
{
    height: 360px;
    object-fit: cover;
    margin: 0 auto;
}
#gallery-modal-inner .image-category-span {
    border: 2px solid grey;
    border-radius: 20px 0px 20px 0px;
    background-color: lightgrey;
    padding: 7px 10px 8px 10px;
    font-size: 20px;
    cursor: pointer;
    margin:0px;
    color:#000 !important;
}
#gallery-modal-inner .image-category-span.active {
    background-color: black;
    color: white !important;
}
.gallery-container .nav-tabs {
    border: none;
}
.gallery-slider button.slick-arrow {
    /* background: #000;
    padding: 20px;
    border-radius: 100px;
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    z-index: 999; */
    /* background: #000;
    padding: 20px;
    border-radius: 100px;
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    z-index: 999;
    width: 50px;
    height: 50px;
    overflow: hidden;
    text-indent: 1500px;
    font-size: 28px;
    color: #fff !important; */
}

.slick-prev, .slick-next {
    top: 50%;
    position: absolute;
    display: none !important;
} 

button.slick-next.slick-arrow {
    right: 0;
} 

/* .gallery-slider button.slick-prev::before {
    background: none;
    font-size: 30px;
    top: -2px;
    position: relative;
    content: '←';
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -28px;
}

.gallery-slider button.slick-next::before {
    content: '→';
    background: none;
    font-size: 30px;
    top: -2px;
    position: relative;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -15px;
} */

.gallery-slider button.slick-arrow, .menu-slider button.slick-arrow, .service-slider button.slick-arrow {
    background: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 999;
    padding: 0;
    overflow: visible;
    font-size: 0;
    text-indent: 0;
    border: none;
    cursor: pointer;
}

.gallery-slider button.slick-prev::before,
.gallery-slider button.slick-next::before, 
.menu-slider button.slick-prev::before, 
.menu-slider button.slick-next::before,
.service-slider button.slick-prev::before, 
.service-slider button.slick-next::before  {
    content: '';
    display: block;
    width: 24px;   /* adjust arrow image size */
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
}

.gallery-slider button.slick-prev::before, .menu-slider button.slick-prev::before, .service-slider button.slick-prev::before {
    background-image: url('/assets/images/galleryleft-arrow.png');
}

.gallery-slider button.slick-next::before, .menu-slider button.slick-next::before, .service-slider button.slick-next::before {
    background-image: url('/assets/images/galleryright-arrow.png');
}

/* .gallery-slider button.slick-arrow::before {
    background: none;
    font-size: 23px;
    top: 0px;
    position: relative;
}  */

/* .gallery-slider button.slick-prev::before, .gallery-slider button.slick-next::before{
    display: none !important;
} */

span.vendor-title-logo {
    font-size: 12px;
    margin-top: 0px;
    display: block;
    color: #bcfd4c;
    font-weight: bold;
}

#gallery-module-modal{
    cursor: pointer;
}

.gallery-slider {
    visibility: hidden;
}


    
    .section {
      padding: 20px;
      border-bottom: 1px solid #eee;
    }

    .section-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      color: #888;
      margin-bottom: 10px;
    }

    .pill {
      border: 1px solid #f0d4b6;
      padding: 8px 14px;
      border-radius: 25px;
      font-size: 14px;
      margin-right: 10px;
      background: #fff8f0;
      color: #cc6b1a;
      display: inline-block;
    }

    .icon-box {
      width: 45px;
      height: 45px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
    }

    .loc {
      background: #86b010;
      color: #fff;
    }

    .time {
      background: #86b010;
      color: #fff;
    }

    .menu-link {
      background: #000000;
      padding: 15px 20px;
      border-radius: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
      text-decoration: none;
      color: #fff;
      font-weight: 500;
    }

    .menu-link.special {
      background: #f7f2e8;
    }

    .hours-list {
      display: none;
      margin-top: 10px;
    }

    .hours-list div {
      display: flex;
      justify-content: space-between;
      margin-bottom: 6px;
      font-size: 14px;
      color: #666;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);

        display: flex;
        align-items: center;
        justify-content: center;

        overflow-y: auto;   /* enables scroll */
        padding: 20px;      /* space for mobile */
    }


    /* modal card */

    .menu-card {
        width: 420px;
        background: #fff;
        border-radius: 40px;
        overflow: hidden;
        max-height: 90vh;   /* prevents overflow */
        display: flex;
        flex-direction: column;
    }

    /* hero image */

    .menu-header {
      position: relative;
      height: 200px;
      background: url('https://images.unsplash.com/photo-1550547660-d9450f859349') center/cover no-repeat;
      display: flex;
      align-items: center;
      padding: 25px;
      color: #fff;
      font-size: 24px;
      font-weight: 600;
    }

    .menu-header::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.35);
    }

    .menu-title {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .close-btn {
      position: absolute;
      right: 20px;
      top: 20px;
      z-index: 3;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 20px;
      cursor: pointer;
    }

    /* body */

    .menu-body {
      padding: 30px;
      overflow-y: auto;
    }

    /* category title */

    .category {
      font-size: 18px;
      letter-spacing: 2px;
      color: #86b010;
      font-weight: 700;
      margin-bottom: 10px;
      margin-top: 10px;
    }

    .menu-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      border-bottom: 1px solid #eee;
      font-size: 18px;
    }

    .price {
      font-weight: 600;
      color: #222;
    }

    .unit {
      font-size: 12px;
      color: #9aa3b2;
      margin-left: 4px;
    }

    /* bottom */

    .menu-footer {
      background: #f5f6f8;
      padding: 25px;
    }

    .close-menu {
      width: 100%;
      background: #86b010;
      border: none;
      padding: 16px;
      color: #fff;
      border-radius: 16px;
      font-weight: 600;
      letter-spacing: 1px;
    }

    /* food card css */
    .food-card-box .ribbon {
        top: 8px;
        right: 10px;
    }
    .food-card-logo img {
        height: 80px;
    }
    .food-category-box .section-title {
        font-size: 20px;
        color: #000;
    }
    .section.food-category-box {
        padding: 0px;
        margin: 0 0 15px 0;
        border: none;
    }
    .food-button-cont {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        gap: 10px;
        position: relative;
    }
    .food-button-cont span.pill {
        background: #f9f9f9;
        border: none;
        color: #000;
        border: 1px solid #f9f9f9;
        width: 44%;
        display: flex;
        gap: 15px;
        align-items: center;
        line-height: 17px;
        font-size: 12px;
        text-align: center;
        justify-content: center;
    }

    .food-card-box ul .section {
        padding: 7px;
        margin: 0 0 10px 0;
        color: #000;
    }
    .food-card-box a.text-decoration-none.small.text-primary {
        color: #000 !important;
    }
    .food-card-box .icon-box .loc, .food-card-box .icon-box .time {
        background: #86b010;
        color: #fff;
    }
    .food-card-box .section-title {
        color: #000;
        font-size: .875em;
        font-weight: normal;
    }
    .menu-link:hover {
        background:#86b010;
        color:#fff;
    }
    .food-card-box .menu-link {
        background: #000;
        color: #fff;
        margin: 0;
        width: 170px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .food-card-box .menu-link:hover 
    {
        background:#86b010;
        color:#fff;
    }
    #gallery-module-modal ~ .section {
        padding: 0;
    }
    .food-card-box .ribbon {
        top: 8px !important;
        right: 10px !important;
        background: #fff !important;
        font-size: 13px;
    }
    .food-card-box .ribbon i.fa-solid.fa-circle {
        color: #86b010;
        font-size: 10px;
        margin-right: 5px;
    }
    .food-card-button-cont {
        display: flex;
        gap: 15px;
        justify-content: space-between;
        padding: 15px 0;
    }
    .food-card-box .tel-info {
        max-width: 100% !important;
    }

    .shop-closed {
        position: relative;
        padding: 10px;
        border-radius: 6px;
        text-decoration: none !important;
        background: #ff4d4d;
        color: #fff;
        font-size: 12px;
        padding: 2px 6px;
        border-radius: 4px;
    }


    /* updated food card css */
    .food-card-box .card-header {
        /* padding: 15px !important; */
        text-align: left !important;
    }
    a.food-card-logo {
        display: inline-flex;
        background: #fff;
        padding: 15px;
        border-radius: 15px;
        width: 90px;
        justify-content: center;
        align-items: center;
    }
    .food-card-logo img {
        height: 50px;
        margin: 0 !important;
        width: 100%;
        object-fit: contain;
    }
    .food-button-cont span.pill {                   
        width:auto;                    
        line-height: 12px;
        font-size: 12px;
    }
    .food-card-box .menu-link {                  
        width: 170px;
        font-size: 14px;
        justify-content: start;
        flex-direction: row;
    }
    .food-card-box .card-header ul {
        text-align: left;
        margin: 20px 0 0 0 !important;
        display: block;
    }
    h2.food-card-title {
        color: #fff;
        display: inline-flex;
        width: 100%;
        margin: 13px 0 0;
        font-size: 30px;
        text-transform: uppercase;
        font-weight: bold;
        /* height: 65px; */
    }
    h2.web-cat-title{
        color: #fff;
        display: inline-flex;
        margin: 5px 0px;
        width: 100%;
        font-size: 30px;
        text-transform: uppercase;
        font-weight: bold;
    }
    .section.food-popular-section {
        padding: 0;
    }
    .menu-header.food-modal-header {
        background: #000;
        padding: 0;
        height: auto;
    }
    .food-modal-logo {
        background: #fff;
    }
    .food-modal-inner {
        display: flex;
        width: 100%;
    }
    .food-modal-inner .menu-title, .food-modal-inner .food-modal-logo {
        width: 50%;
        height: 150px;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    .food-header-text {
        text-align: center;
        line-height: 25px;
    }
    .food-modal-inner {
        display: flex;
        width: 100%;
        border-bottom: 5px solid #86b010;
    }
    .food-header-text span {
        color: #86b010;
        display: block;
    }
    .food-modal-header::after{display:none;}
    .food-logo {
        width: 95px;
        height: 95px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 2px 8px 4px #ccc;
        border-radius: 15px;
        padding: 10px;
    }
    #menu-card-modal .modal-dialog {
        max-width: 550px;
    }
    #menu-card-modal .modal-dialog .modal-content.menu-card {
        width: 100%;
    }
    
    .food-card-bottom-buttons {
        display: flex;
        gap: 15px;
        justify-content: space-between;
        padding: 15px 0;
    }                
    .food-card-bottom-buttons a {
        background: #000;
        color: #fff;
        margin: 0;
        width: 180px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        padding: 15px 5px;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        text-transform: capitalize !important;
    }
    .food-card-bottom-buttons a:hover
    {
        background:#86b010;
    }
    a.green-btn {
        background: #86b010;
    }
    a.green-btn:hover
    {
        background:#000;
    }
    .food-card-box .menu-link.food-gallery {
        background: #f1f1f1;
        color: #000;
    }
    .menu-body.menu-card-content {
        
        background-size: 60%;
        background-repeat: no-repeat;
        background-position: center;
    }


    .sponsored-card {
        -webkit-box-shadow: 0 0 5px 0 rgba(4, 4, 4, 0.20);
        -moz-box-shadow: 0 0 5px 0 rgba(4,4,4,0.20);
        box-shadow: 0 0 5px 0 rgba(4, 4, 4, 0.20);
        border-radius: 10px;
    }
    .sponsored-card .card-header {
        background-color: #1c1c1c;
        border-radius: 10px 10px 0 0;
        padding: 30px;
        position: relative;
        z-index: 1;
    }
    .card-header ul {
        margin: 0;
        padding: 0;
        list-style: none;
        text-align: center;
    }
    .card-header ul li {
        display: inline-block;
        position: relative;
        z-index: 1;
    }
    .card-header ul li:after {
        content: '|';
        color: #9ca3af;
        margin: 0 5px;
    }
    .card-header ul li:last-child:after {
        display: none;
    }
    .card-header ul li a {
        text-decoration: none;
        color: #9ca3af;
        transition: all ease .2s;
    }
    .card-header ul li a:hover {
        color: #fff;
    }
    .card-header .ribbon {
        position: absolute;
        z-index: 2;
        top: -15px;
        right: 0;
        background-color: #bcfd4c;
        font-weight: 600;
        padding: 5px 20px;
        border-radius: 15px;
    }
    .sponsored-card .card-body {
        padding: 20px 30px;
    }
    .card-body p {
        margin: 0 0 15px;
    }
    .card-body ul {
        margin: 0;
        padding: 0;
    }
    .card-body ul li {
        list-style: none;
    }
    .sponsored-card .card-header {
        text-align: center;
    }
    .sponsored-card .card-header img {
        margin: 0 0 0px;
    }
    .sponsored-card .card-header {
        padding: 40px 30px 20px;
    }
    .sponsored-card .card-body ul li {
        margin: 0 0 10px;
    }
    .sponsored-card .card-body ul li a {
        color: #212529;
    }
    .sponsored-card .card-body ul li a i {
        color: #1c1c1c;
        font-size: 16px;
        margin: 0 8px 0 0;
    }




    section#faq {
            padding: 5% 0;
        }

        .faq .container {
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-between;
        }

        .faq .faq-desc {
            max-width: 531px;
        }

        .faq-desc h2 {
            margin-top: 0px;
            margin-right: 0px;
            margin-bottom: 43px;
            margin-left: 0px;
            font-size: 48px;
            color: #000;
            font-weight: 400;
        }

        .faq-desc h2 span {
            font-weight: 600;
        }

        .faq-desc p {
            margin-top: 0px;
            margin-right: 0px;
            margin-bottom: 43px;
            margin-left: 0px;
            font-size: 16px;
            font-weight: 500;
            color: #000;
            line-height: 180%;
        }

        .faq-cta ul {
            margin-top: 0px;
            margin-right: 0px;
            margin-bottom: 0px;
            margin-left: 0px;
            padding-top: 0px;
            padding-right: 0px;
            padding-bottom: 0px;
            padding-left: 0px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .faq-cta ul li {
            margin-top: 0px;
            margin-right: 48px;
            margin-bottom: 0px;
            margin-left: 0px;
        }

        .faq-cta ul li:last-child {
            margin-top: 0px;
            margin-right: 0px;
            margin-bottom: 0px;
            margin-left: 0px;
        }

        .faq-cta ul li:last-child a {
            color: rgb(180, 211, 52);
            font-weight: 600;
        }

        .faq .faq-accordion {
            max-width: 653px;
        }

        .primary-cta {
            display: inline-block;
            padding-top: 17px;
            padding-right: 32px;
            padding-bottom: 17px;
            padding-left: 32px;
            text-decoration-line: none;
            text-decoration-thickness: initial;
            text-decoration-style: initial;
            text-decoration-color: initial;
            background-color: rgb(180, 211, 52);
            border-top-left-radius: 70px;
            border-top-right-radius: 70px;
            border-bottom-right-radius: 70px;
            border-bottom-left-radius: 70px;
            font-size: 16px;
            font-weight: 500;
            color: #fff;
        }

        .primary-cta:hover {
            background: #000;
            color: #fff;
        }

        #accordion h3 {
            font-weight: 600;
            color: #000;
            font-size: 24px;
            margin-top: 0px;
            margin-right: 0px;
            margin-bottom: 19px;
            margin-left: 0px;
            border-top-width: 1px;
            border-top-style: solid;
            border-top-color: #000;
            padding-top: 21px;
            padding-right: 29px;
            padding-bottom: 0px;
            padding-left: 45px;
            position: relative;
            cursor: pointer;
        }

        #accordion h3::before {
            content: "+";
            position: absolute;
            left: 0px;
            top: 8px;
            font-size: 44px;
            font-weight: 400;
            color: #000;
        }

        #accordion h3:has(+ div:not([style*="display: none"]))::before {
            content: "−";
        }

        #accordion div {
            padding-top: 0px;
            padding-right: 24px;
            padding-bottom: 21px;
            padding-left: 24px;
        }

        #accordion p {
            color: #000;
            font-size: 16px;
            font-weight: 500;
            line-height: 180%;
            margin-top: 0px;
            margin-right: 0px;
            margin-bottom: 0px;
            margin-left: 0px;
        }

         .updated-sponsored-card .card-header {
            padding: 15px !important;
        }
        .updated-sponsored-card .card-header .ribbon {
            position: relative !important;
            max-width: 140px;
            float: right;
            margin-top: 15px;
        }
        .updated-sponsored-card .sponsored-card .card-header {
            padding: 15px !important;
        }
       .updated-sponsored-card a.logo {
            width: 70px;
            height: 70px;
            display: block;
            border: 1px solid #86b010;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
        }
        .updated-sponsored-card .card-header ul
        {
            text-align: left;
        }
        .updated-sponsored-card .card-header ul a {
            font-size: 14px;
        }
        .updated-sponsored-card .card-body {
            position: relative;
            padding: 15px;
        }
        .availability-card {
            position: absolute;
            top: -20px;
            background: #eaf5d6;
            z-index: 9;
            right: 15px;
            padding: 8px 16px;
            border-radius: 10px;
            display: flex;
            gap: 15px;
            align-items: center;
            font-size:13px;
        }
        .updated-sponsored-card .card-header {
            padding: 15px 15px 45px !important;
        }
        .updated-sponsored-card .card-body {
            padding: 40px 30px 15px !important;
        }
        .request-cont {
            display: flex;
            width: 100%;
            justify-content: center;
            padding: 25px 0px;
        }
        .request-cont a {
            background: #86b010;
            display: flex;
            padding: 15px;
            width: 100%;
            border-radius: 5px;
            justify-content: center;
            align-items: center;
            gap: 12px;
            color: #fff;
        }
        .request-cont a:hover
        {
            background:#000;
        }
        .listing-buttons {
            display: flex;
            justify-content: space-between;
        }
        .listing-buttons a {
            font-size: 13px;
            padding: 15px;
            border: 1px solid #dddddd;
            color: #000;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            max-width: 155px;
            justify-content: center;
        }
        .listing-buttons a#gallery-module-modal {
            background: #fcfcfc;
        }
        p.list-card-parah {
            margin: 0 0 30px !important;
        }

        #next-availability-card-container .sponsored-card {
            width: 30.333333%;
        }



@media screen and (max-width:767px)
{
    .offer-main-container
    {
        flex-direction: column;
    }
    .offer-box
    {
        min-height: inherit;
    }
    .offer-box .offer-box-content {
        margin: 0 0 20px;
    }
    
    .comman-logo-heading
    {
        gap: 5px;
        align-items: start;
        flex-direction: column;
    }
    .offer-box {
        min-height: 275px;
    }
    
    .offer-two-box .offer-box,
    .offer-single-box .offer-box 
    {
        min-height: inherit;
    }

    .gallery-image img, .menu-slide-item img, .service-slide-item img {
        height: 189px;
        object-fit: cover;
        margin: 0 auto;
    }
    #gallery-modal-inner .nav-tabs li.nav-item {
        width: 43%;
        text-align: center;
        margin: 5px 10px;
    }
    #gallery-modal-inner .image-category-span
    {
        width: 100%;
        font-size: 15px;
    }
    #gallery-modal .modal-content
    {
        width: 100%;
        margin: 0 auto;
        min-height: 100vh;
        border-radius: 0;   
    }  
     #gallery-modal .modal-body
    {
        border-radius: 0px;
    }
    div#gallery-modal-inner {
        height: 88vh;
    }
    .gallery-container {
        padding: 1%;
        min-height: calc(100vh - 170px);
    }
    #gallery-modal .powered-by {
        text-align: center;
        padding: 10px 0;
        margin: 0;
    }
    #gallery-modal .tab-content {
        min-height: 55vh;
    }
    .gallery-image img, .menu-slide-item img, .service-slide-item img {
        height: calc(100vh - 315px);
        object-fit: contain;
        margin: 0 auto;
        width: 90%;
    }

    div#gallery-modal-inner {
        height: 88vh;
        padding: 2rem 0;
    }
    #gallery-modal-inner .close-callback-modal
    {
        top: 42px;
        right:9px;
    }

    .food-card-box .menu-link{font-size:12px;}

    .food-card-bottom-buttons a{font-size:12px;}
    #next-availability-card-container .sponsored-card {
        width: 100%;
    }
}

    