@charset "UTF-8";
/*
Author        :
Author Uri    :
Template Name :
Version       : 1.0
*/
/*----------------------------------------------
[Table of contents]

01. Nav section start
02. Bottom Mobile, Tab nav section start
03. Hero section start
04. Service category section start
05. Location map section start
06. Featured section start
07. Destination section start
08. latest ads section start
09. Multiple search section start
10. Listing section start
11. Product details page start
12. Ad section2 start
13. Ad section3 start
14. Review section start
15. Posts page start
16. pricing section start
17. Faq section start
18. Blog section start
19. Newsletter section start
20. Footer section start
21. Copyright section start
22. Contact section start
23. Map section start
24. Login Signup section start
25. Blog details section start
26. Pagination section start
27. Error section start
----------------------------------------------*/
/*----------------------------------------------
Typography
----------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --heading-font: "Jost", serif;
    --body-font: "Jost", serif;
    --primary-color: 99, 171, 69;
    --primary-dark: rgb(77, 164, 78);
    --body-color: #333333;
    --heading-color: 14, 7, 0;
    --black: 0, 0, 0;
    --light-gray: #dddddd;
    --white: 255, 255, 255;
    --soft-blue: 193, 191, 253;
    --grayish-violet: #f5f4f7;
    --soft-green: #ccf888;
    --moderate-lime-green: #4da44e;
    --soft-red: 216, 42, 104;
    --light-red: 255, 93, 93;
    --lime-gray: #d0d0d0;
    --vivid-orange: #fb6116;
    --soft-magenta: 204, 84, 244;
    --yellow: #fcda69;
    --orange: #ffc83e;
    --input-color: var(--bg-color1);
    --input-color2: #ffffff;
    --bg-color1: #ffffff;
    --bg-color2: rgb(var(--primary-color), 0.05);
    --bg-color3: rgb(var(--primary-color), 0.1);
    --bg-color4: #f2f2f2;
    --border-color1: rgba(231, 234, 243, 0.7);
    --border-color2: rgba(140, 152, 164, 0.25);
    --border-color3: rgba(255, 255, 255, 0.06);
    --shadow1: 0 0.375rem 0.75rem rgba(140, 152, 164, 0.075);
    --shadow2: 0 0.1875rem 0.75rem rgba(140, 152, 164, 0.25);
    --shadow3: 0 0.6125rem 2.5rem 0.6125rem rgba(140, 152, 164, 0.175);
    --transition: all 0.3s ease-in-out;
    --bg: #f6fbf9;
    --card: #ffffff;
    --accent: #2fa163;
    --muted: #6b7176;
    --bubble: #eaf6ef;
    --dark: #0f1720;
    --text-muted: #6b7280;
    --text-secondary: #70757a;
    --danger: #ef4444;
    --danger-hover: #dc2626;
    --pc: rgb(99, 171, 69);
    --hc: rgb(14, 7, 0);
    --border: #e5e7eb;
    --g50: #f9fafb;
    --g100: #f3f4f6;
    --g500: #6b7280;
    --g600: #4b5563;
    --p500: #a855f7;
    --p600: #9333ea;
    --card-shadow: 0 4px 24px -4px hsl(160 25% 15% / .08);
    --card-accent: 24 95% 60%;

}

/*----------------------------------------------
Reset section start
----------------------------------------------*/
.rtl {
    direction: rtl;
}

::-moz-selection {
    color: rgb(var(--primary-color));
    background: rgb(var(--primary-color), 0.1);
}

::selection {
    color: rgb(var(--primary-color));
    background: rgb(var(--primary-color), 0.1);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -webkit-appearance: textfield;
    appearance: textfield;
    -moz-appearance: textfield;
}

/*----------------------------------------------
preloader section start
----------------------------------------------*/
#preloader {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 99999;
    background-color: var(--bg-color1);
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloader .loader {
    width: 70px;
    height: 70px;
    position: relative;
    transform: rotate(45deg);
}

#preloader .loader:before,
#preloader .loader:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50% 50% 0 50%;
    background: rgba(0, 0, 0, 0);
    background-image: radial-gradient(circle 11.2px at 50% 50%, rgba(0, 0, 0, 0) 94%, rgb(var(--primary-color)));
}

#preloader .loader:after {
    animation: pulse-ytk0dhmd 1s infinite;
    transform: perspective(336px) translateZ(0px);
}

@keyframes pulse-ytk0dhmd {
    to {
        transform: perspective(336px) translateZ(168px);
        opacity: 0;
    }
}

/*----------------------------------------------
preloader end
----------------------------------------------*/
/*----------------------------------------------
scroll up section start
----------------------------------------------*/
.scroll-up {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99999;
}

.rtl .scroll-up {
    left: 50px;
    right: auto;
}

@media (max-width: 767px) {
    .scroll-up {
        bottom: 50px;
        right: 20px;
    }

    .rtl .scroll-up {
        left: 20px;
    }
}

.scroll-up i {
    color: #fff;
    height: 40px;
    width: 40px;
    background: var(--btn-bg1);
    border-radius: 4px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.scroll-up i:hover {
    background: var(--btn-bg2);
}

/*----------------------------------------------
scroll up end
----------------------------------------------*/
*,
*::after,
*::before {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin-bottom: 10px;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
    color: rgb(var(--primary-color));
}

button {
    background: none;
    border: none;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--heading-font);
    font-weight: 500;
    line-height: 1.2;
    color: rgb(var(--heading-color));
}

h1 {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 50px;
}

@media (max-width: 991px) {
    h1 {
        font-size: 36px;
        line-height: 50px;
    }
}

h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    h2 {
        font-size: 28px;
    }
}

h3 {
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 600;
}

@media (max-width: 991px) {
    h3 {
        font-size: 24px;
    }
}

h4 {
    font-size: 24px;
    margin-bottom: 5px;
}

@media (max-width: 991px) {
    h4 {
        font-size: 20px;
    }
}

h5 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 500;
}

h6 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 0;
    font-family: var(--heading-font);
    color: rgb(var(--heading-color));
}

img {
    max-width: 100%;
    height: auto;
    pointer-events: none;
}

figure {
    margin: 0;
}

.logo {
    max-width: 130px;
    min-width: 100px;
}

.footer-logo {
    max-width: 200px;
    min-width: 100px;
}

body {
    font-family: var(--body-font);
    line-height: 1.4;
    color: var(--body-color);
    font-size: 16px;
}

@media (max-width: 991px) {
    body {
        padding-bottom: 50px;
    }
}

html {
    scroll-behavior: smooth;
}

textarea.form-control {
    height: initial;
    border-radius: 15px;
}

.form-label {
    color: rgb(var(--heading-color));
    text-transform: capitalize;
    font-size: 15px;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-select {
    color: var(--body-color);
    background-image: url(../img/accordion/down-arrow-white.png);
    background-size: 12px;
}

option {
    background-color: var(--bg-color1);
}

.form-control,
.form-select {
    border-radius: 9999px;
    background-color: var(--input-color);
    border: 1px solid var(--border-color1);
    height: 45px;
}

.input-group .input-group-text {
    border-top-right-radius: 99999px;
    border-bottom-right-radius: 99999px;
}

.form-control::-moz-placeholder,
.form-select::-moz-placeholder {
    color: var(--body-color);
}

.form-control::placeholder,
.form-select::placeholder {
    color: var(--body-color);
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border: 1px solid rgb(var(--primary-color));
    background-color: var(--bg-color1);
}

.form-control:disabled {
    background: #f2f2f2;
}

.form-check label,
.form-check-input {
    cursor: pointer;
}

.form-check-input:checked {
    background-color: rgb(var(--primary-color));
    border-color: rgb(var(--primary-color));
}

.form-check-input:focus {
    border-color: rgb(var(--primary-color));
    box-shadow: none;
}

.rtl .form-check {
    padding-right: 1.5em;
}

.rtl .form-check .form-check-input {
    float: right;
    margin-right: -1.5em;
}

.form-select {
    background-repeat: no-repeat;
}

.input-group {
    height: 45px;
    border-radius: 8px;
}

.input-group-text {
    min-width: 45px;
    border: none;
    display: flex;
    justify-content: center;
    color: rgb(var(--primary-color));
    background-color: rgb(var(--primary-color), 0.1);
    cursor: pointer;
    gap: 5px;
}

/*----------------------------------------------
intlTelInput section start
----------------------------------------------*/
.iti {
    display: flex;
}

.iti__selected-flag {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.iti__country-list {
    box-shadow: var(--shadow1);
    border: 1px solid var(--border-color2);
    border-radius: 5px;
}

.iti-mobile .iti__country-list {
    z-index: 9999 !important;
}

.iti--separate-dial-code .iti__selected-flag {
    background-color: rgb(var(--primary-color), 0.1) !important;
    border-radius: 9999px;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
    background-color: rgb(var(--primary-color), 0.1);
}

.rtl .iti--allow-dropdown .iti__flag-container,
.rtl .iti--separate-dial-code .iti__flag-container {
    right: 0;
    left: auto;
}

.rtl .iti__selected-flag {
    border-top-left-radius: 0;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 10px;
}

.rtl .iti--allow-dropdown input,
.rtl .iti--allow-dropdown input[type=tel],
.rtl .iti--allow-dropdown input[type=text],
.rtl .iti--separate-dial-code input,
.rtl .iti--separate-dial-code input[type=tel],
.rtl .iti--separate-dial-code input[type=text] {
    padding-left: 6px !important;
    padding-right: 96px;
}

.dark-theme .iti__country-list {
    background-color: var(--bg-color3);
}

/*----------------------------------------------
intlTelInput end
----------------------------------------------*/
/*----------------------------------------------
Select2 section start
----------------------------------------------*/
img.img-flag {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--border-color2);
}

span.select2.select2-container.select2-container--default {
    width: 100% !important;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    border: 1px solid var(--border-color1);
    height: 45px;
    display: flex;
    align-items: center;
    font-size: 15px;
    padding: 0.375rem 15px;
    border-radius: 10px;
}

.select2-container .select2-dropdown {
    border: 1px solid var(--border-color2);
    background-color: var(--bg-color1);
}

.select2-container .select2-dropdown .select2-search__field {
    border-radius: 5px;
    border: 1px solid var(--border-color2);
    outline: 0;
}

.select2-container .select2-selection--single:focus,
.select2-container .select2-selection--multiple:focus {
    border: 1px solid var(--border-color1);
    box-shadow: none;
}

.select2-container .select2-dropdown .select2-search__field {
    background-color: var(--bg-color1);
}

.select2-container .select2-dropdown .select2-search__field:focus-visible {
    box-shadow: none;
    border: 1px solid var(--border-color2);
}

.select2-results__option {
    border-radius: 5px;
    color: rgb(var(--heading-color));
}

.select2-results__option span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: rgb(var(--primary-color));
}

.select2-container--default .select2-results__option--selected {
    background: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.select2-container--default .select2-results__option--selected:hover {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.select2-container--default .select2-results>.select2-results__options {
    text-transform: capitalize;
    padding: 5px;
    max-height: 300px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid rgb(var(--primary-color));
    box-shadow: 0 0 0 4px rgba(0, 141, 255, 0.1);
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid var(--border-color2);
    height: 45px;
    display: flex;
    align-items: center;
    background-color: var(--bg-color1);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 10px;
    text-transform: capitalize;
    color: rgb(var(--heading-color));
    padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: var(--body-color) transparent transparent transparent;
    border-width: 4px 4px 0 4px;
    margin-left: -10px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent rgb(var(--primary-color)) transparent;
    border-width: 0 4px 4px 4px;
}

.rtl .select2-container--default .select2-selection--single .select2-selection__arrow {
    left: 5px;
}

.rtl .select2-container .select2-selection--single .select2-selection__rendered {
    text-align: right;
    width: 100%;
    padding-right: 0;
    padding-left: 10px;
}

.rtl .select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-left: -4px;
}

.rtl .select2-container--default .select2-selection--single .select2-selection__rendered span {
    flex-direction: row-reverse;
}

/*----------------------------------------------
Select2 end
----------------------------------------------*/
/*----------------------------------------------
Breadcrumb start
----------------------------------------------*/
.breadcrumb {
    display: inline-flex;
    justify-content: center;
    margin-bottom: 0;
}

.breadcrumb .breadcrumb-item {
    font-weight: 500;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    color: rgb(var(--heading-color));
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
}

.breadcrumb .breadcrumb-item.active {
    color: rgb(var(--primary-color));
    text-transform: capitalize;
}

.rtl .breadcrumb-item+.breadcrumb-item::before {
    float: right;
    padding-left: var(--bs-breadcrumb-item-padding-x);
    transform: rotate(180deg);
}

/*----------------------------------------------
Breadcrumb end
----------------------------------------------*/
::-webkit-scrollbar {
    width: 4px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgb(var(--primary-color), 0.8);
    visibility: hidden;
    opacity: 0;
}

:hover::-webkit-scrollbar-thumb {
    visibility: visible;
    opacity: 1;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-thumb {
    visibility: visible;
    opacity: 1;
}

body::-webkit-scrollbar-thumb:hover {
    background-color: rgb(var(--primary-color));
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    width: 35px;
    height: 35px;
    border-radius: 50% !important;
    background: rgb(var(--primary-color)) !important;
    background-size: 200% auto !important;
    color: rgb(var(--white)) !important;
    font-size: 16px !important;
    transition: var(--transition);
}

.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
    background-position: center right !important;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 5px;
    background: rgb(var(--primary-color));
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: rgb(var(--primary-color));
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots span {
    background: rgb(var(--primary-color));
    width: 30px;
    height: 5px;
}

.owl-theme .owl-dots .owl-dot span {
    transition: all 0.5s ease-in-out;
}

.rtl .owl-nav .owl-next,
.rtl .owl-nav .owl-prev {
    transform: rotate(180deg);
}

.modal {
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.modal-content {
    border: none;
}

.modal-footer {
    padding: 16px 30px;
}

.modal-header {
    border-bottom: 1px solid var(--border-color2);
    padding: 12px 16px 5px;
    border-bottom: none;
}

.modal-header .modal-title {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
}

.modal-footer {
    border-top: 1px solid var(--border-color1);
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 580px;
    }

    .modal-body {
        padding: 0 30px 20px;
    }
}

@media (min-width: 576px) {
    #lang-currency-modal .modal-content {
        padding: 20px 40px;
    }
}

.cmn-btn-close {
    font-size: 18px;
    width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0;
    margin: 0;
    border: 1px solid var(--border-color1);
    opacity: 1;
    box-shadow: none;
    border-radius: 6px;
    transition: var(--transition);
    color: var(--body-color);
}

.cmn-btn-close:hover {
    background-color: rgb(var(--primary-color), 0.1);
    color: rgb(var(--primary-color));
}

.accordion-button {
    color: rgb(var(--heading-color));
    font-weight: 500;
    font-size: 18px;
    border-radius: 10px !important;
    text-transform: capitalize;
    background-color: var(--bg-color2);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    box-shadow: none;
    background: transparent;
    color: rgb(var(--primary-color));
}

.accordion-button::after {
    background-size: 18px;
}

.accordion-item {
    margin: 10px 0;
    border-radius: 10px;
    border: none;
    background-color: var(--bg-color2);
    color: rgb(var(--heading-color));
}

.video-box {
    position: relative;
}

.video-box img {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid var(--border-color1);
}

.avatar-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-box .thumbs-area img {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 3px;
    border: 1px solid var(--border-color1);
    box-shadow: var(--shadow1);
}

.avatar-box .content-area i {
    margin: 0 5px;
    color: rgb(var(--primary-color));
}

.ui-widget.ui-widget-content {
    width: 100%;
    border-color: var(--border-color1);
}

.ui-datepicker td {
    padding: 5px;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: none;
    background: transparent;
    color: rgb(var(--heading-color));
    text-align: center;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.ui-state-default:hover {
    color: rgb(var(--primary-color));
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    color: rgb(var(--primary-color));
    border: 1px solid rgb(var(--primary-color));
}

.ui-widget-header {
    background-color: hsl(var(--base)/0.1);
    border: none;
}

.ui-state-hover {
    background: transparent !important;
}

.ui-datepicker-next,
.ui-datepicker-prev {
    border: 1px solid var(--border-color1);
    cursor: pointer;
}

.fw-medium {
    font-weight: 500;
}

/*----------------------------------------------
Reset end
----------------------------------------------*/
/*----------------------------------------------
Reusable style section start
----------------------------------------------*/
.language-box .dropdown-toggle {
    padding: 12px 20px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    background-color: var(--bg-color2);
    border-radius: 60px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-box .dropdown-toggle:hover {
    background-color: rgb(var(--primary-color), 0.1);
}

.language-box .dropdown-toggle img {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    border-radius: 50%;
}

.language-box .dropdown-menu {
    padding: 0;
    border: none;
    border-radius: 10px;
    min-width: initial;
}

.language-box .dropdown-menu .dropdown-item {
    padding: 7px 15px;
    text-transform: capitalize;
    align-items: center;
    border-radius: 0;
}

.language-box .dropdown-menu .dropdown-item img {
    width: 25px;
    min-width: 25px;
    height: 25px;
    min-height: 25px;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .language-box {
        display: flex;
        justify-content: center;
    }

    .dropdown-toggle.show::after {
        border-top: 0;
        border-bottom: 0.3em solid;
    }
}

@media (max-width: 575px) {
    .language-box .dropdown-toggle {
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .language-box .dropdown-toggle .text {
        display: none;
    }
}

.cmn-box {
    border-radius: 16px;
    padding: 30px 20px;
    transition: var(--transition);
    background-color: var(--bg-color1);
}

.cmn-box:hover {
    background-color: var(--bg-color2);
}

.text-underline {
    position: relative;
    z-index: 1;
    display: inline-flex;
}

.text-underline::after {
    -webkit-mask-image: url(../img/svg/download2.svg);
    mask-image: url(../img/svg/download2.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    bottom: -0.1em;
    content: "";
    display: block;
    height: 0.3em;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
    background: var(--gradient-bg);
}

.link {
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.link:hover {
    text-decoration: underline;
}

.link-box {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-radius: 10px;
    background-color: rgb(var(--primary-color), 0.1);
    font-size: 18px;
}

.link-underline {
    text-decoration: underline;
    cursor: pointer;
}

.link-underline:hover {
    text-decoration: underline;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box .form-control {
    border-radius: 5px;
    padding-right: 50px;
}

.search-box .search-btn {
    position: absolute;
    background-color: rgb(var(--primary-color));
    width: 45px;
    height: 90%;
    border-radius: 5px;
    right: 2px;
}

.search-box .search-btn i {
    color: rgb(var(--white));
    font-size: 18px;
}

.rtl .search-box .search-btn {
    left: 2px;
    right: auto;
}

.rtl .search-box .search-btn i {
    transform: rotateY(180deg);
}

.rtl .search-box .form-control {
    padding-right: 10px;
    padding-left: 50px;
}

.search-box2 {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 650px;
    margin: 0 auto;
}

.search-box2.active {
    position: relative;
    z-index: 99999;
}

.search-box2.active::after {
    background-color: rgb(var(--white), 0.9);
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.search-box2.active .search-result {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.search-box2 .form-control {
    background-color: var(--bg-color1);
    border-radius: 4px;
    height: 40px;
    border-radius: 9999px;
    padding: 10px 60px 10px 20px;
    height: 60px;
    box-shadow: var(--shadow2);
}

.search-box2 .form-control:focus {
    outline: 1px solid rgb(var(--primary-color));
}

.search-box2 .search-btn {
    transition: var(--transition);
    position: absolute;
    right: 6px;
    background-color: rgb(var(--primary-color));
    height: calc(100% - 12px);
    border-radius: 9999px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--white));
    text-transform: capitalize;
    gap: 10px;
    font-size: 16px;
}

.search-box2 .search-btn:hover {
    color: rgb(var(--white));
}

.search-box2 .search-result {
    position: absolute;
    left: 0;
    top: calc(100% + 2px);
    width: 100%;
    background-color: var(--bg-color1);
    box-shadow: var(--shadow2);
    border-radius: 10px;
    z-index: 1;
    /* border: 1px solid var(--border-color2); */
    color: var(--body-color);
    max-height: 346px;
    overflow: auto;
    transform-origin: 0 0;
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-box2 .search-result .search-item {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
    cursor: pointer;
}

.search-box2 .search-result .search-item:hover {
    background-color: rgb(var(--primary-color), 0.1);
}

.search-box2 .search-result .search-item .icon-box {
    font-size: 22px;
    color: rgb(var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border: 1px solid var(--border-color1);
    border-radius: 5px;
    background-color: rgb(var(--primary-color), 0.1);
}

.search-box2 .search-result .search-item .icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.search-box2 .search-result .search-item .img-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.search-box2 .search-result .search-item .img-box img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.search-item .text-box {
    text-align: start;
}

.search-box2 .search-result .search-item .title {
    font-size: 16px;
    text-transform: capitalize;
    color: rgb(var(--heading-color));
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    font-weight: 500;
}

.search-box2 .search-result .search-item .sub-title {
    margin-top: 5px;
    font-size: 12px;
    text-transform: capitalize;
    color: rgb(var(--heading-color));
}

.search-box2 .search-result .search-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color1);
}

.search-box2 .search-result .recent-clear {
    border-bottom: 1px solid var(--border-color1);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: capitalize;
    padding: 10px 20px;
}

.rtl .search-box2 .form-control {
    padding: 10px 20px 10px 60px;
}

.rtl .search-box2 .search-btn {
    right: auto;
    left: 6px;
}

.rtl .search-box2 .search-btn i {
    transform: rotate(90deg);
}

.search-box3 {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box3 .form-control {
    background-color: var(--bg-color1);
    border-radius: 4px;
    height: 50px;
    border-radius: 9999px;
    padding: 6px 45px 6px 12px;
    box-shadow: var(--shadow1);
}

.search-box3 .form-control:focus {
    outline: 1px solid rgb(var(--primary-color));
}

.search-box3 .search-btn {
    transition: var(--transition);
    position: absolute;
    right: 16px;
    height: calc(100% - 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    font-size: 16px;
}

.multiple-search-section {
    margin-top: 50px;
}

.multiple-search-box-wrapper {
    position: relative;
    padding: 20px;
}

.multiple-search-box-wrapper::after {
    content: "";
    background-color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.multiple-search-box {
    background-color: rgb(var(--primary-color));
    border-radius: 5px;
    z-index: 1;
    position: relative;
    padding: 10px;
}

.multiple-search-box .filter-btn {
    border: 1px solid var(--border-color1);
    background-color: rgb(var(--primary-color));
    padding: 10px 20px;
    font-weight: 600;
}

.multiple-search-box .btn-check:checked+.btn,
.multiple-search-box .btn-check+.btn:hover {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--primary-color));
    box-shadow: var(--shadow1);
}

.multiple-search-box .multiple-search-box-inner {
    display: flex;
    gap: 10px;
}

.multiple-search-box .form-control {
    height: 60px;
    border: none;
    box-shadow: none;
    background-color: transparent;
    padding-left: 35px;
    text-transform: capitalize;
}

.multiple-search-box .select2-container .select2-selection--single:focus,
.multiple-search-box .select2-container .select2-selection--multiple:focus {
    box-shadow: none;
}

.multiple-search-box .select2-container .select2-selection--single,
.multiple-search-box .select2-container .select2-selection--multiple {
    height: 60px;
    background-color: transparent;
    border: none;
    padding: 0.375rem 15px 0.375rem 25px;
}

.multiple-search-box .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 18px;
}

.multiple-search-box .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-weight: 400;
}

.multiple-search-box .input-box {
    position: relative;
    width: 100%;
}

.multiple-search-box .input-box .icon {
    color: rgb(var(--primary-color));
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.multiple-search-box .input-box:not(:last-of-type) {
    border-right: 1px solid var(--border-color1);
}

.multiple-search-box .input-box.active .search-result {
    opacity: 1;
    visibility: visible;
}

.marker-icon-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-checked-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #0d6efd;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    border: 2px solid #fff;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.marker-icon-box.is-selected svg path {
    transition: fill 0.3s ease;
}

.multiple-search-box .search-result {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: rgb(var(--primary-color));
    box-shadow: var(--shadow1);
    border-radius: 3px;
    z-index: 1;
    border: 1px solid var(--border-color1);
    color: var(--body-color);
    max-height: 346px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
}

.multiple-search-box .search-result .search-item {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
    cursor: pointer;
}

.multiple-search-box .search-result .search-item:hover {
    background-color: rgb(var(--primary-color), 0.1);
}

.multiple-search-box .search-result .search-item .icon-area {
    font-size: 22px;
    color: rgb(var(--primary-color));
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.multiple-search-box .search-result .search-item .img-area img {
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 3px;
}

.multiple-search-box .search-result .search-item .title {
    font-size: 16px;
    text-transform: capitalize;
    color: rgb(var(--heading-color));
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.multiple-search-box .search-result .search-item .sub-title {
    font-size: 12px;
    text-transform: capitalize;
    color: rgb(var(--heading-color));
}

.multiple-search-box .search-result .search-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color1);
}

.multiple-search-box .search-result .recent-clear {
    border-bottom: 1px solid var(--border-color1);
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: capitalize;
    padding: 10px 20px;
}

.multiple-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-transform: capitalize;
    width: 100%;
    height: 60px;
    background-color: rgb(var(--primary-color));
    color: rgb(var(--primary-color));
    border-radius: 5px;
    transition: var(--transition);
    max-width: 150px;
}

.multiple-search-btn:hover {
    background-color: var(--btn-hover-bg);
}

@media (max-width: 991px) {
    .multiple-search-section {
        margin-top: 30px;
    }

    .multiple-search-box-wrapper::after {
        border-radius: 15px;
    }

    .multiple-search-box {
        border-radius: 10px;
    }

    .multiple-search-box .input-box:not(:last-of-type) {
        border-right: none;
        border-bottom: 1px solid var(--border-color1);
    }

    .multiple-search-box-inner {
        background-color: transparent;
        flex-direction: column;
    }

    .multiple-search-box-inner .form-control {
        background-color: rgb(var(--primary-color));
        border-radius: 9999999px;
    }

    .multiple-search-btn {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .multiple-search-box-inner {
        background-color: transparent;
        flex-direction: column;
    }

    .multiple-search-box-inner .form-control {
        background-color: rgb(var(--primary-color));
        border-radius: 9999999px;
    }

    .input-box {
        border-right: none;
    }

    .input-box .icon-area {
        left: 10px;
    }

    .multiple-search-btn {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 575px) {
    .multiple-search-box .nav {
        margin-bottom: 20px;
        position: static;
    }
}

.rtl .multiple-search-box .form-control {
    padding-left: 0.75rem;
    padding-right: 35px;
}

.rtl .multiple-search-box .input-box .icon {
    left: auto;
    right: 10px;
}

.rtl .multiple-search-box .select2-container .select2-selection--single,
.rtl .multiple-search-box .select2-container .select2-selection--multiple {
    padding: 0.375rem 25px 0.375rem 15px;
}

@media (min-width: 992px) {
    .rtl .multiple-search-box .input-box:not(:last-of-type) {
        border-right: none;
        border-left: 1px solid var(--border-color1);
    }
}

@media (max-width: 575px) {
    .rtl .input-box {
        border-left: none;
    }

    .rtl .input-box .icon-area {
        right: 10px;
    }
}

/*----------------------------------------------
Offcanvas section start
----------------------------------------------*/
.offcanvas {
    z-index: 999;
}

.offcanvas.custom-offcanvas {
    width: 500px !important;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.offcanvas.custom-offcanvas .offcanvas-header {
    padding: 16px 16px 5px;
}

.offcanvas.custom-offcanvas .offcanvas-body {
    padding: 0 30px 16px;
}

.offcanvas .accordion-button {
    font-size: 16px;
    font-weight: 500;
}

.offcanvas-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color2);
    display: flex;
    justify-content: space-between;
}

/*----------------------------------------------
Offcanvas end
----------------------------------------------*/
.shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.rtl .shape {
    right: auto;
    left: 0;
    transform: rotateY(180deg);
}

.shape2 {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
}

.shape3 {
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
}

.section-header {
    margin-bottom: 30px;
}

.top-right-radius-0 {
    border-top-right-radius: 0 !important;
}

.top-left-radius-0 {
    border-top-left-radius: 0 !important;
}

.bottom-right-radius-0 {
    border-bottom-right-radius: 0 !important;
}

.bottom-left-radius-0 {
    border-bottom-left-radius: 0 !important;
}

.highlight {
    color: rgb(var(--primary-color));
}

.highlight-title {
    background-color: var(--yellow);
    padding: 3px 0 5px 10px;
}

.bg-highlight {
    background: rgb(var(--primary-color)) !important;
}

.text-gradient {
    background-image: linear-gradient(90deg, #47beb9, #ddcd86);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cmn-btn {
    background-color: rgb(var(--primary-color));
    padding: 10px 20px;
    transition: var(--transition);
    font-size: 16px;
    color: rgb(var(--white));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    gap: 5px;
    border-radius: 40px;
    font-weight: 500;
    border: 1px solid transparent;
}

.cmn-btn:hover {
    background-color: rgb(var(--primary-color), 0.8);
    color: rgb(var(--white));
}

.rtl .cmn-btn i {
    transform: rotate(180deg);
}

.cmn-btn2,
.savebtn {
    background-color: var(--bg-color1);
    padding: 10px 20px;
    border-radius: 40px;
    border: 1px solid rgb(var(--black));
    transition: var(--transition);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 500;
    text-transform: capitalize;
    color: rgb(var(--black));
}

.cmn-btn2:hover,
.savebtn.active {
    color: rgb(var(--white));
    background-color: rgb(var(--black));
}

.cmn-btn2.sm {
    font-size: 14px;
    padding: 7px 14px;
}

.cmn-btn3 {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgb(var(--heading-color));
    transition: var(--transition);
}

.cmn-btn3:hover {
    color: rgb(var(--primary-color));
}

.cmn-btn4 {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--primary-color));
    padding: 10px 20px;
    border: 1px solid var(--border-color1);
    transition: var(--transition);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    gap: 5px;
    font-weight: 500;
}

.cmn-btn4:hover {
    color: rgb(var(--primary-color));
    box-shadow: var(--shadow2);
    background-color: var(--btn-hover-bg);
}

.login-btn {
    background-color: rgb(var(--primary-color));
    padding: 10px 20px;
    transition: var(--transition);
    font-size: 16px;
    color: rgb(var(--white));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    gap: 5px;
    border-radius: 40px;
    font-weight: 500;
    border: 1px solid transparent;
}

.login-btn:hover {
    background-color: rgb(var(--primary-color), 0.8);
    color: rgb(var(--white));
}

.social-btn {
    background: var(--bg-color1);
    padding: 10px 20px;
    border: 1px solid var(--border-color1);
    transition: var(--transition);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    gap: 5px;
    font-weight: 500;
    color: rgb(var(--heading-color));
    border-radius: 9999px;
}

.social-btn:hover {
    color: rgb(var(--primary-color));
    box-shadow: var(--shadow1);
}

.social-btn img {
    width: 16px;
}

.lang-currency-btn {
    padding: 4px 7px;
    border-radius: 60px;
    border: 1px solid var(--border-color1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.lang-currency-btn:hover {
    color: rgb(var(--white));
}

.lang-currency-btn img {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    border-radius: 50%;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 999px;
    height: 40px;
    width: 40px;
    min-width: 40px;
    padding: 6px;
    background-color: rgb(var(--white));
    transition: var(--transition);
    text-transform: capitalize;
}

.action-btn:hover {
    background-color: rgb(var(--white), 0.8);
}

.action-btn.invite {
    width: auto;
    padding: 8px 12px;
}

@media (max-width: 575px) {
    .nav-login-btn .text-box {
        display: none;
    }

    .nav-login-btn .icon-box {
        width: 40px;
        height: 40px;
    }
}

.nav-cart-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-color2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-cart-btn:hover {
    background-color: rgb(var(--primary-color), 0.1);
}

@media (max-width: 575px) {
    .nav-cart-btn {
        width: 40px;
        height: 40px;
    }
}

.view-all-btn {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 18px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 10px;
}

.view-all-btn:hover {
    transition: var(--transition);
    background-color: rgb(var(--primary-color), 0.1);
}

.rtl .view-all-btn i {
    transform: rotate(180deg);
}

.round-btn {
    position: relative;
    overflow: hidden;
    width: 45px;
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgb(var(--black));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: var(--transition);
    color: rgb(var(--heading-color));
    font-size: 16px;
}

.round-btn:hover {
    background-color: rgb(var(--black));
    color: rgb(var(--white));
    z-index: 1;
    position: relative;
}

.round-btn2 {
    position: relative;
    overflow: hidden;
    width: 45px;
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: var(--transition);
    color: rgb(var(--heading-color));
    font-size: 16px;
}

.round-btn2:hover {
    border: 1px solid rgb(var(--black));
}

.round-box-content {
    color: rgb(var(--heading-color));
    width: 160px;
    height: 160px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid var(--border-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    position: relative;
}

.round-box-content:hover {
    color: rgb(var(--heading-color));
}

.round-box-content:hover .curved-circle {
    animation-play-state: paused;
}

.curved-circle {
    text-transform: uppercase;
    animation: rotate 20s linear infinite;
}

.round-box-content .inner-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    padding: 10px;
    border: 1px solid var(--border-color1);
    border-radius: 50%;
}

.round-box-content .inner-icon i {
    font-size: 20px;
    background-color: rgb(var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--white));
    transform: rotate(45deg);
    width: 100%;
    height: 100%;
}

.kew-btn {
    font-size: 16px;
    font-weight: 600;
    color: rgb(var(--white));
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    transition: var(--transition);
}

.kew-btn:hover {
    color: rgb(var(--white));
}

.kew-btn:hover .kew-arrow .kt-two {
    left: 100px;
}

.kew-btn:hover .kew-arrow .kt-one {
    left: 14px;
}

.kew-btn .kew-text {
    background-color: rgb(var(--primary-color));
    padding: 0 24px;
    border-radius: 9999px;
    height: 46px;
    display: flex;
    align-items: center;
}

.kew-btn .kew-arrow {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
    overflow: hidden;
    margin-left: -4px;
    transform: rotate(-40deg);
}

.kew-btn .kew-arrow .kt-one,
.kew-btn .kew-arrow .kt-two {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
}

.kew-btn .kew-arrow .kt-two {
    left: 14px;
}

.kew-btn .kew-arrow .kt-one {
    left: -30px;
}

.rtl .kew-btn .kew-arrow {
    transform: rotate(215deg);
    margin-left: 0;
    margin-right: -4px;
}

.delete-btn {
    position: relative;
    background-color: rgb(var(--soft-red));
    padding: 8px 15px;
    border-radius: 9999px;
    transition: var(--transition);
    font-size: 16px;
    color: rgb(var(--white));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-transform: capitalize;
    gap: 5px;
}

.delete-btn:hover {
    color: rgb(var(--white));
    background-color: rgb(var(--soft-red), 0.8);
}

.add-place-btn {
    border: 1px dashed var(--border-color2);
    padding: 24px;
    width: 100%;
    border-radius: 10px;
}

.expand-compressed-btn {
    text-decoration: underline;
    font-weight: 500;
    font-size: 16px;
    color: rgb(var(--heading-color));
}

.expand-compressed-btn:hover {
    color: rgb(var(--heading-color), 0.8);
}

/*----------------------------------------------
Alerts section start
----------------------------------------------*/
.alert {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 15px;
    border-left: 15px solid;
}

.alert .icon-area i {
    font-size: 30px;
    margin-right: 15px;
}

.alert .title {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
}

.alert .title {
    font-size: 18px;
}

.alert .title,
.alert .description {
    color: rgb(var(--heading-color));
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 2;
    transform: translateY(-50%);
    padding: 0;
    background: none;
    height: initial;
    width: initial;
}

.alert-dismissible .btn-close i {
    font-size: 24px;
}

.alert-success {
    color: #3ac279;
    background: #c5f7dc;
    border-color: #c5f7dc;
    border-left-color: #3ac279;
}

.alert-success .btn-close {
    color: #3ac279;
}

.alert-danger {
    color: #e9594c;
    background: #ffcfcb;
    border-color: #ffcfcb;
    border-left-color: #e9594c;
}

.alert-danger .btn-close {
    color: #e9594c;
}

.alert-warning {
    color: #e89f29;
    background: #ffe8c3;
    border-color: #ffe8c3;
    border-left-color: #e89f29;
}

.alert-warning .btn-close {
    color: #e89f29;
}

.alert-message {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fcf2e3;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 12px;
    color: rgb(var(--heading-color));
    font-weight: 500;
}

.alert-message i {
    color: var(--orange);
    font-size: 16px;
}

.dark-theme .alert-message {
    background-color: #a38558;
}

/*----------------------------------------------
Alerts end
----------------------------------------------*/
/*----------------------------------------------
Cmn tab section start
----------------------------------------------*/
.cmn-tabs .nav-pills {
    display: inline-flex;
    gap: 10px;
    background-color: var(--bg-color2);
    padding: 7px;
    border-radius: 40px;
}

.cmn-tabs .nav-pills .nav-link {
    padding: 8px 20px;
    text-transform: capitalize;
    color: rgb(var(--heading-color));
    font-family: var(--heading-font);
    width: 100%;
    border-radius: 9999px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
}

.cmn-tabs .nav-pills .nav-link.active,
.cmn-tabs .nav-pills .show>.nav-link {
    background: rgb(var(--primary-color));
    color: rgb(var(--white));
}

/*----------------------------------------------
Cmn tab section end
----------------------------------------------*/
/*----------------------------------------------
Cmn tab2 section start
----------------------------------------------*/
.cmn-tabs2 {
    background-color: var(--bg-color6);
}

.cmn-tabs2 .nav-pills .nav-link {
    color: rgb(var(--white));
    opacity: 0.5;
    font-size: 13px;
    transition: var(--transition);
    border-radius: 0;
    border-bottom: 1px solid transparent;
}

.cmn-tabs2 .nav-pills .nav-link.active,
.cmn-tabs2 .nav-pills .nav-link:hover {
    opacity: 1;
    background-color: transparent;
    border-bottom: 1px solid rgb(var(--primary-color));
}

/*----------------------------------------------
Cmn tab2 end
----------------------------------------------*/
@keyframes jkit-ripple {
    70% {
        box-shadow: 0 0 0 15px currentColor;
        opacity: 0;
    }

    100% {
        box-shadow: 0 0 0 0 currentColor;
        opacity: 0;
    }
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: calc(100% - 25px);
    transform: translateY(-50%);
    z-index: 1;
}

.video-play-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgb(var(--primary-color));
    border-radius: 50%;
    box-shadow: 0 0 0 0 currentColor;
    animation: jkit-ripple 1.5s infinite;
    opacity: 0.6;
    z-index: -1;
}

.video-play-btn i {
    color: rgb(var(--white));
    background: rgb(var(--primary-color));
    height: 45px;
    width: 45px;
    font-size: 14px;
    transition: var(--transition);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

section {
    padding: 80px 0;
}

@media (max-width: 991px) {
    section {
        padding: 50px 0;
    }
}

.cmn-para-text {
    max-width: 700px;
    font-size: 16px;
}

.section-title {
    max-width: 550px;
    margin-bottom: 10px;
}

.section-subtitle {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: white;
    font-weight: 500;
    text-transform: capitalize;
    gap: 5px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 4px 15px;
    border-radius: 9999px;
    -webkit-backdrop-filter: blur(27px);
    backdrop-filter: blur(27px);
    opacity: 0;
    transform: translateX(50px);
    transition: all 1000ms ease;
}

@media (max-width: 991px) {
    .section-subtitle {
        font-size: 16px;
    }
}

.social-box {
    display: flex;
    gap: 10px;
}

.social-box li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--primary-color));
    border: 1px solid var(--border-color1);
    border-radius: 8px;
    background-color: var(--bg-color1);
}

.social-box li a:hover {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.star ul li i {
    color: rgb(var(--primary-color));
}

.star-list li .active {
    color: var(--orange);
}

.opacity {
    opacity: 0.5;
}

.badge {
    font-weight: 500;
    text-transform: capitalize;
    margin-left: 8px;
    padding: 3px 10px;
    border-radius: 9999px;
}

.badge.text-bg-success {
    background-color: #00a96e !important;
}

.badge.text-bg-danger {
    background-color: #ff5861 !important;
}

.badge.badge.text-bg-info {
    color: rgb(var(--white)) !important;
}

.badge.badge.text-bg-success {
    color: rgb(var(--white)) !important;
}

.rtl .badge {
    margin-right: 8px;
    margin-left: 0;
}

hr {
    margin: 10px 0;
    border-color: var(--border-color2);
    opacity: 1;
}

.footer-hr {
    margin: 30px 0;
    border-color: var(--border-color1);
}

.cmn-hr {
    background-color: transparent;
    background-image: linear-gradient(90deg, rgba(206, 211, 246, 0) 0, #a9aaad 38%, #a9aaad 64%, rgba(206, 211, 246, 0) 99%);
    opacity: 0.3;
    border-top: initial;
    height: 1px;
    margin: 50px 0;
}

.cmn-hr2 {
    margin: 20px 0;
    border-color: var(--border-color1);
}

hr.divider {
    margin-top: 50px;
    padding: 0;
    overflow: visible;
    border: none;
    border-top: 1px solid var(--border-color2);
    color: #6e6d7a;
    text-align: center;
    opacity: 0.75;
}

hr.divider:after {
    content: "Or continue with";
    display: inline-block;
    position: relative;
    top: -12px;
    padding: 0 16px;
    background: #F7FBF6;
    color: rgb(var(--heading-color));
}

.dropdown-menu {
    max-height: 30rem;
    min-width: 13rem;
    overflow-y: auto;
    border-radius: 5px;
    padding: 8px;
    background: var(--bg-color1);
    border-color: var(--border-color1);
}

.dropdown-menu .dropdown-item {
    border-radius: 5px;
    padding: 3px 8px;
    transition: none !important;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 5px;
    text-transform: capitalize;
    font-weight: 500;
    display: flex;
    gap: 5px;
    color: rgb(var(--heading-color));
}

.dropdown-menu .dropdown-item:hover {
    background: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.title-border {
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border-radius: 30px;
}

.title-border::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -50px;
    height: 5px;
    width: 70px;
    border: 1px solid rgb(var(--primary-color));
    border-radius: 30px;
    overflow: hidden;
}

.title-border::after {
    position: absolute;
    content: "";
    top: 50%;
    left: -33px;
    height: 5px;
    width: 35px;
    background-color: rgb(var(--primary-color));
    animation: divider-effect 5s linear infinite;
}

#slider {
    height: 10px;
}

#slider .noUi-connect {
    background-color: rgb(var(--primary-color));
}

#slider .noUi-handle {
    height: 18px;
    width: 18px;
    top: -5px;
    right: -9px;
    /* half the width */
    border-radius: 9px;
    background-color: rgb(var(--primary-color));
}

#slider .noUi-handle::after,
#slider .noUi-handle::before {
    background: transparent;
}

.slider-value {
    margin-top: 10px;
    text-align: center;
}

.bg-img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.text-with-icon {
    display: inline-flex;
    gap: 5px;
}

.multi-step-progress-section {
    width: 100%;
    margin-bottom: 50px;
}

.multi-step-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
}

