@charset "UTF-8";
@import "../../fonts/inter/stylesheet.css";
@import "../../fonts/nexa-rust/stylesheet.css";
@import "../../fonts/mrorange/stylesheet.css";
: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;
    --brown: #a76427;
    --text: #1f1f39;
    --text-dark: #54565a;
    --focus: #008bba;
    --alert: #fb4e4e;
    --primary: #ac192c;
    --secondary: #799c3d;
    --placeholder: #a0a3bd;
    --border-gray: #d9dbe9;
    --border-slate: #eff0f6;
    --facebook: #3b5998;
    --linkedin: #0e76a8;
    --twitter: #00acee;
    --google: #e60023;
    --instagram: #f77737;
    --whatsapp: #25d366;
    --pinterest: #f0002a;
    --youtube: #ff0000;
}
.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(--text);
    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(--text);
    background: var(--white);
    direction: ltr;
    scroll-behavior: smooth;
}
input,
select,
button,
textarea {
    border: none;
    outline: none;
    background-color: transparent;
}
input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}
.btn:focus {
    box-shadow: none;
}
body {
    font-size: 16px;
    font-weight: 400;
    font-family: "inter";
}
.pac-container {
    z-index: 1050;
    font-family: "inter";
}
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: 8px;
    border: 1px solid var(--secondary);
}
.form-legend {
    font-size: 22px;
    font-weight: 600;
    padding: 0 15px;
    width: fit-content;
    font-family: "Nexa-Rust-Sans";
    color: var(--text-dark);
}
.form-group {
    margin-bottom: 16px;
    position: relative;
}
.form-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 4px;
    text-transform: capitalize;
    color: var(--text);
}
.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: 0px 16px;
    border-radius: 8px;
    color: var(--text);
    border-color: var(--border-gray);
}
.form-select:focus,
.form-control:focus {
    box-shadow: none;
    border-color: var(--primary);
}
.form-check-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.form-check-group label {
    padding-left: 8px;
    cursor: pointer;
}
.linkTxt {
    color: var(--primary) !important;
}
.form-checkbox {
    --input-size: 16px;
    cursor: pointer;
    appearance: none;
    position: relative;
    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;
}
.form-checkbox::after {
    content: "✓";
    position: absolute;
    text-align: center;
    font-size: 11px;
    inset: 0;
    color: transparent;
    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;
    appearance: none;
    position: relative;
    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;
}
.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;
}
.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: flex;
    align-items: center;
    gap: 12px;
}
.form-number input {
    width: 100%;
    height: 48px;
}
.form-number-group {
    position: relative;
}
.form-number-group button {
    display: flex;
    align-items: 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(--text);
}
.form-number-group button i {
    font-size: 12px;
    color: var(--text);
}
.form-number-group ul {
    position: absolute;
    width: fit-content;
    min-height: fit-content;
    max-height: 200px;
    overflow-y: auto;
    transform-origin: top;
    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);
    box-shadow: 0px 7px 15px 0px rgba(0, 0, 0, 0.1);
    transition: all linear 0.3s;
}
.form-number-group ul.active {
    transform: scaleY(1);
}
.form-number-group ul li {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 4px 25px 4px 7px;
    border-radius: 6px;
    gap: 8px;
    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(--text);
}
.form-alert {
    font-size: 12px;
    font-weight: 400;
}
.form-alert.red {
    color: var(--red);
}
.form-alert.green {
    color: var(--green);
}
.form-btn,
.form-btn-inline {
    background-color: var(--primary);
    color: #fff;
    padding: 0 30px;
    height: 48px;
    border-radius: 12px;
    font-family: "Mr-Orange";
    text-transform: uppercase;
    display: block;
    cursor: pointer;
    width: fit-content;
}
.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: flex;
    align-items: center;
    justify-content: start;
    background-color: var(--white);
    position: relative;
    gap: 24px;
    overflow: hidden;
    padding: 0;
    border-radius: 50%;
    width: 100px;
    height: 100px;
}
.form-uploader::before {
    content: "";
    position: absolute;
    inset: 50%;
    width: 100.2%;
    height: 102%;
    z-index: -1;
    border-radius: 8px;
    transform: translate(-50%, -50%);
    border: 4px dashed var(--border-gray);
}
.form-uploader img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.upload-file {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    text-align: center;
    background-color: #00000066;
}
.form-uploader span {
    flex: auto;
    font-size: 14px;
    font-weight: 600;
}
.form-uploader label {
    padding: 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    cursor: pointer;
    color: #fff;
}
.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: 8px;
    border: 1px solid var(--secondary);
}
.table {
    overflow: hidden;
    margin-bottom: 0px;
    background-color: var(--white);
}
.table > :not(caption) > * > * {
    padding: 16px;
    font-size: 14px;
    vertical-align: middle;
    white-space: nowrap;
    color: var(--text);
    border-color: var(--border-slate);
}
.table tr td a {
    color: var(--primary);
}
.table tbody tr > :first-child {
    font-weight: 600;
}
.table tbody tr:last-child > * {
    border: none;
}
.table-primary tr th {
    border: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--secondary);
    color: white;
}
.table-action {
    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: 14px;
}
.table-action button.fa-eye {
    background-color: var(--focus);
}
.table-action button.fa-circle-exclamation {
    background-color: var(--alert);
}
.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: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    text-align: center;
    cursor: pointer;
    line-height: 22px;
    column-gap: 8px;
    color: var(--white);
    background-color: var(--primary);
    transition: all linear 0.3s;
}
.fb-btn span span {
    font-family: sans-serif;
}
.fb-btn:hover {
    color: var(--white);
    background-color: rgba(238, 29, 72, 0.9);
    box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.12);
}
.fb-btn:focus {
    box-shadow: 0px 8px 18px 0px rgba(0, 0, 0, 0.12);
}
.section-wrapper {
    min-height: 100dvh;
    padding: 90px 0;
    font-family: "inter";
}
.section-wrapper.restaurant .location-header {
    gap: 10px;
    margin-bottom: 0;
}
.section-wrapper.restaurant .location-header .reset-btn {
    background: #ac192c;
    color: #fff;
    border-radius: 8px;
    width: 45px;
    height: 45px;
}
.section-subtitle {
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    margin-bottom: 24px;
    text-align: center;
    display: block;
    color: var(--text);
}
.section-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
    font-family: Nexa-Rust-Slab-Black-Shadow;
    color: var(--secondary);
}
.cart-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary);
    border-radius: 6px;
    height: 24px;
    width: 80px;
    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(--secondary);
    border-right: 1px solid var(--secondary);
}
.cart-counter button {
    width: 100%;
    height: 100%;
    font-size: 10px;
    cursor: pointer;
    transition: all linear 0.3s;
}
.cart-counter button:hover {
    color: var(--secondary);
}
.pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    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;
}
.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;
}
.restaurant-card-wrapper {
    margin-bottom: 30px;
}
.restaurant-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    overflow: hidden;
    transition: all linear 0.3s;
    border: 1px solid transparent;
}
.restaurant-card:hover {
    transform: scale(1.03);
}
.restaurant-card {
    background-color: rgb(121 156 61 / 8%);
}
.restaurant-card .card-header {
    background-color: #799c3d;
    padding: 15px;
    color: #fff;
}
.restaurant-card:hover {
    border: 1px solid #799c3d;
}
.restaurant-card .card-content {
    padding: 15px;
}
.restaurant-card .card-content .popover-content {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.restaurant-card:hover img {
    transform: scale(1.1) rotate(3deg);
}
.restaurant-card img {
    width: 100%;
    border-radius: 12px 12px 0px 0px;
    transition: all linear 0.3s;
}
.restaurant-card h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: var(--white);
    overflow: hidden;
}
.restaurant-card .ratings {
    display: flex;
    align-items: center;
    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(--text);
}
.restaurant-card .location {
    display: flex;
    justify-content: start;
    gap: 10px;
}
.restaurant-card .location svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 2px;
}
.restaurant-card .location span {
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
}
.restaurant-card .store-delivery-time {
    font-size: 14px;
    line-height: 16px;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 10px;
    width: calc(50% - 5px);
}
.restaurant-card .store-delivery-time span {
    font-weight: 400;
    margin-top: 3px;
    font-size: 11px;
    width: 100%;
}
.restaurant-card .store-status {
    width: fit-content;
    border-radius: 6px;
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    text-transform: capitalize;
}
.restaurant-card .order-btn {
    margin-top: auto;
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 8px 0;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
}
.restaurant-card p.on {
    background: #799c3d;
}
.restaurant-card p.off {
    background: #ac192c;
}
.restaurant-card .card-info-btn {
    width: 30px;
    height: 30px;
    cursor: default;
    z-index: 999;
}
.restaurant-card .mile-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    position: relative;
    margin-left: 15px;
    padding-left: 15px;
}
.restaurant-card .mile-text::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 120%;
    border: 1px solid #1f1f395c;
    left: 0;
    top: -2px;
}
.restaurant-card .card-footer {
    border-top: 1px solid var(--border-gray);
    padding: 10px 15px;
    background: transparent;
}
#heart {
    color: #ac192c;
    font-size: 20px;
    cursor: pointer;
}
.product-card-group .row .col {
    flex: 1;
}
.product-card-group {
    margin-top: 15px;
}
.product-card-group .row{
    gap: 20px 0;
}
.product-card {
    border-radius: 8px;
    width: 100%;
    min-height: 350px;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--secondary);
    box-shadow: 0px 8px 16px rgb(91 148 49 / 8%);
}
.product-card:hover .product-card-media img {
    transform: scale(1.1);
}
.product-card-media {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all linear 0.3s;
}
.product-card-content {
    width: 100%;
    min-height: 150px;
    height: calc(100% - 200px);
    padding: 15px 10px;
    gap: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.product-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    width: inherit;
    font-family: "Inter";
    color: var(--primary);
}
.product-card-title small{
    color: var(--brown);
    font-size: 12px;
    font-weight: 500;
}
.product-card-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}
.product-card-description {
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    width: inherit;
    font-family: "inter";
    line-clamp: 3;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.product-card-info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.product-card-price {
    display: flex;
    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: 14px;
    font-weight: 700;
    line-height: 20px;
}
.product-card-add {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 8px;
    background-color: var(--secondary);
    transition: all linear 0.3s;
    border: 1px solid var(--secondary);
}
.product-card-add:hover {
    background-color: transparent;
}
.product-card-add:hover span {
    color: var(--secondary);
}
.product-card-add:hover svg {
    fill: var(--secondary);
}
.product-card-add span {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    text-transform: capitalize;
    color: var(--white);
    transition: all linear 0.3s;
}
.product-card-add svg {
    fill: var(--white);
    transition: all linear 0.3s;
}
.auth {
    height: 100dvh;
    background-color: var(--white);
    overflow: hidden;
    padding-bottom: 70px;
    display: flex;
}
.auth .row {
    min-height: 100%;
}
.auth-content {
    position: relative;
    padding: 20px 80px;
}
.auth-content .auth-tabs {
    display: table-cell;
    vertical-align: middle;
}
.auth-banner {
    object-fit: cover;
}
.auth-navs {
    display: -webkit-box;
    display: flex;
    align-items: center;
    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(--text);
}
.auth-navs .nav-link.active {
    color: var(--primary);
    border-color: var(--primary);
}
.auth-header {
    padding: 10px 0px 20px;
}
.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 .register .form-row {
    gap: inherit;
    font-family: "Inter";
}
.auth .register select {
    -webkit-appearance: none;
    background-image: url(../../../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-position: center right 20px;
    background-size: 3%;
    border-color: var(--secondary);
}
.auth .register label {
    font-size: 16px;
    margin-bottom: 8px;
}
.auth .register input {
    border-color: var(--secondary);
}
.custom-checkbox {
    position: relative;
    width: 16px;
    height: 16px;
    appearance: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    outline: none;
}
.custom-checkbox:checked {
    background-color: var(--secondary);
}
.custom-checkbox:checked::before {
    content: "✔";
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    font-size: 12px;
}
.auth .register .register-btn {
    background-color: var(--primary);
    color: #fff;
    padding: 0 30px;
    height: 48px;
    border-radius: 12px;
    font-family: "Mr-Orange";
    text-transform: uppercase;
    display: block;
    margin: 15px auto;
    cursor: pointer;
    width: fit-content;
}
.auth .register .forgot-link {
    color: #ac192c;
}
.auth .register .forgot-link:hover {
    text-decoration: underline;
}
.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-gray);
}
.auth-divide span {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    padding: 0px 12px;
    text-transform: capitalize;
    color: var(--text);
    background-color: var(--white);
}
.auth .register .social-buttons {
    gap: 15px;
}
.auth .register .social-buttons .social-btn {
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
}
.auth .register .social-buttons .social-btn.facebook {
    background: #1877f2;
}
.auth .register .social-buttons .social-btn.google {
    background: #ea4335;
}
.auth .register .social-buttons .social-btn.apple {
    background: var(--black);
}
.cart-sidebar.active .cart-content,
.cart-sidebar.active .cart-shadow {
    transform: translateX(0%);
}
.cart-flow {
    overflow-y: hidden;
}
.cart-content {
    width: 100%;
    max-width: 380px;
    position: fixed;
    isolation: isolate;
    top: 71px;
    right: 0px;
    transform: translateX(105%);
    background-color: var(--white);
    border-left: 1px solid var(--border-slate);
    transition: all linear 0.3s;
    z-index: 999;
}
.cart-sidebar .cart-shadow {
    width: 100%;
    max-width: calc(100vw - 380px);
    position: fixed;
    isolation: isolate;
    top: 71px;
    left: 0px;
    transform: translateX(-105%);
    transition: all linear 0.3s;
    background: #00000066;
    z-index: 99;
    height: 100%;
}

