
@charset "UTF-8";

:root {
    --red: #E93C3C;
    --blue: #00749B;
    --dark: #160040;
    --black: #000000;
    --white: #ffffff;
    --green: #1AB759;
    --gray: #D9DBE9;
    --slate: #F7F7FC;
    --purple: #b12fad;
    --orange: #e86121;
    --yellow: #FFB006;
    --indigo: #6610f2;
    --text: #6E7191;
    --focus: #008BBA;
    --alert: #FB4E4E;
    --primary: #6A2683;
    --secondary: #1F1F39;
    --placeholder: #A0A3BD;
    --border-gray: #D9DBE9;
    --border-slate: #EFF0F6;
    --facebook: #3b5998;
    --linkedin: #0e76a8;
    --twitter: #00acee;
    --google: #E60023;
    --instagram: #F77737;
    --whatsapp: #25D366;
    --pinterest: #f0002a;
    --youtube: #FF0000;
}

@media (max-width: 991px) {
    .content-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    
}

.activate {
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.actiavte.active {
    background-color: var(--primary);
    color: var(--white);
}

.px-12 {
    padding-left: 12px;
    padding-right: 12px;
}

.mt-24 {
    margin-top: 24px;
}

.text-inherit {
    text-transform: inherit;
}

*,
*::after,
*::before {
    margin: 0px;
    padding: 0px;
    outline: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    vertical-align: middle;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul,
ol {
    padding: 0px;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary);
    margin-bottom: 0px;
}

p,
ol,
ul,
li,
dl,
dd,
dt,
span,
figure,
aside,
label {
    margin: 0px;
    padding: 0px;
}

a,
span {
    display: inline-block;
}

html,
body {
    color: var(--secondary);
    background: var(--white);
    direction: ltr;
    scroll-behavior: smooth;
    overflow-y: auto;
    overflow-x: hidden;
}

input,
select,
button,
textarea {
    border: none;
    outline: none;
    background-color: transparent;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

.h-0 {
    height: 0px;
}

.isolate {
    isolation: isolate;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

.transition {
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

body {
    font-size: 16px;
    font-weight: 400;
    font-family: "Maven Pro", sans-serif;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text);
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text);
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text);
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text);
}

input::placeholder,
textarea::placeholder {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--text);
}

.form-fieldset {
    padding: 20px;
    border-radius: 16px;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 575px) {
    .form-fieldset {
        padding: 16px;
    }
    .register-banner .col-12 {
        max-width: 100% !important;
    }
    .auth.register-banner .bf-form2 a {
        width: 100%;
        text-align: center;
    }
}
.form-legend {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 16px;
    position: relative;
}

.form-label {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 4px;
    text-transform: capitalize;
    color: var(--secondary);
}

.form-label.required::after {
    content: "*";
    margin-left: 2px;
    font-weight: 700;
    color: var(--primary);
}

.form-select,
.form-control {
    height: 48px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--secondary);
    border-color: var(--border-gray);
}

.form-select:focus,
.form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: var(--primary);
}

.form-check-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-check-group label {
    padding-left: 8px;
    cursor: pointer;
}

.form-checkbox {
    --input-size: 16px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    isolation: isolate;
}

.form-checkbox::before {
    content: "";
    width: var(--input-size);
    height: var(--input-size);
    border-radius: 4px;
    display: inline-block;
    background-color: transparent;
    border: 1px solid var(--placeholder);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.form-checkbox::after {
    content: "✓";
    position: absolute;
    text-align: center;
    font-size: 11px;
    inset: 0;
    color: transparent;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.form-checkbox:checked::before {
    border-color: var(--primary);
    background-color: var(--primary);
}

.form-checkbox:checked::after {
    color: var(--white);
}

.form-radio {
    --input-size: 16px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    isolation: isolate;
}

.form-radio::before {
    content: "";
    width: var(--input-size);
    height: var(--input-size);
    border-radius: 50%;
    display: inline-block;
    background-color: transparent;
    border: 2px solid var(--placeholder);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.form-radio::after {
    content: "";
    position: absolute;
    width: calc(var(--input-size) / 2);
    height: calc(var(--input-size) / 2);
    inset: calc(var(--input-size) / 2 / 2);
    border-radius: 50%;
    background-color: transparent;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.form-radio:checked::before {
    border-color: var(--primary);
}

.form-radio:checked::after {
    background-color: var(--primary);
}

.form-number {
    width: 100%;
    padding: 0px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.form-number input {
    width: 100%;
    height: 48px;
}

.form-number-group {
    position: relative;
}

.form-number-group button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    height: 48px;
    gap: 8px;
}

.form-number-group button img {
    width: 16px;
}

.form-number-group button span {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
}

.form-number-group button i {
    font-size: 12px;
    color: var(--secondary);
}

.form-number-group ul {
    position: absolute;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    max-height: 200px;
    overflow-y: auto;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    top: 48px;
    left: -12px;
    z-index: 3;
    padding: 6px;
    border-radius: 8px;
    background-color: var(--white);
    border: 1px solid var(--border-slate);
    -webkit-box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.1);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.form-number-group ul.active {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.form-number-group ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    padding: 4px 25px 4px 7px;
    border-radius: 6px;
    gap: 8px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.form-number-group ul li:hover {
    background-color: var(--slate);
}

.form-number-group ul li img {
    width: 14px;
}

.form-number-group ul li span {
    font-size: 12px;
    font-weight: 500;
    color: var(--secondary);
}

.form-alert {
    font-size: 12px;
    font-weight: 400;
}

.form-alert.red {
    color:white;
}

.form-alert.green {
    color: var(--green);
}

.form-btn,
.form-btn-inline {
    width: 100%;
    height: 48px;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    border-radius: 30px;
    text-transform: capitalize;
    cursor: pointer;
    color: var(--white);
    background-color: var(--primary);
}

.form-btn-inline {
    width: auto;
    height: auto;
    padding: 12px 32px;
}

textarea.form-control {
    padding: 15px 15px;
    height: 100px;
    resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.form-uploader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    background-color: var(--white);
    position: relative;
    border-radius: 8px;
    padding: 16px 24px 16px 16px;
    gap: 24px;
}

@media (max-width: 575px) {
    .form-uploader {
        gap: 16px;
        padding: 16px;
    }
}

.form-uploader::before {
    content: "";
    position: absolute;
    inset: 50%;
    width: 100.2%;
    height: 102%;
    z-index: -1;
    border-radius: 8px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 4px dashed var(--border-gray);
}

@media (max-width: 1199px) {
    .form-uploader::before {
        width: 100.5%;
    }
}

@media (max-width: 575px) {
    .form-uploader::before {
        width: 100.8%;
        height: 103%;
    }
}

.form-uploader img {
    width: 68px;
    height: 68px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 575px) {
    .form-uploader img {
        width: 40px;
        height: 40px;
    }
}

.form-uploader span {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 575px) {
    .form-uploader span {
        font-size: 12px;
    }
}
@media(min-width:575px){
  /*   #the-nuu-advantage .bf-form3 {*/
  /*  margin-left: 60px;*/
  /*}*/
#review-style .big-p {
    min-height: 186px;
}
}
.form-uploader label {
    padding: 8px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    color: var(--primary);
    border: 1px solid var(--primary);
}

@media (max-width: 575px) {
    .form-uploader label {
        padding: 5px 15px;
        font-size: 12px;
    }
}

.badge-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: capitalize;
}

.badge-text.yellow {
    color: #E89806;
    background-color: #FFF4DA;
}

.badge-text.green {
    color: #1AB759;
    background-color: #E2FFEE;
}

.badge-text.blue {
    color: #008BBA;
    background-color: #E2F8FF;
}

.badge-text.red {
    color: #E93C3C;
    background-color: #FFECEC;
}

.table-responsive {
    border-radius: 12px;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

.table {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 0px;
    background-color: var(--white);
}

.table> :not(caption)>*>* {
    padding: 16px;
    font-size: 12px;
    vertical-align: middle;
    white-space: nowrap;
    color: var(--secondary);
    border-color: var(--border-slate);
}

.table tbody tr> :first-child {
    font-weight: 600;
}

.table tbody tr:last-child>* {
    border: none;
}

.table-primary tr th {
    border: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: #E3DAED;
    color: var(--primary);
}

.table-primary tr th:first-child {
    border-top-left-radius: 12px;
}

.table-primary tr th:last-child {
    border-top-right-radius: 12px;
}

.table-action {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 12px;
}

.table-action button {
    --action-size: 30px;
    width: var(--action-size);
    height: var(--action-size);
    line-height: var(--action-size);
    text-align: center;
    color: var(--white);
    border-radius: 8px;
    font-size: 12px;
}

.table-action button.fa-eye {
    background-color: var(--focus);
    -webkit-box-shadow: 0px 6px 10px rgba(0, 139, 186, 0.24);
    box-shadow: 0px 6px 10px rgba(0, 139, 186, 0.24);
}

.table-action button.fa-circle-exclamation {
    background-color: var(--alert);
    -webkit-box-shadow: 0px 6px 10px rgba(251, 78, 78, 0.24);
    box-shadow: 0px 6px 10px rgba(251, 78, 78, 0.24);
}

@media (max-width: 767px) {
    #sign-up-form .sign-up-div {
    width: 100% !important;
    }
    .order-blk .orderSwiper1 .order-card .rest-media-partner-logo img {
    height: unset !important;
    }
    table thead {
        display: none;
    }
    .rest-swiper-blk .mb-4 {
    margin-bottom: 0px !important;
}
.item-wrapper-list .rest-menu-group .swiper-wrapper a {
    padding: 5px 10px !important;
}
    #section2{
    text-align: right !important;
    right: 8px !important;
    justify-content: right !important;
}
    .order-blk.order-blkcustom .order-card img {
        border-radius: 15px;
        height: 170px !important;
}
.order-blk .order-card img {
    min-height: 85px !important;
}

}

@media (max-width: 767px) {
    table tbody tr {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    table tbody tr td {
        grid-column: 1/span 6;
        padding: 5px 16px !important;
        align-self: center;
        border: none;
    }

    table tbody tr td::before {
        content: attr(data-title) " : ";
        display: inline-block;
        min-width: 55px;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.3px;
        text-transform: uppercase;
    }

    table tbody tr td:first-child {
        padding-top: 20px !important;
    }

    table tbody tr td:last-child {
        padding-bottom: 20px !important;
        border-bottom: 1px solid var(--border-slate);
    }
}

.fb-btn {
    width: 90%;
    margin: 0 auto 20px;
    padding: 10px 0px;
    border-radius: 24px;
    letter-spacing: 0.4px;
    font-size: 14px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: capitalize;
    text-align: center;
    cursor: pointer;
    line-height: 22px;
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
    color: var(--white);
    background-color: var(--primary);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.fb-btn span span {
    font-family: sans-serif;
}

.fb-btn:hover {
    color: #ffffff;
    background-color: rgba(238, 29, 72, 0.9);
    -webkit-box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.12);
}

.fb-btn:focus {
    -webkit-box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.12);
}

.cart-switch-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    color: var(--primary);
    background-color: #E3DAED;
}

.cart-switch {
    position: relative;
    cursor: pointer;
}

.cart-switch-input {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    opacity: 0;
    cursor: pointer;
    position: absolute;
}

.cart-switch-input:checked+label {
    color: var(--white);
    background-color: var(--primary);
}

.cart-switch-label {
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.section-gap-90 {
    margin-bottom: 90px;
}

@media (max-width: 767px) {
    .section-gap-90 {
        margin-bottom: 50px;
    }
}

.section-gap-66 {
    margin-bottom: 66px;
}

@media (max-width: 767px) {
    .section-gap-66 {
        margin-bottom: 16px;
    }
}

.section-subtitle {
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 24px;
    text-align: center;
    display: block;
    color: var(--secondary);
}

@media (max-width: 1399px) {
    .section-subtitle {
        font-size: 22px;
        margin-bottom: 12px;
    }

}

@media (max-width: 767px) {
    .section-subtitle {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 16px;
    }
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 59px;
    text-align: center;
    margin-bottom: 58px;
}
@media (max-width: 1399px) {
    .section-title {
        font-size: 45px;
        line-height: 65px;
        margin-bottom: 45px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 40px;
    }
}

.section-title.borderd::after {
    content: "";
    width: 160px;
    height: 5px;
    display: block;
    border-radius: 5px;
    margin: 24px auto 0px;
    background-color: var(--primary);
}

@media (max-width: 767px) {
    .section-title.borderd::after {
        width: 80px;
        height: 4px;
        margin-top: 14px;
    }
}

.cart-counter {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid var(--border-slate);
    border-radius: 6px;
    height: 24px;
    width: 80px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.cart-counter input {
    width: 30px;
    height: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    border-left: 1px solid var(--border-slate);
    border-right: 1px solid var(--border-slate);
}

.cart-counter button {
    width: 100%;
    height: 100%;
    font-size: 10px;
    cursor: pointer;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.cart-counter button:hover {
    color: var(--primary);
}

.thin-scroll {
    overflow-y: auto;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.thin-scroll::-webkit-scrollbar {
    width: 7px;
    background-color: transparent;
}

.thin-scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: rgba(110, 113, 145, 0.7);
    border: 2px solid var(--white);
}

.pagination-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    overflow: hidden;
}

.pagination-menu {
    --paginate-size: 35px;
    text-align: center;
    width: var(--paginate-size);
    height: var(--paginate-size);
    line-height: var(--paginate-size);
    border-right: 1px solid var(--border-gray);
    color: var(--text);
    font-size: 12px;
    font-weight: 600;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

@media (max-width: 575px) {
    .pagination-menu {
        --paginate-size: 30px;
    }
}

.pagination-menu:hover {
    color: var(--primary);
    background-color: rgba(238, 29, 72, 0.1);
}

.pagination-menu.active {
    color: var(--primary);
    background-color: rgba(238, 29, 72, 0.1);
}

.pagination-menu:last-child {
    border-right: none;
}

.pagination-menu.fa-solid {
    font-size: 12px;
    font-weight: 900;
}

.category-card {
    width: 100%;
    /*border-radius: 12px;*/
    margin-bottom: 0px;
    position: relative;
    overflow: hidden;
    display: block;
}

.category-card:hover img {
    -webkit-transform: scale(1.05) rotate(3deg);
    transform: scale(1.05) rotate(3deg);
}

.category-card img {
    width: 100%;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.category-card h4 {
    position: absolute;
    text-transform: capitalize;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 12px;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    color: var(--white);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background: linear-gradient(92.22deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

@media (max-width: 575px) {
    .category-card h4 {
        font-size: 18px;
        padding: 8px 12px;
    }
}

.restaurant-card {
    width: 100%;
    display: block;
    border-radius: 12px;
    margin-bottom: 24px;
    transition: all linear 0.4s;
    -webkit-transition: all linear 0.s;
    -moz-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
}

.restaurant-card:hover {
    -webkit-box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.08);
}

.restaurant-card-info {
    margin: 0 2px;
}

.restaurant-card:hover img {
    -webkit-transform: scale(1.2) rotate(4deg);
    transform: scale(1.2) rotate(4deg);
    transition: all linear 0.4s;
    -webkit-transition: all linear 0.s;
    -moz-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
}

.restaurant-card .figure {
    display: block;
    overflow: hidden;
    border-radius: 12px 12px 0px 0px;
}

.restaurant-card img {
    width: 100%;
    border-radius: 12px 12px 0px 0px;
    transition: all linear 0.4s;
    -webkit-transition: all linear 0.s;
    -moz-transition: all linear 0.4s;
    -ms-transition: all linear 0.4s;
    -o-transition: all linear 0.4s;
}

.restaurant-card .content {
    padding: 16px 12px 12px;
    border-radius: 0px 0px 12px 12px;
    border: 1px solid var(--border-gray);
    border-top: none;
    position: relative;
}

.restaurant-card h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 12px;
    color: var(--dark);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.restaurant-card .ratings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin-bottom: 12px;
    gap: 6px;
}

.restaurant-card .ratings svg {
    fill: var(--gray);
    stroke: var(--gray);
}

.restaurant-card .ratings .active {
    fill: var(--yellow);
    stroke: var(--yellow);
}

.restaurant-card .ratings span {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    margin-left: 3px;
    color: var(--secondary);
}

.restaurant-card .location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin-bottom: 12px;
    gap: 10px;
}

.restaurant-card .location svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.restaurant-card .location span {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: var(--secondary);
}

.restaurant-card p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
}

.restaurant-card p.on {
    color: var(--green);
}

.restaurant-card p.off {
    color:#000000;
}
.restaurant-card p{
    position:absolute;
    bottom:5px;
}
.product-card-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-rows: auto;
    gap: 24px;
}

@media (max-width: 1199px) {
    .product-card-group {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }
}

.product-card {
    border-radius: 8px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    /* -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; */
    overflow: hidden;
    border: 1px solid var(--border-slate);
}

.product-card .product-card-media {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    /*min-width: 210px;*/
    /*max-width: 210px;*/
    height: 100%;
    position: relative;
    z-index: 5;
}
.product-card.pdt-equal-grid .product-card-media {
    min-width: 100%;
    max-width: 100%;
}
.product-card.pdt-equal-grid .product-card-media img {
    min-width: fit-content;
    min-height: 300px;
    max-height: 300px;
}
.pdt-equal-grid.col-grid-blk .product-card-media {
    min-height: 230px;
    max-height: 230px;
}
.pdt-equal-grid.col-grid-blk .product-card-media img {
    min-height: 230px;
    max-height: 230px;
}

.product-card .product-card-media img {
    max-width:100%;
    width: 100%;
    min-width: 210px;
    /*min-height: 175px;*/
    max-height: 275px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.product-card-content {
    width: 100%;
    height: auto;
    padding: 16px;
    gap: 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    /* -webkit-box-pack: justify;
    -ms-flex-pack: justify; */
    /* justify-content: space-between; */
    overflow: hidden;
}
/* .product-card .product-card-content .card-flex-start {
    min-width: 257px;
} */
.product-card.pdt-equal-grid .product-card-content .card-flex-start {
    min-width: auto;
}

.product-card .product-card-content .card-flex-start .product-card-add {
    box-shadow: none;
    background-color: #E6DFEF;
    color: #6A2683;
    font-weight: 700;
    border-radius: 20px;
    text-align: center;
    /* position: relative; */
}
.product-card .product-card-content .card-flex-start .product-card-add:hover {
    background-color: #6A2683;
    color: #ffffff;
}

.product-card .product-card-content .card-flex-start .product-card-add .plus-icon-position {
    font-size: 18px;
    margin-top: -3px;
    /* position: relative; */
    /* top: -2px; */
    /* transform: translateY(-50%); */
    /* left:-20px; */
}
.product-card .product-card-content .card-flex-start .flav-list-type {
    border-top: 1px solid #666666;
    border-bottom: 1px solid #666666;
    padding: 10px 0px;
    margin: 10px 0px;
}
.product-card .product-card-content .card-flex-start .flav-list-type li {
    display: flex;
    column-gap: 10px;
    align-items: center;
    row-gap: 0px;
}
.product-card .product-card-content .card-flex-start .flav-list-type li span {
    font-size: 12px;
    font-weight: 600;
    display: flex;
    min-width: 86px;
    align-items: center;
}
.product-card.pdt-equal-grid .product-card-content .card-flex-start .flav-list-type li {
    flex-wrap: wrap;
}
.product-card .product-card-content .card-flex-start .flav-list-type li:not(:last-child) {
    margin-bottom: 2px;
}
.product-card.pdt-equal-grid .product-card-content .card-flex-start .flav-list-type li span {
    min-width: auto;
}

.product-card .product-card-content .card-flex-start .flav-list-type li span i {
    font-size: 8px;
}
.product-card .product-card-content .card-flex-start .flav-list-type li span.span-veg {
    color: #3DB551;
}
.product-card .product-card-content .card-flex-start .flav-list-type li span.span-dairy {
    color: #A7D1F0;
}
.product-card .product-card-content .card-flex-start .flav-list-type li span.span-nuts {
    color: #E09729;
}
.product-card .product-card-content .card-flex-start .flav-list-type li span.span-vegan {
    color: #5AC1A8;
}
.product-card .product-card-content .card-flex-start .flav-list-type li span.span-spicy {
    color: #F05144;
}
.product-card .product-card-content .card-flex-start .flav-list-type li span.span-gluten {
    color: #DBC68A;
}
.product-card .product-card-content .card-flex-start .flav-list-type li span.span-fav {
    color: #9470A6;
}
.product-card.pdt-equal-grid .product-card-content .card-flex-end ul li {
    font-size: 14px;
    line-height: 23px;
    display: flex;
    align-items: center;
}
.product-card.pdt-equal-grid .product-card-content .card-flex-end ul li i {
    font-size: 4px;
}
/* .product-card.pdt-equal-grid .product-card-content .card-flex-end ul li:before {
    content: ".";
    font-size: 20px;
} */
.product-card.pdt-equal-grid .product-card-content .card-flex-end ul li:not(:last-child) {
    margin-bottom: 10px;
}

.product-card-title {
    margin-right:10px;
    font-size: 18px;
    font-weight: 700;
    color: #652C92;
    /*line-height: 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    width: inherit;*/
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.product-card-title:hover {
    color: var(--primary);
}

.product-card-text,
.card-flex-end p {
    font-size: 14px;
    font-weight: 400;
    max-width: 400px;
    color: #4D4D4D;
}

.product-card-info {
    /*width: 100%;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack:end;
    -ms-flex-pack: end;
    justify-content: end;
}

.product-card-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}

.product-card-price del {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: var(--text);
}

.product-card-price span {
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    color: #652c92; 
}

.product-card-add {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    padding:5px 28px 5px 8px;
    margin-left: 10px;
    border-radius: 12px;
    background-color:#6a2683;
    -webkit-box-shadow: 0px 8px 16px rgba(23, 31, 70, 0.08);
    box-shadow: 0px 8px 16px rgba(23, 31, 70, 0.08);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.product-card-add:hover {
    background-color: var(--primary);
}

.product-card-add:hover span {
    color: var(--white);
}

.product-card-add:hover svg {
    fill: var(--white);
}
.product-card-add span {
    font-size: 14px;
    line-height: 23px;
    font-weight: 700;
}
.product-card-add span {
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    text-transform: capitalize;
    color:#ffffff;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.product-card-add svg {
    fill: var(--primary);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.booking-card {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.booking-card-figure {
    position: relative;
    isolation: isolate;
}

.booking-card-figure img {
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.booking-card-figcaption {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 12px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background: linear-gradient(92.22deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.booking-card-figcaption dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px;
    gap: 24px;
}

.booking-card-figcaption dl dt {
    font-size: 18px;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-transform: capitalize;
    cursor: pointer;
    color: var(--white);
}

.booking-card-figcaption dl dd {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 2px;
    padding: 2px 6px;
    border-radius: 30px;
    background-color: var(--primary);
}

.booking-card-figcaption dl dd i {
    font-size: 11px;
    color: var(--white);
}

.booking-card-figcaption dl dd span {
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
}

.booking-card-figcaption p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.booking-card-figcaption p svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.booking-card-figcaption p span {
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--white);
}

.booking-card-details {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border: 1px solid var(--border-gray);
    border-top: none;
}

.booking-card-details dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 16px;
    gap: 12px;
    border-bottom: 1px solid var(--border-gray);
}

.booking-card-details dl dd {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--blue);
}

.booking-card-details ul {
    display: grid;
    grid-gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-template-rows: auto;
    padding: 16px;
}

.booking-card-details ul li {
    font-size: 12px;
    text-transform: capitalize;
}

.booking-card-details ul li span {
    font-size: 14px;
    font-weight: 500;
    display: block;
    text-transform: initial;
}

.auth {
    overflow: hidden;
    padding: 32px 0px 50px;
}

.auth-content {
    border-radius: 12px;
    background-color: var(--white);
    border: 1px solid var(--border-slate);
}

.auth-banner {
    width: 100%;
    max-width: 480px;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    position: fixed;
    top: 0px;
    right: 0px;
}

@media (max-width: 1199px) {
    .auth-banner {
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .auth-banner {
        max-width: 250px;
    }
}

@media (max-width: 767px) {
    .auth-banner {
        display: none;
    }
}

.auth-navs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 36px;
    -moz-column-gap: 36px;
    column-gap: 36px;
    padding: 0px 16px;
    border-bottom: 1px solid var(--border-slate);
}

.auth-navs .nav-link {
    padding: 16px 0px;
    line-height: 20px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    text-transform: capitalize;
    border-bottom: 2px solid transparent;
    color: var(--secondary);
}

.auth-navs .nav-link.active {
    color: var(--primary);
    border-color: var(--primary);
}

.auth-tabs {
    padding: 16px;
}

.auth-header {
    padding: 10px 0px 32px;
    text-align: center;
}

.auth-header h3 {
    line-height: 34px;
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
}

.auth-header p {
    line-height: 16px;
    font-size: 12px;
    font-weight: 300;
}

.auth-divide {
    margin: 25px 0px;
    position: relative;
    text-align: center;
    z-index: 1;
}

.auth-divide::after {
    position: absolute;
    content: "";
    z-index: -1;
    top: 13px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--border-slate);
}

.auth-divide span {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    padding: 0px 12px;
    text-transform: capitalize;
    color: var(--text);
    background-color: var(--white);
}

.auth-sync {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    row-gap: 15px;
    -webkit-column-gap: 25px;
    -moz-column-gap: 25px;
    column-gap: 25px;
}
.filter-search-mob {
    display: none;
}
@media (max-width: 575px) {
    .filter-search-mob {
        display: inline-block;
    }
    .auth-sync {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .product-card.product-card-custom {
        flex-flow: wrap;
    }
    /*.product-card.product-card-custom .w-200 {*/
    /*    width: 30%;*/
    /*}*/
    .product-card.product-card-custom .product-card-media {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }    
    /*.product-card.product-card-custom .product-card-content {*/
    /*    width: 70%;*/
    /*}*/
    /*.product-card.product-card-custom .w-200 {*/
    /*    width: 30%;*/
    /*}*/
    .product-card.product-card-custom .product-card-content .card-flex-start .flav-list-type li {
        flex-wrap: wrap;
    }
    .product-card.product-card-custom .product-card-media img {
        min-width: 100%;
    }
    .product-card.pdt-equal-grid .product-card-media img {
        min-width: 100%;
    }
}

.auth-sync a {
    width: 100%;
    height: 48px;
    border-radius: 30px;
    background-color: var(--slate);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
}

.auth-sync a img {
    width: 24px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.auth-sync a span {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-transform: capitalize;
    color: var(--secondary);
}

.auth-types {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 15px;
    -webkit-column-gap: 50px;
    -moz-column-gap: 50px;
    column-gap: 50px;
    margin-bottom: 24px;
}

.auth-types li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
}

.auth-types li input {
    accent-color: var(--primary);
    cursor: pointer;
}

.auth-types li label {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    cursor: pointer;
    text-transform: capitalize;
    color: var(--secondary);
}

@media (max-width: 991px) {
    .cart-flow {
        overflow-y: hidden;
    }
}

@media (max-width: 991px) {
    .cart-sidebar {
        position: fixed;
        inset: 0;
        z-index: 5;
        opacity: 0;
        visibility: hidden;
        background-color: rgba(0, 0, 0, 0.5);
        transition: all linear 0.3s;
        -webkit-transition: all linear 0.3s;
        -moz-transition: all linear 0.3s;
        -ms-transition: all linear 0.3s;
        -o-transition: all linear 0.3s;
    }
}

@media (max-width: 991px) {
    .cart-sidebar.active {
        opacity: 1;
        visibility: visible;
    }
}

.cart-sidebar.active .cart-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.cart-content {
    width: 100%;
    max-width: 380px;
    position: fixed;
    isolation: isolate;
    top: 0px;
        bottom: 0;
    right: 0px;
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
    background-color: var(--white);
    border-left: 1px solid var(--border-slate);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

@media (min-width: 992px) and (max-width: 1100px) {
    .cart-content {
        max-width: 320px;
    }
}

@media (max-width: 991px) {
    .cart-content {
        top: 0px;
    }
}

.cart-content .cart-close {
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    top: 20px;
    left:5px !important;
    z-index: 1;
    width: 26px;
    height: 26px;
    line-height: 26px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--white);
    color: var(--red);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

@media (min-width: 0px) and (max-width: 400px) {
    .cart-content .cart-close {
        border: 1px solid var(--border-slate);
        line-height: 24px;
        left: 20px;
    }
    .content-info-blk {
        justify-content: space-between !important;
    }
    .content-info-blk {
        margin-right: 41px;
    }
    .additions-blk .content-info-blk img {
        width: 55px !important;
    }
    .content-info-blk {
        column-gap: 2px !important;
    }
    #specific-section-id .owl-prev {
        right: 20px !important;
    }
    #specific-section-id .owl-next {
        right: -5px !important;
    }
    .header-restaurant .restaurant-btn span {
        padding: 1px !important;
    }
}

.cart-content .cart-close:hover {
    background-color: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.cart-empty {
    width: 100%;
    height: 100vh;
    position: relative;
    z-index: 14;
    pointer-events: none;
}

.cart-empty h2 {
    margin-bottom: 60px;
}

.cart-empty img {
    width: 100%;
    max-width: 160px;
    margin-bottom: 40px;
    margin-inline: auto;
    display: block;
}

.cart-empty p {
    padding: 0px 35px;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--text);
}

.cart-title {
    width: 100%;
    padding: 15px;
    font-size: 22px;
    font-weight: 600;
    line-height: 34px;
    text-align: center;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border-slate);
    color: var(--blue);
}

.cart-switch-group {
    margin-top: 20px;
    margin-bottom: 18px;
}

.cart-heading {
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 18px;
}

.cart-scroll-group {
    height: calc(100vh - 215px);
    overflow-y: auto;
}

/* @media (max-width: 991px) {
    .cart-scroll-group {
        height: calc(100vh - 145px);
    }
} */

.cart-scroll-group::-webkit-scrollbar {
    width: 4px;
    background-color: transparent;
}

.cart-scroll-group::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: var(--placeholder);
}

.cart-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 16px;
    border-top: 1px solid var(--border-slate);
}