.multi-step-list .item {
    position: relative;
    transition: var(--transition);
}

.multi-step-list .item::before {
    content: "";
    width: 100%;
    height: 4px;
    right: 50%;
    top: 9px;
    position: absolute;
    background-color: var(--light-gray);
}

.multi-step-list .item:first-child::before {
    display: none;
}

.multi-step-list .item.active::before {
    background-color: rgb(var(--primary-color));
}

.multi-step-list .item.active .icon-area {
    outline-color: rgb(var(--primary-color));
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
    font-size: 12px;
}

.multi-step-list .item.active .icon-area i::before {
    content: "\f00c";
}

.multi-step-list .item.active .title {
    color: rgb(var(--heading-color));
}

.multi-step-list .item .progress-link {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.multi-step-list .item .icon-area {
    color: rgb(var(--white));
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--light-gray);
    z-index: 1;
    font-size: 10px;
}

.multi-step-list .item .title {
    font-weight: 500;
    text-transform: capitalize;
}

@media (max-width: 767px) {
    .multi-step-progress-section {
        margin-bottom: 30px;
    }

    .multi-step-progress-section .item::before {
        height: 3px;
        top: 6px;
    }

    .multi-step-progress-section .item.active .icon-area {
        font-size: 10px;
    }

    .multi-step-progress-section .item .icon-area {
        width: 15px;
        height: 15px;
        font-size: 8px;
    }
}

.rtl .multi-step-list .item::before {
    left: 50%;
    right: auto;
}

.cmn-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 5px;
}

.cmn-list .item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rtl .cmn-list .item:not(:last-child)::after {
    left: 0;
    right: 12px;
}

.cmn-list2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cmn-list2 .cmn-list2-item {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.cmn-list2 .cmn-list2-item:not(:last-child) {
    border-bottom: 1px dashed var(--border-color2);
    padding-bottom: 10px;
}

.cmn-list2 .cmn-list2-item h6 {
    font-size: 16px;
}

.cmn-list2 .list-label {
    white-space: nowrap;
    text-transform: capitalize;
}

.rtl .cmn-list .item:not(:last-child)::after {
    left: 0;
    right: 12px;
}

.cmn-list3 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
}

.cmn-list3 .cmn-list3-item {
    display: flex;
    gap: 15px;
}

.cmn-list3 .cmn-list3-item div:first-child {
    min-width: 80px;
}

.cmn-list4 {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.cmn-list4 .cmn-list4-item {
    display: flex;
    gap: 10px;
}

.cmn-list4 .cmn-list4-item .img-box {
    width: 22px;
    height: 22px;
}

.cmn-list4 .cmn-list4-item .img-box img {
    width: 100%;
    height: 100%;
}

.reviews {
    font-size: 14px;
}

.reviews i {
    color: #dee2e8;
}

.reviews .active {
    color: var(--orange);
    opacity: 1;
}

.ratings {
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    gap: 5px;
}

.ratings:not(:checked)>input {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.ratings:not(:checked)>label {
    cursor: pointer;
    font-size: 36px;
    color: #dee2e8;
}

.ratings:not(:checked)>label:before {
    content: "★";
}

.ratings>input:checked+label:hover,
.ratings>input:checked+label:hover~label,
.ratings>input:checked~label:hover,
.ratings>input:checked~label:hover~label,
.ratings>label:hover~input:checked~label {
    color: var(--orange);
}

.ratings:not(:checked)>label:hover,
.ratings:not(:checked)>label:hover~label {
    color: var(--orange);
}

.ratings>input:checked~label {
    color: var(--orange);
}

.average-review .card-box {
    text-align: center;
}

.average-review .card-box i {
    color: var(--orange);
    font-size: 14px;
}

.average-review .index {
    display: inline-block;
    margin-bottom: 5px;
}

.average-review .progress {
    width: 100%;
    height: 10px;
}

.average-review .progress .progress-bar {
    background: rgb(var(--primary-color));
}

.countdown-area {
    display: flex;
    gap: 10px;
}

.countdown-area #countdown1 {
    display: flex;
}

.country-flags-container .item {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border-radius: 5px;
    text-transform: capitalize;
}

.country-flags-container .item:hover {
    background-color: rgb(var(--primary-color), 0.1);
}

.country-flags-container .item img {
    width: 25px;
    border: 1px solid var(--border-color1);
    height: 18px;
    border-radius: 3px;
}

.category-modal-section .category-list {
    padding-bottom: 10px;
}

.category-modal-section .category-list .item {
    min-width: 212px;
}

@media (max-width: 1199px) {
    .category-modal-section .category-list {
        flex-wrap: wrap;
        justify-content: start;
    }

    .category-modal-section .category-list .item {
        box-shadow: var(--shadow1);
    }
}

@media (max-width: 575px) {
    .category-modal-section .category-list {
        flex-wrap: wrap;
        justify-content: start;
    }

    .category-modal-section .category-list .item {
        width: 100%;
    }
}

.Location-modal-section .country-flags-container .item {
    justify-content: center;
}

.Location-modal-section .search-box {
    position: sticky;
    top: 0;
}

.card {
    border: 1px solid var(--border-color1);
    box-shadow: var(--shadow1);
    border-radius: 15px;
    background-color: var(--bg-color1);
}

.card .card-header {
    padding: 20px;
    background-color: var(--bg-color1);
    padding-bottom: 15px;
    border-color: var(--border-color1);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.card .card-header .title {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card .card-header .title .icon-area {
    color: rgb(var(--primary-color));
}

.card .card-body {
    padding: 20px;
}

.nice-select {
    border-color: var(--border-color1);
    text-transform: capitalize;
    font-size: 16px;
    background-color: var(--bg-color2);
    border-radius: 9999px;
    font-weight: 500;
}

.nice-select .option {
    text-transform: capitalize;
    font-weight: 500;
}

.nice-select .option.selected {
    border-left: 2px solid rgb(var(--primary-color));
}

.nice-select .list {
    min-width: 200px;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: rgb(var(--primary-color), 0.1);
}

.nice-select:focus {
    border-color: transparent;
}

.rtl .nice-select.right .list {
    left: 0;
    right: auto;
}

.range-area .irs--flat .irs-bar {
    height: 3px;
    background-color: rgb(var(--primary-color));
}

.range-area .irs--flat .irs-line {
    height: 3px;
}

.range-area .irs--flat .irs-from,
.range-area .irs--flat .irs-to,
.range-area .irs--flat .irs-single {
    background: rgb(var(--primary-color));
}

.range-area .irs--flat .irs-from:before,
.range-area .irs--flat .irs-to:before,
.range-area .irs--flat .irs-single:before {
    border-top-color: rgb(var(--primary-color));
}

.range-area .irs--flat .irs-handle>i:first-child {
    width: 12px;
    height: 12px;
    border-radius: 7px;
    background-color: rgb(var(--primary-color));
    border: 4px solid rgb(var(--primary-color));
}

.range-area .irs--flat .irs-handle {
    width: 0;
    height: 0;
}

.range-area .irs--flat .irs-handle>i:first-child {
    top: -2px;
    left: 0;
}

.range-area .irs--flat .irs-min,
.range-area .irs--flat .irs-max {
    display: none;
}

.checkbox-categories-area .categories-list {
    padding-right: 5px;
}

.checkbox-categories-area .category-link {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    text-transform: capitalize;
    padding: 7px 16px;
    transition: var(--transition);
    border-radius: 40px;
    font-weight: 500;
    color: rgb(var(--heading-color));
}

.checkbox-categories-area .category-link:hover {
    background-color: rgb(var(--primary-color), 0.1);
}

.checkbox-categories-area .category-link:not(:last-child) {
    margin-bottom: 10px;
}

.checkbox-categories-area .category-link i {
    color: rgb(var(--primary-color));
}

.checkbox-categories-area .form-check {
    margin: 15px 0;
}

.checkbox-categories-area .form-check .form-check-input {
    cursor: pointer;
    border-radius: 5px;
}

.checkbox-categories-area .form-check .form-check-input:checked+.form-check-label {
    color: rgb(var(--primary-color));
}

.checkbox-categories-area .form-check .form-check-label {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    text-transform: capitalize;
}

.rtl .checkbox-categories-area .categories-list {
    padding-right: 0;
    padding-left: 5px;
}

.fancybox__container {
    z-index: 99999;
}

.fancybox-carousel {
    width: 100%;
    margin: 0 auto 1rem auto;
    --carousel-button-color: rgb(var(--primary-color));
    --carousel-button-bg: #fff;
    --carousel-button-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%),
        0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    --carousel-button-svg-stroke-width: 2.5;
    border-radius: 5px;
    overflow: hidden;
}

.fancybox-carousel .carousel__slide {
    width: 100%;
    padding: 0;
}

.fancybox-carousel .carousel__slide img {
    width: 100%;
    height: 100%;
    aspect-ratio: 5/3;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0px !important;
    max-height: 570px;
}

.fancybox-carousel .carousel__button.is-prev {
    left: 1rem;
}

.fancybox-carousel .carousel__button.is-next {
    right: 1rem;
}

.fancybox-carousel .carousel__button:focus {
    outline: none;
    box-shadow: 0 0 0 0px rgb(var(--primary-color));
}

.fancybox-carousel .carousel__button svg {
    color: rgb(var(--primary-color));
}

.thumb_carousel .carousel__slide {
    opacity: 0.5;
    padding: 0;
    margin: 5px;
    width: 150px;
    height: 100px;
    cursor: pointer;
}

.thumb_carousel .carousel__slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 2px;
}

.thumb_carousel .carousel__slide.is-nav-selected {
    opacity: 1;
}

.rtl .thumb_carousel,
.rtl .main_carousel {
    direction: ltr;
}

@media (max-width: 767px) {
    .carousel__button {
        width: 40px;
        height: 40px;
    }
}

/*----------------------------------------------
user nav Profile start
----------------------------------------------*/
.profile-box {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0;
}

.profile-box:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 10px);
    transform: scaleY(1);
}

.profile-box .profile {
    cursor: pointer;
    border: 1px solid var(--border-color1);
    background-color: rgb(var(--white));
    border-radius: 50%;
    padding: 2px;
}

.profile-box .profile img {
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 50%;
}

.profile-box .user-dropdown {
    background: var(--bg-color1);
    box-shadow: var(--shadow1);
    width: 200px;
    overflow: hidden;
    padding-top: 0;
    padding-left: 0;
    position: absolute;
    right: 0;
    top: 55px;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: 0 0;
    transition: var(--transition);
    z-index: 3;
    border: 1px solid var(--border-color1);
}

.profile-box .user-dropdown li {
    list-style: none;
}

.profile-box .user-dropdown li button {
    width: 190px;
    height: 38px;
    padding: 5px;
    margin: 5px;
    margin-bottom: 0;
    border-radius: 5px;
    font-size: 13px;
}

.profile-box .user-dropdown li a {
    color: rgb(var(--heading-color));
    font-weight: 400;
    padding: 5px;
    margin: 5px;
    border-radius: 5px;
    display: flex;
    transition: 0.4s;
}

.profile-box .user-dropdown li a:active,
.profile-box .user-dropdown li a:focus,
.profile-box .user-dropdown li a:hover {
    background-color: rgb(var(--primary-color), 0.1);
}

.profile-box .user-dropdown li a:last-child {
    border-bottom: none;
}

.profile-box .user-dropdown li a i {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    color: rgb(var(--primary-color));
    margin: 0 5px;
    font-size: 16px;
    text-align: center;
}

.rtl .navbar-brand {
    margin-right: 0;
    margin-left: var(--bs-navbar-brand-margin-end);
}

.rtl .navbar .nav-right {
    left: 60px;
    right: auto;
}

.rtl .profile-box .user-dropdown {
    left: 0;
    right: auto;
}

/*----------------------------------------------
user nav Profile end
----------------------------------------------*/
.notification-panel {
    position: relative;
    display: inline-block;
    width: auto;
    padding: 0px 0;
}

.notification-panel:hover .notification-dropdown {
    visibility: visible;
    opacity: 1;
    top: 54px;
    transform: scale(1);
}

.notification-panel .dropdown-box {
    overflow-y: scroll;
    width: 100%;
    height: 100%;
    max-height: 285px;
}

.notification-panel .dropdown-box::-webkit-scrollbar {
    width: 0px;
    height: 100%;
}

.notification-panel .dropdown-box::-webkit-scrollbar-track {
    background: var(--ghostColor);
}

.notification-panel .dropdown-box::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 5px;
}

.notification-panel .dropdown-box::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

.notification-panel .notification-dropdown {
    background: rgb(var(--white));
    box-shadow: var(--shadow2);
    width: 280px;
    max-height: 336px;
    overflow: hidden;
    padding: 5px;
    padding-bottom: 44px;
    position: absolute;
    right: -100px;
    top: 54px;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: 0 0;
    transition: var(--transition);
    z-index: 151;
}

.notification-panel .notification-dropdown li:not(:last-child) {
    border-bottom: 1px solid var(--border-color1);
}

.notification-panel .notification-dropdown li:not(:first-child) a {
    margin-top: 5px;
}

.notification-panel .notification-dropdown li a {
    padding: 10px 10px 10px 15px;
    display: flex;
    gap: 10px;
    white-space: normal;
    transition: var(--transition);
    margin-bottom: 5px;
    border-radius: 5px;
}

.notification-panel .notification-dropdown li a:not(:first-child) {
    margin-top: 5px;
}

.notification-panel .notification-dropdown li a:active,
.notification-panel .notification-dropdown li a:focus,
.notification-panel .notification-dropdown li a:hover {
    background: rgb(var(--primary-color), 0.1);
}

.notification-panel .notification-dropdown li a i {
    background: rgb(var(--primary-color));
    border-radius: 5px;
    padding: 0px;
    width: 30px;
    height: 30px;
    text-align: center;
    color: rgb(var(--white));
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-panel .notification-dropdown li a .text {
    width: calc(100% - 40px);
}

.notification-panel .notification-dropdown li a .text p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
}

.notification-panel .notification-dropdown li a .text .time {
    font-size: 12px;
    font-weight: 400;
    color: rgb(var(--primary-color));
}

.notification-panel .notification-dropdown .clear-all {
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    text-align: center;
    padding: 10px 10px 11px 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    border-top: 1px solid var(--border-color1);
    background-color: rgb(var(--white));
}

.notification-panel .notification-dropdown .clear-all a {
    color: rgb(var(--primary-color));
    transition: 0.4s;
}

.notification-panel .notification-dropdown .clear-all a:hover {
    color: rgb(var(--primary-color));
}

.dropdown-toggle {
    position: relative;
    display: flex;
}