.cart-content .cart-close {
    cursor: pointer;
    font-size: 16px;
    position: absolute;
    top: 0;
    left: -18px;
    z-index: 3;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
    transition: all ease-in-out 0.3s;
}
.cart-content .cart-close:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}
.cart-empty {
    width: 100%;
    height: 100vh;
}
.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: 14px;
    font-weight: 400;
    line-height: 16px;
    color: var(--text);
}
.cart-title {
    width: 100%;
    padding: 15px;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    border-bottom: 1px solid var(--secondary);
    color: var(--white);
    background-color: var(--secondary);
    font-family: "Nexa-Rust-Sans";
}
.cart-empty .empty-content {
    height: calc(100% - 250px);
}
.cart-switch-group {
    margin-top: 20px;
    margin-bottom: 18px;
}
.cart-heading {
    font-size: 16px;
    font-family: "Nexa-Rust-Sans";
    margin: 0 15px 20px;
    line-height: 26px;
}
.cart-heading a {
    color: var(--primary);
}
.cart-scroll-group {
    height: calc(100vh - 215px);
    overflow-y: auto;
    padding-bottom: 15px;
}
.cart-scroll-group::-webkit-scrollbar {
    width: 4px;
    background-color: transparent;
}
.cart-scroll-group::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: var(--placeholder);
}
.cart-content select {
    border-color: var(--secondary);
    -webkit-appearance: none;
    background-image: url(../../../images/down-arrow-green.svg);
    background-repeat: no-repeat;
    background-position: center right 20px;
    background-size: 15px;
}
.cart-content select:focus {
    border-color: var(--secondary);
}
.cart-item {
    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 {
    cursor: pointer;
    margin-bottom: 8px;
    margin-left: auto;
    display: flex;
    background: var(--primary);
    width: 25px;
    height: 25px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
}
.cart-meta-group {
    width: 100%;
    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;
}
.cart-meta-group .cart-name:hover {
    color: var(--primary);
}

.cart-instructions h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 5px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    transition: all linear 0.3s;
}
.cart-instructions h4:hover {
    color: var(--primary);
}

