/* Global variables */
:root {
    --product-main-color: #5575c2;
    --product-main-dark-color: #2a55ae;
    --main-bg: #fbfbfc;
    --bg-white: #ffffff;
    --bg-white-light: #f4f4f4;
    --bg-secondary-sun: #fff4e0;
    --bg-dark-blue: #6fd0ea;

    --text-dark-primary: #525252;
    --text-dark-secondary: #595858;
    --text-dark-light: #eeeeee;
    --text-dark-light-grey: #b5b5c3;
    --text-black: #000000;
    --text-black-light: #181c32;
    --text-black-light-200: #272727;
    --text-black-light-300: #1a182f;
    --text-white: #ffffff;
    --text-white-light: #f8f4ff;
    --text-white-light-100: #e6e6e7;
    --text-secondary-sun: #f9aa0c;
    --text-grey: #777777;
    --text-active-green: #07e003;
    --text-inactive-red: #ec1349;
    --text-red-light-200: #f27474;

    --font-popins: "Poppins", sans-serif;
    --font-helvetic: "Helvetica", sans-serif;
    --font-helvetica-neue: "Helvetica Neue", sans-serif;
    --font-600: 600;
    --font-500: 500;
    --font-400: 400;
    --font-700: 700;

    --letter-spacing-normal: 0.01em;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");

body {
    font-family: "Poppins", "Helvetica Neue", "Helvetica", "Roboto", sans-serif;
    background: var(--main-bg);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* utility classes */

.text-primary {
    color: var(--product-main-color) !important;
}

.text-dark-primary {
    color: var(--text-dark-primary);
}

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

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

.mb-32 {
    margin-bottom: 32px !important;
}

.mt-32 {
    margin-top: 32px !important;
}

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

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

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

.mb-120 {
    margin-bottom: 120px !important;
}

.my-120 {
    margin-top: 120px;
    margin-bottom: 120px;
}

/* font */
.font-48 {
    font-size: 48px !important;
}

.font-sm {
    font-size: 14px !important;
}

.font-md {
    font-size: 16px !important;
}

.bottom-line {
    border-bottom: 2px solid var(--text-white-light-100);
}

.error-con {
    border-bottom: 1px solid #dc3545 !important;
}

.bg-white-shadow {
    background: var(--bg-white);
    border: 0px solid var(--text-white-light-100);
    box-shadow: 0px 0px 0px var(--text-black);
}

.bg-white-shadow-2 {
    background: var(--bg-white);
    box-shadow: 0px 0px 20px rgba(56, 71, 109, 0.03);
    border-radius: 12px;
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: unset;
}

i {
    font-size: 24px;
}

.icon.icon-edit {
    background-image: url(../images/icon/edit_btn.svg);
    height: 32px;
    width: 32px;
    display: block;
}

.icon.icon-delete {
    background-image: url(../images/icon/delete_btn.svg);
    height: 32px;
    width: 32px;
    display: block;
    margin-left: 10px;
}

/* button */

.btn-primary {
    background-color: var(--product-main-color);
    color: var(--text-white);
    border: var(--product-main-color);
}

.btn {
    padding: 0.3em 1.5em;
    border-radius: 40px;
    font-size: 14px;
}

.custom-btn-check:focus + .custom-btn,
.custom-btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

.img-card-section .img-card .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(215 215 216 / 25%);
}

.custom-btn.bg-danger:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(226 57 69 / 25%);
}

.custom-btn.bg-dark-blue:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(102 207 232 / 25%);
}

.custom-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 0;
    color: var(--product-main-color);
}

.custom-primary-btn {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 20px;
    color: var(--text-white);
    border: var(--product-main-color);
    background: var(--product-main-color);
    border-radius: 40px;
    padding: 8px 24px;
    text-align: center;
    transition: 0.2s ease-in;
}

.custom-primary-btn.outline {
    color: var(--product-main-color);
    border: 1px solid var(--product-main-color);
    background-color: transparent;
    transition: 0.2s ease-in;
}

.custom-primary-btn.outline:hover {
    color: var(--text-white);
    background: var(--product-main-color);
}

.custom-primary-btn:hover,
.btn:hover {
    color: var(--text-white);
    opacity: 0.8;
    transition: all 0.4s ease 0s;
}

.custom-primary-btn i {
    margin-right: 10px;
    transition: all 0.4s ease 0s;
    font-size: 20px;
}

.custom-primary-btn:hover i {
    transform: translateX(-5px);
}

/* form-control focus shadow */

.form-control:focus,
.form-check-input:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgb(86 117 190 / 25%);
    border-color: var(--product-main-color) !important;
    border-width: 1px !important;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection,
.select2-container--bootstrap-5
    .select2-dropdown
    .select2-search
    .select2-search__field:focus {
    border: var(--product-main-color) !important;
    box-shadow: 0 0 0 0.25rem rgb(86 117 190 / 25%) !important;
}

.select2-container--bootstrap-5
    .select2-dropdown
    .select2-results__options
    .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5
    .select2-dropdown
    .select2-results__options
    .select2-results__option[aria-selected="true"] {
    color: var(--text-white) !important;
    background-color: var(--product-main-color) !important;
}

.btn-check:focus + .btn-outline-secondary,
.btn-outline-secondary:focus {
    box-shadow: 0 0 0 0.25rem rgb(86 117 190 / 25%);
}

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

.form-check-input.theme-custom-radio:checked[type="radio"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23585858'/%3e%3c/svg%3e");
}

.form-check-input.theme-custom-radio {
    width: 20px;
    height: 20px;
}

.form-check-input.theme-custom-radio:checked {
    background-color: var(--bg-white);
    border-color: var(--text-dark-secondary);
}

.form-check-input.theme-custom-radio:focus {
    box-shadow: 0 0 0 0.25rem rgb(88 88 88 / 25%);
}

/* section */

.section {
    padding-top: 24px;
    /* padding-bottom: 24px; */
    margin-bottom: 120px;
}

.section .section-title {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 30px;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-black);
}

.section .content {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 20px;
    color: var(--text-dark-secondary);
}

.section .content h3 {
    font-family: var(--font-helvetic);
    font-weight: var(--font-500);
    margin-bottom: 20px;
    color: var(--text-black-light-200);
}

.section-padding {
    padding: 32px 54px;
}

/* pagination */

.kh-pagination .pagination .page-item .page-link {
    color: var(--product-main-color);
}

.kh-pagination .pagination .page-item.active .page-link {
    background: var(--product-main-color);
    color: var(--bg-white);
}

/* badge */

.kh-notify-badge {
    font-family: var(--font-helvetic);
    font-weight: normal;
    font-size: 14px;
    border-radius: 40px;
    padding: 5px 10px;
    letter-spacing: var(--letter-spacing-normal);
}

.kh-notify-badge.bg-danger {
    background-color: #ef5866;
}

/* count label */

.kh-count-label {
    border-radius: 50%;
    background-color: var(--product-main-color);
    color: var(--text-white);
    font-size: 14px;
    min-height: 20px;
    min-width: 20px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    text-align: center;
    margin-top: -10px;
    right: -3px;
}

/* custom contact form */

.contact-section .section-title {
    margin-bottom: 60px;
}

.form-content .contact-btn {
    min-width: 382px;
    min-height: 60px;
}

.form-content .head {
    font-family: var(--font-popins);
    font-weight: var(--font-400);
    font-size: 14px;
    background-color: var(--product-main-color);
    text-align: center;
    color: var(--text-white);
    border-radius: 2px;
    margin-top: -65px;
}

.form-content .head i {
    font-size: 14px;
}

.contact-form-wrapper {
    margin-top: 30px;
}

.contact-form-wrapper.bg-white-box {
    max-width: 800px;
    height: auto;
    margin: auto;
}

/* form */

.kh-form-content .form-title {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 22px;
    letter-spacing: 0.01em;
    color: var(--text-black);
}

.kh-form-content .form-control:focus {
    box-shadow: unset;
}

.kh-form-content .form-control {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 16px;
    border-radius: unset;
    padding: 7px 0;
    border: 0;
    border-bottom: 1px solid var(--text-dark-light);
    background: transparent;
}

.kh-form-content .form-control::placeholder,
.kh-form-content .form-check-input {
    font-weight: var(--font-400);
    font-size: 16px;
    color: var(--text-dark-secondary);
}

.kh-form-content label {
    font-family: var(--font-helvetica-neue);
    font-weight: bold;
    font-size: 18px;
    color: var(--text-black-light-300);
}

.kh-form-content .form-select,
.kh-form-content .selection .select2-selection {
    box-shadow: 1px 0px 8px rgba(217, 217, 217, 0.5);
    border-radius: 14px;
    padding: 17px 24px;
    border: 0;
}

.kh-form-content .select2 {
    width: 100% !important;
}

.kh-form-content .form-select,
.kh-form-content
    .selection
    .select2-selection
    .select2-search__field::placeholder,
.kh-form-content .selection .select2-selection__choice {
    font-family: var(--font-helvetica-neue);
    font-size: 16px;
    color: var(--text-black);
}

.kh-form-content .select2-container .select2-selection--single {
    height: auto;
}

.custom-file-choose {
    background: var(--bg-white);
    box-shadow: 1px 0px 8px rgba(217, 217, 217, 0.5);
    border-radius: 14px;
    padding: 18px 24px;
    cursor: pointer;
    font-size: 16px !important;
    font-weight: bold !important;
    color: var(--text-black) !important;
}