.dropdown-toggle i {
    font-size: 18px;
    color: rgb(var(--heading-color));
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle .count {
    background: rgb(var(--primary-color));
    min-width: 18px;
    height: 18px;
    width: 18px;
    border-radius: 3px 6px 3px 6px;
    color: rgb(var(--white));
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rtl .notification-panel .dropdown-toggle .count {
    right: auto;
    left: -4px;
}

.rtl .notification-panel .notification-dropdown {
    left: -60px;
    right: auto;
}

.rtl .dropdown-toggle .count {
    right: auto;
    left: -4px;
}

.shopping-cart {
    position: relative;
}

.shopping-cart:hover .cart-dropdown {
    top: calc(100% + 15px);
    transform: scale(1);
    visibility: visible;
    opacity: 1;
}

.shopping-cart .menu-cart-top {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 10px 25px;
    border-bottom: 1px solid var(--border-color1);
}

.shopping-cart .menu-cart-top h5 {
    color: rgb(var(--heading-color));
    font-weight: 500;
    font-size: 18px;
}

.shopping-cart .dropdown-box {
    overflow-y: auto;
    width: 100%;
    height: 100%;
    max-height: 328px;
    padding: 0 5px 23px 5px;
}

.shopping-cart .dropdown-box .dropdown-item {
    font-weight: 500;
}

.shopping-cart .dropdown-box .dropdown-item small {
    color: var(--body-color);
}

.shopping-cart .cart-dropdown {
    background: var(--bg-color1);
    width: 360px;
    box-shadow: var(--shadow1);
    max-height: 470px;
    overflow: hidden;
    padding-bottom: 102px;
    padding-top: 0px;
    padding-left: 0;
    position: absolute;
    right: -90px;
    top: 50px;
    border-radius: 5px;
    transition: var(--transition);
    z-index: 151;
    transform: scaleY(0);
    transform-origin: 0 0;
    visibility: hidden;
    opacity: 0;
}

.shopping-cart .cart-dropdown li .dropdown-item {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(var(--heading-color));
    white-space: normal;
    padding: 15px;
    margin: 5px 0;
    border-radius: 5px;
}

.shopping-cart .cart-dropdown li .dropdown-item:hover {
    background-color: rgb(var(--primary-color), 0.1);
}

.shopping-cart .cart-dropdown li .dropdown-item:hover .title {
    color: rgb(var(--primary-color));
}

.shopping-cart .cart-dropdown li .dropdown-item img {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
}

.shopping-cart .cart-dropdown li .dropdown-item .text {
    width: calc(100% - 100px);
    position: relative;
}

.shopping-cart .cart-dropdown li .dropdown-item .text .title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    transition: var(--transition);
    color: rgb(var(--heading-color));
    font-size: 15px;
    font-weight: 500;
}

.shopping-cart .cart-dropdown li .dropdown-item .close {
    color: var(--body-color);
    transition: var(--transition);
    width: 25px;
    height: 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shopping-cart .cart-dropdown li .dropdown-item .close:hover {
    color: rgb(var(--heading-color));
    background-color: var(--bg-color1);
}

.shopping-cart .cart-dropdown li:not(:last-child) {
    border-bottom: 1px solid var(--border-color1);
}

.shopping-cart .cart-dropdown .cart-bottom {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    background: var(--bg-color1);
}

.shopping-cart .cart-dropdown .cart-bottom .sub-total {
    margin-bottom: 0;
    padding: 7px 15px;
    background-color: var(--bg-color2);
    font-weight: 600;
    font-size: 17px;
    color: rgb(var(--heading-color));
}

.shopping-cart .cart-dropdown .cart-bottom .btn-area {
    padding: 15px;
}

@media (max-width: 575px) {
    .shopping-cart .cart-dropdown {
        width: 290px;
        right: -150px;
    }

    .shopping-cart .cart-dropdown li a {
        padding: 15px;
    }
}

.rtl .navbar .dropdown .dropdown-menu {
    text-align: right;
}

.rtl .shopping-cart .cart-dropdown {
    right: auto;
    left: -90px;
}

.rtl .shopping-cart .cart-dropdown li a .text .close {
    right: auto;
    left: 0;
}

.rtl .shopping-cart .cart-dropdown .cart-bottom p span {
    float: left;
}

.rtl .notification-panel .notification-dropdown {
    right: auto;
    left: -60px;
}

.rtl .notification-panel .notification-dropdown li a i {
    margin-right: 0;
    margin-left: 5px;
}

@media (max-width: 575px) {
    .rtl .shopping-cart .cart-dropdown {
        width: 290px;
        left: -75px;
    }
}

.profile-box2 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-box2 .img-box {
    width: 40px;
    height: 40px;
}

.profile-box2 .img-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.profile-box3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-box3:hover {
    color: rgb(var(--heading-color));
}

.profile-box3 .img-box img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.profile-box3 .author-name {
    text-transform: capitalize;
    margin-bottom: 0;
}

/*----------------------------------------------
Chat section start
----------------------------------------------*/
.single-btn-box {
    display: flex;
    align-items: center;
    gap: 5px;
}

.single-btn {
    width: 40px;
    height: 40px;
    border-radius: 7px;
    background: var(--bg-color1);
    border: 1px solid var(--border-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 15px;
    color: var(--grayish-blue);
}

.single-btn.active {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.single-btn.active:hover {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.single-btn:hover {
    color: rgb(var(--primary-color));
    background: rgb(var(--primary-color), 0.2);
}

.single-btn2 {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-right: 10px;
    font-size: 16px;
    color: rgb(var(--heading-color));
}

.single-btn2:hover {
    background-color: rgb(var(--primary-color), 0.1);
}

@media (max-width: 575px) {
    .single-btn2 {
        font-size: 14px;
        width: 30px;
        height: 30px;
        margin-right: 5px;
    }
}

.rtl .single-btn2 {
    margin-right: 0;
    margin-left: 10px;
}

.message-send-btn {
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgb(var(--primary-color));
    margin-left: 10px;
    color: rgb(var(--white));
    font-size: 16px;
}

@media (max-width: 575px) {
    .message-send-btn {
        height: 30px;
        min-width: 30px;
        font-size: 14px;
        margin-left: 5px;
    }
}

.rtl .message-send-btn {
    margin-right: 10px;
    margin-left: 0;
}

.chat-conversation-btn {
    height: 40px;
    width: 40px;
    background: rgb(var(--primary-color));
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    color: rgb(var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid rgb(var(--primary-color));
}

.chat-conversation-btn:hover {
    color: rgb(var(--primary-color));
    background: rgb(var(--white));
}

.message-container {
    border: 1px solid var(--border-color1);
    background-color: var(--bg-color1);
    border-radius: 15px;
    min-height: 500px;
}

.message-container .chat-box {
    position: relative;
    background-color: var(--gray);
    background-color: var(--bg-color2);
    margin: 20px;
    border-radius: 10px;
    padding: 5px 0;
    position: relative;
    min-height: 558px;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
}

.message-container .chat-box .header-section {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    margin: 15px;
    background-color: var(--bg-color1);
    border-radius: 20px;
}

.message-container .chat-box .profile-info {
    display: flex;
    align-items: center;
}

.message-container .chat-box .profile-info .thumbs-area {
    margin-right: 10px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-container .chat-box .profile-info .thumbs-area img {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color1);
}

.message-container .chat-box .profile-info .content-area .title {
    font-size: 15px;
    font-weight: 600;
    color: rgb(var(--heading-color));
}

.message-container .chat-box .profile-info .content-area .description {
    font-size: 13px;
}

.message-container .chat-box .chat-box-inner {
    max-height: 425px;
    overflow-y: auto;
    padding: 15px;
}

.message-container .chat-box .message-bubble {
    display: flex;
    margin: 25px 0;
}

.message-container .chat-box .message-bubble .message-thumbs {
    margin-right: 10px;
}

.message-container .chat-box .message-bubble .message-thumbs img {
    border-radius: 50%;
    min-width: 30px;
    min-height: 30px;
    width: 30px;
    height: 30px;
}

.message-container .chat-box .message-bubble .message-text-box {
    max-width: 85%;
}

.message-container .chat-box .message-bubble .message-text-box .message-text {
    padding: 5px 10px;
    border-radius: 15px;
    border-top-left-radius: 0;
    background: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.message-container .chat-box .message-bubble .message-text-box .attach-file-box {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
}

.message-container .chat-box .message-bubble .message-text-box .time {
    margin-bottom: 0;
    margin-top: 2px;
    font-size: 12px;
}

.message-container .chat-box .message-bubble-right {
    flex-direction: row-reverse;
}

.message-container .chat-box .message-bubble-right .message-thumbs {
    margin-right: 0;
    margin-left: 10px;
}

.message-container .chat-box .message-bubble-right .message-text-box .message-text {
    border-top-left-radius: 15px;
    border-top-right-radius: 0;
    background: var(--bg-color1);
    color: rgb(var(--heading-color));
}

.message-container .chat-box .message-bubble-right .message-text-box .attach-file-box {
    justify-content: end;
}

.message-container .chat-box .message-bubble-right .message-text-box .time {
    text-align: right;
}

.message-container .chat-box .chat-box-bottom {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: var(--bg-color1);
    margin: 0 15px 15px 15px;
    border-radius: 20px;
    margin-top: auto;
}

.message-container .chat-box .chat-box-bottom textarea {
    height: 40px;
    border-radius: 10px;
}

.message-sidebar {
    height: 100%;
    position: relative;
    border-right: 1px solid var(--border-color1);
    display: flex;
    flex-direction: column;
}

.message-sidebar .header-section {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.message-sidebar .header-section .section-title {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: rgb(var(--heading-color));
    text-transform: capitalize;
    margin-right: 10px;
}

.message-sidebar .conversations-wrapper {
    padding: 5px;
    max-height: 470px;
    overflow-y: auto;
    flex-grow: 1;
}

.message-sidebar .conversations-wrapper li {
    border-left: 2px solid transparent;
    transition: var(--transition);
    border-radius: 5px;
}

.message-sidebar .conversations-wrapper li .item-link {
    display: block;
    padding: 15px;
    position: relative;
    overflow-x: hidden;
}

.message-sidebar .conversations-wrapper li .item-link .item-header .chat-action {
    position: absolute;
    right: -20px;
    display: flex;
    top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.message-sidebar .conversations-wrapper li .item-link .item-header .chat-action i {
    font-size: 12px;
    margin: 0 5px;
    color: rgb(var(--heading-color));
}

.message-sidebar .conversations-wrapper li .item-link .item-header .chat-action i:hover {
    color: rgb(var(--primary-color));
}

.message-sidebar .conversations-wrapper li .item-link .chat-title {
    font-size: 14px;
    color: rgb(var(--heading-color));
    text-transform: capitalize;
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 5px;
}

.message-sidebar .conversations-wrapper li .item-link .chat-info {
    color: var(--grayish-blue);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.message-sidebar .conversations-wrapper li .item-link .chat-info .chat-date {
    text-transform: capitalize;
    color: var(--grayish-blue);
}

.message-sidebar .conversations-wrapper li:nth-child(odd) {
    background-color: var(--bg-color1);
}

.message-sidebar .conversations-wrapper li.active,
.message-sidebar .conversations-wrapper li:hover {
    border-left: 2px solid rgb(var(--primary-color));
    background-color: rgb(var(--primary-color), 0.1);
}

.message-sidebar .conversations-wrapper li:hover .item-header .chat-action {
    right: 10px;
    opacity: 1;
    visibility: visible;
}

.message-sidebar .message-sidebar-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    background-color: var(--bg-color1);
    border-bottom-left-radius: 5px;
}

@media (max-width: 767px) {
    .message-container .message-sidebar .conversations-wrapper {
        max-height: 300px;
    }

    .message-container .chat-box .chat-box-inner {
        max-height: 300px;
    }

    .message-container .chat-box {
        min-height: 350px;
    }

    .message-container {
        min-height: 392px;
    }
}

@media (max-width: 575px) {
    .message-container .chat-box .chat-box-bottom {
        padding: 7px 10px;
        margin: 0 10px 10px 10px;
    }

    .message-container .chat-box .chat-box-bottom textarea {
        height: 35px;
    }
}

.rtl .message-sidebar .header-section .section-title {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .message-sidebar .conversations-wrapper li {
    border-left: none;
    border-right: 2px solid transparent;
}

.rtl .message-sidebar .conversations-wrapper li.active,
.rtl .message-sidebar .conversations-wrapper li:hover {
    border-left: none;
    border-right: 2px solid rgb(var(--primary-color));
}

.rtl .message-sidebar .conversations-wrapper li .item-link .item-header .chat-action {
    left: -20px;
    right: auto;
}

.rtl .message-sidebar .conversations-wrapper li:hover .item-header .chat-action {
    left: 10px;
}

.rtl .chat-box .profile-info .thumbs-area {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .chat-box .message-bubble .message-thumbs {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .chat-box .message-bubble .message-text {
    border-top-left-radius: 15px;
    border-top-right-radius: 0;
}

.rtl .chat-box .message-bubble-right .message-thumbs {
    margin-right: 10px;
    margin-left: 0;
}

.rtl .chat-box .message-bubble-right .message-text-box .message-text {
    border-top-right-radius: 15px;
    border-top-left-radius: 0;
}

.rtl .chat-box .message-bubble-right .message-text-box .time {
    text-align: left;
}

.dark-theme .message-container .chat-box {
    background-color: var(--bg-color1);
}

.offcanvas.offcanvas-end {
    border-left: none;
}

.message-offcanvas .message-sidebar .conversations-wrapper {
    max-height: initial;
}

.message-offcanvas .message-sidebar {
    border-right: none;
}

/*----------------------------------------------
Chat section end
----------------------------------------------*/
/*----------------------------------------------
File of Image upload section start
----------------------------------------------*/
.file-upload-wrap {
    position: relative;
}

.file-upload-wrap .file-upload-input {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    opacity: 0;
}

.file-upload-wrap .file-upload-input:hover+.drag-text {
    background-color: rgb(var(--primary-color), 0.1);
}

.file-upload-wrap .drag-text {
    padding: 100px 30px;
    border: 2px dashed rgb(var(--primary-color));
    border-radius: 5px;
    transition: var(--transition);
    text-align: center;
}

.file-upload-wrap .drag-text .icon-area {
    font-size: 50px;
    margin-bottom: 15px;
    color: rgb(var(--primary-color));
}

.file-upload-wrap .drag-text .title {
    font-size: 22px;
}

/*----------------------------------------------
File of Image upload section end
----------------------------------------------*/
/*----------------------------------------------
Payment section start
-----------------------------------------------*/
.payment-container-list {
    margin-top: 20px;
    height: 480px;
    overflow: auto;
    padding: 5px;
}

.payment-container-list .item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-container-list .item:not(:last-child) {
    margin-bottom: 15px;
}

.payment-container-list .form-check-label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
    gap: 15px;
    border: 1px solid var(--border-color1);
    outline: 1px solid transparent;
    background-color: var(--bg-color1);
}

.payment-container-list .form-check-label .image-area img {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
}

.payment-container-list .form-check-label .content-area {
    padding-right: 30px;
}

.payment-container-list .form-check-input {
    position: absolute;
    right: 15px;
}

.payment-container-list .form-check-input[type=radio]:checked+.form-check-label {
    background-color: rgb(var(--primary-color), 0.1);
    border-color: rgb(var(--primary-color));
    outline: 1px solid rgb(var(--primary-color));
}

.rtl .payment-container-list .form-check-label .content-area {
    padding-right: 0;
    padding-left: 30px;
}

.rtl .payment-container-list .form-check-input {
    left: 15px;
    right: auto;
}

.transfer-details-section .link {
    color: rgb(var(--heading-color));
}

.transfer-list {
    padding: 15px;
    margin-bottom: 20px;
}

.transfer-list h5 {
    margin-bottom: 0;
}

.transfer-list .title:not(:last-child) {
    margin-bottom: 20px;
}

.transfer-list .item {
    display: flex;
    justify-content: space-between;
}

.transfer-list .item:not(:last-child) {
    margin-bottom: 10px;
}

/*----------------------------------------------
Payment section end
-----------------------------------------------*/
/*----------------------------------------------
Cmn table start
----------------------------------------------*/
.cmn-table {
    border-radius: 10px;
}

.cmn-table table {
    margin-bottom: 0;
    color: var(--body-color);
}

.cmn-table table thead tr th {
    font-size: 18px;
    font-weight: 500;
    color: rgb(var(--heading-color));
    padding: 20px 10px;
    text-transform: capitalize;
    background-color: var(--bg-color1);
}

.cmn-table table thead tr th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.cmn-table table thead tr th:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.cmn-table tbody td {
    padding: 15px 10px;
}

.cmn-table tbody td .icon-area {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    color: rgb(var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.cmn-table tbody td .icon-area.icon1 {
    background-color: var(--lime-green);
}

.cmn-table tbody td .icon-area.icon2 {
    background-color: var(--soft-red);
}

.cmn-table tbody,
.cmn-table td,
.cmn-table tfoot,
.cmn-table th,
.cmn-table thead,
.cmn-table tr {
    border: none;
}

.cmn-table .profile-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cmn-table .profile-box .img-box img {
    width: 50px;
    min-width: 50px;
    height: 50px;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
}

.cmn-table .profile-box .text-box {
    text-transform: capitalize;
    font-weight: 500;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    color: var(--body-color);
}

@media (min-width: 768px) {
    .table-striped>tbody>tr:nth-of-type(odd)>* {
        --bs-table-accent-bg: transparent;
    }
}

@media (max-width: 991px) {
    .cmn-btn {
        font-size: 16px;
    }

    .cmn-table .table-img {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }

    .cmn-table .text-bold {
        font-weight: 500;
    }
}

@media (max-width: 767px) {
    .table-striped>tbody>tr:nth-of-type(odd)>* {
        --bs-table-accent-bg: var(--bg-color1);
    }

    .table-striped>tbody>tr:nth-of-type(even)>* {
        --bs-table-accent-bg: rgb(var(--primary-color), 0.1);
    }

    .table-responsive .table thead {
        display: none;
    }

    .table-responsive .table tbody tr {
        display: block;
        border: 1px solid var(--border-color2);
        border-radius: 5px;
    }

    .table-responsive .table tbody tr:not(:last-child) {
        margin-bottom: 5px;
    }

    .table-responsive .table tbody tr td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: none !important;
        margin: 0 !important;
        padding: 10px 15px;
    }

    .table-responsive .table tbody tr td::before {
        content: attr(data-label);
        font-size: 16px;
        font-weight: 600;
        text-transform: capitalize;
        margin-right: 15px;
    }
}

.rtl .cmn-table table thead tr th:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.rtl .cmn-table table thead tr th:last-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.dark-theme .cmn-table {
    background-color: var(--bg-color4);
}

.dark-theme .cmn-table table {
    color: rgb(var(--primary-color));
}

.dark-theme .cmn-table table thead tr th {
    color: rgb(var(--primary-color));
    background-color: var(--bg-color6);
}

.dark-theme .cmn-table .table-responsive .table tbody tr td::before {
    color: rgb(var(--primary-color));
}

.dark-theme .table-striped>tbody>tr:nth-of-type(odd)>* {
    color: rgb(var(--primary-color));
}

/*----------------------------------------------
Cmn table end
----------------------------------------------*/
@keyframes marquee-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    50% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes topToBottom {
    0% {
        top: -5px;
    }

    100% {
        top: 5px;
    }
}

@keyframes jump {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -20px, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes jumpTwo {
    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 20px, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes moveUp {
    0% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) scale(1);
    }

    25% {
        opacity: 0;
        transform: translateX(10px) translateY(-10px) scale(0.9);
    }

    26% {
        opacity: 0;
        transform: translateX(-10px) translateY(10px) scale(0.9);
    }

    55% {
        opacity: 1;
        transform: translateX(0px) translateY(0px) scale(1);
    }
}

.border-effect {
    display: inline !important;
    width: 100%;
    background-repeat: no-repeat;
    background-position-y: -2px;
    background-image: linear-gradient(transparent calc(100% - 1px), rgb(var(--primary-color)) 1px);
    transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
    background-size: 0 100%;
    backface-visibility: hidden;
}

.border-effect:hover {
    background-image: linear-gradient(transparent calc(100% - 1px), rgb(var(--primary-color)) 1px);
    background-size: 100% 100%;
}

.slick-dots li.slick-active {
    outline: 1px solid rgb(var(--primary-color));
    border-radius: 50%;
}

.slick-dots li.slick-active button::before {
    color: rgb(var(--primary-color));
}

.slick-dots li button {
    width: 7px;
    height: 7px;
}

.slick-dots li button::before {
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    color: rgb(var(--primary-color));
}

.tag-list2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tag-list2 .item {
    text-transform: capitalize;
    padding: 3px 15px;
    border-radius: 99999px;
    background-color: var(--bg-color4);
}

@media (min-width: 768px) {
    .h-md-100 {
        height: 100%;
    }
}

@media (min-width: 768px) {
    .rtl .text-md-start {
        text-align: right !important;
    }
}

.isotope-btn-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.isotope-btn-group button {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    background-color: var(--bg-color3);
    box-shadow: var(--shadow1);
    transition: var(--transition);
    font-size: 16px;
    color: rgb(var(--heading-color));
}

.isotope-btn-group button:hover {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.isotope-btn-group button.active {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.isotope-btn-group button.active:hover {
    background-position: center right;
}

.flatpickr-day.selected {
    background: rgb(var(--primary-color));
    border-color: rgb(var(--primary-color));
}

.flatpickr-day.selected:hover {
    background: rgb(var(--primary-color));
    border-color: rgb(var(--primary-color));
}

.custom-flatpickr {
    position: relative;
}

.custom-flatpickr .form-control {
    font-weight: 500;
}

.custom-flatpickr .calendar-icon {
    position: absolute;
    background-color: rgb(var(--white));
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    color: rgb(var(--primary-color));
    cursor: pointer;
}

.rtl .custom-flatpickr .calendar-icon {
    right: auto;
    left: 15px;
}

.custom-checkbox-btn .btn {
    border-color: var(--border-color1);
    border-radius: 9999px;
    font-weight: 500;
}

.custom-checkbox-btn .btn:hover {
    background-color: rgb(var(--primary-color), 0.1);
    border-color: var(--border-color1);
}

.custom-checkbox-btn .btn-check:checked+.btn,
.custom-checkbox-btn .btn.active,
.custom-checkbox-btn .btn.show,
.custom-checkbox-btn .btn:first-child:active,
.custom-checkbox-btn :not(.btn-check)+.btn:active {
    border-color: rgb(var(--black));
}

.meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
}

.meta .item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: capitalize;
    position: relative;
    font-weight: 500;
    font-size: 14px;
    color: rgb(var(--primary-color));
}

.meta .item a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta .item.tag {
    background-color: var(--bg-color3);
    padding: 2px 10px;
    border-radius: 4px;
}

.rtl .meta .item:not(:last-child)::after {
    left: auto;
    right: calc(100% + 22px);
}

@media (max-width: 375px) {
    .rtl .meta .item:not(:last-child)::after {
        right: calc(100% + 11px);
    }
}

/*----------------------------------------------
Reusable style section end
----------------------------------------------*/
/*----------------------------------------------
Margin top start
----------------------------------------------*/
.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-100 {
    margin-top: 100px;
}

.mt-150 {
    margin-top: 150px;
}

.mt-190 {
    margin-top: 190px;
}

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Margin bottom start
----------------------------------------------*/
.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-150 {
    margin-bottom: 150px;
}

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Padding top start
----------------------------------------------*/
.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-150 {
    padding-top: 150px !important;
}

.pt-190 {
    padding-top: 190px;
}

.pt-200 {
    padding-top: 200px;
}

/*----------------------------------------------
end
----------------------------------------------*/
/*----------------------------------------------
Padding bottom
----------------------------------------------*/
.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-150 {
    padding-bottom: 150px;
}

/*----------------------------------------------
Padding bottom
----------------------------------------------*/
/*----------------------------------------------
01. Nav section start
----------------------------------------------*/
.navbar.active {
    background-color: rgb(var(--white));
    box-shadow: var(--shadow1);
    z-index: 999;
}

.navbar.active .navbar-nav .nav-link {
    color: var(--heading-color);
}

.navbar.active .navbar-nav .nav-link::after {
    background-color: var(--heading-color);
}

.navbar.active .get-start-btn {
    background-color: rgb(var(--primary-color));
}

.navbar.active .get-start-btn:hover {
    color: rgb(var(--primary-color));
    background-color: var(--btn-hover-bg);
}

.navbar.active .dropdown-toggle i {
    color: var(--heading-color);
}

.navbar.active .navbar-toggler {
    color: var(--body-color);
}

.navbar {
    padding: 10px 15px;
    z-index: 999;
    background-color: rgb(var(--white));
    border-bottom: 1px solid var(--border-color1);
}

.navbar .container {
    position: relative;
}

.navbar .navbar-toggler {
    font-size: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color1);
    box-shadow: none;
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: rgb(var(--primary-color));
}

.navbar .navbar-toggler:hover {
    background-color: rgb(var(--primary-color), 0.1);
    color: rgb(var(--primary-color));
}

.navbar .navbar-nav {
    text-align: center;
}

.navbar .navbar-nav .nav-link {
    font-size: 16px;
    color: var(--heading-color);
    text-transform: capitalize;
    padding: 12px 15px;
    transition: var(--transition);
    border-radius: 0;
    position: relative;
    font-weight: 500;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: rgb(var(--primary-color));
    font-weight: 600;
}

.navbar .navbar-nav .nav-link i {
    margin-right: 5px;
    color: rgb(var(--primary-color));
}

.navbar .nav-right {
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
}

.navbar .nav-right .custom-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar .toggle-btn {
    font-size: 20px;
    cursor: pointer;
}

.transparent {
    background-color: transparent;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler {
        display: none !important;
    }

    .navbar .navbar-nav .nav-link::after {
        background-color: rgb(var(--primary-color));
    }
}

@media (max-width: 991px) {
    .navbar {
        padding: 15px;
    }

    .navbar.active {
        padding: 15px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 15px;
    }

    .navbar .nav-right {
        position: absolute;
        right: 65px;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 10px 5px;
    }

    .navbar.active {
        padding: 10px 5px;
    }

    .navbar .navbar-toggler {
        display: none;
    }

    .navbar .nav-right {
        position: absolute;
        right: 12px;
    }
}

.rtl .navbar-nav.ms-auto {
    margin-right: auto;
    margin-left: 0 !important;
}

.rtl .navbar .navbar-nav .nav-link i {
    margin-right: 0;
    margin-left: 5px;
}

@media (max-width: 767px) {
    .rtl .navbar .nav-right {
        position: absolute;
        left: 12px;
    }
}

/*----------------------------------------------
Nav end
----------------------------------------------*/
/*----------------------------------------------
02. Bottom Mobile, Tab nav section start
----------------------------------------------*/
.bottom-nav {
    background: var(--bg-color1);
    justify-content: space-around;
    box-shadow: var(--shadow2);
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    height: 55px;
    display: flex;
    align-items: center;
}

.bottom-nav .nav-item .nav-link {
    color: rgb(var(--heading-color));
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.bottom-nav .nav-item .nav-link.active,
.bottom-nav .nav-item .nav-link:hover {
    color: rgb(var(--white));
    background: rgb(var(--primary-color));
    margin-top: -22px;
}

.bottom-nav .nav-item .nav-link i {
    font-size: 20px;
}

/*----------------------------------------------
Bottom Mobile, Tab nav end
----------------------------------------------*/
/*----------------------------------------------
00. Hero section start
----------------------------------------------*/
.hero-section {
    padding: 50px 0 80px;
}

.hero-section .header-box {
    text-align: center;
}

.hero-section .header-box .title {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-section .header-box .title img {
    width: 42px;
}

.hero-section .header-box .title .img2 {
    width: 34px;
}

.hero-section .header-box .description {
    max-width: 500px;
    margin: 0 auto;
}

.hero-section .button-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.hero-section-inner {
    display: flex;
    flex-direction: column;
    min-height: 82vh;
}

.product-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-box:hover .img-box img {
    transform: scale(1.05);
    opacity: 0.8;
}

.product-box .img-box {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
}

.product-box .img-box img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    transition: var(--transition);
}

.product-box .text-box .title {
    font-family: var(--heading-font);
    color: rgb(var(--heading-color));
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 500;
}

.product-box .text-box .sub-title {
    color: rgb(var(--heading-color));
    text-transform: capitalize;
}

.powerd-by {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 50px;
}

.powerd-by .icon-box {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--soft-blue), 0.5);
}

.prev-btn {
    font-weight: 500;
    text-transform: capitalize;
    padding: 10px 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.prev-btn:hover {
    background-color: rgb(var(--primary-color));
    border-radius: 9999px;
}

.rtl .prev-btn i {
    transform: rotate(180deg);
}

#multiStepForm {
    flex: 1 1 0;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

@media (max-width: 991px) {
    .hero-section {
        padding: 40px 0 50px;
    }

    .powerd-by {
        margin-bottom: 30px;
    }
}

/*----------------------------------------------
Hero section end
----------------------------------------------*/
/*----------------------------------------------
Itinerary section start
----------------------------------------------*/
/* .itinerary-section {
  background-color: var(--bg-color2);
} */

/*----------------------------------------------
Itinerary section end
----------------------------------------------*/
/*----------------------------------------------
Custom radio container start
----------------------------------------------*/
.custom-radio-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.custom-radio-container .item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-radio-container .form-check-label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 15px;
    cursor: pointer;
    border-radius: 10px;
    transition: var(--transition);
    gap: 15px;
    border: 1px solid var(--border-color1);
    outline: 1px solid transparent;
    background-color: var(--bg-color1);
    box-shadow: var(--shadow1);
}

.custom-radio-container .form-check-label .content-box {
    padding-right: 25px;
}

.custom-radio-container .form-check-label .content-box .title {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
}

.custom-radio-container .form-check-label .content-box .title img {
    width: 24px;
}

.custom-radio-container .form-check-input {
    position: absolute;
    right: 15px;
    margin-top: 0;
}

.custom-radio-container .form-check-input[type=radio]:checked+.form-check-label {
    background-color: rgb(var(--primary-color), 0.1);
    border-color: rgb(var(--primary-color));
    outline: 1px solid rgb(var(--primary-color));
}

@media (max-width: 767px) {
    .custom-radio-container {
        margin-top: 30px;
    }
}

/*----------------------------------------------
Custom radio container end
----------------------------------------------*/
/*----------------------------------------------
Custom radio container2 start
----------------------------------------------*/
.custom-radio-container2 {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.custom-radio-container2 .item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-radio-container2 .form-check-label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px 40px;
    cursor: pointer;
    border-radius: 9999px;
    transition: var(--transition);
    gap: 15px;
    border: 1px solid var(--border-color1);
    outline: 1px solid transparent;
    background-color: var(--bg-color1);
    box-shadow: var(--shadow1);
}

.custom-radio-container2 .form-check-label .content-box {
    padding-right: 25px;
}

.custom-radio-container2 .form-check-label .content-box .title {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 7px;
}

.custom-radio-container2 .form-check-input {
    position: absolute;
    right: 15px;
    margin-top: 0;
}

.custom-radio-container2 .form-check-input[type=radio]:checked+.form-check-label {
    background-color: rgb(var(--primary-color), 0.1);
    border-color: rgb(var(--primary-color));
    outline: 1px solid rgb(var(--primary-color));
}

/*----------------------------------------------
Custom radio container2 end
----------------------------------------------*/
/*----------------------------------------------
Custom checkbox container start
----------------------------------------------*/
.custom-checkbox-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.custom-checkbox-container .item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-checkbox-container .form-check-label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 9999px;
    transition: var(--transition);
    gap: 15px;
    border: 1px solid var(--border-color1);
    outline: 1px solid transparent;
    background-color: var(--bg-color1);
    box-shadow: var(--shadow1);
}

.custom-checkbox-container .form-check-label .content-box {
    padding-right: 30px;
}

.custom-checkbox-container .form-check-label .content-box .title {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 500;
}

.custom-checkbox-container .form-check-label .content-box .title img {
    width: 24px;
}

.custom-checkbox-container .form-check-input {
    position: absolute;
    right: 15px;
    margin-top: 0;
}

.custom-checkbox-container .form-check-input[type=checkbox]:checked+.form-check-label {
    background-color: rgb(var(--primary-color), 0.1);
    border-color: rgb(var(--primary-color));
    outline: 1px solid rgb(var(--primary-color));
}

@media (max-width: 767px) {
    .custom-checkbox-container {
        margin-top: 30px;
    }
}

.rtl .payment-container-list .form-check-label .content-area {
    padding-right: 0;
    padding-left: 30px;
}

.rtl .payment-container-list .form-check-input {
    left: 15px;
    right: auto;
}

/*----------------------------------------------
Custom checkbox container end
----------------------------------------------*/
/*----------------------------------------------
00. Story section start
----------------------------------------------*/


.story-box {
    background-color: var(--bg-color1);
    padding: 10px;
    border-radius: 20px;
    box-shadow: var(--shadow1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    border: 1px solid var(--border-color1);
}

.story-box:hover .img-box::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.story-box .img-box {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.story-box .img-box::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.story-box .img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 15px;
}

.story-box .text-box {
    padding: 5px;
    position: relative;
}

.story-box .text-box .location-box {
    position: absolute;
    color: rgb(var(--primary-color));
    padding: 5px 10px;
    border-radius: 9999px;
    display: flex;
    gap: 5px;
    top: -55px;
    left: 10px;
    background-color: var(--bg-color1);
    font-size: 14px;
}

.story-box .text-box .location-box .location-text-box {
    text-transform: capitalize;
}

.story-box .text-box .title {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 18px;
    margin-bottom: 0;
}

.story-box .text-box .sub-title {
    margin-top: 10px;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.rtl .story-box .text-box .location-box {
    left: auto;
    right: 10px;
}

/*----------------------------------------------
Story section end
----------------------------------------------*/
/*----------------------------------------------
17. Faq section start
----------------------------------------------*/
.faq-section {
    background-color: var(--bg-color2);
}

.faq-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(99, 171, 69, 0.1);
    border: 1px solid rgba(99, 171, 69, 0.2);
    color: rgb(var(--primary));
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.faq-badge svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.faq-main-subtitle {
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

.faq-content .accordion-button {
    padding: 20px 20px;
    border: 2px solid transparent;
}

.faq-content .accordion-body {
    padding: 0 20px 20px;
}

.faq-content .accordion-button:focus {
    border-top: 1px solid transparent;
}

.faq-image {
    position: relative;
    overflow: hidden;
}

.faq-image,
.faq-image img {
    width: 100%;
    border-radius: 16px;
    max-height: 475px;
}

.faq-img-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14, 7, 0, 0.55) 0%, rgba(14, 7, 0, 0) 50%);
}

.faq-img-caption {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    color: rgb(var(--white));
}

.faq-img-caption h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 500;
    color: rgb(var(--white));
}

.faq-img-caption p {
    font-size: 16px;
    margin-bottom: 0;
    color: rgb(var(--white));
}

.faq-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.faq-stat {
    background-color: var(--bg-color1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow1);
}

.faq-stat-num {
    font-size: 24px;
    font-weight: 600;
    color: rgb(var(--primary-color));
}

.faq-stat-lbl {
    font-size: 14px;
    color: rgb(var(--text-color));
}

@media (max-width: 1024px) {
    .faq-left-panel {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }

    .faq-image {
        aspect-ratio: 16/10;
        margin-bottom: 0;
    }

    .faq-stats {
        grid-template-columns: 1fr;
        height: 100%;
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .faq-left-panel {
        grid-template-columns: 1fr;
    }

    .faq-img-card {
        aspect-ratio: 16 / 9;
    }

    .faq-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 478px) {
    .faq-stats {
        grid-template-columns: repeat(1, 1fr);
    }
}

.faq-section .accordion-button {
    color: rgb(var(--heading-color));
    font-weight: 500;
    font-size: 16px;
    border-radius: 10px !important;
}

.faq-section .accordion {
    margin-top: 0;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    box-shadow: none;
    background: transparent;
    color: rgb(var(--primary-color));
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid var(--border-color1);
    border-radius: 0 !important;
    padding: 20px 20px 15px 20px;
    margin-bottom: 10px;
}

.faq-section .accordion-item {
    margin: 0 0 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color1);
    background-color: var(--bg-color1);
    transition: var(--transition);
}

.faq-section .accordion-item:hover {
    border-color: rgb(198 227 186);
}

.faq-section .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgb(198 227 186);
}

.faq-section .accordion-item:last-child {
    margin-bottom: 0;
}

.faq-section .accordion-button {
    background: var(--bg-color1);
    border-radius: 16px !important;
}

.faq-icon {
    width: 38px;
    height: 38px;
    margin-right: 10px;
    border-radius: 11px;
    background: rgba(99, 171, 69, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    stroke: rgb(var(--primary));
    fill: none;
}

.faq-section .accordion-button::after {
    background: none;
    content: '\2b';
    font-size: 20px;
    color: rgb(var(--primary));
    font-weight: 300;
    width: 30px;
    height: 30px;
    background-color: rgb(var(--primary-color), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background: none;
    content: '\2b';
    transform: rotate(45deg);
    color: rgb(var(--white));
    font-weight: 300;
    width: 30px;
    height: 30px;
    background-color: rgb(var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.rtl .accordion-button {
    text-align: right;
}

.rtl .accordion-button::after {
    margin-right: auto;
    margin-left: 0;
}

.faq-section .accordion-body p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/*----------------------------------------------
Faq end
----------------------------------------------*/
/*----------------------------------------------
19. Newsletter section start
----------------------------------------------*/
.newsletter-form {
    margin-top: 40px;
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-form .form-control {
    border-radius: 50px;
    height: 50px;
    padding: 10px 50px 10px 10px;
    border-color: var(--border-color1);
    box-shadow: var(--shadow1);
}

.newsletter-form .form-control:focus {
    border-color: rgb(var(--primary-color));
}

.newsletter-form .subscribe-btn {
    transition: var(--transition);
    position: absolute;
    right: 5px;
    background-color: rgb(var(--primary-color));
    height: calc(100% - 10px);
    width: 40px;
    border-radius: 50%;
    color: rgb(var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form .subscribe-btn:hover {
    background-color: rgb(var(--primary-color), 0.8);
    color: rgb(var(--white));
}

.rtl .newsletter-form .form-control {
    padding: 10px 10px 10px 50px;
}

.rtl .newsletter-form .subscribe-btn {
    left: 5px;
    right: auto;
}

.rtl .newsletter-form .subscribe-btn i {
    transform: rotatey(180deg);
}

/*----------------------------------------------
Newsletter end
----------------------------------------------*/
/*----------------------------------------------
20. Footer section start
----------------------------------------------*/
.footer-section {
    position: relative;
    z-index: 0;
    padding-bottom: 40px;
    background-color: var(--bg-color4);
    color: rgb(var(--white-rgb), 0.9);
}

.footer-section .footer-widget .widget-title {
    position: relative;
    margin-bottom: 20px;
    text-transform: capitalize;
    font-size: 20px;
    font-family: var(--heading-font);
    color: rgb(var(--heading-color));
}

.footer-widget .widget-logo {
    margin-bottom: 20px;
    display: inline-flex;
}

.footer-widget ul li {
    line-height: 2.5;
}

.footer-widget .widget-link {
    margin-left: 18px;
    position: relative;
}

.footer-widget .widget-link:hover {
    color: rgb(var(--primary-color));
}

.footer-widget .widget-link::before {
    border-radius: 50%;
    height: 7px;
    width: 7px;
    content: "";
    left: -17px;
    top: 6px;
    position: absolute;
    background-color: rgb(var(--primary-color));
}

.contact-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    gap: 10px;
}

.contact-item i {
    color: rgb(var(--primary-color));
}

.rtl .footer-section .footer-widget .widget-title::before,
.rtl .footer-section .footer-widget .widget-title::after {
    right: 0;
    left: auto;
}

.rtl .footer-section .footer-widget .widget-link {
    margin-left: 0;
    margin-right: 18px;
}

.rtl .footer-section .footer-widget .widget-link::before {
    left: auto;
    right: -17px;
}

.rtl .footer-section .footer-widget .contact-item i {
    margin-right: 0;
    margin-left: 10px;
}

/*----------------------------------------------
Footer section end
----------------------------------------------*/
/*----------------------------------------------
21. Copyright section start
----------------------------------------------*/
.copyright-section {
    background-color: var(--bg-color4);
    font-size: 16px;
}

.copyright-inner {
    padding: 20px 0;
}

.language {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.language .item.active {
    color: rgb(var(--primary-color));
}

.language .item:hover {
    color: rgb(var(--primary-color));
}

@media (max-width: 575px) {
    .copyright-area {
        text-align: center;
    }

    .language {
        justify-content: center;
    }
}

/*----------------------------------------------
Copyright end
----------------------------------------------*/
/*----------------------------------------------
16. Banner section start
----------------------------------------------*/
.banner-section {
    position: relative;
    padding: 80px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    background-color: var(--bg-color3);
}

.banner-section .img-box {
    max-width: 300px;
}

.banner-section .img-box img {
    width: 100%;
    height: 100%;
}

.banner-section .text-box {
    display: flex;
    flex-direction: column;
    justify-content: end;
    height: 100%;
    color: rgb(var(--white));
}

.banner-section .text-box .title {
    color: rgb(var(--white));
}

.breadcrumb-area h3 {
    text-transform: capitalize;
    font-size: 32px;
    margin-bottom: 10px;
}

.note-box {
    display: flex;
    gap: 15px;
}

.note-box .icon-box {
    display: flex;
    justify-content: center;
    font-size: 20px;
    color: var(--orange);
    color: rgb(var(--primary-color));
    background-color: var(--bg-color3);
    width: 35px;
    min-width: 35px;
    height: 35px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-box .text-box h6 {
    color: rgb(var(--white));
}

@media (min-width: 768px) {
    .banner-section .img-box {
        margin-bottom: -50px;
    }
}

@media (max-width: 991px) {
    .banner-section h3 {
        font-size: 36px;
    }

    .breadcrumb-area {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .banner-section {
        padding: 40px;
    }
}

@media (max-width: 575px) {
    .banner-section .img-box {
        max-width: 200px;
    }
}

/*----------------------------------------------
Banner end
----------------------------------------------*/
/*----------------------------------------------
24. Contact section start
----------------------------------------------*/
.contact-section {
    background-color: var(--bg-color1);
    position: relative;
    z-index: 0;
}

.contact-area {
    padding: 20px;
}

.contact-area .thumbs-area {
    max-width: 250px;
    margin: auto;
}

.contact-item-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item-list .item {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border-color1);
    padding: 10px;
    border-radius: 10px;
    box-shadow: var(--shadow1);
}

.contact-item-list .item .icon-area {
    border-radius: 5px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: rgb(var(--primary-color));
    background-color: rgb(var(--primary-color), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-message-area {
    background-color: var(--bg-color1);
    padding: 30px 25px;
    box-shadow: var(--shadow1);
    border-radius: 20px;
    border: 1px solid var(--border-color1);
}

.contact-message-area .contact-header {
    margin-bottom: 30px;
}

.contact-message-area .btn-area {
    margin-top: 30px;
}

.contact-message-area .form-label {
    text-transform: capitalize;
}

.contact-message-area .form-label h5 {
    font-weight: 600;
}

/*----------------------------------------------
Contact section end
----------------------------------------------*/
/*----------------------------------------------
24. Login Signup section start
----------------------------------------------*/
.login-register-section {
    background-color: var(--bg-color1);
}

.login-register-form {
    padding: 30px;
    z-index: 1;
    position: relative;
    background-color: var(--bg-color2);
    border-radius: 20px;
}

.login-register-form .logo-area {
    margin-bottom: 20px;
    display: inline-flex;
}

.login-register-form .cmn-btn {
    height: 45px;
}

.login-register-form .cmn-btn2 {
    height: 45px;
    border-radius: 5px;
}

.login-register-form .cmn-btn-group .btn img {
    width: 16px;
}

.password-box {
    position: relative;
    display: flex;
    align-items: center;
}

.password-box .form-control {
    padding-right: 35px;
}

.password-box .password-icon {
    position: absolute;
    right: 15px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .login-register-section .login-register-form {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .login-register-section .login-register-form {
        margin: auto;
    }
}

@media (max-width: 575px) {
    .login-register-section .login-register-form {
        padding: 20px;
    }
}

.rtl .password-box .form-control {
    padding-right: 0.75rem;
    padding-left: 35px;
}

.rtl .password-box .password-icon {
    right: auto;
    left: 15px;
}

.rtl .login-register-box .img-box img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

/*----------------------------------------------
Login Signup end
----------------------------------------------*/
/*----------------------------------------------
25. Blog details section start
----------------------------------------------*/
.blog-details-section {
    background: var(--bg-color1);
}

.blog-details-section .meta {
    justify-content: initial;
}

.blog-details-section .blog-box-large .thumbs-area img {
    border-radius: 20px;
    max-height: 420px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-details-section .blog-box-large .content-area {
    max-width: 100%;
}

.blog-details-section .blog-box-large .content-area .blog-title {
    margin-bottom: 20px;
}

.blog-details-section .blog-box-large .content-area .para-text {
    margin-bottom: 20px;
}

.blog-quote-box {
    margin: 20px 0;
    position: relative;
    background-color: var(--bg-color2);
    padding: 25px;
    border-left: 2px solid rgb(var(--primary-color));
    border-radius: 10px;
}

.blog-quote-box .icon-area {
    position: absolute;
    font-size: 60px;
    color: rgb(var(--primary-color));
    top: 5px;
    right: 20px;
    opacity: 0.1;
    z-index: 0;
}

.blog-quote-box .content {
    position: relative;
    z-index: 1;
}

.blog-quote-box .title {
    position: relative;
    padding: 10px 0 0 30px;
    margin: 0;
    display: flex;
    align-items: center;
}

.blog-quote-box .title::after {
    position: absolute;
    content: "";
    background-color: rgb(var(--primary-color));
    width: 20px;
    height: 2px;
    left: 0;
}

.social-share-box {
    margin-top: 30px;
}

.social-share-box .title {
    text-transform: capitalize;
    margin-bottom: 10px;
}

#shareBlock {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#shareBlock .btn-light {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    background-color: var(--bg-color3);
    border: none;
}

.sidebar-categories-area li {
    padding: 10px 0;
}

.sidebar-categories-area li a {
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    color: rgb(var(--heading-color));
    font-family: var(--heading-font);
}

.sidebar-categories-area li a:hover {
    color: rgb(var(--primary-color));
}

.sidebar-categories-area li:first-child {
    padding-top: 0;
}

.sidebar-categories-area li:last-child {
    padding-bottom: 0;
}

.sidebar-categories-area li:not(:last-child) {
    border-bottom: 1px solid var(--border-color1);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-list .item {
    font-size: 16px;
    padding: 10px 15px;
    transition: var(--transition);
    border-radius: 5px;
    background-color: var(--bg-color1);
    gap: 5px;
    font-weight: 500;
    text-transform: capitalize;
    border: 1px solid var(--border-color1);
}

.tag-list .item:hover {
    color: rgb(var(--white));
    background-color: rgb(var(--primary-color));
}

.tag-list .item:last-child {
    margin-bottom: 0;
}

.sidebar-widget-area {
    padding: 25px;
    background-color: var(--bg-color1);
    border-radius: 15px;
    margin-bottom: 25px;
    border: 1px solid var(--border-color1);
    box-shadow: var(--shadow1);
}

.sidebar-widget-area .title {
    margin-bottom: 15px;
    text-transform: capitalize;
}

.sidebar-widget-area .sidebar-widget-item {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.sidebar-widget-area .sidebar-widget-item:hover .content-area .title {
    color: rgb(var(--primary-color));
}

.sidebar-widget-area .sidebar-widget-item:hover .img-area img {
    transform: scale(1.03);
}

.sidebar-widget-area .sidebar-widget-item .img-area {
    width: 80px;
    min-width: 80px;
    height: 80px;
    overflow: hidden;
}

.sidebar-widget-area .sidebar-widget-item .img-area img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    transition: var(--transition);
}

.sidebar-widget-area .sidebar-widget-item .content-area {
    margin-left: 15px;
    width: calc(100% - 100px);
}

.sidebar-widget-area .sidebar-widget-item .content-area .title {
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    transition: all ease 0.3s;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
    color: rgb(var(--heading-color));
    margin-bottom: 10px;
    font-family: var(--heading-font);
}

.sidebar-widget-area .sidebar-widget-item .content-area .widget-date {
    display: flex;
    gap: 5px;
    color: rgb(var(--heading-color));
    font-size: 14px;
}

.sidebar-widget-area .sidebar-widget-item .content-area .widget-date i {
    color: rgb(var(--primary-color));
}

.sidebar-widget-area .sidebar-widget-item:not(:last-child) {
    margin-bottom: 20px;
}

.sidebar-widget-area .widget-title {
    margin-bottom: 20px;
    position: relative;
    text-transform: capitalize;
    display: flex;
    gap: 10px;
}

.sidebar-widget-area .widget-title::before {
    content: "";
    width: 5px;
    border-radius: 6px;
    background-color: rgb(var(--primary-color));
}

.featured-products-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-products-box .img-box {
    width: 90px;
    min-width: 90px;
    height: 90px;
}

.featured-products-box .img-box img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.featured-products-box .text-box .title {
    font-size: 18px;
    color: rgb(var(--heading-color));
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-bottom: 5px;
}

.featured-products-box .text-box .title:hover {
    color: rgb(var(--primary-color));
}

.featured-products-box .text-box .price .promo-price {
    color: rgb(var(--heading-color));
    font-size: 20px;
}

.featured-products-box .text-box .price .original-price {
    font-size: 16px;
}

.featured-products-box .text-box .line-through {
    text-decoration: line-through;
    white-space: nowrap;
    font-size: 14px;
}

@media (max-width: 991px) {
    .sidebar-widget-area {
        padding: 20px;
    }
}

.rtl .sidebar-widget-item .content-area {
    margin-left: 0;
    margin-right: 15px;
}

.rtl .sidebar-widget-area .widget-title::before,
.rtl .sidebar-widget-area .widget-title::after {
    right: 0;
    left: auto;
}

.rtl .blog-quote-box {
    border-left: none;
    border-right: 2px solid rgb(var(--primary-color));
    padding: 25px 40px 20px 20px;
}

.rtl .blog-quote-box .icon-area {
    left: 20px;
    right: auto;
}

.rtl .blog-quote-box .icon-area i {
    transform: rotateY(180deg);
}

.rtl .blog-quote-box .title {
    padding: 10px 30px 0 0;
}

.rtl .blog-quote-box .title::after {
    left: auto;
    right: 0;
}

/*----------------------------------------------
Blog details end
----------------------------------------------*/
/*----------------------------------------------
26. Pagination section start
----------------------------------------------*/
.pagination-section {
    display: flex;
    justify-content: end;
}

.pagination-section nav .pagination .page-item .page-link {
    margin: 5px;
    width: 40px;
    height: 40px;
    border-radius: 8px !important;
    color: rgb(var(--heading-color)) !important;
    background-color: var(--bg-color3) !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color1) !important;
    box-shadow: none !important;
}

.pagination-section nav .pagination .page-item .page-link:hover,
.pagination-section nav .pagination .page-item .page-link:focus {
    background-color: rgb(var(--primary-color)) !important;
    color: rgb(var(--white)) !important;
    border: 1px solid rgb(var(--primary-color)) !important;
}

.pagination-section nav .pagination .page-item.active .page-link {
    background-color: rgb(var(--primary-color)) !important;
    color: rgb(var(--white)) !important;
    border: 1px solid rgb(var(--primary-color)) !important;
}

.rtl .pagination-section nav .pagination .page-item .page-link i {
    transform: rotate(180deg);
}

/*----------------------------------------------
Pagination end
----------------------------------------------*/
/*----------------------------------------------
Policy section start
----------------------------------------------*/
.policy-section {
    background-color: var(--bg-color1);
    position: relative;
    z-index: 0;
}

.policy-section ul,
.policy-section ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: circle;
}

.policy-section ol {
    list-style: decimal;
}

.policy-section .shape2 {
    top: auto;
    bottom: 150px;
}

.policy-section .shape3 {
    top: 150px;
}

.rtl .policy-section ul,
.rtl .policy-section ol {
    padding-left: 0;
    padding-right: 2rem;
}

/*----------------------------------------------
Policy section end
----------------------------------------------*/
/*----------------------------------------------
27. Error section start
----------------------------------------------*/
.error-section {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    background-color: var(--bg-color1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-section .error-content .error-title {
    font-size: 150px;
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1;
}

.error-section .error-content .error-info {
    font-size: 40px;
    line-height: 1.3;
}

.error-section .error-content .btn-area {
    margin-top: 30px;
}

.error-section .error-content .btn-area .cmn-btn {
    text-transform: none;
}

@media (max-width: 991px) {
    .error-section {
        padding: 100px 0;
    }

    .error-section .error-content .error-title {
        font-size: 100px;
    }

    .error-section .error-content .error-info {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .error-section {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .error-section {
        min-height: 100%;
        min-width: 100%;
    }
}

/*----------------------------------------------
Error end
----------------------------------------------*/
/*----------------------------------------------
Products section start
----------------------------------------------*/
.products-section {
    background-color: var(--bg-color1);
}

/*----------------------------------------------
Products section end
----------------------------------------------*/
/*----------------------------------------------
Product details section start
----------------------------------------------*/
.product-details-section {
    padding-top: 40px;
}

.product-details-section .expand-compressed-description {
    font-size: 16px;
}

.product-details-section .expand-compressed-description .text-box .text {
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.traveler-box {
    position: relative;
}

.traveler-box.active .value-box {
    border-color: rgb(var(--primary-color));
}

.traveler-box.active .geust-picker {
    opacity: 1;
    visibility: visible;
    top: calc(100% + 5px);
}

.traveler-box .value-box {
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--border-color1);
    height: 45px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.375rem 0.75rem;
}

.traveler-box .geust-picker {
    position: absolute;
    background-color: var(--bg-color1);
    padding: 20px;
    box-shadow: var(--shadow3);
    border-radius: 15px;
    min-width: 310px;
    top: calc(100% + 10px);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    width: 100%;
}

.traveler-box .geust-picker .geust-picker-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.traveler-box .geust-picker .geust-picker-item:not(:last-child) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color1);
}

.item-count {
    padding: 5px 8px;
    width: auto;
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    transition: var(--transition);
    border: 1px solid var(--border-color1);
    background-color: var(--bg-color1);
}

.item-count:hover {
    box-shadow: var(--shadow1);
}

.item-count input {
    border: none;
    outline: none;
    width: 40px;
    text-align: center;
    background-color: var(--bg-color1);
    color: rgb(var(--heading-color));
}

.btn-inc-dec {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgb(var(--heading-color));
}

.btn-inc-dec:hover {
    background-color: var(--bg-color2);
}

.review-item {
    border: 1px solid var(--border-color1);
    padding: 20px 15px;
    border-radius: 10px;
}

.author-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-profile .img-box img {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 10px;
}

.related-card {
    display: flex;
    border: 1px solid var(--border-color1);
    border-radius: 5px;
}

.related-card:hover .img-box img {
    transform: scale(1.05);
}

.related-card:not(:last-child) {
    margin-bottom: 20px;
}

.related-card .img-box {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 80px;
    min-width: 80px;
    height: 100%;
    min-height: 80px;
    overflow: hidden;
}

.related-card .img-box img {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.related-card .text-box {
    font-size: 15px;
    padding: 10px;
}

.related-card .text-box h6 {
    font-size: 16px;
}

.related-card .text-box p {
    color: var(--body-color);
    margin-top: 5px;
}

.info-box {
    position: relative;
    display: inline-flex;
}

.info-box:hover .info-text {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.info-box .info-icon {
    cursor: pointer;
}

.info-box .info-icon:hover {
    color: rgb(var(--primary-color));
}

.info-box .info-text {
    position: absolute;
    background-color: var(--bg-color1);
    right: -10px;
    top: 100%;
    z-index: 1;
    width: 250px;
    border: 1px solid var(--border-color1);
    padding: 15px;
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transform-origin: 0 0;
    transition: var(--transition);
}

.product-card {
    background-color: var(--bg-color1);
    border: 1px solid var(--border-color1);
    box-shadow: var(--shadow1);
    padding: 25px;
    border-radius: 15px;
}

.product-card:not(:last-child) {
    margin-bottom: 30px;
}

.product-card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.product-card-item:hover {
    color: rgb(var(--heading-color));
}

.product-card-item:hover .img-box img {
    transform: scale(1.05);
}

.product-card-item .img-box {
    width: 60px;
    min-width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color1);
}

.product-card-item .img-box img {
    border-radius: 10px;
    transition: var(--transition);
}

.product-card-item .text-box .title {
    font-size: 16px;
    font-weight: 500;
    color: rgb(var(--heading-color));
}

.iframe-video {
    overflow: hidden;
    aspect-ratio: 16/9;
}

.iframe-video iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

@media (min-width: 1024px) {
    .info-box .info-text {
        width: 320px;
        padding: 20px;
    }
}

@media (max-width: 425px) {
    .traveler-box .geust-picker {
        min-width: 280px;
    }

    .traveler-box .geust-picker .geust-picker-item {
        flex-wrap: wrap;
    }
}

.rtl .info-box .info-text {
    right: auto;
    left: -10px;
}

/*----------------------------------------------
Product details section end
----------------------------------------------*/
/*----------------------------------------------
Gallery box section start
----------------------------------------------*/
.gallery-box {
    display: grid;
    grid-template-columns: 30% repeat(3, 1fr);
    gap: 8px;
    border-radius: 20px;
    overflow: hidden;
    justify-content: space-between;
    margin-top: 20px;
}

.gallery-box .item {
    position: relative;
    cursor: pointer;
    max-height: 250px;
}

.gallery-box .item:first-child {
    grid-column: 1/3;
    grid-row: 1/3;
    max-height: 508px;
    min-height: 300px;
}

.gallery-box .item:nth-child(5) {
    background: rgb(var(--heading-color), 0.5);
}

/* .gallery-box .item:nth-child(5):after{
    content: 'More';
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--bg);
    background: rgb(var(--heading-color), 0.8);
    color: var(--bg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
} */

.gallery-box .item:nth-child(n+6) {
    display: none;
}

.gallery-box .item img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 767px) {
    .gallery-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*----------------------------------------------
Gallery box section end
----------------------------------------------*/
/*----------------------------------------------
00. Inline date range picker start
----------------------------------------------*/
.inline-date-range-picker {
    margin-top: 50px;
}

.inline-date-range-picker .date-picker-wrapper {
    width: 100%;
    background-color: var(--bg-color2);
    border-color: var(--border-color1);
    border-radius: 10px;
    color: rgb(var(--heading-color));
    font-family: var(--body-font);
}

.inline-date-range-picker .date-picker-wrapper .drp_top-bar {
    font-size: 16px;
}

.inline-date-range-picker .date-picker-wrapper .drp_top-bar .start-day,
.inline-date-range-picker .date-picker-wrapper .drp_top-bar .end-day {
    font-weight: 500;
    color: var(--heading-color);
}

.inline-date-range-picker .date-picker-wrapper .first-date-selected,
.inline-date-range-picker .date-picker-wrapper .last-date-selected {
    background-color: rgb(var(--primary-color)) !important;
}

.inline-date-range-picker .month-wrapper {
    width: 100% !important;
    border-color: var(--border-color1);
    border-radius: 10px;
}

.inline-date-range-picker .month-wrapper .caption {
    height: 50px;
}

.inline-date-range-picker .month-wrapper .caption .prev,
.inline-date-range-picker .month-wrapper .caption .next {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
}

.inline-date-range-picker .month-wrapper .caption th {
    padding-bottom: 15px;
}

.inline-date-range-picker .month-wrapper .caption>th:first-of-type .prev,
.inline-date-range-picker .month-wrapper .caption>th:first-of-type .next,
.inline-date-range-picker .month-wrapper .caption>th:last-of-type .prev,
.inline-date-range-picker .month-wrapper .caption>th:last-of-type .next {
    margin: auto;
}

.inline-date-range-picker .month-wrapper .month-name {
    font-weight: 600;
    font-size: 16px;
}

.inline-date-range-picker .month-wrapper .week-name {
    font-size: 14px;
}

.inline-date-range-picker .month-wrapper .week-name th {
    padding-bottom: 10px;
    font-weight: 600;
}

.inline-date-range-picker .month-wrapper .month1,
.inline-date-range-picker .month-wrapper .month2 {
    width: calc(50% - 18px) !important;
    width: 45% !important;
}

.inline-date-range-picker .month-wrapper table th {
    text-transform: capitalize;
}

.inline-date-range-picker .month-wrapper table td {
    padding: 3px 0;
}

.inline-date-range-picker .month-wrapper table .day {
    margin: auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.inline-date-range-picker .month-wrapper table .day.checked {
    background-color: rgb(var(--primary-color), 0.5);
}

.inline-date-range-picker .month-wrapper table .day.toMonth.hovering {
    background-color: rgb(var(--primary-color), 0.5);
}

@media (min-width: 1200px) {
    .inline-date-range-picker .month-wrapper table th {
        min-width: 54px;
    }
}

@media (max-width: 991px) {

    .inline-date-range-picker .month-wrapper .month1,
    .inline-date-range-picker .month-wrapper .month2 {
        width: 100% !important;
    }

    .date-picker-wrapper .gap {
        display: none;
    }
}

@media (max-width: 767px) {
    .inline-date-range-picker {
        margin-top: 30px;
    }
}

/*----------------------------------------------
Inline date range picker end
----------------------------------------------*/
/*----------------------------------------------
00. Map section start
----------------------------------------------*/
.map-section iframe {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    margin-bottom: -6px;
}

.map-section2 iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

/*----------------------------------------------
Map section end
----------------------------------------------*/
/*----------------------------------------------
Trip builder preview section start
----------------------------------------------*/
.trip-builder-preview-section .content-box {
    padding: 0 90px;
}

.trip-builder-preview-section .map-section {
    position: sticky;
    top: 0;
}

.trip-builder-preview-section .map-section #preview-map {
    height: 100vh;
}

.product-box2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    cursor: pointer;
}

.product-box2:hover {
    color: var(--body-color);
}

.product-box2:hover .img-box img {
    transform: scale(1.05);
    opacity: 0.8;
}

.product-box2 .img-box {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 10px;
}

.product-box2 .img-box img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    transition: var(--transition);
    -o-object-fit: cover;
    object-fit: cover;
}

.product-box2 .text-box {
    font-size: 15px;
    color: rgb(var(--heading-color));
}

.product-box2 .text-box .title {
    font-family: var(--heading-font);
    color: rgb(var(--heading-color));
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.product-box2 .text-box .reviews i {
    font-size: 12px;
}

.product-box2 .text-box .sub-title {
    text-transform: capitalize;
}

.product-box2 .add-remove-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    border: 1px solid transparent;
}

.product-box2 .add-remove-btn:hover {
    background-color: var(--bg-color1);
    color: rgb(var(--heading-color));
}

.product-box2 .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}

strong {
    font-weight: 500;
}

.product-box3 {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border-color2);
    background-color: var(--bg-color1);
    padding: 15px;
    border-radius: 10px;
}

.product-box3 .img-box {
    width: 120px;
    min-width: 120px;
    height: 120px;
}

.product-box3 .img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}

.product-box3 .text-box .title {
    font-size: 18px;
    font-weight: 500;
}

.product-box3 .text-box .title:hover {
    text-decoration: underline;
}

.addPlaceOffcanvas .product-box4:hover {
    cursor: pointer;
}

.product-box4 {
    display: flex;
    gap: 15px;
    border: 1px solid var(--border-color2);
    background-color: var(--bg-color1);
    padding: 15px;
    border-radius: 10px;
}

.product-box4.active {
    border-color: rgb(var(--primary-color));
    outline: 1px solid rgb(var(--primary-color));
}

.product-box4 .img-box {
    width: 90px;
    min-width: 90px;
    height: 90px;
}

.product-box4 .img-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 8px;
}

.product-box4 .text-box .tag {
    color: rgb(var(--primary-color));
    background-color: rgb(var(--primary-color), 0.1);
    padding: 2px 5px;
    display: inline-flex;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    border-radius: 5px;
}

.product-box4 .text-box .title {
    font-size: 18px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.product-box4 .cmn-list {
    font-size: 14px;
}

.wishlist-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: rgb(var(--white));
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.wishlist-btn.active {
    color: rgb(var(--light-red));
}

.product-box5 {
    background-color: rgb(var(--primary-color), 0.1);
    border-radius: 10px;
    font-size: 15px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-box5:hover {
    color: inherit;
}

.product-box5.active {
    border-color: rgb(var(--primary-color));
    outline: 1px solid rgb(var(--primary-color));
}

.product-box5 .product-box5-top {
    background-color: var(--bg-color1);
    display: flex;
    border: 1px solid var(--border-color2);
    border-radius: 10px;
    flex-direction: column;
    flex-grow: 1;
}

.product-box5 .product-box5-bottom {
    padding: 8px;
}

.product-box5 .img-carousel .item img {
    height: 210px;
}

.product-box5 .product-box5-text-box {
    padding: 15px;
    flex-grow: 1;
}

.product-box5 .product-box5-text-box .tag {
    color: rgb(var(--primary-color));
    background-color: rgb(var(--primary-color), 0.1);
    padding: 2px 5px;
    display: inline-flex;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    border-radius: 5px;
}

.product-box5 .product-box5-text-box .title {
    font-size: 18px;
    font-weight: 500;
}

.product-box5 .wishlist-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: rgb(var(--white));
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.product-box5 .wishlist-btn.active {
    color: rgb(var(--soft-red));
    color: rgb(var(--light-red));
}

.expand-compressed-description {
    display: flex;
    gap: 8px;
    font-size: 15px;
}

.expand-compressed-description .icon-box {
    width: 25px;
    min-width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--soft-blue), 0.5);
}

.expand-compressed-description .text-box .text {
    cursor: pointer;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.expand-compressed-description .text-box .text.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.add-remove-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    background-color: var(--bg-color1);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgb(var(--black));
    transform: var(--transition);
    font-size: 16px;
}

.add-remove-btn:hover {
    background-color: rgb(var(--black));
    color: rgb(var(--white));
}

.preview-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: calc(57% - 140px);
    margin-left: 85px;
    border: 1px solid var(--border-color1);
    padding: 13px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow2);
    position: sticky;
    bottom: 20px;
    background-color: var(--bg-color1);
    z-index: 3;
}

.preview-action-bar .form-check-input {
    height: 30px;
    width: 60px;
}



.gm-style .gm-style-iw-c {
    box-shadow: var(--shadow3);
}

.map-product-box {
    display: flex;
    gap: 15px;
    width: 310px;
    font-family: var(--heading-font);
}

.map-product-box .img-box {
    width: 60px;
    height: 60px;
}

.chat-map .gm-ui-hover-effect {
    position: absolute !important;
    top: 0;
    right: 0;
}

.chat-map .gm-style-iw-ch {
    padding-top: 10px;
}

.map-product-box .img-box img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    -o-object-fit: cover;
    object-fit: cover;
}

.map-product-box .text-box {
    font-size: 18px;
    font-weight: 500;
    max-width: 177px;
    width: 100%;
    text-align: left;
}

.map-product-box .text-box .title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.map-product-box .text-box p {
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 0;
}

.map-product-box .text-box .reviews {
    font-size: 12px;
}

.map-product-box .text-box .reviews span {
    font-weight: 500;
}

.marker-icon-box {
    width: 28px;
    position: relative;
}

.marker-icon-box .icon-middle {
    position: absolute;
    top: 7px;
    left: 8px;
    fill: rgb(var(--white));
}

.marker-icon-box .add-icon {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--bg-color1);
    display: flex;
    align-items: center;
    justify-content: center;
    top: -8px;
    right: -9px;
}

@media (max-width: 1199px) {
    .trip-builder-preview-section .content-box {
        padding: 0 30px;
    }
}

@media (max-width: 991px) {
    .trip-builder-preview-section .content-box {
        padding: 0 20px;
    }

    .preview-action-bar {
        bottom: 60px;
    }
}

@media (max-width: 767px) {
    .trip-builder-preview-section .map-section #map {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .preview-action-bar {
        padding: 10px;
        width: calc(100% - 15px);
    }
}

@media (max-width: 425px) {
    .product-box3 {
        flex-direction: column;
        align-items: start;
    }

    .product-box3 .img-box {
        width: 100%;
        height: 150px;
    }
}

/*----------------------------------------------
Trip builder preview section start
----------------------------------------------*/
/*----------------------------------------------
Img carousel start
----------------------------------------------*/
.img-carousel:hover .owl-nav {
    opacity: 1;
    visibility: visible;
}

.img-carousel .item {
    width: 100%;
}

.img-carousel .item img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

.img-carousel .owl-nav {
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
}

.img-carousel .owl-nav .owl-prev,
.img-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.img-carousel .owl-nav .owl-prev {
    left: 0;
}

.img-carousel .owl-nav .owl-next {
    right: 5px;
}

.img-carousel .owl-dots {
    margin-top: -22px;
    z-index: 1;
    position: relative;
    text-align: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.6) 75%);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.img-carousel .owl-dots .owl-dot span {
    background: rgb(var(--white));
}

.img-carousel .owl-dots .owl-dot.active span {
    background: rgb(var(--white));
}

/*----------------------------------------------
Img carousel end
----------------------------------------------*/
/*----------------------------------------------
Trip details section start
----------------------------------------------*/
.trip-details-section {
    padding-top: 40px;
}

.trip-details-section .breadcrumb-area {
    text-align: initial;
    font-size: 18px;
}

.trip-details-section .accordion-item {
    background-color: transparent;
    border-radius: 0;
    border-bottom: 1px solid var(--border-color2);
    color: var(--body-color);
}

.trip-details-section .accordion-button {
    background-color: transparent;
}

.trip-details-section .accordion-body {
    padding: 15px 0;
}

.trip-details-section .map-section {
    position: sticky;
    top: 70px;
}

.trip-details-section .map-section #map {
    width: 100%;
    height: calc(100vh - 80px);
    border-radius: 20px;
}

.trip-details-section.for-you .product-box4 {
    flex-direction: column;
    gap: 0;
    padding: 0;
    font-size: 15px;
}

.trip-details-section.for-you .product-box4 .img-box {
    width: 100%;
    height: 100%;
}

.trip-details-section.for-you .product-box4 .img-box .img-carousel .item img {
    height: 210px;
}

.trip-details-section.for-you .product-box4 .text-box {
    padding: 15px;
}

.itineray-accordion .accordion-button {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 22px;
}

.itineray-accordion .accordion-button .add-location {
    font-weight: 400;
    font-size: 20px;
}

.save-accordion .accordion-item {
    border-bottom: none;
}

.save-accordion .accordion-button {
    padding: 0 0 16px;
}

.save-accordion .accordion-body {
    padding: 0 0 16px;
}

.save-accordion .product-box4 {
    padding: 0;
    border: none;
}

.save-accordion .product-box4 .img-box {
    width: 200px;
    min-width: 200px;
    height: 200px;
    position: relative;
}

.save-accordion .product-box4 .img-carousel .item img {
    width: 200px;
    min-width: 200px;
    height: 200px;
    aspect-ratio: initial;
}

.trip-details-header {
    position: relative;
}

.trip-details-header .img-box {
    position: relative;
}

.trip-details-header .img-box::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgb(var(--black), 0%) 0, rgb(var(--black), 0.6) 100%);
    border-radius: 15px;
}

.trip-details-header .img-box img {
    border-radius: 15px;
    aspect-ratio: 2/1;
    max-height: 370px;
    min-height: 250px;
    width: 100%;
}

.trip-details-header .text-box {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 32px 24px 32px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trip-details-header .text-box .title {
    color: rgb(var(--white));
    font-size: 36px;
    font-weight: 600;
}

.trip-details-header .text-box .sub-title {
    color: rgb(var(--white));
    font-weight: 500;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.trip-details-header .action-box {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 7px;
}

.comment-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid var(--border-color1);
    border-radius: 9999px;
    padding: 12px;
    font-size: 14px;
}

.comment-box .comment-img-box {
    width: 25px;
    min-width: 25px;
    height: 25px;
}

.comment-box .comment-img-box img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.comment-box .custom-form-control {
    flex-grow: 1;
    border: none;
    outline: none;
}

.comment-box .sent-btn {
    width: 25px;
    min-width: 25px;
    height: 25px;
    border-radius: 50%;
    color: rgb(var(--white));
    background-color: rgb(var(--black));
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn-box .btn-box,
.edit-btn-box .btn-box {
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.5s ease-in;
}

.wishlist-btn2 {
    padding: 7px 10px;
    border-radius: 9999px;
    background-color: var(--bg-color1);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.wishlist-btn2:hover {
    background-color: rgb(var(--bg-color2));
    background-color: var(--bg-color4);
}

.wishlist-btn2 .icon-box {
    color: rgb(var(--light-red));
    font-size: 16px;
}

.productDetailsOffcanvas .product-box4 {
    padding: 0;
    border: none;
}

.productDetailsOffcanvas .product-box4 .img-box {
    width: 140px;
    min-width: 140px;
    height: 110px;
    position: relative;
}

.itinerary-box.edit .timeline-box .timeline-item {
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.itinerary-box.edit .timeline-box .timeline-item .left-side::after {
    display: none;
}

.itinerary-box.edit .timeline-box .timeline-item .left-side .icon-box {
    display: none;
}

.itinerary-box.edit .timeline-box .timeline-item .middle-side {
    margin-bottom: 0;
}

.itinerary-box.edit .timeline-box .timeline-item .right-side {
    display: block;
}

.itinerary-box.edit .remove-btn {
    display: flex;
}

.itinerary-box.edit .add-place-btn {
    display: none;
}

.itinerary-box.edit .action-btn-box {
    display: none;
}

.remove-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: rgb(var(--soft-red));
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.remove-btn:hover {
    background-color: var(--bg-color4);
}

.move-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: grab !important;
}

.page-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--border-color1);
}

.page-tabs .item {
    padding: 10px;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    font-weight: 500;
}

.page-tabs .item.active {
    border-bottom: 2px solid rgb(var(--primary-color));
    background-color: var(--bg-color1);
    color: rgb(var(--primary-color));
    font-weight: 600;
}

.page-tabs .item:hover {
    border-bottom: 2px solid rgb(var(--primary-color));
    background-color: var(--bg-color1);
    color: rgb(var(--primary-color));
}

@media (max-width: 991px) {
    .trip-details-section .map-section #map {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .trip-details-header .text-box .title {
        font-size: 28px;
    }
}

@media (max-width: 425px) {
    .save-accordion .product-box4 {
        flex-direction: column;
    }

    .save-accordion .product-box4 .img-box {
        width: 100%;
    }

    .save-accordion .product-box4 .img-carousel .item img {
        width: 100%;
    }
}

/*----------------------------------------------
Trip details section end
----------------------------------------------*/
/*----------------------------------------------
Timeline box section start
----------------------------------------------*/
.timeline-box .timeline-item {
    display: flex;
    gap: 30px;
}

.timeline-box .timeline-item:not(:last-child) .middle-side {
    margin-bottom: 30px;
}

.timeline-box .timeline-item .left-side {
    position: relative;
}

.timeline-box .timeline-item .left-side::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    background-color: rgb(var(--black));
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.timeline-box .timeline-item .left-side .icon-box {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    background-color: rgb(var(--black));
    color: rgb(var(--white));
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-box .timeline-item .middle-side {
    flex-grow: 1;
}

.timeline-box .timeline-item .right-side {
    display: none;
}

.see-hours-box {
    position: relative;
}

.see-hours-box:hover .popup-box {
    display: block;
}

.see-hours-box .see-hours {
    text-decoration: underline;
    cursor: pointer;
}

.popup-box {
    position: absolute;
    left: 0;
    top: 30px;
    display: none;
}

.popup-box:hover {
    opacity: 1;
    visibility: visible;
}

.popup-box.popup-box-right {
    right: 0;
    left: auto;
}

.popup-box.popup-box-right .popup-box-inner::after {
    right: 50px;
    left: auto;
}

.popup-box .popup-box-inner {
    position: relative;
    padding: 15px;
    background-color: rgb(var(--white));
    border-radius: 10px;
    box-shadow: var(--shadow3);
    min-width: 280px;
    cursor: auto;
    z-index: 1;
}

.popup-box .popup-box-inner::after {
    content: "";
    position: absolute;
    left: 25px;
    top: -8px;
    width: 17px;
    height: 17px;
    transform: rotate(45deg);
    background: #fff;
    border-radius: 2px;
}

.popup-box .popup-box-inner .close-btn {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    position: absolute;
    right: 3px;
    top: 3px;
}

.popup-box .popup-box-inner .close-btn:hover {
    background-color: hsl(var(--base)/0.1);
}

.popup-box .popup-box-inner .form-control {
    font-size: 14px;
    height: 30px;
    width: 65px;
    min-width: 35px;
    padding: 5px;
}

@media (min-width: 576px) {
    .popup-box .popup-box-inner {
        min-width: 280px;
    }
}

@media (max-width: 425px) {
    .popup-box {
        right: -80px;
        left: auto;
    }
}

.sortable-ghost {
    opacity: 0.5;
}

.sortable-chosen {
    border: 2px dashed #ccc;
}

/*----------------------------------------------
Timeline box section end
----------------------------------------------*/


/*----------------------------------------------
New
----------------------------------------------*/
/* hero */
.hero-one {
    position: relative;
    width: 100%;
    padding: 70px 0;
    background: linear-gradient(104deg,
            #fff 0%,
            rgba(255, 255, 255, 0.5) 53.21%,
            rgba(255, 255, 255, 0.8) 75.75%);
    background-size: cover;
    background-position: center;
}

.banner-slider-1 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.banner-slider-1 .swiper-slide .bg-layer {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 8000ms linear;
    -moz-transition: all 8000ms linear;
    -ms-transition: all 8000ms linear;
    -o-transition: all 8000ms linear;
    transition: all 8000ms linear;
}

.banner-slider-1 .swiper-slide.swiper-slide-active .bg-layer {
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
}

.hero-one .bg-shape-layer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-section-inner {
    position: relative;
    z-index: 2;
}

.multi-step-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #fff;
    padding: 15px 0;
    border-radius: 12px;
    width: inherit;
    margin: 0 auto;
}

.multi-step-progress-section {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.multi-step-list .item::before {
    content: "";
    width: 100%;
    height: 0;
    border: 1px dashed #c1c1c1;
    right: 50%;
    top: 14px;
    position: absolute;
    background-color: transparent;
}

.multi-step-list .item.active::before {
    background-color: transparent;
    border: 1px dashed rgb(var(--primary-color));
}

.multi-step-list .item .icon-area {
    color: rgb(var(--white));
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #c1c1c1;
    z-index: 1;
    font-size: 10px;
}

.multi-step-list .item .icon-area i {
    line-height: 1;
}

.inline-date-range-picker .date-picker-wrapper {
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.5);
}

.custom-radio-container .form-check-input[type=radio]:checked+.form-check-label,
.custom-radio-container2 .form-check-input[type=radio]:checked+.form-check-label,
.custom-checkbox-container .form-check-input[type=checkbox]:checked+.form-check-label {
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.5);
    outline: none !important;
}

.product-box {
    border-radius: 12px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.5);
    padding: 10px;
    animation: float 6s ease-in-out infinite;
}

.product-item:nth-child(even) .product-box {
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* about */
.about {
    padding: 0;
    background: var(--bg-color2);
}

.about-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 0;
}

.about-content p {
    margin: 10px 0 30px;
}

.about-image {
    max-width: 600px;
    width: 100%;
    /* aspect-ratio: 6 / 4; */
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: 100%;
}


/* offer */
.offer-single {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    padding: 90px 0 40px 62px;
}

.bg-layer {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    transition: 0.5s;
    z-index: -1;
}

.offer-content {
    max-width: 347px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.offer-content h4 {
    font-size: 32px;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 0;
}

.offer-content p {
    color: var(--black-color) !important;
    max-width: 439px;
    width: 100%;
    margin-bottom: 0;
}

/* popular */
.popular-slider {
    position: relative;
}

.popular-single {
    position: relative;
    height: 100%;
}

.popular-single-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    padding: 5px 14px;
    border-radius: 50px;
    background: rgba(15, 15, 16, 0.6);
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

.popular-image {
    position: relative;
    width: 100%;
    aspect-ratio: 348 / 293;
    border-radius: 8px;
    overflow: hidden;
    display: block;
}

.popular-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.swiper-slide {
    height: auto !important;
}

.popular-content {
    margin-top: 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.popular-content .popular-content-title {
    color: var(--black) !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.popular-content .popular-content-btn {
    color: var(--black);
    width: 32px;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-slider .swiper-button-next,
.popular-slider .swiper-button-prev {
    background: var(--bg-color2);
    color: var(--black);
    width: 73px !important;
    height: 46px !important;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -50px !important;
    left: 94.3% !important;
    transition: 0.5s;
}

.popular-slider .swiper-button-prev {
    margin-left: -88px;
}

.popular-slider .swiper-button-next:hover,
.popular-slider .swiper-button-prev:hover {
    background: rgb(var(--primary-color), 0.8);
    color: var(--bg-color1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

/* blog */
.blog-box {
    border-radius: 16px;
    background-color: var(--bg-color1);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-box .img-box {
    overflow: hidden;
    border-radius: 16px;
    display: flex;
}

.blog-box .img-box img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: all 0.5s ease;
    object-fit: cover;
    aspect-ratio: 401/331;
}

.blog-meta2 {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 16px;
    flex-wrap: wrap;
}

.blog-meta2 .item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: capitalize;
    position: relative;
    color: #717171;
}

.blog-meta2 .item a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--vivid-orange);
}

.blog-box .text-box .title {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 24px;
    color: var(--black);
    font-weight: 400;
    line-height: 150%;
}

/* listing */
.listing-navbar {
    position: sticky;
    top: 70px;
    background: #fff;
    z-index: 9;
}

.listing-navbar .navbar-nav {
    flex-direction: row;
    gap: 30px;
    width: max-content;
    border-bottom: 1px solid var(--border-color1);
    margin-bottom: 20px;
}

.listing-navbar .navbar-nav .nav-link {
    font-size: 22px;
    font-weight: 600;
}

.listing-navbar .nav-item.active {
    border-bottom: 2px solid rgb(var(--primary-color));
}

.listing-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 10px;
}

.listing-breadcrumb p {
    margin-bottom: 0;
}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {

    .popular-slider .swiper-button-next,
    .popular-slider .swiper-button-prev {
        left: 90.3% !important;
    }

}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
    .listing-navbar .navbar-nav {
        width: 100%;
        overflow-x: auto;
    }

    .listing-navbar .navbar-nav .nav-link {
        white-space: nowrap;
    }

    .listing-breadcrumb .breadcrumb-item {
        display: none;
    }

    .listing-breadcrumb .breadcrumb-item:last-child {
        display: block;
    }

    .listing-navbar .navbar-nav .nav-link {
        font-size: 16px;
    }

    .city-slider-image .image-link img {
        aspect-ratio: 800 / 480 !important;
    }

    .listing-city-slider .swiper-button-next,
    .listing-city-slider .swiper-button-prev {
        min-width: 30px !important;
        height: 30px !important;
    }

    .city-slider-title h2 {
        font-size: 24px;
    }

    .things-to-do-banner-image {
        height: 250px !important;
    }

    .tag-area-title {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 20px;
        margin-bottom: 20px;
    }
}

/* reward */
.reward-container {
    text-align: center;
}

.reward-title {
    margin-bottom: 30px;
    font-size: 46px;
    font-weight: 700;
}

.reward-container .listing-navbar .navbar-nav {
    border-bottom: none;
}

.reward-container .listing-navbar {
    text-align: center;
    text-align: -webkit-center;
}

/* reward */

/* reward banner */
.reward-right-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.reward-image-1 img {
    max-width: 567px;
    width: 100%;
    height: 434.225px;
    border-radius: 16px;
    margin-right: 40px;
}

.reward-image-2 {
    position: absolute;
    left: 7%;
    bottom: 0;
    z-index: 1;
}

.reward-image-2 img {
    width: 250px;
    height: auto;
}

.reward-image-2::after {
    content: '';
    width: 304.176px;
    height: 300.548px;
    border-radius: 16px 200px 0 16px;
    background: var(--border-color1);
    position: absolute;
    left: 20px;
    bottom: 0;
    z-index: -1;
}

.large-community {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    background: var(--bg);
    box-shadow: 1px 3px 12px 0 rgba(206, 204, 208, 0.30);
    width: 240px;
    height: 69.915px;
    position: absolute;
    left: 15%;
    top: 10%;
}

.large-community .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
}

.large-community h6 {
    font-size: 16px;
}

.reward-banner-content {
    display: flex;
    align-items: center;
    height: 100%;
}

.reward-banner-content h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

/* reward banner */

.works .common-title {
    max-width: 596px;
    width: 100%;
    text-align: center;
    margin: 0 auto 30px;
}

.works .common-title h2 {
    font-size: 38px;
}

.works-single {
    background: var(--bg);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 30px 0;
}

.works-single-image {
    width: 50%;
    height: 150px;
}

.works-single-image img {
    width: 100%;
    height: 100%;
}

.works-single-content {
    padding: 0 52px;
    text-align: center;
    margin-top: 10px;
}

.works-single-content h5 span {
    color: #EEEBE9;
    font-size: 26px;
    font-weight: 600;
    transition: 0.5s;
}

.works-single:hover .works-single-content h5 span {
    color: var(--accent);
}

.works-single-content p {
    margin-bottom: 0;
}

.works-btn {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.works-btn .btn-1 {
    background: var(--bg);
    border: 1px solid var(--accent);
}


/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .works-single-content {
        padding: 0 25px;
    }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
    .works {
        padding: 80px 0;
    }

    .works-single-content {
        padding: 0 15px;
    }

    .reward-title {
        margin-bottom: 20px;
        font-size: 34px;
    }

    .reward-banner-content h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .faq-content .accordion-button {
        padding: 20px 10px 20px 10px;
    }
}

/* city */
.city-slider-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.city-slider-image .image-link {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.city-slider-image .image-link img {
    width: 100%;
    aspect-ratio: 1280 / 480;
    border-radius: 16px;
}

.city-slider-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: linear-gradient(to bottom, #0000 0, #0009 75%);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.city-slider-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-info-image {
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
}

.slider-info-name {
    color: var(--bg-color1);
}

.city-slider-gallery {
    background: var(--body-color);
    padding: 4px 10px;
    border-radius: 10px;
    color: var(--bg-color1);
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.listing-city-slider .swiper-button-next,
.listing-city-slider .swiper-button-prev {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgb(var(--white), 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.listing-city-slider .swiper-pagination-bullet {
    background: rgb(var(--white), 0.8);
    opacity: 0.5;
}

.listing-city-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

/* city-slider-title */
.city-slider-title-box {
    margin-top: 30px;
}

.city-slider-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.city-slider-title h2 {
    margin-bottom: 0;
}

.save-btn {
    padding: 7px 20px;
    border-radius: 30px;
    border: 1px solid rgb(var(--black));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    cursor: pointer;
}

.save-btn i {
    font-size: 16px;
}

.tripOffcanvas .offcanvas-header,
.tripOffcanvas .offcanvas-footer {
    border-bottom: 1px solid var(--border-color2);
    padding: 16px 16px !important;
}

.trip-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}

.trip-list li a {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--border-color2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.trip-list li a:hover {
    background: rgb(var(--primary-color), 0.1);
}

.trip-list-image {
    width: 88px;
    height: 88px;
    border-radius: 7px;
}

.trip-input {
    margin-top: 40px;
}

.trip-input label {
    margin-bottom: 7px;
    font-size: 20px;
}

.trip-input .form-control {
    background-color: var(--bg-color1);
    border-radius: 9999px;
    padding: 10px 60px 10px 20px;
    height: 60px;
    box-shadow: var(--shadow2);
}

/* guidance */
.guidance-container {
    padding: 40px 30px 30px;
    border-radius: 20px;
    background: rgb(var(--primary-color), 0.1);
}

.guidance-container .guidance-input {
    position: relative;
    width: 60%;
    margin: 20px auto;
}

.guidance-container .form-control {
    width: 100%;
    padding: 30px;
}

.guidance-container .search-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgb(var(--primary-color), 0.05);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.guidance-tag {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.guidance-tag a {
    padding: 10px 20px;
    background: rgb(var(--primary-color), 0.8);
    border-radius: 30px;
    color: rgb(var(--white));
}

/* Essential City */
.essential-city .img-carousel .item {
    aspect-ratio: 6 / 4;
    overflow: hidden !important;
}

.essential-city .img-carousel .item img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
}

/* summary-card */
.summary-card {
    width: 100%;
    background-color: white;
    padding: 24px;
    border: 2px solid rgb(var(--primary-color));
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.accordion-list {
    padding-left: 20px;
}

.accordion-list li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.accordion-list li:last-child {
    margin-bottom: 0;
}

.accordion-list li a {
    text-decoration: underline;
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
    .guidance-container .guidance-input {
        width: 100%;
    }

    .guidance-container {
        padding: 40px 15px 30px;
    }
}

/* ----------------------------------------
hotel-banner
-------------------------------------------*/
.hotel-banner {
    padding: 40px 0;
}

.hotel-banner .bg-shape-layer {
    position: absolute;
    top: 65px;
    bottom: 47px;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hotel-banner-container {
    position: relative;
    width: 100%;
    padding: 100px 0;
    border-radius: 24px;
    background: linear-gradient(104deg, #d4e2ee 0%, rgb(242 255 240) 53.21%, #fff0f0 98.75%);
}

.hotel-banner .banner-content-box {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 756px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-content-box h2 {
    display: block;
    color: var(--body-color);
    font-size: 56px;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.banner-content-box p {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: var(--black-color) !important;
    margin-bottom: 32px;
}

.hotel-banner .banner-content-box .btn-2 img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-color);
}

.hotel-banner-btn-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.hotel-banner-btn-area .powerd-by {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .hotel-banner {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .hotel-banner {
        padding: 30px 0;
    }

    .banner-content-box h2 {
        font-size: 32px;
    }

    .hotel-banner-container {
        padding: 60px 0;
    }

    .hotel-banner-btn-area {
        flex-direction: column;
        gap: 30px;
    }

    .filter-area .filter-area-title {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 20px;
    }
}

.filter-area {
    padding-top: 30px;

}

.filter-area .container {
    border-bottom: 1px solid rgb(var(--primary-color), 0.05);
    margin-bottom: 50px;
    padding-bottom: 30px;
}

.filter-area-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.filter-button {
    border: 1px solid;
    overflow: hidden;
    padding: 0 20px !important;
}

#categoriesModal {
    z-index: 9999;
}

#categoriesModal .modal-dialog {
    max-width: 824px !important;
    width: 100%;
}

#categoriesModalLabel {
    font-size: 24px !important;
    padding-left: 16px;
}

#categoriesModal .modal-content {
    border-radius: 20px !important;
    border-color: var(--bg-color4) !important;
}

#categoriesModal .filter-button .btn-wrapper {
    height: 40px;
}

#categoriesModal .filter-button .btn-wrapper .btn-single {
    height: 40px;
}

.categories-modal-content {
    padding: 30px 0;
    border-bottom: 1px solid var(--bg-color4);
}

.modal-count-container {
    width: 100%;
    background-color: var(--bg-color1);
}

.categories-modal-content .count-single {
    border-bottom: none;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.count-single-text h6 {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 0;
}

.count-single-inner {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 12px;
}

.count-single-inner button {
    font-size: 14px;
    border-radius: 50%;
    border: 1px solid rgb(var(--black), 0.6);
    cursor: pointer;
    width: 32px;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-color1);
}

.amenities-list ul {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* prince range */
.sidebar-range-slider {
    width: 100%;
    text-align: left;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.sidebar-range-slider .noUi-connect {
    background: var(--vivid-orange);
}

.sidebar-range-slider p {
    margin-bottom: 0;
    margin-top: 20px;
}

.noUi-horizontal {
    height: 8px !important;
}

.noUi-horizontal .noUi-handle {
    width: 25px !important;
    height: 25px !important;
    border-radius: 50%;
    right: -13px !important;
    top: -9px !important;
}

.noUi-handle:after,
.noUi-handle:before {
    display: none !important;
}

/* prince range */

/*  */
.popular-button {
    border: 1px solid;
    overflow: hidden;
    padding: 0 20px !important;
    width: 100% !important;
    margin-top: 20px;
}

.popular-button .btn-wrapper {
    height: 45px !important;
}

.popular-button .btn-wrapper .btn-single {
    height: 45px !important;
}

.top-hotels-rat span {
    font-size: 18px;
}

.top-hotels,
.top-hotels .item,
.top-hotels .item img {
    border-radius: 10px 10px 0 0;
}

.top-hotels .item img {
    width: 100%;
    height: 200px;
}

/* things-to-do-banner */
.things-to-do-banner .hotel-banner-btn-area {
    justify-content: flex-start;
}

.things-to-do-banner .btn-1 {
    border: 1px solid var(--body-color);
}

.things-to-do-banner .banner-content-box {
    height: 100%;
    display: flex;
    align-items: center;
}

.things-to-do-banner-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.things-to-do-banner-image img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.tag-area-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tag-area-title .btn-1 .btn-wrapper {
    height: 40px;
}

.tag-area-title .btn-1 .btn-wrapper .btn-single {
    height: 40px;
}

.tour-filters-container {
    margin-top: 20px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.filter-btn {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid rgb(var(--primary-color));
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.filter-btn .icon {
    margin-right: 5px;
}

.filter-btn .count {
    color: #4b6b60;
    margin-left: 5px;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn:focus {
    background-color: #f0fff7;
    outline: none;
}

/* Restaurants*/
.restaurants-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.map-button {
    border: 1px solid var(--body-color);
}

.map-button .btn-wrapper {
    height: 40px !important;
}

.map-button .btn-wrapper .btn-single {
    height: 40px !important;
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
    .restaurants-title {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .restaurants-title h1 {
        font-size: 28px;
        line-height: 150%;
    }
}

/* map */
.map-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: none;
}

.map-view.active {
    display: block;
}

.map-close {
    border-radius: 50%;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #0000;
    font-size: 24px;
    background: var(--bg-color1);
    box-shadow: 0 2px 12px #00000026;
    transition: 0.5s;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
    line-height: 1;
}

.map-close:hover {
    background: var(--vivid-orange);
    color: var(--bg-color1);
}

.map-view-inner {
    width: 100%;
    height: 100%;
    display: flex;
}

.map-view-sidebar-wrapper {
    width: 20%;
    height: 100%;
    background: var(--bg-color1);
    box-shadow: 2px 2px 6px #00000029;
    position: relative;
    z-index: 1;
    padding: 10px;
}

.map-view-sidebar-wrapper .filter-area-title {
    padding: 16px;
    margin-bottom: 0;
}

.map-view-sidebar-wrapper .filter-button .btn-wrapper,
.map-view-sidebar-wrapper .filter-button .btn-wrapper .btn-single {
    height: 40px;
}

.map-view-sidebar {
    padding: 16px;
    overflow-y: auto;
    height: 100%;
}

.map-view .listing-row,
.map-view-sidebar .product-row {
    flex-direction: column;

}

.map-view .listing-row .product-column {
    width: 100%;
}

.sidebar-product .product-box2 {
    border: 1px solid var(--bg-color4);
    border-radius: 10px;
}

.product-box5.product-box2 {
    height: auto;
}

.sidebar-product .product-box2 .img-box {
    aspect-ratio: 3/2;
    overflow: hidden;
    border-radius: 10px;
}

.sidebar-product .text-box {
    padding: 0 12px 16px;
}

.map-view-map {
    width: 80%;
    height: 100vh;
}

.map-view-map .map-section {
    width: 100%;
    height: 100%;
}

.map-view-map .map-section #preview-map {
    width: 100%;
    height: 100% !important;
}

.map-section .gm-style-iw-chr {
    overflow: visible;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 9;
}

.map-section .gm-style-iw-chr button:focus-visible,
.map-section .gm-style-iw-chr button:focus {
    border: none !important;
    outline: none !important;
}

.map-section .add-remove-btn {
    display: none;
}

.map-section .gm-style .gm-style-iw-d {
    padding: 11px 20px 0 0 !important;
}

.map-section .map-product-box .img-box img {
    margin-bottom: 0 !important;
}

/* Large screen  */
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
    .map-view-sidebar-wrapper {
        width: 25%;
    }
}

/* Medium screen  */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .nice-select .list {
        min-width: max-content;
    }

    .map-view-sidebar-wrapper {
        width: 30%;
    }
}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .map-view-sidebar-wrapper {
        width: 40%;
        padding: 0;
    }

    .nice-select .list {
        min-width: max-content;
    }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
    .map-view-inner {
        flex-direction: column-reverse;
    }

    .map-view-map {
        width: 100%;
        min-height: 250px;
    }

    .map-close {
        height: 40px;
        min-width: 40px;
        font-size: 20px;
    }

    .map-view-sidebar-wrapper {
        width: 100%;
        height: 315px;
        padding: 0;
    }

    .nice-select .list {
        min-width: max-content;
    }

    .map-view .listing-row,
    .map-view .product-row {
        margin-top: 0 !important;
    }

    .map-view-sidebar {
        padding-top: 0;
    }

    .modal-footer {
        padding: 16px 15px;
    }
}

/* map */

/* sidebar */
.shop-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.shop-filter h4,
.top-filter-title h4 {
    font-size: 32px;
    font-weight: 400;
    line-height: 42px;
}

.shop-filter h4 i,
.top-filter-title h4 i {
    font-size: 18px;
    margin-left: 5px;
    margin-top: -5px;
}

.shop-filter h6 {
    font-size: 20px;
}

.filter-icon a {
    color: var(--black-color);
}

.clear-all {
    cursor: pointer;
}

.clear-all a {
    color: #6B6B6B;
    font-size: 18px;
}

.clear-all a i {
    margin-left: 5px;
}

/* accordion */
.accordion {
    margin-top: 20px;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 0;
}

.accordion-button:not(.collapsed) {
    color: var(--black-color);
    background-color: transparent;
    font-size: 18px;
    font-weight: 400;
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent;
    border-top: 1px solid #E0E0E0;
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button::after {
    background-size: 16px;
}

.itineray-accordion .accordion-button {
    border-top: none;
}

.accordion-collapse {
    border: none;
}

.accordion-button {
    border: none;
    border-top: 1px solid #E0E0E0;
    padding: 1rem 0;
    font-size: 18px;
    font-weight: 400;
    width: 100% !important;
}

.accordion-body {
    padding: 0px 0 16px 0;
}

/* accordion */

.price-label {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: var(--bg-color4);
    margin-bottom: 8px;
}

.price-input {
    border-radius: 4px;
    border: 1px solid var(--bg-color4);
    padding: 11px 12px;
    width: 100%;
    margin-bottom: 12px;
    color: rgb(var(--primary-color));
}

.price-input::placeholder {
    color: rgb(var(--primary-color));
    font-size: 16px;
    line-height: 20px;
}

label.custom-checkbox {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
}

.custom-checkbox input:checked~.checkmark {
    background-color: rgb(var(--primary-color)) !important;
}

.custom-checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 10px;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom-checkbox .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.restaurants .accordion-body {
    padding: 16px;
}

.restaurants .offcanvas .accordion-button {
    font-size: 18px;
    padding: 16px;
    border-top: none;
    font-weight: 400;
}

.restaurants .accordion-button:not(.collapsed) {
    background-color: var(--bg-color2);
}

/* shorting */
.sorting-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0 20px;
}

.sorting-container .btn-1 {
    border: 1px solid var(--body-color);
}

.sorting-container .btn-1 .btn-wrapper,
.sorting-container .btn-1 .btn-wrapper .btn-single {
    height: 40px;
}

.sorting-buttton h6 {
    margin-bottom: 0;
}

.sorting h6 {
    margin-bottom: 0;
    margin-right: 10px;
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {

    .sorting-buttton,
    .sorting h6 {
        display: none;
    }

    .sorting .nice-select .list {
        left: -17%;
        min-width: 150px;
    }
}

/* pagination */
.paigination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.paigination ul li a {
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
    color: rgb(var(--primary-color));
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E0E0E0;
}

.paigination ul li a:hover {
    background: rgb(var(--primary-color));
    color: var(--bg-color1);
}

.paigination ul li a.active {
    background: rgb(var(--primary-color));
    color: var(--bg-color1);
}

.paigination ul li a i {
    font-weight: 700;
    font-size: 14px;
}

.paigination .pagination-dot p {
    font-size: 42px;
    font-weight: 700;
    line-height: 42px;
    color: #E0E0E0 !important;
    margin-top: -10px;
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
    .paigination ul li a {
        font-size: 14px;
        width: 26px;
        height: 26px;
    }
}

/* pagination */

/* conversation */
.chat-btn {
    position: fixed;
    right: 3%;
    bottom: 5%;
    background-color: rgb(var(--primary-color)) !important;
    color: var(--bg-color1) !important;
    z-index: 9;
}

.btn-1.chat-btn:hover {
    color: var(--bg-color1) !important;
}

#offcanvasChat {
    border-radius: 16px;
    overflow: hidden;
    max-width: 520px;
    width: 100%;
    /* background:
      radial-gradient(circle at 10% 10%, rgba(47,161,99,0.03), transparent 20%),
      linear-gradient(180deg,transparent,#fbfffc 120%); */
    box-shadow: 0 12px 30px rgba(10, 20, 30, 0.12);
}

#offcanvasChat.show:not(.hiding),
#offcanvasChat.showing {
    top: 20px;
    right: 20px;
    bottom: 20px;
}

#offcanvasChat .offcanvas-header {
    border-bottom: 1px solid #eef3ef;
    /* background:linear-gradient(90deg, rgba(47,161,99,0.06), transparent); */
    background: linear-gradient(360deg, #ffffff, rgb(77 164 78 / 73%));
}

#offcanvasChat .offcanvas-body {
    overflow-y: hidden;
    padding-top: 0;
}

.app {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding-bottom: 188px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2fa163, #1b8f5e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-color1);
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(47, 161, 99, 0.15);
}

.title {
    font-weight: 700
}

.subtitle {
    font-size: 14px;
    color: var(--muted)
}

/* chat area */
.chat {
    overflow: auto;
    flex: 1;
}

.bubble {
    max-width: max-content;
    margin: 8px 0;
    padding: 12px 14px;
    border-radius: 12px;
    line-height: 1.35;
    box-shadow: 0 6px 18px rgba(10, 20, 30, 0.04);
    position: relative;
    transform-origin: left top;
}

.assistant {
    background: var(--bubble);
    align-self: flex-start;
    border-top-left-radius: 0;
    max-width: 93%;
    width: max-content;
}

.user {
    background: rgb(var(--primary-color));
    color: var(--bg-color1);
    align-self: flex-end;
    border-bottom-right-radius: 0;
    max-width: 93%;
    width: max-content;
    margin-left: auto;
}

.assistant .title-small {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 6px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.assistant .small {
    font-size: 14px;
    color: var(--dark);
}

/* suggestion chips */
.chips {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.chip {
    padding: 8px 17px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e6efe8;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 6px 16px rgba(40, 80, 60, 0.04);
}

.chip:hover {
    transform: translateY(-4px);
    transition: all .18s ease;
}

/* typing effect */
.typing {
    display: inline-flex;
    align-items: center;
    height: 100%;
    width: 40px;
    vertical-align: middle
}

.typing .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--muted);
    margin: 0 3px;
    opacity: 0;
    animation: blink 1.2s infinite;
}

.bubble:has(.typing) {
    padding: 2px 14px !important;
}


.typing .dot:nth-child(2) {
    animation-delay: 0.1s
}

.typing .dot:nth-child(3) {
    animation-delay: .2s
}

@keyframes blink {
    0% {
        opacity: 0
    }

    30% {
        opacity: .9
    }

    60% {
        opacity: .3
    }

    100% {
        opacity: 0
    }
}

/* controls */
.controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    border-top: 1px solid #eef3ef;
    display: flex;
    gap: 8px;
    align-items: center;
    background: linear-gradient(180deg, #ffffff, rgb(77 164 78 / 73%));
}

.input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid #e1ebe2;
    background: #fff;
    font-size: 14px;
}

.btn {
    border-radius: 999px;
    padding: 10px 14px;
    color: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(47, 161, 99, 0.14)
}

.btn:active {
    transform: scale(.99)
}

.btn-primary {
    background: rgb(var(--primary-color));
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.btn-primary:hover {
    background: rgb(var(--primary-color));
    box-shadow: 2px 2px 22px rgba(47, 161, 99, 0.25);
}

.btn-primary {
    --bs-btn-bg: rgb(var(--primary-color));
    --bs-btn-border-color: rgb(var(--primary-color));
    --bs-btn-hover-bg: rgb(var(--primary-color));
    --bs-btn-hover-border-color: rgb(var(--primary-color));
    --bs-btn-active-bg: rgb(var(--primary-color));
    --bs-btn-active-border-color: rgb(var(--primary-color));

    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    box-shadow: 0px 15px 22px rgba(var(--primary-color), 0.3);
    transform: none;
    /* remove bootstrap scale */
}

/* small badges / music */
.badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 8px;
    font-weight: 700;
    color: var(--accent);
}

.music-emoji {
    transform: translateY(-2px);
}

/* product row mock */
.map-view .listing-row,
.product-row {
    display: flex;
    margin-top: 12px;
    overflow: auto;
    padding-bottom: 6px;
}

.card {
    min-width: 210px;
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 8px 24px rgba(12, 20, 15, 0.04);
    border: 1px solid #f0f6f0;
}

.card h4 {
    margin: 6px 0 4px;
    font-size: 15px
}

.card p {
    margin: 0;
    font-size: 14px;
    color: var(--muted)
}

/* floating icon */
.float-icon {
    position: absolute;
    right: 18px;
    top: 60px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff, #effff2);
    box-shadow: 0 8px 26px rgba(20, 80, 40, 0.06);
}

.float-icon svg {
    width: 22px;
    height: 22px;
    color: var(--accent)
}

/* map/list toggle */
.toggle {
    display: inline-flex;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid #e6efe8;
    background: #fff;
}

.toggle button {
    padding: 7px 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    background: transparent
}

.toggle .active {
    background: var(--accent);
    color: #fff;
}

/* confetti micro */
.confetti {
    position: relative;
    height: 0;
    overflow: visible;
    pointer-events: none;
}

.confetti span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    opacity: 0;
    animation: fall 900ms ease forwards;
}

@keyframes fall {
    0% {
        transform: translateY(-12px) rotate(0) scale(0.7);
        opacity: 1
    }

    100% {
        transform: translateY(80px) rotate(360deg) translateX(40px);
        opacity: 0
    }
}

/* responsive */
@media (max-width: 420px) {
    .app {
        margin: 12px;
    }
}

/* ---- conversation ---- */

.chat-mapList .nav-tabs {
    margin-bottom: 15px;
    border: 2px solid rgb(var(--white));
    border-radius: 60px;
    width: max-content;
    padding: 2px 2px 3px;
    overflow: hidden;
}

.chat-mapList .nav-link {
    display: block;
    padding: 10px 30px;
    border-radius: 29px !important;
    border: none !important;
    color: var(--body-color) !important;
    font-weight: 600;
    font-size: 18px;
}

.chat-map-box {
    position: relative;
}

.chat-map {
    min-width: 420px;
    max-width: 420px;
    height: 500px;
    border-radius: 8px;
    border: 2px solid rgb(var(--white));
    overflow: hidden;
}

.chat-map iframe {
    width: 100%;
    height: 100%;
}

.chat-map-slider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
}

.chat-map-slider .product-box3 .img-box {
    width: 85px;
    min-width: 85px;
    height: 85px;
}

.chat-map-slider .product-box3 {
    padding: 5px 10px 5px 5px;

}

.bubble.assistant .message-content {
    text-align: start;
    overflow-wrap: break-word;
}

.bubble.user .message-content {
    text-align: end;
}


.chat-map-slider .product-box5-img-box {
    position: relative;
    display: flex;
    gap: 8px;
}

.message-content ol {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
}

.message-content ol li {
    list-style-type: decimal;
}

.message-content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 20px;
}