.cart-item:last-child {
    border-bottom: 1px solid var(--border-slate);
}

.cart-delete {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 2px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    cursor: pointer;
}

.cart-meta-group {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    /*overflow: hidden;*/
}

.cart-meta-group .cart-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 5px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
    /*overflow: hidden;*/
    cursor: pointer;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.cart-meta-group .cart-name:hover {
    color: var(--primary);
}

.cart-meta-group .cart-size {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 2px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.cart-meta-group .cart-extra {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: var(--text);
}

.cart-action-group .cart-price {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 5px;
    text-align: right;
    text-transform: capitalize;
    /* color: var(--primary); */
    color: var(--heading);
}

.cart-price-group {
    padding: 16px 16px 0px;
}

.cart-coupon {
    height: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px;
}

.cart-coupon input {
    width: 100%;
    height: 100%;
    padding: 0px 16px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border: 1px solid var(--border-gray);
    border-right: none;
}

.cart-coupon input::-webkit-input-placeholder {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.cart-coupon input::-moz-placeholder {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.cart-coupon input:-ms-input-placeholder {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.cart-coupon input::-ms-input-placeholder {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.cart-coupon input::placeholder {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.cart-coupon button {
    height: 100%;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    padding: 0px 18px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    text-transform: capitalize;
    cursor: pointer;
    color: var(--white);
    background-color: var(--green);
}

.cart-amount-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}

.cart-amount-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cart-amount-item:last-child span {
    font-weight: 600;
    color: var(--heading);
}

.cart-amount-item span {
    font-size: 14px;
    text-transform: capitalize;
    color: var(--text);
}

.cart-amount-btn-div {
    padding: 16px;
}

.cart-amount-btn {
    width: 100%;
    height: 48px;
    font-size: 16px;
    font-weight: 700;
    line-height: 48px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    color: var(--white);
    background-color: var(--primary);
}

.product-modal .modal-dialog {
    width: 100%;
    max-width: 455px;
    margin: 30px auto;
}

@media (max-width: 575px) {
    .product-modal .modal-dialog {
        margin: 10px auto;
        padding: 0px 10px;
    }
    .display-small-flex p {
        font-size: 24px !important;
    }
}

.product-modal .modal-content {
    border: none;
    display: block;
    overflow: hidden;
    border-radius: 16px;
}

.product-modal-media {
    position: relative;
}

.product-modal-media img {
    width: 100%;
}

.product-modal-media button {
    position: absolute;
    cursor: pointer;
    top: 16px;
    right: 16px;
    font-size: 16px;
    width: 32px;
    height: 32px;
    /*line-height: 32px;*/
    border-radius: 50%;
    text-align: center;
    background-color: var(--white);
    color: var(--red);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.product-modal-media button:hover {
    color: var(--white);
    background-color: var(--red);
}

.product-modal-group {
    padding: 24px 16px;
    border-top: 1px solid var(--border-slate);
}

.product-modal-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.product-modal-describe {
    font-size: 12px;
    font-weight: 400;
    color: var(--text);
}

.product-modal-subset {
    margin-bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.product-modal-subset dt {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.product-modal-subset dd {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--blue);
}

.product-modal-subset dd.require {
    background-color: #E2F8FF;
}

.product-modal-subset dd.option {
    background-color: transparent;
}

.product-modal-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.product-modal-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.product-modal-list li label {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
}

.product-modal-list li span {
    font-size: 14px;
    font-weight: 500;
}

.product-modal-instruct {
    width: 100%;
    height: 44px;
    padding: 0px 16px;
    border-radius: 5px;
    border: 1px solid var(--border-gray);
}

.product-modal-instruct::-webkit-input-placeholder {
    font-size: 12px;
}

.product-modal-instruct::-moz-placeholder {
    font-size: 12px;
}

.product-modal-instruct:-ms-input-placeholder {
    font-size: 12px;
}

.product-modal-instruct::-ms-input-placeholder {
    font-size: 12px;
}

.product-modal-instruct::placeholder {
    font-size: 12px;
}

.product-modal-footer {
    padding: 8px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.16);
}

.product-modal-footer .cart-counter {
    width: 120px;
    height: 38px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 30px;
    background-color: #FFF2F5;
}

.product-modal-footer .cart-counter input {
    width: 50px;
    font-size: 16px;
}

.product-modal-footer .cart-counter button {
    font-size: 14px;
}

.product-modal-footer .cart-btn {
    width: 100%;
    height: 48px;
    border-radius: 30px;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    gap: 12px;
    color: var(--white);
    background-color: var(--primary);
}

.booking-modal .modal-dialog {
    width: 100%;
    max-width: 455px;
    margin: 30px auto;
}

@media (max-width: 575px) {
    .booking-modal .modal-dialog {
        margin: 10px auto;
        padding: 0px 10px;
    }
}

.booking-modal .modal-content {
    border: none;
    display: block;
    overflow: hidden;
    border-radius: 16px;
}

.booking-modal-header {
    position: relative;
    text-align: center;
    padding: 16px 16px 0px;
}

.booking-modal-header h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 32px;
}

.booking-modal-header img {
    width: 100%;
    max-width: 180px;
    margin-bottom: 32px;
}

.booking-modal-header button {
    position: absolute;
    cursor: pointer;
    top: 16px;
    right: 16px;
    font-size: 16px;
    width: 32px;
    height: 32px;
    /*line-height: 32px;*/
    border-radius: 50%;
    text-align: center;
    background-color: var(--white);
    color: var(--red);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    -webkit-box-shadow: 0px 4px 16px rgba(126, 133, 142, 0.16);
    box-shadow: 0px 4px 16px rgba(126, 133, 142, 0.16);
}

.booking-modal-header button:hover {
    color: var(--white);
    background-color: var(--red);
}

.booking-modal-content {
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.booking-modal-group {
    position: relative;
}

.booking-modal-select {
    padding: 12px 16px;
    border-radius: 12px;
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}

.booking-modal-select.active i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.booking-modal-select h4 {
    font-size: 14px;
    font-weight: 600;
}

.booking-modal-select h4 span {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 300;
}

.booking-modal-select i {
    font-size: 16px;
    color: var(--primary);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.booking-modal-option {
    padding: 16px;
    border-radius: 12px;
    position: absolute;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    width: 100%;
    top: 66px;
    left: 0px;
    right: 0px;
    z-index: 1;
    background-color: var(--white);
    -webkit-box-shadow: 0px 4px 16px rgba(126, 133, 142, 0.16);
    box-shadow: 0px 4px 16px rgba(126, 133, 142, 0.16);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.booking-modal-option.active {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.booking-modal-option dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px;
}

.booking-modal-option dt {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.booking-modal-option dd.cart-counter {
    width: 100px;
    height: 30px;
}

.booking-modal-option dd.cart-counter input {
    width: 40px;
    font-size: 16px;
}

.booking-modal-option dd.cart-counter button {
    font-size: 12px;
}

.booking-modal-option dd.date input {
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid var(--border-slate);
}

.booking-modal-option .done {
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    display: block;
    cursor: pointer;
    margin-left: auto;
    text-transform: capitalize;
    color: var(--white);
    background-color: var(--primary);
}

.booking-modal-time {
    padding: 16px;
    border-radius: 12px;
    background-color: var(--white);
    border: 1px solid var(--border-gray);
}

.booking-modal-time h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.booking-modal-time ul {
    display: grid;
    grid-gap: 16px 20px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
}

.booking-modal-time ul li {
    width: 100%;
    font-size: 14px;
    padding: 12px 0px;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    border: 1px solid var(--slate);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.booking-modal-time ul li.enable {
    color: var(--heading);
}

.booking-modal-time ul li.disable {
    cursor: not-allowed;
    color: var(--placeholder);
}

.booking-modal-time ul li.disable.selected {
    color: var(--placeholder);
    background-color: var(--white);
}

.booking-modal-time ul li.selected {
    color: var(--white);
    background-color: var(--primary);
}

.booking-modal-footer {
    padding: 8px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.16);
}

.booking-modal-footer .cart-btn {
    width: 100%;
    height: 48px;
    border-radius: 30px;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    gap: 12px;
    color: var(--white);
    background-color: var(--primary);
}

.address-modal .modal-dialog {
    width: 100%;
    max-width: 515px;
    margin: 30px auto;
}

@media (max-width: 575px) {
    .address-modal .modal-dialog {
        margin: 10px auto;
        padding: 0px 10px;
    }
}

.address-modal .modal-content {
    border: none;
    display: block;
    overflow: hidden;
    padding: 16px;
    border-radius: 12px;
}

.address-modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 15px;
}

.address-modal-header h3 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
}

.address-modal-header button {
    font-size: 20px;
    color: var(--red);
}

.address-modal-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
    height: 46px;
    border-radius: 8px;
    margin-bottom: 16px;
    padding: 8px 8px 8px 16px;
    background-color: var(--slate);
    border: 1px solid var(--slate);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.address-modal-search:focus-within {
    background-color: var(--white);
    border-color: rgba(238, 29, 72, 0.3);
}

.address-modal-search i {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 20px;
}

.address-modal-search input {
    width: 100%;
    height: 100%;
}

.address-modal-search button {
    width: 30px;
    height: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 16px;
    border-radius: 6px;
    background-color: var(--primary);
    color: var(--white);
}

.address-modal-frame {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.address-modal-location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin-bottom: 20px;
    gap: 12px;
}

.address-modal-location i {
    font-size: 18px;
    color: var(--primary);
}

.address-modal-location span {
    font-size: 14px;
    font-weight: 500;
}

.address-modal-details {
    margin-bottom: 20px;
}

.address-modal-details label {
    display: block;
    font-size: 12px;
    margin-bottom: 5px;
}

.address-modal-details input {
    width: 100%;
    height: 45px;
    padding: 0px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.address-modal-details input:focus-within {
    border-color: rgba(238, 29, 72, 0.3);
}

.address-modal-label-group {
    margin-bottom: 24px;
}

.address-modal-label-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.address-modal-label-navs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 12px;
}

.address-modal-label-navs button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 8px;
    background-color: var(--slate);
    border: 1px solid var(--slate);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.address-modal-label-navs button.active {
    color: var(--primary);
    border-color: var(--primary);
    background-color: rgba(238, 29, 72, 0.08);
}

.address-modal-label-input {
    width: 100%;
    height: 45px;
    margin-top: 16px;
    padding: 0px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.address-modal-label-input:focus-within {
    border-color: rgba(238, 29, 72, 0.3);
}

.shop-modal .modal-dialog {
    width: 100%;
    max-width: 550px;
    margin: 30px auto;
}

@media (max-width: 575px) {
    .shop-modal .modal-dialog {
        margin: 10px auto;
        padding: 0px 10px;
    }
}

.shop-modal .modal-content {
    border: none;
    display: block;
    overflow: hidden;
    border-radius: 16px;
}

.shop-modal-header {
    position: relative;
}

.shop-modal-header img {
    width: 100%;
}

.shop-modal-header button {
    position: absolute;
    cursor: pointer;
    top: 16px;
    right: 16px;
    font-size: 16px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--white);
    color: var(--red);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    -webkit-box-shadow: 0px 4px 16px rgba(126, 133, 142, 0.16);
    box-shadow: 0px 4px 16px rgba(126, 133, 142, 0.16);
}

.shop-modal-header button:hover {
    color: var(--white);
    background-color: var(--red);
}

.shop-modal-meta {
    padding: 16px;
}

.shop-modal-meta h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.shop-modal-meta h4 {
    font-size: 12px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 8px;
}

.shop-modal-meta p {
    font-size: 12px;
    font-weight: 400;
    color: var(--text);
}

.shop-modal .nav-tabs {
    border-top: 1px solid var(--border-slate);
    border-bottom: 1px solid var(--border-slate);
}

.shop-modal .nav-tabs .nav-link {
    margin: 0px 16px;
    padding: 10px 0px;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
    isolation: isolate;
    border: none;
    color: var(--text);
}

.shop-modal .nav-tabs .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 3px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.shop-modal .nav-tabs .nav-link.active {
    color: var(--heading);
}

.shop-modal .nav-tabs .nav-link.active::after {
    background-color: var(--primary);
}

.shop-modal .tab-pane {
    padding: 16px;
}

.shop-modal-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 24px;
}

.shop-modal-about ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.shop-modal-about ul li h3 {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 8px;
    line-height: 20px;
}

.shop-modal-about ul li p {
    font-size: 12px;
    font-weight: 400;
}

.shop-modal-about img {
    width: 140px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.shop-modal-review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.shop-modal-review li {
    padding: 12px;
    border-radius: 8px;
    background-color: var(--white);
    border: 1px solid #EFF0F6;
}

.shop-modal-review li h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.shop-modal-review li dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 8px;
    gap: 12px;
}

.shop-modal-review li dl dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0px;
    gap: 3px;
}

.shop-modal-review li dl dt i {
    font-size: 12px;
    color: var(--yellow);
}

.shop-modal-review li dl dd {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0px;
}

.shop-modal-review li p {
    font-size: 12px;
    font-weight: 300;
}

.header {
    width: 100%;
    background-color: var(--white);
    /* border-bottom: 1px solid var(--border-slate); */
}

.header.index {
    background-color: #E3DAED;
}

/* .header.active {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 5;
  background-color: var(--white);
  -webkit-box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.06);
} */

.header-content {
    /*height: 70px;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 767px) {
    /*.header-content {*/
    /*    height: 60px;*/
    /*}*/
}

.header-logo img {
    width: 86px;
}

.header-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}
.new-filter-group {
    margin-top: 0px !important;
}
@media (min-width: 0px) and (max-width: 350px) {
  
    .header-group .filter-search {
        width: 80px !important;
        padding: 5px 0px 5px 1px !important;
    }
    .header-group {
        gap: 2px !important;
    }
    .header-logo img {
        width: 58px;
    }
    .filter-search input {
        font-size: 10px;
    }

}

.header-cart {
    cursor: pointer;
    position: relative;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* background-color: var(--secondary);
    -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.25); */
}
.full-width-style.select2 {
    width: 100% !important;
}
.custom-select .selection {
    width: 100% !important;
}

.select2-container--default .select2-selection--multiple {
    border:1px solid var(--border-gray) !important;
    height: 42px !important;
}
#chatLink img {
    width: 25px;
}
/*.header-cart sup {*/
/*    position: absolute;*/
/*    top: 0px;*/
/*    right: 2px;*/
/*    font-size: 14px;*/
/*    font-weight: 500;*/
/*    width: 18px;*/
/*    height: 18px;*/
/*    line-height: 14px;*/
/*    border-radius: 50%;*/
/*    text-align: center;*/
/*    background-color: #ED1E79;*/
/*    border: 1px solid var(--white);*/
/*    color: var(--white);*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

.header-cart sup {
    position: absolute;
    top: -10px;
    left: 12px;
    font-size: 14px;
    font-weight: 500;
    width: 92%;
    /* width: 18px; */
    /* height: 19px; */
    padding: 4px 0px;
    line-height: 19px;
    border-radius: 50%;
    text-align: center;
    background-color: #ED1E79;
    border: 1px solid var(--white);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
li.checkout-summary-item h3 {
    /*width: fit-content;*/
    width: 9%;
    padding: 3px 4px;
    height: max-content;
}

.header-restaurant {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-restaurant .restaurant-btn {
    color: #6A2683;
    border: 1px solid #652d90;
    background:#ffffff00;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    white-space: nowrap;
    height: 32px;
    padding: 0px 14px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.header-restaurant .restaurant-btn:hover {
    color: #FFF;
    background: #6A2683;
}
.header-restaurant .restaurant-btn i {
    display: none;
}
.header-auth {
    position: relative;
}
.header-auth-btn {
    display: none;
}

@media (max-width: 767px) {
    .header-auth-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 16px;
        padding: 0px 7px;
        height: 32px;
        cursor: pointer;
        border: 1px solid var(--border-gray);
        -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
        transition: all linear 0.3s;
        -webkit-transition: all linear 0.3s;
        -moz-transition: all linear 0.3s;
        -ms-transition: all linear 0.3s;
        -o-transition: all linear 0.3s;
    }

    .header-auth-btn:hover {
        border-color: rgba(238, 29, 72, 0.3);
    }
}

.header-auth-navs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 767px) {
    .header-auth-navs {
        position: absolute;
        top: 46px;
        right: 0px;
        z-index: 3;
        padding: 6px;
        border-radius: 8px;
        -webkit-transform-origin: top;
        transform-origin: top;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        border-color: var(--border-slate);
        background-color: var(--white);
        -webkit-box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.08);
        box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.08);
        transition: all linear 0.3s;
        -webkit-transition: all linear 0.3s;
        -moz-transition: all linear 0.3s;
        -ms-transition: all linear 0.3s;
        -o-transition: all linear 0.3s;
    }

    .header-auth-navs.active {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
}

.header-auth-navs a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    white-space: nowrap;
    gap: 6px;
    height: 32px;
    padding: 0px 12px;
    color: var(--primary);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

@media (max-width: 767px) {
    .header-auth-navs a {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.header-auth-navs a:hover {
    background-color: rgba(106 38, 131, 0.05);
}

.header-auth-navs a:first-child {
    background: #6A2683;
    color: #ffffff;
    border-top-left-radius: 16px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 16px;
}

@media (max-width: 767px) {
    .header-auth-navs a:first-child {
        border-radius: 8px;
        margin-bottom: 5px;
    }
}

.header-auth-navs a:last-child {
    background: #ED1E79;
    color: #ffffff;
    border-top-left-radius: 0px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 0px;
    border-left: 1px solid var(--border-gray);
}

@media (max-width: 767px) {
    .header-auth-navs a:last-child {
        border: none;
        border-radius: 8px;
    }
}

.header-account,
.header-selection {
    position: relative;
}

.header-account-btn,
.header-selection-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 16px;
    padding: 0px 12px 0px 5px;
    height: 32px;
    gap: 6px;
    cursor: pointer;
    border: 1px solid #652d90;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

@media (max-width: 767px) {

    .header-account-btn,
    .header-selection-btn {
        padding: 0px 7px;
        min-width: 32px;
    }
}

/* .header-account-btn:hover,
.header-selection-btn:hover {
    border-color: rgba(238, 29, 72, 0.3);
} */

.header-account-btn img,
.header-selection-btn img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}

.header-account-btn span,
.header-selection-btn span {
    display: block;
    line-height: 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: #652d90;
    min-width: auto;
}
.header-selection-btn span br {
    display: none !important;
}
.filter-search-dropdown {
    display: none;
}
.filter-search-dropdown .dropdown-toggle {
    width: 32px;
    height: 32px;
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
    background: #6A2683;
    color: #ffffff;
    border-radius: 50px;
}
.filter-search-dropdown .dropdown-toggle::after {
    display: none;
}
.filter-search-dropdown .dropdown-toggle img {
    width: 14px;
    filter: invert(1) brightness(100);
    position: relative;
    top: 0;
}
.filter-search-dropdown .dropdown-menu {
    padding: 10px 15px;
}
.filter-search-dropdown .dropdown-menu input {
    border: 1px solid #cac7cc;
    height: 34px;
    padding: 10px 12px;
    border-radius: 5px;
}
.filter-search-dropdown .dropdown-menu a {
    background: #6A2683;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
    height: 34px;
    margin-top: 10px;
}
.filter-search-dropdown .dropdown-menu a button {
    font-weight: 500;
    color: #FFF;
}

@media (max-width: 991.98px) {

    /*.header-account-btn span,*/
    /*.header-selection-btn span {*/
    /*    display: none;*/
    /*}*/
    .header-account-btn i {
        display: none;
    }
    /*<!-- .header-group .filter-search-none {*/
    /*    display: none;*/
    /*} -->*/
    /*.filter-search-dropdown {*/
    /*    display: block;*/
    /*}*/
}


.header-account-btn i,
.header-selection-btn i {
    font-size: 10px;
    margin-top: 0px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.heart-icon {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 95;
    width: 35px;
    height: 35px;
    background-color: rgba(0,0,0,0.5);
    border-radius: 0 12px 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .header-logo {
        margin-right: 10px;
    }
    .header-logo img {
        width: 70px;
    }
    .header-selection-btn {
        min-width: 32px;
        padding: 5px;
    }
    .header-selection-btn i {
        display: none;
    }
}
@media (max-width: 767.98px) {
    .header-restaurant .restaurant-btn {
        min-width: 32px;
        padding: 5px;
    }
    .header-restaurant .restaurant-btn span {
        display: none;
    }
    .header-restaurant .restaurant-btn i {
        display: block;
    }
}

@media (max-width: 767px) {

    .header-account-btn i,
    .header-selection-btn i {
        display: none;
    }
}



.header-account-btn.active i,
.header-selection-btn.active i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.header-account-navs,
.header-selection-list {
    position: absolute;
    top: 50px;
    right: 0px;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    z-index: 3;
    padding: 8px 6px;
    border-radius: 8px;
    background-color: var(--white);
    border: 1px solid var(--border-slate);
    -webkit-box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.08);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.new-header-account .header-account-btn {
    background: #E3DAED;
    border: 1px solid #E3DAED;
    color: #6A2683;
    font-weight: 600;
    padding: 10px;
}
.new-header-account .header-account-btn img {
    width: 12px;
    height: auto;
    border-radius: inherit;
}
.new-header-account .header-account-btn span {
    color: #6A2683;
    font-weight: 600;
}
.new-header-account .header-account-navs {
    padding: 10px;
    background: #E3DAED;
    border: 1px solid #E3DAED;
    color: #6A2683;
    width: 170px;
}
.new-header-account .header-account-navs li {
    color: #6A2683;
    display: flex;
    align-items: center;
    font-weight: 600;
    column-gap: 5px;
    font-size: 14px;
    padding-right: 0;
    align-items: center;
}
.new-header-account .header-account-navs li img {
    width: 12px;
    height: auto;
    border-radius: inherit;
}


@media (max-width: 767px) {

    .header-account-navs,
    .header-selection-list {
        top: 46px;
    }
}

.header-account-navs.active,
.header-selection-list.active {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.header-account-navs a,
.header-account-navs li,
.header-selection-list a,
.header-selection-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 32px;
    padding-left: 8px;
    cursor: pointer;
    gap: 12px;
    border-radius: 8px;
    color: var(--secondary);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.header-account-navs a:hover,
.header-account-navs li:hover,
.header-selection-list a:hover,
.header-selection-list li:hover {
    background-color: var(--slate);
}

.header-account-navs a i,
.header-account-navs li i,
.header-selection-list a i,
.header-selection-list li i {
    font-size: 16px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.header-account-navs a img,
.header-account-navs li img,
.header-selection-list a img,
.header-selection-list li img {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.header-account-navs a span,
.header-account-navs li span,
.header-selection-list a span,
.header-selection-list li span {
    font-size: 14px;
    font-weight: 400;
    white-space: nowrap;
    text-transform: capitalize;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.header-btn {
    height: 32px;
    padding: 6px 12px;
    border-radius: 16px;
    background-color: var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
}

@media (max-width: 575px) {
    .header-btn {
        display: none;
    }
}

.header-btn span {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    color: var(--white);
}

.footer {
    padding: 32px 0px 0px;
    background-color: #E3DAED;
}

.footer-logo {
    margin-bottom: 32px;
}

.footer-logo img {
    width: 104px;
}

.footer-about p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 12px;
}

.footer-about nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.footer-about nav a {
    font-size: 20px;
    color: var(--primary);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 16px;
}

@media (max-width: 575px) {
    .footer-widget {
        margin-top: 35px;
    }
}

.footer-widget nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.footer-widget nav a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--secondary);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.footer-widget nav a:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .footer-contact {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 20px;
        margin-top: 35px;
    }
}

@media (max-width: 991px) {
    .footer-contact .footer-title {
        margin-bottom: 0px;
    }
}

.footer-contact nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 24px;
    gap: 12px;
}

@media (max-width: 991px) {
    .footer-contact nav {
        margin-bottom: 0px;
    }
}

.footer-contact nav img {
    height: 40px;
    border-radius: 8px;
}

.footer-contact ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.footer-contact ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.footer-contact ul li span {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.footer-bottom {
    margin-top: 32px;
    padding: 16px 0px 14px;
    text-align: center;
    border-top: 1px solid #E3DAED;
}

.footer-bottom p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: rgba(110, 113, 145, 0.8);
}

.banner {
    padding: 15px 0px;
    /* background-color: #E3DAED; */
    background: url("../../images/main-banner.jpg") no-repeat top right;
    width: 100%;
    height:680px;
    background-size: cover;
}
.flex-banner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}
/* .flex-banner h1 img {
    width: 100px;
} */
.header-group .location-blk {
    display: flex;
    column-gap: 5px;
    background: #E3DAED;
    border-radius:50px;
    color: #6A2683;
    align-items: center;
    padding: 5px 12px;
    cursor: pointer;
}
.header-group .location-blk.dropdown-toggle {
    cursor: pointer;
}
.header-group .location-blk.dropdown-toggle::after {
    display: none;
}
.header-group .location-dropdown .dropdown-menu {
    padding: 10px;
    background: #E3DAED;
    border: 1px solid #E3DAED;
    color: #6A2683;
}
.header-group .location-dropdown .dropdown-menu li {
    color: #6A2683;
    display: flex;
    align-items: center;
    font-weight: 600;
    column-gap: 5px;
}
.header-group .location-dropdown .dropdown-menu li img {
    width: 12px;
    margin-right: 4px;
}
.header-group .location-blk img {
    width: 12px;
    margin-right: 4px;
}
.header-group .filter-search {
    width: auto;
    padding: 5px 0px 5px 10px;
    height: 34px;
    gap:7px;
}
.header-group .filter-search a button {
    background: #6A2683;
    color: #ffffff;
    border-top-right-radius: 16px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 16px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 30px;
}
.header-group .filter-search a button img {
    width: 14px;
    filter: invert(1) brightness(100);
    position: relative;
    top: 0;
}
.header-group .location-blk p {
    font-weight: 600;
    margin: 0px;
}
@media (max-width: 575.98px) {
    .header-group .location-blk {
        padding: 4px 10px;
    }
    .header-group .location-blk p {
        font-size: 13px;
    }
    /*<!-- .header-group .filter-search {*/
    /*    display: none;*/
    /*} -->*/
}
.section-padding {
    padding: 60px 0px;
}
.bg-theme {
    background: #6A2683;
    color: #ffffff;
}
.bg-theme .section-subtitle {
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff;
}
.bg-theme .section-title {
    color: #ffffff;
    font-family: "Kalam", cursive;
    font-weight: 400 !important;
}
.bg-theme h3 {
    color: #ffffff;
    font-family: "Kalam", cursive;
    font-weight: 400 !important;
    font-style: normal
}
@media (max-width: 991px) {
    .banner {
        padding: 55px 0px 70px;
    }
}

@media (max-width: 767px) {
    .banner {
        padding: 40px 0px 10px;
    }
}

.banner-title {
    font-family: "Kalam", cursive;
    font-size: 56px;
    font-weight: 400;
    color: #A67DB5;
    line-height: 80px;
    margin-bottom: 20px;
}

@media (max-width: 1399px) {
    .banner-title {
        font-size: 68px;
        line-height: 77px;
    }

}

@media (max-width: 1199px) {
    .banner-title {
        font-size: 45px;
        line-height: 65px;
    }
}

@media (max-width: 991px) {
    .banner-title {
        font-size: 38px;
        line-height: 58px;
    }
}

@media (max-width: 767px) {
    .banner-title {
        font-size: 48px;
        line-height: 68px;
    }
}

@media (max-width: 575px) {
    .banner-title {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 45px;
    }
}

.banner-title span {
    color: var(--primary);
}

.banner-subtitle {
    font-size: 26px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 40px;
    font-family: "Kalam", cursive;
    color: #A67DB5;
}

@media (max-width: 1399px) {
    .banner-subtitle {
        font-size: 40px;
        line-height: 30px;
    }
}

@media (max-width: 991px) {
    .banner-subtitle {
        font-size: 30px;
        line-height: 30px;
    }
}

@media (max-width: 575px) {
    .banner-subtitle {
        font-size: 18px;
        line-height: 28px;
    }
}

.banner-search {
    width: 450px;
    /* height: 72px; */
    padding: 0 0 0 12px;
    border-radius: 35px;
    background-color: var(--white);
    -webkit-box-shadow: 0px 6px 32px rgba(237, 32, 73, 0.06);
    box-shadow: 0px 6px 32px rgba(237, 32, 73, 0.06);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 26px;
}

@media (max-width: 575px) {
    .banner-search {
        height: 48px;
        padding: 8px;
        gap: 10px;
    }
}

.banner-search input {
    width: 100%;
    height: 100%;
    padding: 0px 12px;
}

@media (max-width: 575px) {
    .banner-search input {
        padding: 0px 8px;
    }
}

.banner-search input::-webkit-input-placeholder {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.banner-search input::-moz-placeholder {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.banner-search input:-ms-input-placeholder {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.banner-search input::-ms-input-placeholder {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.banner-search input::placeholder {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

@media (max-width: 575px) {
    .banner-search input::-webkit-input-placeholder {
        font-size: 14px;
        line-height: 24px;
    }

    .banner-search input::-moz-placeholder {
        font-size: 14px;
        line-height: 24px;
    }

    .banner-search input:-ms-input-placeholder {
        font-size: 14px;
        line-height: 24px;
    }

    .banner-search input::-ms-input-placeholder {
        font-size: 14px;
        line-height: 24px;
    }

    .banner-search input::placeholder {
        font-size: 14px;
        line-height: 24px;
    }
}

.banner-search a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.banner-search button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 500;
    line-height: 34px;
    border-radius: 0px 25px 25px 0px;
    padding: 7px 24px;
    cursor: pointer;
    text-transform: capitalize;
    color: var(--white);
    background-color: var(--primary);
}
.banner-search button:hover {
    background: #ED1E79;
}

@media (max-width: 575px) {
    .banner-search button {
        font-size: 14px;
        line-height: 24px;
        padding: 5px 15px;
    }
}

.banner-image img {
    width: 100%;
    margin-left: 40px;
}

@media (min-width: 0px) and (max-width: 991px) {
    .banner-image img {
        margin-left: 0px;
    }
}

@media (max-width: 767px) {
    .banner-image img {
        margin-top: 20px;
    }
}
.swiper-wrapper{
    height: auto;
}

.feature-swiper .swiper-slide {
    width: 100%;
    text-align: center;
}

.feature-swiper .swiper-slide svg {
    margin-bottom: 26px;
}

.feature-swiper .swiper-slide h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 12px;
}

.feature-swiper .swiper-slide p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.feature-swiper .swiper-pagination {
    position: absolute;
    bottom: 40px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
}

.feature-swiper .swiper-pagination-bullet {
    opacity: 1;
    width: 8px;
    height: 8px;
    line-height: 8px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--gray);
}

.feature-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary);
}

.app {
    padding: 120px 0px;
    background-color: #E3DAED;
    overflow: hidden;
}



@media (max-width: 767px) {
    .app {
        padding: 60px 0px;
    }
}

@media (max-width: 575px) {
    .app-content {
        width: 100%;
        text-align: center;
    }
}

.app-content h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 74px;
    margin-bottom: 24px;
}
@media (max-width: 1399px) {
    .app-content h2 {
        font-size: 45px;
        line-height: 65px;
    }
}


@media (max-width: 1199px) {
    .app-content h2 {
        font-size: 48px;
        line-height: 60px;
    }
}

@media (max-width: 991px) {
    .app-content h2 {
        font-size: 35px;
        line-height: 45px;
    }
}

@media (max-width: 767px) {
    .app-content h2 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .app-content h2 {
        font-size: 28px;
        line-height: 38px;
    }
}

.app-content p {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 32px;
}
@media (max-width: 1399px) {


    .app-content p {
        font-size: 20px;
        margin-bottom: 20px;
    }
}
@media (max-width: 991px) {
    .app-content p {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 25px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .app-content p {
        font-size: 16px;
        line-height: 26px;
    }
}

.app-content nav {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 575px) {
    .app-content nav {
        margin-bottom: 40px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.app-content nav img {
    width: 130px;
}

@media (max-width: 767px) {
    .app-content nav img {
        width: 100px;
    }
}

@media (max-width: 575px) {
    .app-content nav img {
        width: 110px;
    }
}

.app-image {
    width: 100%;
    height: 100%;
    position: relative;
}

@media (max-width: 575px) {
    .app-image {
        height: 180px;
    }
}

.app-image img {
    width: 100%;
    max-width: 400px;
    position: absolute;
    bottom: -220px;
    right: 0px;
}

@media (max-width: 767px) {
    .app-image img {
        bottom: -150px;
    }
}

@media (max-width: 575px) {
    .app-image img {
        max-width: 270px;
        right: 50%;
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }
}

.filter-group {
    overflow: hidden;
    -webkit-transition: all linear 0.5s;
    transition: all linear 0.5s;
}

.filter-swiper {
    padding: 32px 0px;
}

.filter-swiper .swiper-slide {
    cursor: pointer;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 20px;
    color: var(--text);
    background-color: var(--slate);
}

.filter-swiper .swiper-slide i {
    font-size: 16px;
}

.filter-swiper .swiper-slide span {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-transform: capitalize;
}

.filter-swiper .swiper-slide.active {
    color: var(--white);
    background-color: var(--primary);
}

.filter-options {
        overflow-x: clip;
        /*width: max-content;*/
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 24px;
}

@media (max-width: 575px) {
    /*.filter-options {*/
    /*    row-gap: 18px;*/
    /*}*/
}

/* .filter-options div:nth-child(1) {
    grid-column: 1/4;
}

@media (max-width: 1199px) {
    .filter-options div:nth-child(1) {
        grid-column: 1/7;
    }
}

@media (max-width: 767px) {
    .filter-options div:nth-child(1) {
        grid-column: 1/13;
    }
}

.filter-options div:nth-child(2) {
    grid-column: 4/8;
}

@media (max-width: 1199px) {
    .filter-options div:nth-child(2) {
        grid-column: 7/13;
    }
}

@media (max-width: 767px) {
    .filter-options div:nth-child(2) {
        grid-column: 1/13;
    }
}

.filter-options div:nth-child(3) {
    grid-column: 8/10;
}

@media (max-width: 1199px) {
    .filter-options div:nth-child(3) {
        grid-column: 1/5;
    }
}

@media (max-width: 575px) {
    .filter-options div:nth-child(3) {
        grid-column: 1/13;
    }
}

.filter-options div:nth-child(4) {
    grid-column: 10/12;
}

@media (max-width: 1199px) {
    .filter-options div:nth-child(4) {
        grid-column: 5/10;
    }
}

@media (max-width: 575px) {
    .filter-options div:nth-child(4) {
        grid-column: 1/13;
    }
}

.filter-options div:nth-child(5) {
    grid-column: 12/13;
}

@media (max-width: 1199px) {
    .filter-options div:nth-child(5) {
        grid-column: 10/13;
    }
}

@media (max-width: 575px) {
    .filter-options div:nth-child(5) {
        grid-column: 1/13;
    }
} */

.filter-search {
    width: 100%;
    height: 48px;
    border-radius: 25px;
    background-color: var(--white);
    border: 1px solid #652d90;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0px 16px;
    gap: 12px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.filter-search:focus-within {
    border-color: var(--primary);
}

.filter-search input {
    width: 100%;
    height: 100%;
    font-size: 15px;
    font-weight: 600;
    padding-left: 2px;
    line-height: 24px;
    color: #652d90;
}

.filter-search input::-webkit-input-placeholder {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    color: #652d90;
}

.filter-search input::-moz-placeholder {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    color: #652d90;
}

.filter-search input:-ms-input-placeholder {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    color: #652d90;
}

.filter-search input::-ms-input-placeholder {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    color: #652d90;
}

.filter-search input::placeholder {
    font-size: 15px;
    font-weight: 600;
    line-height: 24px;
    color: #652d90;
}

.filter-search button {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 800;
    color: #652d90;
}

.filter-select {
    width: 100%;
    height: 40px;
    position: relative;
}

.filter-select i {
    position: absolute;
    cursor: pointer;
    top: 16px;
    right: 12px;
    font-size: 12px;
    z-index: 1;
    color: var(--primary);
}

.filter-select select {
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    border-radius: 20px;
    padding: 0px 36px 0px 12px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-transform: capitalize;
    accent-color: var(--primary);
    background-color: var(--slate);
}

.filter-button {
    width: 100%;
}

.filter-button button {
    width: 100%;
    height: 40px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    border-radius: 20px;
    cursor: pointer;
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 6px;
    color: var(--red);
    background-color: #E3DAED;
}

.filter-button button i {
    display: none;
}

@media (max-width: 1199px) {
    .filter-button button i {
        display: block;
    }
}

.filter-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 32px 0px 24px;
    gap: 15px;
}

.filter-header h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
}

.filter-header button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: capitalize;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 20px;
    color: var(--text);
    background-color: var(--slate);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.filter-header button.active {
    color: var(--red);
    background-color: #E3DAED;
}

.restaurant .row>* {
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.rest-content {
    width: 100%;
    max-width: 100%;
    margin-bottom: 40px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.rest-content .pagination-nav {
    margin-top: 50px;
}

.rest-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0px 0px;
    border-bottom: 0px solid var(--border-gray);
}

.rest-media img {
    width: 100%;
    -webkit-mask-image: url("../../images/mask.svg");
    mask-image: url("../../images/mask.svg");
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.rest-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px !important;
    text-transform: capitalize;
}

@media (max-width: 575px) {
    .rest-name {
        font-size: 23px;
    }
}

.rest-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #808080;
}

.rest-review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin-bottom: 18px;
    gap: 5px;
}

.rest-review i {
    font-size: 14px;
    color: var(--gray);
}

.rest-review i.active {
    color: var(--yellow);
}

.rest-review span {
    font-size: 10px;
    font-weight: 600;
    color: #4D4D4D;
    line-height: 20px;
}

.rest-location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3px;
}
.rest-location svg {
    width: 45px;
}
.rest-location span {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    line-height: 20px;
}

.rest-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
}

