@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
    --body-font: "Be Vietnam Pro", serif;
    --heading-font: "Be Vietnam Pro", serif;
    --theme-color: #11b76b;
    --theme-bg-light: #f6f9fc;
    --theme-bg-light2: #f1f6fa;
    --theme-bg-light3: #c6ebfe;
    --theme-bg-light4: #fdfbef;
    --body-text-color: #757f95;
    --color-white: #ffffff;
    --color-dark: #081828;
    --color-dark2: #272727;
    --color-green: #11b76b;
    --color-blue: #1f70b8;
    --color-skyblue: #00bfff;
    --color-yellow: #fba707;
    --color-gray: #ececec;
    --color-red: #f05454;
    --hero-overlay-color: #01060f;
    --slider-arrow-bg: rgba(255, 255, 255, 0.2);
    --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    --box-shadow2: 0 0 15px rgba(0, 0, 0, 0.17);
    --transition: all 0.5s ease-in-out;
    --transition2: all 0.3s ease-in-out;
    --border-info-color: rgba(0, 0, 0, 0.08);
    --border-info-color2: rgba(0, 0, 0, 0.05);
    --border-white-color: rgba(255, 255, 255, 0.08);
    --border-white-color2: rgba(255, 255, 255, 0.05);
    --footer-bg: #24a77e;
    --footer-text-color: #f5faff;
    --body-bg-rgb: 255, 255, 255;
    --primary-rgb: 36, 167, 126;
    --secondary-rgb: 247, 131, 38;
    --warning-rgb: 245, 177, 75;
    --info-rgb: 78, 194, 240;
    --success-rgb: 23, 202, 104;
    --danger-rgb: 236, 95, 103;
    --pink-rgb: 227, 74, 230;
    --blue-rgb: 38, 143, 230;
    --light-rgb: 253, 253, 254;
    --dark-rgb: 25, 31, 43;
    --orange-rgb: 253, 126, 20;
    --teal-rgb: 74, 201, 189;
    --purple-rgb: 120, 145, 239;
    --default-body-bg-color: rgb(var(--body-bg-rgb));
    --primary-color: rgb(var(--primary-rgb));
    --primary-hover: rgba(var(--primary-rgb), 0.8);
    --primary-border: rgb(var(--primary-rgb));
    --primary005: rgba(var(--primary-rgb), 0.05);
    --primary01: rgba(var(--primary-rgb), 0.1);
    --primary02: rgba(var(--primary-rgb), 0.2);
    --primary03: rgba(var(--primary-rgb), 0.3);
    --primary04: rgba(var(--primary-rgb), 0.4);
    --primary05: rgba(var(--primary-rgb), 0.5);
    --primary06: rgba(var(--primary-rgb), 0.6);
    --primary07: rgba(var(--primary-rgb), 0.7);
    --primary08: rgba(var(--primary-rgb), 0.8);
    --primary09: rgba(var(--primary-rgb), 0.9);
    --default-text-color: #6b6b7e;
    --border: #e9e9e9;
    --shadow: 0 3px 10px 0px rgba(0, 0, 0, 0.1);
    --default-background: #ebebeb;
    --custom-white: #fff;
    --custom-black: #000;
    --muted: #7987a1;
    --menu-color: #6b6b7e;
    --border-width: 1px;
    --gray-100: #f9fafb;
    --gray-200: #f2f4f5;
    --gray-300: #e6eaeb;
    --gray-400: #dbdfe1;
    --gray-500: #949eb7;
    --gray-600: #7987a1;
    --gray-700: #4d5875;
    --gray-800: #383853;
    --gray-900: #323251;
    --white-1: rgba(255, 255, 255, 0.1);
    --white-2: rgba(255, 255, 255, 0.2);
    --white-3: rgba(255, 255, 255, 0.3);
    --white-4: rgba(255, 255, 255, 0.4);
    --white-5: rgba(255, 255, 255, 0.5);
    --white-6: rgba(255, 255, 255, 0.6);
    --white-7: rgba(255, 255, 255, 0.7);
    --white-8: rgba(255, 255, 255, 0.8);
    --white-9: rgba(255, 255, 255, 0.9);
    --white-05: rgba(255, 255, 255, 0.05);
    --white-07: rgba(255, 255, 255, 0.07);
    --white-75: rgba(255, 255, 255, 0.075);
    --white-08: rgba(255, 255, 255, 0.08);
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    scroll-behavior: inherit !important;
}

html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    font-style: normal;
    font-size: 14px;
    font-weight: normal;
    color: var(--body-text-color);
    line-height: 1.8;
}

a {
    color: var(--color-dark);
    display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
    outline: none;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    text-decoration: none;
}

a:hover {
    color: var(--color-blue);
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-dark);
    margin: 0px;
    font-weight: 600;
    font-family: var(--heading-font);
    line-height: 1.2;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 35px;
}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 14px;
}

p {
    margin: 0px;
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    height: auto;
}

label {
    color: #999;
    cursor: pointer;
    font-weight: 400;
}

*::-moz-selection {
    background: #d6b161;
    color: var(--color-white);
    text-shadow: none;
}

::-moz-selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