.message-content ul li {
    list-style-type: circle;
}

.message-content:has(h5) {
    padding: 10px 10px 10px 0;
}

.inner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.chat-map-slider .next-btn,
.chat-map-slider .prev-btn {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--primary-color));
    z-index: 1;
    color: #FFFFFF;
    transition: 0.5s;
    cursor: pointer;
}

.chat-map-slider .next-btn:hover,
.chat-map-slider .prev-btn:hover {
    background-color: rgb(var(--primary-color));
}

.chat-map-slider .next-btn {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.chat-map-slider .prev-btn {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.chat-map-slider .product-box3 {
    flex: 1;
    white-space: nowrap;
    display: flex;
}

.chat-list-view ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chat-list-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.chat-list-image {
    max-width: 70px;
    width: 100%;
    height: 70px;
}

.chat-list-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.chat-list-item .product-box5-text-box {
    text-align: left;
}

.chat-list-item .btn-1 {
    height: max-content;
    padding: 0 20px;
}

.chat-list-item .btn-1 .btn-wrapper {
    height: 40px;
}

.chat-list-item .btn-1 .btn-wrapper .btn-single {
    height: 40px;
}

@media only screen and (max-width: 767px) {
    #offcanvasChat {
        max-width: 288px;
    }

    #offcanvasChat.show:not(.hiding),
    #offcanvasChat.showing {
        top: 16px;
        right: 16px;
        bottom: 20px;
    }

    #offcanvasChat .offcanvas-body {
        padding: 0;
    }

    .chat-map {
        min-width: 100%;
        height: 400px;
    }

    .assistant .title-small {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* --------------- dashboard Banner------------ */
.dashboard-banner {
    padding: 120px 0;
    height: 400px;
}

.banner-input-image {
    width: 120px;
    height: 120px;
    border: 2px dashed var(--bg-color4);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    background: var(--bg-color1);
    position: relative;
    margin: 0 auto;
}

.banner-input-image:hover {
    border-color: var(--accent);
    background: rgb(var(--primary-color), 0.05);
}

.banner-input-image input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.banner-input-image i {
    font-size: 40px;
    color: var(--accent);
}

.banner-input-image::after {
    content: "Upload Image";
    font-size: 14px;
    color: #666;
}

/* --------------- dashboard banner ------------ */

/* --------------- dashboard ------------ */
/* ---------- base ---------- */
section.deshboard.pt-0 {
    background: var(--bg);
}

.profile-card {
    background: var(--bg-color1);
    border-radius: 8px;
    top: -50px;
    position: relative;
    z-index: 2;
}

/* avatar & stats row */
.profile-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 18px 22px
}