.cart-instructions span {
    font-size: 14px;
    color: var(--text);
    line-height: 20px;
    margin-bottom: 5px;
    margin-left: 5px;
}

.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: 600;
    line-height: 20px;
    margin-bottom: 5px;
    text-align: right;
    text-transform: capitalize;
    color: var(--primary);
}
.cart-price-group {
    padding: 16px 16px 0px;
}
.cart-coupon {
    height: 48px;
    display: -webkit-box;
    display: flex;
}
.cart-coupon input {
    height: 100%;
    padding: 0px 16px;
    border-radius: 8px;
    border: 1px solid #495057;
    border-right: none;
    padding-right:70px;
}
.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: #ac192c;
    position: absolute;
    top: 0;
    right: 0;
}
.cart-amount-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column;
    gap: 12px;
}
.cart-amount-item {
    display: -webkit-box;
    display: flex;
    align-items: center;
    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 {
    font-size: 16px;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
    color: var(--white);
    background-color: var(--primary);
    padding: 0 30px;
    height: 48px;
    border-radius: 12px;
    font-family: "Mr-Orange";
    text-transform: uppercase;
    display: block;
    width: fit-content;
}
.cart-amount-btn:hover {
    color: var(--white);
}
.product-modal .modal-dialog {
    width: 100%;
    max-width: 455px;
    margin: 30px auto;
}
.product-modal .modal-content {
    border: none;
    display: block;
    /* overflow: hidden; */
}
.product-modal .modal-body{
    padding: 15px;
    max-height: 600px;
    overflow: auto;
}
.product-modal .close {
    top: -15px;
    z-index: 9999999;
    right: -15px;
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    margin: 0 0 0 auto;
    display: flex;
    align-items:center;
    justify-content:center;
    opacity: 1;
}
.product-modal .product-detail-box {
    /* border-bottom: 1px solid var(--border-slate); */
    border-radius: 6px;
    display: flex;
}
.product-modal-media {
    position: relative;
    width: 40%;
    border-radius: 5px;
    overflow: hidden;
}
.product-modal-media-detail {
    padding: 15px 20px;
    flex: 1;
}
.product-modal-media img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.product-modal-price-group {
    border: 0;
    padding: 5px 10px;
    margin: 10px 0;
    background: var(--brown);
    color: #fff;
    border-radius: 6px;
    width: fit-content;
}
.product-modal-price-group .product-modal-subset {
    border: 0;
    padding: 0;
}
.product-modal-price-group .product-modal-subset dt {
    font-size: 14px;
}
.product-options{
    margin-top: 15px;
}
.product-modal-group {
    padding: 15px;
    border: 1px solid var(--border-slate);
    border-radius: 6px;
    margin-top: 15px;
}
.product-modal-group p {
    font-weight: 500;
    font-size: 22px;
}
.product-modal-group .form-checkbox ,.product-modal-group .form-radio{
    --input-size: 20px;
}
.product-modal-group .form-checkbox::after{
    font-size: 14px;
}
.product-modal-group .product-info{
    font-size: 16px;
    color: var(--text);
}
.product-modal-title {
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.product-modal-describe {
    font-size: 20px;
    font-weight: 400;
    color: var(--text);
    text-overflow: ellipsis;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.product-modal-subset {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-slate);
    padding-bottom: 5px;
}
.product-modal-subset dt {
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
}
.product-modal-subset dd {
    padding: 5px 8px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}
.modifier-list-wrapper .modifier-title .require {
    color: var(--primary);
}
.product-modal-subset dd.option {
    color: var(--secondary);
}
.modifier-list-wrapper {
    border-bottom: 1px solid var(--border-slate);
    padding: 20px 10px;
    border-radius: 4px;
    margin-top: 0 !important;
}
.modifier-list-wrapper:last-child{
    border: 0;
}
.product-modal-list li.required-fields {
    border-color: var(--primary);
}
.modifier-list-wrapper .modifier-title {
    /* border-bottom: 1px solid var(--border-slate); */
    padding-bottom: 5px;
}
.product-modal-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}
.product-modal-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-slate);
    padding: 5px 10px;
    border-radius: 4px;
}
.product-modal-list li label {
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    flex: auto;
}
.product-modal-list li span {
    font-size: 14px;
    font-weight: 500;
}
/* .special-message{
    gap: 20px;
}
.special-message .product-modal-group{
width: calc(50% - 10px);
} */
.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;
}
.total-price {
    width: fit-content;
    /* background: var(--brown); */
    color: var(--white);
    padding: 3px 10px;
    font-size: 14px;
    border-radius: 8px;
}
.product-modal-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.product-modal-footer .cart-counter {
    width: 120px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 30px;
}
.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 {
    min-width: 200px;
    height: 48px;
    border-radius: 30px;
    padding: 0 15px;
    white-space: nowrap;
    display: -webkit-box;
    display: flex;
    align-items: 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;
}
.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;
    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: flex;
    -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: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.booking-modal-select.active i {
    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;
}
.booking-modal-option {
    padding: 16px;
    border-radius: 12px;
    position: absolute;
    transform-origin: top;
    transform: scaleY(0);
    width: 100%;
    top: 66px;
    left: 0px;
    right: 0px;
    z-index: 1;
    background-color: var(--white);
    box-shadow: 0px 4px 16px rgba(126, 133, 142, 0.16);
    transition: all linear 0.3s;
}
.booking-modal-option.active {
    transform: scaleY(1);
}
.booking-modal-option dl {
    display: -webkit-box;
    display: flex;
    align-items: center;
    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;
}
.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: flex;
    align-items: center;
    gap: 24px;
    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: flex;
    align-items: 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;
}
.address-modal .modal-content {
    border: none;
    display: block;
    overflow: hidden;
    border-radius: 16px;
}
.address-modal-header {
    display: -webkit-box;
    display: flex;
    align-items: center;
    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: flex;
    align-items: 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;
}
.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: flex;
    align-items: center;
    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;
    transition: all linear 0.3s;
    border-color: var(--secondary);
    height: 45px;
}
.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: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
}
.address-modal-label-navs button {
    display: -webkit-box;
    display: flex;
    align-items: 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;
}
.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;
}
.address-modal-label-input:focus-within {
    border-color: rgba(238, 29, 72, 0.3);
}