::selection {
    background: #555;
    color: var(--color-white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: #999;
    font-size: 14px;
    opacity: 1;
}

*::placeholder {
    color: #999;
    font-size: 14px;
    opacity: 1;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-ripple div {
    position: absolute;
    border: 4px solid var(--theme-color);
    opacity: 1;
    border-radius: 50%;
    animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes loader-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

.ovrflow-hidden {
    overflow: hidden;
}

.position-relative {
    position: relative;
    z-index: 1;
}

.text-right {
    text-align: right;
}

.space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-pd {
    padding: 0 7rem;
}

.s-pd {
    padding: 0 12rem;
}

.h-100 {
    height: 100%;
}

.h-100vh {
    height: 100vh;
}

.bg {
    background: var(--theme-bg-light) !important;
}

.py-120 {
    padding: 120px 0;
}

.py-110 {
    padding: 110px 0;
}

.py-100 {
    padding: 100px 0;
}

.py-90 {
    padding: 90px 0;
}

.py-80 {
    padding: 80px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.my-120 {
    margin: 120px 0;
}

.my-110 {
    margin: 110px 0;
}

.my-100 {
    margin: 100px 0;
}

.my-90 {
    margin: 90px 0;
}

.my-80 {
    margin: 80px 0;
}

.site-heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.site-title-tagline {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 17px;
    font-weight: 700;
    color: var(--theme-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.site-title {
    font-weight: 700;
    text-transform: capitalize;
    font-size: 34px;
    color: var(--color-dark);
    margin-top: 4px;
}

.site-title span {
    color: var(--theme-color);
}

.site-heading p {
    margin-top: 15px;
}

.site-heading-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.site-heading-inline .site-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.site-heading-inline .site-title img {
    width: 32px;
}

.site-heading-inline a {
    font-weight: 500;
    color: var(--body-text-color);
}

.site-heading-inline a:hover {
    color: var(--theme-color);
}

@media all and (max-width: 767px) {
    .site-heading-inline .site-title {
        font-size: 19px;
    }

    .site-heading-inline .site-title img {
        width: 25px;
    }
}

.theme-btn {
    position: relative;
    font-size: 14px;
    background: var(--theme-color);
    color: var(--color-white);
    padding: 10px 20px 7px 20px;
    display: inline-block;
    vertical-align: middle;
    text-transform: capitalize;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    z-index: 1;
}

  .theme-btn.active {
    background-color: #0056b3;
    color: #fff;
    font-weight: 700;
    border-color: #004085;
    box-shadow: 0 0 8px rgba(0, 86, 179, 0.3);
  }

.theme-btn:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

.theme-btn i {
    margin-left: 5px;
}

.theme-btn span {
    margin-right: 5px;
}

.theme-btn2 {
    background: var(--color-white);
    color: var(--theme-color);
}

.theme-btn2::before {
    background: var(--theme-color);
}

.theme-btn2:hover {
    color: var(--color-white);
}

.header-top {
    padding: 10px 0 12px 0;
    position: relative;
    background: var(--color-dark);
    z-index: 4;
}

.header-top-list li {
    display: inline-block;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 400;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0px 8px 0px 6px;
}

.header-top-list li:last-child {
    border-right: none;
    padding-right: 0;
}

.header-top-list li:first-child {
    padding-left: 0;
}

.header-top-list li a {
    color: var(--color-white);
}

.header-top-list li a:hover {
    color: var(--theme-color);
}

.header-top-list li a i {
    color: var(--theme-color);
    margin-right: 5px;
}

.header-top-right {
    float: right;
}

.header-top-right .dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    padding: 10px;
    min-width: 80px;
}

.header-top-right .dropdown-item {
    color: var(--color-dark);
    border-radius: 10px;
    text-align: center;
}

.header-top-right .dropdown-item:hover {
    background: var(--theme-color);
    color: var(--color-white);
}

.header-top-social a {
    margin-left: 8px;
}

.header-top-list li .header-top-social a i {
    margin-right: 0;
    transition: var(--transition);
}

.header-top-social a:hover i {
    color: var(--color-white);
}

@media all and (max-width: 1199px) {
    .header-top-right .header-top-list li.account,
    .header-top-right .header-top-list li.login {
        display: none;
    }

    .header-top {
        display: none;
    }
}

@media all and (max-width: 991px) {
    .header-top-list li {
        border-right: none;
    }

    .header-top-left .header-top-list li.help {
        display: none;
    }

    .header-top-right .header-top-list li {
        padding-right: 0px;
    }

    .header-top .dropdown-toggle::after {
        float: unset;
    }

    .header-top-social span {
        display: none;
    }
}

@media all and (max-width: 767px) {
    .header-top {
        text-align: center;
    }

    .header-top-right {
        float: unset;
    }

    .header-top-social {
        display: none;
    }
}

.header-middle {
    position: relative;
    background: var(--color-white);
    padding: 18px 0 10px 0;
    z-index: 3;
}

.header-middle-search .search-content {
    display: flex;
    background: var(--color-white);
    border: 1px solid var(--border-info-color);
    padding: 2px 0;
    border-radius: 10px;
    transition: var(--transition);
}

.header-middle-search .search-content:hover {
    border-color: var(--theme-color);
}

.header-middle-search .form-control {
    border-radius: 0px;
    box-shadow: none;
    border: none;
    padding-right: 2px;
}

.header-middle-search .form-control::placeholder {
    color: var(--body-text-color);
}

.header-middle-search .search-btn {
    padding: 5.5px 15px 4.5px 15px;
    border: none;
    background: none;
    color: var(--body-text-color);
    font-size: 18px;
    transition: var(--transition);
}

.header-middle-search .search-btn:hover {
    color: var(--theme-color);
}

.header-middle-search .nice-select {
    border-radius: 12px 0 0 12px;
    border: none;
    font-size: 14px;
    padding-left: 15px;
    line-height: 42px;
    border-right: 1px solid var(--border-info-color);
}

.header-middle-search .nice-select::after {
    width: 8px;
    height: 8px;
    margin-top: -6px;
}

.header-middle-search .nice-select .list {
    border: none;
    border-radius: 15px;
    padding: 10px;
    box-shadow: var(--box-shadow);
    max-height: 300px;
    overflow-y: auto;
}

.header-middle-search .nice-select .option {
    border-radius: 10px;
}

.header-middle-search .nice-select .option:hover {
    background: var(--theme-color);
    color: var(--color-white);
}

.header-middle-right {
    float: right;
}

.header-middle-list li {
    display: inline-block;
}

.header-middle-list .list-item {
    position: relative;
    background: var(--theme-bg-light2);
    color: var(--theme-color);
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    margin-left: 8px;
    transition: var(--transition);
}

.header-middle-list .list-item:hover {
    background: var(--theme-color);
    color: var(--color-white);
}

.header-middle-list .list-item span {
    position: absolute;
    width: 24px;
    height: 24px;
    line-height: 24px;
    color: var(--color-white);
    background: var(--color-red);
    border-radius: 50px;
    font-size: 8px;
    right: -5px;
    top: -10px;
}

.header-middle-list .shop-cart {
    position: relative;
}

.dropdown-cart {
    position: relative;
}

.dropdown-cart-menu {
    position: absolute;
    right: 0;
    top: 60px;
    background: var(--color-white);
    border-radius: 15px;
    padding: 20px 0px;
    box-shadow: var(--box-shadow);
    min-width: 368px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    max-height: 480px;
}

.dropdown-cart:hover .dropdown-cart-menu {
    opacity: 1;
    visibility: visible;
    top: 40px;
}

.dropdown-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-info-color);
    padding: 0px 20px 20px 20px;
}

.dropdown-cart-list {
    padding: 0px 20px;
    max-height: 280px;
    overflow-y: auto;
}

.dropdown-cart-header span,
.dropdown-cart-header a {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    text-transform: uppercase;
}

.dropdown-cart-header a:hover {
    color: var(--theme-color);
}

.dropdown-cart-list li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid var(--border-info-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.dropdown-cart-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.dropdown-cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dropdown-cart-item .cart-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    border: 1px solid var(--border-info-color);
}

.dropdown-cart-item:hover .cart-img img {
    transform: scale(1.09);
}

.dropdown-cart-item .cart-info {
    flex: 1;
}

.dropdown-cart-item .cart-info h4 {
    font-size: 12px;
    margin-bottom: 5px;
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.dropdown-cart-item .cart-info h4 a:hover {
    color: var(--theme-color);
}

.dropdown-cart-item .cart-remove {
    color: var(--color-red);
    font-size: 18px;
    transition: var(--transition);
}

.dropdown-cart-item .cart-remove:hover {
    color: var(--theme-color);
}

.dropdown-cart-bottom {
    padding: 10px 20px 20px 20px;
    margin-top: 15px;
    border-top: 1px solid var(--border-info-color);
}

.dropdown-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-cart-total span {
    color: #222;
    font-size: 13px;
    font-weight: 600;
}

.dropdown-cart-total .total-amount {
    font-size: 14px;
}

.dropdown-cart-bottom .theme-btn {
    display: block;
    padding: 8px 20px;
    margin-top: 10px;
}

.header-middle-line {
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0px;
    bottom: 0px;
    display: flex;
    overflow: hidden;
    z-index: -1;
}

.header-middle-line .line-1 {
    background: #f5c34b;
    width: 10%;
}

.header-middle-line .line-2 {
    background: #6bd68d;
    width: 20%;
}

.header-middle-line .line-3 {
    background: #ec752f;
    width: 20%;
}

.header-middle-line .line-4 {
    background: #7091f5;
    width: 20%;
}

.header-middle-line .line-5 {
    background: #6bd68d;
    width: 20%;
}

.header-middle-line .line-6 {
    background: #fba1b7;
    width: 10%;
}

@media all and (max-width: 991px) {
    .header-middle {
        padding: 15px 0 15px 0;
        background: transparent;
    }

    .header-middle-list .list-item {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }

    .header-middle-list .list-item span {
        width: 15px;
        height: 15px;
        line-height: 16px;
        font-size: 10px;
    }
}

.navbar {
    background: var(--color-white);
    padding-top: 0px;
    padding-bottom: 0px;
    z-index: 2;
}

.navbar.fixed-top {
    background: var(--color-white);
    box-shadow: var(--box-shadow2);
    animation: slide-down 0.7s;
}

@keyframes slide-down {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

.navbar .navbar-brand .logo-display {
    display: block;
}

.navbar .navbar-brand .logo-scrolled {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
    display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
    display: block;
}

.navbar .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-mobile-icon {
    display: inline-block;
    width: inherit;
    height: inherit;
}

.navbar-brand {
    margin-right: 0;
}

.navbar-brand img {
    width: 200px;
}

.navbar .dropdown-toggle::after {
    display: inline-block;
    margin-left: 5px;
    vertical-align: baseline;
    font-family: "Font Awesome 6 Pro";
    content: "\f107";
    font-weight: 600;
    border: none;
    font-size: 10px;
}

.navbar li .new {
    position: absolute;
    background: var(--theme-color);
    color: var(--color-white);
    font-size: 9px;
    font-weight: 500;
    padding: 0px 9px;
    left: 21px;
    top: 10px;
    border-radius: 50px;
    text-align: center;
    text-transform: uppercase;
}

.navbar li .new::before {
    position: absolute;
    content: "";
    left: 8px;
    bottom: -8px;
    border: 4px solid var(--theme-color);
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
}

a.dropdown-menu,
a.dropdown-item {
    font-size: 14px;
}

@media all and (max-width: 1399px) {
    .nav-right {
        margin-left: 25px !important;
    }

    .navbar .nav-item .nav-link {
        margin-right: 15px !important;
    }
}

@media all and (min-width: 992px) {
    .navbar .nav-item .nav-link {
        margin-right: 22px;
        padding: 24px 0 24px 0;
        font-size: 14px;
        font-weight: 500;
        color: var(--color-dark);
        text-transform: capitalize;
    }

    .navbar .nav-item:last-child .nav-link {
        margin-right: 0 !important;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        margin-top: 0;
        border: none;
        left: -15px;
        border-radius: 8px;
        padding: 15px 12px;
        background: var(--color-white);
        width: 220px;
        box-shadow: var(--box-shadow);
    }

    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 14px;
        font-weight: 400;
        color: var(--color-dark);
        position: relative;
        overflow: hidden;
        text-transform: capitalize;
        transition: var(--transition);
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        background: transparent;
        color: var(--theme-color);
        padding-left: 22px;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item::before {
        content: "\f111";
        position: absolute;
        font-family: "Font Awesome 6 pro";
        left: 8px;
        top: 11px;
        color: var(--theme-color);
        font-weight: bold;
        font-size: 6px;
        transform: scale(0, 0);
        transition: var(--transition);
        z-index: -1;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
        opacity: 1;
        visibility: visible;
        transform: scale(1, 1);
    }

    .navbar .nav-item .nav-link {
        position: relative;
    }

    .navbar .nav-item .nav-link.active,
    .navbar .nav-item:hover .nav-link {
        color: var(--theme-color);
    }

    .navbar .nav-item:hover .dropdown-menu {
        transition: 0.3s;
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: rotateX(0deg);
    }

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .navbar .dropdown-menu.fade-down {
        top: 80%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .dropdown-menu.fade-up {
        top: 140%;
    }

    .navbar #main_nav {
        justify-content: center;
    }

    /* nav right */
    .nav-right {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-left: 45px;
    }

    .nav-right-link {
        position: relative;
        font-size: 20px;
        color: var(--color-dark);
        transition: var(--transition);
    }

    .nav-right-link:hover {
        color: var(--theme-color) !important;
    }

    .nav-right .sidebar-btn .nav-right-link,
    .nav-right .search-btn .nav-right-link {
        border: none;
        background: transparent;
        color: var(--color-dark);
        font-size: 28px;
        padding-right: 0;
    }

    .nav-right .search-btn .nav-right-link {
        font-size: 20px;
        padding: 0;
    }

    .nav-right .cart-btn .nav-right-link {
        position: relative;
        font-size: 20px;
        padding: 0;
        margin-right: 15px;
    }

    .nav-right .cart-btn span {
        position: absolute;
        right: -9px;
        top: -2px;
        width: 15px;
        height: 15px;
        line-height: 15px;
        text-align: center;
        font-size: 12px;
        border-radius: 50px;
        background: var(--theme-color);
        color: var(--color-white);
    }
}

@media all and (min-width: 992px) and (max-width: 1199px) {
    .navbar .nav-item .nav-link {
        margin-right: 15px;
        font-size: 10px;
    }

    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 10px;
    }

    .fixed-top .position-relative .theme-btn {
        font-size: 10px !important;
    }

    a.dropdown-menu,
    a.dropdown-item {
        font-size: 10px;
    }
}

.mobile-menu-right {
    display: none;
}

@media all and (max-width: 991px) {
    .navbar {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .hero-single .hero-content .hero-sub-title {
        font-size: 16px !important;
    }

    .hero-single .hero-content .hero-title {
        font-size: 16px !important;
    }

    .hero-single .hero-content p {
        font-size: 14px !important;
    }

    .navbar-brand {
        padding-left: 10px;
    }

    .navbar-brand img {
        width: 130px;
    }

    .navbar-collapse {
        max-height: 220px;
        overflow: hidden;
        overflow-y: auto;
        padding: 0 20px;
        background-color: var(--color-white);
    }

    .dropdown-toggle::after {
        float: right;
        margin-top: 2px;
    }

    .navbar .nav-item .nav-link {
        color: var(--color-dark);
        font-weight: 500;
        margin-right: 0px;
        transition: var(--transition);
    }

    .navbar .nav-item .nav-link:hover {
        color: var(--theme-color) !important;
    }

    .navbar-toggler {
        padding: 0;
        border: none;
    }

    .mobile-menu-right {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .mobile-menu-right .nav-right-link {
        background: transparent;
        border: none;
        font-size: 20px;
        color: var(--color-dark);
    }

    .mobile-menu-right .nav-right-link:hover {
        color: var(--theme-color);
    }

    .mobile-search-form {
        position: absolute;
        left: 25px;
        right: 25px;
        top: 50px;
        box-shadow: var(--box-shadow);
        border-radius: 8px;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        transform: scaleY(0);
    }

    .mobile-search-form.active {
        opacity: 1;
        visibility: visible;
        transform: scaleY(1);
    }

    .mobile-search-form .form-control {
        padding: 10px 55px 10px 15px;
        border: none;
        box-shadow: none;
        border-radius: 8px;
    }

    .mobile-search-form button {
        position: absolute;
        right: 3px;
        top: 3px;
        width: 38px;
        height: 38px;
        line-height: 38px;
        border-radius: 8px;
        text-align: center;
        background: var(--theme-color);
        color: var(--color-white);
        border: none;
    }

    .navbar-toggler-mobile-icon {
        font-size: 25px;
        color: var(--color-dark);
        font-weight: 500;
    }

    .navbar .dropdown-menu {
        border-radius: 8px;
    }

    .nav-right {
        display: none;
    }

    .navbar li .new {
        top: 0px;
    }
}

.category-all {
    position: relative;
}

.category-btn {
    border: none;
    background: var(--theme-bg-light);
    color: var(--color-dark);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
}

.category-btn i {
    font-size: 17px;
    color: var(--theme-color);
}

.category-btn span {
    margin-left: 7px;
}

.navbar.fixed-top .category-btn {
    padding: 6px 14px;
    border-radius: 7px;
}

.navbar.fixed-top .category-btn span {
    display: none;
    margin-left: 0px;
}

.navbar.fixed-top .category-all {
    margin-left: 30px;
}

.navbar.fixed-top .main-category {
    left: auto;
    right: -46px;
}

.navbar.fixed-top .main-category {
    display: none;
}

.main-category {
    position: absolute;
    left: 0;
    top: 63px;
    min-width: 300px;
    border-radius: 10px;
    padding: 8px 8px;
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    z-index: 2;
    max-height: 340px;
    overflow-y: auto;
}

.main-category li {
    display: block;
    position: relative;
}

.main-category li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-dark2);
    padding: 8px 16px 8px 10px;
    border-radius: 10px;
    font-weight: 400;
    border-left: 3px solid transparent;
}

.main-category li a:hover {
    border-left-color: var(--theme-color);
    background: rgba(17, 183, 107, 0.08);
}

.main-category li:hover a {
    padding-left: 14px;
}

.main-category li a i {
    font-size: 14px;
}

.main-category li a .category-icon {
    font-size: 25px;
    line-height: 0;
    color: var(--color-dark2);
}

.main-category li a img {
    width: 25px;
    height: 25px;
    object-fit: cover;
}

.main-category li a span {
    flex-grow: 1;
    font-size: 14px;
}

.sub-category {
    background: var(--color-white);
    border-radius: 10px;
    padding: 8px 15px;
    width: 100%;
    display: none;
    left: 275px;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.sub-category {
    opacity: 1;
    visibility: visible;
    display: block;
}

.sub-category li a {
    padding: 8px 16px 8px 10px !important;
    color: var(--color-dark2) !important;
}

.sub-category li a:hover {
    padding-left: 14px !important;
}

.sub-category-mega {
    width: 800px;
    display: inline-block;
    height: auto;
    position: absolute;
    left: 275px;
    top: 0;
    background: var(--color-white);
    border-radius: 10px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.main-category li:hover .sub-category-mega {
    opacity: 1;
    visibility: visible;
}

.sub-category-mega .category-title {
    display: inline-block;
    margin-bottom: 20px;
    background: var(--theme-color);
    color: var(--color-white);
    padding: 4px 13px !important;
    border-radius: 8px;
    font-size: 14px;
    border-left: none;
}

.sub-category-mega .category-title:hover {
    color: var(--color-dark2);
}

.sub-category-mega .category-img img {
    border-radius: 10px;
    width: 100%;
}

.sub-category-mega .category-img a {
    padding: 0 !important;
    border-left: none !important;
    background: none !important;
}

.sub-category-mega [class*="col-"] {
    margin-top: 18px;
}

.sub-category-mega [class*="col-"]:nth-child(-n + 4) {
    margin-top: 0;
}

.sub-category-mega .category-link a {
    padding: 5px 0 5px 0 !important;
    border-left: none !important;
}

.sub-category-mega .category-link a:hover {
    background: none;
    color: var(--theme-color);
}

.sub-category-mega .category-link a:last-child {
    padding-bottom: 0 !important;
}

.sub-category-mega .category-title-text {
    margin-bottom: 20px;
    position: relative;
}

.sub-category-mega .category-title-text::before {
    content: "";
    position: absolute;
    width: 15px;
    border-bottom: 3px solid var(--theme-color);
    border-radius: 50px;
    left: 0;
    bottom: -8px;
}

.hide-category {
    display: none;
}

@media all and (min-width: 1199px) and (max-width: 1399px) {
    .main-category {
        min-width: 260px;
    }

    .main-category li a {
        gap: 8px;
    }

    .main-category li a img {
        width: 20px;
    }

    .sub-category,
    .sub-category-mega {
        left: 257px;
    }
}

@media all and (max-width: 1199px) {
    .main-category {
        display: none;
    }

    .sub-category-mega {
        width: 690px;
    }
}

@media all and (min-width: 992px) and (max-width: 1199px) {
    .navbar.fixed-top .category-all {
        margin: 0 30px;
    }

    .navbar.fixed-top .category-btn {
        padding: 5px 14px;
    }

    .navbar.fixed-top .main-category {
        min-width: 260px;
        top: 56px;
    }

    .navbar.fixed-top .sub-category-mega {
        left: 260px;
    }
}

@media all and (max-width: 991px) {
    .category-all {
        flex-grow: 1;
    }

    .category-all .category-btn {
        padding: 5px 12px;
    }

    .main-category {
        top: 56px;
    }

    .main-category li a {
        padding: 6px 22px 6px 16px;
    }

    .main-category li a img {
        width: 20px;
        height: 20px;
    }

    .main-category li a i {
        display: none;
    }

    .sub-category,
    .sub-category-mega {
        display: none;
    }
}

@media all and (min-width: 768px) and (max-width: 991px) {
    .navbar.fixed-top .main-category {
        left: 0;
        right: unset;
    }
}

.navbar .nav-item .dropdown-submenu {
    position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
    display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 15px;
    top: 6.5px;
    font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
    background: transparent;
    color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
    top: 120%;
    left: 100%;
    opacity: 0;
    visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
    top: 0;
    opacity: 1;
    visibility: visible;
}

@media all and (max-width: 991px) {
    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        margin: 0 17px;
    }

    .navbar .nav-item .dropdown-submenu .dropdown-menu {
        opacity: unset;
        visibility: unset;
    }

    .navbar .nav-item .dropdown-submenu a::after {
        top: 4px;
    }

    .navbar .nav-item .dropdown-submenu a:hover {
        color: var(--theme-color);
    }
}

.hero-section {
    position: relative;
    background: var(--theme-bg-light);
}

.hero-single {
    padding: 40px;
    display: flex;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom right, #f5d9d9, #afefc6);
}

.hero-single .hero-content {
    position: relative;
}

.hero-single .hero-content .hero-sub-title {
    display: inline-block;
    color: var(--theme-color);
    font-size: 22px;
    letter-spacing: 4px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
}

.hero-single .hero-content .hero-title {
    color: var(--color-dark2);
    font-size: 26px;
    font-weight: 800;
    margin: 8px 0;
    text-transform: capitalize;
    min-height: 36px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hero-single .hero-content .hero-title span {
    color: var(--theme-color);
}

.hero-single .hero-content p {
    color: var(--color-dark2);
    line-height: 30px;
    font-weight: 400;
    font-size: 17px;
    margin-bottom: 8px;
}

.hero-single .hero-img {
    position: relative;
}

.hero-slider .owl-dots {
    position: absolute;
    right: 120px;
    bottom: 15px;
}

.hero-slider .owl-dots .owl-dot span {
    background: var(--theme-color);
    margin: 5px;
    border-radius: 50px;
    width: 8px;
    height: 8px;
    display: inline-block;
    transition: var(--transition);
}

.hero-slider .owl-dots .owl-dot.active span {
    background-color: var(--theme-color);
    width: 20px;
}

.hero-slider .owl-nav {
    position: absolute;
    right: 10px;
    bottom: 10px;
    font-size: 25px;
}

.hero-slider .owl-nav button {
    background: var(--color-white) !important;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border-radius: 50px;
    transition: var(--transition);
}

.hero-slider .owl-nav button:hover {
    background: var(--theme-color) !important;
    color: var(--color-white);
}

.hero-slider .owl-nav .owl-prev {
    margin-right: 12px;
}

.category-area .category-item {
    border: 1px solid var(--border-info-color);
    border-radius: 10px;
    margin-bottom: 25px;
}

.category-area .category-img {
    display: flex;
    align-items: center;
}

.category-area .category-img .thumb-big {
    padding: 10px;
}

.category-area .category-img .thumb-big img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.category-area .category-img .thumb-list {
    text-align: center;
    border-left: 1px solid var(--border-info-color);
    width: 60%;
}

.category-area .category-img .thumb-list .thumb-list-1,
.category-area .category-img .thumb-list .thumb-list-2 {
    padding: 10px;
}

.category-area .category-img .thumb-list .thumb-list-1 {
    border-bottom: 1px solid var(--border-info-color);
}

.category-area .category-img-info {
    padding: 15px 10px 25px 10px;
    text-align: center;
    border-top: 1px solid var(--border-info-color);
}

.category-area .category-img-info h4 {
    font-size: 14px;
    color: var(--color-dark2);
    margin-bottom: 20px;
}

.category-area .category-img-info .theme-btn {
    width: unset;
    border-radius: 50px;
    padding: 6px 12px;
    box-shadow: none;
}

.category-slider .category-info .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
}

.category-slider .category-info:hover {
    transform: unset;
}

.category-slider .category-info .icon::before {
    display: none;
}

.category-slider .category-info .icon img {
    width: 55px;
}

.category-slider .category-info:hover .icon img {
    filter: unset;
    transform: scale(1.05);
}

@media all and (min-width: 992px) and (max-width: 1399px) {
    .category-slider .category-info .icon {
        width: 115px;
        height: 115px;
    }

    .category-slider .category-info .icon img {
        width: 46px;
    }
}

@media all and (max-width: 1399px) {
    .category-info .content h4 {
        font-size: 14px;
    }
}

.shop-sidebar {
    margin-bottom: 30px;
}

.shop-widget {
    background: var(--theme-bg-light);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 10px;
    min-height: 140px;
}

.shop-widget-title {
    position: relative;
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-info-color);
}

.shop-search-form .form-group {
    position: relative;
}

.shop-search-form .form-control {
    padding: 12px 45px 12px 15px;
    border-radius: 10px;
    box-shadow: none;
}

.shop-search-form .form-control:focus {
    border-color: var(--theme-color);
}

.shop-search-form button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px 18px 6px 18px;
    background: transparent;
    border: none;
    color: var(--theme-color);
}

.shop-category-list a {
    width: 100%;
    color: var(--body-text-color);
    margin: 4px 0;
    transition: var(--transition);
}

.shop-category-list a:hover {
    color: var(--theme-color);
    padding-left: 3px;
}

.shop-category-list span {
    float: right;
}

.shop-checkbox-list li {
    margin-bottom: 8px;
}

.shop-checkbox-list.rating i {
    color: var(--theme-color);
}

.shop-checkbox-list .form-check-input {
    box-shadow: none;
    margin-top: 7px;
}

.shop-checkbox-list .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.shop-checkbox-list .form-check-input:focus {
    border-color: var(--theme-color);
}

.shop-checkbox-list .form-check-label {
    color: var(--body-text-color);
    width: 100%;
    margin-left: 4px;
}

.shop-checkbox-list .form-check-label span {
    float: right;
    margin-right: 3px;
}

.shop-checkbox-list.color li {
    display: inline-block;
    margin-right: 2px;
}

.shop-checkbox-list.color .form-check {
    position: relative;
    padding-left: 0;
}

.shop-checkbox-list.color .form-check-input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.shop-checkbox-list.color .form-check-label {
    margin-left: 0;
}

.shop-checkbox-list.color .form-check-label span {
    width: 28px;
    height: 28px;
    border-radius: 50px;
    vertical-align: top;
    margin-top: 2.5px;
    margin-right: 5px;
    position: relative;
}

.shop-checkbox-list.color .form-check-label span::before {
    content: "\f00c";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    font-family: "Font Awesome 6 Pro";
    color: var(--color-white);
    text-align: center;
    opacity: 0;
    visibility: hidden;
}

.shop-checkbox-list.color
    .form-check-input:checked
    ~ .form-check-label
    span::before {
    opacity: 1;
    visibility: visible;
}

.shop-widget-banner {
    position: relative;
    z-index: 1;
}

.shop-widget-banner .banner-img {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: -1;
}

.shop-widget-banner .banner-img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: -1;
}

.shop-widget-banner .banner-content {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 100px;
}

.shop-widget-banner .banner-content h6 {
    color: var(--color-white);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-top: 2px solid var(--color-white);
    border-bottom: 2px solid var(--color-white);
    display: inline-block;
}

.shop-widget-banner .banner-content h4 {
    color: var(--color-white);
    font-size: 28px;
    margin: 15px 0;
}

.shop-widget-banner .banner-content .theme-btn {
    border-radius: 50px;
    padding: 5px 20px;
}

.shop-sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.shop-sort-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.shop-sort-box .nice-select {
    border-radius: 10px;
    padding-left: 13px;
}

.shop-sort-box .nice-select::after {
    width: 6px;
    height: 6px;
    right: 15px;
}

.shop-sort-box .nice-select .list {
    border: none;
    border-radius: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    box-shadow: var(--box-shadow);
}

.shop-sort-gl a {
    background: transparent;
    border: 1px solid var(--border-info-color);
    color: var(--body-text-color);
    text-align: center;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    line-height: 35px;
}

.shop-sort-grid {
    margin-right: 5px;
}

.shop-sort-gl .active {
    border-color: var(--theme-color);
    background: var(--theme-color);
    color: var(--color-white);
}

.shop-area .pagination .page-link,
.shop-area2 .pagination .page-link,
.shop-area3 .pagination .page-link {
    border-radius: 50px !important;
}

/* shop area 2 */

.shop-area2 .shop-widget {
    border: 1px solid var(--border-info-color);
    background: transparent;
}

.shop-area2 .shop-sort {
    border: 1px solid var(--border-info-color);
    border-radius: 10px;
    padding: 10px 20px;
}

.shop-cart thead tr {
    background: var(--theme-color);
    color: var(--color-white);
}

.shop-cart thead tr th {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.4px;
}

.shop-cart thead tr th,
.shop-cart thead tr td {
    white-space: nowrap;
}

.shop-cart tr td {
    color: var(--color-dark);
    vertical-align: middle;
    border-bottom: 1px solid var(--border-info-color);
    border-top: none;
    position: relative;
    padding: 20px 10px;
    font-size: 14px;
}

.shop-cart-img {
    width: 100px;
}

.shop-cart-img img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--border-info-color);
}