/* items upload */
.product-img-isec {
    width: 150px;
    height: 150px;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    position: relative;
}

.product-img-isec img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-img-sec {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.img-remove-cta {
    position: absolute;
    top: 3px;
    z-index: 999;
    display: inline-block;
    right: 3px;
    width: 30px;
    height: 30px;
    text-align: center;
    background-color: var(--bg-white);
    color: var(--product-main-color);
    padding-top: 6px;
    border: 1px solid #999;
    border-radius: 50%;
    box-shadow: 1px 0px 8px rgb(217 217 217 / 50%);
}

.img-remove-cta i {
    font-size: 16px;
}

/* custom sweet alert */
.swal2-icon {
    border: 0 !important;
}

.swal2-container.swal2-center > .swal2-popup {
    border-radius: 25px;
}

.swal2-title {
    color: #004f86 !important;
}

.swal2-html-container {
    color: #738391 !important;
}

.swal2-styled.swal2-confirm {
    background-color: #00a3f0 !important;
    border-radius: 20px !important;
    border-color: #00a3f0 !important;
    width: 60% !important;
    outline: none !important;
    box-shadow: none !important;
}

.sw-text-color {
    color: #004f86 !important;
}

.sw-btn-color.swal2-styled.swal2-confirm {
    background-color: #ff9f0e !important;
}

.sw-text-ycolor {
    color: #ff9f0e !important;
}

/* chat */

.chat-page .chat-search {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 362px;
    right: 0;
    margin-bottom: 42px;
}

.chat-page .chat-search .search-icon {
    position: absolute;
}

.chat-page .chat-search .search-input {
    background: #fbfbfb;
    border: 0.5px solid #f4f4f4;
    border-radius: 12px;
}

.chat-page .chat-search .search-input:focus {
    box-shadow: unset;
}

.chat-page .chat-list {
    list-style: none;
    overflow-y: auto;
}

.chat-page .chat-member:not(:last-child) {
    margin-bottom: 40px;
}

.chat-page .chat-member-wrapper {
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.chat-member-online .user-status {
    background-color: var(--text-active-green);
}

.user-status {
    position: absolute;
    right: 0;
    top: 0;
    width: 10px;
    height: 10px;
    border: 3px solid white;
    border-radius: 50%;
    background-color: var(--text-inactive-red);
}

.chat-member-wrapper .chat-member-avatar {
    width: 50px;
    height: auto;
    margin-right: 16px;
}

.chat-member-wrapper .chat-member-avatar img {
    border-radius: 50%;
    object-fit: cover;
    width: 100%;
}

.chat-member-wrapper .chat-member-name {
    font-family: var(--font-popins);
    font-weight: var(--font-500);
    font-size: 14px;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-dark-secondary);
}

.chat-member-message {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 14px;
    color: var(--text-dark-light-grey);
    white-space: nowrap;
    word-break: break-word;
    text-overflow: ellipsis;
    overflow: hidden;
}

/*  */

.chat-page .chat-wrapper {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.chat-list-messages .chat-list-member {
    display: flex;
    align-items: center;
}

.chat-list-member.chat-msg-current .member-wrapper {
    order: 2;
}

.chat-list-member.chat-msg-current .chat-time {
    order: 3;
}

.chat-list-member.chat-msg-current .member-avatar {
    margin-left: 16px;
}

.chat-list-member .member-avatar {
    width: 50px;
    height: 50px;
    margin-right: 16px;
}

.chat-list-member .member-avatar img {
    border-radius: 50%;
    object-fit: cover;
    width: 100%;
}

.chat-list-member .chat-msg {
    font-size: 14px;
    padding: 16px;
    background: #fff4e0;
    border-radius: 30px;
    margin-bottom: 28px;
    margin-right: 8px;
}

.chat-list-member.chat-msg-current .chat-msg {
    margin-left: 50px;
    background: #def4fa;
    order: 1;
    margin-right: 0;
}

.chat-send-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-send-container .chat_input {
    padding: 12px 24px;
    max-width: 424px;
    height: 54px;
    background: #fbfbfb;
    border: 0.5px solid var(--bg-white-light);
    border-radius: 18px;
    margin-right: 25px;
}

.chat-send-container .chat_input:focus {
    box-shadow: unset;
}

.chat-send-container .chat_input::placeholder {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 16px;
    color: #b5b5c3;
}

.chat-send-container .chat_btn {
    padding: 10px;
    width: 59px;
    height: 59px;
    border-radius: 50%;
    border: 0;
    background: var(--main-bg);
}

.chat-send-container .chat_btn:hover {
    opacity: 50%;
}

/* faq */
.faq-section .fa.fa-arrow-circle-o-up {
    font-size: 14px;
    color: var(--bg-red);
}

.faq-section .faq-content-wrapper {
    background: var(--bg-white);
    padding: 25px;
    padding-left: 0;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.faq-section .faq-category li {
    text-decoration: underline;
    padding: 5px 0px;
}

.faq-section .faq-category li a {
    font-size: 18px;
    color: var(--text-dark-secondary);
}

.faq-section .faq-category li a:hover {
    color: var(--product-main-color);
}

.faq-section .faq-content-card .faq-card {
    background: var(--bg-white);
    box-shadow:
        rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
        rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    font-size: 14px;
}

.faq-section .faq-card h6 {
    color: var(--product-main-color);
    font-size: 14px;
    font-weight: 600;
}

.faq-section .faq-card p {
    color: var(--text-dark-secondary);
    font-size: 14px;
    font-weight: 400;
}

.faq-section .faq-card .faq-top-icon {
    font-size: 14px;
    padding-top: 10px;
    color: var(--product-main-color);
}

.faq-section .faq-card .faq-top-icon .faq-top {
    border-bottom: 1px solid var(--product-main-color);
    text-transform: capitalize;
}

/* slick slider */
.item-slider {
    max-width: 1067px;
    margin: auto;
}

.item-slider button.slick-prev.slick-disabled,
.item-slider button.slick-next.slick-disabled {
    opacity: 0;
}

.item-slider .slick-prev,
.item-slider .slick-next {
    padding: 10px 16px;
    background: var(--bg-white);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    z-index: 9;
    box-shadow: 1px 0px 8px rgba(217, 217, 217, 0.5);
}

.item-slider .slick-next {
    right: -50px;
}

.item-slider .slick-prev {
    left: -60px;
}

.item-slider .slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f105";
    color: var(--product-main-color);
    font-size: 20px;
}

.item-slider .slick-prev:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f104";
    color: var(--product-main-color);
    font-size: 20px;
}

/*  */

.sub-menu-slider button.slick-prev.slick-disabled,
.sub-menu-slider button.slick-next.slick-disabled {
    opacity: 0;
}

.sub-menu-slider .slick-prev,
.sub-menu-slider .slick-next {
    padding: 10px 16px;
    background: var(--bg-white);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    z-index: 9;
    box-shadow: 1px 0px 8px rgba(217, 217, 217, 0.5);
}

/* .item-slider .slick-next {
	right: -50px;
}

.item-slider .slick-prev {
	left: -60px;
} */

.sub-menu-slider .slick-next:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f105";
    color: var(--product-main-color);
    font-size: 20px;
}

.sub-menu-slider .slick-prev:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f104";
    color: var(--product-main-color);
    font-size: 20px;
}

/* input animation */
.input-effect {
    position: relative;
}

.effect-16 {
    border: 0;
    padding: 4px 0;
    border-bottom: 1px solid var(--text-dark-light);
    background-color: transparent;
}

.effect-16 ~ .focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--product-main-color);
    transition: 0.4s;
}

.effect-16:focus ~ .focus-border,
.has-content.effect-16 ~ .focus-border {
    width: 100%;
    transition: 0.4s;
}

.effect-16 ~ label {
    position: absolute;
    left: 0;
    width: 100%;
    top: 9px;
    font-weight: var(--font-400);
    font-size: 16px;
    color: var(--text-dark-secondary);
    transition: 0.3s;
    letter-spacing: 0.5px;
}

.effect-16:focus ~ label,
.has-content.effect-16 ~ label {
    top: -8px;
    font-size: 12px;
    color: var(--text-dark-secondary);
    transition: 0.3s;
}

/*==========================
***** hamburdgur menu ******
============================*/
.hamburger-menu {
    display: flex;
    flex-direction: column;
    width: 40px;
    cursor: pointer;
}

.hamburger-menu span {
    background: #000000;
    border-radius: 10px;
    height: 5px;
    margin: 3px 0;
    transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hamburger-menu span:nth-of-type(1) {
    width: 50%;
}

.hamburger-menu span:nth-of-type(2) {
    width: 90%;
}

.hamburger-menu span:nth-of-type(3) {
    width: 75%;
}

.hamburger-menu input[type="checkbox"] {
    display: none;
}

.hamburger-menu input[type="checkbox"]:checked ~ span:nth-of-type(1) {
    transform-origin: bottom;
    transform: rotatez(45deg) translate(4px, 0px);
}

.hamburger-menu input[type="checkbox"]:checked ~ span:nth-of-type(2) {
    transform-origin: top;
    transform: rotatez(-45deg);
}

.hamburger-menu input[type="checkbox"]:checked ~ span:nth-of-type(3) {
    transform-origin: bottom;
    width: 50%;
    transform: translate(14px, -6px) rotatez(45deg);
}

/*=====================
***** Play Video ******
=======================*/

.video-wrapper #video {
    width: 100%;
    border-radius: 40px !important;
}