.rest-book-btn {
    height: 34px;
    padding: 10px 14px;
    border-radius: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    gap: 10px;
    color: var(--white);
    background-color: var(--primary);
}

.rest-info-btn {
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #E3DAED;
    cursor: pointer;
}

.rest-voucher {
    padding: 16px 0px;
}

.rest-voucher button {
    padding: 9px 18px;
    border-radius: 30px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    color: var(--blue);
    background-color: #E2F8FF;
}

.rest-voucher p {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}

.rest-menu-wrapper {
    position: relative;
    background-color: var(--white);
}

.pos-support-grid {
    position: relative;
    min-height: 100vh;
}

/*.rest-menu-wrapper-py {*/
/*    padding: 40px 0;*/
/*}*/

.product-category-title {
    color: #652C92;
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    padding: 10px 29px 10px 10px;
    margin-bottom: 10px;
    background-color: #ffffff;
    border-radius: 10px;
}
.sctopmob {
    padding-top: 20px;
}
.theiaStickySidebar .rest-menu-wrapper.active {
    /*position: fixed;*/
    /*top: 20px;*/
    left: unset;
}
@media (max-width: 767px) {
    .product-category-grid {
        margin-bottom: 20px;
    }
    .theiaStickySidebar .rest-menu-wrapper.active {
        /* <!-- position: fixed; --> */
        top: 60px;
        z-index: 99;
        background: #fff;
        width: 100%;
        left: 0;
        padding-bottom: 0;
    }
    .rest-menu-wrapper-py {
        padding: 0;
    }
    .product-category-title { 
        margin-top: 0;
    }
    
}