.shop-cart-name {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
}

.shop-cart-name a:hover {
    color: var(--theme-color);
}

.shop-cart-info p {
    font-size: 14px;
    color: var(--body-text-color);
}

.shop-cart-info p span {
    font-weight: 500;
    margin-right: 5px;
}

.shop-cart-price {
    font-weight: 500;
}

.shop-cart-qty {
    width: 110px;
}

.shop-cart-qty button {
    width: 30px;
    height: 30px;
    line-height: 28px;
    color: var(--theme-color);
    text-align: center;
    border: 0;
    border-radius: 50px;
    background: var(--theme-bg-light);
}

.shop-cart-qty button i {
    font-weight: 500;
}

.shop-cart-qty input {
    width: 30px;
    border: none;
    background: transparent;
    color: var(--theme-color);
    text-align: center;
}

.shop-cart-subtotal {
    font-weight: 500;
}

.shop-cart-remove {
    font-size: 18px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border: 1px solid var(--border-info-color);
    text-align: center;
    border-radius: 50px;
}

.shop-cart-remove:hover {
    border-color: var(--color-red);
    color: var(--color-red);
}

.shop-cart-footer {
    margin-top: 20px;
}

.shop-cart-coupon {
    margin-bottom: 25px;
}

.shop-cart-coupon .form-group {
    position: relative;
}

.shop-cart-coupon .form-control {
    box-shadow: none;
    padding: 15px 160px 15px 25px;
    border-radius: 50px;
}

.shop-cart-coupon .form-control:focus {
    border-color: var(--theme-color);
}

.shop-cart-coupon .theme-btn {
    position: absolute;
    right: 5.4px;
    top: 5.4px;
    border-radius: 50px;
    padding: 8px 20px;
}

.shop-cart-summary {
    padding: 30px;
    border: 1px solid var(--border-info-color);
    background: var(--theme-bg-light);
    border-radius: 10px;
    margin-top: 12px;
    margin-left: 20px;
}

.shop-cart-summary h5 {
    margin-bottom: 25px;
}

.shop-cart-summary li {
    margin-bottom: 10px;
}

.shop-cart-summary li span {
    float: right;
}

.shop-cart-summary li strong {
    color: var(--color-dark2);
}

.shop-cart-total {
    padding-top: 10px;
    border-top: 1px solid var(--border-info-color);
}

.shop-cart-total span {
    font-weight: bold;
    color: var(--theme-color);
}

@media all and (max-width: 991px) {
    .shop-cart-summary {
        margin-left: 0;
    }
}

.shop-checkout-step .accordion-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-info-color);
    border-radius: 8px;
}

.shop-checkout-step .accordion-button {
    background: transparent;
    box-shadow: none;
    font-weight: 600;
}

.shop-checkout-step .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--theme-color);
}

.shop-checkout-step .accordion-body {
    border-top: 1px solid var(--border-info-color);
}

.shop-checkout-form .form-group {
    margin-bottom: 15px;
}

.shop-checkout-form label {
    color: var(--color-dark2);
    margin-bottom: 4px;
}

.shop-checkout-form .form-control {
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: none;
}

.shop-checkout-form .nice-select {
    width: 100%;
    font-size: 14px;
    border-radius: 8px;
    height: 50px;
    line-height: 47px;
    padding-left: 20px;
    margin-bottom: 15px;
}

.shop-checkout-form .nice-select:after {
    width: 9px;
    height: 9px;
    margin-right: 8px;
    margin-top: -6px;
}

.shop-checkout-form .nice-select .list {
    width: 100%;
    height: 300px;
    overflow-y: auto;
    border-radius: 8px;
}

.shop-checkout-form .form-control:focus,
.shop-checkout-form .nice-select {
    border-color: var(--theme-color);
}

.shop-checkout-form .form-check-input {
    margin-top: 7px;
    box-shadow: none;
}

.shop-checkout-form .form-check-input:focus {
    border-color: var(--theme-color);
}

.shop-checkout-form .form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.shop-checkout-form .theme-btn {
    margin-top: 15px;
    margin-bottom: 10px;
}

.shop-checkout-form .theme-btn2 {
    background: var(--theme-color);
    color: var(--color-white);
    margin-right: 8px;
}

.shop-checkout-form .theme-btn2::before {
    background: var(--color-dark);
}

.shop-shipping-method {
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid var(--border-info-color);
}

.shop-shipping-method h6 {
    margin-bottom: 20px;
}

.shop-shipping-method .form-check {
    padding-left: 0;
    position: relative;
    margin-bottom: 20px;
}

.shop-shipping-method .form-check-input {
    width: 1.3em;
    height: 1.3em;
    position: absolute;
    top: -2px;
    right: 6px;
}

.shop-shipping-method label {
    font-weight: 500;
    border: 1px solid var(--border-info-color);
    background: var(--color-white);
    padding: 10px 15px 10px 15px;
    border-radius: 10px;
    width: 100%;
}

.shop-shipping-method .form-check-input:checked ~ label {
    border-color: var(--theme-color) !important;
}

.shop-shipping-method label span {
    display: block;
    color: var(--body-text-color);
    font-weight: 400;
}

.shop-checkout-payment .nav-link {
    background: transparent !important;
    border: 1px solid var(--border-info-color);
    text-align: center;
    border-radius: 12px;
    margin-right: 15px;
    margin-bottom: 20px;
    position: relative;
}

.shop-checkout-payment .nav-link::before {
    content: "\f058";
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    font-weight: bold;
    font-size: 20px;
    color: var(--theme-color);
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    left: 4px;
    top: -4px;
    transition: var(--transition);
}

.shop-checkout-payment .nav-link.active::before {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.shop-checkout-payment .nav-link.active {
    border-color: var(--theme-color);
}

.shop-checkout-payment .nav-link span {
    color: var(--body-text-color);
}

.shop-checkout-payment .checkout-card-img {
    padding-top: 12px;
    margin-bottom: 12px;
}

.shop-checkout-payment .checkout-card-img img {
    width: 34px;
}

.shop-checkout-payment .checkout-payment-img img {
    width: 120px;
}

.shop-checkout-payment .checkout-payment-img.cod img {
    width: 52px;
}

.shop-checkout-form.cod .form-check-input {
    width: 1.4em;
    height: 1.4em;
    border-radius: 6px;
}

.shop-checkout-form.cod label {
    font-weight: 500;
    margin-left: 10px;
}

.shop-checkout-form.cod label span {
    display: block;
    font-weight: 400;
    color: var(--body-text-color);
}

.shop-checkout-form.cod label a {
    color: var(--theme-color);
}

/* shop checkout 2 */

.shop-checkout2 .checkout-step-list .nav-link {
    position: relative;
    border-radius: 0;
    color: var(--theme-color);
    font-size: 17px;
    font-weight: 500;
    padding-top: 30px;
}

.shop-checkout2 .checkout-step-list .nav-link i {
    margin-right: 5px;
}

.shop-checkout2 .checkout-step-list .nav-link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 8px;
    background: var(--theme-color);
    left: 0;
    top: 0;
}

.shop-checkout2 .checkout-step-list .nav-link:first-child::before {
    border-radius: 50px 0 0 50px;
}

.shop-checkout2 .checkout-step-list .nav-link:last-child::before {
    border-radius: 0 50px 50px 0;
}

.shop-checkout2 .checkout-step-list .nav-link .step-count {
    position: absolute;
    width: 28px;
    height: 28px;
    line-height: 28px;
    background: var(--theme-color);
    color: var(--color-white);
    top: -11px;
    left: 50%;
    border-radius: 50px;
    transform: translateX(-50%);
}

.shop-checkout2 .checkout-step-list .nav-link .step-count::before {
    content: "";
    position: absolute;
    border: 2px solid var(--theme-color);
    left: -4px;
    right: -4px;
    top: -4px;
    bottom: -4px;
    border-radius: 50px;
}

.shop-checkout2 .checkout-step-list .nav-link.active {
    color: var(--theme-color);
    background: transparent;
}

.shop-checkout2 .checkout-step-list .nav-link.done {
    color: var(--color-red);
    background: transparent;
}

.shop-checkout2 .checkout-step-list .nav-link.done::before,
.shop-checkout2 .checkout-step-list .nav-link.done span {
    background: var(--color-red);
}

.shop-checkout2 .checkout-step-list .nav-link.done .step-count::before {
    border-color: var(--color-red);
}

.shop-checkout2 .shop-checkout-form {
    border: 1px solid var(--border-info-color);
    background: var(--theme-bg-light);
    padding: 30px;
    border-radius: 10px;
}

@media all and (max-width: 767px) {
    .shop-checkout2 .checkout-step-list .nav-link {
        font-size: 18px;
    }
}

/*============================
25. Shop checkout complete css
==============================*/

.shop-checkout-complete {
    position: relative;
}

.checkout-complete-content {
    background: var(--theme-bg-light);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    border: 1px solid var(--border-info-color);
}

.checkout-complete-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 35px;
    color: var(--color-white);
    background: var(--theme-color);
    margin: 0 auto;
    border-radius: 50px;
    margin-bottom: 20px;
}

.checkout-complete-content h3 {
    text-transform: capitalize;
}

.checkout-complete-content p {
    margin-top: 15px;
    margin-bottom: 30px;
}

@media all and (min-width: 992px) and (max-width: 1399px) {
    .checkout-complete-content {
        padding: 40px;
    }
}

.product-area {
    position: relative;
}

.product-item {
    position: relative;
    padding: 10px;
    margin-bottom: 25px;
    border-radius: 10px;
    background: var(--theme-bg-light);
}

.product-item-box {
    position: relative; border-radius: 18px; overflow: hidden; padding: 0;
}



.product-item:hover .product-img img {
    transform: scale(1.1);
    filter: brightness(1.05) saturate(1.1);
}

.service-slider .product-img {
    height: 240px;
}

.product-img {
    position: relative;
    transition: transform 0.5s ease, filter 0.5s ease;
    will-change: transform;
    overflow: hidden;
}

.product-bg {
    background-size: cover;
}

.link-overlay {
    background-color: #15151554; position: absolute; inset: 0; z-index: 10; display:  flex; align-items: center; justify-content: center; padding: 0 12px;
}

.service-slider .product-img {
    height: 240px;
}

.product-item .type {
    position: absolute;
    right: 5px;
    top: 5px;
    display: inline-block;
    background: var(--theme-color);
    color: var(--color-white);
    font-size: 11px;
    padding: 6px 15px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
}

h3.product-title-map {
    color: #fff; font-size: 20px; line-height: 28px; text-align: center;
}

h3.product-title-map:hover {
    color: #fff;
}

.product-item .type .new {
    background: var(--theme-color);
}

.product-item .type .oos {
    background: var(--color-red);
}

.product-item .type .discount {
    background: var(--color-yellow);
}

.product-item .type .hot {
    background: var(--color-skyblue);
}