.video-wrapper .video-main {
    position: relative;
}

.video-wrapper .promo-video video {
    position: relative;
}

.video-wrapper .promo-video {
    cursor: pointer;
    /* transform: translate(-50%, -50%); */
    position: absolute;
    top: calc(50% - -20px);
    left: calc(50% - -20px);
}

.video-wrapper i,
.video-wrapper .svg-inline--fa {
    cursor: pointer;
    font-size: 25px;
    position: absolute;
    top: calc(50% - 4px);
    left: calc(50% - 4px);
    color: var(--product-main-color);
    z-index: 9;
    transform: translate(-50%, -50%);
}

@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }

    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

.waves {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--bg-white);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 100%;
    right: -50px;
    bottom: -50px;
    z-index: 9;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}

.wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

/* scroll css */
.custom-scroll::-webkit-scrollbar,
.custom-scroll::-webkit-scrollbar-track {
    width: 5px;
    height: 5px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 12px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #9dacb961;
}

/*==========================
***** signin & signup ******
============================*/

.auth-form-wrapper {
    padding: 130px 138px;
    padding-bottom: 20px;
    background: var(--bg-white);
    border-radius: 30px 0px 0px 30px;
    height: 100vh;
}

.auth-form-content {
    max-width: 464px;
    margin: auto;
    height: 100%;
}

.btn-signin-google {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.btn-signin-google img {
    max-width: 30px;
    max-height: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: #fff;
}

.auth-content {
    padding: 32px;
}

.auth-content .logo {
    max-width: 100px;
    max-height: 100px;
    object-fit: cover;
}

.ellipse-line-vector {
    bottom: 0;
}

.star-vector {
    top: 52px;
    left: -35px;
    width: 66px;
    height: 66px;
}

.site-logo img {
    max-width: 100px;
    max-height: 100px;
}

.auth-form-content .form-control:focus {
    box-shadow: unset;
}

.auth-form-content .form-control {
    border-radius: unset;
    padding: 7px;
    border: 0;
    border-bottom: 1px solid var(--text-dark-light);
}

.auth-form-content .form-control::placeholder {
    font-weight: var(--font-400);
    font-size: 16px;
    color: var(--text-dark-secondary);
}

.auth-form-content h1 {
    color: var(--text-dark-primary);
    font-family: var(--font-popins);
    font-size: 30px;
    font-weight: var(--font-600);
    margin-bottom: 48px;
}

.auth-form-content p {
    font-family: var(--font-helvetica-neue);
    font-size: 14px;
    font-weight: var(--font-400);
    color: var(--text-dark-primary);
}

.auth-form-content .custom-primary-btn {
    min-width: 382px;
    min-height: 60px;
}

/*=================
***** Header ******
===================*/

/* header-search-results */
.header-search-results {
    background-color: var(--bg-white);
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 10px;
    position: absolute;
    width: 100%;
    top: calc(100% - -10px);
    border-radius: 12px;
    z-index: 99;
    max-height: 50vh;
    overflow-y: scroll;
}

.search-rslt-row {
    display: flex;
    padding: 5px;
}

.search-rslt-row:hover {
    background-color: #eee;
}

.search-rslt-row img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.search-rslt-row span {
    font-size: 13px;
}

.header-search-mobile-area {
    position: fixed;
    width: 100%;
    background-color: #fff;
    height: 100%;
    top: 0px;
    z-index: 99999999;
    padding-top: 50px;
    right: 0;
    padding: 15px;
}

.header-search-mobile-area .header-search-list {
    margin-top: 15px;
}

/* end */

.icon img {
    width: 24px;
    height: 24px;
}

/* top nav start */
.top-nav .search input {
    background-color: var(--main-bg);
    border: 0.5px solid var(--bg-white-light);
    border-radius: 12px;
    max-width: 362px;
}

.top-nav .search input::placeholder {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 16px;
    color: var(--text-dark-light-grey);
}

.top-nav .nav-item:not(:last-child) {
    margin-right: 40px;
}

.top-nav .nav-item .icon img {
    width: 32px;
    height: 32px;
}

/* top nav end */
.bottom-nav .nav-tabs {   
    padding-left: max(12px, calc((100vw - 1260px) / 2 + 5px));
    padding-right: max(12px, calc((100vw - 1260px) / 2 + 5px));
    background-color: var(--product-main-color);
    border-bottom: 0;
}

.bottom-nav .nav-tabs button.nav-link.active,
.bottom-nav .nav-tabs button.nav-link.active-category {
    color: var(--product-main-dark-color);
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    margin-top: 2px;
}

.bottom-nav .nav-tabs button.nav-link {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 18px;
    color: var(--text-white-light);
    padding: 14px 30px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.bottom-nav .nav-tabs button.nav-link:not(:last-child) {
    margin-right: 3px;
}

.bottom-nav .tab-content {
    padding: 18px 0;
    background-color: var(--bg-white);
    box-shadow: 0px 5px 8px rgba(19, 30, 30, 0.02);
}

.tab-content {
    padding: 18px 60px;
    background-color: var(--bg-white);
    box-shadow: 0px 5px 8px rgba(19, 30, 30, 0.02);
}

.category-label-content ul li {
    padding: 10px 0;
}

.category-label-content ul li a {
    font-weight: var(--font-600);
    font-size: 14px;
    color: var(--text-dark-light-grey);
    padding: 10px 20px;
    border-radius: 6px;
}

.category-label-content ul li a:hover,
.category-label-content ul li a.active {
    background-color: var(--bg-secondary-sun);
    color: var(--text-secondary-sun);
    border-radius: 6px;
}

/*====================
***** Home page ******
======================*/

/* hero-section */
.hero-section {
    padding-bottom: 50px;
    background-image: url(../images/home/hero-section-white-vector.webp);
    background-repeat: no-repeat;
    background-position: left;
}

.hero-arrow-vector {
    bottom: 60px;
    right: -60px;
}

.hero-star-vector {
    top: 45px;
    right: 0;
}

.hero-section .hero-content {
    padding-top: 100px;
}

.hero-section .hero-content h1 {
    font-family: var(--font-popins);
    font-weight: var(--font-700);
    font-size: 64px;
    color: var(--text-black);
    margin-bottom: 100px;
}

.hero-section .hero-content .hero-btn-block .btn.outline {
    margin-top: 40px;
}

.hero-content .hero-btn-block .btn {
    padding: 15px 70px;
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 20px;
}

/* item-card */
.img-card-section {
    margin-top: -30px;
    position: relative;
}

.img-card-section .vector-line-2 {
    position: absolute;
    right: 0;
    top: -70px;
}
.checkout-section .vector-line-3 {
    position: absolute;
    width: 404.24px;
    height: 506.99px;
    top: 399px;
    left: -158px;
    transform: rotate(328.88deg);
    opacity: 1;
    border: 4px solid transparent;
    pointer-events: none;
    z-index: 0;
}
.info-section {
    position: relative;
    overflow: hidden;
}

.info-section .vector-line-3 {
    position: absolute;
    left: 0;
    top: 100px;
}
.info-section .vector-line-5 {
    position: absolute;
    right: 0;
    top: 207px;
}
.video-section .vector-line-3 {
    position: absolute;
    left: 0;
    top: 80px;
}
.img-card-section .vector-line-3 {
    position: absolute;
    left: 0;
    top: 80px;
}

.img-card-section .img-card img {
    object-fit: cover;
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 15px 25px #e7e7e7);
    border-radius: 24px;
}

.img-card-section .img-card {
    border-radius: 24px;
}

.img-card-section .img-card .btn.category-first-btn {
    width: 194px;
    top: calc(85% - 64px);
    left: 7%;
}

.img-card-section .img-card .btn {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 20px;
    color: var(--text-black);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    border-radius: 40px;
    top: calc(85% - 40px);
    left: 10%;
}

/* section */
/* .info-section {
	padding-top: 120px;
	padding-bottom: 120px;
} */

.info-section .md-title {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 30px;
    color: var(--text-black);
    margin-bottom: 30px;
    letter-spacing: var(--letter-spacing-normal);
}

.info-section .lg-title {
    font-family: var(--font-popins);
    font-weight: var(--font-500);
    font-size: 48px;
    color: var(--text-black);
    margin-bottom: 40px;
    letter-spacing: var(--letter-spacing-normal);
}

.info-section p {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 20px;
    color: var(--text-grey);
    margin-bottom: 40px;
    max-width: 740px;
}

/*====================
***** item page ******
======================*/

.item-filter-section {
    margin-top: 24px;
    margin-bottom: 24px;
}

.item-filter-section .content {
    height: 100%;
}

.item-filter-section .item-wrapper,
.item-filter-section .filter-wrapper {
    background: var(--bg-white);
    box-shadow: 0px 0px 20px rgba(56, 71, 109, 0.03);
    border-radius: 12px;
    height: 100%;
}

.item-filter-section .filter-wrapper .filter-btn {
    font-size: 14px;
    font-weight: normal;
    letter-spacing: var(--letter-spacing-normal);
}

.filter-card {
    padding: 24px 32px;
}

.item-cards-wrapper {
    padding: 24px 16px;
}

.filter-card .filter-price-range-text {
    font-family: var(--font-popins);
    font-weight: var(--font-500);
    font-size: 14px;
    line-height: 24px;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-dark-light-grey);
}

.filter-card .filter-title {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 22px;
    color: var(--text-black);
    margin-bottom: 16px;
    letter-spacing: var(--letter-spacing-normal);
}

.filter-card .filter-content ul li {
    margin-bottom: 16px;
}

.filter-card .filter-content .count {
    font-family: var(--font-popins);
    font-weight: var(--font-500);
    font-size: 14px;
    color: var(--text-dark-light-grey);
    letter-spacing: var(--letter-spacing-normal);
}

.filter-card .filter-content label {
    font-family: var(--font-popins);
    font-weight: var(--font-500);
    font-size: 14px;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-black-light);
}