.shop-modal.modal,
.product-modal.modal {
    overflow: hidden;
}
.shop-modal .modal-dialog,
.product-modal .modal-dialog {
    width: 100%;
    max-width: 550px;
    margin: 30px auto;
}
.product-modal .modal-dialog {
    max-width: 1120px;
}
.shop-modal .modal-content {
    border: none;
    display: block;
    overflow: hidden;
    border-radius: 16px;
}
.shop-modal-header {
    position: relative;
    padding: 20px;
    border-bottom: 1px solid var(--secondary);
    background: var(--secondary);
}
.shop-modal-header h3 {
    font-size: 20px;
    color: #fff;
    font-family: "Nexa-Rust-Sans";
}
.shop-modal-header img {
    width: 100%;
}
.shop-modal-header .close {
    opacity: 1;
    font-size: 20px;
    width: 35px;
    line-height: 35px;
    border-radius: 50%;
    text-align: center;
    background: var(--primary);
    color: #fff;
    height: 35px;
    padding: 0;
    margin: 0;
}
.shop-modal .modal-body{
    max-height: 600px;
    overflow: auto;
    padding: 0;
}
.product-modal .modal-body::-webkit-scrollbar {
    width: 8px;
}
.product-modal .modal-body::-webkit-scrollbar-thumb {
    background: var(--secondary);
}
.product-modal .modal-body::-webkit-scrollbar-track {
    background: var(--white);
}
.shop-modal .accordion-data {
    border-top: 1px solid var(--border-slate);
}
.shop-modal .accordion-data .delivery-hours-title {
    font-size: 16px;
    font-weight: 500;
}
.shop-modal .accordion-data button p {
    font-size: 18px;
    font-weight: 600;
}
.shop-modal .accordion-data button p span {
    font-size: 16px;
    font-weight: 400;
}
.shop-modal .accordion-data .accordion-body-title {
    margin: 0 0 15px;
    border: 1px solid var(--secondary);
    border-radius: 6px;
    padding: 10px;
}
.shop-modal .accordion-data .accordion-body-data ul {
    margin: 0 0 15px;
}
.shop-modal .accordion-data .accordion-body-data ul li {
    font-size: 16px;
}
.shop-modal .accordion-data .accordion-body-data ul li span {
    width: 130px;
}
.shop-modal-about {
    gap: 40px;
}
.shop-modal-about .shop-location {
    width: 60%;
}
.shop-modal-about h3 {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 8px;
    line-height: 22px;
}
.shop-modal-about p {
    font-size: 14px;
    font-weight: 400;
}
.shop-modal-about .custom-link {
    font-size: 14px;
}
.shop-modal-footer .card-list {
    width: 48px;
}

/* header  */
.header {
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border-slate);
    padding: 0 30px;
}
.header.index {
    background-color: #fff9fa;
}
.header-content {
    height: 70px;
    display: -webkit-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    max-width: 280px;
    height: 45px;
    max-height: 45px;
}
.header-logo img {
    height: 100%;
}
.header-group {
    display: -webkit-box;
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-cart {
    cursor: pointer;
    position: relative;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    font-size: 18px;
    color: var(--white);
}
.header-cart:hover {
    color: var(--white);
}
.header-cart sup {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 8px;
    font-weight: 500;
    width: 16px;
    height: 16px;
    line-height: 14px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--primary);
    border: 1px solid var(--white);
    color: var(--white);
}
.header-auth {
    position: relative;
}
.header-auth-btn {
    display: none;
}
.header-auth-navs {
    display: -webkit-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-auth-navs a {
    display: -webkit-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    white-space: nowrap;
    gap: 6px;
    color: var(--white);
    border: 0;
    transition: all linear 0.3s;
}
.header-auth-navs a i {
    font-size: 18px;
}
.header-auth-navs a:hover {
    background-color: rgba(238, 29, 72, 0.05);
}
.header-account,
.header-selection {
    position: relative;
}
.header-account-btn,
.header-selection-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    padding: 0px 12px;
    height: 32px;
    gap: 6px;
    cursor: pointer;
    background: white;
    box-shadow: none;
    border: 0;
    transition: all linear 0.3s;
}
.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: 20px;
    height: 20px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}
.header-account-btn span,
.header-selection-btn span {
    line-height: 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--text);
}
.header-account-btn i,
.header-selection-btn i {
    font-size: 10px;
    margin-top: -2px;
    transition: all linear 0.3s;
}
.header-account-btn.active i,
.header-selection-btn.active i {
    transform: rotate(180deg);
}
.header-account-navs,
.header-selection-list {
    position: absolute;
    top: 50px;
    right: 0px;
    transform-origin: top;
    transform: scaleY(0);
    z-index: 3;
    padding: 8px 6px;
    border-radius: 8px;
    background-color: var(--white);
    border: 1px solid var(--border-slate);
    box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.08);
    transition: all linear 0.3s;
}
.header-account-navs.active,
.header-selection-list.active {
    transform: scaleY(1);
}
.header-account-navs a,
.header-account-navs li,
.header-selection-list a,
.header-selection-list li {
    display: -webkit-box;
    display: flex;
    align-items: center;
    justify-content: start;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 32px;
    padding-left: 8px;
    cursor: pointer;
    gap: 12px;
    border-radius: 8px;
    color: var(--text);
    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;
}
.header-btn {
    height: 32px;
    padding: 6px 12px;
    border-radius: 16px;
    background-color: var(--primary);
    display: -webkit-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.header-btn span {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    color: var(--white);
}

/* footer  */
.footer {
    padding: 0 30px;
    min-height: 70px;
    background-color: #f5f5f5;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 99;
}
.footer-logo {
    margin-bottom: 32px;
}
.footer-logo img {
    width: 120px;
}
.footer-about p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 12px;
}
.footer-about nav {
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    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;
}
.footer-widget nav {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-widget nav a {
    width: -webkit-fit-content;
    width: fit-content;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: var(--text);
    transition: all linear 0.3s;
}
.footer-widget nav a:hover {
    color: var(--primary);
}
.footer-contact nav {
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 24px;
    gap: 12px;
}
.footer-contact nav img {
    height: 40px;
    border-radius: 8px;
}
.footer-contact ul {
    display: -webkit-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-contact ul li {
    display: -webkit-box;
    display: flex;
    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 #ffe8ed;
}
.footer-bottom p {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    color: rgba(110, 113, 145, 0.8);
}
.footer h1 {
    font-size: 32px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer h2 {
    font-size: 26px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #555;
}
.footer p {
    font-size: 16px;
    margin-bottom: 20px;
}
.footer a,
.footer button {
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0 10px;
    position:relative;
    padding: 0 0 0 10px;
}
.footer a:hover,
.footer button:hover {
    text-decoration: underline;
}
.footer-modal .modal-close-btn {
    background: #ac192c;
    color: var(--white);
    border: 0;
    height: 45px;
    margin: 0;
    display: block;
    padding: 0 30px;
    font-size: 18px;
    font-weight: 600;
}
.footer-modal .modal-dialog {
    max-width: 600px;
}
.footer-modal .modal-header,
.footer-modal .modal-footer {
    background-color: #f5f5f5;
}
.footer-modal .modal-header button {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 100%;
    position: relative;
    margin: 0;
}
.footer-modal .modal-body {
    max-height: 700px;
    overflow: auto;
}
.footer-modal .modal-body h1{
    font-size: 32px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-modal .modal-body h2 {
    font-size: 26px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}
.footer-modal .modal-body h3 {
    font-size: 22px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #555;
}

/* app  */
.app {
    padding: 120px 0px;
    background-color: #fff6f5;
    overflow: hidden;
}
.app-content h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: 74px;
    margin-bottom: 24px;
}
.app-content p {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 32px;
}
.app-content nav {
    display: -webkit-inline-box;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
}
.app-content nav img {
    width: 130px;
}
.app-image {
    width: 100%;
    height: 100%;
    position: relative;
}
.app-image img {
    width: 100%;
    max-width: 400px;
    position: absolute;
    bottom: -220px;
    right: 0px;
}

/* restaurant */
.restaurant {
    min-height: calc(100dvh - 90px);
    padding-top: 90px;
}
.restaurant .row > * {
    transition: all linear 0.3s;
}
.rest-content {
    width: 100%;
    max-width: 100%;
    margin-bottom: 80px;
    transition: all linear 0.3s;
}
.rest-content .pagination-nav {
    margin-top: 50px;
}
.group-detail{
    border-radius: 8px;
    background: var(--gray)
}
.group-detail p{
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    color: var(--text);
}
.rest-profile {
    padding: 16px 0px;
    border-bottom: 1px solid var(--border-gray);
}
.rest-media img {
    width: 100%;
    mask-image: url("../../images/mask.svg");
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: center;
}
.rest-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: capitalize;
}
.rest-title {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text);
}
.rest-review {
    display: -webkit-box;
    display: flex;
    align-items: center;
    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: 14px;
    font-weight: 300;
    line-height: 20px;
}
.rest-location {
    gap: 15px;
}
.rest-location span {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}
.rest-btns {
    display: flex;
    gap: 16px;
}
.rest-book-btn {
    height: 34px;
    padding: 10px 14px;
    border-radius: 20px;
    display: flex;
    align-items: 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: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffe8ed;
    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);
}
.rest-menu-wrapper.active {
    position: sticky;
    top: 70px;
    left: 0px;
    width: 100%;
    z-index: 9;
}
.rest-menu-group {
    display: flex;
    align-items: center;
    gap: 10px;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
}
.rest-menu-group .swiper {
    margin-left: 0;
}
.rest-menu-group .swiper-slide {
    width: fit-content;
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: var(--text);
    position: relative;
    transition: all linear 0.3s;
}
.rest-menu-group .swiper-slide.active {
    background: var(--primary);
    color: white;
}
.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: white;
    background-color: var(--primary);
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    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;
    background: rgb(174 25 45 / 0.3);
}
.rest-menu-group .swiper-button-disabled:hover {
    color: var(--text);
    background-color: var(--slate);
}
.rest-banner {
    max-height: 300px;
    margin-bottom: 15px;
}
.rest-banner img {
    width: 100%;
}
.rest-banner-title {
    font-family: "Nexa-Rust-Sans";
    font-size: 18px;
    line-height: 24px;
    text-align: left !important;
    color: var(--text-dark);
}
.group-order i {
    font-size: 13px;
    color: var(--primary);
}
.invite-others{
    font-size: 14px;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    color: var(--white);
    background-color: var(--primary);
    padding: 0 15px;
    height: 38px;
    border-radius: 8px;
    text-transform: capitalize;
    display: block;
    width: fit-content;
}
.invite-others i{
    font-size: 12px;
}
.restaurant .search-menu-input input {
    border-color: var(--secondary);
}
.restaurant .search-menu-input .search-input-icon {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--secondary);
}