.rest-menu-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    width: 100%;
}
.rest-menu-group .rest-swiper-blk {
    width: 100%;
}

.rest-menu-group .swiper-slide {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 16px 0px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: var(--text);
    position: relative;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.rest-menu-group .swiper-slide.active {
    color: var(--heading);
}

.rest-menu-group .swiper-slide.active::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 4px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    background-color: var(--primary);
}

.rest-menu-group .rest-swiper-prev,
.rest-menu-group .rest-swiper-next {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 12px;
    cursor: pointer;
    color: var(--text);
    background-color: var(--slate);
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    text-align: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.rest-menu-group .rest-swiper-prev:hover,
.rest-menu-group .rest-swiper-next:hover {
    color: var(--white);
    background-color: var(--primary);
}

.rest-menu-group .swiper-button-disabled {
    cursor: not-allowed;
}

.rest-menu-group .swiper-button-disabled:hover {
    color: var(--text);
    background-color: var(--slate);
}

.booking {
    padding: 16px 0px 50px;
}

.booking .container {
    max-width: 800px;
}

.booking-paginate {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 18px;
    margin-bottom: 16px;
    color: var(--heading);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.booking-paginate:hover {
    color: var(--primary);
}

.booking-paginate i {
    font-size: 18px;
    color: var(--primary);
}

.booking-paginate span {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
}

.booking-group {
    display: grid;
    grid-gap: 24px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
}

@media (min-width: 0px) and (max-width: 650px) {
    .booking-group {
        display: grid;
        grid-gap: 24px;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
    }
}

.booking-fieldset {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background-color: var(--white);
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

@media (min-width: 0px) and (max-width: 650px) {
    .booking-fieldset {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

.booking-fieldset legend {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: var(--heading);
}

.checkout {
    padding: 16px 0px 50px;
}

.checkout .container {
    max-width: 880px;
}

.checkout-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px;
}

@media (max-width: 767px) {
    .checkout-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.checkout-delivery {
    width: 455px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 991px) {
    .checkout-delivery {
        width: 50%;
    }
div#cartModal {
    z-index: 9999999999;
}
}

@media (max-width: 767px) {
    .checkout-delivery {
        width: 100%;
    }
}

.checkout-card {
    width: 100%;
    padding: 16px;
    margin-bottom:0px;
    /*margin-bottom: 24px;*/
    border-radius: 12px;
    background-color: var(--white);
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

.checkout-card-head {
    margin-bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
}

.checkout-card-head h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.checkout-card-head button {
    gap: 6px;
    padding: 6px 12px;
    border-radius: 30px;
    background-color: #E3DAED;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.checkout-card-head button:hover {
    background-color: var(--primary);
}

.checkout-card-head button:hover svg {
    fill: var(--white);
}

.checkout-card-head button:hover span {
    color: var(--white);
}
div#googleMap {
    border-radius: 10px;
    margin-bottom: 3px;
}
.checkout-card-head button svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    fill: var(--primary);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.checkout-card-head button span {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    text-transform: capitalize;
    color: var(--primary);
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.checkout-fieldset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.checkout-label {
    --inside-space: 12px;
    border-radius: 8px;
    padding: var(--inside-space);
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    cursor: pointer;
    position: relative;
    isolation: isolate;
    gap: 16px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.checkout-label:has(input:checked) {
    border-color: var(--primary);
}

.checkout-label input {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.checkout-label dl {
    width: 100%;
    max-width: 280px;
}

.checkout-label dl dt {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 6px;
    color: var(--blue);
}

.checkout-label dl dd {
    font-size: 12px;
    line-height: 24px;
}

.checkout-label div {
    position: absolute;
    top: var(--inside-space);
    right: var(--inside-space);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    gap: 15px;
}

.checkout-label div button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.checkout-morebtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    gap: 8px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    text-transform: capitalize;
    color: var(--primary);
}

.checkout-summary {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--white);
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .checkout-summary {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .checkout-summary {
        width: 100%;
    }
}

.checkout-summary-head {
    padding: 20px 16px;
    text-align: center;
}

.checkout-summary-head h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
    color: var(--blue);
}

.checkout-summary-head p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.checkout-summary-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
    border-bottom: 1px solid var(--border-slate);
}

.checkout-summary-item:first-child {
    border-top: 1px solid var(--border-slate);
}

.checkout-summary-item h3 {
    font-size: 12px;
    font-weight: 500;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 2px;
    background-color: var(--secondary);
    color: var(--white);
    gap: 2px;
}

.checkout-summary-item h3 i {
    font-size: 8px;
    font-weight: 700;
}

.checkout-summary-item dl {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    overflow: hidden;
}

.checkout-summary-item dl dt {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-transform: capitalize;
    cursor: pointer;
    color: var(--primary);
}

.checkout-summary-item dl dd {
    font-size: 12px;
}

.checkout-summary-item h4 {
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
    white-space: nowrap;
    text-transform: uppercase;
}

.checkout-summary-price-list {
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
}

.checkout-summary-price-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text);
}

.checkout-summary-price-list li:last-child {
    font-weight: 600;
    color: var(--secondary);
}

.settings {
    padding: 24px 0px 50px;
}

.settings-group {
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 24px;
    background-color: var(--white);
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

.settings-group.active .settings-navs {
    padding: 20px 0px;
    display: block;
}

.settings-btn {
    width: 100%;
    padding: 12px 0px;
    color: var(--primary);
    background-color: rgba(238, 29, 72, 0.1);
    font-size: 12px;
    font-weight: 600;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    gap: 6px;
}
.reg-log-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 25px 0;
    color: #fff;
}
.reg-log-grid a {
    border: 1px solid #fff;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    width: 50%;
    text-align: center;
    padding: 10px 0;
    border-radius: 5px;
    transition: all 0.5s;
}
.reg-log-grid a:hover {
    background: rgba(255,255,255,0.2);
}

@media (max-width: 991px) {
    .settings-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.settings-navs {
    padding: 20px 0px;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

@media (max-width: 991px) {
    .settings-navs {
        padding: 0px;
        display: none;
    }
}

.settings-navs a,
.settings-navs button {
    gap: 20px;
    width: 100%;
    padding: 12px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}

.settings-navs a:hover,
.settings-navs button:hover {
    background-color: var(--primary);
}

.settings-navs a:hover svg,
.settings-navs button:hover svg {
    stroke: var(--white);
}

.settings-navs a:hover span,
.settings-navs button:hover span {
    color: var(--white);
}

.settings-navs a.active,
.settings-navs button.active {
    background-color: var(--primary);
}

.settings-navs a.active svg,
.settings-navs button.active svg {
    stroke: var(--white);
}

.settings-navs a.active span,
.settings-navs button.active span {
    color: var(--white);
}

.settings-navs a svg,
.settings-navs button svg {
    stroke: #6E7191;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.settings-navs a span,
.settings-navs button span {
    font-size: 16px;
    font-weight: 500px;
    text-transform: capitalize;
    text-align: left;
    color: var(--secondary);
}

.settings-title {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.profile-user {
    padding: 24px;
    margin-bottom: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-gray);
}

@media (max-width: 575px) {
    .restaurant-card-info-mpb {
        margin-bottom: 15px;
    }
    .profile-user {
        padding: 16px;
    }
}

.profile-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-slate);
}

@media (max-width: 575px) {
    .profile-meta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 16px;
    }
}

.profile-meta img {
    width: 84px;
    border-radius: 12px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.profile-meta dt {
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.profile-meta dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 56px;
    -moz-column-gap: 56px;
    column-gap: 56px;
    row-gap: 20px;
}

.profile-meta span {
    font-size: 14px;
    font-weight: 600;
}

.profile-meta small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.profile-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
}

.profile-data li {
    width: 100%;
    max-width: 250px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .profile-data li {
        max-width: 200px;
    }
}

@media (max-width: 575px) {
    .profile-data li {
        max-width: 100%;
    }
}

.profile-data li span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 2px;
}

.order-details-title {
    text-transform: capitalize;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 34px;
    gap: 12px;
}

.order-details {
    padding: 16px;
    border-radius: 12px;
    background-color: var(--white);
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}

.order-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 10px;
}

@media (max-width: 575px) {
    .order-meta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.order-meta li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 2px;
}

.order-meta li span {
    font-size: 12px;
}

.order-meta li span:first-child {
    font-weight: 500;
    text-transform: capitalize;
}

.order-meta li a {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--focus) !important;
}

.order-track {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.order-track li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.order-track li:first-child .line::before {
    display: none;
}

.order-track li:last-child .line::after {
    display: none;
}

.order-track li.tracked.active .line::after {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.order-track li.tracked .line::before,
.order-track li.tracked .line::after {
    background-color: var(--primary);
}

.order-track li.tracked .fa-circle-check {
    font-size: 16px;
    color: var(--white);
    background-color: var(--primary);
}

@media (max-width: 575px) {
    .order-track li.tracked .fa-circle-check {
        font-size: 12px;
    }
}

.order-track li .line {
    width: 100%;
    height: 6px;
    position: relative;
}

.order-track li .line::before,
.order-track li .line::after {
    content: "";
    width: 50%;
    display: inline-block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    background-color: var(--border-slate);
}

.order-track li .line::before {
    left: 0px;
}

.order-track li .line::after {
    right: 0px;
}

.order-track li .fa-circle-check {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 0px;
    margin-top: -18px;
    margin-bottom: 10px;
    position: relative;
    background-color: var(--gray);
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
}

@media (max-width: 575px) {
    .order-track li .fa-circle-check {
        margin-top: -16px;
        width: 25px;
        height: 25px;
        line-height: 25px;
        border-radius: 50%;
        text-align: center;
    }
}

.order-track li .title {
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    text-transform: capitalize;
}

@media (max-width: 1199px) {
    .order-track li .title {
        width: 70px;
        font-size: 12px;
        white-space: pre-wrap;
    }
}

@media (max-width: 575px) {
    .order-track li .title {
        width: 55px;
        font-size: 10px;
        font-weight: 500;
    }
}

.order-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 767px) {
    .order-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.order-box {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-slate);
}

.order-box.address .order-box-item b {
    width: 70px;
}

.order-box.status .order-box-item b {
    width: 120px;
}

.order-box-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 16px;
}

.order-box-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.order-box-item {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 5px;
}

.order-box-item b {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: 500;
    display: inline-block;
    text-transform: capitalize;
    color: #59575E;
}

.table-order {
    overflow: visible;
}

.table-order tbody tr:nth-child(even) {
    background-color: var(--slate);
}

.table-order tbody tr:last-child>*:first-child {
    border-left: 1px solid var(--border-slate);
}

.table-order tbody tr:last-child>*:last-child {
    border-right: 1px solid var(--border-slate);
}

.table-order tbody tr td {
    font-size: 14px;
    vertical-align: top;
    border-bottom: none;
}

@media (max-width: 767px) {
    .table-order tbody tr td {
        border: none !important;
        border-left: 1px solid var(--border-slate) !important;
        border-right: 1px solid var(--border-slate) !important;
    }
}

.table-order tbody tr td:first-child {
    border-left-width: 1px;
}