.item-card {
    background: var(--main-bg);
    border-radius: 12px;
    padding: 16px;
    max-width: 257px;
    height: 100%;
}

.item-slider .item-card {
    height: auto;
}

.item-cards-wrapper .item-card:hover {
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}

.item-card:not(:last-child) {
    margin-right: 10px;
}

.item-card .item-label {
    top: calc(70% - 12px);
    left: calc(15% - 15px);
    padding: 8px 24px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    font-weight: var(--font-600);
    font-size: 14px;
}

.item-card .item-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.item-card .item-img-wrapper .item-img-box {
    max-width: 225px;
    height: 176px;
}

/* .item-card .item-content {
	height: 70px;
} */

.item-card .item-content .item-title {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 14px;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-black);

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}

.item-card .item-content .price-text {
    font-family: var(--font-popins);
    font-weight: var(--font-500);
    font-size: 14px;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-dark-light-grey);
}

.item-card .address-label {
    background: var(--bg-secondary-sun);
    backdrop-filter: blur(2px);
    padding: 8px 15px;
    border-radius: 40px;

    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
}

.item-card .address-label i {
    font-size: 16px;
    margin-right: 8px;
}

.item-card .address-label .address-label-text {
    font-family: var(--font-popins);
    font-weight: var(--font-400);
    font-size: 12px;
    line-height: 16px;
    color: var(--text-black);
    word-break: break-all;
}

.item-filter-section .filter-option .filter-btn {
    padding: 8px 24px;
    box-shadow: 1px 0px 8px rgba(217, 217, 217, 0.5);
    border-radius: 14px;
    border: 0;
    max-width: 257px;
    height: 50px;
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 14px;
    color: var(--text-black);
}

/*============================
***** item-details-page ******
==============================*/

.item-content-wrapper .custom-card {
    padding: 16px 24px;
    border-radius: 4px;
    background: var(--bg-white);
}

.item-content-wrapper .custom-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item-content-wrapper .label {
    color: var(--text-black);
    font-size: 16px;
    font-weight: 700;
}

.item-content-wrapper .item-content .item-title {
    font-family: var(--font-popins);
    font-weight: var(--font-500);
    font-size: 22px;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-dark-secondary);
}

.item-content-wrapper .item-content .item-price {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 30px;
    line-height: 60px;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-black);
}

.item-content-wrapper .item-content .item-description {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 20px;
    color: var(--text-dark-secondary);
}

.item-content-wrapper .item-content .item-variation,
.item-content-wrapper .seller-info {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 16px;
    line-height: 26px;
}

.item-content-wrapper .item-action-btn {
    padding: 16px 24px;
    margin-top: 24px;
}

.item-content-wrapper .item-action-btn .custom-btn {
    font-weight: var(--font-600);
    font-size: 18px;
    max-width: 189px;
    height: auto;
}

.item-content-wrapper .item-action-btn .custom-btn.post-item-btn {
    max-width: 100%;
}

.seller-profile img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
}

.seller-profile .seller-name {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 20px;
    color: var(--text-black);
    padding: 5px;
}

.seller-profile .seller-desc {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 12px;
    color: var(--text-dark-light-grey);
}

/*==========================
***** cart page ******
============================*/
.cart-section .section-title {
    margin-bottom: 40px;
}

.cart-item-card {
    padding: 24px;
    background: var(--bg-white);
    box-shadow: 0px 0px 0px var(--text-black);
}

.cart-item-card .cart-item-img img {
    width: 138px;
    height: 100px;
    border-radius: 16px;
    object-fit: cover;
}

.cart-item-card .cart-item-info .item-title {
    font-family: var(--font-popins);
    font-weight: var(--font-500);
    font-size: 14px;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-dark-secondary);
}

.cart-item-card .cart-item-info .item-price {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 22px;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-black);
}

.cart-item-card .quantity-text {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-700);
    font-size: 16px;
    color: var(--text-black);
    margin-bottom: 8px;
}

.cart-item-card .cart-delete-btn {
    border: 0;
    background: transparent;
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 14px;
    color: var(--product-main-color);
}

.cart-item-card .quantity-input-wrapper .quantity-input-btn {
    padding: 0 16px;
    background: var(--bg-white);
}

.cart-item-card .quantity-input-wrapper .quantity-input-btn,
.cart-item-card .quantity-input-wrapper .quantity-input {
    border: 0;
    font-weight: var(--font-400);
    color: var(--text-black);
    border-radius: 14px;
    font-size: 18px;
}

.cart-item-card .quantity-input-wrapper .quantity-input-btn:hover {
    color: var(--text-white);
    background-color: var(--product-main-color);
    border-color: var(--product-main-color);
}

.cart-item-card .quantity-input-wrapper {
    margin-top: 8px;
    width: 123px;
    height: 40px;
    background: var(--bg-white);
    box-shadow: 1px 0px 8px rgba(217, 217, 217, 0.5);
    border-radius: 14px;
}

.cart-checkout-wrapper .credit-content p {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 16px;
    color: var(--text-black);
}

.cart-checkout-wrapper .credit-content .credit-link {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 14px;
    line-height: 24px;
    text-decoration-line: underline;
    color: var(--product-main-color);
}

.cart-checkout-wrapper .discount-input {
    padding: 8px 12px 8px 16px;
    width: 195px;
    height: 40px;
    background: var(--bg-white);
    border: 0.5px solid var(--bg-white-light);
    border-radius: 12px;
    margin-right: 16px;
}

.cart-checkout-wrapper .discount-input::placeholder {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 14px;
    color: var(--text-dark-light-grey);
}

.cart-checkout-wrapper .discount-btn {
    max-width: 160px;
    height: 40px;
    font-weight: var(--font-600);
    font-size: 14px;
}

.cart-checkout-wrapper .checkout-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 32px;
    max-width: 382px;
    height: 60px;
    margin: auto;
}

.cart-checkout-wrapper .cart-checkout-content p {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 16px;
    color: var(--text-dark-secondary);
    letter-spacing: var(--letter-spacing-normal);
}

.cart-checkout-wrapper .price-content p {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-700);
    font-size: 18px;
    color: var(--text-black);
    letter-spacing: var(--letter-spacing-normal);
}

/*========================
***** checkout page ******
==========================*/

.checkout-section .checkout-btn {
    padding: 15px 130px;
    max-width: 382px;
    max-height: 60px;
}

/*==========================
***** thankyou-section ******
============================*/

.thankyou-section .content {
    font-weight: var(--font-400);
    font-size: 18px;
}

.thankyou-section .bottom-line {
    padding: 32px 0;
}

.billing-info-card .billing-info-title {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 22px;
    letter-spacing: 0.01em;
    color: var(--text-black);
}

.billing-info-card .billing-info-sm-title,
.tbl-cart-items table th {
    font-family: var(--font-helvetica-neue);
    font-weight: bold;
    font-size: 20px;
    color: var(--text-black);
}

.tbl-cart-items table th {
    padding: 0;
}

.tbl-cart-items table tr td,
.tbl-cart-items table th {
    padding: 0;
    padding-right: 1rem;
}

.tbl-cart-items table tr td,
.tbl-cart-items.payment-info table tr td {
    font-family: var(--font-helvetica-neue);
    font-size: 18px;
}

.tbl-cart-items.payment-info table tr td {
    font-size: 20px;
}

.tbl-cart-items table th,
.tbl-cart-items table tr td {
    border: 0;
    border-width: 0;
}

/*============================
***** postitem-section ******
============================*/

.postitem-form-btn {
    min-width: 250px;
    min-height: 60px;
}

/*====================
***** dashboard ******
======================*/

.dashboard-main-wrapper {
    padding: 24px 40px;
}

.dashboard-main-wrapper .content {
    padding: 24px;
}

.dashboard-main-wrapper .content .title {
    font-family: var(--font-popins);
    font-weight: var(--font-500);
    font-size: 14px;
    letter-spacing: 0.01em;
    color: var(--text-black);
}

.dashboard-main-wrapper .head-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.dashboard-main-wrapper .custom-btn {
    font-size: 14px;
    padding: 5px 0;
    width: 100%;
    height: 40px;
}

.sidebar-area {
    padding: 64px 40px;
    background: var(--bg-white);
    height: 100%;
}

.sidebar-area .unread-message {
    background-color: var(--text-red-light-200);
}

.sidebar-menu ul li:not(:last-child) {
    margin-bottom: 40px;
}