.avatar-wrap {
    width: 110px;
    flex: 0 0 110px;
    position: relative
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 999px;
    border: 1px solid var(--bg-color4);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(10, 10, 10, 0.06);
    background: #ddd url('https://images.unsplash.com/photo-1487017159836-4e23ece2e4cf?q=80&w=600&auto=format&fit=crop&ixlib=rb-4.0.3&s=') center/cover no-repeat;
}

.stats {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.stats-inner {
    display: flex;
    align-items: center;
    column-gap: 50px;
    row-gap: 20px;
    flex-wrap: wrap
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.stat .label {
    color: var(--body-color);
    font-weight: 700;
    font-size: 20px;
}

.stat .number {
    color: var(--bs-border-color);
    font-size: 24px;
    font-weight: 600;
    margin-top: 6px
}

/* top-right edit menu */
.top-actions {
    position: absolute;
    right: 18px;
    top: 14px
}

.stats-edit-btn {
    background: #fff;
    border: 1px solid #ebebeb;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.menu {
    position: relative;
    display: inline-block
}

.menu .menu-list {
    position: absolute;
    right: 0;
    top: 46px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    display: none;
    z-index: 40
}

.menu .menu-list a {
    display: block;
    padding: 11px 14px;
    color: var(--body-color);
    text-decoration: none;
    border-bottom: 1px solid #f4f4f4;
}

.menu .menu-list a:last-child {
    border-bottom: 0;
}

.menu .menu-list a:hover {
    background: #fbfbfb;
}

/* nav tabs */
.deshboard-nav .nav-tabs {
    display: flex;
    gap: 25px;
    padding: 21px 22px 0 22px;
    border-top: 1px solid var(--bg-color4);
    border-bottom: none;
}

.deshboard-nav .nav-tabs .nav-link:focus,
.deshboard-nav .nav-tabs .nav-link:hover {
    border-color: transparent;
    border-bottom: 1px solid var(--accent);
}

.deshboard-nav .nav-tabs .nav-item.show .nav-link,
.deshboard-nav .nav-tabs .nav-link.active {
    color: var(--dark);
    border-color: transparent;
    border-bottom: 1px solid var(--accent);
}

.deshboard-nav .nav-tabs .nav-link {
    color: var(--body-color);
    padding: 0;
    padding-bottom: 10px;
}

/* ---------- main layout ---------- */
.main-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    margin-top: -20px
}

/* left cards */
.card {
    background: var(--card);
    padding: 18px;
    border-radius: 6px;
    border: 1px solid var(--bg-color4);
}

.achievements .title {
    font-weight: 800;
    margin-bottom: 10px
}

.achievement-item {
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--bg-color4);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px
}