.table-order tbody tr td:last-child {
    border-right-width: 1px;
}

@media (max-width: 767px) {

    .table-order tbody tr td:nth-child(1),
    .table-order tbody tr td:nth-child(2) {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .table-order tbody tr td:nth-child(1) {
        padding-bottom: 12px !important;
    }
}

@media (max-width: 767px) {
    .table-order tbody tr:first-child td:first-child {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        border-top: 1px solid var(--border-slate) !important;
    }
}

@media (max-width: 767px) {
    .order-table-item {
        width: 100%;
        margin-top: -4px;
    }
}

.order-table-item dt {
    font-weight: 500;
    text-transform: capitalize;
    white-space: pre-wrap;
    margin-bottom: 6px;
}

.order-table-item dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-transform: capitalize;
    font-weight: 400;
    gap: 6px;
}

.order-table-price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
}

@media (max-width: 767px) {
    .order-table-price {
        width: 100%;
        margin-top: -4px;
    }
}

.order-price-list {
    overflow: hidden;
    margin-bottom: 40px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-left: 1px solid var(--border-slate);
    border-right: 1px solid var(--border-slate);
    border-bottom: 1px solid var(--border-slate);
}

.order-price-list li {
    padding: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.order-price-list li:first-child {
    border-top: 1px solid var(--border-slate);
}

.order-price-list li:nth-child(even) {
    background-color: var(--slate);
}

.order-price-list li span {
    font-size: 14px;
    text-transform: capitalize;
    color: #160040;
}

.order-price-list li span:first-child {
    font-weight: 500;
}

.order-price-list li:last-child span {
    font-weight: 700;
    color: var(--primary);
}

.order-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
}

.order-btns button {
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: capitalize;
    color: var(--white);
    gap: 10px;
}

.order-btns button.cancel {
    background-color: var(--red);
}

.order-btns button.print {
    background-color: var(--blue);
}

.terms .container {
    max-width: 750px;
    padding: 45px 16px;
}

.terms .container h3 {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 32px;
}

.terms .container small {
    display: block;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 16px;
}

.terms .container p {
    font-size: 12px;
    margin-bottom: 32px;
}

.terms .container p span {
    margin-top: 16px;
}

.terms .container h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.pdt-cat-wrapper .pdt-item-blk {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    row-gap: 10px;
}
.pdt-cat-wrapper .pdt-item-blk .item-img-style {
    border-radius: 100%;
    width: 60px;
    height: 60px;
    display: flex;
    margin: 0px auto 5px;
    align-items: center;
    justify-content: center;
}
.pdt-cat-wrapper .pdt-item-blk .item-img-style img {
    width: 44px;
    height: 44px;
}
.pdt-cat-wrapper .pdt-item-blk h5 {
    font-family:"Maven Pro", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #8d8d8d;
}
.pdt-cat-wrapper .swiper-button-next,
.pdt-cat-wrapper .swiper-button-prev {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 12px;
    cursor: pointer;
    color: var(--text);
    background-color: var(--slate);
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    text-align: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.pdt-cat-wrapper .swiper-button-next:hover,
.pdt-cat-wrapper .swiper-button-prev:hover {
    color: var(--white);
    background-color: var(--primary);
}
.pdt-cat-wrapper .swiper-button-next:after,
.pdt-cat-wrapper .swiper-button-prev:after {
    content:"";
    display: none;
}
.pdt-cat-wrapper .swiper-button-next,
.pdt-cat-wrapper .swiper-button-prev {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 12px;
    cursor: pointer;
    color: var(--text);
    background-color: var(--slate);
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    text-align: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.pdt-cat-wrapper .swiper-button-next:hover,
.pdt-cat-wrapper .swiper-button-prev:hover {
    color: var(--white);
    background-color: var(--primary);
}
.pdt-cat-wrapper .swiper-button-next:after,
.pdt-cat-wrapper .swiper-button-prev:after {
    content:"";
    display: none;
}
.feature-swiper img {
    height: 70px;
    margin-bottom: 25px;
}
.header-cart img {
    width: 32px;
}
.offer-card {
    border-radius: 10px;
    background: var(--primary);
    color: #ffffff;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    z-index: 50;
}
.offer-card::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .32);
    -webkit-transition: -webkit-transform 1.8s;
    transition: -webkit-transform 1.8s;
    transition: transform 1.8s;
    transition: transform 1.8s, -webkit-transform 1.8s;
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
    z-index: 99;
}
.offer-card:hover::before {
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
}
.offer-card.skin-first {
    background: #F15A24;
    color: #ffffff;
}
.offer-card.skin-second {
    background: #006837;
    color: #ffffff;
}
.offer-card.skin-second .flex-grid-blk .flex-sec-right:before {
    background: #8CC747;
}
.offer-card.skin-third {
    background: #ED1E79;
    color: #ffffff;
}
.offer-card.skin-third .flex-grid-blk .flex-sec-right:before{
    background: #F6ADCD;
}
.offer-card h5, .offer-card span {
    color: #ffffff;
}
.offer-card h5 {
    font-size: 16px;
    margin-bottom: 5px;
}
.offer-card span {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}
.offer-card a.cta-btn-xs {
    border-radius: 50px;
    background-color: #ffffff;
    color: var(--primary);
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 500;
}
.offer-card .flex-grid-blk {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.offer-card .flex-grid-blk .flex-sec-left {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    padding:15px 0 15px 15px;
}
.offer-card .flex-grid-blk .flex-sec-left .top-info {
    margin-bottom: auto;
}
.offer-card .flex-grid-blk .flex-sec-right{
    width: 170px;
    position: relative;
    text-align: center;
    padding: 25px 15px;
    z-index: 1;
}

.offer-card .flex-grid-blk .flex-sec-right:before{
    background-color: #F6C452;
    content: "";
    border-radius: 77px 0 0 77px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.offer-card .flex-grid-blk .flex-sec-right img {
    max-width: 120px;
}

.order-card a {
    display: block;
    position: relative;
}
.order-card a .card-img-blk {
    overflow: hidden;
}
.order-card a .card-img-blk img {
    webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    overflow: hidden;
}
.order-card a:hover .card-img-blk img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    

}
/* .order-card a::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .32);
    -webkit-transition: -webkit-transform 1.8s;
    transition: -webkit-transform 1.8s;
    transition: transform 1.8s;
    transition: transform 1.8s, -webkit-transform 1.8s;
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
    z-index: 99;
}
.order-card a:hover::before {
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
} */
.order-blk .order-card {
    border-radius: 15px;
    overflow: hidden;
}
.order-blk .order-card .count-info-blk {
    display: flex;
    align-items:flex-start;
    padding:10px 0px;
    gap: 10px;
}
.order-blk .order-card .count-info-blk h2 {
    font-size: 50px;
    color: #F6ADCD;
    margin: 0;
    margin-top: 5px;
    line-height: 30px;
    font-weight: 600;
}
.order-blk .order-card .count-info-blk .item-info {
    color: #ED1E79;
}
.order-blk .order-card .count-info-blk .item-info p {
    color: #ED1E79;
    font-weight: 600;
}
.order-blk .order-card .count-info-blk .item-info .ratings {
    font-weight: 600;
}
.order-blk .order-card .count-info-blk .item-info .ratings svg {
    fill: #ED1E79;
}
.order-blk .order-card img {
    min-height: 400px;
    object-fit: cover;
}
.additions-blk {
    padding: 50px;
    margin-bottom: 20px;
}
.additions-blk .content-info-blk h3 {
    font-size: 30px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 20px;
    font-family: "Kalam", cursive;
    color: #E5DEEF;
}
.additions-blk .content-info-blk img {
    margin-bottom: 20px;
    width: 86px;
}
.additions-blk .content-info-blk p {
    font-size: 38px;
    font-weight: 400;
    line-height: 40px;
    font-family: "Kalam", cursive;
    color: #E5DEEF;
    margin: 0;
}
.radius-20 {
    border-radius: 20px;
}
.additions-wrapper {
    margin: 0 -2px;
}
.additions-wrapper .content h4 {
    color: #ffffff;
}
.additions-wrapper .content .ratings {
    color: #ffffff;
}
.additions-wrapper .content .ratings span {
    color: #ffffff;
}
.restaurant .restaurant-card .ratings .active {
    fill: var(--primary);
    stroke: var(--primary);
}
.flex-title {
    display: flex;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.flex-title h5 {
    font-family: "Kalam", cursive;
    font-size: 25px;
    color: #6A2683;
    font-weight: 600;
}
.btn-view {
    padding: 7px 14px;
    background-color: #E3DAED;
    color: #6A2683;
    font-weight: 500;
    border-radius: 5px;
}
.btn-view:hover, .btn-view:focus {
    background-color: #6A2683;
    color: #E3DAED;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    pointer-events: inherit;
}
.swiper-button-next.swiper-button-disabled:hover , .swiper-button-prev.swiper-button-disabled:hover {
    background-color: none;
}
.top-order-wrapper .swiper-button-next,
.top-order-wrapper .swiper-button-prev {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 12px;
    cursor: pointer;
    color: var(--text);
    background-color: var(--slate);
    width: 28px;
    height: 28px;
    margin-top: 0;
    line-height: 28px;
    border-radius: 50%;
    text-align: center;
    transition: all linear 0.3s;
    -webkit-transition: all linear 0.3s;
    -moz-transition: all linear 0.3s;
    -ms-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
}
.top-order-wrapper .swiper-button-next:hover,
.top-order-wrapper .swiper-button-prev:hover {
    color: var(--white);
    background-color: var(--primary);
}
.top-order-wrapper .swiper-button-next:after,
.top-order-wrapper .swiper-button-prev:after {
    content:"";
    display: none;
}
.arrow-blk {
    width: 100px;
}
.header-selection-btn img {
    width: 20px;
    height: 20px;
}
.new-filter-group {
    margin-top: 40px;
}
.new-filter-group .filter-options {
    line-height:0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 0px;
}
.head-full-flex {
    gap: 4px;
}
.dropdownParent .clearBtn {
    padding: 3px 7px;
}
.new-filter-group .filter-search {
    width: auto;
    max-width:180px;
    height: 34px;
      padding: 0px 12px;
    gap: 1px;
    background: #E3DAED;
    border: 1px solid #E3DAED;
}
.new-filter-group .filter-button {
    width: auto;
    min-width: 100px;
}
.new-filter-group .filter-search button {
    font-size: 16px;
    font-weight: 600;
    color: #6A2683;
}
.new-filter-group .filter-search input {
    font-size: 14px;
    font-weight: 500;
    color: #6A2683;
}
.new-filter-group .filter-search input::placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #6A2683;
}
.new-filter-group .filter-button button {
    font-size: 14px;
    min-width: 80px;
    height: 34px;
    line-height: 22px;
    width: auto;
    float: left;
}
.new-filter-group .filter-select {
    width: 100%;
    height: 34px;
    /*max-width: 175px;*/
}
.new-filter-group .filter-select {
    margin: 0px 3px;
}
.new-filter-group .custonDropdown,
.new-filter-group .custonDropdown:hover, 
.new-filter-group .custonDropdown.show, 
.new-filter-group .custonDropdown.show:focus, 
.new-filter-group .custonDropdown.active, 
.new-filter-group .custonDropdown:first-child:active, 
.new-filter-group .custonDropdown:focus-visible
{
    font-size: 14px;
    font-weight: 500;
    color: #6A2683;
    background: #E3DAED;
    border: 1px solid #E3DAED;
    justify-content: start !important;
    width: 100%;
    height: 34px;
    line-height: 18px;
}
.filter-select .dropdown-menu {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .18);
    border-radius: 4px;
    box-shadow: 0 12px 35px 2px rgba(0, 0, 0, .12);
    padding: 20px 20px 8px;
    overflow-y: auto;
    white-space: normal;
    width: 460px;
}
.radiousTxt .form-group {
    margin-bottom: 14px;
}
.new-filter-group .panel-buttons {
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* New Home Page */

.banner-bg {
    width: 100%;
    height: 650px;
}
.banner-bg-one {
 height: 90vh;
    background-size: contain !important;
    background: url(../../images/new-home/banner-01.jpg) no-repeat top right;
    background-size: cover !important;
}
.filter-search a{
    font-size: 14px;
    color:#6b2983;
    width: max-content;
    font-weight:500;
    }

.filter-search{
    margin:0px 0px;
    }
.banner-bg-two {
    height: 90vh;
    background: url("../../images/new-home/banner-02.jpg") no-repeat top right;
    background-size: cover;
}
.banner-bg-three {
    height: 90vh;
    background: url("../../images/new-home/banner-03.jpg") no-repeat top right;
    background-size: cover;
}
.banner-bg-four {
    height: 90vh;
    background: url("../../images/new-home/banner-04.jpg") no-repeat top right;
    background-size: cover;
}
.mySwiper .swiper-slide {
    width: 25%;
    height: auto;
    cursor: pointer;
    transition: 0.7s;
}
/*.mySwiper .swiper-slide-thumb-active {*/
/*    background: #ED1E79;*/
/*    transition: 0.7s;*/
/*}*/
/*.mySwiper .swiper-slide:hover {*/
/*    background: #ED1E79;*/
/*    transition: 0.7s;*/
/*}*/
/*.mySwiper .swiper-slide-thumb-active:nth-child(2) {*/
/*    background: #ffc233;*/
/*    transition: 0.7s;*/
/*}*/
/*.mySwiper .swiper-slide:nth-child(2):hover {*/
/*    background: #ffc233;*/
/*    transition: 0.7s;*/
/*}*/
/*.mySwiper .swiper-slide-thumb-active:nth-child(3) {*/
/*    background: #77c7cf;*/
/*    transition: 0.7s;*/
/*}*/
/*.mySwiper .swiper-slide:nth-child(3):hover {*/
/*    background: #77c7cf;*/
/*    transition: 0.7s;*/
/*}*/
/*.mySwiper .swiper-slide-thumb-active:nth-child(4) {*/
/*    background: #94bf58;*/
/*    transition: 0.7s;*/
/*}*/
/*.mySwiper .swiper-slide:nth-child(4):hover {*/
/*    background: #94bf58;*/
/*    transition: 0.7s;*/
/*}*/
.new-flex-banner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height:90vh;
    place-content: center;
}
.new-flex-banner h1 {
    /* font-family: "Kalam", cursive; */
    font-size: 50px;
    font-weight: 800;
    color: #731f80;
   line-height: 1;
   margin-bottom:80px;
    /* display: flex; */
   /* align-items:flex-start; */
  /* //  margin-bottom: 10px;// */
}
.new-flex-banner .nuu-logo {
    margin: 0px 10px 25px 10px;
    width: 115px;
}
.new-flex-banner h6 {
    font-size: 41px;
    font-weight: 400;
    line-height: 38px;
    margin-left: 80px;
    margin-bottom: 70px;
    font-family: "Kalam", cursive;
    color: #A67DB5;
}
.new-flex-banner h2 {
    font-size: 62px;
    font-weight: bold;
    color: #FFF;
    text-transform: uppercase;
    margin-bottom: 48px;
}
.new-flex-banner h2 img {
    margin-right: 15px;
    width: 80px;
}
.new-flex-banner p {
    font-size: 24px;
    font-weight: 600;
    color: #FFF;
    max-width: 550px;
    line-height: 30px;
    margin-bottom: 60px;
}
.new-flex-banner .banner-search input {
    font-size: 18px;
    color: #231F20;
    padding: 0;
}
.new-flex-banner .banner-search input::placeholder {
    font-size: 18px;
    color: #231F20;
}
.new-flex-banner .banner-search button {
    font-size: 18px;
    font-weight: bold;
}
.banner-text {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    /* padding: 50px; */
    color: #FFF;
    background: transparent;
}
/* .banner-text-icon {
    height: 60px;
    padding-bottom: 10px;
} */
 .how-it-wro h5{
    padding:10px 0px;
 }
.banner-text-icon img {
    filter: invert(1) brightness(100);
    width: 40px;
}
.banner-text .locate-icon {
    width: 27px;
}
.banner-text h4 {
    font-size: 20px;
    font-weight: bold;
    color: #FFF;
    margin-bottom: 13px;
}
.banner-text p {
    font-size: 14px;
    font-weight: 400;
    color: #FFF;
    line-height: normal;
    margin-bottom: 0;
}
.banner-tab-section {
    padding-top: 40px;
}
.order-list {
    text-align: center;
    margin-bottom: 60px;
}
.marquee {
    height: 60px;
    width: 100%;
    overflow: hidden;
    position: relative;
    float: left;
    margin-bottom: 60px;
}
.marquee.stretched {
    width: 100%;
}
.marquee div {
    display: block;
    width: 300%;
    height: 60px;
    position: absolute;
    overflow: hidden;
    animation: marquee 23s linear infinite;
}
.marquee span {
    /* float: left;
    width: 25%; */
}
.marquee span b {
    font-size: 45px;
    font-weight: 400;
    color: #aca7e3;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 30px;
    padding-left: 30px;
    position: relative;
    text-transform: uppercase;
}
.marquee span b::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: #aca7e3;
    position: absolute;
    left: 0;
}
@keyframes marquee {
    0% { left: 0; }
    100% { left: -100%; }
}
.order-list .nav {
    margin: 0;
    padding: 0;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}