.product-category-wrapper {
    padding-bottom: 30px;
}
.product-category-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 34px;
    padding: 20px 0 15px;
}

.custom-link {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.custom-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* booking  */
.booking {
    padding: 16px 0px 50px;
}
.booking .container {
    max-width: 800px;
}
.booking-paginate {
    display: inline-flex;
    align-items: center;
    justify-content: start;
    gap: 18px;
    margin-bottom: 16px;
    color: var(--text);
    transition: all linear 0.3s;
}
.booking-paginate:hover,
.booking-paginate:hover i {
    color: var(--primary);
}
.booking-paginate i {
    font-size: 18px;
    color: var(--text);
}
.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;
}
.booking-fieldset {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background-color: var(--white);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}
.booking-fieldset legend {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: capitalize;
    color: var(--heading);
}

/* checkout  */
.checkout {
    padding: 90px 0;
}
.checkout-group {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}
.checkout-delivery {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 40%;
}
.checkout-card {
    overflow: hidden;
    border-radius: 8px;
    background-color: rgb(172 25 44 / 8%);
    padding: 20px;
}
.checkout-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}
.checkout-card-head h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}
.checkout-card-head button {
    gap: 5px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all linear 0.3s;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    text-transform: capitalize;
    color: var(--primary);
    cursor: pointer;
}
.checkout-card-head button:hover {
    text-decoration: underline;
}
.checkout-fieldset {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: var(--text);
}
.checkout-fieldset .moreAddress {
    border-bottom: 1px solid var(--border-gray);
}
.checkout-fieldset .moreAddress:last-child {
    border-bottom: 0;
}
.checkout-fieldset:has(input:checked) {
    border-color: var(--primary);
}
.checkout-fieldset input {
    flex-shrink: 0;
}
.checkout-fieldset dl {
    width: 100%;
    max-width: 280px;
}
.checkout-fieldset dl dt {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 6px;
    color: var(--blue);
}
.checkout-fieldset dl dd {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 5px;
}
.checkout-fieldset .action-btn i {
    color: var(--secondary);
    cursor: pointer;
}
.checkout-fieldset .action-btn.delete i {
    color: var(--primary);
}
.checkout-morebtn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    gap: 8px;
    width: fit-content;
    margin-inline: auto;
    text-transform: capitalize;
    color: var(--white);
    cursor: pointer;
    width: 100%;
    background: var(--primary);
    padding: 5px 0;
    border-radius: 8px;
}
.checkout-summary-main {
    width: 60%;
}
.checkout-summary {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    overflow: hidden;
}
.checkout-summary-head {
    padding: 15px;
    background: var(--primary);
    text-align: center;
}
.checkout-summary-title {
    font-family: "Nexa-Rust-Sans";
    font-size: 18px;
    line-height: 24px;
    padding-bottom: 10px;
    text-align: left !important;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-gray);
}
.checkout-summary-main .restaurant-name {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--text);
    margin: 0;
}
.checkout select {
    -webkit-appearance: none;
    background-image: url(../../../images/down-arrow-green.svg);
    background-repeat: no-repeat;
    background-position: center right 20px;
}
.checkout-summary-head p {
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
}
.checkout-summary-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 12px;
    /* border-bottom: 1px solid var(--border-gray); */
}
.checkout-summary-item:first-child {
    /* border-top: 1px solid var(--border-gray); */
}
.checkout-summary-item h3 {
    font-size: 12px;
    font-weight: 500;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: var(--text);
    color: var(--white);
    gap: 2px;
}
.checkout-summary-item h3 i {
    font-size: 8px;
    font-weight: 700;
}
.checkout-summary-item dl {
    flex: auto;
    overflow: hidden;
}
.checkout-summary-item dl dt {
    font-size: 14px;
    font-weight: 600;
    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: 16px;
    font-weight: 600;
    margin-top: 5px;
    white-space: nowrap;
    text-transform: uppercase;
}
.checkout-summary-item.total{
    border-top: 1px solid var(--gray);
}
.product-group-status{
    font-weight: 600;
}
.product-group-status i{
    color: var(--red)
}
.group-host-note{
    font-size: 14px;
}
.checkout-summary-price-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.checkout-summary-price-list .custom-tip label{
    position:absolute;
    top:50%;
    left: 10px;
    transform:translateY(-50%);
    color: var(--placeholder);
}
.checkout-summary-price-list .custom-tip .form-control:not(.form-control-sm):not(.form-control-lg){
    padding-left: 30px;
    height: 35px;
}
.checkout-summary-price-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: var(--text);
}
.checkout-summary-price-list li:last-child {
    font-weight: 600;
}
.checkout .order-success-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 40px;
    font-family: "Nexa-Rust-Sans";
    color: var(--text-dark);
}