.product-action-wrap {
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
    opacity: 1;
    visibility: visible;
    bottom: 10px;
}

.product-action a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--theme-color);
    color: var(--color-white);
    text-align: center;
    border-radius: 50%;
    margin: 0 3px;
}

.product-action a:hover {
    background: var(--theme-color);
    color: var(--color-white);
}

.product-content {
    margin-top: 2px;
}

.product-title {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--color-dark2);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 20px;
    height: 60px;
}

.product-title:hover {
    color: var(--theme-color);
}

.product-rate {
    color: var(--color-yellow);
    font-size: 15px;
    margin-top: 15px;
}

.product-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.product-price {
    font-size: 14px;
    font-weight: 500;
}

.product-price del {
    margin-right: 5px;
    color: var(--body-text-color);
}

.product-price span {
    color: var(--color-red);
    font-weight: bold;
}

.product-cart-btn {
    position: relative;
    border: none;
    background: var(--color-blue);
    color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    font-size: 12px;
    width: 28px;
    height: 28px;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.product-cart-btn:hover {
    color: var(--color-white);
    background: var(--theme-color);
}

.product-content .header-top-list li {
    font-size: 14px;
}

/* product slider */

.product-slider .product-item,
.service-slider .product-item {
    margin-bottom: 0px;
}

.video-slider .owl-nav button,
.video-slider .owl-nav button {
    position: absolute;
    background: var(--theme-color) !important;
    color: var(--color-white) !important;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px !important;
    text-align: center;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    top: 40%;
    transform: translateY(-50%);
}
.product-slider .owl-nav button,
.service-slider .owl-nav button {
    position: absolute;
    background: var(--theme-color) !important;
    color: var(--color-white) !important;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px !important;
    text-align: center;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    top: 50%;
    transform: translateY(-50%);
}

.video-slider .owl-nav button:hover,
.product-slider .owl-nav button:hover,
.service-slider .owl-nav button:hover {
    background: var(--theme-color) !important;
}

.video-slider .owl-prev,
.product-slider .owl-prev,
.service-slider .owl-prev {
    left: -16px;
}

.video-slider .owl-next,
.product-slider .owl-next,
.service-slider .owl-next {
    right: -16px;
}

/* product brand */

.product-brand {
    padding: 10px 15px;
    border-radius: 10px;
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    max-height: 1000px;
    overflow-y: auto;
}

.product-brand.product-brand-document {
    position: sticky;
    top: 0;
    max-height: max-content;
}

.product-brand h5 {
    font-size: 17px;
    margin-bottom: 15px;
}

.product-brand .brand-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3px;
    border-bottom: 1px solid var(--border-info-color);
    padding: 10px 0;
    font-weight: 500;
    transition: var(--transition);
}

.product-brand .brand-list a:last-child {
    border-bottom: none;
}

.product-brand .brand-list a span {
    float: right;
}

.product-brand .brand-list a i {
    margin-right: 10px;
}

.product-brand .brand-list a:hover {
    padding-left: 10px;
    color: var(--theme-color);
}

.product-brand .theme-btn {
    width: 100%;
    margin-top: 20px;
}

/* item 2 */

.item-2 .product-item {
    border: 1px solid var(--border-info-color);
    background: transparent;
}

.item-2 .product-cart-btn {
    width: unset;
    height: unset;
    background: none;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: none;
}

.item-2 .product-cart-btn:hover {
    background: var(--theme-color);
    color: var(--color-white);
}

.item-2 .product-action-wrap {
    width: unset;
    bottom: unset;
    left: 0;
    top: 20px;
}

.item-2 .product-action a {
    display: block;
    margin-top: 10px;
    transform: scale(0);
}

.item-2 .product-item:hover .product-action a {
    transform: scale(1);
}

/* item 3 */

.item-3 .product-item {
    background: var(--color-white);
}

.custom-margin {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    margin-right: calc(var(--bs-gutter-x) * .5);
    margin-left: calc(var(--bs-gutter-x) * .5);
}

/* item list*/

.item-list .product-item {
    display: flex;
    align-items: center;
    gap: 30px;
}

.item-list .product-img {
    width: 220px;
}

.item-list .product-content {
    flex: 1;
}

.item-list .product-content p {
    margin-top: 10px;
    margin-bottom: 15px;
}

/* item tab */

.item-tab .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-dark2);
    padding: 0px;
    margin-left: 20px;
    border-radius: 0;
    border-bottom: 2px solid transparent;
}

.item-tab .nav-item:first-child .nav-link {
    margin-left: 0;
}

.item-tab .nav-link.active {
    color: var(--theme-color);
    background: transparent;
    border-bottom-color: var(--theme-color);
}

/* item banner */

.item-side-banner .banner-content {
    padding-left: 28px;
}

.item-side-banner .banner-content p {
    font-size: 18px;
}

.item-side-banner .banner-content h3 {
    font-size: 23px;
}

.item-side-banner .banner-content a {
    font-size: 15px;
}

.item-banner .product-cart-btn {
    width: 38px;
    height: 38px;
    line-height: 30px;
    font-size: 14px;
    padding: unset;
    text-align: center;
}

@media all and (min-width: 992px) and (max-width: 1399px) {
    .item-banner .product-item {
        padding: 12px;
    }

    .item-banner .product-content {
        margin-top: 0;
    }

    .item-banner .product-rate {
        margin-top: 0;
    }

    .item-2 .product-item {
        padding: 15px;
    }

    .item-2 .product-cart-btn {
        padding: 4px 12px 2px 12px;
        font-size: 12px;
    }

    .item-2 .product-price del {
        font-size: 13px;
    }

    .product-price {
        font-size: 10px;
    }

    .product-cart-btn {
        font-size: 8px;
        width: 20px;
        height: 20px;
    }
}

@media all and (max-width: 767px) {
    .item-list .product-item {
        flex-direction: column;
        align-items: unset;
        gap: 5px;
    }

    .item-list .product-img {
        width: 100%;
    }

    .item-tab {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
}

/*====================
30. Product list css
======================*/

.product-list {
    position: relative;
}

.product-list-title {
    position: relative;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-info-color);
}

.product-list-title.active {
    color: var(--theme-color);
}
.product-list-title::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1.8px;
    width: 40px;
    height: 2px;
    background: var(--theme-color);
}

.product-list-item {
    display: flex;
    gap: 14px;
    background: var(--theme-bg-light);
    align-items: center;
    border-radius: 12px;
    margin: 25px 0;
    padding: 10px;
    position: relative;
    transition: var(--transition);
}

.product-list-img {
    background: var(--color-white);
    border: 1px solid var(--border-info-color);
    border-radius: 10px;
}

.product-list-img img {
    width: 100px;
    height: 100px;
}

.product-list-item:hover .product-list-img img {
    transform: scale(1.1);
}

.product-list-content {
    flex: 1;
}

.product-list-content h4 a {
    font-size: 18px;
}

.product-list-content h4 a:hover {
    color: var(--theme-color);
}

.product-list-rate {
    font-size: 15px;
    color: var(--color-yellow);
    margin-top: 4px;
}

.product-list-price {
    margin-top: 4px;
    font-weight: 500;
}

.product-list-price del {
    margin-right: 10px;
}

.product-list-price span {
    color: var(--color-red);
}

.product-list-btn {
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 50px;
    height: 50px;
    line-height: 36px;
    border-radius: 50%;
    border: 7px solid var(--color-white);
    background: var(--theme-color);
    color: var(--color-white);
    text-align: center;
}

.product-list-btn:hover {
    background: var(--theme-color);
    color: var(--color-white);
}

@media all and (max-width: 1399px) {
    .product-list-content h4 a {
        font-size: 14px;
    }
}

.show-modal .modal-content {
    border-radius: 15px;
}

.show-modal .modal-body {
    padding: 30px;
}

.show-modal .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    background: var(--theme-color);
    color: var(--color-white);
    font-size: 18px;
    width: 25px;
    height: 25px;
    line-height: 27px;
    border-radius: 50px;
    opacity: 1;
    transition: var(--transition);
    z-index: 1;
}

.show-modal .btn-close:hover {
    background: var(--color-red);
    color: white;
}

.show-modal-title {
    margin-bottom: 5px;
}

.show-modal-price {
    margin-top: 15px;
    margin-bottom: 15px;
}

.show-modal-price h5 {
    font-weight: 500;
}

.show-modal-price del {
    margin-right: 10px;
    color: var(--body-text-color);
}

.show-modal-price span {
    color: var(--theme-color);
}

.show-modal-list li {
    margin: 5px 0;
}

.show-modal-list li span {
    font-weight: 500;
    margin-left: 10px;
}

.show-modal-list li .stock {
    color: var(--theme-color);
}

.show-modal-cart {
    margin: 15px 0;
}

.show-modal-cart .theme-btn {
    padding: 5px 18px;
}

.show-modal-social a {
    width: 30px;
    height: 30px;
    line-height: 32px;
    text-align: center;
    color: var(--color-dark2);
}

.show-modal-social a:hover {
    color: var(--theme-color);
}

.tooltip-inner {
    background: var(--theme-color);
    border-radius: 50px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600;
}

.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
    border-top-color: var(--theme-color) !important;
}

.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
    border-top-color: var(--theme-color) !important;
}

.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
    left: -2.5px !important;
    border-left-color: var(--theme-color) !important;
}

.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
    right: -2.5px !important;
    border-right-color: var(--theme-color) !important;
}

.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--theme-color);
}

.tooltip.show {
    opacity: 1;
}

.modal-open {
    overflow: auto;
    padding-right: 0 !important;
}

/*====================
34. Seller css
======================*/

.seller-area {
    position: relative;
}

.seller-item {
    text-align: center;
    margin-bottom: 10px;
}

.seller-img a {
    width: 135px;
    height: 135px;
    margin: 0 auto 10px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: var(--box-shadow);
}

.seller-img img {
    width: 80px;
}

.seller-item:hover .seller-img img {
    transform: scale(1.1);
}

.seller-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--body-text-color);
}

.seller-item:hover .seller-title {
    color: var(--theme-color);
}

@media all and (max-width: 1399px) {
    .seller-img a {
        width: 118px;
        height: 118px;
    }

    .seller-img img {
        width: 60px;
    }
}

.become-seller {
    position: relative;
}

.seller-form {
    padding: 35px;
    background: var(--color-white);
    border-radius: 10px;
    border: 1px solid var(--border-info-color);
}