.order-list .nav li {
    font-size: 45px;
    font-weight: 400;
    color: #aca7e3;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 30px;
    padding-left: 30px;
    position: relative;
    text-transform: uppercase;
}
.order-list .nav li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: #aca7e3;
    position: absolute;
    left: 0;
}
.banner-tab-header {
    text-align: center;
    margin-bottom: 60px;
}
.banner-tab-header h6 {
    font-size: 20px;
    font-weight: 600;
    color: #FFF;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.banner-tab-header h2 {
    font-size: 36px;
    font-weight: 500;
    color: #FFF;
    margin-bottom: 0;
}
.banner-tabs .nav-tabs {
    border: 0;
}
.banner-tabs .nav-tabs .nav-item {
    width: 25%;
}
.banner-tabs .nav-tabs .nav-item .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0;
    padding: 50px;
    color: #FFF;
    background: transparent;
}
.banner-tabs .nav-tabs .nav-item.show .nav-link, 
.banner-tabs .nav-tabs .nav-link.active {
    background: #ED1E79;
}
.banner-tabs .nav-tabs .nav-item.show .nav-link, 
.banner-tabs .nav-tabs .active-yellow.active {
    background: #ffc233;
}
.banner-tabs .nav-tabs .nav-item.show .nav-link, 
.banner-tabs .nav-tabs .active-blue.active {
    background: #77c7cf;
}
.banner-tabs .nav-tabs .nav-item.show .nav-link, 
.banner-tabs .nav-tabs .active-green.active {
    background: #94bf58;
}
.banner-tabs .nav-tabs .nav-item .nav-link img {
    filter: invert(1) brightness(100);
    margin-bottom: 20px;
    width: 40px;
}
.banner-tabs .nav-tabs .nav-item .nav-link .locate-icon {
    width: 30px;
}
.banner-tabs .nav-tabs .nav-item .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    color: #FFF;
    margin-bottom: 14px;
}
.banner-tabs .nav-tabs .nav-item .nav-link p {
    font-size: 16px;
    font-weight: 400;
    color: #FFF;
    line-height: normal;
    margin-bottom: 0;
}
.new-register-section {
    background: #aca7e3;
}
.new-register-text h2 {
    font-size: 46px;
    font-weight: 500;
    color: #FFF;
    margin-bottom: 0;
}
.new-register-btn .btn {
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    display: block;
    border-radius: 50px;
    text-transform: uppercase;
    background: #ED1E79;
    padding: 11px 15px;
    border: 1px solid #ED1E79;
}
.new-register-btn .btn:hover {
    background: #ae0952;
    border: 1px solid #ae0952;
}
.new-choose-header {
    text-align: center;
    margin-bottom: 60px;
}
.new-choose-header h6 {
    font-size: 18px;
    font-weight: bold;
    color: #6A2683;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.new-choose-header h2 {
    font-size: 40px;
    font-weight: 500;
    color: #6A2683;
    margin-bottom: 0;
}
.new-choose-content {
    margin-left: 40px;
    margin-bottom: 60px;
}
.new-choose-icon {
    margin-bottom: 20px;
}
.new-choose-content h2 {
    font-size: 40px;
    font-weight: 500;
    color: #6A2683;
    max-width: 500px;
    margin-bottom: 15px; 
}
.new-choose-content .text-green {
    color: #94bf58;
}
.new-choose-content .text-pink {
    color: #ed1e79;
}
.new-choose-content .text-yellow {
    color: #ffc233;
}
.new-choose-content .text-light-blue {
    color: #77c7cf;
}
.new-choose-content h6 {
    font-size: 20px;
    font-weight: bold;
    color: #6A2683;
    margin-bottom: 25px; 
    text-transform: uppercase;
}
.new-choose-content p {
    font-size: 16px;
    font-weight: 500;
    color: #6A2683;
    line-height: normal;
    max-width: 395px;
    margin-bottom: 22px;
}
.new-choose-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.new-choose-content ul li {
    font-size: 16px;
    font-weight: 400;
    color: #6A2683;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 15px;
    margin-bottom: 2px;
    position: relative;
}
.new-choose-content ul li:last-child {
    margin-bottom: 0;
}
.new-choose-content ul li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 10px;
    background: #6A2683;
    position: absolute;
    left: 0;
}
.new-choose-img {
    margin-bottom: 60px;
}
.new-choose-img {
    overflow: hidden;
    position: relative;
    z-index: 50;
}
.new-choose-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .32);
    -webkit-transition: -webkit-transform 1.8s;
    transition: -webkit-transform 1.8s;
    transition: transform 1.8s;
    transition: transform 1.8s, -webkit-transform 1.8s;
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -200%, 0);
    z-index: 99;
}
.new-choose-img:hover::before {
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 200%, 0);
}
.new-choose-img-right {
    text-align: right;
}
.new-choose-img-left {
    text-align: left;
}
.footer-top {
    padding: 50px 0 20px;
    background: #e6dfef;
}
.new-footer-logo {
    margin-bottom: 20px;
}
.new-footer-logo img {
    width: 100px;
}
.footer-social-links {
    margin-bottom: 30px;
}
.footer-social-links a {
    display: inline-block;
    font-size: 14px;
    position: relative;
    margin-right: 8px;
  }
  .footer-social-links a:last-child {
    margin-right: 0;
  }
  .footer-social-links .hi-icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    font-size: 0px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #e6dfef;
    border: 1px solid #6A2683;
    background: #6A2683;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .footer-social-links .hi-icon:hover {
    color: #FFF;
    border: 1px solid #ed1e79;
    background: #ed1e79;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .footer-social-links .hi-icon:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 0;
    content: "";
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
  }
  .footer-social-links .hi-icon:before {
    speak: none;
    font-size: 14px;
    line-height: 35px;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    display: block;
    -webkit-font-smoothing: antialiased;
  }
  .footer-social-links .hi-icon {
    overflow: hidden;
    -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    -moz-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  }
  .footer-social-links .hi-icon:after {
    display: none;
  }
  .footer-social-links .hi-icon:hover:before {
    -webkit-animation: toTopFromBottom 0.5s forwards;
    -moz-animation: toTopFromBottom 0.5s forwards;
    animation: toTopFromBottom 0.5s forwards;
  }
  @-webkit-keyframes toTopFromBottom {
    49% {
      -webkit-transform: translateY(-100%);
    }
    50% {
      opacity: 0;
      -webkit-transform: translateY(100%);
    }
    51% {
      opacity: 1;
    }
  }
  @-moz-keyframes toTopFromBottom {
    49% {
      -moz-transform: translateY(-100%);
    }
    50% {
      opacity: 0;
      -moz-transform: translateY(100%);
    }
    51% {
      opacity: 1;
    }
  }
  @keyframes toTopFromBottom {
    49% {
      transform: translateY(-100%);
    }
    50% {
      opacity: 0;
      transform: translateY(100%);
    }
    51% {
      opacity: 1;
    }
}
.new-footer-widget {
    margin-bottom: 30px;
}
.new-footer-widget h4 {
    font-size: 20px;
    font-weight: 600;
    color: #6A2683;
    margin-bottom: 15px;
}
.new-footer-widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.new-footer-widget ul li {
    display: block;
    margin-bottom: 4px;
}
.new-footer-widget ul li:last-child {
    margin-bottom: 0;
}
.new-footer-widget ul li a {
    font-size: 16px;
    font-weight: 400;
    color: #6A2683;
}
.new-footer-widget ul li a:hover {
    color: #ED1E79;
}
.footer-copyright {
    padding: 10px 0;
    background: #6A2683;
    text-align: center;
}
.footer-copyright ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-copyright ul li {
    font-size: 14px;
    color: #e6dfef;
    margin-right: 15px;
    display: inline-block;
}
.footer-copyright ul li:last-child {
    margin-right: 0;
}
.footer-copyright ul li::after {
    color: #e6dfef;
    content: "|";
    font-weight: 300;
    position: relative;
    left: 10px;
}
.footer-copyright ul li:last-child::after {
    content: "";
}
.footer-copyright ul li a {
    font-size:14px;
    color: #e6dfef;
}
.footer-copyright ul li a:hover {
    color: #ED1E79;
}
.animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
  }
  
  @-webkit-keyframes fadeInLeft {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  .fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }
  
  @-webkit-keyframes fadeInRight {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(100%, 0, 0);
      transform: translate3d(100%, 0, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  .fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }
  
  @-webkit-keyframes fadeInDown {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  .fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
  }
  
  @-webkit-keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  .filter-button {
    display: flex;
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.default-padding {
    padding: 40px 0 20px 0px;
}
.default-padding.menuslider {
    padding-top: 10px;
}
.rest-media-partner-logo {
    position: absolute;
    z-index: 1;
    bottom: 50px;
    left: 25px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rest-media.rest-media-with-logo a {
    position: relative;
}

.rest-media.rest-media-with-logo .rest-media-partner-logo img {
    height: auto;
    width: auto;
    border-radius:100px;
    max-width: 100%;
}
.new-category-section {
    padding-bottom: 60px;
}
.new-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
}
.bg-theme-pink {
    background: #ed1e79;
}
.new-title h5 {
    font-size: 20px;
    color: #FFF;
    font-weight: 600;
    margin-bottom: 0;
}
.top-order-wrapper .new-arrow-blk .swiper-button-prev {
    left: 30px;
}
.top-order-wrapper .new-arrow-blk .swiper-button-next {
    right: 0;
}
.top-order-wrapper .new-arrow-blk .swiper-button-next, .top-order-wrapper .new-arrow-blk .swiper-button-prev {
    margin-top: -14px;
    background: transparent;
    font-size: 20px;
    color: #FFF;
}
.flex-title-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.flex-title-info h5 {
    font-size: 20px;
    color: #6A2683;
    font-weight: 600;
    margin-bottom: 0;
}
.border-gray {
    border-bottom: 1px solid #e6dfef;
    padding-bottom: 20px;
}

.item-wrapper-list {
    background-color: #F7F4F9;
}
.item-wrapper-list .rest-menu-wrapper {
    background-color: transparent;
}
.item-wrapper-list .rest-menu-group {
    border: 0px solid transparent;
}
.item-wrapper-list .rest-menu-group .swiper-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.item-wrapper-list .rest-menu-group .swiper-wrapper a {
    padding:10px;
    border-top:1px solid #c8c8c8;
    color: #666666;
    font-weight: 400;
    font-size: 14px;
}
.item-wrapper-list .rest-menu-group .swiper-wrapper a.active {
    font-weight: 600;
    color: #6A2683;
}
.item-wrapper-list .rest-menu-group .swiper-wrapper a:last-child {
    border-bottom:1px solid #c8c8c8;
}
.product-card-groupp .product-card {
    background-color: #ffffff;
    margin-bottom: 10px;
}
/* Registration css */
.register-banner{
    padding: 30px 0px 0px 0px;
}
.bf-form p{
color:white;   
font-size:22px;
padding:10px 0px 0px 0px;
font-weight: 500;
}
.bf-form h1{
    color:white;
    padding:0px 0px 30px 0px;
    font-size: 66px;
    font-weight: bold;
}
.register-banner .auth-content {
    background: #ffffff00;
    border: none !important;
}
.register-banner .auth-content label {
    display: none;
}
.register-banner .auth-content input {
    background: #C2AEDB;
}
.register-banner .auth-tabs {
    padding: 0px;
}
.register-banner input.form-btn.mt-2 {
    background: #ED1E79;
    border-radius: 10px;
    color: white;
    text-transform: uppercase;
}

.white-p p{
    color: #C2AEDB;
    font-weight: 500;
    font-size: 16px;
    padding-top:5px;
}
.white-p a{
    color: white;
    font-weight: 500;
    font-size: 16px;
}
.register-banner .col-12{
    padding: 0px 5px;
}
.align-center{
    align-items: center;
}
.bg-purp{
    
background: rgb(150,111,172);
background: radial-gradient(circle, rgba(150,111,172,1) 0%, rgba(82,5,112,1) 84%);
}
.bf-form2 h4{
 font-size:28px;
 font-weight: 800;
 color: #5C006E;
 padding: 8px 0px;
}
.bf-form2 {
    width: 74%;
}
.bf-form2 p{
    
 color: #4D4D4D;
 padding:8px 0px 15px 0px;
}
.bf-form2 a{
 color: #ffffff;
 padding: 8px 15px;
 border-radius:8px;
 background-color: #ED1E79;
}

.top-bot-padi{
    padding: 10px 0px !important;
}
.justify-space-around{
    justify-content: space-around;
}
.why-part h2{
    padding: 10px 0px 30px 0px;
    text-align: center;
    color:#742181;
}

.why-part h3{
    padding: 0px 0px 0px 0px;
    text-align: center;
    color:#742181;
}

.why-part h4{
    padding: 0px 0px 5px 0px;
    text-align: center;
    color:#742181;
}

.why-part p{
    padding: 10px 0px 20px 0px;
    text-align: center;
    color:#742181;
}

h2{
    font-size: 40px;
    font-weight: 800;
}
h3{
    font-size: 34px;
    font-weight: 800;
}
h4{
    font-size: 20px;
    font-weight: 700;
}
h5{
 font-weight: 700;
 font-size: 18px;
}
h6{
    font-weight: 600;
 font-size: 18px;
}
p{
    font-weight: 500;
    font-size: 16px;
}
a{ 
    font-size: 16px;
 font-weight: 500;
}
.bf-form3 h2{
    color:white;
    padding-bottom: 20px;
}
.bf-form3 h5{
    padding-top: 18px;
}
.bf-form3 h5{
    color:white;
    font-size: 24px;
}
.bf-form3 p{
    color:white;
    font-size: 20px;
    font-weight: 400;
}
.bf-form3 {
    max-width: 550px;
}
.register-banner-five{
 
    padding: 6% 0%;
}

#rest-sign img {
    height: auto;
    object-fit: unset;
}
.register-banner-six{
 background-color: #ED1E79;
 padding: 4% 0%;
}
.register-banner-six h2{
    color:white;
    font-size: 52px;
    font-weight: 700;
}
.register-banner-six a{
    font-size: 30px;
    background-color: #742181;
    padding: 10px 15px;
    color:white;
    border-radius: 10px;
}

.register-banner-five h2{
    color:#742181
}
.register-banner-five h4{
    color:#742181
}
.register-banner-five p{
    color:#742181
}
.owl-carousel.pdtSwiper .owl-nav.disabled,.owl-carousel.pdtSwiper .owl-nav  {
    display: flex;
    pointer-events: none;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    top: 0;
    position: absolute;
}

.owl-carousel.pdtSwiper .owl-nav button.owl-prev,.owl-carousel.pdtSwiper .owl-nav button.owl-next {
    pointer-events: auto;
    width: 28px;
    height: 28px;
    background: #f7f7fc;
    border-radius: 50%;
    color: #6e7191;
    font-size: 12px;
    transition: all 0.5s;
}

.owl-carousel.pdtSwiper .owl-nav button:hover {
    background: var(--primary);
    color: var(--white);
}
.banner-bg-grid {
    height: 100%;
    display: flex;
    margin-top: auto;
}
@media(max-width:425px){
    .bf-form3 {
        max-width: 100%;
    }
}
@media(max-width:575px){
    .order-blk .order-card .count-info-blk {
    gap: 15px !important;
}
.register-banner {
    padding: 50px 15px 50px 15px !important;
}
    .register-banner-five{
        padding: 15px 15px 10px 15px !important;
    }
    .bf-form3 {
        padding: 15px !important;
    max-width:100%;
}

}
@media(max-width:991px) and (min-width:767px){
    
/*    .filter-options {*/
/*    padding-bottom: 47% !important;*/
/*    }*/
/*    div#selected-options {*/
/*    margin-top: -45% !important;*/
/*}*/
    .bf-form h1{
        font-size: 32px !important;
    }
    .padding-tb-50{
        padding-top:40px !important;
        padding-bottom:40px !important;
        } 
    .row-big h3 {
        font-size: 28px !important;
    }
    .product-card-content{
        display: inline-block;
    }
    .product-card-groupp .product-card {
        align-items: flex-start;
    }
h2 {
    font-size: 28px;
}
h3 {
    font-size: 26px;
}
 h4 {
    font-size: 16px;
}
p {
    font-size: 14px;
}
}
@media(max-width:767px){
    /*   .filter-options {*/
    /*    padding-bottom: 58% !important;*/
    /*}*/
    /*div#selected-options {*/
    /*    margin-top: -56% !important;*/
    /*}*/
    .order-blk.order-blkcustom .order-card img {
        height: 400px;
        width: 100%;
    }
    .pdtSwiper .owl-dots {
        display: none;
    }
    .new-filter-group {
        margin-top: 20px;
    }
    .bf-form3 {
    margin: 0 auto;
    padding-bottom: 30px !important;
}
   p {
    font-size: 14px;
    }
h4 {
    font-size: 16px;
}
h3 {
    font-size: 24px;
}
    .bf-form h1{
        font-size: 32px;
    }
    
h2 {
    font-size: 28px;
}
.bf-form p{
    font-size: 18px;
}
.register-banner {
        padding: 30px 0px 0px 0px;
    }
a{
    font-size: 14px !important;
}
.new-footer-widget ul li{
    margin-bottom:0px !important;
}
.register-banner-six h2 {
    font-size: 28px;
}
.register-banner-six a,.bf-form3 p {
    font-size: 14px;
}
.bf-form3 h5 {
    padding-top: 15px;
    font-size: 18px;
}
.footer-social-links a {
    margin-right: 5px !important;
}
.footer-social-links .hi-icon {
    width: 25px !important;
    height: 25px !important;
}
.order{
    order: 1;
        padding: 15px 0px 0px 0px !important;
    }
    .sctopmob {
        scroll-margin-top: 50px;
    }
}
@media(max-width:1200px){
    .rest-name {
    font-size: 21px;
    }
    .bf-form2 {
    width: 100%;
}
.order-blk .order-card img {
    min-height: 465px;
}
    /* <!-- .register-banner .auth-content input {
        height: 40px;
    } --> */
    .margin-left {
        padding-left: 10px !important;
        padding-right: 20px !important;
    }
}
@media(max-width:1200px) and (min-width:575px){
    .bf-form3 p {
        font-size: 18px;
    }
    .bf-form3 h5 {
        padding-top: 11px;
    }
    .bf-form3 h5 {
        font-size: 20px;
    }

}
@media(max-width:1200px) and (min-width:767px){
   
    .bf-form h1{
    padding: 0px 0px 15px 0px;
    font-size: 40px;
    }
    .new-flex-banner h1{
        font-size:36px !important;
        margin-bottom:30px !important;
        }
        .new-flex-banner .nuu-logo {
            width: 95px;
        }
.bf-form p{
    font-size: 18px;
}
}
@media(max-width:991px){
    .why-part {
    padding: 10px 0px;
}
    .bf-form2 h4 {
    font-size: 22px;
    padding: 5px 0px;
}
.bf-form2 p {
    font-size: 14px;
    padding: 5px 0px;
}
.bf-form2 a {
    font-size: 14px;
    padding:10px;
}
}
.mb-16 {
    margin-bottom: 16px;
}
/* Responsive New Home Page */

@media (max-width: 1399.98px) {
    /*.new-filter-group .filter-select {*/
    /*    max-width: 150px;*/
    /*}*/
    .order-list .nav li {
        font-size: 40px;
    }
    .marquee {
        height: 50px;
        margin-bottom: 50px;
    }
    .marquee span b {
        font-size: 40px;
    }
}

@media (max-width: 1199.98px) {
    .new-flex-banner h1 {
        font-size: 56px;
        margin-bottom: 0;
    }
    .new-flex-banner h6 {
        font-size: 30px;
        margin-bottom: 40px;
    }
    .new-flex-banner h2 {
        font-size: 52px;
        margin-bottom: 24px;
    }
    .new-flex-banner p {
        font-size: 20px;
        max-width: 410px;
        line-height: normal;
        margin-bottom: 40px;
    }
    .new-flex-banner .banner-search input {
        font-size: 16px;
    }
    .new-flex-banner .banner-search input::placeholder {
        font-size: 16px;
    }
    .new-flex-banner .banner-search button {
        font-size: 16px;
    }
    .banner-tabs .nav-tabs .nav-item .nav-link {
        padding: 30px;
    }
    /*.new-filter-group .filter-options {*/
    /*    -webkit-box-pack: start;*/
    /*    -ms-flex-pack: start;*/
    /*    justify-content: start;*/
    /*    -webkit-column-gap: 5px;*/
    /*    -moz-column-gap: 5px;*/
    /*    column-gap: 5px;*/
    /*}*/
    .new-register-text h2 {
        font-size: 40px;
    }
    .new-register-btn .btn {
        font-size: 16px;
    }
    .order-list .nav li {
        font-size: 30px;
    }
    .marquee {
        height: 50px;
        margin-bottom: 40px;
    }
    .marquee span b {
        font-size: 30px;
    }
    .filter-select .dropdown-menu {
        width: 350px;
    }
}

@media (max-width: 991.98px) {
    .banner-bg {
        height: 500px;
    }
    .banner-bg-one, .banner-bg-two, .banner-bg-three, .banner-bg-four {
        height: 500px;
    }
    .new-flex-banner {
        min-height: 400px;
    }
    .mySwiper .swiper-wrapper {
        display: block;
    }
    .mySwiper .swiper-slide {
        width: 100% !important;
    }
    .banner-tabs .nav-tabs .nav-item {
        width: 50%;
    }
    .new-choose-content {
        margin-bottom: 40px;
    }
    .new-choose-icon img {
        width: 60px;
    }
    .new-choose-content h2 {
        font-size: 36px;
    }
    .new-choose-img {
        margin-bottom: 40px;
    }
    .new-choose-img img {
        width: auto;
    }
    .additions-blk {
        padding: 30px;
    }
    .content-info-blk {
        margin-bottom: 20px;
    }
    .banner-text-icon {
        height: auto;
        /* margin-bottom: 20px; */
    }
    .pdt-cat-wrapper {
        position: relative;
        overflow: inherit;
    }
    .filter-select .dropdown-menu {
        width: 300px;
        padding: 15px 15px 3px;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 40px 0;
    }
    .new-category-section {
        padding-bottom: 40px;
    }
    .banner-bg {
        height: 400px;
    }
    .banner-bg-one, .banner-bg-two, .banner-bg-three, .banner-bg-four {
        height: 400px;
    }
    .new-flex-banner h2 {
        font-size: 40px;
    }
    .new-flex-banner h2 img {
        width: 70px;
    }
    .new-flex-banner .nuu-logo {
        width: 100px;
    }
    .new-flex-banner p {
        font-size: 16px;
    }
    .banner-search {
        width: 100%;
        height: 48px;
    }
    .banner-tab-header {
        margin-bottom: 40px;
    }
    .banner-tab-header h6 {
        font-size: 18px;
    }
    .banner-tab-header h2 {
        font-size: 30px;
    }
    .mySwiper .swiper-slide {
        flex-shrink: inherit !important;
        width: 100% !important;
    }
    .banner-text {
        padding: 0px;
    }
    .order-list {
        margin-bottom: 40px;
    }
    .order-list .nav li {
        font-size: 26px;
    }
    .marquee span b {
        font-size: 26px;
    }
    .banner-tabs .nav-tabs .nav-item {
        width: 100%;
    }
    .banner-tabs .nav-tabs .nav-item .nav-link {
        padding: 20px;
    }
    .banner-text h4 {
        font-size: 18px;
    }
    .new-register-text {
        text-align: center;
        margin-bottom: 20px;
    }
    .new-register-text h2 {
        font-size: 28px;
    }
    .new-register-btn .btn {
        font-size: 14px;
        padding: 10px 15px;
    }
    .choose-row {
        flex-direction: column-reverse;
    }
    .new-choose-header {
        margin-bottom: 40px;
    }
    .new-choose-header h6 {
        font-size: 18px;
    }
    .new-choose-header h2 {
        font-size: 28px;
    }
    .new-choose-icon img {
        width: 50px;
    }
    .new-choose-content {
        text-align: center;
        margin-left: 0;
        margin-bottom: 30px;
    }
    .new-choose-content h2 {
        font-size: 28px;
        margin: 0 auto 10px;
    }
    .new-choose-content h6 {
        font-size: 18px;
        margin: 0 auto 20px;
    }
    .new-choose-content p {
        font-size: 16px;
        margin: 0 auto 20px;
    }
    .new-choose-content ul {
        width: 50%;
        margin: auto;
    }
    .new-choose-content ul li {
        font-size: 14px;
        text-align: left;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }
    .new-choose-content ul li::before {
        top: 8px;
    }
    .new-choose-img {
        text-align: center;
        margin-bottom: 30px;
    }
    .new-choose-img-right {
        text-align: center;
    }
    .footer-top {
        padding: 40px 0 20px;
        background: #e6dfef;
    }
    .new-footer-logo {
        margin-bottom: 20px;
    }
    .new-footer-widget {
        margin-bottom: 20px;
    }
    .footer-social-links {
        margin-bottom: 20px;
    }
    .additions-blk {
        padding: 20px;
        margin-bottom: 0;
    }
    .new-title h5 {
        font-size: 20px;
    }
    .flex-title-info {
        flex-wrap: wrap;
    }
    .flex-title-info h5 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .footer-contact {
        margin-top: 20px;
    }
    .footer-bottom {
        margin-top: 20px;
    }
    .offer-card {
        margin-bottom: 20px;
    }
    .offer-card.skin-third {
        margin-bottom: 0;
    }
    .filter-select .dropdown-menu {
        width: 280px;
    }
}

@media (max-width: 575.98px) {
    .banner-tab-section {
        padding-top: 30px;
    }
    .order-list .nav li {
        font-size: 24px;
        margin-right: 20px;
        padding-left: 20px;
    }
    .order-list .nav li::before {
        width: 8px;
        height: 8px;
    }
    .marquee {
        height: 40px;
        margin-bottom: 30px;
    }
    .marquee span b {
        font-size: 24px;
        margin-right: 20px;
        padding-left: 20px;
    }
    .marquee span b::before {
        width: 8px;
        height: 8px;
    }
}

/* new styles for home page*/



/* New style for home page version 2 added in 06-11 */

.bg-grey{
    background-color:#FAF8FC;
    }
    .bg-grey .banner-tab-header h2{
        color:#6A2583 !important;
        font-size:40px;
        font-weight: 700;
    }
    .bg-white-reg h2{
        color:#6A2583 !important;
        font-size:40px;
        font-weight: 700;
    }
    .bg-grey .marquee span b {
        font-size: 110px;
        /* opacity: 0.2; */
        font-weight: 800;
        color: #EBE3F3;
    }
    .bg-grey .marquee span b::before {
      width:25px;
      height: 25px;
        font-weight: 800;
        background-color: #EBE3F3;
    }
    .bg-grey .marquee div {
    height:150px;
    }
    .bg-grey .marquee{
    height: 150px;
    margin-top: -48px;
    }
    .bg-grey h5{
color:#692482;
font-size:20px;
}
.bg-white-reg p{
    color:#686768;
font-size:16px;
padding:10px 0px;
}
.bg-white-reg a{
    background-color: #EF1C79;
    color:white;
    font-size:16px;
padding:10px 50px;
border-radius: 30px;
}
.bg-grey p{
color:#686768;
font-size:16px;
}
.bg-grey .banner-tab-header{
margin-bottom: 10px;
}
.banner-text-icon img {
    filter: invert(0);
    }
    .banner-text .locate-icon {
    width: 40px;
}
.register-banner h6{
    color:white;
    font-size: 20px;
    font-weight: 700;
    padding:15px 0px 5px 0px;
}
.full-img img {
    max-width: 100%;
    width: 100%;
}
.register-banner {
    padding: 0px;
}
 /*.filter-options {*/
 /*   height: auto !important;*/
 /*   }*/
.register-banner {
   background-color: #692482 !important;
}
.des-none.mob-design-logo img {
    max-width: 100%;
    width: 100%;
}

@media(min-width:768px){
    .register-banner .banner-text {
        margin-left: 55px;
    }
.orderSwiper1 .rest-media-partner-logo{
    bottom: 30px !important;
}
    .des-none {
        display: none;
    }
.bg-grey .banner-text{
    padding: 30px 20px;
}

#review-style img {
    width: 42% !important;
}
}
@media(min-width:1156px){
.margin-left{
    margin-left:40px;
    width: 100%;
}

}
.des-blck{
    display:block;
}