.achievement-item .icon {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: linear-gradient(180deg, #fff, #f6f6f6);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bg-color4);
}

.achievements-button {
    width: 100% !important;
    border: 1px solid var(--bg-color4);
}

.achievements-button .btn-wrapper,
.achievements-button .btn-wrapper .btn-single {
    height: 45px !important;
}

.intro .title {
    color: var(--green);
    font-weight: 700;
    margin-bottom: 10px;
}

.intro ul {
    padding-left: 14px;
    color: var(--muted);
    line-height: 1.8;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* right content */
.forum-box {
    background: var(--bg-color1);
    padding: 28px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid var(--bg-color4);
}

.forum-box h2 {
    color: var(--green-2);
    margin: 0;
    font-size: 20px;
}

.forum-box p {
    color: var(--muted);
    margin-top: 10px;
}

.forum-box p a {
    color: var(--accent);
}

/* subtle page background panels to match screenshot big light area */
.page-bg {
    border-radius: 6px;
}

/* small screen adjustments */
@media (max-width: 980px) {
    .main-grid {
        grid-template-columns: 1fr;
        padding-bottom: 40px
    }

    .avatar {
        width: 78px;
        height: 78px
    }

    .nav-tabs {
        overflow: auto
    }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
    .profile-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-meta .avatar-wrap {
        flex: 0 0 70px;
    }

    .deshboard-nav .nav-tabs {
        column-gap: 25px;
        row-gap: 10px;
        padding: 21px 22px 2px 22px;
    }

    .deshboard-gria-left {
        order: 2;
    }

    .deshboard-grid-right {
        order: 1;
    }
}


/* small helpers */
.muted {
    color: var(--muted);
    font-size: 13px;
}

.spacer {
    height: 18px;
}

/* --------------- dashboard ------------ */

/* --------------- profile ------------ */
/* Left column - avatar */
.profile-left {
    width: 175px;
    float: left;
    margin-right: 36px;
    text-align: center;
}

.profile-left .avatar-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--bg-color1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    position: relative;
    margin: 0 auto
}

.profile-left .avatar {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.profile-left .avatar-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--bg-color1);
    font-weight: 600;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.45) 100%);
    opacity: 0;
    transition: opacity .18s;
}

.profile-left .avatar-wrap:hover .avatar-overlay {
    opacity: 1;
    cursor: pointer
}

.profile-left .avatar-overlay i {
    background: rgba(255, 255, 255, 0.12);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.change-text {
    font-size: 13px
}

.change-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

/* hidden file input label helper */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

/* Form */
.profile-form {
    overflow: hidden
}

.form-row {
    margin-bottom: 20px
}

.form-row label {
    display: block;
    font-size: 18px;
    color: var(--body-color);
    margin-bottom: 8px;
}

.input,
textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid var(--bg-color4);
    background: var(--bg-color1);
    font-size: 16px;
    box-shadow: none;
    outline: none;
}

.input:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(15, 107, 64, 0.06)
}

.input.prefix {
    padding-left: 40px
}

.input-box {
    position: relative;
}

.input-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

/* search icon inside input */
.input-icon {
    position: relative
}

.input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
}

textarea {
    min-height: 88px;
    max-height: 160px;
    resize: vertical;
}

.char-count {
    font-size: 14px;
    color: var(--muted);
    text-align: right;
    margin-top: 6px;
}

.use-terms {
    color: var(--muted);
    font-size: 16px;
    margin-top: 6px;
}

.use-terms a {
    color: var(--accent);
}

.actions {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
    margin-top: 22px;
    padding-bottom: 20px;
}

.actions .btn-1 {
    width: max-content !important;
}

.actions .btn-1.save {
    background: var(--body-color);
    color: var(--bg-color1);
}

.actions .btn-1.save:hover {
    color: var(--bg-color1) !important;
}

/* Small responsive adjustments */
@media (max-width: 760px) {
    .profile-left {
        float: none;
        width: 100%;
        margin: 0 0 18px 0;
    }

    .contact-message-area {
        padding: 30px 15px;
    }
}

/* --------------- profile ------------ */

/*----------------------------------------------
New
----------------------------------------------*/

/* MackBook */
@media only screen and (max-width: 1440px) {}

/* Large screen  */
@media only screen and (min-width: 1200px) and (max-width: 1319px) {}

/* Medium screen  */
@media only screen and (min-width: 992px) and (max-width: 1199px) {}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {

    .popular-slider .swiper-button-next,
    .popular-slider .swiper-button-prev {
        left: 25.3% !important;
    }

    .popular-slider .swiper-button-next,
    .popular-slider .swiper-button-prev {
        background: var(--bg-color4);
        color: var(--black);
        width: 48px !important;
        height: 35px !important;
        top: 32px !important;
    }

    .popular-slider .swiper-button-prev {
        margin-left: -60px;
    }

    .dashboard-banner {
        padding: 80px 0;
        height: 200px;
    }

    .profile-meta .stats {
        flex-direction: column;
        gap: 30px;
    }

    .profile-meta .stat {
        align-items: center;
        text-align: center;
    }

    .main-temp-row {
        flex-direction: column;
        gap: 10px;
    }

    .when-visit .swiper-button-next,
    .when-visit .swiper-button-prev {
        left: 79.3% !important;
    }

    .when-visit .swiper-button-prev {
        margin-left: -54px;
    }
}


/* btn */
.btn-1 {
    background-color: #fff;
    width: max-content;
    color: var(--black);
    padding: 0 32px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    display: inline-flex;
    justify-content: center;
    text-transform: capitalize;
    gap: 5px;
    font-weight: 400;
    border-radius: 9999px;
}

.btn-1:hover {
    color: var(--white-color) !important;
}

.btn-1:hover .btn-wrapper .main-text {
    transform: translateY(-130%) translateZ(0);
}

.btn-1:hover .btn-wrapper .hover-text {
    transform: translateY(0) translateZ(0);
}

.btn-1 .btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    pointer-events: none;
    gap: 8px;
    height: 52px;
}

.btn-1 .btn-wrapper .btn-single {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    pointer-events: none;
    gap: 8px;
    height: 52px;
}

.btn-1 .btn-wrapper .main-text {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
}

.btn-1 .btn-wrapper .hover-text {
    position: absolute;
    left: 0;
    transform: translateY(130%) translateZ(0);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.5s;
}

/* btn */

.newsletter-form .form-control {
    padding: 10px 50px 10px 20px;
}

.trip_day_list li {
    margin-bottom: 10px;
    font-size: 18px;
}

.trip_day_list li:last-child {
    margin-bottom: 0;
}

.trip_day_list li span {
    margin-right: 5px;
    font-size: 18px;
    align-items: center;
}

.editable {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 2px 6px;
    border-radius: 4px;
    width: auto;
    min-width: 80px;
    font-size: 0.95rem;
}

.editable-placeholder {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.edit-icon {
    font-size: 12px;
    color: rgb(var(--primary-color));
}

.editable-placeholder:hover .edit-icon {
    display: inline;
}

.editable-input {
    display: inline-block;
    min-width: 100px;
    padding: 2px 6px;
    font-size: 0.95rem;
    border-radius: 4px;
    border: 1px solid #ccc;
}


.user-panel-container {
    padding-top: 50px;
}

.planning-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.planning-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.planning-buttons a,
.planning-buttons button {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.planning-buttons a:hover {
    color: #FFFFFF;
}

.build-ai {
    background-color: var(--body-color);
    color: var(--bg-color1);
}

.create-new {
    background-color: var(--bg-color1);
    color: var(--body-color);
    border: 1px solid var(--border-color1) !important;
}

.create-new:hover {
    color: var(--body-color) !important;
}

.current-trips-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.trips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.trip-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: var(--bg-color1);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow1);
    position: relative;
}

.status-tag {
    position: absolute;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    background-color: var(--bg-color1);
    padding: 3px 10px 3px 0;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--text-light);
    border: 1px solid var(--border-color1);
}

.status-tag .status-icon {
    padding-left: 20px;
    position: relative;
}

.upcoming .status-icon::before {
    color: #f1c40f;
}

.completed .status-icon::before {
    color: rgb(var(--primary-color));
}

.ongoing .status-icon::before {
    color: #000;
}

.status-icon::before {
    content: "•";
    color: rgb(var(--primary-color));
    font-size: 2.5rem;
    line-height: 1;
    position: absolute;
    left: 5px;
    top: -6px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: var(--bg-color1);
    min-width: 160px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.dropdown-content a {
    color: #333;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
}

.dropdown-content a:hover {
    background-color: var(--border-color1);
}

.dropdown-content.show {
    display: block;
}

.dropdown-content.fixed {
    position: fixed !important;
    min-width: 160px !important;
}

.trip-header {
    display: flex;
    align-items: center;
    margin-top: 5px;
    justify-content: space-between;
}

.trip-header .trip-menu {
    padding: 10px 13px;
}

.trip-header .trip-menu:hover {
    color: var(--primary-color);
    background-color: var(--border-color1);
    border-radius: 50%;
}

.trip-header .left-side {
    display: flex;
    align-items: center;
}

.trip-header .icon-plane,
.trip-header .icon-boat {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--soft-blue);
}

.trip-header .icon-mountain {
    font-size: 20px;
    font-weight: bold;
    padding: 0;
    max-width: 40px;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-right: 15px;
    color: var(--bg-color1);
}

.icon-mountain.green {
    background-color: rgb(var(--primary-color));
}

.icon-mountain.purple {
    background-color: var(--accent);
}

.trip-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.trip-dates {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-left: 50px;
    margin-top: 5px;
    margin-bottom: 25px;
}

.trip-details {
    display: flex;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color1);
    margin-bottom: 25px;
}

.trip-details>div {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: bold;
}

.detail-value {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--text-dark);
}

.detail-value.blue {
    color: var(--soft-blue);
}

.detail-value.orange {
    color: var(--orange);
}

.detail-value.green {
    color: rgb(var(--primary-color))
}

.detail-value.archived {
    font-size: 1rem;
}

.manage-button,
.view-summary-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

.manage-button {
    background-color: rgb(var(--primary-color));
    color: var(--bg-color1);
}

.manage-button.purple-bg {
    background-color: var(--orange);
}

.view-summary-button {
    background-color: var(--bg-color1);
    color: rgb(var(--primary-color));
    border: 2px solid rgb(var(--primary-color));
}

.manage-button:hover,
.view-summary-button:hover {
    opacity: 0.9;
}

@media (max-width: 650px) {
    .trip-card {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .dashboard-container {
        padding: 0;
        padding-top: 30px;
    }

    .forecast-card {
        padding: 10px 10px !important;
    }

    .planning-buttons {
        flex-direction: column;
    }

    .trip-header .icon-mountain {
        display: none;
    }

    .trip-card {
        padding: 16px;
    }

    .trip-header {
        align-items: center;
    }

    .trip-header h3 {
        font-size: 18px;
        font-weight: 500;
    }

    .preview-header .preview-info {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 !important;
        padding-top: 15px !important;
    }

    .trip-container .day-plan-card {
        padding: 16px;
    }

    .packages-container .packages-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    #homeListingsGrid {
        grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)) !important;
    }

    .welcome {
        padding: 1rem !important;
    }

    .welcome h1 {
        font-size: 1.7rem !important;
    }
}


.ai_generated .btn-white {
    padding: 6px 30px;
}


/* new one */
#offcanvasChat .offcanvas-header {
    border-bottom: 1px solid var(--bg-color4);
    background: var(--bg-color1);
}

#offcanvasChat .btn-close {
    color: #000;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

#offcanvasChat .controls {
    padding: 12px;
    border-top: 1px solid transparent;
    background: var(--bg);
}

.controls .btn {
    background: var(--bg-color1);
    color: var(--body-color);
    position: absolute;
    right: 19px;
}

.chat {
    padding: 0 10px;
}

#offcanvasChat .controls .input,
textarea {
    padding: 16px;
    border-radius: 30px;
}

#offcanvasChat .offcanvas-body {
    padding-right: 0;
    background: var(--bg);
}

.assistant {
    background: var(--bs-gray-200);
}

.bubble.user {
    background: var(--body-color);
}

.controls .btn {
    background: var(--bg-color1);
    color: var(--body-color);
}

.controls .btn:hover {
    background: var(--accent);
    color: var(--bg-color1);
}

#chat::-webkit-scrollbar-thumb {
    background-color: var(--body-color);
}

.chat-btn-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-btn-box button {
    color: var(--body-color);
    background: var(--bg);
    line-height: 1;
    padding: 9px 10px;
    border-radius: 50%;
    transition: 0.5s;
}

.chat-btn-box button:hover {
    background-color: var(--accent);
    color: var(--bg-color1);
}


/*  */
.offcanvasChat-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

#offcanvasHostory {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.offcanvas-sessions {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 100%;
    background-color: var(--bg-color1);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1050;
    border-radius: 14px;
}

.offcanvas-sessions.is-open {
    transform: translateX(0);
}

#offcanvasHostory .offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--bg-color4);
    position: sticky;
    top: 0;
    background-color: var(--bg-color1);
    z-index: 10;
}

#offcanvasHostory .offcanvas-header h2 {
    font-size: 1.1em;
    font-weight: 500;
    margin: 0;
}

#offcanvasHostory .close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--body-color);
    padding: 0;
    line-height: 1;
}

.offcanvas-start-session {
    padding: 16px 20px;
    border-bottom: 1px solid var(--bg-color4);
}

.offcanvas-start-session button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 12px;
    background-color: var(--bg-color1);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.offcanvas-start-session button:hover {
    background-color: var(--bg-color4);
}

.plus-icon {
    font-size: 1.2em;
    margin-right: 8px;
}

.sessions-list {
    padding-bottom: 15px;
    height: 83%;
    overflow-y: auto;
}

.session-group {
    padding: 0 0 10px 0;
}

.session-date-title {
    font-size: 0.9em;
    font-weight: 700;
    color: #757575;
    text-transform: uppercase;
    margin: 15px 20px 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--bg-color4);
}

.session-item-text {
    font-size: 1em;
    padding: 10px 20px;
    margin: 0;
    cursor: pointer;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.2s;
}

.session-item-text:hover {
    background-color: var(--bg-color2);
}

.session-item {
    display: flex;

    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: relative;
}

.session-item .session-item-text {
    flex-grow: 1;
    padding-right: 50px;
}

.delete-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--vivid-orange);
    color: var(--bg-color1);
    border: none;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
}

.session-item:hover .delete-btn {
    opacity: 1;
    background-color: var(--accent);
}

.trash-icon {
    font-size: 1em;
}

.map-view .listing-row,
.product-row {
    gap: 10px;
}


.dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.dots-container .dot {
    height: 8px;
    width: 8px;
    margin-right: 10px;
    border-radius: 10px;
    background-color: rgb(var(--primary-color)) !important;
    animation: pulse 2s infinite ease-in-out;
}

.dots-container .dot:last-child {
    margin-right: 0;
}

.dots-container .dot:nth-child(1) {
    animation-delay: -0.3s;
}

.dots-container .dot:nth-child(2) {
    animation-delay: -0.1s;
}

.dots-container .dot:nth-child(3) {
    animation-delay: 0.1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        background-color: rgb(var(--primary-color));
        box-shadow: 0 0 0 0 rgba(var(--primary-color), 0.7);
    }

    50% {
        transform: scale(1);
        background-color: #6793fb;
        box-shadow: 0 0 0 10px rgba(var(--primary-color), 0);
    }

    100% {
        transform: scale(0.8);
        background-color: #b3d4fc;
        box-shadow: 0 0 0 0 rgba(var(--primary-color), 0.7);
    }
}

#chat {
    overscroll-behavior: contain;
    overflow-y: auto;
    height: 74.5vh;
}


.biGQs._P.ezezH {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.share-trip-modal .input-group {
    height: 55px;
    border-radius: 8px;
}

.share-trip-modal .form-control {
    height: 100% !important;
}

.share-trip-modal .input-group-text {
    padding: .375rem 1rem;
    font-size: 18px;
    font-weight: 500;
    background-color: rgb(var(--primary-color)) !important;
    color: rgb(var(--white));
}


.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.packages-container {
    background: var(--card);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow1);
}

.packages-container .section-header {
    font-size: 1.2em;
    font-weight: 600;
    color: rgb(var(--heading-color));
    margin-bottom: 25px;
}

.packages-container .packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.packages-container .package {
    background: var(--bg);
    border: 2px solid var(--border-color1);
    border-radius: 12px;
    padding: 25px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.packages-container .package:hover {
    border-color: rgb(var(--primary-color));
    box-shadow: 0 8px 24px rgba(99, 171, 69, 0.15);
    transform: translateY(-2px);
}

.packages-container .package.selected {
    border-color: rgb(var(--primary-color));
    background: var(--bg-color2);
    box-shadow: 0 8px 24px rgba(99, 171, 69, 0.2);
}

.packages-container .package.popular::before {
    content: 'Popular';
    position: absolute;
    top: -10px;
    right: 15px;
    background: rgb(var(--primary-color));
    color: white;
    font-size: 0.7em;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
}

.packages-container .package-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.packages-container .package-icon {
    font-size: 2em;
}

.packages-container .package-icon img {
    width: 35px;
    height: 35px;
}

.packages-container .package-info h3 {
    font-size: 1.4em;
    font-weight: 700;
    color: rgb(var(--primary-color));
    line-height: 1;
}

.packages-container .package-info p {
    font-size: 0.85em;
    color: var(--muted);
}

.packages-container .package-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color1);
}

.packages-container .package-price {
    font-size: 1.8em;
    font-weight: 700;
    color: rgb(var(--heading-color));
}

.packages-container .package-rate {
    font-size: 0.85em;
    color: var(--muted);
}

.packages-container .custom-amount {
    border-top: 2px dashed var(--border-color1);
    padding-top: 25px;
}

.custom-amount h3 {
    font-size: 1em;
    font-weight: 600;
    color: rgb(var(--heading-color));
    margin-bottom: 15px;
}

.custom-amount .input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color1);
    border-radius: 10px;
    font-size: 1em;
    font-family: var(--body-font);
    transition: var(--transition);
}

.input-wrapper input:focus {
    outline: none;
    border-color: rgb(var(--primary-color));
    box-shadow: 0 0 0 3px rgba(99, 171, 69, 0.1);
}

.input-hint {
    font-size: 0.8em;
    color: var(--muted);
    margin-top: 6px;
}

.checkout-panel {
    background: var(--card);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow1);
    position: sticky;
    top: 30px;
    height: fit-content;
}

.checkout-panel h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: rgb(var(--heading-color));
    margin-bottom: 25px;
}

.checkout-panel .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.95em;
}

.checkout-panel .summary-row.total {
    border-top: 2px solid var(--border-color1);
    margin-top: 15px;
    padding-top: 20px;
    font-size: 1.1em;
    font-weight: 600;
}

.checkout-panel .summary-label {
    color: var(--muted);
}

.checkout-panel .summary-value {
    color: rgb(var(--heading-color));
    font-weight: 600;
}

.checkout-panel .summary-value.highlight {
    color: rgb(var(--primary-color));
    font-size: 1.8em;
    font-weight: 700;
}

.checkout-panel .btn-purchase {
    width: 100%;
    padding: 16px;
    background: rgb(var(--primary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1em;
    font-weight: 600;
    font-family: var(--body-font);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
}

.checkout-panel .btn-purchase:hover:not(:disabled) {
    background: rgb(var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 171, 69, 0.3);
}

.checkout-panel .btn-purchase:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.history-section {
    background: var(--card);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow1);
}

.history-section .history-section h2 {
    font-size: 1.4em;
    font-weight: 600;
    color: rgb(var(--heading-color));
    margin-bottom: 25px;
}

.history-section .history-table {
    width: 100%;
    border-collapse: collapse;
}

.history-section .history-table thead th {
    text-align: left;
    padding: 12px 15px;
    font-size: 0.85em;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color1);
}

.history-section .history-table tbody td {
    padding: 18px 15px;
    font-size: 0.95em;
    color: var(--body-color);
    border-bottom: 1px solid var(--border-color1);
}

.history-section .history-table tbody tr:hover {
    background: var(--bg-color2);
}

.status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
}

.history-section .status.completed {
    background: rgba(99, 171, 69, 0.15);
    color: rgb(var(--primary-color));
}

.history-section .status.pending {
    background: rgba(251, 99, 22, 0.15);
    color: #fb6116;
}

.history-section .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
}

.history-section .empty-icon {
    font-size: 3em;
    opacity: 0.3;
    margin-bottom: 10px;
}

@media (max-width: 968px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .checkout-panel {
        position: relative;
        top: 0;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 20px 15px;
    }

    .page-header h1 {
        font-size: 1.6em;
    }

    .packages-container,
    .checkout-panel,
    .history-section {
        padding: 25px 20px;
    }

    .history-table {
        font-size: 0.9em;
    }

    .history-table thead {
        display: none;
    }

    .history-table tbody tr {
        display: block;
        margin-bottom: 20px;
        padding: 15px;
        background: var(--bg);
        border-radius: 10px;
        border: 1px solid var(--border-color1);
    }

    .history-table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border: none;
    }

    .history-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--muted);
    }
}

.payment-section .gateway-list {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
    height: 400px;
    overflow-y: scroll;
}

.payment-section .gateway-item {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-section .gateway-item .gateway-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-section .gateway-item .gateway-info h3 {
    font-size: 1.2em;
}

.payment-section .gateway-item .gateway-info .gateway-icon {
    max-width: 50px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.payment-section .gateway-item .gateway-info .gateway-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.payment-section .gateway-item .radio-check {
    max-width: 15px;
    height: 15px;
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 50%;
    position: relative;
    margin-left: 6px;
}

.payment-section .gateway-item.selected {
    border-color: rgb(var(--primary-color));
    background: rgba(var(--primary-color), 0.1);
}

.payment-section .gateway,
.payment-section .payment-summary {
    background: white;
    padding: 25px;
    border-radius: 20px;
}

.payment-section .currency-section.active {
    display: block;
}

.payment-section .currency-section .section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.payment-section .currency-select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-section .calculation-result.active {
    display: block;
}

.payment-section .calculation-result {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0;
    display: none;
    overflow: hidden;
    margin-top: 25px;
}

.payment-section .calculation-result .summary-header {
    background: #f8f9fa;
    padding: 20px 25px;
    border-bottom: 1px solid #e0e0e0;
}

.payment-section .calculation-result .summary-header h3 {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.payment-section .calculation-result .summary-body {
    padding: 25px;
}

.payment-section .calculation-result .summary-body .result-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}

.payment-section .calculation-result .summary-body .result-row .result-label {
    font-weight: 500;
    font-size: 15px;
}

.payment-section .calculation-result .summary-body .result-row .result-value {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    text-align: right;
}

.payment-section .payment-summary .btn-pay {
    width: 100%;
    padding: 16px;
    background: rgb(var(--primary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: transform 0.2s ease;
    display: none;
}

/* The Disabled State */
.payment-section .payment-summary .btn-pay:disabled {
    background: rgba(var(--primary-color), 0.6);
    /* Faded background */
    cursor: not-allowed;
    pointer-events: none;
    /* Prevents clicks */
    color: transparent;
    /* Hides original text to make room for loader */
    position: relative;
    transform: none;
    /* Disables the hover transform */
}

/* The CSS-only Loader */
.payment-section .payment-summary .btn-pay:disabled::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    /* Half of height */
    margin-left: -10px;
    /* Half of width */
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

/* Spinner Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.payment-section .payment-summary .btn-pay.active {
    display: block;
}

.payment-section .payment-summary .btn-pay:hover {
    transform: translateY(-2px);
}

.payment-section .gateway-item.selected .radio-check {
    border-color: rgb(var(--primary-color));
}

.payment-section .gateway-item.selected .radio-check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-55%, -44%);
    max-width: 7px;
    width: 100%;
    height: 7px;
    background: rgb(var(--primary-color));
    border-radius: 50%;
}

.payment-summary-modal {
    padding: 0 !important;
}


.image-uploader {
    position: relative;
}

/* Container Card */
.uploader-card {
    background: white;
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

/* Dropzone Styling */
.dropzone {
    position: relative;
    cursor: pointer;
    border: 2px dashed var(--border-color1);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    text-align: center;
    background: #fafafa;
}


.dropzone.is-dragging {
    border-color: rgb(var(--primary-color));
    background-color: #eff6ff;
}

.dropzone:hover {
    border-color: rgb(var(--primary-color));
}


/* Placeholder Content */
.placeholder-icon {
    width: 3rem;
    height: 3rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.upload-text {
    color: var(--primary-color);
    font-weight: 500;
    display: block;
}

.sub-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Preview Image Styling */
.preview-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.preview-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Remove Button */
.remove-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--danger);
    color: white;
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, background 0.2s ease;
}

[x-cloak] {
    display: none !important;
}

.remove-btn:hover {
    background: var(--danger-hover);
    transform: scale(1.1);
}

/* File Information Footer */
.file-info {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Utils */
.hidden {
    display: none;
}

.image-uploader i {
    position: absolute;
    top: 35px;
    right: 20px;
    font-size: 1.5rem;
    z-index: 1;
    cursor: pointer;
    background: linear-gradient(135deg, #bf882c 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dropzone.generating {
    background: linear-gradient(to bottom right, rgba(99, 171, 69, 0.2), rgba(30, 58, 138, 0.2), rgba(99, 171, 69, 0.2));
}

.grid-background.active {
    opacity: 0.3;
    background-image: linear-gradient(rgba(99, 171, 69, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 171, 69, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-flow 20s linear infinite;
}

.scan-line {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.scan-line.active {
    opacity: 1;
}

.scan-line::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to bottom, transparent, rgba(99, 171, 69, 0.2), transparent);
    animation: scan 3s ease-in-out infinite;
}

.corner-brackets {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.corner-bracket {
    position: absolute;
    width: 2rem;
    height: 2rem;
    border-color: #4da44e;
    opacity: 0;
    transition: opacity 0.3s;
}

.corner-bracket.active {
    opacity: 1;
    animation: ai-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.corner-tl {
    top: 1rem;
    left: 1rem;
    border-top: 2px solid;
    border-left: 2px solid;
}

.corner-tr {
    top: 1rem;
    right: 1rem;
    border-top: 2px solid;
    border-right: 2px solid;
}

.corner-bl {
    bottom: 1rem;
    left: 1rem;
    border-bottom: 2px solid;
    border-left: 2px solid;
}

.corner-br {
    bottom: 1rem;
    right: 1rem;
    border-bottom: 2px solid;
    border-right: 2px solid;
}

.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.particles.active {
    opacity: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: particle linear infinite;
}

/* Processing Overlay */
.processing-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border-radius: 0.75rem;
}

.processing-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.processing-content {
    text-align: center;
    padding: 1.5rem;
}

.image-uploader .loader-wrapper {
    position: relative;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
}

.image-uploader .loader {
    width: 4rem;
    height: 4rem;
    border: 3px solid rgba(99, 171, 69, 0.3);
    border-top-color: #4da44e;
    border-radius: 50%;
    animation: ai-spin 1s linear infinite;
}

.image-uploader .loader-glow {
    position: absolute;
    inset: 0;
    background: rgba(99, 171, 69, 0.2);
    filter: blur(1rem);
    border-radius: 50%;
    animation: ai-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.stage-text {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #ffffff !important;
}

.image-uploader .loading-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #4da44e;
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.15s;
}

.dot:nth-child(3) {
    animation-delay: 0.3s;
}

/* Progress Bar */
.progress-section {
    margin-top: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.progress-section.active {
    opacity: 1;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.progress-label {
    color: #9ca3af;
}

.progress-value {
    color: #4da44e;
    font-weight: 600;
    font-family: monospace;
}

.progress-bar {
    position: relative;
    height: 0.375rem;
    background: #27272a;
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #4da44e, #ccf888);
    border-radius: 9999px;
    transition: width 0.3s ease-out;
    width: 0%;
}

.progress-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer-fast 1.5s infinite;
}

/* Animations */
@keyframes grid-flow {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

@keyframes scan {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(300%);
    }
}

@keyframes particle {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-150px) scale(1);
        opacity: 0;
    }
}

@keyframes ai-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes ai-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@keyframes shimmer-fast {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(200%);
    }
}

@keyframes scale-in {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}


.map-search-result-item {
    display: flex;
    gap: 6px;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.map-search-result {
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow3);
    padding: 20px;
    border-radius: 10px;
    width: max-content;
    position: absolute;
    z-index: 10;
    background-color: white;
    top: 100%;
    left: 0;
}

.search-title {
    font-size: 18px;
    font-weight: 500;
}

.search-address {
    font-size: 14px;
}

.search-icon.text-2xl.flex-shrink-0 {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1;
    margin-bottom: -5px;
}

.map-search-result-item:hover {
    background-color: rgb(var(--primary-color));
    color: white;
}

.editable_div {
    display: inline-block;
    position: relative;
}


/* trip genarator loadaer */

.loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh !important;
    background: #f2f8f0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
}

.loader-container .loader-content {
    text-align: center;
}

.loader-container .plane-container {
    position: relative;
    width: 128px;
    height: 128px;
    margin: 0 auto 24px;
}

.loader-container .ping-circle {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    animation: trip-generator-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.loader-container .ping-circle-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgb(var(--primary-color));
}

.loader-container .plane-icon-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.loader-container .plane-icon {
    width: 64px;
    height: 64px;
    color: rgb(var(--primary-color));
    animation: trip-generator-bounce 1s infinite;
}

.loader-container .sparkles-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.loader-container .sparkle {
    animation: trip-generator-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.loader-container .sparkle-1 {
    width: 20px;
    height: 20px;
    color: var(--yellow);
}

.loader-container .sparkle-2 {
    width: 16px;
    height: 16px;
    color: var(--orange);
    animation-delay: 150ms;
}

.loader-container .sparkle-3 {
    width: 20px;
    height: 20px;
    color: var(--yellow);
    animation-delay: 300ms;
}

.loader-container .main-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(var(--heading-color));
    margin-bottom: 8px;
    font-family: var(--heading-font);
}

.loader-container .dynamic-text-container {
    margin-bottom: 24px;
    height: 24px;
}

.loader-container .dynamic-text {
    color: var(--body-color);
    animation: trip-generator-fadeIn 0.5s ease-out;
}

.loader-container .progress-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.loader-container .dot {
    width: 12px;
    height: 12px;
    background-color: rgb(var(--primary-color));
    border-radius: 50%;
    animation: trip-generator-bounce 1s infinite;
}

.loader-container .dot:nth-child(2) {
    animation-delay: 150ms;
}

.loader-container .dot:nth-child(3) {
    animation-delay: 300ms;
}

@keyframes trip-generator-ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes trip-generator-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes trip-generator-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes trip-generator-fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.welcome {
    background: linear-gradient(to right, rgba(99, 171, 69, 0.05), rgba(52, 211, 153, 0.1));
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 2rem;
}

.welcome h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--hc);
    margin-bottom: 1rem;
}

.welcome p {
    font-size: 1.125rem;
    color: var(--g600);
    margin-bottom: 1.5rem;
}

.welcome .btn-secondary {
    background: #fff;
    color: var(--pc);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.listing-form {
    background: #fff;
    border-radius: 1.5rem;
    padding: 3rem;
    border: 1px solid var(--border);
}

.listing-form .sec-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--hc);
}

.listing-form p {
    color: var(--g600);
    margin-bottom: 2rem;
}

.listing-form .form-group {
    margin-bottom: 1.5rem;
}

.listing-form .form-group .type-sel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.listing-form .form-group .type-sel .type-opt {
    padding: 1.5rem;
    border: 2px solid var(--border);
    border-radius: 1rem;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.listing-form .form-group .type-sel .type-opt .type-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.listing-form .form-group .type-opt .type-label {
    font-weight: 500;
    text-transform: capitalize;
}

.listing-form .form-group .type-opt.selected {
    border-color: var(--pc);
    background: rgba(99, 171, 69, 0.05);
}

.listing-form .form-group .form-label {
    display: block;
    font-weight: 600;
    color: var(--hc);
    margin-bottom: 0.75rem;
}

.listing-form .form-group .form-input,
.listing-form .form-group .form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 1rem;
    font-size: 1rem;
    font-family: "Jost", sans-serif;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.boosted {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(to right, var(--p500), #ec4899);
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    gap: 0.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.card-img {
    height: 12rem;
    background: linear-gradient(to bottom right, rgba(99, 171, 69, 0.05), rgba(52, 211, 153, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.card-acts {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: 0.3s;
}

.act-btn {
    width: 2rem;
    height: 2rem;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#homeListingsGrid .tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

#homeListingsGrid .tag-type {
    background: rgba(99, 171, 69, 0.1);
    color: var(--pc);
}

#homeListingsGrid .tag {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    gap: 0.25rem;
}

#homeListingsGrid .tag-status {
    background: #dcfce7;
    color: #16a34a;
}

#homeListingsGrid .tag-inactive {
    background: #fee2e2;
    color: #dc2626;
}

#homeListingsGrid .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--hc);
    margin-bottom: 0.5rem;
}

#homeListingsGrid .card-loc {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--g600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

#homeListingsGrid .boost-timer {
    background: rgba(168, 85, 247, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--p600);
    font-size: 0.875rem;
}

#homeListingsGrid .card-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

#homeListingsGrid .meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--g500);
}

#homeListingsGrid .meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

#homeListingsGrid .meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

#homeListingsGrid .btn-boost {
    background: rgba(99, 171, 69, 0.1);
    color: var(--pc);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    box-shadow: none;
}

#homeListingsGrid .card {
    padding: 0;
    border-radius: 10px;
}