.seller-form-header {
    border-bottom: 1px solid var(--border-info-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.seller-form-header h4 {
    margin-bottom: 10px;
}

.seller-form .nice-select,
.seller-form .form-group {
    margin-bottom: 15px;
}

.seller-form label {
    color: var(--color-dark2);
    margin-bottom: 4px;
}

.seller-form .form-control {
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: none;
}

.seller-form .form-control:focus,
.seller-form .nice-select:focus {
    border-color: var(--theme-color);
}

.seller-form .nice-select {
    border-radius: 8px;
    width: 100%;
    font-size: 14px;
    height: 50px;
    line-height: 47px;
}

.seller-form .nice-select::after {
    width: 9px;
    height: 9px;
    margin-top: -6px;
}

.seller-form .nice-select .list {
    width: 100%;
    height: 250px;
    overflow-y: auto;
    border-radius: 8px;
}

.seller-form .theme-btn {
    margin-top: 15px;
}

.seller-feature-item {
    border: 1px solid var(--border-info-color);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-bottom: 15px;
}

.seller-feature-icon {
    margin: 0 auto 30px auto;
}

.seller-feature-icon img {
    width: 75px;
}

.seller-feature-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

@media all and (min-width: 992px) and (max-width: 1399px) {
    .seller-feature-item {
        padding: 36px;
    }

    .seller-feature-icon img {
        width: 55px;
    }
}

@media all and (max-width: 991px) {
    .seller-form {
        margin-bottom: 30px;
    }
}

.vendor-area {
    position: relative;
}

.vendor-item {
    padding: 18px;
    background: var(--color-white);
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: var(--box-shadow);
}

.vendor-banner-img {
    position: relative;
}

.vendor-banner-img img {
    border-radius: 8px;
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.vendor-logo {
    position: absolute;
    width: 60px;
    height: 60px;
    right: 10px;
    bottom: -30px;
    background: var(--color-white);
    padding: 15px;
    border-radius: 50px;
}

.vendor-content {
    padding-top: 8px;
}

.vendor-name {
    margin-bottom: 5px;
}

.vendor-name h4 {
    font-size: 14px;
    color: var(--color-dark2);
}

.vendor-rating {
    color: var(--theme-color);
    font-size: 14px;
    margin-bottom: 5px;
}

.vendor-info {
    margin-top: 10px;
    display: grid;
    font-size: 13px;
}

.vendor-info a {
    margin-top: 5px;
}

.vendor-info a:hover {
    color: var(--theme-color);
}

.vendor-info a i,
.vendor-info span i {
    margin-right: 5px;
}

.vendor-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-info-color);
}

.vendor-content .theme-btn {
    padding: 5px 20px;
    border-radius: 50px;
}

.vendor-store {
    position: relative;
}

.vendor-store-banner {
    background: var(--color-white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.store-banner-img {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 300px;
    border-radius: 15px;
}

.vendor-store-logo {
    width: 100px;
    height: 100px;
    padding: 10px;
    background: var(--color-white);
    border-radius: 50%;
    margin: -50px 0 0 50px;
}

.vendor-store-logo img {
    border-radius: 50%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.vendor-store-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

.vendor-store-name {
    color: var(--color-dark2);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.vendor-store-contact {
    margin-top: 10px;
}

.vendor-store-contact a {
    margin-right: 10px;
}

.vendor-store-contact a i {
    margin-right: 5px;
}

.vendor-store-contact a:hover {
    color: var(--theme-color);
}

.vendor-store-rating {
    color: var(--theme-color);
}

.vendor-store-sale {
    color: var(--body-text-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.vendor-store-social a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: var(--theme-color);
    color: var(--color-white);
    border-radius: 50px;
    margin-right: 5px;
}

.vendor-store-social a:hover {
    background: var(--theme-color);
    color: var(--color-white);
}

@media all and (max-width: 991px) {
    .store-banner-img {
        height: 220px;
    }

    .vendor-store-content {
        flex-direction: column;
    }
}

.about-area p {
    text-align: justify;
}

.about-left {
    position: relative;
}

.about-img img {
    border-radius: 15px;
}

.about-experience {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    top: 20px;
    left: 20px;
    background: var(--color-white);
    border-radius: 15px;
    padding: 10px 20px 10px 10px;
    color: var(--color-dark2);
    box-shadow: var(--box-shadow2);
}

.about-experience-icon {
    color: var(--color-white);
    font-size: 45px;
    width: 70px;
    height: 70px;
    line-height: 60px;
    text-align: center;
    background: var(--theme-color);
    border-radius: 15px;
}

.about-experience-icon img {
    width: 55px;
    filter: brightness(0) invert(1);
}

.about-right {
    position: relative;
    display: block;
    padding-left: 30px;
}

.about-list-wrapper {
    position: relative;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}

@media all and (max-width: 991px) {
    .about-right {
        margin-top: 30px;
        padding-left: 0px;
    }
}

.team-area {
    position: relative;
    overflow: hidden;
}

.team-item {
    padding: 15px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-item:hover {
    transform: translateY(-10px);
}

.team-img img {
    border-radius: 15px;
    margin-top: -50px;
}

.team-content {
    padding: 10px 0 5px 0;
}

.team-bio h5 {
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.team-bio span {
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-color);
}

.team-bio h5 a:hover {
    color: var(--theme-color);
}

.team-social {
    border-top: 1px solid var(--border-info-color);
    margin-top: 10px;
    padding-top: 10px;
}

.team-social a,
.vendor-bottom-custom a {
    display: inline-block;
    color: var(--color-white);
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 4px;
    border-radius: 50px;
    background: var(--theme-color);
    box-shadow: var(--box-shadow);
}

.vendor-bottom-custom a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 4px;
    border-radius: 50px;
    background: var(--theme-color);
    box-shadow: var(--box-shadow);
}

.team-social a:hover,
.vendor-bottom-custom a:hover {
    background: var(--color-red);
    color: var(--color-white);
}

.testimonial-area {
    position: relative;
}

.testimonial-item {
    position: relative;
    margin-bottom: 20px;
    background: var(--color-white);
    border-radius: 15px;
    padding: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-info-color);
}

.testimonial-author-img {
    width: 70px;
}

.testimonial-author-img img {
    border-radius: 50%;
}

.testimonial-author-info h4 {
    font-size: 19px;
    color: var(--color-dark);
}

.testimonial-author-info p {
    color: var(--theme-color);
    font-weight: 500;
}

.testimonial-quote-icon {
    position: absolute;
    right: 30px;
    bottom: 20px;
    width: 80px;
    opacity: 0.2;
}

.testimonial-rate {
    color: var(--theme-color);
    margin-top: 15px;
}

.testimonial-area .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.testimonial-area .owl-dots .owl-dot span {
    background: var(--theme-color);
    margin: 5px;
    border-radius: 50px;
    width: 8px;
    height: 8px;
    display: inline-block;
    transition: var(--transition);
}

.testimonial-area .owl-dots .owl-dot.active span {
    background-color: var(--theme-color);
    width: 20px;
}

/*====================
46. Brand css
======================*/

.brand-area {
    position: relative;
}

.brand-item {
    padding: 40px 25px;
    border-radius: 15px;
    background: var(--theme-bg-light);
    margin-bottom: 25px;
}

.brand-slider .brand-item {
    margin-bottom: 0;
}

/*====================
47. Help css
======================*/

.help-area {
    position: relative;
}

.help-search {
    text-align: center;
    margin-bottom: 60px;
}

.help-search h3 {
    margin-bottom: 5px;
}

.help-search-form {
    margin-top: 20px;
}

.help-search-form .form-group {
    position: relative;
}

.help-search-form .form-control {
    padding: 12px 50px 12px 20px;
    border-radius: 8px;
    box-shadow: none;
}

.help-search-form .form-control:focus {
    border-color: var(--theme-color);
}

.help-search-form .form-group button {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 10px 15px 6px 15px;
    background: transparent;
    border: none;
    color: var(--body-text-color);
}

.help-search-keyword {
    text-align: left;
    margin-top: 5px;
}

.help-search-keyword span {
    color: var(--color-dark2);
}

.help-search-keyword a {
    color: var(--body-text-color);
}

.help-search-keyword a:hover {
    color: var(--theme-color);
}

.help-item {
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid var(--border-info-color);
    border-radius: 10px;
    padding: 30px;
}

.help-icon i {
    font-size: 45px;
    font-weight: 300;
    color: var(--theme-color);
}

.help-content h4 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 20px;
}

.help-item .theme-btn {
    border-radius: 50px;
    padding: 6px 20px;
    margin-top: 25px;
}

.help-bottom {
    text-align: center;
    margin-top: 30px;
}

.help-bottom p {
    margin-top: 5px;
    margin-bottom: 20px;
}

/*====================
48. Invoices css
======================*/

.invoice-area {
    position: relative;
}

.invoice-print {
    text-align: right;
    margin-bottom: 30px;
}

.invoice-wrapper {
    background: var(--color-white);
    border-radius: 10px;
    padding: 50px;
}

.invoice-header {
    display: flex;
    justify-content: space-between;
}

.invoice-width {
    width: 40%;
}

.invoice-logo img {
    width: 180px;
}

.invoice-date-box {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.invoice-address-box {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.invoice-address h5 {
    margin-bottom: 8px;
}

.invoice-table {
    margin-top: 30px;
}

.invoice-table table {
    width: 100%;
    border-collapse: collapse;
}

.invoice-table table,
.invoice-table td,
.invoice-table th {
    border: 1px solid var(--border-info-color);
}

.invoice-table td,
.invoice-table th {
    padding: 10px 20px;
}

.invoice-bottom {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid var(--border-info-color);
    display: flex;
    justify-content: space-between;
}

.invoice-bottom a {
    color: var(--body-text-color);
}

.faq-area {
    position: relative;
}

.faq-area .list-group-item {
    color: var(--body-text-color);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 20px;
}

.faq-area .list-group-item.active {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--color-white);
    font-size: 18px;
    z-index: 1;
}

.faq-area .list-group-item:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.faq-area .list-group-item:last-child {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.faq-area .accordion-item {
    border: 1px solid var(--border-info-color);
    margin-bottom: 15px;
    background: var(--color-white);
    border-radius: 12px !important;
}

.faq-area .accordion-item span {
    width: 38px;
    height: 38px;
    margin-right: 15px;
}

.faq-area .accordion-item i {
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 12px;
    background: var(--theme-color);
    text-align: center;
    color: var(--color-white);
}

.faq-area .accordion-button:not(.collapsed) {
    color: var(--theme-color);
    background: transparent;
    box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.faq-area .accordion-button {
    border-radius: 0px !important;
    background: transparent;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px 8px 8px;
    color: var(--body-text-color);
    text-transform: capitalize;
    box-shadow: none !important;
}

.faq-area .accordion-body {
    border-top: 1px solid var(--border-info-color);
    color: var(--body-text-color);
}

@media all and (max-width: 991px) {
    .faq-area .accordion-button {
        font-size: 14px;
    }
}

.login-form {
    padding: 40px;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.login-form a:hover {
    color: var(--theme-color);
}

.login-form .login-header {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-info-color);
}

.login-form .login-header img {
    width: 200px;
    margin-bottom: 10px;
}

.login-form .login-header h3 {
    color: var(--theme-color);
    margin-bottom: 5px;
    font-weight: 800;
}

.login-form .login-header p {
    font-size: 16px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    color: var(--color-dark);
    margin-bottom: 5px;
}

.login-form .form-group .form-control {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: none;
    transition: 0.5s;
}

.login-form .form-group .form-control:focus {
    border-color: var(--theme-color);
}

.login-form .form-group .form-control:focus ~ a {
    border-color: var(--theme-color);
}

.login-form .form-check-input {
    box-shadow: none;
}

.login-form .form-check-input:focus {
    border-color: var(--theme-color);
}

.login-form .forgot-pass {
    color: var(--theme-color);
    transition: 0.5s;
}

.login-form .forgot-pass:hover {
    color: var(--color-red);
}

.login-form .theme-btn {
    width: 100%;
}

.login-form .theme-btn::before {
    width: 460px;
    height: 460px;
}

.login-form .theme-btn i {
    margin-right: 5px;
}

.login-form .form-check-input {
    margin-top: 5px;
}

.login-form .form-check-label a {
    color: var(--theme-color);
    transition: 0.5s;
}

.login-form .form-check-label a:hover {
    color: var(--theme-color);
}

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

.login-form .login-footer {
    margin-top: 25px;
}

.login-form .login-footer p {
    text-align: center;
}

.login-form .login-footer p a {
    color: var(--theme-color);
    transition: 0.5s;
}

.login-form .login-footer a:hover {
    color: var(--theme-color);
}

.social-login {
    position: relative;
    border-top: 1px solid #f1f1f1;
    margin-top: 25px;
    padding-top: 15px;
}

.social-divider {
    position: absolute;
    left: 50%;
    top: -21px;
    padding: 5px;
    background: var(--color-white);
    transform: translateX(-50%);
}

.social-login p {
    margin: 10px 0;
}

.social-login-list {
    text-align: center;
}

.social-login-list a {
    padding: 5px 20px;
    border: 2px solid var(--border-info-color);
    border-radius: 50px;
    margin: 5px;
}

.social-login-list a i {
    margin-right: 5px;
}

.social-login-list .fb-auth {
    border-color: #3b5998;
    color: #3b5998;
}

.social-login-list .fb-auth:hover {
    background: #3b5998;
    color: var(--color-white) !important;
}

.social-login-list .gl-auth {
    border-color: #dd4b39;
    color: #dd4b39;
}

.social-login-list .gl-auth:hover {
    background: #dd4b39;
    color: var(--color-white) !important;
}

.social-login-list .tw-auth {
    border-color: #55acee;
    color: #55acee;
}

.social-login-list .tw-auth:hover {
    background: #55acee;
    color: var(--color-white) !important;
}

@media all and (min-width: 992px) and (max-width: 1399px) {
    .login-form {
        padding: 30px;
    }

    .social-login-list a {
        margin-right: 4px;
    }
}

@media only screen and (max-width: 991px) {
    .login-form {
        padding: 40px 20px;
    }
}

/*====================
51. User css
======================*/

/* header middle account */

.header-middle-account img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    padding: 3px;
    border: 3px solid var(--theme-color);
    cursor: pointer;
}

.header-middle-account .dropdown-menu {
    border: none;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.header-middle-account .dropdown-user {
    border-bottom: 1px solid var(--border-info-color);
    padding: 8px 20px;
    margin-bottom: 5px;
}

.header-middle-account .dropdown-user h5 {
    font-size: 15px;
}

.header-middle-account .dropdown-user span {
    font-size: 12px;
    font-weight: normal;
}

.header-middle-account .dropdown-user p {
    font-size: 14px;
    text-transform: lowercase;
    color: var(--body-text-color);
}

.header-middle-account .dropdown-menu li {
    width: 100%;
}

.header-middle-account .dropdown-menu li a i {
    margin-right: 5px;
}

.header-middle-account .dropdown-menu .dropdown-item {
    padding: 6px 20px;
    font-weight: 500;
}

.header-middle-account .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--theme-color);
    padding-left: 25px;
}

/* user sidebar */

.user-area .sidebar {
    background: var(--color-white);
    border-radius: 10px;
    margin-bottom: 25px;
    padding: 15px;
}

.user-area .sidebar-top {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-info-color);
}

.user-area .sidebar-profile-img {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px auto;
    border-radius: 50px;
    padding: 4px;
    border: 3px solid var(--theme-color);
}

.user-area .sidebar-profile-img img {
    border-radius: 50%;
}

.user-area .sidebar-profile-img button {
    position: absolute;
    border-radius: 50px;
    background: var(--theme-color);
    color: var(--color-white);
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    border: none;
    right: 0;
    bottom: 0;
}

.user-area .profile-img-file {
    display: none;
}

.user-area .sidebar-list li {
    margin: 5px 0;
}

.user-area .sidebar-list li a {
    color: var(--color-dark);
    padding: 6px 6px 6px 15px;
    display: block;
    font-weight: 500;
    transition: var(--transition);
}

.user-area .sidebar-list li a:hover {
    padding-left: 20px;
}

.user-area .sidebar-list li a i {
    margin-right: 5px;
    color: var(--theme-color);
}

.user-area .sidebar-list .active i {
    color: var(--color-white);
}

.user-area .sidebar-list .active {
    background: var(--theme-color);
    color: var(--color-white);
    border-radius: 8px;
}

.user-area .sidebar-list li a span {
    float: right;
    line-height: unset;
    padding: 0px 6px;
    border-radius: 10px;
    margin-top: 3.7px;
}

/* user card */

.user-card {
    background: var(--color-white);
    padding: 15px 20px 20px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.user-card-title {
    color: var(--color-dark);
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-info-color);
}

.user-card .text-success {
    color: var(--theme-color) !important;
}

.user-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-info-color);
}

.user-card-header .user-card-title {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.user-card-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-card-header .theme-btn {
    padding: 8px 15px;
}

@media all and (max-width: 767px) {
    .user-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .user-card-header-right {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}

/* user card search */

.user-card-search .form-group {
    position: relative;
}

.user-card-search .form-control {
    padding: 10px 20px 10px 35px;
    box-shadow: none;
    border-radius: 10px;
    border-color: var(--border-info-color);
}

.user-card-search .form-control:focus {
    border-color: var(--theme-color);
}

.user-card-search i {
    position: absolute;
    left: 12px;
    top: 15px;
}

.user-card-filter .nice-select {
    height: 45px;
    line-height: 42.5px;
    border-color: var(--border-info-color);
    border-radius: 10px;
}

.user-card-filter .nice-select::after {
    width: 6px;
    height: 6px;
    margin-top: -5px;
}

/* user form */

.user-form .form-group {
    margin-bottom: 15px;
}

.user-form .form-group label {
    color: var(--color-dark);
    margin-bottom: 4px;
}

.user-form .form-control {
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: none;
}

.user-form .nice-select {
    width: 100%;
    height: 50px;
    line-height: 48px;
    border-radius: 10px;
    font-size: 14px;
    padding-left: 20px;
    margin-bottom: 15px;
}

.user-form .nice-select::after {
    width: 9px;
    height: 9px;
    margin-top: -7px;
    right: 18px;
}

.user-form .nice-select .list {
    width: 100%;
}

.user-form .nice-select:focus,
.user-form .form-control:focus {
    border-color: var(--theme-color);
}

.blog-area .user-form .nice-select:focus,
.blog-area .user-form .form-control:focus {
    border-color: #0c65b6;
}

.user-form .theme-btn {
    width: unset;
    margin-top: 15px;
}

.SumoSelect.open .search-txt {
    border-radius: 15px !important;
}

.user-form .form-img-upload {
    width: 100%;
    height: 140px;
    border: 2px dashed var(--border-info-color);
    border-radius: 10px;
    cursor: pointer;
}

.user-form .form-img-file {
    display: none;
}

.user-form .form-img-upload span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.user-form .form-img-upload span i {
    margin-right: 5px;
}

.user-form .form-check {
    margin-bottom: 15px;
}

.user-form .form-check-input {
    margin-top: 6.5px;
    box-shadow: none;
}

.user-form .form-check-input:focus {
    border-color: var(--theme-color);
}

.user-form .form-check label {
    color: var(--color-dark);
}

.user-form .form-check label a {
    color: var(--theme-color);
}

/* user badge */

.badge {
    border-radius: 50px;
    padding: 5px 12px;
}

.badge-success {
    background: #dcfce7;
    color: #22c79c;
}

.badge-info {
    background: #fef5da;
    color: #f9bc0b;
}

.badge-primary {
    background: #dbf7fd;
    color: #0dcaf0;
}

.badge-danger {
    background: #fee2e2;
    color: #ef4444;
}

/* dashboard */

.dashboard-widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    border-radius: 10px;
    margin: 10px 0;
}

.dashboard-widget-info span {
    font-weight: 500;
}

.dashboard-widget-info h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 5px;
}

.dashboard-widget-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    border-radius: 50px;
}

.dashboard-widget.color-1 {
    background: #fef5da;
    color: #f9bc0b;
}

.dashboard-widget.color-1 h1 {
    color: #f9bc0b;
}

.dashboard-widget.color-1 .dashboard-widget-icon {
    background: #f9bc0b;
    color: #fff;
}

.dashboard-widget.color-2 {
    background: rgba(17, 183, 107, 0.08);
    color: #11b76b;
}

.dashboard-widget.color-2 h1 {
    color: #11b76b;
}

.dashboard-widget.color-2 .dashboard-widget-icon {
    background: #11b76b;
    color: #fff;
}

.dashboard-widget.color-3 {
    background: rgba(240, 84, 84, 0.08);
    color: #f05454;
}

.dashboard-widget.color-3 h1 {
    color: #f05454;
}

.dashboard-widget.color-3 .dashboard-widget-icon {
    background: #f05454;
    color: #fff;
}

.dashboard-widget.color-4 {
    background: rgba(13, 202, 240, 0.08);
    color: #0dcaf0;
}

.dashboard-widget.color-4 h1 {
    color: #0dcaf0;
}

.dashboard-widget.color-4 .dashboard-widget-icon {
    background: #0dcaf0;
    color: #fff;
}

.dashboard-widget.color-5 {
    background: rgba(168, 85, 247, 0.08);
    color: #a855f7;
}

.dashboard-widget.color-5 h1 {
    color: #a855f7;
}

.dashboard-widget.color-5 .dashboard-widget-icon {
    background: #a855f7;
    color: #fff;
}

.dashboard-widget.color-6 {
    background: rgba(13, 110, 253, 0.08);
    color: #0d6efd;
}

.dashboard-widget.color-6 h1 {
    color: #0d6efd;
}

.dashboard-widget.color-6 .dashboard-widget-icon {
    background: #0d6efd;
    color: #fff;
}
/* user table */

.user-area .table {
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-bottom: 0;
}

.user-area .table th {
    color: var(--body-text-color);
}

.user-area .table tbody tr {
    background: var(--theme-bg-light);
    margin-bottom: 10px;
}

.user-area .table td {
    background: unset;
}

.user-area .table td:first-child {
    border-left-style: solid;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.user-area .table td:last-child {
    border-right-style: solid;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.user-area .table-list-info a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-area .table-list-info h6 {
    transition: all 0.5s ease-in-out;
    margin-bottom: 5px;
}

.user-area .table-list-content:hover h6 {
    color: var(--theme-color);
}

.user-area .table-list-info p {
    color: var(--color-dark);
}

.user-area .table-list-info span {
    color: var(--color-dark);
}

.user-area .table-list-img {
    background: var(--color-white);
    border-radius: 10px;
}

.user-area .table-list-info img {
    width: 80px;
    border-radius: 8px;
}

.user-area .user-card .table > :not(caption) > * > * {
    vertical-align: middle;
    padding: 0.8rem 0.8rem;
}

.user-area .table-list-code {
    color: var(--theme-color);
    font-weight: 500;
}

@media all and (max-width: 767px) {
    .user-area .table-list-info a {
        display: block;
    }

    .user-area .table-list-info h6 {
        margin-top: 10px;
    }
}

/* user action dropdown */

.user-action-dropdown .btn {
    padding: 4px 9px;
    border-radius: 8px;
}

.user-action-dropdown .dropdown-menu {
    border: none;
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.user-action-dropdown .dropdown-item:hover {
    background: transparent;
    color: var(--theme-color);
}

.user-action-dropdown .dropdown-item i {
    margin-right: 5px;
}

/* user order details */

.user-order-detail .order-detail-content {
    background: var(--theme-bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-top: 15px;
}

.user-order-detail .order-detail-content h5 {
    margin-bottom: 20px;
}

.user-order-detail .order-detail-content p i {
    margin-right: 5px;
}

.user-order-detail .order-detail-content li {
    margin: 5px 0;
}

.user-order-detail .order-detail-content li span {
    float: right;
}

.user-order-detail .order-detail-content li:last-child {
    border-top: 1px solid var(--border-info-color);
    margin-top: 10px;
    padding-top: 10px;
    font-weight: 500;
}

/* user ticket details */

.user-ticket-detail .ticket-detail-content {
    margin-top: 30px;
}

.user-ticket-detail .ticket-chat-item {
    display: flex;
    gap: 20px;
    margin: 50px 0;
}

.user-ticket-detail .ticket-img img {
    width: 80px;
    border-radius: 50%;
}

.user-ticket-detail .ticket-info {
    flex: 1;
}

.user-ticket-detail .ticket-info span {
    color: var(--theme-color);
}

/* user order track */

.user-track-order .track-order-content {
    margin-top: 30px;
}

.user-track-order .track-order-content h5 {
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
}

.user-track-order .track-order-content h5 span {
    color: var(--theme-color);
}

.user-track-order .track-order-info {
    margin-top: 25px;
}

.user-track-order .track-order-info a {
    background: var(--theme-bg-light);
    padding: 10px 20px;
    border-radius: 10px;
    margin: 0 5px 5px 0;
}

.user-track-order .track-order-info a span {
    font-weight: 500;
}

.user-track-order .track-order-step {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.user-track-order .track-order-step .step-item {
    text-align: center;
    padding: 10px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.user-track-order .track-order-step .step-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--theme-color);
    left: 0;
    top: 50px;
    z-index: -1;
}

.user-track-order .track-order-step .step-item:first-child:before {
    width: 50%;
    left: unset;
    right: 0;
}

.user-track-order .track-order-step .step-item:last-child:before {
    width: 50%;
}

.user-track-order .track-order-step .step-item.completed::before {
    background: var(--color-red);
}

.user-track-order .track-order-step .step-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background: var(--theme-color);
    color: var(--color-white);
    font-size: 35px;
    border-radius: 50%;
    margin: 0 auto;
}

.user-track-order .track-order-step .step-item.completed .step-icon {
    background: var(--color-red);
}

.user-track-order .track-order-step .step-item h6 {
    margin-top: 15px;
    font-size: 14px;
}

@media all and (max-width: 767px) {
    .user-track-order .track-order-step {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .user-track-order .track-order-step .step-item::before {
        display: none;
    }
}

/* user country */

.user-country .user-country-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
}

.user-country .user-country-list li:last-child {
    margin-bottom: 0;
}

.user-country .user-country-list li img {
    width: 35px;
    border-radius: 4px;
}

.user-country .user-country-list li h6 {
    color: var(--body-text-color);
    font-weight: 500;
    flex: 1;
}

.user-country .user-country-list li span {
    color: var(--body-text-color);
    font-weight: 500;
}

/* user store */

.user-store .store-file {
    display: none;
}

.user-store .store-logo-preview {
    position: relative;
    width: 120px;
    height: 120px;
    margin-top: 10px;
    margin-bottom: 30px;
    border: 1px solid var(--border-info-color);
    padding: 10px;
    border-radius: 50%;
}

.user-store .store-logo-preview img {
    border-radius: 50%;
}

.user-store .store-banner-preview {
    position: relative;
    margin-top: 10px;
    margin-bottom: 30px;
}

.user-store .store-banner-preview img {
    border-radius: 12px;
}

.user-store .store-banner-preview button,
.user-store .store-logo-preview button {
    position: absolute;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    background: var(--theme-color);
    color: var(--color-white);
    border: none;
    box-shadow: var(--box-shadow);
}

.user-store .store-logo-preview button {
    right: -10px;
    bottom: 20px;
}

.user-store .store-banner-preview button {
    right: 20px;
    bottom: 20px;
}

/* user payout */

.user-payout .user-payout-content {
    margin-top: 20px;
}

.user-payout .payout-item {
    background: var(--theme-bg-light);
    padding: 30px;
    border-radius: 10px;
}

.user-payout .next-payout p {
    margin-top: 20px;
    margin-bottom: 36px;
    font-size: 18px;
}

.user-payout .next-payout p span {
    font-weight: 500;
}

.user-payout .payout-method .payout-method-img {
    margin-top: 20px;
    margin-bottom: 25px;
}

.user-payout .payout-method .payout-method-img img {
    width: 100px;
    margin-right: 10px;
}

@media all and (max-width: 991px) {
    .user-payout .next-payout {
        margin-bottom: 20px;
    }
}

/* user setting */

.user-setting .form-check {
    margin-bottom: 10px;
}

.user-setting .form-check-input {
    margin-top: 6.5px;
    box-shadow: none;
}

.user-setting .form-check-label {
    color: var(--body-text-color);
}

/* user message */

.user-message .message-wrapper {
    display: flex;
}

.user-message .message-inbox {
    max-width: 340px;
    border: 1px solid var(--border-info-color);
    border-radius: 10px;
}

.user-message .message-inbox {
    overflow: hidden;
}

.user-message .message-content {
    padding-left: 30px;
    position: relative;
    overflow: hidden;
}

.user-message .message-content-info {
    max-height: 750px;
    overflow-y: scroll;
    margin-right: -50px;
    padding-right: 50px;
}

.user-message .message-inbox,
.user-message .message-content {
    flex: 1;
}

.user-message .message-inbox ul {
    max-height: 950px;
    overflow-y: scroll;
    width: 357px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-message .message-inbox ul li.message-active {
    border-left: 3px solid var(--theme-color);
}

.user-message .message-inbox ul li {
    border-bottom: 1px solid var(--border-info-color);
    transition: 0.2s;
    list-style: none;
}

.user-message .message-inbox ul li:last-child {
    border-bottom: none;
}

.user-message .message-by-content h5 {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1;
}

.user-message .message-inbox ul li a {
    position: relative;
    display: block;
    padding: 30px;
}

.user-message .message-inbox .message-avatar {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.user-message .message-avatar img {
    display: inline-block;
    width: 54px;
    height: 54px;
    border-radius: 50%;
}

.user-message .message-avatar img {
    width: 50px;
    height: 50px;
}

.user-message .message-inbox .message-by {
    margin-left: 50px;
}

.user-message .message-by-content h5 i {
    background: var(--color-yellow);
    padding: 3px 8px;
    border-radius: 50px;
    color: var(--color-white);
    font-size: 13px;
}

.user-message .message-by-content span {
    font-size: 13px;
    position: absolute;
    top: 25.5px;
    right: 25px;
    float: right;
    color: var(--body-text-color);
}

.user-message .message-inbox .message-by p {
    height: 26px;
    max-width: 205px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 14px;
    margin: 0;
    padding: 0;
    color: var(--body-text-color);
    line-height: 27px;
}

.user-message .message-item {
    display: block;
    position: relative;
    margin-bottom: 25px;
}

.user-message .message-item .message-avatar {
    position: absolute;
    left: 0;
    top: 0;
}

.user-message .message-item .message-avatar img {
    width: 50px;
    height: 50px;
    display: inline-block;
    border-radius: 50%;
}

.user-message .message-item .message-description {
    margin-left: 70px;
    background: var(--theme-bg-light);
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.user-message .message-item .message-description::before {
    position: absolute;
    top: 0px;
    left: -9px;
    content: "\f0d9";
    font-family: "Font Awesome 6 Pro";
    font-weight: bold;
    font-size: 31px;
    color: var(--theme-bg-light);
}

.user-message .message-item .message-description p {
    font-size: 15px;
    padding: 0;
    margin: 0;
    line-height: 27px;
}

.user-message .message-item.me .message-avatar {
    left: auto;
    right: 0;
    position: absolute;
    top: 0;
}

.user-message .message-item.me .message-description {
    color: var(--theme-color);
    background-color: rgba(9, 195, 152, 0.1);
    margin-left: 0;
    margin-right: 70px;
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.user-message .message-item.me .message-description::before {
    content: "\f0da";
    left: auto;
    right: -9px;
    color: #e6f9f4;
}

.user-message .message-reply {
    margin-top: 15px;
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 15px;
}

.user-message .message-reply .form-control {
    padding: 15px 20px;
    box-shadow: none;
    border-radius: 10px;
}

.user-message .message-reply .form-control:focus {
    border-color: var(--theme-color);
}

.user-message .message-reply .theme-btn {
    margin-top: 15px;
}

.user-message .message-status {
    width: 12px;
    height: 12px;
    background: var(--theme-color);
    display: flex;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    position: absolute;
    right: -5px;
    top: 50%;
}

.user-message .message-status.online {
    background: var(--theme-color);
}

.user-message .message-status.offline {
    background: var(--color-red);
}

.user-message .message-status.busy {
    background: var(--color-yellow);
}

.user-message .header-account:hover {
    cursor: pointer;
}

.user-message .header-account img {
    width: 45px;
    border-radius: 50%;
}

.user-message .header-account .dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.user-message .header-account .dropdown-item:hover {
    background: transparent;
    color: var(--theme-color);
    padding-left: 20px;
}

@media all and (max-width: 991px) {
    .user-message .message-by-content span {
        right: 65px;
    }

    .user-message .message-reply {
        right: 0;
    }
}

@media all and (max-width: 767px) {
    .user-message .message-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .user-message .user-card-header {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .user-message .message-content {
        padding-left: 0;
        padding-bottom: 200px;
    }

    .user-message .message-reply {
        left: 0;
    }
}

.error-wrapper {
    text-align: center;
}

.error-wrapper h1 {
    font-size: 250px;
    letter-spacing: 5px;
    font-weight: bold;
    color: var(--theme-color);
}

.error-wrapper h1 span {
    color: var(--color-dark);
}

.error-wrapper h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.error-wrapper img {
    width: 100%;
}

.error-wrapper .theme-btn {
    margin-top: 30px;
}

@media all and (max-width: 767px) {
    .error-wrapper h1 {
        font-size: 160px;
    }
}

.blog-area {
    position: relative;
}

.blog-item {
    margin-bottom: 25px;
    background: var(--color-white);
    transition: var(--transition);
}

.blog-item-img {
    border-radius: 12px;
    overflow: hidden;
}

.blog-item-img img {
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

.blog-item:hover .blog-item-img img {
    transform: scale(1.1);
}

.blog-item-meta {
    padding: 14px 0;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--border-info-color);
}

.blog-item-meta ul li {
    display: inline-block;
    margin-right: 15px;
    font-weight: 500;
    position: relative;
    color: var(--color-dark);
}

.blog-item-meta ul li i {
    margin-right: 5px;
    color: var(--theme-color);
}

.blog-item-meta a:hover {
    color: var(--theme-color);
}

.blog-title {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.blog-item-info p {
    margin-bottom: 16px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-item-info .theme-btn {
    margin-top: 15px;
}

.blog-item-info h4 a {
    color: var(--color-dark);
}

.blog-item-info h4 a:hover {
    color: var(--theme-color);
}

/*========================
57. Blog single css
==========================*/

.blog-thumb-img {
    margin-bottom: 20px;
}

.blog-single-content img {
    border-radius: 15px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.blog-meta .blog-meta-left ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-meta .blog-meta-left ul li {
    font-weight: 500;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--theme-color);
}

.blog-meta a,
.blog-meta button {
    color: var(--color-dark);
    font-weight: 500;
}

.blog-meta a:hover,
.blog-meta button:hover {
    color: var(--theme-color);
}

.blog-details-title {
    font-size: 22px;
    color: var(--color-dark);
}

.blockqoute {
    position: relative;
    background: var(--theme-bg-light);
    border-left: 5px solid var(--theme-color);
    padding: 30px;
    font-size: 17px;
    font-style: italic;
    margin: 20px 0;
    border-radius: 0px;
}

.blockqoute i {
    position: absolute;
    right: 30px;
    bottom: 8px;
    color: var(--theme-color);
    font-size: 90px;
    opacity: 0.2;
}

.blockqoute-author {
    margin-top: 20px;
    padding-left: 60px;
    position: relative;
    color: var(--color-dark);
}

.blockqoute-author::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 40px;
    background: var(--theme-color);
    left: 0;
    top: 10px;
}

.blog-details-tags {
    display: flex;
    align-items: center;
    gap: 20px;
}

.blog-details-tags h5 {
    color: var(--color-dark);
}

.blog-details-tags ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-details-tags ul a {
    background: var(--theme-bg-light);
    color: var(--color-dark);
    padding: 4px 18px 5px 18px;
    border-radius: 50px;
    transition: var(--transition);
}

.blog-details-tags ul a:hover {
    background: var(--theme-color);
    color: var(--color-white);
}

.blog-author {
    display: flex;
    justify-content: start;
    align-items: center;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin: 50px 0;
    padding: 20px;
}

.blog-author-img {
    width: 320px;
}

.blog-author-img img {
    border-radius: 15px;
}

.author-name {
    font-size: 22px;
    color: var(--theme-color);
    margin: 8px 0;
}

.author-info {
    padding: 0 20px;
}

.author-social {
    margin-top: 10px;
}

.author-social a {
    width: 35px;
    height: 35px;
    line-height: 31px;
    text-align: center;
    border: 2px solid var(--theme-color);
    border-radius: 50px;
    margin-right: 5px;
    color: var(--theme-color);
    transition: var(--transition);
}

.author-social a:hover {
    color: var(--color-white);
    background: var(--theme-color);
}

.blog-comments {
    margin-bottom: 50px;
}

.blog-comments h3 {
    color: var(--color-dark);
}

.blog-comments-wrapper {
    margin: 30px 0;
}

.blog-comments-single {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    margin-top: 50px;
}

.blog-comments-single img {
    border-radius: 50%;
}

.blog-comments-content {
    padding: 0 0 0 20px;
}

.blog-comments-content span {
    font-size: 14px;
    color: var(--theme-color);
    font-weight: 500;
}

.blog-comments-content a {
    font-weight: 500;
    margin-top: 5px;
    color: var(--theme-color);
}

.blog-comments-content a:hover {
    color: var(--color-red);
}

.blog-comments-content h5 {
    color: var(--color-dark);
}

.blog-comments-reply {
    margin-left: 50px;
}

.blog-comments-form {
    padding: 30px;
    margin-top: 50px;
    border-radius: 10px;
    background: var(--theme-bg-light);
}

.blog-comments-form h3 {
    margin-bottom: 20px;
}

.blog-comments-form .form-group {
    margin-bottom: 20px;
}

.blog-comments-form .form-control {
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: none;
    transition: var(--transition);
}

.blog-comments-form .form-control:focus {
    border-color: var(--theme-color);
}

@media all and (max-width: 767px) {
    .blog-meta {
        flex-direction: column;
        font-size: 15px;
    }

    .blog-meta .blog-meta-left ul {
        gap: 10px;
    }

    .blog-details-tags {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-author {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .author-info {
        margin-top: 25px;
    }

    .blog-comments-single {
        flex-direction: column;
        text-align: center;
        padding: 30px 0px;
        box-shadow: var(--box-shadow);
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .blog-comments-single img {
        margin: 0 auto 20px auto;
    }

    .blog-comments-reply {
        margin-left: 0px;
    }
}

/*=======================
58. Widget sidebar css
=========================*/

.widget {
    background: var(--theme-bg-light);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
}

.widget .widget-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
}

.widget .widget-title::before {
    position: absolute;
    content: "";
    width: 10px;
    border-bottom: 3px solid var(--theme-color);
    bottom: 0;
    left: 0;
}

.widget .widget-title::after {
    position: absolute;
    content: "";
    width: 25px;
    border-bottom: 3px solid var(--theme-color);
    bottom: 0;
    left: 15px;
}

.widget .search-form .form-control {
    padding: 12px 15px 12px 15px;
    border-radius: 12px;
    box-shadow: none;
}

.widget .search-form {
    position: relative;
}

.widget .search-form .form-control:focus {
    border-color: var(--theme-color);
}

.widget .search-form button {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    padding: 8px 18px 6px 18px;
    background: transparent;
    border: none;
    color: var(--theme-color);
}

.widget .category-list a {
    display: block;
    padding: 10px 0;
    font-weight: 500;
    border-bottom: 1px solid var(--border-info-color);
    transition: var(--transition);
}

.widget .category-list a:last-child {
    margin-bottom: 0px;
    border-bottom: none;
}

.widget .category-list a:hover {
    padding-left: 10px;
    color: var(--theme-color);
}

.widget .category-list a i {
    margin-right: 5px;
    color: var(--theme-color);
}

.widget .category-list a span {
    float: right;
}

.widget .recent-post-single {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.widget .recent-post-img {
    margin-right: 20px;
}

.widget .recent-post-img img {
    width: 120px;
    height: 60px;
    object-fit: cover;
}

.widget .recent-post-bio h6 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: capitalize;
}

.widget .recent-post-bio span {
    font-size: 14px;
    font-weight: 500;
    color: var(--theme-color);
}

.widget .recent-post-bio span i {
    margin-right: 5px;
}

.widget .recent-post-bio h6 a:hover {
    color: var(--theme-color);
}

.widget .social-share-link a {
    width: 35px;
    height: 35px;
    line-height: 32px;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    text-align: center;
    margin-right: 5px;
    border-radius: 50px;
    transition: var(--transition);
}

.widget .social-share-link a:hover {
    background: var(--theme-color);
    color: var(--color-white);
}

.widget .tag-list a {
    background: var(--color-white);
    color: var(--color-dark);
    padding: 5px 15px;
    margin-bottom: 10px;
    margin-right: 10px;
    border-radius: 10px;
    display: inline-block;
    transition: var(--transition);
}

.widget .tag-list a:hover {
    background-color: var(--theme-color);
    color: var(--color-white);
}

.pagination-area {
    margin: 40px 0 40px 0;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .page-link {
    border: none;
    background: var(--theme-color);
    color: var(--color-white);
    margin: 0 10px;
    border-radius: 12px !important;
    width: 40px;
    height: 40px;
    line-height: 28px;
    text-align: center;
    transition: var(--transition);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: var(--theme-color);
    color: var(--color-white);
    z-index: 1;
}

.site-breadcrumb {
    position: relative;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    padding-top: 50px;
    padding-bottom: 50px;
    z-index: 1;
}

.site-breadcrumb-bg {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center !important;
    background-size: cover !important;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
    font-size: 25px;
    color: var(--color-dark);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
    position: relative;
    z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
    position: relative;
    display: inline-block;
    margin-left: 25px;
    color: var(--color-dark);
    font-weight: 500;
    text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
    color: var(--color-dark);
    transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
    position: absolute;
    content: "\f101";
    font-family: "Font Awesome 6 Pro";
    right: -21px;
    top: 1px;
    text-align: center;
    font-size: 14px;
    color: var(--color-dark);
}

.site-breadcrumb .breadcrumb-menu li:first-child {
    margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
    display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
    color: var(--theme-color);
}

.site-breadcrumb .breadcrumb-menu li.active {
    color: var(--theme-color);
}

/*===================
61. Contact us css
=====================*/

.contact-area {
    position: relative;
}

.contact-content {
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 25px 15px;
    position: relative;
    margin-bottom: 25px;
    border-radius: 15px;
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-info:hover {
    transform: translateY(-8px);
}

.contact-info-icon i {
    font-size: 35px;
    color: var(--color-white);
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50px;
    background: var(--theme-color);
}

.contact-info h5 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.contact-info p {
    color: var(--body-text-color);
    font-weight: 500;
    font-size: 14px;
}

.contact-form {
    background: var(--color-white);
    border-radius: 10px;
    padding: 15px 30px 10px 30px;
    box-shadow: var(--box-shadow);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-group .form-control {
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: none;
    transition: var(--transition);
}

.contact-form .form-group .form-control:focus {
    border-color: var(--theme-color);
}

.contact-map {
    margin-bottom: -9px;
}

.contact-map iframe {
    width: 100%;
    height: 350px;
}

@media all and (max-width: 991px) {
    .contact-info {
        padding: 35px;
    }
}

@media all and (max-width: 768px) {
    .contact-content {
        margin-top: 50px;
        margin-bottom: 0;
    }
}

.footer-area {
    background: var(--footer-bg);
    position: relative;
    z-index: 1;
}

.footer-widget-box {
    margin-bottom: 10px;
}

.footer-widget {
    position: relative;
    z-index: 1;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 15px;
}

.footer-widget-title {
    color: var(--color-white);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    z-index: 1;
}

.footer-widget-title::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background: var(--color-white);
    border-radius: 50px;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.footer-widget-title::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    bottom: 0;
    left: 14px;
    z-index: -1;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-list li a {
    color: var(--color-white);
    transition: var(--transition);
}

.footer-list li a i {
    margin-right: 5px;
    color: var(--color-white);
}

.footer-list li a:hover {
    padding-left: 5px;
}

.footer-widget-box p {
    color: var(--color-white);
    padding-right: 18px;
    margin-bottom: 20px;
}

.footer-contact li {
    position: relative;
    color: var(--footer-text-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-contact li a {
    color: var(--footer-text-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.footer-contact li i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    margin-right: 15px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.07);
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: var(--color-white);
}

.footer-contact li:hover i {
    background: var(--theme-color);
}

.footer-call {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-call-icon {
    font-size: 40px;
    color: var(--color-yellow);
}

.footer-call-info p {
    color: var(--color-white);
    font-size: 14px;
    margin-bottom: 0;
}

.footer-call-info a {
    color: var(--color-yellow);
    font-size: 17px;
    font-weight: 600;
}

.footer-download h5 {
    color: var(--color-white);
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 500;
}

.footer-download-btn {
    display: flex;
    gap: 8px;
}

.footer-download-btn a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px 10px 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.footer-download-btn a:hover {
    background: var(--theme-color);
}

.footer-download-btn a i {
    font-size: 16px;
}

.download-btn-info {
    display: flex;
    flex-direction: column;
}

.download-btn-info span {
    font-weight: 500;
    font-size: 12px;
    line-height: 1;
}

.download-btn-info h6 {
    color: var(--color-white);
    font-size: 14px;
}

.footer-top-link {
    margin-top: 30px;
}

.footer-top-link h5 {
    color: var(--color-white);
    font-size: 17px;
    font-weight: 500;
}

.footer-top-link-info {
    margin-top: 10px;
}

.footer-top-link-info a {
    color: var(--color-white);
    border: 1px solid var(--border-white-color);
    color: var(--body-text-color);
    padding: 3px 15px;
    margin: 10px 5px 0 0;
    border-radius: 50px;
    font-size: 14px;
}

.footer-top-link-info a:hover {
    border-color: var(--theme-color);
    color: var(--theme-color);
}

.copyright {
    position: relative;
}

.copyright-wrap {
    padding: 8px 0;
    border-top: 1px solid var(--border-white-color);
}

.copyright .copyright-text {
    color: var(--footer-text-color);
    margin-bottom: 0px;
    font-size: 14px;
    text-align: center;
}

.copyright .copyright-text a {
    color: var(--theme-color);
    font-weight: 500;
}

.footer-payment span {
    color: var(--color-white);
    margin-right: 10px;
}

.footer-payment img {
    width: 38px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: end;
}

.footer-social span {
    line-height: 39px;
    color: var(--color-white);
}

.footer-social a {
    height: 38px;
    width: 38px;
    line-height: 39px;
    text-align: center;
    border-radius: 50px;
    color: var(--theme-color);
    background: var(--color-gray);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

@media all and (min-width: 1199px) and (max-width: 1399px) {
    .footer-download-btn a i {
        font-size: 27px;
    }

    .download-btn-info span {
        font-size: 10px;
    }

    .download-btn-info h6 {
        font-size: 12px;
    }
}

@media all and (min-width: 992px) and (max-width: 1199px) {
    .footer-payment span,
    .footer-social span {
        display: none;
    }

    .footer-call-icon {
        font-size: 30px;
    }
}

@media all and (max-width: 991px) {
    .footer-widget-box {
        margin-bottom: 50px;
    }

    .footer-payment {
        margin-bottom: 20px;
    }

    .footer-social {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .footer-top-link {
        margin-top: 8px;
    }

    .copyright .copyright-text {
        text-align: start;
    }
}

.header-top {
    background: var(--theme-color);
    padding: 7px 0 9px 0;
}

.header-top-list li a:hover {
    color: var(--color-white);
}

.header-top-list li a i {
    color: var(--color-white);
}

.header-middle {
    padding: 20px 0;
}

.navbar {
    border-top: 1px solid var(--border-info-color);
    border-bottom: 1px solid var(--border-info-color);
}

.navbar.fixed-top {
    border: none;
}

.footer-call {
    margin-bottom: 15px;
}

.footer-download {
    margin-top: 25px;
}

.footer-download-btn {
    gap: 12px;
}

.footer-download-btn a {
    border: 2px solid var(--color-white);
}

.copyright-text {
    text-align: left;
}

.footer-payment {
    text-align: right;
}

@media all and (min-width: 992px) {
    .navbar .nav-item .nav-link {
        padding: 20px 0;
    }
}

@media all and (max-width: 767px) {
    .footer-payment {
        text-align: left;
        margin-top: 20px;
    }
}

@media all and (max-width: 991px) {
    .footer-widget-wrapper {
        padding-bottom: 0;
    }
}

.card {
    -webkit-margin-after: 1.5rem;
    margin-block-end: 1.5rem;
    border: 0px solid var(--border);
    border-radius: 0.625rem;
    box-shadow: var(--shadow);
    width: 100%;
    position: relative;
    background-color: var(--default-body-bg-color);
}

.card .filled {
    display: none;
}

.card .feature-avatar-1 {
    background-color: var(--gray-100);
    color: #fff;
}

.card .overlay-content {
    position: absolute;
    inset-block-start: 50%;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.card .feature-content {
    background-color: var(--gray-100);
}

.card:hover .filled,
.card.hover-active .filled {
    display: inline-block;
}

.card:hover .outline,
.card.hover-active .outline {
    display: none;
}

.card:hover .feature-avatar,
.card.hover-active .feature-avatar {
    transform: scale(1.28);
}

.card:hover .feature-avatar-1,
.card.hover-active .feature-avatar-1 {
    background-color: var(--primary-color);
    color: #fff;
    transform: scale(0.8);
    transition: transform ease 0.3s;
}

.card:hover .feature-avatar-1.feature-avatar-1-secondary,
.card.hover-active .feature-avatar-1.feature-avatar-1-secondary {
    background-color: rgba(var(--secondary-rgb), 0.1);
}

.card:hover .feature-avatar-1.feature-avatar-1-success,
.card.hover-active .feature-avatar-1.feature-avatar-1-success {
    background-color: rgba(var(--success-rgb), 0.1);
}

.card:hover .feature-avatar-1.feature-avatar-1-danger,
.card.hover-active .feature-avatar-1.feature-avatar-1-danger {
    background-color: rgba(var(--danger-rgb), 0.1);
}

.card:hover .feature-avatar-1.feature-avatar-1-pink,
.card.hover-active .feature-avatar-1.feature-avatar-1-pink {
    background-color: rgba(var(--pink-rgb), 0.1);
}

.card:hover .feature-avatar-2,
.card.hover-active .feature-avatar-2 {
    background-color: var(--primary-color);
    color: #fff;
}

.card:hover .feature-avatar-2.feature-avatar-2-primary,
.card.hover-active .feature-avatar-2.feature-avatar-2-primary {
    background-color: var(--primary-color);
}

.card:hover .feature-avatar-2.feature-avatar-2-secondary,
.card.hover-active .feature-avatar-2.feature-avatar-2-secondary {
    background-color: rgba(var(--secondary-rgb), 0.1);
}

.card:hover .feature-avatar-2.feature-avatar-2-success,
.card.hover-active .feature-avatar-2.feature-avatar-2-success {
    background-color: rgba(var(--success-rgb), 0.1);
}

.card:hover .feature-avatar-2.feature-avatar-2-danger,
.card.hover-active .feature-avatar-2.feature-avatar-2-danger {
    background-color: rgba(var(--danger-rgb), 0.1);
}

.card:hover .feature-avatar-2.feature-avatar-2-pink,
.card.hover-active .feature-avatar-2.feature-avatar-2-pink {
    background-color: rgba(var(--pink-rgb), 0.1);
}

.card:hover .feature-avatar-3,
.card.hover-active .feature-avatar-3 {
    background-color: var(--white-2);
}

.card:hover .overlay-content,
.card.hover-active .overlay-content {
    opacity: 1;
}

.card:hover .muted-content,
.card.hover-active .muted-content {
    color: #fff;
    opacity: 0.7;
}

.card .tool-img-white {
    display: none;
}

.card-body {
    padding: 1.5rem;
}

.pricing-card {
    transition: all ease 0.3s;
    box-shadow: none;
}

.pricing-card:hover {
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
}

.pricing-card.pricing-card-premium:hover {
    box-shadow: 0px 4px 15px 0px var(--primary05);
}

.pricing-table {
    font-weight: 500;
}

.pricing-table th,
.pricing-table td:not(.pricing-feature) {
    text-align: center;
}

.pricing-table .pricing-feature {
    color: var(--color-dark);
    font-weight: 600;
}

.pricing-table .pricing-feature.pricing-category {
    background-color: var(--gray-100);
}

.pricing-table .main-feature {
    background-color: var(--gray-100);
}

.pricing-table th {
    vertical-align: baseline;
}

.pricing-table td {
    vertical-align: middle;
}

.pricing-feature {
    border-inline-end-width: 0 !important;
}

.pricing-card.pricing-card-premium {
    overflow: hidden;
    position: relative;
}

.pricing-card.pricing-card-premium:hover::before {
    transform: rotate(41deg);
}

.pricing-icon {
    width: 50px;
    height: 50px;
    -webkit-margin-after: 1rem;
    margin-block-end: 1rem;
    background-color: var(--primary01);
    border-radius: 50px;
    padding: 0.7rem;
    box-shadow: 0px 5px 10px var(--primary01);
}

.btn-success-transparent {
    background-color: var(--primary02);
    color: var(--primary-color);
    border-color: var(--primary02);
}

.btn-custom-success {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-custom-success:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-success-transparent:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.heading-section {
    text-align: center;
    margin-bottom: 15px;
}

.heading-title {
    font-size: 2rem;
    -webkit-margin-after: 0.5rem;
    margin-block-end: 0.5rem;
    font-family: "Bitter", sans-serif;
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.2;
}

.heading-subtitle {
    position: relative;
    display: inline-block;
    -webkit-margin-after: 0.5rem;
    margin-block-end: 0.5rem;
}

.heading-subtitle::before,
.heading-subtitle::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    inset-inline-start: -30px;
    background-color: rgb(var(--secondary-rgb));
    inset-block-start: 50%;
}

.heading-subtitle::after {
    inset-inline-end: -30px;
    inset-inline-start: inherit;
}

.heading-description {
    font-size: 1rem;
    -webkit-margin-after: 0;
    margin-block-end: 0;
    color: var(--default-text-color);
    opacity: 0.8;
}

.tx-primary {
    color: var(--primary-color);
}

.tx-16 {
    font-size: 1rem;
}

.fw-semibold {
    font-weight: 600 !important;
}

.custom-title {
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recent-post-bio a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

#button-contact-vr {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 99999;
}

#button-contact-vr .button-contact {
    position: relative;
    margin-top: -5px;
}

#button-contact-vr .button-contact .phone-vr {
    position: relative;
    visibility: visible;
    background-color: transparent;
    width: 70px;
    height: 70px;
    cursor: pointer;
    z-index: 11;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transition: visibility 0.5s;
    left: 0;
    bottom: 0;
    display: block;
}

.phone-vr-circle-fill {
    width: 50px;
    height: 50px;
    top: 12px;
    left: 12px;
    position: absolute;
    box-shadow: 0 0 0 0 #c31d1d;
    background-color: rgba(230, 8, 8, 0.7);
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
    transition: all 0.5s;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-animuiion: zoom 1.3s infinite;
    animation: zoom 1.3s infinite;
}

.phone-vr-img-circle {
    background-color: #e60808;
    width: 30px;
    height: 30px;
    line-height: 30px;
    top: 22px;
    left: 22px;
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
    animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

.phone-vr-img-circle a {
    display: block;
    line-height: 37px;
}

.phone-vr-img-circle img {
    max-height: 25px;
    max-width: 27px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

#instagram-vr .phone-vr-circle-fill {
    background: rgb(17, 143, 253);
    background: linear-gradient(
        160deg,
        rgba(17, 143, 253, 1) 20%,
        rgba(188, 60, 218, 1) 50%,
        rgba(253, 223, 5, 1) 80%
    );
    background-size: contain;
    box-shadow: 0 0 0 0 #c840c9;
    background-color: rgb(79 103 254);
    border: 0;
}

#instagram-vr .phone-vr-img-circle {
    background: transparent;
}

#telegram-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2c9fd8;
    background-color: rgb(44 159 216 / 74%);
}

#telegram-vr .phone-vr-img-circle {
    background: #2c9fd8;
}

@-webkit-keyframes phone-vr-circle-fill {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

@-webkit-keyframes zoom {
    0% {
        transform: scale(0.9);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 transparent;
    }
}

@keyframes zoom {
    0% {
        transform: scale(0.9);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 transparent;
    }
}

.phone-bar a {
    position: absolute;
    margin-top: -65px;
    left: 30px;
    z-index: -1;
    color: #fff;
    font-size: 16px;
    padding: 7px 15px 7px 50px;
    border-radius: 100px;
    white-space: nowrap;
}

.phone-bar a:hover {
    opacity: 0.8;
    color: #fff;
}

@media (max-width: 736px) {
    .phone-bar {
        display: none;
    }
}

#zalo-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, 0.7);
}

#zalo-vr .phone-vr-img-circle {
    background-color: #2196f3;
}

#viber-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #714497;
    background-color: rgba(113, 68, 151, 0.8);
}

#viber-vr .phone-vr-img-circle {
    background-color: #714497;
}

#contact-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #2196f3;
    background-color: rgba(33, 150, 243, 0.7);
}

#contact-vr .phone-vr-img-circle {
    background-color: #2196f3;
}

div#whatsapp-vr .phone-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #1fd744;
    background-color: rgb(35 217 72 / 70%);
}

div#whatsapp-vr .phone-vr .phone-vr-img-circle {
    background: #1cd741;
}

div#whatsapp-vr .phone-vr .phone-vr-img-circle img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
}

#fanpage-vr img {
    max-width: 35px;
    max-height: 35px;
}

#fanpage-vr .phone-vr-img-circle {
    background-color: #1877f2;
}

#fanpage-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 rgb(24 119 242 / 65%);
    background-color: rgb(24 119 242 / 70%);
}

#gom-all-in-one .button-contact {
    transition: 1.6s all;
    -moz-transition: 1.6s all;
    -webkit-transition: 1.6s all;
}

#button-contact-vr.active #gom-all-in-one .button-contact {
    margin-left: -100%;
}

#all-in-one-vr .phone-bar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 100%;
    color: #fff;
    padding: 5px 15px 5px 48px;
    border-radius: 50px;
    margin-left: -64px;
    width: max-content;
    cursor: pointer;
}

#popup-showroom-vr,
div#popup-form-contact-vr {
    display: none;
}

#popup-showroom-vr.active,
div#popup-form-contact-vr.active {
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 99999;
}

.bg-popup-vr {
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(51 51 51 / 50%);
    width: 100%;
    height: 100vh;
}

.content-popup-vr {
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    border-radius: 5px;
    box-shadow: 0 0 14px 5px rgb(0 0 0 / 49%);
    max-width: 600px;
    display: flex;
}

.content-popup-vr input,
.content-popup-vr textarea {
    width: 100%;
    max-height: 100px;
    min-height: 38px;
    border: 1px solid #b1b1b1;
    margin-bottom: 10px;
    padding: 0 7px;
    background: #fff;
}

.content-popup-vr label {
    width: 100%;
}

.content-popup-vr input.wpcf7-form-control.wpcf7-submit {
    max-width: fit-content;
    padding: 5px 32px 2px;
    background: #2196f3;
    border: 0;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    margin: 10px auto 0;
    display: block;
    box-shadow: 0 0 5px 1px rgb(0 0 0 / 29%);
    font-weight: 400;
    min-height: auto;
    line-height: 30px;
}

.content-popup-vr input.wpcf7-form-control.wpcf7-submit:hover {
    opacity: 0.7;
}

.content-popup-vr .close-popup-vr {
    font-family: sans-serif;
    width: 23px;
    height: 23px;
    background: black;
    position: absolute;
    top: -10px;
    right: -10px;
    color: #fff;
    text-align: center;
    line-height: 23px;
    font-size: 17px;
    border-radius: 50%;
    cursor: pointer;
}

.content-popup-vr .close-popup-vr:hover {
    background: #b50000;
}

.content-popup-vr .content-popup-div-vr {
    width: 100%;
    padding: 25px;
}

.content-popup-vr .content-popup-img-vr {
    width: 100%;
    max-width: 45%;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}

#loco-top,
#loco-bottom {
    display: block;
}