@media(max-width:768px) and (min-width:575px){
    .display-small-flex p {
        font-size: 32px !important;
    }
    .swiper-sli {
    width: 65% !important;
    }
} 
   .mob-design-logo img{
        z-index: 1;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        padding: 5px;
    }
    .shop-modal-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
@media(max-width:768px){
    .mob-design-logo img {
        border-radius: 10px; 
        padding: 4px;
    }
     .swiper-sli {
        width:35% !important;
        margin: 0;
    }
    .form-select, .form-control {
    height: 33px !important;
    }
    .head-full-flex {
    width: 100%;
}
.header-auth-navs {
        width: 100%;
}
.header-auth {
    width: 100%;
}
.header-ful-res {
    width: 100%;
}
    section.item-wrapper-list.pb-5.rest-sec-pro .rest-info .mb-16 {
    margin-bottom: 0px !important;
}
    .swiper-sli {
        margin: 0 !important;
    }
    .orderSwiper1 .rest-media-partner-logo {
    bottom: 10px !important;
}
    .rest-media-partner-logo {
    width: 75px !important;
    height: 75px !important;
}
    .swiper-sli h3 {
    font-size: 18px !important;
}
.flex-title-info {
    margin-bottom: 10px !important;
}
#mycustom-sec{
    padding:10px 0px !important;
}


.swiper-sli {
        left: 10px !important;
        right: 0px;
        text-align: left;
        justify-content: left;
        margin: 0 auto;
    }
#mycustom-sec .custom-slide {
    height: 160px !important;
}
       .des-blck{
        display:none;
    }
    .dis-flez {
        gap: 5px !important;
    }

    div#selected-options {
        margin-top: 0px;
    }
    .header-cart sup {
    top: -5px !important;
    width: 73% !important;
    line-height: 13px !important;
    }
    .header-account-btn,
.header-selection-btn {
    gap: 1px !important;
}
.header-cart {
    width: unset;
}
    .hid-mob{
        display:none;
    }
 
    #review-style .spaci {
        margin: 15px 0px !important;
    }
    section#review-style {
        padding: 50px 0px !important;
    }
    .product-category-title {
        margin-bottom: 15px !important;
    }
    .product-card-groupp .product-card {
        margin-bottom: 15px !important;
    }
    .rest-sec-pro .box-paddig .display-flexi {
        padding-bottom: 0px;
    }
    .box-paddig .rest-review {
        padding-bottom: 10px;
    }
    .rest-location {
        padding-bottom: 0px;

    }
    .rest-title {
        margin-bottom: 10px;
    }
    .rest-info-btn {
        width: 26px;
        height: 26px;
    }
    section.customer-slider.bg-grey.padding-tb-50 {
        padding: 50px 0px !important;
    }
    .border-rated {
        padding: 15px 0px 10px 0px !important;
    }
    .mob-design-logo {
        width: 30%;
        margin-right: 15px;
    }
    .banner-lp-mb img{
        max-width:100%;
        width:100% !important;
    }

    section.auth.register-banner.bg-ligpu.padding-tb-50 {
        padding-top: 50px !important;
        padding-bottom: 20px !important;
    }
    .register-banner-five h4 {
        padding-bottom: 15px;
        padding-top: 15px;
    }
    .register-banner-six h2 {
        padding-bottom: 10px;
    }
    section#the-nuu-advantage {
        padding: 50px 15px 0px 15px !important;
    }
    section.auth.register-banner-five.bg-white.padding-tb-50 {
        padding-top: 50px !important;
    }
    section.auth.register-banner-five.bg-white.padding-tb-50 h2 {
        padding-top: 0px !important;
        padding-bottom: 10px !important;
    }
    section#the-nuu-advantage .top-bot-padi.bf-form3.margin-left.padding-tb-50 {
        padding-top: 0px !important;
        padding-bottom: 50px !important;
    }
    section#the-nuu-advantage p {
        padding-top: 15px !important;
    }
    section#the-nuu-advantage .bf-form3 h5 {
        padding-top: 30px !important;
    }
    .why-part .text-center {
        text-align: left !important;
        padding: 0px 10px;
    }
    
    .why-part h3 {
        text-align: left !important;
    }
    .why-part p {
        padding: 10px 0px 30px 0px !important;
    }
    .why-part h4 {
        text-align: left !important;
    }
    .why-part h2 {
        text-align: left !important;
    }
    .why-part p {
        text-align: left !important;
    }
            
    .why-part h2 {
        padding: 0px 0px 30px 0px !important;
    }
    section.auth.register-banner.bg-white h4 {
        padding-bottom: 30px !important;
        padding-top: 0px;
    }
    section.auth.register-banner.bg-white {
        padding: 50px 0px 50px 0px;
    }
    section.auth.register-banner.bg-purp {
        padding: 30px 0px 10px 0px !important
    }
    .auth-content {
        padding: 0px 15px;
    }
    section.auth.register-banner.bg-white p {
        padding-bottom: 30px;
    }
    .bf-form h1 {
        font-size: 26px;
    }
    .reg-log-grid {
        margin: 30px 0 !important;
    }
    .row.row-between {
        align-items: baseline;
        row-gap: 5px;
    }
    section.auth.register-banner.bg-purp h1 {
        padding: 30px 0px;
    }
    .auth-header {
        padding: unset;
    }
    input#demoemail {
        margin-bottom: 10px !important;
    }
    .form-group {
        margin-bottom: 15px;
    }
    input#demopassword {
        margin: 15px 0px;
    }


    .display-small-flex p {
        line-height: 1.2;
    }
    .display-small-flex img {
        width: 100% !important;
        padding-bottom: 30px;
    }
    .display-small-flex {
        display: flex !important;
    }
   
 
    .what-we-do .top-bot-padi {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    .faq-section div#accordionExample {
        margin-top: 15px;
    }
    .accordion-body {
        padding: 0px 20px 0px 20px;
    }
    .faq-section .accordion-item {
        padding-bottom: 15px;
    }
    .accordion-header button {
        padding: 15px 20px 0px 20px !important;
    }
    .what-we-do .text-center {
        text-align: left !important;
    }
    .faq-section {
        padding: 50px 0px !important;
    }
    div#accordionExample p {
        padding-bottom: 30px;
        padding-top: 0px;
    }
    section.bg-white-reg.what-we-do.color-white.pb-5.pt-3 {
        padding: 50px 0px !important;
    }
    .faq-section h2 {
        padding-bottom: 30px;
    }
    .header-restaurant .restaurant-btn span {
        display: block;
        padding: 8px;
    }
    .header-restaurant .restaurant-btn i {
        display: none;
    }
    .header-restaurant .restaurant-btn {
        min-width: unset;
    }
    .header-restaurant .restaurant-btn i {
        padding-right: 6px;
    }
    .what-we-do h2 {
        padding-bottom: 30px;
    }
    section.auth.bg-white-reg.padding-tb-50 p {
        padding-bottom: 30px;
    }
    .footer-top {
        padding: 30px 0 20px !important;
    }
    .new-footer-logo {
        margin-bottom: 15px;
    }
    section.auth.bg-white-reg.padding-tb-50 h2 {
        padding-bottom: 20px;
    }
    .row-big h2 {
        margin-bottom: 30px;
    }
    .new-flex-banner h2 {
        margin-bottom: 15px !important;
    }
    section.auth.bg-white-reg.padding-tb-50 {
        padding: 50px 0px !important;
    }
    .new-flex-banner p {
        margin-bottom: 30px !important;
    }
    section.auth.register-banner.padding-tb-50 {
        padding-bottom: 50px !important;
    }
   #review-style .big-p {
    font-size: 14px !important;
    }
    .additions-blk .content-info-blk p {
    font-size: 30px !important;
    }
    .cart-meta-group div p {
    font-size: 10px !important;
}
.order-blk .order-card .count-info-blk h2{
    font-size:44px !important;
}
    #review-style img {
    width: 27% !important;
}
    div#cartModal {
    background: #000000ad;
}
.product-card-content {
    overflow: auto;
}
.cart-content {
    width: 100%;
    /*<!-- max-width: 100%; -->*/
}
/*aside.cart-sidebar.active {*/
/*    background: white;*/
/*}*/
    .customer-slider p {
    font-size: 14px !important;
    }
    #review-style .banner-tab-header {
        margin-bottom: 24px;
    }
    .sticky-logos{
        display:none !important;
    }
    button#protected-button a {
    font-size: 12px !important;
}
    
    .header-group {
        gap: 3px;
    }
    .filter-search input {
        font-size: 12px;
    }
    h2{
        font-size: 22px;
    }
    .top-order-wrapper .new-arrow-blk .swiper-button-next  {
        font-size: 30px !important;
    }
    .top-order-wrapper .new-arrow-blk .swiper-button-prev {
        font-size: 30px !important;
    }
    p{
        font-size: 14px;
    }
    h6{
        font-size: 16px;
    }
    h5{
        font-size: 16px;
    }
    .bg-grey .banner-text{
    padding: 10px;
}
}


/* about us */


.bg-grey{
    background-color:#FAF8FC;
    }
    .bg-grey .banner-tab-header h2{
        color:#6A2583 !important;
        font-size:40px;
        font-weight: 700;
    }
    .bg-white-reg h2{
        color:#6A2583 !important;
        font-size:40px;
        font-weight: 700;
    }
    .bg-grey .marquee span b {
        font-size: 110px;
        /* opacity: 0.2; */
        font-weight: 800;
        color: #EBE3F3;
    }
    .bg-grey .marquee span b::before {
      width:25px;
      height: 25px;
        font-weight: 800;
        background-color: #EBE3F3;
    }
    .bg-grey .marquee div {
    height:150px;
    }
    .bg-grey .marquee{
    height: 150px;
    margin-top: -48px;
    }
    .bg-grey h5{
color:#692482;
font-size:20px;
}
.bg-white-reg p{
    color:#686768;
font-size:16px;
padding:10px 0px;
}

a.cus-a-tag {
    background: none;
    padding: 0px;
    color: #ef1c79;
}

/*.bg-white-reg a{*/
/*    background-color: #EF1C79;*/
/*    color:white;*/
/*    font-size:16px;*/
/*padding:10px 50px;*/
/*border-radius: 30px;*/
/*}*/
.bg-grey p{
color:#686768;
font-size:16px;
}
.bg-grey .banner-tab-header{
margin-bottom: 10px;
}
.banner-text-icon img {
    filter: invert(0);
    }
    .banner-text .locate-icon {
    width: 40px;
}
.register-banner h6{
    color:white;
    font-size: 20px;
    font-weight: 700;
    padding:15px 0px 5px 0px;
}
.full-img img {
    max-width: 100%;
    width: 100%;
}
.register-banner {
    padding: 0px;
}
.row-big h2{
    color:white
}

.row-big h3{
    color:white;
    font-weight: 300;
    font-size: 40px;
}
.register-banner {
   background-color: #692482 !important;
}
.faq-section .div#accordionExample {
    padding-top: 20px;
}
.faq-section .accordion-item {
    border-top: 1px solid  #692482;
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-radius: unset !important;
}

.bg-white{
    background-color: white !important;
}

.bg-ligpu{
    background-color: #E8DFEF !important;
    /* padding: 8% 0% !important; */
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius:unset;
    border-top-right-radius: unset;
}
.accordion-button:focus {
    z-index: 3;
    border-color:unset;
    outline: 0;
    box-shadow: unset;
}
.accordion-header button {
    font-size: 22px;
    color: #692482;
    padding: 10px 20px !important;
}
.accordion-body{
    padding: 2px 20px 20px 20px;
}
.accordion-body p{
    font-size: 16px;
}
.faq-section .accordion-button::after{
    display: none;
}
.accordion-button:not(.collapsed) {
    color: unset;
    background-color: unset;
    box-shadow:unset;
}
.what-we-do{
    background-color: #FBF9FD !important;
}
.what-we-do p{
    font-size: 20px;
}
.banner-tab-section {
    display: none;
}

@media(min-width:768px){
    .register-banner .banner-text {
        margin-left: 55px;
    }
.row-big{
    padding: 70px 0px;
}
.bg-grey .banner-text {
    padding: 30px 20px 10px 20px;
}
}
@media(max-width:768px){
    section.auth.bg-white-reg.padding-tb-50 span {
    margin-top: 10px;
}
    .new-flex-banner h2{
        text-align: left;
    }
    .filter-options.owl-carousel.pdtSwiper.owl-loaded.owl-drag {
        padding-top: 15px;
        padding-bottom: 10px;
    }
    section#check-additions-sec .border-gray {
        padding-bottom: 30px;
    }
    .header-account-btn i, .header-selection-btn i {
        display: block !important;
    }
    section.top-order-wrapper.default-padding.pt-0 {
        padding-top: 15px !important;
    }
    .additions-blk .content-info-blk h3 {
        font-size: 22px !important;
    }
    .additions-blk .content-info-blk img {
        width: 66px !important;
    }
    .additions-blk .content-info-blk p {
        font-size: 22px !important;
    }
   
    .new-title {
        margin-bottom: 20px !important;
    }
    .filter-search button {
        line-height:1;
    }
    section.pdt-cat-wrapper.category.default-padding.menuslider {
        padding-top: 0px !important;
    }
    section.restaurant.default-padding.mk_test {
        padding-top: 10px !important;
        padding-bottom: 50px !important;
    }
    .restaurant-card {
        margin-bottom: 15px !important;
    }
    .content-info-blk {
        margin-bottom: 25px !important;
    }
    section#check-additions-sec {
        padding: 30px 0px;
    }
    #specific-section-id .owl-carousel {
     /*margin-top: -40px !important; */
            margin-top: -81px !important;
    
            margin: auto;
        }
    .new-flex-banner p{
        text-align:left;
    }
    .order-blk .order-card .count-info-blk {
        padding: 15px 0px !important;
    }
    .default-padding {
        padding: 40px 0 0px 0px !important;
    }
    .row-big h3 {
    font-size: 16px;
}
.row-big .col-xs-12.col-sm-4.col-md-4.col-lg-4.col-lg-4 {
    padding: 0px;
}
.what-we-do{
    padding:0px 10px;
}
.new-banner .swipers  .banner-text{
    text-align: center;
}
    h2{
        font-size: 22px !important;
    }
    p{
        font-size: 14px !important;
    }
    h6{
        font-size: 16px !important;
    }
    h5{
        font-size: 16px;
    }
    .bg-grey .banner-text{
    padding: 10px;
}
.accordion-header button{
    font-size: 16px;
}
.accordion-body p{
    font-size: 14px;
}

}

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ffffff;
  }

  .autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: #ffffff;
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
  }
  @media(max-width:991px){
    .what-we-do .bf-form3 {
        max-width: 720px !important;
    }
    }
    @media(min-width:991px){
        .row-between{
               justify-content: space-between;
        }
/*.filter-options{*/
/*      padding-bottom: 32%;*/
/*}*/
/*div#selected-options {*/
/*    margin-top: -31% !important;*/
/*} */
        .what-we-do .bf-form3 {
            max-width: 500px;
            margin: 0 auto 0 auto;
        }
        .padding-tb-50{
            padding-top:60px !important;
            padding-bottom:60px !important;
            } 
 
section.customer-slider .swiper-slide-prev{
    opacity: 1 !important;
}
section.customer-slider .swiper-slide-next{
    opacity: 1 !important;
}
    }
    .what-we-do .bf-form3 {
        margin: 0 auto 0 auto;
    }