#homeListingsGrid .card-img {
    height: 15rem;
}

#homeListingsGrid .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

#homeListingsGrid .card-acts {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: 0.3s;
    z-index: 99;
}

#homeListingsGrid .act-btn {
    width: 2rem;
    height: 2rem;
    color: #fff;
    background: rgb(var(--primary-color));
    font-size: 13px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#homeListingsGrid .card:hover .card-acts {
    opacity: 1;
}

#homeListingsGrid .boosted {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgb(var(--primary-color));
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    gap: 0.25rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

#homeListingsGrid .boost-timer {
    background: rgb(var(--primary-color), 0.05);
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgb(var(--primary-color));
    font-size: 0.875rem;
}

#homeListingsGrid .meta-item i {
    font-size: 14px;
}

#homeListingsGrid .meta-item i.fa-star {
    color: #facc15;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    background-color: rgb(var(--primary-color));
    border-color: rgb(var(--primary-color));
}

.switch {
    position: relative;
    display: inline-block;
    width: 2.8rem;
    height: 1.5rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: .4s;
    border-radius: 999px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 1.1rem;
    width: 1.1rem;
    left: 0.2rem;
    bottom: 0.2rem;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input:checked+.slider {
    background-color: rgb(var(--primary-color));
}

input:checked+.slider:before {
    transform: translateX(1.3rem);
}

.status-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--g700);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--card);
    border-radius: 12px;
}

.empty-state-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state h3 {
    color: rgb(var(--heading-color));
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--muted);
    margin-bottom: 20px;
}

/* Guidance Tag Slider */
.guidance-tag-wrapper {
    position: relative;
    padding: 0 45px;
    margin-top: 25px;
}

.guidance-tag-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.guidance-tag-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.tag-row {
    display: flex;
    gap: 10px;
}

.tag-row a {
    display: inline-block;
    padding: 10px 22px;
    background: var(--bg-color1);
    border: 1px solid var(--border-color1);
    border-radius: 30px;
    font-size: 15px;
    color: var(--body-color);
    white-space: nowrap;
    transition: var(--transition);
}

.tag-row a:hover {
    background: rgb(var(--primary-color), 0.1);
    border-color: rgb(var(--primary-color));
    color: rgb(var(--primary-color));
}

.tag-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-color1);
    border: 1px solid var(--border-color1);
    color: var(--body-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
    box-shadow: var(--shadow1);
}

.tag-scroll-btn:hover {
    background: rgb(var(--primary-color));
    color: white;
    border-color: rgb(var(--primary-color));
}

.tag-scroll-btn.prev {
    left: 0;
}

.tag-scroll-btn.next {
    right: 0;
}

@media (max-width: 767px) {
    .guidance-tag-wrapper {
        padding: 0 40px;
    }

    .tag-scroll-btn {
        width: 32px;
        height: 32px;
    }
}

.flatpickr-calendar {
    z-index: 999999999999999999999999999999999999999999999999999999999999999999 !important;
    /* Ensure this is higher than your fm-modal */
}

span.stat-item.like_button i {
    transition: 0.5s ease-in-out;
}

span.stat-item.like_button.active i {
    font-weight: 900;
    color: rgb(var(--primary-color));
}

.cursor-pointer {
    cursor: pointer;
}


:root {
    --primary-teal: #1a937e;
    --bg-light: #f8f9fa;
    --card-bg: #fdfdfd;
    --text-muted: #6c757d;
}

.weather-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    padding: 10px 20px 20px 20px;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.app-header i {
    color: var(--primary-teal);
    font-size: 1.5rem;
}

.app-header h1 {
    font-size: 20px;
    margin: 0;
}

.search-container {
    position: relative;
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.search-input-wrapper {
    position: relative;
    flex-grow: 1;
}

.search-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-input {
    width: 100%;
    padding: 8px 12px 8px 45px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    background: var(--bg-light);
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: var(--primary-teal);
}

.btn-search {
    background-color: var(--primary-teal);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 12px;
    font-weight: 600;
}

.current-weather-banner {
    background-color: #fffbf7;
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 15px;
}

.location-label {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.main-temp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.temp-display {
    display: flex;
    align-items: center;
    gap: 15px;
}

.weather-icon-large {
    font-size: 3rem;
    color: #f39c12;
}

.temp-value {
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
}

.weather-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 4px;
}

.high-low {
    text-align: right;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.stat-box {
    background-color: #f1f6f5;
    padding: 10px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.stat-box i {
    color: var(--primary-teal);
    font-size: 16px;
    margin-top: 3px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-value {
    font-weight: 600;
    font-size: 16px;
}

.deshboard-grid-right .section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.chart-placeholder {
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(26, 147, 126, 0.1) 0%, rgba(26, 147, 126, 0) 100%);
    border-bottom: 2px solid var(--primary-teal);
    position: relative;
    margin-bottom: 15px;
    border-radius: 4px;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.75rem;
    color: #999;
}

.forecast-grid {
    display: flex;
    gap: 12px;
    gap: 12px;
    margin-bottom: 15px;
}

.forecast-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 10px 20px;
    text-align: center;
    transition: all 0.3s;
}

span#currentLoc {
    font-size: 16px;
    font-weight: 500;
}

.forecast-card.active {
    background-color: #e8f4f2;
    border: 1px solid #d0e8e4;
}

.forecast-day {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.forecast-day span {
    color: var(--primary-teal);
}

.forecast-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.forecast-icon {
    font-size: 1.5rem;
    color: #f39c12;
}

.forecast-temps {
    font-size: 0.85rem;
    font-weight: 600;
}

.forecast-low {
    color: #999;
    font-weight: 400;
    margin-left: 4px;
}

.destinations-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.tag {
    padding: 6px 16px;
    border-radius: 20px;
    background: white;
    border: 1px solid #eee;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
}

.tag:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.tag.active {
    background: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
}

/* Chart SVG styling */
.chart-svg {
    width: 100%;
    height: 100%;
}

.chart-line {
    fill: none;
    stroke: var(--primary-teal);
    stroke-width: 2;
}

.chart-area {
    fill: rgba(26, 147, 126, 0.1);
}

.alerts-container {
    max-width: 500px;
    margin: 0 auto;
}

/* Custom Alert Styling to match screenshot */
.weather-alert {
    position: relative;
    background-color: #fff8f8;
    /* Very light red tint */
    border: 1px solid #ffb3b3;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.weather-alert:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.icon-warning {
    color: #dc3545;
    font-size: 1.1rem;
}

.badge-warning {
    background-color: #ff5252;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alert-title {
    font-weight: 600;
    font-size: 14.5px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.alert-body {
    font-size: 13.5px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 6px;
    padding-left: 2px;
}

.alert-expires {
    font-size: 11px;
    color: #999;
    font-weight: 500;
}

.btn-close-custom {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}

.btn-close-custom:hover {
    color: #333;
}

.stat-card {
    background-color: hsl(0 0% 100%);
    box-shadow: var(--card-shadow);
    border-radius: 0.75rem;
    border-width: 1px;
    border-color: hsl(var(--border));
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideUp .6s ease-out forwards;
    padding: 1rem;
}

.stat-bg-primary {
    background-color: rgba(var(--primary-color), 0.1);
    color: rgb(var(--primary-color));
}

.stat-bg-accent {
    background-color: hsl(var(--card-accent) / 0.1);
    color: hsl(var(--card-accent));
}

.icon-box {
    border-radius: .75rem;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    display: flex;
}

.stat-card .stat-number {
    color: var(--body-color);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 0;
}

.stat-card .stat-label {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.25rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.navbar .nav-right {
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-search .search-box2 {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 350px;
    margin: 0 auto;
}

.header-search .search-box2 .form-control {
    background-color: var(--bg-color1);
    border-radius: 4px;
    height: 40px;
    border-radius: 9999px;
    padding: 10px 60px 10px 20px;
    height: 50px;
    box-shadow: none;
}

.header-search .search-box2 .search-btn {
    padding: 1px 12px;
    font-size: 14px;
    line-height: 1;
}

.listing-page-navbar {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 15px;
}

.listing-page-navbar .navbar-nav {
    flex-direction: column;
}

.listing-page-navbar .navbar-nav .nav-link {
    font-size: 18px;
    padding-bottom: 0;
    margin-bottom: 10px;
    display: inline-block;
    border-bottom: 1px solid transparent;
}

.listing-page-navbar .navbar-nav .nav-link:hover,
.listing-page-navbar .navbar-nav .nav-link.active {
    border-bottom: 1px solid var(--body-color);
}

.listing-product-list {
    margin-bottom: 24px;
}

.listing-product-list:last-child {
    margin-bottom: 0;
}

.listing-product-list .product-box4 .img-box {
    width: 200px;
    min-width: 200px;
    height: 200px;
    position: relative;
}

.listing-product-list .img-carousel .item img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
}

.listing-product-title {
    font-size: 28px;
    margin-bottom: 16px;
}

.listing-page-sidebar {
    position: sticky;
    top: 80px;
}


@media (max-width: 991px) {
    .listing-page-navbar .navbar-nav {
        flex-direction: row;
        gap: 25px;
        overflow-x: auto;
    }

    .listing-page-navbar .navbar-nav .nav-link {
        white-space: nowrap;
    }
}

@media (max-width: 767px) {
    .listing-product-list .product-box4 {
        flex-direction: column;
    }

    .listing-product-list .product-box4 .img-box {
        width: 100%;
    }

    .listing-product-list .img-carousel .item img {
        aspect-ratio: inherit;
        height: 210px;
    }

    .header-search-btn .offcanvas {
        justify-content: center;
        border-radius: 0 0 9px 9px;
    }

    .header-search .search-box2 {
        min-width: 280px;
        max-width: 90%;
    }
}

.tab-header {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.tab-button {
    padding: 16px 24px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.3px;
}

.tab-button:hover {
    color: #111827;
}

.tab-button.tab-active {
    color: rgb(var(--primary-color));
    border-bottom-color: rgb(var(--primary-color));
}

.offcanvas-body .app .tab-body {
    display: none;
}

.offcanvas-body .app .tab-body.active {
    display: block;
}




.feature-card {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    background: #f9fafb;
    margin-top: 24px;
    margin: 16px;
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #d1fae5 0%, #e0e7ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card .feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.feature-card .feature-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

.feature-card .button-group {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.feature-card .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
}

.feature-card .btn-outline {
    background: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
}

.feature-card .btn-outline:hover {
    background: #f9fafb;
}

.feature-card .btn-primary {
    background: #059669;
    color: #ffffff;
}

.feature-card .btn-primary:hover {
    background: #047857;
}

.loading-card {
    border-radius: 12px;
    text-align: center;
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    margin-right: 16px;
    z-index: 1;
    margin-left: 16px;
}

.loading-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    to {
        left: 100%;
    }
}

.loading-card .spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    border: 4px solid #d1d5db;
    border-top-color: #059669;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-card .loading-text {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.loading-card .loading-subtext {
    font-size: 14px;
    color: #6b7280;
}

.loading-card img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    backdrop-filter: blur(5px);
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 12px;
}

.loading-content {
    padding: 60px 24px;
    backdrop-filter: blur(4px);
    background: rgba(var(--white), 0.5);
    overflow: hidden;
    border-radius: 12px;
}



:root {
    --bg-color: #f5f9f9;
    --card-bg: #ffffff;
    --text-primary: #1a2e35;
    --text-secondary: #708085;
    --accent-teal: #14b8a6;
    --btn-teal: #109284;
    --border-color: #e5eef0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#offcanvasChat .tab-header {
    padding: 0;
    justify-content: space-between;
}

#offcanvasChat .offcanvas-body {
    padding-left: 0;
}

#offcanvasChat .tab-button.active {
    color: rgb(var(--primary-color));
    border-bottom-color: rgb(var(--primary-color));
}

#offcanvasChat .tab-button {
    font-size: 16px;
    font-weight: 400;
    display: flex;
    align-items: baseline;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
}

#offcanvasChat .tab-button svg {
    width: 16px !important;
    height: 16px !important;
}

.lens-card {
    width: 90%;
    height: 75.5vh;
    overflow-y: auto;
    margin: 30px auto;
}

.lens-card .image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 3;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 24px;
}

.lens-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lens-card .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    font-size: 20px;
    font-weight: bold;
}

.lens-card .content {
    padding: 20px;
    overflow: hidden;
    border-radius: 12px;
    background: rgb(var(--white));
    border: 1px solid rgb(var(--primary-color), 0.2);
}

.lens-card .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.lens-card .title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lens-card .sparkle-icon svg {
    fill: rgb(var(--primary-color)) !important;
    width: 20px;
    height: 20px;
}

.lens-card .sparkle-icon svg path {
    fill: rgb(255 255 255) !important;
    stroke: rgb(var(--primary-color)) !important;
}

.lens-card .title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0;
}

.lens-card .speaker-icon {
    color: var(--text-primary);
    cursor: pointer;
    opacity: 0.8;
}

.lens-card .location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
}

.lens-card .ai-summary-header {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.lens-card .summary-text {
    color: #4a5a5e;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.lens-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.lens-card .btn {
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    border: none;
}

.lens-card .btn-outline {
    background: white;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.lens-card .btn-outline:hover {
    background: #f8fafb;
}

.lens-card .btn-primary {
    background: var(--btn-teal);
    color: white;
}

.lens-card .btn-primary:hover {
    background: #0d7c70;
}

/* Icons using simple SVGs/CSS */
.lens-card .icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}





.expense-card-container {
    margin: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Receipt Preview Section */
.expense-card-container .receipt-preview {
    position: relative;
    width: 100%;
    height: 220px;
    background-color: #a0a0a0;
    /* Placeholder gray background */
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.expense-card-container .receipt-image {
    width: 50%;
    height: auto;
    background-color: white;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    padding: 4px;
    margin-top: -10px;
    display: block;
}

.expense-card-container .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    color: #333;
    transition: background-color 0.2s;
    z-index: 10;
}

.expense-card-container .close-btn:hover {
    background-color: white;
}

/* Card Container */
.expense-card-container .expense-card {
    background-color: #fafdface;
    border: 1.5px solid #d1dbdb;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Top Header Row */
.expense-card-container .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.expense-card-container .title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.expense-card-container .title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expense-card-container .badge {
    background-color: #d1e9e3;
    color: #158e74;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Details Row (Price and Date) */
.expense-card-container .card-details {
    display: flex;
    gap: 48px;
    margin-bottom: 28px;
    color: #475569;
    font-size: 15px;
    font-weight: 500;
}

.expense-card-container .detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icon Styling */
.expense-card-container .icon {
    width: 18px;
    height: 18px;
    stroke: #64748b;
    stroke-width: 2;
    fill: none;
}

/* Action Buttons */
.expense-card-container .card-actions {
    display: flex;
    gap: 12px;
}

.expense-card-container .btn {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    border: none;
}

.expense-card-container .btn-discard {
    background-color: white;
    border: 1px solid #e2e8f0;
    color: #1e293b;
}

.expense-card-container .btn-discard:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

.expense-card-container .btn-add {
    background-color: #158e74;
    color: white;
}

.expense-card-container .btn-add:hover {
    background-color: #0f6e5a;
}

@media (max-width: 480px) {
    .expense-card-container .card-details {
        gap: 24px;
    }
}



/*new*/
:root {
    --bg-color: #f1f9f7;
    --card-bg: #ffffff;
    --primary-text: #2c3e50;
    --secondary-text: #7f8c8d;
    --health-green: #27ae60;
    --accent-orange: #e67e22;
    --allergen-bg: #fee2e2;
    --allergen-text: #b91c1c;
    --border-color: #ecf0f1;
    --tag-bg: #f0f4f4;
}

.offcanvas-body .app .tab-body.active {
    overflow-y: auto;
    padding: 16px;
}


.food-image-container {
    position: relative;
}

.food-image-container img {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.food-image-container .close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.food-card-info {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    color: var(--primary-text);
}

.food-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.food-card-header .title {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    max-width: 80%;
}

.food-card-header .health-score {
    text-align: center;
}

.food-card-header .health-score .number {
    font-size: 28px;
    font-weight: 400;
    display: block;
    line-height: 1;
}

.food-card-header .health-score .label {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.food-card-info .subtitle {
    font-size: 15px;
    color: var(--secondary-text);
    margin-bottom: 24px;
}

/* Calories Banner */
.food-card-info .calories-banner {
    background-color: #fffaf5;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.food-card-info .calories-banner .icon {
    font-size: 20px;
}

.food-card-info .calories-banner .value {
    font-size: 24px;
    font-weight: 500;
}

.food-card-info .calories-banner .unit {
    font-size: 16px;
    color: var(--secondary-text);
    font-weight: normal;
}

/* Macros Grid */
.food-card-info .macros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.food-card-info .macro-item {
    text-align: center;
    padding: 12px 4px;
    background: #fafafa;
    border-radius: 12px;
    position: relative;
}

.food-card-info .macro-icon {
    font-size: 16px;
    margin-bottom: 4px;
    display: block;
}

.food-card-info .macro-value {
    font-size: 18px;
    font-weight: 700;
    display: block;
}

.food-card-info .macro-label {
    font-size: 12px;
    color: var(--secondary-text);
}

.food-card-info .progress-bar {
    height: 4px;
    background: #eee;
    border-radius: 2px;
    margin: 8px 10px 0;
    overflow: hidden;
}

.food-card-info .progress-fill {
    height: 100%;
    background: var(--health-green);
    width: 40%;
    /* Example width */
}

/* Secondary Stats */
.food-card-info .stats-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 32px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.food-card-info .stat-item {
    text-align: center;
}

.food-card-info .stat-value {
    font-size: 15px;
    font-weight: 400;
    display: block;
}

.food-card-info .stat-label {
    font-size: 12px;
    color: var(--secondary-text);
}

/* Ingredients */
.food-card-info .section-title {
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-text);
    margin-bottom: 12px;
}

.food-card-info .tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.food-card-info .tag {
    background: var(--tag-bg);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    color: #4a5a5a;
}

/* Allergen Warning */
.food-card-info .allergen-box {
    background: var(--allergen-bg);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.food-card-info .allergen-content {
    font-size: 13px;
}

.food-card-info .allergen-title {
    font-weight: 700;
    color: var(--allergen-text);
    display: block;
    margin-bottom: 2px;
}

.food-card-info .allergen-list {
    color: #ef4444;
}

.food-card-info .description {
    font-size: 15px;
    line-height: 1.5;
    color: #5d6d6e;
    margin-bottom: 32px;
}

.food-card-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

.food-card-info .btn-scan {
    width: 100%;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: #f8fbfb;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-text);
    cursor: pointer;
    transition: background 0.2s;
}

.food-card-info .btn-scan-2 {
    background: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.food-card-info .btn-scan:hover {
    background: #f0f4f4;
}


.card-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-title {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #333;
    font-size: 1.1rem;
}

.history-title i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.food-accordion .accordion-item {
    background: #fff !important;
    border: 1px solid var(--border-color);
    padding: 0 16px;
    border-radius: 12px !important;
}

.food-accordion .accordion-button:focus {
    border-top: 1px solid transparent;
}

.food-accordion .accordion-button {
    border-top: 1px solid transparent;
    background: transparent !important;
}

.food-list-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    margin-bottom: 10px;
}

.food-list-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 15px;
    background-color: #eee;
}

.food-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-list-info {
    flex-grow: 1;
    min-width: 0;
}

.food-list-info .food-name {
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #2c3e50;
}

.food-list-info .food-details {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.food-list-score {
    text-align: right;
    flex-shrink: 0;
}

.food-list-score .score-value {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.food-list-score .timestamp {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
}

.food-list-score .chevron-icon {
    color: #333;
    font-size: 0.9rem;
}

.pb-130 {
    padding-bottom: 130px;
}

.text-green-500 {
    color: #22c55e;
    /* green */
}

.text-yellow-500 {
    color: #eab308;
    /* yellow */
}

.text-red-500 {
    color: #ef4444;
    /* red */
}

.offcanvas-backdrop {
    z-index: 990 !important;
}



/* ai assistant css */

.pulse-record {
    animation: pulse-red 2s infinite;
    background: rgba(0, 79, 50, 0.1) !important;
    color: #004f32 !important;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 79, 50, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 79, 50, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 79, 50, 0);
    }
}

.voice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

[data-theme="dark"] .voice-overlay {
    background: rgba(15, 23, 42, 0.95);
}

.voice-overlay-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 90%;
}

.voice-status {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color, #004f32);
    letter-spacing: 0.5px;
}

.visualizer-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visualizer-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--primary-color, #004f32);
    opacity: 0.2;
}

.visualizer-ring.listening {
    animation: pulse-ring-listening 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    border-color: #3b82f6;
}

.visualizer-ring.speaking {
    animation: pulse-ring-speaking 1.5s ease-in-out infinite;
    border-color: var(--primary-color, #004f32);
}

.visualizer-ring-inner {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--primary-color, #004f32);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse-inner 2s infinite;
}

.visualizer-icon {
    position: relative;
    font-size: 3rem;
    color: var(--primary-color, #004f32);
    z-index: 1;
}

.transcript-container {
    min-height: 60px;
    max-height: 120px;
    overflow-y: auto;
    width: 100%;
    padding: 0 10px;
}

.partial-transcript {
    font-size: 1.1rem;
    color: #64748b;
    font-style: italic;
    line-height: 1.5;
}

[data-theme="dark"] .partial-transcript {
    color: #94a3b8;
}

.voice-controls {
    display: flex;
    gap: 1rem;
}

.voice-btn {
    padding: 12px 24px;
    border-radius: 50px;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.stop-btn {
    background: #ef4444;
    color: white;
}

.stop-btn:hover {
    background: #dc2626;
    transform: scale(1.05);
}

@keyframes pulse-ring-listening {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes pulse-ring-speaking {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }
}

@keyframes pulse-inner {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.meal-toggle-pills {
    background: #f1f5f9;
    padding: 4px;
    border-radius: 50px;
    display: flex;
    gap: 4px;
}

.pill-btn {
    padding: 6px 16px;
    border-radius: 50px;
    border: none;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    color: #64748b;
}

.pill-btn.active {
    background: white;
    color: var(--primary-color, #004f32);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.btn-primary-premium {
    background: linear-gradient(135deg, #004f32 0%, #006b44 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 79, 50, 0.2);
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fw-600 {
    font-weight: 600;
}

.deshboard-nav .nav-link.active {
    background-color: transparent !important;
}

/* new */
.filter-bar {
    padding: 0 0 50px 0;
}

.filter-bar .search-input {
    border: none;
    padding: 16px 25px 16px 40px;
    flex-grow: 1;
    font-size: 1.1rem;
    outline: none;
    border-radius: 50px;
    box-shadow: var(--shadow3);
}

.filter-bar .search-btn {
    background-color: rgb(var(--primary-color));
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    margin-left: -125px;
}

.filter-bar .search-container {
    position: relative;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.filter-bar .search-container i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #94a3b8;
    pointer-events: none;
}

.filter-bar .search-container .search-input {
    padding-left: 45px;
    font-size: 1rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #334155;
}

.filter-bar .search-container .search-input:focus {
    background: #fff;
    border-color: rgb(var(--primary-color));
    box-shadow: 0 0 0 3px rgba(0, 79, 50, 0.1);
}

.filter-bar .filter-chips {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.filter-bar .chip {
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-bar .chip:hover {
    background: #e2e8f0;
}

.filter-bar .chip.active {
    background: rgb(var(--primary-color));
    color: white;
    border-color: rgb(var(--primary-color));
    box-shadow: 0 4px 12px rgba(0, 79, 50, 0.2);
}

.select2-container--default .select2-results>.select2-results__options {
    text-transform: capitalize;
    padding: 5px;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-chips .select2-container .select2-selection--single,
.filter-chips .select2-container .select2-selection--multiple {
    width: 120px !important;
}


/* Cookie */

/* The Card */
.cookie-card {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    width: 380px;
    background: var(--bg-color1);
    border: 1px solid var(--border-color1);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    z-index: 1000;
    animation: slideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}


@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-card .cookie-icon {
    background-color: rgba(var(--primary-color), 0.1);
    color: rgb(var(--primary-color));
    padding: 0.6rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-card .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--body-color);
    margin: 0;
}

.cookie-card .card-description {
    font-size: 0.875rem;
    color: var(--body-color);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.cookie-card .card-description a {
    color: rgb(var(--primary-color));
    text-decoration: underline;
}

/* Buttons */
.cookie-card .button-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}


/* Success Overlay */
.cookie-card .success-overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-color1);
    border-radius: 1rem;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cookie-card .success-overlay.active {
    display: flex;
}

.cookie-card .check-icon {
    width: 40px;
    height: 40px;
    background: #ecfdf5;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .cookie-card {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        width: auto;
    }

    .cookie-card .button-group {
        flex-direction: column;
    }
}



/* Add Section */
.ad-section {
    width: 100%;
    padding: 60px 0 0;
    display: flex;
    justify-content: center;
}

.ad-container {
    max-width: 1200px;
    width: 100%;
    height: 112px;
}

.ad-box {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform .4s ease, box-shadow .4s ease;
}

.ad-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ad-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* responsive */
@media (max-width:768px) {
    .ad-section {
        padding: 40px 15px;
    }
}

/* support */
.support {
    padding: 100px 0;
}

.support h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
}

.support h2:not(:first-child) {
    margin-top: 3.5rem;
}

.support p {
    margin-bottom: 1rem;
    color: #475569;
    font-size: 17px;
}

.support span {
    color: #475569;
    font-size: 17px !important;
}

.support ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.support li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: #475569;
}

.support ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgb(var(--primary-color));
    font-weight: bold;
}

.highlight-quotes {
    background: #f8fafc;
    border-left: 4px solid rgb(var(--primary-color));
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    border-radius: 0 12px 12px 0;
    font-size: 0.95rem;
}




























/* ----------------- collaboration dashboard --------------------- */
.collaboration-dashboard,
.cd-porfole-card {
    background-color: var(--bg);
}

.collaboration-dashboard .profile-card {
    top: -140px;
}

.cd-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.cd-header-title h1 {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}

.cd-header-title p {
    color: var(--muted);
    font-size: 1.1rem;
}

.cd-header-actions {
    display: flex;
    gap: 1rem;
}

/* Card Styles */
.cd-trip-card {
    background-color: var(--card);
    border-radius: 30px;
    padding: 1.5rem;
    height: 100%;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    box-shadow: var(--shadow1);
    transition: var(--transition);
}

.cd-trip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow2);
    color: inherit;
}

.cd-trip-card:hover .cd-icon-box {
    background-color: rgb(var(--primary-color));
    color: rgb(var(--white));
}

.cd-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.cd-icon-box {
    width: 45px;
    height: 45px;
    background-color: #f7f7f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cd-attendees {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.9rem;
}

.cd-trip-title {
    font-size: 22px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.cd-trip-location {
    color: var(--muted);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.cd-card-footer {
    border-top: 1px solid var(--border-color1);
    background: transparent;
    padding: 1rem 0 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.cd-card-footer-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}

.cd-card-footer .fa-arrow-right {
    font-size: 18px;
    transition: var(--transition);
    transform: translateX(-4px);
    opacity: 0;
    visibility: hidden;
}

.cd-trip-card:hover .cd-card-footer .fa-arrow-right {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* Modal Customization */
.cd-form-control {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color2);
    width: 100%;
    display: block;
    outline: none;
}

.cd-form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-color), 0.25);
    border-color: #63ab45;
}

/* Responsive Grid */
@media (max-width: 768px) {
    .cd-page-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cd-header-actions {
        width: 100%;
        flex-direction: column;
    }

    .cd-btn {
        flex: 1;
        justify-content: center;
    }

    .cd-trip-card {
        border-radius: 20px;
        padding: 1rem;
    }

    .cd-trip-title {
        font-size: 18px;
    }
}

/* --- PRO HERO SECTION --- */
.cd-hero {
    position: relative;
    background-image: linear-gradient(135deg,
            #1a2236 0%,
            #2d5e1e 60%,
            #63ab45 100%);
    background-size: cover;
    background-position: center;
    padding: 4rem 0 3rem;
    color: rgb(var(--white));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cd-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=80&w=2070&auto=format&fit=crop") center/cover no-repeat;
    opacity: 0.3;
}

.cd-hero-content {
    position: relative;
    z-index: 2;
}

.cd-hero .cmn-btn {
    border-radius: 30px;
    background: rgb(var(--white), 0.25);
    color: rgb(var(--white));
    border: none;
    padding: 10px 20px !important;
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cd-hero .cmn-btn:hover {
    background: rgb(var(--white));
    color: rgb(var(--black));
}

.cd-hero .cmn-btn2:hover {
    background: rgba(255, 255, 255, 0.4);
    color: rgb(var(--white));
}

.cd-hero-title {
    font-size: 42px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    color: rgb(var(--white));
}

.cd-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 1rem;
    opacity: 0.95;
}

.cd-hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cd-hero-meta i {
    font-size: 0.9rem;
}

.cd-moal-users {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 12px;
    overflow-y: auto;
}

.collaboration-avatars {
    display: flex;
    align-items: center;
}

.collaboration-avatars .avatar,
.collaboration-avatars .avatar-count {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid rgb(var(--white))fff;
    background-color: var(--bg);
    margin-left: -15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.collaboration-avatars .avatar:first-child {
    margin-left: 0;
}

.collaboration-avatars .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collaboration-avatars .avatar-count {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e2e8f0;
    color: #4a5568;
    font-family: sans-serif;
    font-size: 16px;
    font-weight: 500;
    z-index: 1;
}

.collaboration-avatars .avatar:hover {
    transform: translateY(-5px);
    z-index: 10;
    cursor: pointer;
}

.cd-moal-users:hover {
    background: rgb(var(--primary-color), 0.1);
}

.cd-user-badge {
    width: 40px;
    height: 40px;
    background: rgb(var(--primary-color));
    color: rgb(var(--white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cd-user-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* --- proposal-container --- */
.proposal-container {
    background: var(--bg);
}

body.modal-open {
    padding-right: 0 !important;
}

/* --- TABS NAVIGATION --- */
.cd-tab-container {
    margin-top: 30px;
    margin-bottom: 0;
}

.cd-tab-wrapper {
    display: flex;
    justify-content: end;
}

.nav-pills.cd-nav-tabs {
    width: max-content;
    border-radius: 60px;
    background: var(--bg-color4);
    padding: 5px;
    box-shadow: var(--shadow1);
    margin-bottom: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tab-pane {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    0% {
        opacity: 0.5;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cd-nav-tabs .nav-link {
    border-radius: 30px;
    padding: 7px 20px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cd-nav-tabs .nav-link i {
    font-size: 1.1rem;
}

.cd-nav-tabs .nav-link.active {
    color: rgb(var(--black));
    box-shadow: var(--shadow3);
    background: rgb(var(--white));
}

.cd-nav-tabs .nav-link:hover:not(.active) {
    background-color: rgb(var(--primary-color), 0.1);
    color: rgb(var(--primary-color));
}

/* --- OTHER STYLES --- */
.cd-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 2rem;
}

.cd-section-header h4 {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 10px;
}

.cd-empty-state {
    background: var(--card);
    border-radius: 30px;
    padding: 32px 30px 45px;
    text-align: center;
    box-shadow: var(--shadow1);
    border: 1px solid var(--border-color1);
}

.cd-empty-icon {
    font-size: 4.5rem;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
}

.cd-btn {
    border-radius: 50px;
    padding: 0.8rem 2rem;
    font-weight: 500;
    border: none;
    transition: var(--transition);
}

.cd-btn-primary {
    background: var(--dark-olive);
    color: rgb(var(--white));
}

.cd-btn-primary:hover {
    opacity: 0.9;
    color: rgb(var(--white));
    transform: translateY(-2px);
}

.cd-btn-hero {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgb(var(--white));
}

.cd-btn-hero:hover {
    background: rgb(var(--white));
    color: var(--dark-olive);
}

/* Modal Customization */
#inviteModal .modal-dialog {
    max-width: 480px;
}

#addProposalModal .modal-dialog {
    max-width: 730px;
}

#manualProposalModal .modal-dialog,
#aiSuggestionModal .modal-dialog,
.editProposalModal .modal-dialog {
    max-width: 680px;
}

#inviteModal .modal-body,
#addProposalModal .modal-body,
#manualProposalModal .modal-body,
#aiSuggestionModal .modal-body {
    padding: 20px 0 20px !important;
}

#manualProposalModal .modal-body,
.editProposalModal .modal-dialog .modal-body {
    padding-right: 15px !important;
    max-height: 670px !important;
    overflow-y: auto;
}

#inviteModal .modal-header,
#addProposalModal .modal-header,
#manualProposalModal .modal-header,
#aiSuggestionModal .modal-header {
    padding: 0;
}

.invite-copy-icon {
    width: 50px;
    height: 50px;
    background: rgb(var(--white));
    color: rgb(var(--black));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 20px;
}

.cd-input-group {
    background: var(--bg);
    padding: 20px;
    border-radius: 20px;
}

.invite-code {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

#inviteModal .modal-header .btn-close,
#addProposalModal .modal-header .btn-close,
#manualProposalModal .modal-header .btn-close,
#aiSuggestionModal .modal-header .btn-close {
    background-size: 14px;
}

#inviteModal .modal-header .modal-title,
#addProposalModal .modal-header .modal-title,
#manualProposalModal .modal-header .modal-title,
#aiSuggestionModal .modal-header .modal-title {
    font-size: 28px;
    font-weight: 400;
}

.cd-modal-content {
    border-radius: 30px;
    border: none;
    padding: 30px;
}

.cd-input {
    border-radius: 12px;
    border: 1px solid var(--border-color2);
    padding: 15px 20px;
    width: 100%;
    font-size: 16px;
    background: rgb(var(--white));
}

.cd-input:focus-visible {
    border: 1px solid var(--input-color2);
    box-shadow: none;
}

.cd-label-sm {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgb(var(--muted));
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.trip-fund-switch {
    background: var(--bg);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--border-color2);
}

.trip-fund-switch .form-switch {
    padding-left: 0 !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.cd-proposal-choice {
    background: var(--bg-color4);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    height: 100%;
}

.add-fund-modal .form-switch .form-check-input {
    width: 50px;
    height: 25px;
}

.switch-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.switch-container .switch-icon {
    width: 50px;
    height: 50px;
    background: rgb(var(--white));
    color: rgb(var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.switch-container .switch-label {
    display: flex;
    flex-direction: column;
}

.switch-container .switch-label .balance {
    font-size: 12px;
    color: var(--muted);
}

.cd-proposal-choice:hover {
    background: var(--bg);
}

.cd-proposal-choice h4 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 500;
}

.cd-proposal-choice p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.proposal-choice-icon {
    width: 50px;
    height: 50px;
    background: rgb(var(--white));
    color: rgb(var(--primary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.day-activity {
    border-radius: 20px;
    background: var(--bg-color4);
    margin-bottom: 16px;
    padding: 20px;
}

.add-day-btn {
    width: 100%;
    background: transparent;
    border: 2px dashed var(--border-color2);
    font-size: 18px;
    color: var(--muted);
    padding: 15px 24px;
    margin: 20px 0 30px;
    border-radius: 30px;
    transition: var(--transition);
}

.add-day-btn:hover {
    border: 2px dashed rgb(var(--primary-color), 0.5);
}

/* --- PROPOSAL CARDS --- */
.cd-proposal-list-card {
    background: rgb(var(--white));
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 24px;
    display: flex;
    gap: 1.5rem;
    box-shadow: var(--shadow1);
    border: 1px solid rgba(var(--primary-color), 0.1);
    transition: var(--transition);
}

.cd-proposal-list-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow1);
}

.cd-vote-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    justify-content: center;
    background: var(--bg);
    border-radius: 20px;
    padding: 12px;
    min-width: 55px;
}

.cd-vote-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 1.2rem;
    transition: var(--transition);
    padding: 5px;
    cursor: pointer;
}

.cd-vote-btn:hover {
    color: var(--dark-olive);
}

.cd-vote-btn.active-like {
    color: #27ae60 !important;
}

.cd-vote-btn.active-dislike {
    color: #e74c3c !important;
}

.cd-vote-count {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 4px 0;
    color: #444;
}

.cd-proposal-content {
    flex-grow: 1;
}

.cd-ai-badge {
    background: rgb(var(--primary-color), 0.08);
    color: rgb(var(--primary-color));
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cd-proposal-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cd-proposal-author {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 10px;
}

.cd-proposal-info {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 12px;
}

.cd-proposal-summary {
    color: var(--body-color);
    font-size: 18px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.cd-view-details-btn {
    background: var(--bg);
    color: #4a503d;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 400;
    transition: var(--transition);
    align-self: flex-start;
}

.cd-view-details-btn:hover {
    background: rgb(var(--primary-color));
    color: rgb(var(--white));
}

/* Card Actions */
.cd-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
}

.cd-action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.cd-btn-view {
    background: var(--bg);
    color: rgb(var(--black));
    width: auto;
    padding: 0 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
}

.cd-btn-edit {
    background: var(--bg);
    color: rgb(var(--black));
}

.cd-btn-delete {
    background: #fff1f2;
    color: #e11d48;
}

.cd-action-btn:hover {
    transform: scale(1.1);
    filter: brightness(0.95);
}

.cd-btn-view:hover {
    background: var(--bg-color1);
    color: rgb(var(--black));
    transform: none;
}

@media screen and (max-width: 768px) {
    .cd-proposal-list-card {
        flex-direction: column-reverse;
    }

    .cd-vote-section {
        flex-direction: row;
        gap: 22px;
        width: max-content;
        border-radius: 12px;
        padding: 0 12px;
    }
}

/* Accordion Styles */
.itinerary-details {
    background: var(--bg);
}

.itinerary-accordion .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 1rem;
}

.itinerary-accordion .accordion-button {
    background: rgb(var(--white));
    border-radius: 20px !important;
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    color: var(--body-color);
    box-shadow: var(--shadow1);
}

.itinerary-accordion .accordion-button {
    border: 1px solid transparent;
}

.itinerary-accordion .accordion-button:not(.collapsed) {
    background: rgb(var(--white));
    color: var(--body-color);
    box-shadow: none;
    border-radius: 20px 20px 0 0 !important;
    border-top: transparent;
    border-bottom: 1px solid var(--border-color1);
}

.itinerary-accordion .accordion-button::after {
    background-size: 1rem;
}

.itinerary-accordion .accordion-body {
    padding: 20px;
    background: rgb(var(--white));
    border-radius: 0 0 20px 20px;
}

/* Activity Grid */
.itinerary-activity-card {
    background: rgb(var(--white));
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    border: 1px solid #f0f0f0;
    transition: 0.5s;
}

.itinerary-activity-card:hover {
    box-shadow: var(--shadow1);
}

.itinerary-label-sm {
    display: block;
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 8px;
}

.itinerary-activity-card h6 {
    font-size: 22px;
}

/* Top Cards */
.cd-expenses .cd-card-summary {
    background: var(--card);
    border-radius: 40px;
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow1);
    border: 1px solid var(--border-color1);
    position: relative;
}

.cd-expenses .cd-card-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.cd-expenses .cd-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cd-expenses .cd-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cd-expenses .cd-icon-budget {
    background-color: rgba(var(--soft-magenta), 0.1);
    color: rgb(var(--soft-magenta));
}

.cd-expenses .cd-icon-fund {
    background: rgba(var(--vivid-orange-rgb), 0.1);
    color: var(--vivid-orange);
}

.cd-expenses .cd-icon-settle {
    background-color: rgba(var(--soft-blue), 0.1);
    color: #3b5bdb;
}

.cd-expenses .cd-label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.5px;
}

.cd-expenses .cd-badge-status {
    font-size: 14px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
}

.cd-expenses .cd-badge-red {
    background: rgba(var(--soft-red), 0.1);
    color: rgb(var(--soft-red));
}

.cd-expenses .cd-amount-main {
    font-size: 34px;
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 1;
}

.cd-expenses .cd-amount-sub {
    font-size: 16px;
    color: var(--muted);
    margin-left: 5px;
}

/* Animated Progress Bar */
@keyframes cd-grow {
    from {
        width: 0;
    }
}

.cd-expenses .cd-progress-container {
    height: 8px;
    background: var(--bg-color4);
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

.cd-expenses .cd-progress-bar {
    height: 100%;
    border-radius: 10px;
    animation: cd-grow 1.5s cubic-bezier(0.1, 0.5, 0.5, 1);
}

.cd-expenses .cd-bar-red {
    background-color: rgb(var(--soft-red));
}

.cd-expenses .cd-bar-orange {
    background-color: var(--vivid-orange);
}

.cd-expenses .cd-footer-info {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--muted);
}

.expense-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color1);
}

.cd-expenses .expense-card-bottom .cd-label {
    font-size: 16px;
    font-weight: 500;
    color: rgb(var(--black));
}

.cd-expenses .cd-text-red {
    color: rgb(var(--soft-red));
}

.cd-expenses .cd-text-green {
    color: var(--moderate-lime-green);
}

/* Modal Styles */
.add-fund-modal .cd-modal-content {
    border-radius: 40px;
    border: none;
    padding: 20px;
}

.add-fund-modal .cd-modal-title {
    font-family: serif;
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.add-fund-modal .cd-form-label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.add-fund-modal .cd-form-input {
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 12px 18px;
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
}

.add-fund-modal .cd-form-input:focus {
    box-shadow: none;
    border-color: var(--accent);
}

.cd-input-active.active {
    background: var(--bg) !important;
}

.cd-input-active.active i {
    opacity: 1;
    visibility: visible;
}

.cd-input-active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left !important;
}

.cd-input-active i {
    opacity: 0;
    visibility: hidden;
}

.add-fund-modal .cd-btn-cancel {
    background: transparent;
    border: none;
    color: #5a5e44;
    font-weight: 600;
    font-size: 15px;
}

.cd-btn-add {
    background-color: var(--modal-btn-bg);
    color: white;
    border-radius: 30px;
    padding: 12px 40px;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


/* Settlements Card */

.cd-settlement-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: auto;
    height: 120px;
}

.cd-expenses .cd-settlement-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.cd-expenses .cd-user-link {
    font-weight: 600;
    text-decoration: none;
}

.cd-expenses .cd-user-from {
    color: rgb(var(--soft-red));
}

.cd-expenses .cd-user-to {
    color: var(--moderate-lime-green);
}

/* Table Section */
.cd-expenses .cd-main-table-card {
    background: var(--card);
    border-radius: 40px;
    margin-top: 30px;
    overflow: hidden;
    box-shadow: var(--shadow1);
    border: 1px solid var(--border-color1);
}

.cd-expenses .cd-table-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color1);
}

.cd-expenses .cd-table-title {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 1px;
}

.cd-expenses .table-responsive {
    padding: 10px 20px;
}

.cd-expenses .cd-custom-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
}

.cd-expenses .cd-custom-table th {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--muted);
    padding: 0 15px;
    border: none;
    white-space: nowrap;
}

.cd-expenses .cd-custom-table th:last-child {
    text-align: right;
    padding-right: 0;
}

.cd-expenses .cd-custom-table td {
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #f8f9fa;
}

.cd-expenses .cd-member-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cd-expenses .cd-avatar {
    min-width: 36px;
    max-width: 36px;
    width: 100%;
    height: 36px;
    border-radius: 50%;
    background: #4a5568;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

.cd-expenses .cd-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.cd-expenses .cd-member-name {
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
}

.cd-expenses .cd-mini-progress-box {
    min-width: 140px;
}

.cd-expenses .cd-mini-label {
    font-size: 14px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.cd-expenses .cd-mini-bar {
    height: 5px;
    background: #f2f2f2;
    border-radius: 5px;
    overflow: hidden;
}

.cd-expenses .cd-mini-fill {
    height: 100%;
    background: #22c55e;
    border-radius: 5px;
    animation: cd-grow 1.5s cubic-bezier(0.1, 0.5, 0.5, 1);
}

.cd-expenses .cd-bold-amount {
    font-weight: 700;
    font-size: 15px;
}

.cd-expenses .cd-status-paid {
    color: #22c55e;
    font-weight: 500;
    font-size: 16px;
}

.cd-expenses .cd-cost-share {
    color: var(--muted);
    font-size: 16px;
}

.cd-expenses .cd-status-summary {
    line-height: 1.2;
}

.cd-expenses .cd-status-main {
    font-weight: 500;
    font-size: 16px;
    display: block;
}

.cd-expenses .cd-status-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.cd-expenses .cd-text-saved {
    color: #22c55e;
}

.cd-expenses .cd-text-due {
    color: #ef4444;
}

.cd-expenses .cd-text-settled {
    color: #999;
}

.cd-expenses .cd-btn-plus {
    cursor: pointer;
    transition: var(--transition);
}

.cd-expenses .cd-btn-plus:hover {
    transform: scale(1.2);
    color: var(--vivid-orange);
}

.cd-expenses .cd-nav-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
}

.cd-expenses .cd-tabs {
    display: flex;
    background: #f0f0ea;
    padding: 5px;
    border-radius: 30px;
    gap: 5px;
}

.cd-expenses .cd-tab-btn {
    background: transparent;
    border: none;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 25px;
    transition: var(--transition);
}

.cd-expenses .cd-tab-btn.active {
    background: white;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Table Section */
.cd-expenses .cd-main-table-card {
    background: var(--card);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow1);
    border: 1px solid var(--border-color1);
    margin-top: 24px;
    padding: 10px 0;
}

.cd-expenses .cd-custom-table {
    width: 100%;
    border-collapse: collapse;
}

.cd-expenses .cd-custom-table td {
    padding: 20px 30px;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-color1);
}

.cd-expenses .cd-custom-table td:has(.cd-expense-info),
.cd-expenses .cd-custom-table td:has(.cd-expense-icon) {
    padding-left: 0 !important;
}

.cd-expenses .cd-custom-table td:has(.cd-expense-icon) {
    padding-right: 15px !important;
}

.cd-expenses .cd-custom-table td:has(.cd-status-summary),
.cd-expenses .cd-custom-table td.cd-expense-amount {
    padding-right: 0 !important;
    text-align: right;
}

.cd-expenses .cd-custom-table tr:last-child td {
    border-bottom: none;
}

/* Expense Row Styles */
.cd-expenses .cd-expense-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cd-expenses .icon-food {
    background: rgba(var(--vivid-orange-rgb), 0.1);
    color: var(--vivid-orange);
}

.cd-expenses .icon-transport {
    background: rgba(var(--soft-blue), 0.1);
    color: #3b5bdb;
}

.cd-expenses .icon-hotel {
    background: rgba(var(--soft-magenta), 0.1);
    color: rgb(var(--soft-magenta));
}

.cd-expenses .cd-expense-info {
    display: flex;
    flex-direction: column;
}

.cd-expenses .cd-expense-name,
.cd-expenses .cd-log-title {
    font-weight: 500;
    font-size: 18px;
    color: rgb(var(--black));
}

.cd-expenses .cd-expense-meta,
.cd-expenses .cd-log-sub {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    margin-top: 5px;
}

.cd-expenses .cd-tag {
    color: var(--muted);
    background: var(--bg-color4);
    padding: 2px 10px;
    border-radius: 15px;
}

.cd-expenses .cd-paid-by {
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.cd-expenses .cd-trip-fund-label {
    color: rgb(var(--soft-red));
    display: flex;
    align-items: center;
    gap: 4px;
}

.cd-expenses .cd-expense-amount {
    text-align: right;
}

.cd-expenses .cd-amount-val {
    display: block;
    font-weight: 600;
    font-size: 20px;
    color: rgb(var(--black));
}

.cd-expenses .cd-date-val,
.cd-expenses .cd-log-date {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
}

.cd-expenses .cd-log-amount {
    display: block;
    font-weight: 600;
    font-size: 20px;
    color: rgb(var(--primary-color));
}

.cd-expenses .cd-custom-table td:has(.cd-member-cell) {
    padding-left: 0px !important;
}

.cd-expenses .cd-custom-table td.text-end {
    padding-right: 0px !important;
}

.cd-expenses .cd-log-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(var(--primary-color), 0.1);
    color: rgba(var(--primary-color));
}

/* Settlement Specific */
.cd-expenses .cd-user-link {
    font-weight: 600;
    text-decoration: none;
}

.cd-expenses .cd-user-from {
    color: rgb(var(--soft-red));
}

.cd-expenses .cd-user-to {
    color: var(--moderate-lime-green);
}

@media (max-width: 452px) {
    .cd-expenses .cd-card-summary {
        border-radius: 20px;
        padding: 16px;
    }

    .cd-expenses .cd-table-header {
        padding: 25px 16px;
    }

    .cd-expenses .cd-main-table-card {
        border-radius: 20px;
    }

    .cd-nav-tabs .nav-link {
        padding: 10px 20px;
        font-size: 16px;
    }

    .nav-pills.cd-nav-tabs {
        flex-direction: column;
        border-radius: 20px;
        gap: 5px;
        padding: 20px;
    }
}

/* ----------------- collaboration dashboard --------------------- */

/* ----------------- collaboration hero --------------------- */
/* Hero Section */
.collaboration-preview-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    background:
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url("https://images.unsplash.com/photo-1582967788606-a171c1080cb0?auto=format&fit=crop&q=80&w=2000") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgb(var(--white));
    padding: 20px;
}