/* settings  */
.settings {
    /* min-height: calc(100dvh - 140px); */
    min-height: 100dvh;
    padding: 90px 0;
}
.settings-group {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 24px;
    background-color: rgb(172 25 44 / 8%);
}
.settings-group.active .settings-navs {
    padding: 20px 0px;
    display: block;
}
.settings-navs {
}
.settings-navs a,
.settings-navs button {
    gap: 20px;
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    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: var(--text);
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.settings-navs a span,
.settings-navs button span {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    text-align: left;
    color: var(--text);
}
.settings-title {
    font-size: 18px;
    font-family: "Nexa-Rust-Sans";
    margin-bottom: 16px;
    color: var(--text-dark);
}

/* profile  */
.profile-user {
    padding: 24px;
    margin-bottom: 24px;
    border-radius: 8px;
    border: 1px solid var(--secondary);
}
.profile-meta {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-gray);
}
.profile-meta img {
    width: 80px;
    border-radius: 12px;
    flex-shrink: 0;
}
.profile-meta dt {
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 12px;
}
.profile-meta dd {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;
    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: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
}
.profile-data li {
    width: calc(50% - 20px);
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}
.profile-data li span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 2px;
    color: var(--text);
}
.profile-data li {
    font-size: 16px;
    font-weight: 500;
}

/* order  */
.order-details-title {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    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);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}
.order-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 10px;
}
.order-meta li {
    display: flex;
    align-items: center;
    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: flex;
    align-items: center;
    justify-content: space-between;
}
.order-track li {
    width: 100%;
    display: flex;
    align-items: center;
    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);
}
.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;
}
.order-track li .title {
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    text-transform: capitalize;
}
.order-group {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}
.order-box {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-slate);
}
.order-box.address .order-box-item b {
    width: 65px;
}
.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: flex;
    flex-direction: column;
    gap: 10px;
}
.order-box-item {
    font-size: 14px;
    display: flex;
    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;
}
.order-start-btn {
    background: var(--primary);
    color: var(--white);
    border: 0;
    height: 45px;
    margin: 30px 0 0;
    display: block;
    padding: 0 30px;
    font-size: 18px;
    border-radius: 8px;
    font-family: "Mr-Orange";
    text-transform: uppercase;
}
.order-start-btn i {
    font-size: 16px;
}

/* table  */
.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;
}
.table-order tbody tr td:first-child {
    border-left-width: 1px;
}
.table-order tbody tr td:last-child {
    border-right-width: 1px;
}
.order-table-item dt {
    font-weight: 500;
    text-transform: capitalize;
    white-space: pre-wrap;
    margin-bottom: 6px;
}
.order-table-item dd {
    display: flex;
    flex-direction: column;
    text-transform: capitalize;
    font-weight: 400;
    gap: 6px;
}
.order-table-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.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: flex;
    align-items: center;
    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: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    gap: 16px;
}
.order-btns button {
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: 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  */
.terms .container {
    /* max-width: 750px; */
    padding: 100px 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;
}

/* reset password  */
.reset-password {
    background-color: #f4f6f9;
}
.reset-password .section-header {
    border: none;
    position: relative;
    margin-bottom: 30px;
}
.reset-password h1 {
    margin-bottom: 0;
    font-weight: 700;
    display: inline-block;
    font-size: 24px;
    margin-top: 3px;
    color: #34395e;
}
.form-row {
    gap: 15px;
    margin-bottom: 15px;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

/* card  */
.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
    background-color: #fff;
    border-radius: 3px;
    border: none;
    position: relative;
    margin-bottom: 30px;
    padding: 30px;
}
.card .card-header,
.card .card-body,
.card .card-footer {
    background-color: transparent;
    padding: 20px 25px;
}
.card .navbar {
    position: static;
}
.card .card-body {
    padding-top: 20px;
    padding-bottom: 20px;
}
.card .card-body .section-title {
    margin: 30px 0 10px 0;
    font-size: 16px;
}
.card .card-body .section-title:before {
    margin-top: 8px;
}
.card .card-body .section-title + .section-lead {
    margin-top: -5px;
}
.card .card-body p {
    font-weight: 500;
}
.card .card-header {
    border-bottom-color: #f9f9f9;
    line-height: 30px;
    -ms-grid-row-align: center;
    align-self: center;
    width: 100%;
    min-height: 70px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
}
.card .card-header .btn {
    margin-top: 1px;
    padding: 2px 15px;
}
.card .card-header .btn:not(.note-btn) {
    border-radius: 4px;
}
.card .card-header .btn:hover {
    box-shadow: none;
}
.card .card-header .form-control {
    height: 31px;
    font-size: 13px;
    border-radius: 30px;
}
.card .card-header .form-control + .input-group-btn .btn {
    margin-top: -1px;
}
.card .card-header h4 {
    font-size: 16px;
    line-height: 28px;
    color: #445aa5;
    padding-right: 10px;
    margin-bottom: 0;
}
.card
    .card-header
    h4
    + .card-header-action
    .input-group
    .input-group-btn
    + .form-control,
.card
    .card-header
    h4
    + .card-header-form
    .input-group
    .input-group-btn
    + .form-control {
    border-radius: 0 30px 30px 0 !important;
}
.form-group .control-label,
.form-group > label {
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
    color: var(--text);
    margin: 3px 0;
}
.form-group p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}
.custom-select,
.input-group-text,
select.form-control:not([size]):not([multiple]),
.form-control:not(.form-control-sm):not(.form-control-lg),
#date,
#time {
    font-size: 16px;
    padding: 5px 15px;
    height: 45px;
    border-radius: 6px;
}
.custom-select.is-invalid:focus,
.form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.was-validated .form-control:invalid:focus {
    box-shadow: none;
}
.form-control,
.input-group-text,
.custom-select,
.custom-file-label {
    background-color: #fdfdff;
    border-color: var(--secondary);
    border-radius: 8px;
}
.input-group-text {
    background-color: #cccccd4d;
    width: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.input-group-btn {
    width: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #87898b;
    border-radius: 6px;
}
.input-group-text i {
    font-size: 18px;
    width: 18px;
}
.input-group-small {
    width: 45px;
}
.input-group-small i {
    font-size: 18px;
}
.settings .action-btn {
    position: absolute;
    right: 0;
    height: 100%;
    border-radius: 0 4px 4px 0;
    overflow: hidden;
}
.settings .action-btn button {
    border-radius: 0;
    width: 42px;
}
#date,
#time,
.banner-input {
    border: 1px solid #87898b;
    width: calc(50% - 5px);
    border-radius: 0.25rem;
    background: transparent;
}
.banner-input:focus {
    background-color: transparent !important;
    border-color: #87898b !important;
}
.banner-input {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.delivery-date {
    border-top-right-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}
#later-delivery-inputs {
    /* display: none; */
}
#later-delivery-inputs.visible {
    display: flex;
    gap: 10px;
}
#later-delivery-inputs.hidden {
    display: none;
}
.form-control:focus,
.input-group-text:focus,
.custom-select:focus,
.custom-file-label:focus {
    background-color: #fefeff;
    border-color: #d9dbe9;
    box-shadow: none;
}
.profile-submit-btn {
    width: 180px;
    font-weight: 600;
    font-size: 14px;
    padding: 0 0.8rem;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    background-color: #445aa5;
    border-color: #445aa5;
}
.profile-submit-btn:active,
.profile-submit-btn:hover,
.profile-submit-btn.disabled:active,
.profile-submit-btn.disabled:hover {
    background-color: #445aa5 !important;
}