#loco-top .content-popup-img-vr,
div#popup-form-contact-vr #loco-bottom .content-popup-img-vr {
    max-width: 100%;
    text-align: center;
}

#contact-showroom.no-event a {
    pointer-events: none;
}

.content-popup-vr .content-popup-div-vr ul {
    color: #333;
    list-style: none;
    font-size: 15px;
}

@media (max-width: 673px) {
    div#popup-form-contact-vr .content-popup-vr {
        display: block;
    }

    div#popup-form-contact-vr .content-popup-vr .content-popup-img-vr {
        max-width: 100%;
        display: none;
    }
}

#ftiktok-vr .phone-vr-img-circle {
    background-color: #020202;
}

#tiktok-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 rgb(2 2 2 / 55%);
    background-color: rgb(2 2 2 / 60%);
}

#tiktok-vr .phone-vr-img-circle img {
    max-width: 90%;
    max-height: 90%;
}

#tiktok-vr .phone-vr-img-circle {
    background: #020202;
}

#messenger-vr .phone-vr-circle-fill {
    box-shadow: 0 0 0 0 #6a4ffe;
    background-color: rgb(106 79 254 / 50%);
}

#messenger-vr .phone-vr-img-circle {
    background-color: #6a4ffe;
}

#messenger-vr .phone-vr-img-circle img {
    max-width: 100%;
    max-height: 100%;
}