.sidebar-menu ul li a {
    font-family: var(--font-popins);
    font-weight: var(--font-500);
    font-size: 14px;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-dark-secondary);
}

.sidebar-menu ul li.active a {
    color: var(--text-white);
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.sidebar-menu ul li {
    padding-left: 24px;
}

.sidebar-menu ul li.active {
    background: #c4ceea;
    border-radius: 24px;
    width: 199px;
    height: 32px;
    padding: 5px 24px;
    color: var(--text-white);
    display: block;
    text-align: center;
}

.sidebar-menu ul li a:hover {
    color: var(--product-main-dark-color);
}

.user-profile-card,
.user-profile-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-profile-card .user-img-box {
    width: 90px;
    height: 90px;
    margin-right: 40px;
}

.user-profile-card .user-img-box img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
}

.user-profile-card .custom-btn {
    font-size: 14px;
    padding: 5px 0;
    width: 240px;
    height: 40px;
}

.user-profile-card .user-content .user-name {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 22px;
    letter-spacing: 0.01em;
    color: var(--text-black);
}

.user-profile-card .user-content .user-email {
    display: block;
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 16px;
    color: var(--text-dark-secondary);
}

.user-profile-card .user-content .user-info {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 14px;
    color: var(--text-dark-light-grey);
}

.days-card .custom-btn {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 12px;
    width: 101px;
    height: 32px;
    border-radius: 40px;
    background: transparent;
    color: var(--text-dark-secondary);
    padding: 5px 0;

    background: var(--bg-white);
    border: 0.5px solid var(--text-dark-light);
}

.days-card .custom-btn.active {
    background: var(--bg-dark-blue);
    color: var(--text-white);
}

.days-card .custom-btn:not(:last-child) {
    margin-right: 19px;
}

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

.count-wrapper .count-card {
    background: var(--bg-white);
    box-shadow: 0px 0px 20px rgba(56, 71, 109, 0.03);
    border-radius: 12px;
    padding: 32px 16px;
    width: calc(100% - 68%);
    height: 128px;
}

.count-card .count-text {
    font-family: var(--font-popins);
    font-weight: var(--font-500);
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: var(--text-dark-secondary);
}

.count-card .count {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 22px;
    letter-spacing: 0.01em;
    color: var(--text-dark-secondary);
}

.chart-card .chart-title {
    font-family: var(--font-popins);
    font-weight: var(--font-500);
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: var(--text-black);
}

.chart-card {
    background: var(--bg-white);
    box-shadow: 0px 0px 20px rgba(56, 71, 109, 0.03);
    border-radius: 12px;
}

/* personal information */
.dashboard-main-wrapper .info-form-wrapper {
    max-width: 464px;
    margin: auto;
}

.info-form-wrapper .profile-img .profile_image_section {
    width: 120px;
    height: 120px;
}

.profile_image_section .profile_img_remove {
    border-radius: 50%;
    background-color: var(--product-main-color);
    color: var(--text-white);
    font-size: 14px;
    min-height: 25px;
    min-width: 25px;
    transform: translateY(-50%);
    text-align: center;
    right: -5px;
    top: 5px;
}

.profile_image_section .profile_img_remove i {
    font-size: 14px;
    margin-top: 5px;
}

.info-form-wrapper .profile-img .custom-file-label {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 14px;
    color: var(--product-main-color);
    cursor: pointer;
}

.info-form-wrapper .profile-img .profile_image_section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 1px 0px 8px rgb(217 217 217 / 50%);
    border-radius: 5px;
}

.info-form-wrapper .signup-pg-form .custom-btn {
    font-size: 20px;
    width: 382px;
    height: 60px;
    margin: auto;
}

/* account-security-form */
.account-security-form {
    max-width: 464px;
}

.account-security-form .custom-btn {
    font-weight: 600;
    font-size: 20px;
    width: 382px;
    height: 60px;
}

/* payment acccout connect */
.payment-account-card:not(:last-child) {
    margin-bottom: 32px;
}

.payment-account-card .title {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 16px;
    color: #595858;
}

.payment-account-card .payment-account-btn {
    width: 343px;
    height: 60px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 18px;
}

.payment-account-card .payment-account-btn.stripe-btn {
    background: #6972de;
    color: #ffffff;
}

.payment-account-card .payment-account-btn.paypal-btn {
    background: #ededed;
    color: #000000;
}

.payment-account-card .form-switch .kh-switch-input {
    width: 55px;
    height: 25px;
}

/* tables */
.table-wrapper {
    padding: 24px;
}

.table-wrapper .title {
    font-family: var(--font-popins);
    font-weight: var(--font-500);
    font-size: 14px;
    letter-spacing: 0.01em;
    color: var(--text-black);
}

.table-wrapper .table-search-wrapper {
    margin-bottom: 32px !important;
}

.table-wrapper .dtr-control {
    padding: 0;
    border: 0;
}

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

.table-wrapper .pagination .page-item.active .page-link {
    color: var(--text-white);
    background-color: var(--product-main-color);
    border-color: var(--product-main-color);
}

.table-wrapper .pagination .page-link {
    color: var(--product-main-color);
}

.table-wrapper .dataTables_filter,
.table-wrapper .dataTables_info {
    display: none;
}

.table-wrapper .custom-btn {
    max-width: 205px;
}

.table-wrapper .custom-btn.action-btn {
    max-width: 75px;
}

/*items-table */

.items-table .items-card-list .item-img-box {
    width: 45px;
    height: 45px;
}

.items-table .items-card-list .item-img-box img {
    width: 45px;
    height: 45px;
    border-radius: 6px;
    object-fit: cover;
}

.items-table .items-card-list .item-title,
.items-table .items-card-list .item-price,
.items-table .items-card-list .item-text,
.items-table .items-card-list .item-date .items-table .dataTables_info {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 16px;
    color: var(--text-dark-secondary);
}

.items-table .items-card-list .item-label {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 14px;
    color: var(--text-black);
    background: var(--bg-secondary-sun);
    backdrop-filter: blur(2px);
    border-radius: 40px;
    padding: 8px 24px;
}

/* table search */

.table-search-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 16px;
    max-width: 362px;
    right: 0;
}

.table-search-wrapper .search-icon {
    position: absolute;
}

.table-search-input {
    background: #fbfbfb;
    border: 0.5px solid #f4f4f4;
    border-radius: 12px;
}

/*====================
***** footer ******
======================*/

footer {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--bg-white);
}

footer .footer-link,
footer .social-link {
    margin-bottom: 54px;
}

footer .footer-link ul li:not(:last-child) {
    margin-right: 60px;
}

footer .footer-link ul li a {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-500);
    font-size: 20px;
    color: var(--text-black);
}

footer .social-link ul li:not(:last-child) {
    margin-right: 26px;
}

footer .copyright-content .copyright-title {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-700);
    font-size: 20px;
    color: var(--text-black);
}

footer .copyright-content .copyright-text {
    font-family: var(--font-helvetica-neue);
    font-weight: var(--font-400);
    font-size: 16px;
    color: var(--text-dark-light-grey);
}

.bg-white-box {
    background: var(--bg-white);
    box-shadow: 0px 0px 20px rgb(56 71 109 / 3%);
    border-radius: 12px;
    height: 100%;
}

.form-content .effect1 {
    outline: none;
    border: none;
    width: 100%;
    border-bottom: 2px solid #ccc;
    font-size: 18px;
}

/* dashboard - page */

/* dashboard shop-order */
#my_orders_table_wrapper #my_orders_table .dtr-control .items-card-list .btn {
    white-space: nowrap;
}

#my_orders_table_wrapper #my_orders_table .items-card-list p {
    margin: 0px;
}

/* dashboard shop-order */

.opt-val-imgsec {
    width: 130px;
    height: 130px;
    position: relative;
    overflow: hidden;
}

.opt-val-imgsec img {
    width: 100%;
    height: 100%;
}

.opt-val-imgsec .opt-val-imgbtnsec {
    position: absolute;
    top: 5px;
    right: 5px;
}

.opt-val-imgsec input[type="file"] {
    display: none;
}

.opt-val-addbtn {
    text-align: right;
}

.prdtopt-tind-sec {
    background-color: #eee;
    padding: 5px;
    margin-bottom: 5px;
}

.prdtopt-tind-sec a:nth-of-type(1) {
    font-weight: bold;
    display: inline-block;
    width: 110px;
}

.prdtopt-tind-sec a:nth-of-type(2) {
    float: right;
}

.prdtopt-area-left {
    float: left;
    width: 145px;
}

.prdtopt-area-right {
    float: right;
    width: calc(100% - 190px);
}

.prdtopt-tind-sec.active {
    background-color: #428bca;
}

.prdtopt-tind-sec.active a {
    color: #fff;
}

.prdtopt-itmr-tab input[type="text"] {
    padding: 5px;
}

.prdctlist-img {
    max-width: 100px;
    max-height: 100px;
}

.xtbloptval-sec .table-wrapper tbody,
.xtbloptval-sec td,
.xtbloptval-sec tfoot,
.xtbloptval-sec th,
.xtbloptval-sec thead,
.xtbloptval-sec tr {
    border: 1px solid #ddd;
}

.crtpg-opt-pname {
    margin-top: 20px;
    margin-bottom: 5px;
}

/* dashboard - page */