.mobile{
display:none;
}
@media(max-width:768px){
        .banner-lp-mb {
        padding: 0px 0px 0px 5px;
    }
    .about-banner .new-flex-banner {
            padding-top: 30px;
        justify-content: flex-start !important;
    }
    .order-blk.border-gray.order-blkcustom {
        padding-bottom: 15px !important;
    }
    section.auth.register-banner.bg-purp h1 {
        text-align: center;
        font-size: 34px;
    }
.banner-bg-one{
    background: url("../../images/new-home/banner-bg-mob.png") no-repeat center !important;
max-width:100%;
        width: 100%;
        background-size: cover !important;
        /* height: 100vh; */
}
.new-flex-banner{
    justify-content: space-around;
}
}
@media(max-width:768px) and (min-width:460px){
    .new-flex-banner {
        justify-content: center !important;
    }
}
@media(max-width:768px){
    .padding-tb-50.how-it-wro {
        padding: 50px 0px;
    }
    .new-banner .swipers .banner-text {
        text-align: left;
    }
.banner-text.aos {
    display: flex;
    gap: 14px;
}
section#perfect-for-meals {
    padding: 50px 15px 0px 15px !important;
}
section.padding-tb-50.trusted-logo-slider {
    padding: 50px 0px !important;
}
section#perfect-for-meals .banner-text {
    padding-top: 0px !important;
}
section#perfect-for-meals h2 {
    padding-bottom: 25px;
}

.why-gather .bg-grey .banner-tab-header {
    margin-bottom: 20px;
}
.why-gather .bg-grey .banner-text {
    padding: 30px 10px !important;
}
.bg-grey .banner-tab-header {
    margin-bottom: 20px;
}
.banner-first .main-search-input {
    margin-top: 160px;
}
.how-it-wro h5 {
    padding: 0px 0px 5px 0px !important;
}
.bg-grey .banner-text {
    padding: 15px 10px !important;
}
.desktop{
display:none;
}
.mobile{
display:inline-block;
text-align: left;
}
.mobile h1{
    text-align: center !important;
        font-size: 18px;
        margin-bottom: 10px !important;
        color: #742181;
    font-family: "Maven Pro", sans-serif;
    font-weight: 800;
}
.banner-first{
    justify-content: space-around !important;
}
.mobile h6{
    text-align: left !important;
    font-weight: 800;
    margin-left: 0px;
    font-size: 21px;
    font-family: "Maven Pro", sans-serif;
    color: #742181;
    margin-bottom: 10px;
    line-height: 1.2;
}
}
/* .trusted-logo-slider .marquee img {
    width: 315px !important;
}
.trusted-logo-slider .marquee {
    height: 24% !important;
    min-height: 66px;
    /* overflow: hidden; */
    /* z-index: 99;
    margin: 0px;
} */ 
/* section.trusted-logo-slider {
    padding: 50px 0px;
} */
section.trusted-logo-slider img {
    width: 220px;
    padding: 0px 45px;
    vertical-align: bottom;
    object-fit: scale-down;
    object-position: bottom;
}
section.trusted-logo-slider .banner-tab-header {
    margin-bottom: 20px;
}
.customer-slider .swiper-container {
    padding-top: 40px;
    width: 100%;
    height: 100%;
}
.customer-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.customer-slider .swiper-slide {
    display: inline-block !important;
    text-align: left !important;
}
.customer-slider .swiper-slide img {
    max-width: 100%;
    width: 27% !important;
}



.swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
    display: none;
}
.customer-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #ffffff00;
}

.customer-slider span{
color: #742181;
font-weight: 600;
}

.customer-slider p{
font-size: 16px;
font-weight: 400;
line-height: 1.;
padding: 5px 0px 10px 0px;
}
/* section.customer-slider.bg-grey {
    padding: 50px 0px;
} */
.my-swip {
    padding-top: 30px;
}   

.swiper-button-prev{
left: -50px;
color: grey;
font-size: 20px;
font-weight: 300;
}
.swiper-button-next{
right: -50px;
color: grey;
font-size: 20px;
font-weight: 300;
}
 .swiper, .swiper-container{
    overflow: unset;
     
 }
    .border-gray {
    overflow: hidden;
}
    .order-blk.border-gray.order-blkcustom {
    overflow: hidden;
}
/* .swiper-wrapper{
    overflow: hidden;
} */
/* .swiper-container {
    overflow: hidden; Ensures only visible slides are displayed
} */

section.customer-slider .swiper-slide-active{
    opacity: 1 !important;
}
section.customer-slider .swiper-slide{
    opacity: 0;
    padding: 18px;
}
.customer-slider h5{
    padding:10px 0px 6px 0px;
}
section.auth.register-banner.padding-tb-50 .top-bot-padi {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}
.border-rated p {
    border-top: 1px solid #c4a0c8;
    border-bottom: 1px solid #c4a0c8;
    font-size: 20px;
    font-weight: 500;
}
.border-rated {
    text-align: center;
    padding:25px 0px 19px 0px;
}
@media(max-width:768px) and (min-width:575px){
    .what-we-do .bf-form3 {
        max-width: 540px !important;
    }
}
@media(max-width:768px) and (min-width:460px){
 
    .banner-bg-one {
        height: 100vh;
    }
}
@media(max-width:768px){
    .filter-search.pdt-item-blk.bg-pink {
    padding: 10px !important;
}
    .new-flex-banner h1 {
        font-size: 32px;
        text-align: center;
        margin-bottom: 0;
        line-height:1.2;
    }
    .bg-white-reg p {
    padding: 10px 8px !important;
}
   .row-big h2 {
    font-size: 27px !important;
   }
    section.customer-slider .swiper-slide{
        padding:0px !important;
    }
    .mob-left h2{
        text-align: left !important;
    }
   .padding-tb-50{
    padding-top:30px;
    padding-bottom:30px;
    }
    .bf-form3 h2 {
        padding-bottom: 0px;
    }
    section.trusted-logo-slider img {
        width: 145px !important;
        padding: 0px 20px;
    }
    .new-flex-banner .nuu-logo {
        width: 70px;
        margin: 0px 4px 10px 4px;
    }
    .customer-slider .swiper-container{
        padding-top:10px !important;
    }
    .border-rated {
        padding: 10px 0px 10px 0px;
    }

    .border-rated p {
        font-size: 16px;
    }

    section.auth.bg-white-reg {
        padding-left:10px;
        padding-right:10px;
    }

}
.swiper-wrapper .autoplay-progress svg:nth-child(1){
    display:none !important;
    visibility: hidden !important;
    }
    .fa-chevron-right:before{
        font-family: 'FontAwesome';
    }
    .fa-chevron-left:before{
        font-family: 'FontAwesome';
    }
    .featured-box .order-blk.border-gray.order-blkcustom {
        overflow: hidden;
    }
    /* .rest-media.rest-media-with-logo .rest-media-partner-logo img {
        border-radius: 50%;
        padding: 5px;
    } */

.autoplay-progress{
   opacity: 0;
}
@media(min-width:600px){
    
#perfect-for-meals img {
    height: 600px;
    object-fit: cover;
}
}
.header-account-btn img, .header-selection-btn img {

    object-fit: contain !important;
}
.cart-sidebar.active .cart-content {
    z-index: 9999999999;
}
a.cart-amount-btn.btn-checkout:hover {
    color: white;
}
.padding-t-30{
    padding-top:40px;
   }
   .padding-b-30{
    padding-bottom:40px;
   }
   
   
   .row-big h2 {
    font-size: 60px;
   }
   .row-big{
    justify-content: space-between;
   }
   @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
  
    to {
      opacity: 1;
    }
  }
  .fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
  }
  .faq-section h2{
    padding-bottom: 10px;
  }
 

  #perfect-for-meals .banner-text {
    margin: 0 auto;
}

.color-white{
    background-color: white !important;
}


.about-banner .new-flex-banner{
    justify-content: center;
}
.trusted-logo-slider h2{
    color:#6A2583 !important;
    font-weight: 700;
}
.align-end{
    align-items: end;
}
.row.checkNew {
    scrollbar-width: thin;
    scrollbar-color: #ff6f6100 #f0f0f000;
}
button.panel-apply {
    margin-right: 8px !important;
}
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  /*bottom: 150%;*/
  left: 0%;
  /*left: 50%;*/
  /*margin-bottom: 5px;*/
  /*margin-left: -80px;*/
  padding: 3px;
  width: 170px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: left;
  font-size: 10px;
  /*line-height: 1.2;*/
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.create-your-bc {
    font-weight: 500 !important;
    font-size: 14px !important;
}
button#protected-button a {
    color: #6a2683;
    font-weight: 500;
    font-size: 14px;
}
.table-responsive {
    margin-top: 15px;
}
/*.filter-options{*/
/*      overflow: scroll;*/
/*          flex-wrap: nowrap !important;*/
/*}*/

#filter-drop-option .owl-carousel .owl-stage-outer {
    position: relative;
    overflow-x: visible;
    -webkit-transform: translate3d(0, 0, 0);
    overflow-y: visible;
}
#filter-drop-option .dropdownParent {
    width: 100%;
}
#filter-drop-option .pdt-cat-wrapper .pdt-item-blk {
    flex-direction: unset;
}
#filter-drop-option .owl-nav button {
    display: none;
}
#filter-drop-option .owl-carousel .owl-stage {
    display: flex;
}
    #filter-drop-option .owl-item {
    margin: 0px 3px;
}
#review-style h2{
    font-size: 36px;
    font-weight: 600;
    color: #6a2683;
}
#review-style .spaci{
    padding:15px 15px;
    margin:5px 0px;
    border-radius:5px;
}
/*#review-style .spaci {*/
/*    min-height: 300px;*/
/*}*/
.iziToast-wrapper {
    z-index: 9999999999 !important;
}

.product-modal{
    overscroll-behavior: contain;
    user-select: none;
    pointer-events: all;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #00000087;
    }
  .fa-regular.fa-solid.fa-xmark:hover {
    color: #ffffff;
    background: #e93c3c;
    padding: 2px;
    border-radius: 36px;
    width: 23px;
    height: 23px;
}
.fa-regular.fa-solid.fa-xmark{
    padding: 2px;
    border-radius: 36px;
    width: 23px;
    height: 23px;
}
#filter-drop-option .owl-item.active {
    width: auto !important;
}
/* Hide Tawk.to chat bubble and all associated elements */
#tawk-bubble-container{
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}
.panel-buttons #clearBtn {
    text-align: right;
    /* position: initial; */
    /* right: 0; */
    float: right;
    background: #e3daed;
    color: #6a2683;
    border-radius: 46px;
    padding: 10px 10px;
    font-size: 14px;
}
    /* #1i99d9k4d{
    display: none !important;
} */
.cart-amount-btn:hover{
    color:white;
}
@media(max-width:400px){
    .header-auth-navs {
        position: fixed !important;
}
.order-blk .order-card .count-info-blk {
    gap: 10px !important;
}
nav.header-account-navs.active {
    position: fixed;
}
/* <!-- ul.header-selection-list.active{
        position: fixed !important;
} --> */
}
#the-nuu-advantage img {
    object-fit:contain;
}
@media(min-width:1200px){
    #the-nuu-advantage img {
    height: 752px !important;
}
}
@media(max-width:1200px) and (min-width:991px){
    .header-group {
    gap: 2px;
}
}
.settings-navs a:hover #Capa_1, .settings-navs button:hover #Capa_1{
    color: white;
    stroke: white !important;
    fill: white;
}
span.is-invalid {
    display: block;
}
.text-danger {
    font-size: 12px;
    font-weight: 600;
}
.settings-navs a.active #Capa_1, .settings-navs button.active #Capa_1 {
    fill: white;
}
.ElementsApp, .ElementsApp .InputElement {
    color: #555;
    font-family: Montserrat, sans-serif;
    -webkit-text-security: disc;
}

@media(min-width:1400px){
    #filter-drop-option .owl-item.active {
    margin-right: 6px !important;
        width: 178px !important;
}
.filter-select.pdt-item-blk {
    width: 180px !important;
}
}
.display-flexi{
    display:flex;
}
section.item-wrapper-list.pb-5.rest-sec-pro .row .row {
    justify-content: space-between;
}
@media(max-width:1400px) and (min-width:1200px){
    .theiaStickySidebar {
           width: 265px !important;
        margin-right: 11px;
}
}
.rest-menu-wrapper.rest-menu-wrapper-py.active {
    padding: 10px 0px 0px 0px !important;
}
@media(max-width:1200px) and (min-width:991px){
    .rest-name {
    font-size: 20px;
    }
    .rest-info-btn {
    width: 24px;
    height: 24px;
    }
    .d-md-flexi {
    margin-bottom: 5px;
}
.rest-title {
    margin-bottom: 7px !important;
    font-size:14px !important;
}
.rest-voucher p {
    font-size: 12px;
}
.rest-voucher button {
    padding: 7px 13px !important;;
    margin-bottom: 9px !important;
}

}
.checkout {
    padding: 35px 0px 50px;
}
ul.flav-list-type.flav-list-type-two li span {
    font-size: 12px;
}



/*Landing pages styles starts*/


.background-lp-banners img{
    max-width:100%;
    width:100%;
}
.background-lp-banners{
    position:relative;
}

.color-lp-white{
    color: white;
}

.banner-lp-dt{
    display:block;
}
.banner-lp-mb{
    display:none;
}

.boxed-lp {
    box-shadow: rgb(227 216 271 / 105%) 0px 0px 39px;
    padding: 30px 20px;
    background: white;
}
.advantage-lp .bf-form3 h5 {
    color: #6a2683;
    font-size: 20px;
}
.lp-h3-head{
font-size: 32px !important;
}

.vision-lp h2 {
  color: #6a2683;;
}

.advantage-lp .bf-form3{
    max-width:600px;
    margin:0 auto;
}

.bg-white-regs p{
    color:#686768;
}
.pdding-for-lp .banner-text{
    padding:10px 0px !important;
}
.left-imag-lp p{
    color: white !important;
}
.left-imag-lp h5{
    color: white !important;
}
.not-an-btn{
    padding:unset !important;
    background:unset !important;
    color:unset !important;
    border-radius:unset !important;
}
span.left-imag-lp {
    display: flex;
    align-items: center;
    padding: 3px 0px;
    gap: 10px;
}
.newpar-lp {
    background: #692482;
}

.excellence-lp h5{
    color:#692482;
}
section#section1 {
    padding-top: 25px;
}
@media(max-width:768px){
    
    .advantage-lp {
    padding-top: 0px !important;
}
.advantage-lp h2{
    padding:10px;
}
.background-lp-banners {
    background: #6A2683;
    text-align:center;
}

.background-lp-banners h1{
    padding:10px 0px;
}
    .lp-h1-head{
font-size:24px !important;
}
.lp-h2-head{
font-size: 22px !important;
    font-weight: 700;
}
.lp-h3-head{
font-size: 20px !important;
}
.lp-p-head{
    font-size: 16px !important;
}
.lp-h5-head {
    font-size: 16px !important;
}
.lp-h6-head  {
    font-size: 16px !important;
}
    .banner-lp-dt{
    display:none;
}
.banner-lp-mb{
    display:block;
}
.advantage-lp .bf-form3 {
    max-width: 88%;
    text-align:center;
}
h2.lp-h4-head {
    font-size: 18px;
}
.padb-5{
    padding-bottom:10px;
}
.excellence-lp {
    padding: 10px;
    text-align: center;
}
    .newpar-lp .banner-text {
    text-align: left !important;
}
}
@media(min-width:768px){
    .padb-5{
    padding-bottom:25px;
}
    h2.lp-h4-head {
    font-size: 24px;
}
    .width-75{
    width:80%;
    margin:0 auto;
}
    .lp-h1-head{
font-size:45px !important;
font-weight:800;
}
.lp-h2-head{
font-size: 40px !important;
    font-weight: 700;
}
.lp-p-head{
    font-size: 18px !important;
}
.lp-h5-head {
    font-size: 20px !important;
}
.lp-h6-head  {
    font-size: 20px !important;
}
    .banner-lp-content {
    position: absolute;
    /*left: 4%;*/
    top: 0;
    bottom: 0;
    width: 55%;
    place-content: center;
    justify-content: center;
    text-align: left;
}
}
.checkNew .form-group label {
    line-height: 1.4;
}
@media(max-width:991px) and (min-width:768px){
    
.lp-h1-head{
font-size:28px;
font-weight:800;
}
.swiper-sli {
    top: 10% !important; 
    bottom: 10% !important;
}
}

@media(max-width:1175px) and (min-width:991px){
.advantage-lp .bf-form3 {
    max-width: 475px;
}
}

@media(max-width:991px) and (min-width:756px){
.advantage-lp .bf-form3 {
    max-width: 400px;
}
}
.dis-flez {
    gap: 3px;
}


@media(max-width:600px) and (min-width:350px){
    .header-content {
        gap: 5px !important;
    }

}
@media(max-width:768px) and (min-width:400px){
    .content-info-blk {
         column-gap: 13px !important;
     }
     .content-info-blk {
        justify-content: space-between !important;
        margin-right: 62px;
    }
    .swiper-backface-hidden .swiper-slide {
        margin-right: 18px !important;
    }
    .small-paddi {
        padding: 0px 18px 0px 0px !important;
    }
     #specific-section-id .owl-prev {
        right: 22px !important;
    }
    /*.content-info-blk {
        justify-content: left !important;
    }*/
}

@media(max-width:575px){
      
    .swiper-sli a {
    padding: 2px 5px !important;
    margin-top: 0px !important;
}
  .swiper-wrapper .swiper-slide{
       margin-right:10px !important;
       /*padding-right:10px !important;*/
   }
   .header-account-btn span, .header-selection-btn span {
    line-height: 12px;
   }
}
.flex-in-cols .product-card-price {
    margin: 0px !important;
}

.flex-in-cols {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #d0c8c8;
    margin-bottom: 10px;
}
.two-line-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em; /* Adjust based on your font size */
    line-height: 1.5em; /* Adjust based on your design */
}
ul.flav-list-type {
    padding-top: 10px;
    border-top: 1px solid #d0c8c8;
    margin-top: 10px;
    display:flex;
    flex-wrap:wrap;
}
ul.flav-list-type span {
    font-size: 12px;
}
.flex-in-colu {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.rest-name .dot {
    margin-right: 5px !important;
}
#mycustom-sec{
    padding:0px 0px 30px 0px;
}



section.restaurant.default-padding.mk_test {
    padding-top: 0px;
} 



.rest-media-partner-logo img:nth-child(1) {
    min-height: unset !important;
    /* max-width: 100%; */
    border-radius:100px;
    height: unset !important;
    
}
.order-blk .orderSwiper1 .order-card img {
    height: 290px;
    object-fit: cover;
    width: 100%;
    min-height: auto !important;
}
.order-blk .orderSwiper2 .order-card img {
    height: 290px;
    object-fit: cover;
    width: 100%;
    min-height: auto !important;
}

    /*.order-blk .order-card img {*/
    /*    min-height: 465px;*/
    /*    height: 290px !important;*/
    /*    min-height: unset;*/
    /*    width: 100%;*/
    /*}*/


.ai-search-img img {
    width: 178px !important;
}

.orderSwiper1 .rest-media-partner-logo {
    background: #ffffffd1 !important;
    padding: 2px;
}

.bg-pink button {
    text-align: center !important;
    justify-content: center;
    margin: 0 auto;
}
.owl-carousel .owl-dots {
    display: none;
}
.owl-carousel.pdtSwiper.owl-loaded.owl-drag {
    padding-bottom: 15px;
}
.filter-options.owl-carousel.pdtSwiper.owl-loaded.owl-drag {
    padding-bottom: 0px;
}
.buton-incre{
    padding:10px 10px !important;
}
.each-resto-logo img {
    width: 34px;
    border-radius: 55px;
    padding: 0px;
    margin: 12px 0px 10px 0px !important;
}

.each-resto-logo {
    gap: 24px;
}

.footer-address p {
    color: #6a2683;
    padding-bottom: 15px;
}