.fixed-top .position-relative {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

.fixed-top .position-relative .navbar-brand img {
    width: 140px;
}
.fixed-top .position-relative .theme-btn {
    font-size: 14px;
    padding: 10px 20px;
}

.captcha-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 10px 25px;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
}

.captcha-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #70b7f6, #0c65b6);
}

.captcha-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f70b8;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.captcha-title::before {
    content: "🔒";
    font-size: 1.2rem;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.captcha-display {
    background: white;
    border: 2px solid #cbd5e0;
    border-radius: 12px;
    padding: 15px 20px;
    font-family: "Courier New", monospace;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 3px;
    color: #1f70b8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #ffffff 0%, #f7fafc 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    width: 140px;
}

.captcha-display::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.captcha-refresh {
    background: linear-gradient(135deg, #70b7f6 0%, #0c65b6 100%);
    border: none;
    border-radius: 12px;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(12, 101, 182, 0.3);
}

.captcha-refresh:hover {
    transform: translateY(-2px) rotate(180deg);
    box-shadow: 0 6px 20px rgba(12, 101, 182, 0.4);
}

.captcha-input {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    border: 2px solid #cbd5e0;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.captcha-input:focus {
    border-color: #0c65b6;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.captcha-input.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.captcha-input.success {
    border-color: #0c65b6;
    box-shadow: 0 0 0 3px rgba(12, 101, 182, 0.1);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #718096;
}

.security-badge::before {
    content: "✓";
    background: #0c65b6;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Responsive design */
@media (max-width: 768px) {
    .captcha-container {
        flex-direction: row;
        align-items: stretch;
    }

    .captcha-refresh {
        align-self: center;
    }

    .captcha-input {
        min-width: auto;
    }
}

.share-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.share-modal-overlay.share-active {
    opacity: 1;
    visibility: visible;
}

.share-modal {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    position: relative;
}

.share-modal-overlay.share-active .share-modal {
    transform: scale(1) translateY(0);
}

.share-modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e2e8f0;
}

.share-modal-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.share-modal-description {
    color: #64748b;
    font-size: 14px;
}

.share-modal-content {
    padding: 24px;
}

.share-section {
    margin-bottom: 24px;
}

.share-section:last-child {
    margin-bottom: 0;
}

.share-section-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    display: block;
}

.share-social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.share-social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: #475569;
    transition: all 0.2s;
    cursor: pointer;
    background: white;
}