.swiper-wrapper {
    height: auto;
}

/* banner  */
.banner {
    background-color: #fff9fa;
    height: 100dvh;
    padding: 70px 0;
}
.banner-title span {
    color: var(--primary);
}
.banner-subtitle {
    font-size: 26px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 16px;
    color: var(--text);
}
.banner-search {
    width: 100%;
    height: 72px;
    padding: 12px;
    border-radius: 35px;
    background-color: var(--white);
    box-shadow: 0px 6px 32px rgba(237, 32, 73, 0.06);
    display: -webkit-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}
.banner-search input {
    width: 100%;
    height: 100%;
    padding: 0px 12px;
}
.banner-search input::placeholder {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.banner-search a {
    display: flex;
    align-items: 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: 25px;
    padding: 7px 24px;
    cursor: pointer;
    text-transform: capitalize;
    color: var(--white);
    background-color: var(--primary);
}
.banner .row {
    height: 100%;
}
.banner-image {
    height: 100%;
}
.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: top;
}
.left-banner,
.right-banner {
    width: 50%;
}
.left-banner img {
    object-fit: cover;
}
.right-banner form {
    max-width: 70%;
}
.banner-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 80px;
    margin-bottom: 58px;
}
.banner-wrapper {
    height: 100%;
}
.banner-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 30px;
}
.btn-group-form {
    gap: 15px;
    flex-wrap: wrap;
    display: flex;
}
.btn-group-form label.btn {
    border: 1px solid #799c3d;
    border-radius: 6px !important;
}
.btn-group-form label.btn:focus,
.btn-group-form label.btn.focus {
    box-shadow: none;
}
.btn-group-form label.btn.active {
    background: #799c3d;
    color: #fff;
}
.banner-wrapper .banner-label {
    font-size: 18px;
    font-weight: 600;
}

/* loader  */
.custom-loader {
    position: absolute;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 40%);
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.livewire-loader {
    position: fixed;
    top: 0;
    left: 0;
    background: rgb(0 0 0 / 40%);
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.btn-edit {
    background-color: var(--secondary);
    color: white;
}
.btn-remove {
    background-color: var(--primary);
    color: white;
}

@keyframes spinner-border {
    to {
        transform: rotate(360deg);
    }
}
.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border 0.75s linear infinite;
}
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

/* restaurant section wrapper  */
.section-wrapper.restaurant .location-search-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #799c3d;
}
.section-wrapper.restaurant .location-search-title span {
    font-weight: 500;
}
.edit-location-text{
    font-size: 16px;
    line-height: 20px;
}
.edit-location {
    font-size: 14px;
    font-weight: 600;
    padding: 5px;
    background: #ac192c;
    color: #fff;
    border-radius: 4px;
    margin-left: 10px;
}
#editLocation .modal-dialog {
    max-width: 600px;
}
#editLocation .modal-content form {
    max-width: 80%;
}