.cp-hero-controls {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 10;
}

.cp-btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgb(var(--white));
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.cp-btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgb(var(--white));
}

.cp-btn-white {
    background: rgb(var(--white));
    color: #000;
    border-radius: 50px;
    padding: 8px 24px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: var(--shadow2);
}

.cp-hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: rgb(var(--white));
    font-weight: 500;
    line-height: 140%;
    max-width: 915px;
    margin-top: 40px;
}

/* Main Itinerary Card */
.cp-itinerary-card {
    background: rgb(var(--white));
    border-radius: 40px;
    padding: 60px;
    box-shadow: var(--shadow3);
    margin-bottom: 30px;
}

.cp-itinerary-card:last-child {
    margin-bottom: 0;
}

.cp-day-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.cp-day-number {
    font-size: 80px;
    font-weight: 300;
    color: #e0e0e0;
    line-height: 0.8;
    margin-right: 20px;
}

.cp-day-title-wrap h2 {
    font-size: 32px;
    margin: 0;
    font-weight: 600;
    color: var(--heading-color);
}

.cp-day-subtitle {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--muted);
    margin-top: 5px;
    display: block;
}

/* Timeline Items */
.cp-timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.cp-timeline-item:last-child {
    margin-bottom: 0;
}

.cp-timeline-item::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 45px;
    bottom: -45px;
    width: 1px;
    background-color: var(--border-color2);
}

.cp-timeline-item:last-child::before {
    display: none;
}

.cp-activity-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background: var(--grayish-violet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 14px;
    border: 1px solid var(--border-color2);
}

.cp-activity-type {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
    margin-bottom: 8px;
    display: block;
}

.cp-activity-desc {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
}

.add-paid-by {
    background: none;
    border: none;
    color: rgb(var(--black));
    font-weight: 600;
    cursor: pointer;
}

.remove-payer {
    color: #ff6b6b;
    cursor: pointer;
    font-size: 1.2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-bottom: 20px;
}

.remove-payer:hover {
    color: #fa5252;
}

/* Style for the container to hold all rows */
#payers-wrapper {
    margin-top: 10px;
}

/* Sidebar Stay Cards */
.cp-sidebar-section {
    padding-left: 20px;
    position: sticky;
    top: 80px;
    height: 90vh;
    overflow-y: auto;
}

.cp-stay-label {
    font-size: 20px;
    font-weight: 500;
    color: rgb(var(--muted));
    margin-bottom: 20px;
    background: rgba(var(--white));
    box-shadow: var(--shadow3);
    padding: 10px 20px;
    border-radius: 16px;
}

.cp-stay-label i {
    margin-right: 10px;
    color: var(--muted);
}

.cp-stay-card {
    background: rgb(var(--white));
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow2);
    margin-bottom: 30px;
    border: 1px solid var(--border-color2);
    transition: var(--transition);
}

.cp-stay-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow3);
}

.cp-stay-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color1);
}

.cp-stay-content {
    padding: 20px;
    position: relative;
}

.cp-stay-content .listing-category {
    position: absolute;
    top: -13px;
    right: 20px;
    background: rgba(var(--primary-color));
    color: rgb(var(--white));
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.cp-stay-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 500;
}

.cp-stay-content p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 15px;
}

.cp-map-link {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    color: rgb(var(--black));
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
}

.cp-map-link i {
    margin-right: 8px;
    font-size: 14px;
}

.modal-footer-btn-container {
    width: 100%;
    display: flex;
    gap: 10px;
}

.modal-footer-btn-container .cmn-btn2,
.modal-footer-btn-container .cmn-btn {
    width: 50%;
    padding: 16px 20px;
    font-size: 20px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .cp-itinerary-card {
        padding: 30px;
        margin-bottom: 40px;
    }

    .cp-sidebar-section {
        padding-left: 0;
        position: relative;
        top: 30px;
        height: 100%;
        overflow-y: hidden;
    }

    .cp-sidebar-section .cp-stay-card {
        margin-bottom: 0;
    }

    .cp-content-container {
        margin-top: -40px;
    }

    .collaboration-preview-hero {
        height: 100%;
        min-height: 420px;
    }
}

@media (max-width: 500px) {
    .collaboration-preview-hero {
        height: 100%;
        min-height: 420px;
        align-items: flex-end;
        padding: 0 0 30px 0;
    }

    .cp-hero-title {
        font-size: clamp(1.8rem, 6vw, 3.5rem);
    }

    .cp-hero-controls {
        flex-direction: column;
        gap: 15px;
        top: 50px;
    }

    .cp-itinerary-card {
        padding: 16px;
        border-radius: 16px;
    }

    .cp-day-number {
        font-size: 48px;
        margin-right: 14px;
    }

    .cp-day-title-wrap h2 {
        font-size: 22px;
        font-weight: 500;
    }

    .cp-day-subtitle {
        font-size: 12px;
    }

    .cp-day-header {
        margin-bottom: 30px;
    }

    .cp-timeline-item {
        padding-left: 50px;
        margin-bottom: 25px;
    }

    .cp-stay-label {
        border-radius: 10px;
    }

    .cd-modal-content {
        border-radius: 20px;
        padding: 30px 15px;
    }

    .cd-hero-title {
        font-size: 32px;
    }

    .cd-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .day-activity {
        padding: 15px;
    }

    .modal-footer-btn-container {
        flex-direction: column;
    }

    .modal-footer-btn-container .cmn-btn2,
    .modal-footer-btn-container .cmn-btn {
        width: 100%;
        padding: 16px 20px;
        font-size: 16px;
    }

    #manualProposalModal .modal-body {
        padding-right: 0 !important;
    }
}

/* ----------------- collaboration hero --------------------- */

.select2-dropdown {
    z-index: 9999;
}

.add-fund-modal .input-group {
    flex-wrap: nowrap;
    margin-bottom: 20px;
}

.add-fund-modal .input-group .select2.select2-container.select2-container--default {
    width: auto !important;
}

.add-fund-modal .input-group .select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    border-radius: 0 10px 10px 0;
}

.payer-row .select2 {
    margin-bottom: 20px;
}

.py-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}


.resolved-btn {
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.day-activity textarea {
    min-height: 50px !important;
    height: 50%;
}

.proposal_action_btn {
    background: rgba(var(--primary-color), 0.05);
    border: 1px solid #ebebeb;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 40px;
    height: 40px;
}

.cd-card-actions .dropdown-menu {
    min-width: 6rem !important;
    padding: 0 !important;
}

.cd-card-actions .dropdown-menu li:last-child .dropdown-item {
    border-bottom: none !important;
}

.cd-card-actions .dropdown-menu .dropdown-item {
    border-radius: 0;
    padding: 6px 8px;
    font-size: 16px;
    font-weight: 500;
    justify-content: center;
    border-bottom: 1px solid #f1f1f1 !important;
    margin-bottom: 0 !important;
}

.cd-proposal-list-card.active {
    background: rgb(var(--primary-color), 0.1);
    border-color: rgb(var(--primary-color));
    box-shadow: var(--shadow1);
}

.cd-proposal-list-card.active .cd-card-actions a {
    background-color: #FFFFFF;
}

.cd-proposal-list-card .cd-card-actions a i {
    line-height: 1;
}

.trip_details {
    border: 1px solid #ebebeb;
    border-radius: 10px;
    margin-bottom: 50px;
    background: #fff;
    box-shadow: var(--shadow2);
    overflow: hidden;
}

.trip_details .cmn-list4 {
    border: none;
    box-shadow: none;
    padding: 0;
    background: rgb(var(--primary-color), 0.1);
    padding: 20px 40px;
    gap: 0;
}

.trip_details .cmn-list4 .cmn-list4-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trip_details .cmn-list4 .cmn-list4-item .text-box b {
    display: block;
}

.trip_details .cmn-list4 .cmn-list4-item .icon-box {
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgb(var(--primary-color));
    color: #fff;
}

.trip_details_wrapper {
    padding: 40px 40px 20px;
}

.trip-preferences-category {
    font-size: 14px;
    font-weight: 400;
    color: rgb(var(--black));
    border: 1px solid #ebebeb;
    padding: 5px 10px;
    border-radius: 16px;
    background: rgb(var(--primary-color), 0.1);
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 10px;
}

.trip_details_wrapper .traveler-section {
    border: 1px solid rgb(var(--primary-color), 0.1);
    border-radius: 10px;
    padding: 24px;
    background: rgb(var(--primary-color), 0.1);
}

.td-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}

.td-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.td-feature-item:last-child {
    margin-bottom: 0;
}

.td-icon-wrapper {
    background-color: rgb(var(--primary-color), 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
    flex-shrink: 0;
    font-size: 14px;
    line-height: 1;
    color: rgb(var(--primary-color));
}

.td-feature-text {
    font-size: 16px;
    font-weight: 400;
}

.sidebar-widget-area .reviews span {
    display: block;
}

#aiSuggestionModal .cd-input:focus-visible {
    border-color: var(--green) !important;
}

.btn-1.save_to_favorite_list.savebtn.active:hover {
    color: white !important;
}

/* --------------------- new ------------------- */
.product-box-wrapper {
    height: 100%;
}


/* ---------------------------------
responsive
---------------------------------- */
/* MackBook */
@media only screen and (max-width: 1440px) {}

@media (max-width: 1279px) {
    .navbar-toggler {
        display: block !important;
    }

    .navbar-collapse {
        display: none !important;
    }

    .offcanvas {
        visibility: visible;
    }

    .offcanvas.show:not(.hiding),
    .offcanvas.showing {
        transform: none !important;
    }
}

@media (min-width: 1280px) {
    .navbar-toggler {
        display: none !important;
    }

    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}

/* Large screen  */
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
    .header-search .search-box2 {
        min-width: 300px;
    }
}

/* Medium screen  */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-search .search-box2 {
        min-width: 250px;
    }

    .navbar .nav-right {
        position: absolute;
        right: 65px;
    }

    .cp-sidebar-section {
        padding-left: 0;
    }

    .cp-itinerary-card {
        padding: 40px;
    }

    .nav-pills.cd-nav-tabs {
        border-radius: 20px;
        padding: 14px;
        gap: 10px;
    }

    .cd-nav-tabs .nav-link {
        padding: 5px 18px;
        font-size: 14px;
        gap: 10px;
    }
}

/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header-search .search-box2 {
        min-width: 280px;
    }

    .inline-date-range-picker .month-wrapper .month1,
    .inline-date-range-picker .month-wrapper .month2 {
        margin-bottom: 30px;
    }

    #homeListingsGrid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }

    .cp-sidebar-section {
        display: grid;
        grid-template-columns: 50% 1fr;
        gap: 24px;
    }
}

/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
    .navbar .nav-right {
        position: absolute;
        right: 80px;
    }

    .multi-step-progress-section {
        width: 100%;
    }

    .about-content {
        padding: 80px 0 0;
    }

    .about .container {
        padding: 20px 15px 0;
    }

    .faq-img-card-overlay {
        background: linear-gradient(to top, rgba(14, 7, 0, 0.55) 0%, rgba(14, 7, 0, 0) 100%);
    }

    .blog-box {
        padding: 0;
    }

    .chat-btn {
        bottom: 60px;
        padding: 0 20px;
        font-size: 14px;
    }

    .chat-btn .btn-wrapper .btn-single {
        height: 45px;
    }

    .chat-btn .btn-wrapper {
        height: 45px;
    }

    #offcanvasChat .tab-header {
        overflow-x: auto;
    }

    #offcanvasChat .tab-button {
        padding: 25px 20px 20px;
    }

    .offcanvasChat-inner .feature-card {
        margin-top: 24px;
        margin: 0;
    }

    .offcanvas-body .app .tab-body.active {
        padding: 20px 0 0;
    }

    .history-title {
        font-size: 16px;
    }

    .food-accordion .accordion-item {
        padding: 0 10px;
    }

    .controls {
        bottom: 32px;
    }

    .guidance-tag-wrapper {
        padding: 0;
    }

    .tag-row {
        flex-direction: column;
    }

    .tag-row a {
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 10px;
        white-space: normal;
    }

    .guidance-container .form-control {
        padding: 0 15px;
    }

    .guidance-container .search-btn {
        width: 37px;
        height: 37px;
        right: 6px;
    }

    .tag-scroll-btn.next {
        display: none;
    }

    .tag-scroll-btn.prev {
        display: none;
    }

    .savebtn {
        padding: 6px 15px;
        font-size: 15px;
        font-weight: 500;
    }

    .write-review-btn {
        padding: 14px 20px !important;
        font-weight: 500 !important;
    }

    .support {
        padding: 80px 0;
    }

    .support .card {
        padding: 0;
    }

    .banner-section h3 {
        font-size: 28px;
    }

    .trip_details_wrapper {
        padding: 40px 16px 20px;
    }

    .listing-breadcrumb {
        margin-bottom: 0;
    }

    .navbar:has(.custom-nav) {
        padding: 0 !important;
    }

    .navbar:has(.custom-nav) .container {
        padding: 10px !important;
    }

    .navbar:has(.custom-nav) .nav-right {
        right: 50px !important;
    }

    .navbar .navbar-toggler {
        width: auto;
        height: auto;
        padding: 0;
        border: none;
    }

    .checkout-panel .summary-value.highlight {
        font-size: 1.2em;
    }

    .collaboration-dashboard .dashboard-header {
        flex-direction: column;
    }

    .collaboration-dashboard .dashboard-header .d-flex.gap-2 {
        flex-direction: column;
    }

    .content-card {
        padding: 30px 16px !important;
    }

    textarea.pv-input {
        min-height: 185px !important;
    }

    .tfa-card {
        padding: 22px 16px;
    }

    button.copy-btn.copy-ref-btn {
        background: #fff !important;
    }

    .tfa-header .d-flex.align-items-center.gap-3 {
        flex-direction: column;
        text-align: center;
    }

    .fm-header {
        padding: 1.5rem 1rem 0 !important;
    }

    .fm-close-btn {
        padding: 0 !important;
    }

    .status-tabs {
        gap: 10px !important;
        flex-wrap: wrap;
    }

    .status-tabs .stab {
        padding: 5px 6px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 500;
        gap: 5px !important;
    }

    .ticket-list .ticket-row {
        border-radius: 10px !important;
        grid-template-columns: auto !important;
        gap: 10px !important;
        padding: 16px 16px !important;
        text-align: center;
    }

    .ticket-list .trow-reply {
        text-align: center !important;
    }

    .ticket-list .trow-meta {
        justify-content: center;
    }

    .listing-form .form-group .type-sel {
        grid-template-columns: auto;
    }

    .listing-form {
        padding: 1rem;
    }

    .lang-switcher-container {
        padding: 1rem !important;
    }

    .lang-card {
        padding: 0.5rem !important;
    }

    .lang-grid {
        grid-template-columns: auto !important;
    }

    .dropzone {
        padding: 0.5rem;
    }


    .cd-proposal-title {
        font-size: 18px;
    }

    .editProposalModal .modal-dialog .modal-body {
        padding: 0 !important;
    }

    .cd-expenses .cd-amount-main {
        font-size: 22px;
    }

    .cd-expenses .cd-amount-sub {
        font-size: 14px;
    }

    #inviteModal button.cmn-btn.w-100.mt-2.py-3 {
        padding: 10px 20px !important;
    }

    .itinerary-details .itinerary-details-title {
        font-size: 22px;
        font-weight: 500;
        line-height: 150%;
    }

    .itinerary-details .itinerary-accordion .accordion-button {
        padding: 1rem 1rem;
        font-weight: 500;
        font-size: 16px;
    }

    .itinerary-details .itinerary-activity-card {
        padding: 14px;
    }

    .itinerary-details .itinerary-activity-card p {
        font-size: 14px;
    }

    .itinerary-details .itinerary-accordion .accordion-body {
        padding: 14px;
    }

    .cp-stay-card {
        margin-bottom: 24px !important;
    }

    .payment-section .gateway-item .gateway-info {
        align-items: flex-start;
        flex-direction: column;
    }

    .payment-section .gateway,
    .payment-section .payment-summary {
        padding: 25px 15px;
    }

}

/* ---------------------------------
responsive
---------------------------------- */


.editProposalModal .day-activity textarea {
    height: 80%;
}