/*==========================
***** all media query ******
============================*/

@media (max-width: 1440px) {
    /*========== navigation========== */
    .bottom-nav .nav-tabs button.nav-link {
        padding: 0.5rem 1rem;
    }
}

@media only screen and (min-width: 769px) {
    .sigin-main-wrapper {
        height: 100vh;
    }

    .top-nav .search {
        margin-left: auto;
    }

    .offcanvas,
    .offcanvas-start,
    .offcanvas-header,
    .offcanvas-body {
        all: unset;
    }

    .offcanvas-header {
        display: none;
    }

    .video-wrapper {
        max-width: 80%;
        width: 100%;
        margin: auto;
    }

    /*========== item-page ========== */
    .item-filter-section .row > .col-lg-3 {
        width: 30%;
    }

    .item-filter-section .filter-offcanvas {
        margin-left: -500px;
    }

    .item-filter-section .filter-offcanvas.active {
        margin-left: 0;
    }

    /* .item-filter-section .filter-btn-back~.item-filter-section .item-wrapper.col-lg-8 {
		width: 100% !important;
	} */

    /* .item-filter-section .filter-btn-back:not(.active) { */
    .item-filter-section .filter-btn-back-wrap {
        display: block !important;
    }

    .item-filter-section .filter-btn-back,
    .item-filter-section .filter-btn-back i {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    /*========== navigation ========== */
    .bottom-nav .nav-tabs button.nav-link {
        font-size: 14px;
    }

    /*========== slider ========== */
    .item-slider .slick-next {
        right: 0;
    }

    .item-slider .slick-prev {
        left: calc(0px + -10px);
    }

    /*========== cart-section ========== */
    .cart-checkout-wrapper .discount-input {
        width: 157px;
    }
}

@media (max-width: 768px) {
    /* header */
    .tab-content {
        padding: 20px;
        margin-top: 10px;
        box-shadow: unset;
        background: unset;
    }

    .nav-tabs .nav-link {
        margin-bottom: unset !important;
    }

    .category-label-content ul li:not(:last-child) {
        margin-right: 8px;
    }

    .category-label-content ul li a {
        box-shadow:
            rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
            rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    }

    /* end header */

    .item-filter-section .row > .col-md-3 {
        width: 100%;
    }

    .navbar {
        padding: 0;
    }

    .top-nav .search {
        margin-left: 0;
    }

    .top-nav .search input::placeholder {
        font-size: 14px;
    }

    .icon.search-icon img {
        width: 16px;
        height: 16px;
    }

    .mobile-menu {
        display: block !important;
        padding: 8px 0;
    }

    .mobile-menu .mobile-logo {
        padding: 0;
    }

    .user-menu .logo {
        display: none !important;
    }

    .user-menu {
        padding: 10px 0;
    }

    .user-menu .navbar-nav {
        flex-direction: row;
        margin-bottom: 0;
    }

    .user-menu .nav-item:not(:last-child) {
        margin-right: 10px;
    }

    .user-menu .nav-item .icon img {
        width: 24px;
        height: 24px;
    }

    /*========== navigation ========== */
    .navbar-brand {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .offcanvas .close-icon {
        color: var(--product-main-color);
        font-size: 1.5rem;
    }

    .offcanvas {
        background: var(--bg-white);
    }

    .offcanvas .offcanvas-header {
        border-bottom: 2px solid #c4ceea;
    }

    .bottom-nav .nav-tabs {
        background-color: transparent;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .bottom-nav .nav-tabs button.nav-link:first-child {
        padding-top: 0;
    }

    .bottom-nav .nav-tabs button.nav-link:last-child {
        padding-bottom: 0;
    }

    .bottom-nav .nav-tabs button.nav-link {
        color: var(--product-main-color);
        padding: 1.5rem 0;
            font-size: 16px !important;
    font-weight: 500 !important;
    }

    .nav-tabs .nav-link,
    .bottom-nav .nav-tabs button.nav-link.active {
        border: none;
        border-bottom: 2px solid #c4ceea;
    }

    /* .bottom-nav .tab-content {
		display: none;
	} */

    .kh-count-label {
        font-size: 12px;
        min-height: 17px;
        min-width: 17px;
    }

    /*========== signin/signup ========== */
    .auth-form-wrapper {
        padding: 100px 50px;
    }

    .auth-form-content .custom-primary-btn {
        min-width: 100%;
        min-height: 52px;
    }

    /* ========== hero section ========== */

    .hero-section {
        margin-bottom: 120px;
        padding-top: 50px;
        background: none;
    }

    .hero-section .hero-content {
        padding-top: 0;
    }

    .hero-section .hero-content h1 {
        font-size: 54px;
    }

    /*========== img-section ========== */

    .img-card-section .img-card .btn {
        font-size: 18px;
    }

    .img-card-section .img-card .btn {
        font-size: 14px;
    }

    .font-md-18 {
        font-size: 18px !important;
    }

    .item-card .item-img-wrapper img {
        width: 100%;
    }

    /*========== item-page  ========== */

    .filter-content-btn {
        display: block !important;
    }

    /*========== slider ========== */
    .item-content-wrapper .item-action-btn {
        margin-top: 0;
        background: var(--bg-white);
    }

    /*========== cart-section ========== */

    .cart-section .section-title {
        font-size: 22px;
    }

    .cart-item-card .cart-item-info .item-price {
        font-size: 20px;
    }

    .cart-checkout-wrapper .price-content p {
        font-size: 16px;
    }

    footer .footer-link ul li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 32px;
    }

    /*====================
	***** dashboard ******
	======================*/

    .sidebar-menu ul li.active {
        margin: auto;
    }

    .sidebar-menu ul li {
        text-align: center;
        padding-left: 0;
    }

    .sidebar-menu ul li:not(:last-child) {
        margin-bottom: 30px;
    }

    .items-table .items-card-list {
        justify-content: center;
    }

    .items-table .items-card-list .col {
        text-align: center;
        margin-bottom: 24px;
    }

    .items-table .items-card-list .item-img-box {
        margin: auto;
    }

    /* account-security-form */

    .account-security-form {
        max-width: 100%;
    }

    .account-security-form .custom-btn,
    .info-form-wrapper .signup-pg-form .custom-btn {
        font-size: 14px;
        width: 100%;
        height: 40px;
    }

    /* payment account connect */
    .payment-account-card .payment-account-btn.paypal-btn i img {
        width: 25px;
    }

    .payment-account-card .payment-account-btn {
        font-size: 14px;
        width: 225px;
        height: 40px;
    }

    .payment-account-card .form-switch .kh-switch-input {
        width: 40px;
        height: 20px;
    }

    /* dashboard shop-order */
    #my_orders_table_wrapper.dataTables_wrapper #my_orders_table {
        width: 100% !important;
    }

    /*========== footer ========== */
}

@media (max-width: 767px) {
    .item-slider-wrapper .slider__prev,
    .item-slider-wrapper .slider__next {
        margin: unset !important;
        transform: rotate(-90deg);
    }

    .item-slider-wrapper .slider__next {
        margin-left: auto !important;
    }

    .item-slider-wrapper .slider__flex {
        position: relative;
    }

    .item-slider-wrapper .slider__col {
        padding: 0 15px;
        position: absolute;
        top: 50%;
        bottom: 50%;
    }

    .item-slider-wrapper .slider__image {
        height: 343px !important;
    }

    .item-slider-wrapper .slider__images {
        height: auto !important;
    }

    .info-section p {
        max-width: 100%;
    }

    /* cart10-3-23 khello */
    .cart-item-card .cart-item-img img {
        min-width: 100%;
        min-height: 240px;
    }

    /* dashbo- message  */
}

@media (max-width: 600px) {
    /*====================
	***** dashboard ******
	======================*/
    .dashboard-main-wrapper .user-profile-card,
    .dashboard-main-wrapper .user-profile-info,
    .count-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .user-profile-card .user-content {
        margin-bottom: 24px;
        text-align: center;
    }

    .user-profile-card .user-img-box {
        margin-right: 0;
        margin-bottom: 16px;
    }

    .count-wrapper .count-card:not(:last-child) {
        margin-bottom: 16px;
    }

    .count-wrapper .count-card {
        width: 100%;
    }

    .count-wrapper {
        margin-bottom: 32px !important;
    }

    .dashboard-wrapper {
        margin-bottom: 120px;
    }
}

@media (max-width: 500px) {
    /*========== video play ========== */

    .video-wrapper #video {
        border-radius: 20px !important;
    }

    /*========== global ========== */
    .section .content h3 {
        font-size: 18px;
    }

    .section .content {
        font-size: 16px;
    }

    .section-padding {
        padding: 16px;
    }

    .custom-primary-btn {
        font-size: 16px;
    }

    .section .section-title,
    .section .section-title.font-48 {
        font-size: 22px !important;
    }

    /*========== signin/signup ========== */

    .auth-content .logo {
        max-width: 60px;
        max-height: 60px;
    }

    .auth-form-wrapper {
        background: transparent;
    }

    .bottom-nav .nav-tabs {
        padding-left: 0;
    }

    .auth-form-content h1 {
        font-size: 22px;
    }

    .auth-form-content .custom-primary-btn {
        font-size: 18px;
    }

    .site-logo img {
        max-width: 80px;
        max-height: 80px;
    }

    .auth-form-wrapper {
        padding: 30px 50px;
    }

    /* ========== hero section ========== */
    .hero-star-vector {
        width: 50px;
        height: 50px;
        top: 0;
        left: 10px;
    }

    .hero-section .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-section .hero-content h1 {
        font-size: 40px;
    }

    /*========== img-section ========== */

    .img-card-section .vector-line-3 {
        display: none;
    }

    .img-card-section .img-card img {
        filter: drop-shadow(0px 15px 25px #e7e7e7);
        border-radius: 24px;
    }

    /* ========== info-section ========== */

    .info-section .md-title {
        font-size: 28px;
    }

    .info-section .lg-title {
        font-size: 40px;
    }

    /*========== footer ========== */
    footer {
        padding-top: 64px;
        padding-bottom: 40px;
    }

    footer .footer-link,
    footer .social-link {
        margin-bottom: 40px;
    }

    footer .footer-link ul li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 32px;
    }

    /*========== item-page ========== */
    .item-filter-section {
        margin-top: 0;
    }

    .item-card .item-label,
    .item-card .item-content .item-title,
    .item-card .item-content .price-text,
    .item-card .address-label .address-label-text {
        font-size: 10px;
    }

    .item-filter-section .filter-option {
        background: var(--bg-white);
        box-shadow: 0px 5px 8px rgba(19, 30, 30, 0.02);
    }

    .item-filter-section .item-wrapper {
        background-color: transparent;
    }

    .item-filter-section .container {
        margin-left: 0;
        margin-right: 0;
        padding-right: 0;
        padding-left: 0;
    }

    .item-filter-section .filter-option .filter-btn {
        max-width: 162px;
        height: 40px;
        padding: 0 24px;
    }

    .item-filter-section .filter-option {
        padding: 8px 16px;
    }

    /*========== item details page ========== */
    .item-content-wrapper .custom-card-head {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .item-content-wrapper .custom-card-head .item-title {
        margin-bottom: 10px !important;
    }

    /*========== slider ========== */
    .item-card .item-img-wrapper .item-img-box {
        max-width: 100%;
    }

    .item-card .item-img-wrapper img {
        border-radius: 7px;
    }

    .item-card {
        padding: 10px;
        margin: auto;
    }

    .item-slider-wrapper .slider__image {
        height: 260px !important;
    }

    .item-slider-wrapper .slider__images {
        height: auto !important;
    }

    /*========== cart-section ========== */

    .cart-checkout-wrapper .price-content p,
    .cart-checkout-wrapper .cart-checkout-content p {
        font-family: var(--font-popins);
        font-size: 16px;
    }

    .cart-checkout-wrapper .checkout-btn {
        font-size: 14px;
        min-width: 100%;
        height: 40px;
    }

    /*========== checkout page ========== */
    .checkout-section .checkout-form-wrapper {
        padding: 16px;
    }

    .checkout-section .checkout-btn {
        padding: 8px 24px;
        min-width: 100%;
        height: 40px;
    }

    .kh-form-content .form-title {
        font-size: 19px;
    }

    /*========== thankyou-section ========== */
    .billing-info-card .billing-info-title {
        font-size: 19px;
        margin-bottom: 16px;
    }

    .billing-info-card .billing-info-sm-title,
    .tbl-cart-items table th {
        font-size: 16px;
    }

    .thankyou-section .content,
    .tbl-cart-items table tr td,
    .tbl-cart-items.payment-info table tr td {
        font-size: 14px;
    }

    .postitem-form-btn,
    .form-content .contact-btn {
        min-width: 100%;
        min-height: 40px;
    }

    .form-content .head {
        margin-top: -30px;
    }

    /*====================
	***** dashboard ******
	======================*/
    .dashboard-main-wrapper,
    .table-wrapper,
    .dashboard-main-wrapper .content {
        padding: 16px;
    }

    /* .dashboard-main-wrapper .custom-btn {
		max-width: 100%;
		width: 100%;
		margin-bottom: 24px;
	} */

    .dashboard-main-wrapper .head-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .dashboard-main-wrapper .head-content .title {
        margin-bottom: 16px !important;
    }

    .delivery-dt-form .custom-btn:first-child {
        margin-bottom: 24px;
    }

    .delivery-dt-form .custom-btn {
        max-width: 100%;
    }
}

@media (max-width: 375px) {
    /* top search */
    .header-search-results {
        width: 93vw;
    }

    /* end */

    .custom-primary-btn {
        font-size: 14px;
    }

    .mobile-menu .mobile-logo img {
        height: 40px;
    }

    .hamburger-menu {
        width: 30px;
    }

    .hamburger-menu span {
        height: 4px;
        margin: 2px 0;
    }

    /*========== signin/signup ========== */
    .auth-form-wrapper {
        padding: 16px 24px;
    }

    /* ========== hero section ========== */
    .hero-arrow-vector {
        bottom: 90px;
        right: -30px;
    }

    .hero-star-vector {
        width: 40px;
        height: 40px;
    }

    /*========== img-section ========== */
    .img-card-section .img-card .btn.category-first-btn,
    .img-card-section .img-card .btn {
        font-size: 14px !important;
        top: calc(85% - 40px);
    }

    .img-card-section .img-card .btn.category-first-btn {
        width: auto;
    }

    .img-card-section .row > .col-6 {
        width: 100%;
    }

    /*========== item-page ========== */

    .item-filter-section .filter-option .filter-btn {
        width: 100%;
    }

    .item-filter-section .filter-option .filter-btn:not(:last-child) {
        margin-right: 10px;
    }

    /*========== slider ========== */
    .item-slider-wrapper .slider {
        padding: 0 !important;
    }

    .item-slider-wrapper .slider .swiper-container {
        width: calc(100% - 60px) !important;
    }

    .item-slider {
        max-width: 267px;
    }

    /*========== cart-section ========== */
    .cart-item-card .cart-item-img img {
        min-width: 100%;
        min-height: 240px;
    }

    .cart-item-card {
        padding: 16px;
    }

    .discount-wrapper {
        flex-direction: column;
    }

    .discount-wrapper .discount-input {
        margin-bottom: 24px;
        margin-right: 0;
    }

    .discount-wrapper .discount-input,
    .discount-wrapper .discount-btn {
        min-width: 100%;
    }

    .cart-checkout-wrapper .price-content p,
    .cart-checkout-wrapper .cart-checkout-content p {
        font-family: var(--font-popins);
        font-size: 14px;
    }

    /*====================
	***** dashboard ******
	======================*/
}

@media (max-width: 320px) {
    /*========== item-page ========== */
    .item-filter-section .item-cards-wrapper .row > .col-6 {
        width: 100%;
    }

    .item-filter-section .filter-option .filter-btn {
        padding: 0 6px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1260px;
    }
}

.tab-content-mobilesubmenu {
    display: none;
}

.nav-menu-content .nav-tabs .nav-link i,
.nav-menu-content .nav-tabs .nav-link .svg-inline--fa {
    display: none;
}

@media (max-width: 768px) {
    .nav-menu-content .nav-tabs > .nav-link {
        display: block;
        width: 100%;
        padding: 0;
        font-weight: 500;
        font-size: 16px;
        margin: 0 !important;
        padding-top: 12px !important;
        padding-bottom: 12px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        text-align: left;
        color: #5575c2 !important;
        border-radius: 0px !important;
        margin-bottom: 8px !important;
    }

    .nav-menu-content .nav-tabs {
        padding-left: 0px;
        padding-right: 0px;
    }

    .nav-menu-content .nav-tabs > #nav-parent-cat-1-tab {
        background-color: #bfde99 !important;
    }

    .nav-menu-content .nav-tabs > #nav-parent-cat-22-tab {
        background-color: #ffb6c2 !important;
    }

    .nav-menu-content .nav-tabs > #nav-parent-cat-32-tab {
        background-color: #a8d1e9 !important;
    }

    .nav-menu-content .nav-tabs > #nav-parent-cat-39-tab {
        background-color: #7e5eef !important;
    }

    .nav-menu-content .nav-tabs > #nav-parent-cat-49-tab {
        background-color: #83c8ff !important;
    }

    .nav-menu-content .nav-tabs > #nav-parent-cat-58-tab {
        background-color: #ff2339 !important;
    }

    .nav-menu-content .nav-tabs > #nav-parent-cat-76-tab {
        background-color: #e9a94a !important;
    }

    .nav-menu-content .nav-tabs > #nav-parent-cat-77-tab {
        background-color: #d06fd7 !important;
    }

    .nav-menu-content > .tab-content {
        display: none !important;
    }

    .nav-menu-content .nav-tabs .nav-link i,
    .nav-menu-content .nav-tabs .nav-link .svg-inline--fa {
        font-size: 13px;
        margin-left: 10px;
        display: inline-block;
    }

    .tab-content-mobilesubmenu {
        display: block;
    }

    .mobilesubmenu-area {
        display: none;
        padding: 0px;
        margin: 0px;
    }

    .mobilesubmenu-area > li > a {
        display: inline-block;
        padding: 12px 15px;
        border-bottom: 1px solid #ddd;
        width: 100%;
    }

    .mobilesubmenu-backarea-title {
        display: inline-block;
        width: Calc(100% - 50px);
        text-align: center;
        font-size: 16px;
        font-weight: bold;
    }

    .mobilesubmenu-backarea {
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

.footer-top {
    background-color: var(--product-main-color);
}

.footer-top hr {
    background-color: #334260;
    height: 2px;
    width: 60px;
    opacity: 1;
}

.exact-footer {
    background: #ffffff;
    padding: 70px 0 55px;
    text-align: center;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.exact-footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 38px;
    display: flex;
    justify-content: center;
    gap: 60px;
}

.exact-footer-links a {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
}

.exact-footer-social {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.exact-footer-social a {
    width: 40px;
    height: 40px;
    background: #5a78d6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
}

.exact-footer-brand {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #000;
}

.exact-footer-copy {
    font-size: 13px;
    color: #b3b3c2;
}
.footer-link-bold {
    font-weight: 600; /* little bit bold */
}
@media (max-width: 767px) {
    .exact-footer {
        padding: 48px 0 32px;
        text-align: center;
    }

    /* Links → vertical list */
    .exact-footer-links {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 32px;
    }

    .exact-footer-links li {
        margin: 0;
    }

    .exact-footer-links a {
        font-size: 16px;
        font-weight: 500;
    }

    /* Social icons */
    .exact-footer-social {
        gap: 14px;
        margin-bottom: 24px;
    }

    .exact-footer-social a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    /* Brand */
    .exact-footer-brand {
        font-size: 15px;
        margin-bottom: 4px;
    }

    /* Copyright */
    .exact-footer-copy {
        font-size: 12px;
        line-height: 1.4;
    }
}

/* Footer - 13/9/24 */

/* Account Security css */
.account-security-card {
    background: #fff;
    padding: 40px 45px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.account-input {
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    padding: 10px 0;
    font-size: 15px;
    box-shadow: none;
}

.account-input:focus {
    border-bottom-color: #5b7fd4;
    box-shadow: none;
}

.eye-toggle {
    position: absolute;
    right: 0;
    top: 36px;
    cursor: pointer;
    color: #999;
}

.eye-toggle:hover {
    color: #5b7fd4;
}

.save-btn {
    background: #5b7fd4;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 60px;
    font-size: 15px;
    font-weight: 500;
}

.save-btn:hover {
    background: #4a6ac0;
}
.password-toggle {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #6c757d;
    cursor: pointer;
    font-size: 1.1rem;
}

.password-toggle:hover {
    color: #5b7fd4;
}
/* Account Security css */

.account-security-card {
    background: #fff;
    padding: 40px 45px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.account-input {
    border: none;
    border-bottom: 1px solid #eee;
    border-radius: 0;
    padding: 10px 0;
    font-size: 15px;
    box-shadow: none;
}

.account-input:focus {
    border-bottom-color: #5b7fd4;
    box-shadow: none;
}

.save-btn {
    background: #5b7fd4;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 60px;
    font-size: 15px;
    font-weight: 500;
}

.save-btn:hover {
    background: #4a6ac0;
}

.edit-picture-text {
    color: #5b7fd4;
    font-size: 14px;
    cursor: pointer;
}

/* header user dropdown css */
/* User Avatar */
.user-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eef1f7;
}

/* Dropdown Box */
.user-dropdown-menu {
    min-width: 260px;
    border-radius: 12px;
    padding: 12px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border: none;
}

/* User Info Header */
.dropdown-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
}

.dropdown-user-info .avatar img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-user-info strong {
    font-size: 14px;
    display: block;
}

.dropdown-user-info small {
    font-size: 12px;
    color: #6c757d;
}

/* Dropdown Items */
.user-dropdown-menu .dropdown-item {
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 8px;
    margin: 4px 8px;
}

.user-dropdown-menu .dropdown-item:hover {
    background: #f4f6fb;
}

/* Logout */
.user-dropdown-menu .dropdown-item.text-danger:hover {
    background: #fff5f5;
}
.order-link {
    color: #5575c2 !important;
    text-decoration: none;
}

.order-link:hover {
    color: var(--product-main-dark-color);
    text-decoration: underline;
}

/* Content Pages Styles */
.pages-wrapper {
    background: var(--main-bg);
}

.content-page-title {
    font-family: var(--font-popins);
    font-weight: var(--font-600);
    font-size: 24px;
    color: var(--text-black);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--product-main-color);
    display: inline-block;
    padding-bottom: 5px;
}

.same-seller-item {
    background: #ffffff;
}
/* =========================================================
   IMG CARD SECTION – MOBILE FIX (APPEND AT END)
   ========================================================= */
@media (max-width: 767px) {
    /* Remove Bootstrap gutter interference ONLY here */
    .img-card-section .row {
        margin-left: 0;
        margin-right: 0;
        --bs-gutter-x: 0;
    }

    .img-card-section .row > [class^="col-"] {
        padding-left: 0;
        padding-right: 0;
    }

    /* Card base */
    .img-card-section .category-card {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
    }

    /* Reset desktop label positions */
    .img-card-section .label-top,
    .img-card-section .label-middle,
    .img-card-section .label-bottom {
        top: auto;
        left: auto;
        width: auto;
        height: auto;
    }

    /* Mobile label (button) placement */
    .img-card-section .cat-label {
        position: absolute;
        bottom: 12px;
        left: 12px;
        padding: 6px 16px;
        font-size: 18px;
        z-index: 5;
        white-space: nowrap;
        max-width: calc(100% - 24px);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Card heights */
    .category-card.large,
    .category-card.medium {
        height: 140px;
    }

    .category-card.small {
        height: 120px;
    }

    /* ======================
       MIDDLE ROW (2 COLUMNS)
       ====================== */
    .img-card-section .row.mb-4 {
        display: flex;
        gap: 16px;
    }

    .img-card-section .row.mb-4 > .col-md-6 {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }

    /* ======================
       BOTTOM ROW LAYOUT
       ====================== */
    .img-card-section .row:not(.mb-4) {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    /* Clothes – full width */
    .img-card-section .row:not(.mb-4) > .col-md-4:nth-child(1) {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Art + Shoes – half / half */
    .img-card-section .row:not(.mb-4) > .col-md-4:nth-child(2),
    .img-card-section .row:not(.mb-4) > .col-md-4:nth-child(3) {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
}
@media (max-width: 767px) {
    .info-section .vector-line-3,
    .info-section .vector-line-5 {
        display: none !important;
    }
}

/* =====================================================
   HEADER LOGO VISIBILITY FIX
   ===================================================== */

/* Mobile only */
@media (max-width: 768px) {
    .mobile-logo,
    .mobile-menu {
        display: block !important;
    }

    .logo {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-logo,
    .mobile-menu {
        display: none !important;
    }

    .logo {
        display: block !important;
    }
}

/* ===============================
   MOBILE CATEGORY MENU STYLES
   =============================== */

.mobile-category-list {
    list-style: none;
    margin: 0;
    padding: 0 20px;
}

.mobile-category-list li {
    padding: 12px 0;
    border-bottom: 1px solid #dfe3f3;
}

.mobile-category-list li:last-child {
    border-bottom: none;
}

.mobile-category-list a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #5b7fd4;
    text-decoration: none;
}

/* Subtle tap feedback (mobile UX) */
.mobile-category-list a:active {
    opacity: 0.7;
}

/* ===============================
   FOOTER HOVER EFFECTS
   =============================== */

/* Footer links hover */
.exact-footer-links a {
    transition: color 0.2s ease;
}

.exact-footer-links a:hover {
    color: #5a78d6;
}

/* Social icons hover */
.exact-footer-social a {
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.exact-footer-social a:hover {
    background-color: #4a68c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(90, 120, 214, 0.35);
}

/* Optional: brand hover (very subtle) */
.exact-footer-brand {
    transition: color 0.2s ease;
}

.exact-footer-brand:hover {
    color: #5a78d6;
}
/* ===============================
   MOBILE PROFILE DROPDOWN FIX
   =============================== */

@media (max-width: 768px) {
    .top-nav .dropdown-menu.user-dropdown-menu {
        position: fixed !important;
        top: 64px; /* adjust if header height changes */
        left: 12px !important;
        right: 12px !important;
        width: auto;
        max-width: none;

        border-radius: 16px;
        padding: 12px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

        transform: none !important;
    }

    .top-nav .dropdown-menu.user-dropdown-menu .dropdown-item {
        padding: 12px 20px;
        font-size: 15px;
    }

    .top-nav .dropdown-menu.user-dropdown-menu img {
        flex-shrink: 0;
    }
}
/* ===============================
   MOBILE ACCOUNT NAV
   =============================== */
.account-mobile-nav {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Menu item */
.account-mobile-nav .nav-item {
    display: block;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #edf0f7;
}

/* Remove last border */
.account-mobile-nav .nav-item:last-of-type {
    border-bottom: none;
}

/* Active state */
.account-mobile-nav .nav-item.active {
    background: #eef2ff;
    color: #5b7fd4;
    font-weight: 600;
    border-radius: 12px;
    margin: 4px 10px;
}

/* Tap feedback */
.account-mobile-nav .nav-item:active {
    opacity: 0.75;
}

/* Logout */
.logout-form {
    padding: 12px 10px 8px;
}

.logout-btn {
    width: 100%;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid #5b7fd4;
    background: transparent;
    color: #5b7fd4;
    font-size: 14px;
    font-weight: 500;
}

.logout-btn:active {
    opacity: 0.8;
}