/* join group order  */
.join-group-section form{
    max-width: 600px;
}
.cancel-order-status p {
    font-size: 16px;
}
.cancel-order-status .order-status-title{
    margin: 25px 0 15px;
    border-bottom: 1px solid var(--border-gray);
    padding-bottom: 10px;
}
.cancel-order-status .order-status-title p:first-child{
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 1399px) {
    .section-subtitle {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .banner-subtitle {
        font-size: 22px;
        line-height: 30px;
    }
    .app-content h2 {
        font-size: 45px;
        line-height: 65px;
    }
    .app-content p {
        font-size: 20px;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 1199px) {
    .banner .row {
        height: auto;
    }
    .banner-image img {
        object-position: top;
    }
    .left-banner,
    .right-banner {
        width: 100%;
    }
    .banner {
        height: auto;
    }
    .banner-wrapper {
        height: auto;
    }
    .form-uploader::before {
        width: 100.5%;
    }
    .app-content h2 {
        font-size: 48px;
        line-height: 60px;
    }
    .filter-options div:nth-child(1) {
        grid-column: 1/7;
    }
    .filter-options div:nth-child(2) {
        grid-column: 7/13;
    }
    .filter-options div:nth-child(3) {
        grid-column: 1/5;
    }
    .filter-options div:nth-child(4) {
        grid-column: 5/10;
    }
    .filter-options div:nth-child(5) {
        grid-column: 10/13;
    }
    .filter-button button i {
        display: block;
    }
    .order-track li .title {
        width: 70px;
        font-size: 12px;
        white-space: pre-wrap;
    }
    .banner-title {
        font-size: 45px;
        line-height: 65px;
        margin-bottom: 45px;
    }
    .auth-content {
        padding: 20px 40px;
    }
    .product-modal .modal-dialog{
        padding: 0 20px;
    }
}
@media screen and (max-width: 991px) {
    .auth-content {
        padding: 20px 40px;
    }
    .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;
    }
    .cart-sidebar.active {
        opacity: 1;
        visibility: visible;
    }
    .cart-content {
        top: 0px;
        height: 100%;
    }
    .cart-content .cart-close {
        border: 1px solid var(--border-slate);
        line-height: 24px;
        left: 20px;
        top: 15px;
    }
    .cart-scroll-group {
        height: calc(100vh - 165px);
    }
    .rest-content{
        margin-bottom: 0;
    }
    .footer{
        position:relative;
    }
    .footer-contact {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 20px;
        margin-top: 35px;
    }
    .footer-contact .footer-title {
        margin-bottom: 0px;
    }
    .footer-contact nav {
        margin-bottom: 0px;
    }
    .banner-subtitle {
        font-size: 22px;
        line-height: 30px;
    }
    .app-content h2 {
        font-size: 35px;
        line-height: 45px;
    }
    .app-content p {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 25px;
    }
    .checkout-group{
        flex-direction: column;
    }
    .checkout-summary-main{
        width: 100%;
    }
    .checkout-delivery{
        width:100%;
    }
    .settings-btn {
        display: flex;
    }
    .settings-navs {
        padding: 0px;
        display: flex;
        justify-content: space-between;
    }
    .settings-navs a, .settings-navs button{
        width: auto;
        gap: 10px;
        flex: 1 auto;
        justify-content: center;
    }
    .banner-title {
        font-size: 38px;
        line-height: 58px;
    }
    .special-message{
        flex-wrap: wrap;
    }
    .special-message .product-modal-group{
        width: 100%;
    }
    
}
@media (max-width: 767px) {
    .form-group {
        margin-bottom: 10px;
    }
    .form-legend {
        font-size: 18px;
    }
    .xdsoft_calendar table thead {
        display: none;
    }
    .xdsoft_calendar table tbody tr {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .xdsoft_calendar table tbody tr td {
        padding: 0px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .xdsoft_calendar table tbody tr td > div{
        padding-right: 0;
    }
    .product-card-group .row {
        gap: 20px;
    }
    .section-subtitle {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 16px;
    }
    .section-title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom:0;
    }
    .settings-navs a, .settings-navs button{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }
    .settings-navs a span, .settings-navs button span{
        display: none;
    }
    .header{
        padding: 0 15px;
    }
    .header-auth-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 32px;
        cursor: pointer;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
        transition: all linear 0.3s;
        color: var(--white);
    }
    .header-auth-btn i {
        font-size: 20px;
    }
    .header-auth-btn:hover {
        border-color: rgba(238, 29, 72, 0.3);
    }
    .header-auth-navs {
        position: absolute;
        top: 46px;
        right: 0px;
        z-index: 3;
        padding: 6px;
        border-radius: 8px;
        transform-origin: top;
        transform: scaleY(0);
        flex-direction: column;
        align-items: flex-start;
        border-color: var(--border-slate);
        background-color: var(--white);
        box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.08);
        transition: all linear 0.3s;
    }
    .header-auth-navs.active {
        transform: scaleY(1);
    }
    .header-auth-navs a {
        width: 100%;
        justify-content: flex-start;
        padding-top: 3px;
        padding-bottom: 3px;
        padding-right: 32px;
        padding-left: 8px;
    }
    .header-auth-navs a:first-child {
        border-radius: 8px;
    }
    .header-auth-navs a:last-child {
        border: none;
        border-radius: 8px;
    }
    .header-account-btn,
    .header-selection-btn {
        padding: 0px 7px;
    }
    .header-account-btn span,
    .header-selection-btn span {
        display: none;
    }
    .header-account-btn i,
    .header-selection-btn i {
        display: none;
    }
    .header-account-navs,
    .header-selection-list {
        top: 46px;
    }
    .restaurant-card h4 {
        font-size: 16px;
        line-height: 22px;
    }
    .app {
        padding: 60px 0px;
    }
    .app-content h2 {
        font-size: 25px;
        line-height: 35px;
        margin-bottom: 15px;
    }
    .app-content nav img {
        width: 100px;
    }
    .app-image img {
        bottom: -150px;
    }
    .filter-options div:nth-child(1) {
        grid-column: 1/13;
    }
    .filter-options div:nth-child(2) {
        grid-column: 1/13;
    }
    .rest-menu-wrapper.active {
        top: 60px;
    }
    .checkout-delivery {
        width: 100%;
    }
    .checkout-summary {
        width: 100%;
    }
    .profile-data li {
        max-width: 200px;
    }
    .order-group {
        flex-direction: column;
    }
    .edit-location-text{
        font-size: 14px;
        line-height: 20px;
    }
    .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:nth-child(1),
    .table-order tbody tr td:nth-child(2) {
        display: flex;
        align-items: flex-start;
    }
    .table-order tbody tr td:nth-child(1) {
        padding-bottom: 12px !important;
    }
    .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;
    }
    .order-table-item {
        width: 100%;
        margin-top: -4px;
    }
    .order-table-price {
        width: 100%;
        margin-top: -4px;
    }
    .banner-title {
        font-size: 48px;
        line-height: 68px;
    }
    .right-banner form{
        max-width: 100%;
    }
    .footer{
        min-height: 50px;
        padding: 10px 30px;
    }
    .footer a,
    .footer button {
        font-size: 13px;
        margin: 0 8px;
    }
    .auth-header {
        padding: 0;
    }
    .auth .register .register-btn {
        margin: 10px auto;
    }
    .auth-divide {
        margin: 15px 0;
    }
    .auth-content {
        padding: 10px 30px;
    }
    .product-category-title{
        padding: 15px 0 0;
        font-size: 18px;
        line-height: 24px;
    }
    .product-card{
        min-height: 310px;
    }
    .product-card-media{
        height: 160px;
    }
    .product-modal-footer .cart-btn{
        margin: 15px auto 0;
    }
    .product-modal-title{
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 0;
    }
    .product-modal-list{
        gap: 10px;
    }
    .product-modal-list li{
        gap: 8px;
    }
    .product-modal .product-detail-box{
        flex-wrap: wrap;
    }
    .product-modal-media{
        width: 100%;
    }
}
@media (max-width: 575px) {
    .form-fieldset {
        padding: 16px;
    }
    .form-check-label{
        font-size: 14px;
    }
    hr{
        margin: 10px 0;
    }
    .pagination-menu {
        --paginate-size: 30px;
    }
    .category-card h4 {
        font-size: 18px;
        padding: 8px 12px;
    }
    .auth-sync {
        flex-direction: column;
    }
    .product-modal .modal-dialog {
        margin: 10px auto;
        padding: 0px 10px;
    }
    .booking-modal .modal-dialog {
        margin: 10px auto;
        padding: 0px 10px;
    }
    .address-modal .modal-dialog {
        margin: 10px auto;
        padding: 0px 10px;
    }
    .shop-modal .modal-dialog {
        margin: 10px auto;
        padding: 0px 10px;
    }
    .header-btn {
        display: none;
    }
    .footer-widget {
        margin-top: 35px;
    }
    .banner-subtitle {
        font-size: 18px;
        line-height: 28px;
    }
    .banner-search {
        height: 56px;
        padding: 8px;
        gap: 10px;
    }
    .banner-search input {
        padding: 0px 8px;
    }
    .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 button {
        font-size: 14px;
        line-height: 24px;
        padding: 5px 15px;
    }
    .app-content {
        width: 100%;
        text-align: center;
    }
    .app-content h2 {
        font-size: 28px;
        line-height: 38px;
    }
    .app-content nav {
        margin-bottom: 40px;
        justify-content: center;
    }
    .app-content nav img {
        width: 110px;
    }
    .app-image {
        height: 180px;
    }
    .app-image img {
        max-width: 270px;
        right: 50%;
        transform: translateX(50%);
    }
    .filter-options {
        row-gap: 18px;
    }
    .filter-options div:nth-child(3) {
        grid-column: 1/13;
    }
    .filter-options div:nth-child(4) {
        grid-column: 1/13;
    }
    .filter-options div:nth-child(5) {
        grid-column: 1/13;
    }
    .profile-user {
        padding: 16px;
    }
    .profile-data{
        gap: 12px;
    }
    .profile-data li {
        max-width: 100%;
        width: 100%;
    }
    .form-uploader{
        width: 80px;
        height: 80px;
    }
    .order-meta {
        flex-direction: column;
        justify-content: center;
    }
    .order-track li.tracked .fa-circle-check {
        font-size: 12px;
    }
    .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 {
        width: 55px;
        font-size: 10px;
        font-weight: 500;
    }
    .banner-title {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 45px;
    }
}
@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 {
        order: 1;
    }
}
@media (min-width: 0px) and (max-width: 350px) {
    .header-group {
        gap: 12px;
    }
}
@media (min-width: 576px) and (max-width: 767px) {
    .app-content p {
        font-size: 16px;
        line-height: 26px;
    }
}

input[type="checkbox"][disabled] {
    opacity: 0.5 !important;
    cursor: default !important;
    pointer-events: none !important;
}

/* .required-fields {
    border: 1px solid #ff0101 !important;
}

/* Clearable text inputs */

.clearable__clear{
    display: none;
    position: absolute;
    right:11%; 
    top:1%;
    padding: 0 10px;
    font-style: normal;
    font-size: 1.8em;
    user-select: none;
    cursor: pointer;
}
.clearable input::-ms-clear {  /* Remove IE default X */
    display: none;
}

#payment_type {
    border-color: #495057 !important;
}

.product-modal-group .product-modal-subset .require {
    color: var(--primary);
}

.product-modal-group.required-fields {
    border-color: var(--primary);
}