.share-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #475569;
}

.share-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.share-facebook {
    background: #1877f2;
}
.share-twitter {
    background: #1da1f2;
}
.share-linkedin {
    background: #0a66c2;
}
.share-email {
    background: #6b7280;
}
.share-whatsapp {
    background: #25d366;
}
.share-youtube {
    background: #ff0000;
}
.share-telegram {
    background: #0088cc;
}

.share-social-name {
    font-size: 12px;
    font-weight: 500;
}

.share-copy-section {
    display: flex;
    gap: 8px;
}

.share-copy-input {
    flex: 1;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #f8fafc;
}

.share-copy-btn {
    padding: 12px 16px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.share-copy-btn:hover {
    background: #f8fafc;
}

.share-copy-btn.share-copied {
    background: #dcfce7;
    border-color: #bbf7d0;
    color: #166534;
}

.share-separator {
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
}

.share-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s;
    font-size: 18px;
}

.share-close-btn:hover {
    background: #f1f5f9;
    color: #374151;
}

@media (max-width: 640px) {
    .share-social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .share-copy-section {
        flex-direction: column;
    }

    .share-modal {
        margin: 20px;
        width: calc(100% - 40px);
    }
}

::-webkit-scrollbar {
    width: 4px;
    height: 10px;
    background-color: rgba(0, 0, 0, 0);
    -webkit-border-radius: 80px;
}

::-webkit-scrollbar:hover {
    background-color: rgba(17, 183, 107, 0.4);
}

::-webkit-scrollbar-thumb:vertical {
    background: rgba(17, 183, 107, 0.9);
    -webkit-border-radius: 80px;
}

::-webkit-scrollbar-thumb:vertical:active {
    background: rgba(17, 183, 107, 1);
    -webkit-border-radius: 80px;
}

.input-search {
    border-radius: 4px;
    min-width: 180px;
    font-size: 14px;
    box-shadow: none;
    border: 1px solid var(--border-info-color);
}

.input-search::placeholder {
    font-size: 12px;
}

.input-search.form-control:focus {
    border-color: var(--theme-color);
    box-shadow: none;
}

.dropdown-filter .dropdown-item {
    font-size: 12px;
}

.placeholder {
    background: transparent;
    font-size: 14px;
    color: #393939 !important;
}

.SumoSelect {
    width: 100% !important;
}

.SumoSelect > .CaptionCont {
    position: relative;
    border: var(--bs-border-width) solid var(--bs-border-color);
    min-height: 14px;
    margin: 0;
    border-radius: 10px;
}


/*====================
19. Big banner css
======================*/

.big-banner{
    position: relative;
}

.big-banner .banner-wrap{
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.big-banner .banner-content{
    text-align: center;
}

.big-banner .banner-content h6{
    color: var(--color-dark);
    font-size: 22px;
    text-transform: lowercase;
    letter-spacing: 4px;
}

.big-banner .banner-content h2{
    color: var(--color-dark);
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 20px;
}

.big-banner .banner-content p{
    color: var(--color-dark);
    text-transform: lowercase;
    font-size: 20px;
    border-top: 1px solid var(--color-dark);
    border-bottom: 1px solid var(--color-dark);
    display: inline-block;
}

.big-banner .banner-content .theme-btn{
    border-radius: 50px;
    margin-top: 30px;
    padding: 10px 28px;
}

@view-transition {
  navigation: auto;
}
