* {
    box-sizing: border-box;
}

:root {
    --primary: #0066b2;
    --accent: #00E1E1;
    --primary-2: #7580FF;
    --primary-3: #00E1E1;
    --primary-light: #F1F1F1;
    --primary-light-2: #E5F1FB;
    --white: #ffffff;
    --black: #000000;
    --trans: #00FFFFFF;
    --trans-gray: #80E8E8E8;
    --gray: #BDBDBD;
    --gray-dark: #8A8A8A;
    --gray-dark-2: #808080;
    --green: #23CF2A;
    --green-2: #8BC34A;
    --green-3: #CDDC39;
    --blue: #2196F3;
    --blue-2: #42A5F5;
    --blue-3: #90CAF9;
    --red: #F44336;
    --yellow: #FFC107;
    --h-font: "Lexend", sans-serif;
    --font: var(--h-font);
    --bg-grad: linear-gradient(45deg, var(--primary), var(--primary-2));
    --card-shadow: -1px 1px 6px 0px var(--gray);
    --card-shadow-sm: 0px 0px 6px -2px var(--gray);
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 400;
    background: var(--primary-light);
}

body:not(.auth-page, .no-grad) {
    /* background-image: url(../images/pars-banner-bg.png); */
    background-image: linear-gradient(180deg, rgb(0 102 178 / 20%), transparent);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 600px;
}

body.auth-page {
    background-color: #fff;
}

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

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

ol,
ul {
    padding-left: 20px;
}

h1 {
    font-size: 38px;
    font-weight: 600;
    font-family: var(--h-font);
}

h2,
.h2-font {
    font-size: 30px;
    font-weight: 600;
    font-family: var(--h-font);
}

h3,
.h3-font {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--h-font);
}

h4,
.h4-font {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--h-font);
}

h5,
.h5-font {
    font-size: 20px;
    font-weight: 500;
    font-family: var(--h-font);
}

h6 {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--h-font);
}

body .btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 2px solid transparent;
    padding: 12px 30px;
    font-size: inherit;
    font-weight: 500;
    border-radius: 20px;
    transition: color .15s ease-in-out, background .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    border-radius: 28px;
}

::placeholder {
    color: var(--gray-dark);
}

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

.text-black {
    color: var(--black, #000) !important;
}

.fw-semi {
    font-weight: 600;
}

/*Authentication Pages**/
/* .authentication-anchor {display: flex;justify-content: center;align-items: center;height: 100%;} */
.authentication-page .left-content .site-name {
    color: var(--primary);
    font-weight: 600;
    font-family: var(--h-font);
    font-size: 56px;
    line-height: 1;
    margin-bottom: 10px;
}

.authentication-page .left-content .sub-heading {
    font-size: 28px;
    font-weight: 600;
    font-family: var(--h-font);
    margin-bottom: 25px;
    line-height: 1;
}

.authentication-page .left-content .content-wrap {
    padding: 10px 0;
    text-align: center;
}

.authentication-page .left-content .logo-wrap {
    flex-grow: 0.1;
    text-align: center;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: end;
}

.authentication-anchor {
    padding: 20px 0;
}

.authentication-page .heading-wrap {
    position: relative;
    padding-bottom: 4px;
    margin-bottom: 16px;
    display: inline-block;
    padding-right: 40px;
    width: max-content;
}

.authentication-page .authentication-form .sub-heading {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.authentication-page .heading-wrap h1 {
    font-size: 30px;
    font-weight: 600;
}

.input-wrapper label {
    margin-bottom: 5px;
}

.authentication-page .heading-wrap:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background-image: var(--bg-grad);
}

.authentication-inner-wrapper .forgot-pass {
    color: var(--primary);
    text-align: right;
    font-size: 14px;
    /* margin-bottom: 20px; */
}

.authentication-inner-wrapper .bottom-others {
    align-self: flex-end;
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding-top: 10px;
}

.authentication-anchor ul.auth-cta {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.authentication-anchor ul.auth-cta li.auth-cta-item.active a {
    height: 70px;
    box-shadow: 14px 27px 45px rgba(112, 144, 176, 0.2);
    border-radius: 14px;
    color: var(--thm-dark);
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: white;
    position: relative;
    overflow: hidden;
}

.authentication-anchor ul.auth-cta span.icon-wrapper {
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #FBFBFF 0%, #CACAFF 100%);
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    height: 39px;
    width: 39px;
    color: var(--thm-primary);
}

.authentication-anchor ul.auth-cta li.auth-cta-item a {
    height: 70px;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    color: var(--thm-dark);
    padding: 10px 25px;
}

.authentication-page {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

.authentication-page .authentication-col {
    width: 50%;
    flex: 0 0 50%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.authentication-page .authentication-form {
    width: 100%;
    max-width: 380px;
    margin: auto auto 40px;
    align-self: center;
}

.authentication-page .authntication-thumb {
    width: 100%;
    position: relative;
    padding-bottom: 54%;
    /* flex-grow: 1; */
    max-height: 550px;
}

.authentication-page .authntication-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.authentication-page .left-content {
    position: sticky;
    padding: 40px 40px;
    height: 100vh;
    /* position: relative; */
    display: flex;
    flex-direction: column;
    top: 0;
}

.authentication-page .left-content h1 {
    font-size: 36px;
    margin-bottom: 14px;
}

.authentication-page .authentication-form.sm-btn-btm {
    margin: auto 0;
}

.authentication-page .left-content p {
    margin-bottom: 20px;
}

.authentication-inner-wrapper {
    background-color: var(--primary-light);
    color: #000;
    height: 100%;
    padding: 40px 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.authentication-form ul.nav.nav-pills {
    background: rgb(243 245 247/1);
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 11px;
    padding: 5px 5px;
    margin-bottom: 30px;
}

.authentication-page .left-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/cars.png);
    background-position: 50% 93%;
    background-repeat: no-repeat;
    background-size: 120%;
    opacity: 0.15;
    z-index: -1;
}

.authentication-form ul.nav.nav-pills li.nav-item {
    width: 50%;
    flex: 0 0 50%;
}

.authentication-form ul.nav.nav-pills li.nav-item a.nav-link {
    color: rgb(20 23 24/1);
    font-size: 14px;
    font-weight: 600;
}

.authentication-form ul.nav.nav-pills li.nav-item a.nav-link.active {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 3px 2px #00000008;
}

.authentication-page .authentication-form .logo {
    margin-bottom: 26px;
}

.input-wrapper {
    position: relative;
    margin-bottom: 16px;
    font-family: var(--h-font);
}

.input-wrapper input {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: linear;
    transition-duration: .2s;
    color: var(--black);
    background: var(--white);
    padding: 14px .875rem;
    width: 100%;
    font-size: 14px;
    border-radius: .75rem;
    border: 1px solid var(--black);
    outline: none;
}

.pass-toggle-wrap {
    position: relative;
}

.pass-toggle-wrap .pass-toggle {
    position: absolute;
    top: 12px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.pass-toggle-wrap .pass-toggle:not(.active) .hide-pass {
    display: none;
}

.pass-toggle-wrap .pass-toggle.active .view-pass {
    display: none;
}

.pass-toggle-wrap input {
    padding-right: 42px;
}

.authentication-page .authentication-form .tab-pane {
    padding: 0 0;
}

.authentication-page .authentication-form .input-wrapper svg {
    position: absolute;
    top: 15px;
    left: 15px;
    fill: hsla(200, 4%, 44%, .5);
    width: 22px;
    height: 22px;
}

/*.authentication-page .authentication-form .input-wrapper input {
    padding-left: 3.125rem;
}*/

body .btn.btn-primary {
    background: var(--primary);
    border: 0;
    background-image: var(--bg-grad);
    background-repeat: no-repeat;
    color: #fff;
    box-shadow: -1px 1px 4px 0px var(--gray);
}

body .btn.btn-outline {
    border: 2px solid var(--gray);
    box-shadow: none;
}

body .btn.btn-outline:focus {
    /* border-color: #000; */
}

body .btn.btn-primary-clr {
    background: var(--primary);
    border: 0;
    color: #fff;
    box-shadow: none !important;
}

.authentication-page .authentication-form button.btn-primary {
    padding: 12px 30px;
    margin-bottom: 20px;
    width: 100%;
    font-family: var(--h-font);
    text-transform: capitalize;
    margin-top: 30px;
}

.authentication-page .authentication-form form>p {
    font-size: 13px;
}

.authentication-page .resend-otp {
    text-align: center;
    font-size: 14px;
    padding-top: 15px;
}

.authentication-page .otp-inputs {
    width: 270px;
    max-width: 100%;
    margin: 40px auto 10px;
    display: flex;
}

.authentication-page .otp-inputs input {
    margin: 0 4px;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: linear;
    transition-duration: .2s;
    color: var(--black);
    background: var(--white);
    padding: 12px 10px;
    width: calc(25% - 8px);
    font-size: 16px;
    border-radius: .75rem;
    border: 1px solid var(--black);
    outline: none;
    text-align: center;
}

.authentication-page .resend-otp button {
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    color: var(--primary);
}

body .btn.btn-primary:hover {
    background-position: 500px 0;
}

.input-wrapper input:focus {
    background: #fff;
}

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

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

.input-wrapper label.error {
    font-size: 12px;
    text-align: left;
    width: 100%;
    color: #f00;
    letter-spacing: 0.5px;
    font-weight: 400;
    margin: 0;
}

.authentication-inner-wrapper .bottom-others p {
    margin: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/*Authentication Pages End**/
/*****Homepage Start****/

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

.logo-wrapper {
    width: auto;
}

.logo-wrapper img {
    border-radius: 4px;
}

.header ul.main-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.header .menu-cta-wrapper .btn-outline {
    padding: 10px;
    border-radius: 40px;
    margin-left: 15px;
}

header.header.js-scrolled {
    box-shadow: var(--card-shadow);
    background-color: #fff;
    color: #000;
    padding: 16px 0;
}

.header .menu-cta-wrapper {
    display: flex;
    /* align-items: center; */
}

.header .menu-cta-wrapper .login-cta-wrap .btn-primary {
    height: 49px;
    display: flex;
    align-items: center;
}

.header ul.main-menu .menu-item {
    margin: 0 16px;
}

.header .cta-wrapper {
    margin-left: 16px;
}

.header .cta-wrapper .btn {
    border-radius: 8px;
}

a.user-cta {
    width: 40px;
    height: 40px;
    display: inline-flex;
    background-image: linear-gradient(115deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
    text-align: center;
    color: #fff;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
}

header.header {
    padding: 30px 0;
    /* border-bottom: 1px solid var(--gray); */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    /* background-color: #ffff; */
    transition: all 0.25s ease;
}

header.header.not-fixed {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
}

.header-white {
    color: #fff;
}

header.header .logo-black {
    display: none;
}

header.header.js-scrolled .logo-white {
    display: none;
}

header.header.js-scrolled .logo-black {
    display: block;
}

.header-inner ul.main-menu .menu-link:hover {
    color: var(--thm-primary);
}

.header-inner ul.main-menu .menu-link {
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding: 4px 0;
    font-size: 15px;
}

.header-inner ul.main-menu .menu-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: all 0.25s ease;
}

.header-inner ul.main-menu .menu-link:hover:before {
    width: 100%;
}

.hero-banner {
    padding: 40px 0 30px;
    position: relative;
}

.hero-banner h1.hero-title {
    text-align: center;
    margin-bottom: 14px;
}

.header+.main-content>*:first-child {
    padding-top: 150px;
}

.header+.main-content.search-template .hero-banner {
    padding-top: 110px;
}

.header+.main-content>.all-categories-section {
    padding-top: 110px;
}

.user-profile-wrapper {
    position: relative;
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: max-content;
    min-width: 14rem;
    outline: transparent solid 2px;
    outline-offset: 2px;
    background: white;
    border: 1px solid #fff;
    color: rgb(26, 32, 44);
    box-shadow: var(--card-shadow);
    color: inherit;
    z-index: 1;
    border-radius: 15px;
    padding: 0px;
    margin-top: 10px;
    display: none;
}

.dropdown .dropdown-head {
    padding: 16px 20px 12px;
    width: 100%;
    border-bottom: 1px solid rgb(230, 236, 250);
    border-top-color: rgb(230, 236, 250);
    border-right-color: rgb(230, 236, 250);
    border-left-color: rgb(230, 236, 250);
    font-size: var(--chakra-fontSizes-sm);
    font-weight: 700;
    color: var(--chakra-colors-navy-700);
}

.dropdown .dropdown-head p {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.8;
}

.dropdown ul.dropdown-list {
    padding: 10px;
    margin: 0;
    list-style: none;
}

.dropdown ul.dropdown-list .dropdown-item a,
.dropdown ul.dropdown-list .dropdown-item button {
    /* font-size: 14px; */
    line-height: 25px;
    padding: 6px 12px;
    display: inline-block;
    width: 100%;
    color: inherit;
}


.dropdown ul.dropdown-list .dropdown-item {
    padding: 0;
    border-radius: 7px;
}

.dropdown ul.dropdown-list .dropdown-item a .icon,
.dropdown ul.dropdown-list .dropdown-item button .icon {
    width: 20px;
    display: inline-block;
    margin-right: 7px;
}

.hero-banner h1.hero-title {
    text-align: center;
    margin-bottom: 12px;
}

.hero-banner>.container {
    position: relative;
}

.hero-banner .sub-title {
    text-align: center;
    margin-bottom: 40px;
}

.hero-search .search-inner {
    display: flex;
    --col-gap: 12px;
    height: 100%;
}

.hero-search .search-inner .search-prefix {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 10px 18px 10px var(--col-gap);
    border-right: 2px solid var(--gray);
}

.hero-search .search-inner .input-group {
    width: 40%;
    padding: 0 var(--col-gap);
    position: relative;
    flex-grow: 1;
}

.hero-search .search-inner .search-submit {
    display: flex;
    gap: var(--col-gap);
}

.hero-search .search-inner .select-type {
    width: 30%;
    padding: 0 calc(var(--col-gap) / 2);
    position: relative;
}

.hero-search .select-type select {
    padding: 8px 16px;
    outline: none;
    font-weight: 600;
    height: 100%;
    width: 100%;
    border: none;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3e%3cpath d='M2.77498 7.42498C2.77498 7.26665 2.83332 7.10831 2.95832 6.98331C3.19998 6.74165 3.59998 6.74165 3.84165 6.98331L9.27498 12.4166C9.67498 12.8166 10.325 12.8166 10.725 12.4166L16.1583 6.98331C16.4 6.74165 16.8 6.74165 17.0417 6.98331C17.2833 7.22498 17.2833 7.62498 17.0417 7.86665L11.6083 13.3C11.1833 13.725 10.6083 13.9666 9.99998 13.9666C9.39165 13.9666 8.81665 13.7333 8.39165 13.3L2.95832 7.86665C2.84165 7.74165 2.77498 7.58331 2.77498 7.42498Z' fill='%232C2738'/%3e%3c/svg%3e") center no-repeat;
    background-size: 17px;
    background-position: calc(100% - 15px) 50%;
}

.hero-search .search-inner .search-shortcuts {
    display: flex;
    text-align: center;
    align-items: center;
    padding: 0 calc(var(--col-gap) / 2);
    position: relative;
    width: auto;
    justify-content: space-evenly;
    min-width: max-content;
}

.hero-search .search-inner .search-shortcuts .label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-search .search-inner .search-shortcuts .icon {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0 auto 2px;
}

.hero-search .search-shortcuts .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-search-holder {
    position: relative;
    height: 100px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
    display: flex;
    padding: 0 180px;
    justify-content: flex-start;
}

.hero-search {
    border: 0px solid var(--gray);
    border-radius: 50px;
    overflow: hidden;
    width: 900px;
    max-width: 100%;
    height: 80px;
    margin: auto;
    padding: 12px 13px;
    box-shadow: 0 0 3px var(--gray);
    background: #fff;
    transition: all 0.05s ease;
}

.hero-search.js-scrolled {
    position: fixed;
    top: 12px;
    z-index: 102;
    height: 56px;
    width: min(500px, 40vw);
    padding: 8px 8px;
}

.hero-search.js-scrolled .search-inner [type="button"],
.hero-search.js-scrolled .search-inner [type="submit"] {
    width: 40px;
    padding: 7px 7px;
}

.hero-search.js-scrolled .search-prefix {
    width: 55px;
    padding: 10px 15px 10px 10px;
}

.hero-search.js-scrolled .search-inner {
    --col-gap: 10px;
}

.hero-search.js-scrolled .search-inner .input-group input[type="search"] {
    font-size: 14px;
}

.hero-search .search-inner .input-group input[type="search"] {
    width: 100%;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 6px 10px;
    font-size: 16px;
}

.hero-search form {
    height: 100%;
}

.hero-search .search-inner [type="submit"] {
    height: 100%;
    border-radius: 60px;
    padding: 12px 16px;
}

.hero-search .search-inner [type="button"] {
    line-height: 0;
    height: 100%;
    border-radius: 60px;
    padding: 10px 14px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.hero-search input:-webkit-autofill,
.hero-search input:-webkit-autofill:hover,
.hero-search input:-webkit-autofill:focus,
.hero-search input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.top-categories ul.cats-list {
    margin: 0 -12px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.sec-top-head {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.top-categories ul.cats-list a {
    background: var(--white);
    display: inline-block;
    width: 100%;
    border-radius: 14px;
    text-align: center;
    padding: 20px 15px 25px;
    color: inherit;
    box-shadow: -1px 1px 6px 0px var(--gray);
}

.top-categories ul.cats-list a>span {
    display: block;
}

.top-categories ul.cats-list li {
    width: 11.11%;
    padding: 0 12px 24px;
}

.top-categories ul.cats-list a .icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    max-width: 100%;
    background-image: linear-gradient(90deg, var(--gray), transparent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    margin-bottom: 15px;
}

.top-categories ul.cats-list a .label {
    font-weight: 500;
    font-size: 105%;
    margin-bottom: 4px;
}

.top-categories a .count {
    color: var(--gray-dark-2);
}

.inter-sec {
    padding: 40px 0;
}

.product-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--card-shadow);
    transition: 0.15s ease-in-out;
    transition-property: transform, box-shadow;
    color: inherit;
    text-decoration: none;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: -1px 1px 10px 2px var(--gray);
}

.product-card .card-anchor {
    color: inherit;
}

.product-card .thumbnail-meta {
    width: 100%;
    position: relative;
    padding-bottom: 50%;
    overflow: hidden;
}

.product-card .thumbnail-meta img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card .cats {
    padding: 10px 5px;
    margin: 0;
    list-style: none;
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.product-card .cats .item {
    background: #fff;
    border-radius: 20px;
    font-size: 12px;
    padding: 4px 12px;
}

.product-card .cats li {
    margin: 0 5px 10px;
}

.products-listing .row {
    --bs-gutter-y: 1.5rem;
}

.products-listing .content-wrap {
    padding: 20px 20px 10px;
}

.products-listing .content-wrap .title {
    margin-bottom: 10px;
}

.products-listing .content-wrap .price {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

.btn-ico {
    border: none;
    box-shadow: none;
    padding: 8px;
    border-radius: 50%;
    background: transparent;
    line-height: 0;
    transition: all 0.15s ease-in-out;
}

.products-listing .content-wrap .cta-wrap {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.btn-ico:hover {
    background: #dddddd;
}

/*****Homepage End*****/

/***************Footer*****************/
footer.footer {
    border-top: 1px solid var(--gray);
    margin-top: 50px;
    position: relative;
    background-image: linear-gradient(0, rgb(0 102 178 / 20%), transparent);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

footer.footer>.container {
    position: relative;
    z-index: 3;
}

footer.footer ul.menu-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

footer.footer .logo-wrapper img {
    border-radius: 4px;
}

footer.footer ul.menu-list .menu-item {
    margin-bottom: 10px;
}

footer.footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--gray);
    flex-wrap: wrap-reverse;
}

.footer-bottom ul.bottom-menu {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-bottom ul.bottom-menu li.menu-item {
    padding: 0 14px;
    position: relative;
}

.footer-bottom ul.bottom-menu li.menu-item:not(:first-child) {
    border-left: 1px solid var(--gray);
}

.footer-bottom ul.bottom-menu li.menu-item:last-child {
    padding-right: 0;
}

footer.footer .footer-main {
    padding: 50px 0 80px;
}

.get-in-touch input[type="email"] {
    width: 100%;
    border: 1px solid var(--gray);
    border-radius: 4px;
    line-height: 25px;
    padding: 8px 10px;
    outline: none;
    box-shadow: none;
}

.get-in-touch button.btn.btn-primary {
    margin-top: 12px;
    padding: 8px 18px;
}

.footer li.menu-item a {
    position: relative;
    color: var(--black);
    word-break: break-word;
}

.footer li.menu-item a:hover {
    color: var(--primary);
}

.footer li.menu-item a:before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.footer li.menu-item a:hover:before {
    width: 100%;
}

.get-in-touch input[type="email"]:focus {
    border-color: var(--gray-dark-2);
}

.get-in-touch h6 {
    margin-bottom: 10px;
    font-weight: 600;
    /* font-size: 18px; */
}

.drawer-modal.modal .modal-dialog {
    margin: 0;
    height: 100%;
    transform: translateX(-100%);
    opacity: 0;
}

.drawer-modal .modal-dialog .modal-content {
    border: none;
    border-radius: 0 10px 10px 0;
    min-height: 100%;
    padding: 25px 20px;
}

.drawer-modal.modal.show .modal-dialog {
    transform: translateX(0);
}

.drawer-modal.modal.fade .modal-dialog {
    opacity: 1;
}

.drawer-right-modal.modal .modal-dialog {
    margin: 0 0 0 auto;
    height: 100%;
    transform: translateX(100%);
    opacity: 0;
}

.drawer-right-modal .modal-dialog .modal-content {
    border: none;
    border-radius: 10px 0 0 10px;
    min-height: 100%;
    padding: 25px 20px;
}

.drawer-right-modal.modal.show .modal-dialog {
    transform: translateX(0);
}

.drawer-right-modal.modal.fade .modal-dialog {
    opacity: 1;
}

#filter-modal .modal-header {
    border: none;
    padding: 10px 0;
}

#filter-modal .modal-header .btn.btn-outline {
    padding: 3px 12px;
    height: 40px;
}

#filter-modal .modal-header .btn-outline.btn[data-bs-dismiss="modal"] {
    padding: 3px 6px;
    width: 40px;
}

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

.input-wrap,
.radios-wrap {
    margin-bottom: 20px;
}

input:not([type="checkbox"], [type="radio"], [type=file]),
textarea,
select {
    width: 100%;
    border: none;
    background: #fff;
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: -1px 1px 4px 0px rgba(0, 0, 0, 0.5);
    outline: none;
    resize: none;
}

.input-wrap label,
.radios-wrap label {
    margin-bottom: 10px;
}

#filter-modal .select2-dropdown {
    width: 100% !important;
}

.radios-wrap .radio-item {
    position: relative;
    display: flex;
    flex-direction: column;
}

.radios-wrap .radio-item .error {
    order: 10;
}

.radios-wrap .radio-item .radio-label {
    display: block;
    background-color: var(--primary-light-2);
    border-radius: 10px;
    text-align: center;
    padding: 10px 15px;
    box-shadow: -1px 1px 4px 0px var(--gray);
}

.radios-wrap .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
}

.radios-wrap .radio-item input[type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.radios-wrap .radio-item input[type=radio]:checked~.radio-label {
    background-color: var(--primary-2);
    color: #fff;
}


input[type=checkbox] {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary);
    border-radius: 3px;
    vertical-align: top;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background 0.15s ease-in-out;
}

input[type=checkbox]:checked {
    background-color: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='ionicon' viewBox='0 0 512 512'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='32' d='M416 128L192 384l-96-96'/%3E%3C/svg%3E");
}

.checkbox-wrap {
    margin-bottom: 15px;
}

/*************Footer End*****************/
/*********Categories Page Start************/

.top-categories ul.cat-6 li {
    width: 16.66%;
}

.top-categories ul.cat-6 li a {
    padding: 30px 15px;
}

/********Categories Page End**********/
/*******add listing start********/

/************************/
select.select-2 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='48' d='M112 184l144 144 144-144'/%3E%3C/svg%3E");
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-position: calc(100% - 14px) 50%;
    background-repeat: no-repeat;
    background-size: 20px;
}

.add-listing-wrap {
    /* padding: 20px; */
    display: flex;
    min-height: 100vh;
    position: relative;
    /* overflow: hidden; */
}

.add-listing-wrap .left-col {
    /* background: rgb(225 225 235 / 20%); */
    width: 25%;
    flex: 0 0 25%;
    width: 100%;
    max-height: calc(100vh - 40px);
    background: var(--primary-light-2);
    -webkit-box-shadow: 0px 6px 12px var(--Ev100, rgba(30, 10, 58, 0.04));
    box-shadow: 0px 6px 12px var(--Ev100, rgba(30, 10, 58, 0.04));
    padding: 28px 30px;
    transition: all 0.2s ease;
    font-weight: 500;
    color: var(--primary-dark);
    display: flex;
    flex-direction: column;
    position: sticky;
    z-index: 2;
    top: 0;
    min-height: 100vh;
}

.add-listing-wrap .bottom-cta a {
    color: inherit;
}

.add-listing-wrap ul.steps-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.add-listing-wrap .top-head .back-sm-wrap {
    width: 16%;
    text-align: left;
}

.add-listing-wrap .top-head .back-sm-wrap .btn {
    padding: 3px 6px;
    width: 38px;
    height: 38px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.add-listing-wrap .top-head .steps-count-sm {
    width: 18%;
}

.add-listing-wrap .top-head .steps-count-sm .count-by {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1;
}

.add-listing-wrap .top-head .steps-count-sm .pagination span {
    flex: 1 0 0%;
    height: 3px;
    background: var(--gray-dark);
    border-radius: 5px;
}

.add-listing-wrap .top-head .steps-count-sm .pagination {
    gap: 4px;
}

.add-listing-wrap .top-head .steps-count-sm .pagination span.done {
    background-color: var(--primary);
}

.add-listing-wrap .left-col.dark-card .icon-wrap {
    background-color: var(--primary-dark);
}

.add-listing-wrap .left-col.dark-card .title .description {
    color: #bbb;
}

.add-listing-wrap ul.steps-menu .icon-wrap {
    display: inline-flex;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border: 1px solid var(--gray);
    border-radius: 5px;
    padding: 5px;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.add-listing-wrap ul.steps-menu li.step {
    display: flex;
    padding-bottom: 30px;
    position: relative;
}

.add-listing-wrap ul.steps-menu li.step:not(.active) {
    opacity: 0.4;
}

.add-listing-wrap ul.steps-menu .title {
    flex-grow: 1;
    padding-left: 10px;
}

.add-listing-wrap ul.steps-menu .title .name {
    font-weight: 500;
    font-size: 14px;
    margin: 0;
}

.add-listing-wrap ul.steps-menu .title .description {
    font-size: 12px;
    margin: 0;
    color: #979ec2;
    font-weight: 300;
}

.add-listing-wrap .left-col .logo-wrapper {
    margin-bottom: 50px;
}

.add-listing-wrap .right-col {
    padding-left: max(20px, 4%);
    padding-right: max(20px, 4%);
    flex-grow: 1;
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
    overflow: hidden;
}

.add-listing-wrap .business-forms {
    height: 100%;
    flex-direction: column;
    display: flex;
}

.add-listing-wrap ul.steps-menu li.step:not(:last-child):before {
    content: "";
    position: absolute;
    top: 0;
    left: 14px;
    height: 100%;
    width: 1px;
    background-color: var(--gray);
}

.add-listing-wrap .top-head {
    text-align: center;
    padding-top: 30px;
}

.drop-zone-overlay .preview-item .delete>* {
    pointer-events: none;
}

.add-listing-wrap .input-wrap {
    margin-bottom: 28px;
    position: relative;
}

label .required {
    color: var(--bs-danger);
}

.add-listing-wrap .drop-zone-overlay {
    padding: 20px;
    text-align: center;
    position: relative;
    background: #fff;
}

/* 
.add-listing-wrap .drop-zone-overlay input[type=file] {
} */

.add-listing-wrap .drop-zone-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /* width: 100%; */
    margin: 0 -10px -20px;
    min-width: 100%;
    pointer-events: none;
}

.drop-zone-overlay .preview-item {
    width: auto;
    flex: 0 0 25%;
    padding: 0 10px 20px;
}

.product-images-preview {
    border: 2px dashed var(--gray);
    min-height: 100px;
    border-radius: 10px;
}

.add-listing-wrap .drop-zone-overlay.draggedover {
    border-color: #000;
}

.upload-images-wrap {
    width: 100%;
    text-align: center;
    background-color: var(--gray);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: -1px 1px 4px 0px var(--gray);
    margin-bottom: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.15s ease-in-out;
    cursor: pointer;
}

.upload-images-wrap img {
    margin-right: 6px;
}

li#empty-images {
    text-align: center;
    flex-grow: 1;
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #717b9e !important;
}

li#empty-images.hidden {
    display: none;
}

.upload-images-wrap:hover {
    background-color: var(--gray-dark-2);
}

.price-input-wrap {
    position: relative;
}

.price-input-wrap input[type=number] {
    padding: 15px 20px;
    padding-left: 50px;
    font-size: 20px;
    font-weight: 500;
}

.price-input-wrap .price-icon {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 26px;
    color: var(--primary);
}

.drop-zone-overlay .preview-item .card-wrap {
    background-color: #ddd;
    /* color: transparent; */
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.drop-zone-overlay .preview-item .card-wrap.card-image .inner-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 40%);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.15s ease-in-out;
}

.drop-zone-overlay .preview-item .card-wrap .inner-section {
    padding: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.drop-zone-overlay .preview-item .card-wrap .inner-section>.flex {
    margin-top: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.drop-zone-overlay .preview-item .card-wrap .inner-section button.delete {
    margin-left: auto;
    border: none;
    background: #fff;
    width: 35px;
    height: 35px;
    padding: 8px !important;
    border-radius: 5px;
}

.drop-zone-overlay .preview-item .card-wrap .inner-section button.delete svg {
    width: 100%;
    height: 100%;
    vertical-align: text-top;
}


.drop-zone-overlay .preview-item .card-wrap .inner-section .filesize {
    margin: 0;
    font-size: 14px;
}

.drop-zone-overlay .preview-item .card-wrap .inner-section .name {
    font-size: 14px;
    flex-grow: 1;
    height: 20px;
    overflow: hidden;
    display: -webkit-box;
}

.drop-zone-overlay #business-gallery .preview-item {
    flex: 0 0 auto;
    width: 25%;
}

.drop-zone-overlay #business-gallery .preview-item button.delete {
    padding: 4px !important;
    width: 22px;
    height: 22px;
}

.drop-zone-overlay #business-gallery .preview-item .inner-section span svg {
    width: 18px;
    height: 18px;
    vertical-align: text-top;
}

.drop-zone-overlay #business-gallery .preview-item .filesize,
.drop-zone-overlay #business-gallery .preview-item .name {
    font-size: 12px;
}

.drop-zone-overlay .preview-item .card-wrap.card-image:hover .inner-section {
    opacity: 1;
    visibility: visible;
}

.drop-zone-overlay .preview-item .card-wrap>img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.input-wrap .select2-container {
    width: 100%;
}

.add-listing-wrap .input-wrap .select2-container .select2-dropdown {
    width: 100% !important;
}

.drop-zone-overlay .preview-item .card-wrap:not(.card-image)>img {
    display: none;
}

.add-listing-wrap .business-forms .cta-wrapper {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

.add-listing-wrap .business-forms .cta-wrapper .btn-next {
    margin-left: auto;
}

.add-listing-wrap .forms-listing .step:not(.active) {
    display: none;
}

.forms-listing .steps li[role] {
    position: absolute;
    left: -9999px;
}

.forms-listing .content .title {
    position: absolute;
    left: -9999px;
}

.forms-listing .actions li a {
    padding: 8px 22px;
    border-radius: 20px;
    outline: none;
    box-shadow: none;
    text-align: center;
    box-shadow: -1px 1px 4px 0px var(--gray);
    background-color: var(--primary);
    border-color: var(--primary);
    background-image: var(--bg-grad);
    text-decoration: none;
    color: #fff;
    display: inline-block;
}

.add-listing-wrap .right-col>form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.add-listing-wrap .right-col .forms-listing {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.condition-tabs-wrap .item {
    display: none;
}

.forms-listing .actions {
    margin-top: auto;
}

.forms-listing .actions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
}

.forms-listing .actions li.disabled * {
    /* display: none; */
    opacity: 0.5;
    cursor: not-allowed;
    color: #fff;
}

.forms-listing .actions li:nth-child(2),
.forms-listing .actions li:nth-child(3) {
    margin-left: auto;
}

/* .forms-listing .actions li:hover a {
    background-color: rgba(var(--primary-dark-val) / 0.8);
    border-color: rgba(var(--primary-dark-val) / 0.8);
} */
.add-listing-wrap ul.steps-menu li[role] a {
    display: flex;
    color: inherit;
    pointer-events: none;
}

.add-listing-wrap label.error {
    color: var(--bs-danger);
    font-size: 12px;
    line-height: 1;
    margin-bottom: 0;
    margin-top: 8px;
}

.add-listing-wrap ul.steps-menu li[role] {
    padding-bottom: 30px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.add-listing-wrap ul.steps-menu li[role].done:before {
    background-color: var(--bs-success) !important;
}

.add-listing-wrap .left-col.dark-card ul.steps-menu li[role].done .icon-wrap {
    background-color: var(--bs-success);
}

.add-listing-wrap ul.steps-menu li[role].done .icon-wrap {
    border-color: var(--primary);
    background-color: var(--primary);
    color: #fff;
}

.add-listing-wrap ul.steps-menu li[role].done {
    color: var(--primary);
}

.forms-listing h3 .icon-wrap,
.forms-listing h3 .title {
    display: none;
}

.add-listing-wrap ul.steps-menu li[role]:not(:last-child):before {
    content: "";
    position: absolute;
    top: 0;
    left: 14px;
    height: 100%;
    width: 1px;
    background-color: var(--gray);
}

.add-listing-wrap ul.steps-menu li[role].disabled {
    opacity: 0.4;
}

.success-content-wrap {
    text-align: center;
    padding-bottom: 40px;
}

.success-content-wrap h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.success-content-wrap h6 {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
}

span.select2-selection__arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M12.1211 4.4397L7.35406 9.20675C7.15879 9.40201 6.84221 9.40201 6.64695 9.20675L1.8799 4.4397' stroke='%23474D6A' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

span.select2-selection__arrow b {
    display: none !important;
}


span.select2.select2-container--default {
    width: max-content !important;
}



body .select2-container--default .select2-selection--single span.userName {

    display: flex;

    align-items: center;

    color: #2C2738;

    font-size: 16px;

}

body .select2-container .select2-selection--single .select2-selection__rendered,
body .select2-container .select2-results__option {
    padding: 7px 34px 7px 14px;
    outline: none;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
}



body .select2-container--default .select2-selection--single span.select2-selection__arrow b {

    display: none;

}



body .select2-container--default .select2-selection--single span.select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    width: 17px;
    height: 17px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='48' d='M112 184l144 144 144-144'/%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 20px;
}



body .select2-container--default span.userName img {

    margin-right: 12px;

    width: 24px;

    height: 18px;

    border-radius: 2px;

}



span.select2-container span.select2-dropdown {
    position: relative;
    background: #FFFFFF;
    border: 1px solid var(--primary-light);
    border-radius: 5px !important;
    overflow: hidden;
    z-index: 90;
    width: max-content !important;
}



body .select2-container--default .select2-results__option--selected {

    background: #ada8bb85;

}



body .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {

    background: var(--theme-primary);

}

.select2-container .select2-search--dropdown {
    padding: 8px 8px;
}

.select2-container .select2-search--dropdown input.select2-search__field {
    border: 1px solid #DBE2EA;
    border-radius: 5px;
    outline: none;
    transition: all 0.2s ease;
    font-size: 14px;
    box-shadow: none;
    padding: 6px 10px;
}

.select2-container .select2-search--dropdown input.select2-search__field:focus {
    border-color: #000;
}

body .select2-container--default .select2-results>.select2-results__options {
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
}


body .select2-container .select2-results__option.select2-results__option--highlighted {
    background-color: #eee;
    color: inherit;
}

span.select2-container span.select2-dropdown.select2-dropdown--below {
    margin-top: 4px;
    /* width: max-content !important; */
    box-shadow: -1px 1px 4px 0px var(--gray);
}

.most-active-business {
    padding: 50px 0;
}

body .input-wrap .select2 {
    width: 100% !important;
}

body .input-wrap .select2-selection {
    background-color: #fff;
    border: 1px solid #e9e9f1;
    border-radius: 10px !important;
    height: auto;
    box-shadow: -1px 1px 4px 0px var(--gray);
}

body .input-wrap .select2-selection .select2-selection__placeholder {
    color: #999 !important;
}

body .input-wrap .select2-selection .select2-selection__rendered {
    font-size: 14px;
    line-height: 25px;
    padding: 8px 10px;
    outline: none;
    box-shadow: none;
}

/************************/
/*****add listing end**********/
/**********categories and product listing*****************/
.top-categories.inter-sec .main-search-holder {
    margin-bottom: 30px;
}

/**********categroies and product listing end********************/
/************product detail page start*******************/
.thumbnails-slider .thumb-wraper {
    position: relative;
    width: 100%;
    padding-bottom: 67%;
    overflow: hidden;
    border-radius: 12px;
    /* aspect-ratio: 3/2; */
}

.thumbnails-slider .thumb-wraper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    width: var(--swiper-navigation-size);
    background: #fff;
    border-radius: 50%;
    border: 1px solid var(--gray);
    color: #000;
    padding: 6px;
    --swiper-navigation-sides-offset: 15px;
    --swiper-navigation-top-offset: calc(50% - calc(var(--pagination-offset, 0) / 2));
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: none !important;
}

.swiper-pagination {
    --swiper-pagination-top: auto;
    --swiper-pagination-bottom: 0;
    z-index: 2;
}

.thumb-meta-wrap {
    position: relative;
    --pagination-offset: 30px;
    margin-bottom: 0;
    position: sticky;
    top: 100px;
}

.thumb-meta-wrap .swiper-pagination-bullet {
    --swiper-pagination-bullet-inactive-color: #000;
    --swiper-pagination-bullet-inactive-opacity: 0.3;
    --swiper-pagination-bullet-size: 10px;
    --swiper-pagination-color: var(--primary);
}

.thumb-meta-wrap .return-accepted {
    border-radius: 20px;
    background-image: linear-gradient(45deg, var(--green-2), var(--green-3));
    color: #fff;
    padding: 5px 15px;
    display: inline-block;
    position: absolute;
    top: max(10px, 4%);
    left: max(10px, 2.9%);
    z-index: 9;
}

.thumb-meta-wrap .free-shipping {
    border-radius: 20px;
    background-image: linear-gradient(45deg, var(--blue-2), var(--blue-3));
    /* Change to blue gradient */
    color: #fff;
    padding: 5px 15px;
    display: inline-block;
    position: absolute;
    top: max(45px, 12%);
    /* Place it a bit lower so it doesn't overlap with Return Accepted */
    left: max(10px, 2.9%);
    z-index: 9;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.thumb-meta-wrap .add-to-fav {
    position: absolute;
    top: max(10px, 4%);
    right: max(10px, 2.9%);
    z-index: 9;
}

.thumb-meta-wrap .add-to-fav input:checked+label {
    color: #FF6243;
}

.thumb-meta-wrap .add-to-fav input:checked+label path {
    fill: currentColor;
}

.thumb-meta-wrap .add-to-fav label {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    cursor: pointer;
    color: var(--gray-dark-2);
}

.thumbnails-slider.swiper {
    padding-bottom: var(--pagination-offset);
}

.product-stats {
    background: var(--gray-dark-2);
    color: #fff;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow-sm);
    width: 100%;
}

.product-stats .item {
    width: 50%;
    border-style: solid;
    border-color: #fff;
    border-width: 0 1px 1px 0;
    padding: 12px 0;
}

.product-stats .item:nth-child(2n+0) {
    border-right: 0;
}

.product-stats .item:nth-last-child(2),
.product-stats .item:last-child {
    border-bottom: 0;
}

.product-stats .item .icon,
.product-additional-info .item .icon {
    display: block;
    margin-bottom: 10px;
}

.product-stats .item .stat-label,
.product-additional-info .item .additional-label {
    font-size: 86%;
}

.product-stats .item .stat-value,
.product-additional-info .item .additional-value {
    margin-bottom: 0;
    font-size: 120%;
}

.product-additional-info .item {
    background-color: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 20px 15px;
    box-shadow: var(--card-shadow-sm);
}

.product-additional-info .item .additional-label {
    color: var(--gray-dark-2);
}

.product-cat-badge {
    border-radius: 30px;
    background-image: var(--bg-grad);
    background-color: var(--primary);
    color: #fff;
    padding: 8px 20px 8px 8px;
    display: inline-block;
    margin-bottom: 18px;
}

.product-cat-badge .cat-thumb {
    display: inline-block;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #fff;
    margin-right: 5px;
}

.product-cat-badge .cat-thumb img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

.product-detail-wrap {
    /* overflow: hidden; */
    padding-bottom: 10px;
}

.product-detail-wrap .content-wrap {
    display: flex;
    flex-direction: column;
}

.product-detail-wrap>.container>.row {
    --bs-gutter-x: 4rem;
    --bs-gutter-y: 1rem;
}

.product-detail-wrap .product-title {
    margin-bottom: 12px;
}

.product-detail-wrap .product-price {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 36px;
}

.product-detail-wrap .description {
    margin-bottom: 20px;
}

.product-detail-wrap .imperfection {
    margin-bottom: 30px;
}

.product-info-top {
    width: 100%;
}

.author-all-offers {
    border-radius: 20px;
    background-image: var(--bg-grad);
    background-color: var(--primary);
    color: #fff;
    padding: 20px;
    margin-bottom: 22px;
    text-align: center;
    width: 100%;
    box-shadow: var(--card-shadow);
}

body .btn-white {
    background-color: #fff;
    color: #000;
}

.author-all-offers .top-stat {
    --bs-gutter-y: var(--bs-gutter-x);
    margin-bottom: 20px;
}

.author-all-offers .stat-value {
    font-size: 140%;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1;
}

.author-all-offers .cta-wrap .btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 105%;
}

.similar-products {
    padding: 60px 0;
}

.similar-products .inner-wrap {
    padding-top: 60px;
    position: relative;
}

.similar-products .inner-wrap:before {
    content: "";
    position: absolute;
    top: 0;
    left: 4%;
    right: 4%;
    height: 1px;
    background: var(--gray-dark);
}

body .buy-make-offers-cta .btn {
    width: 100%;
    font-size: 120%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--card-shadow);
}

body .btn.btn-green {
    background-color: var(--green);
    color: #fff;
}

.buy-make-offers-cta {
    margin-bottom: 30px;
    align-self: stretch;
}

body .btn-red {
    background: var(--red);
    color: #fff !important;
}

.thumb-meta-wrap .add-to-fav .btn-delete {
    padding: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    outline: none;
}

#make-offer-modal .btn-closed {
    position: absolute;
    top: 10px;
    right: 10px;
}

#make-offer-modal .modal-content {
    background: var(--primary-light);
    border-radius: 20px;
}

#make-offer-modal .modal-body {
    padding: 5% 11% 8%;
    text-align: center;
}

#make-offer-modal .modal-dialog {
    max-width: 600px;
}

#make-offer-modal .modal-dialog .sub-title {
    font-size: 110%;
}

/**********producy detail page end*********************/
/***********My Listings Start******************/

.my-listings-section {
    padding-bottom: 30px;
}

.my-listings-section .nav-pills .nav-item {
    width: auto;
    flex: 1 0 0%;
    padding: 0 5px;
}

.my-listings-section .nav-pills .nav-link {
    width: 100%;
    background-color: var(--primary-light-2);
    color: #000;
    padding: 15px;
    border-radius: 20px;
    box-shadow: var(--card-shadow-sm);
    text-align: center;
}

.my-listings-section .nav-pills .nav-link .tab-value {
    display: block;
    font-size: 120%;
}

.my-listings-section .nav-pills-wrap {
    border-bottom: 1px solid var(--gray-dark);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.my-listings-section .nav-pills {
    margin: 0px -5px 0px;
}

.my-listings-section .nav-pills .nav-link.active {
    background-color: var(--primary);
    color: #fff;
}

.my-card {
    background-color: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 20px 15px;
    box-shadow: var(--card-shadow-sm);
    /* margin-bottom: 30px; */
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    color: inherit;
    text-decoration: none;
}

.my-card .top-contents {
    display: flex;
    margin-bottom: 20px;
    width: 100%;
    align-items: flex-start;
}

.my-card .top-contents .thumbnail {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    width: max(160px, 28%);
    flex: 0 0 auto;
}

.my-card .top-contents .thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-card .top-contents .thumbnail:before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.my-card .top-contents .meta-info {
    padding-left: 20px;
    flex-grow: 1;
    text-align: left;
    padding-top: 10px;
}

.my-card .btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    padding: 10px 10px;
}

.my-card .btn.btn-white.disabled {
    background: #ddd;
}

.my-product-listings.row,
.my-favorites-listings.row {
    --bs-gutter-y: var(--bs-gutter-x);
}

.my-card .cta-wrap.row {
    --bs-gutter-x: 1rem;
    align-self: flex-end;
    flex-grow: 1;
}

.my-card .btn img {
    margin-right: 10px;
}

.my-card .top-contents .title {
    font-weight: 600;
}

.my-card .top-contents .meta-info .price {
    color: var(--primary);
    font-weight: 600;
    font-size: 22px;
}

.my-card .top-contents .status {
    color: var(--gray-dark-2);
}

.my-card .top-contents .status.status-done {
    color: var(--green);
}

.my-card .top-contents .status.status-failed {
    color: var(--red);
}

/**********My Listings End******************/
/**********Buying & Selling Messager Start******/

.messager-wrap {
    /* padding: 20px; */
    display: flex;
    min-height: 100vh;
    position: relative;
    /* overflow: hidden; */
}

.messager-wrap .left-col {
    /* background: rgb(225 225 235 / 20%); */
    width: 35%;
    flex: 0 0 35%;
    background: var(--primary-light);
    -webkit-box-shadow: 0px 6px 12px var(--Ev100, rgba(30, 10, 58, 0.04));
    box-shadow: 0px 6px 12px var(--Ev100, rgba(30, 10, 58, 0.04));
    transition: all 0.2s ease;
    font-weight: 500;
    color: var(--primary-dark);
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    position: sticky;
    z-index: 2;
    top: 0;
    min-height: 100vh;
}

.messager-left-inner {
    padding: 28px 30px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
}

.messager-wrap .right-col {
    /* padding-left: max(20px, 4%); */
    /* padding-right: max(20px, 4%); */
    flex-grow: 1;
    position: relative;
    z-index: 2;
    /* padding-bottom: 20px; */
    /* overflow: hidden; */
    background-color: var(--primary);
    width: 65%;
    flex: 0 0 65%;
}

.messager-wrap .top-logo-wrap {
    margin-bottom: 30px;
}

.messager-wrap .nav-tabs {
    border: none;
    justify-content: space-between;
    margin-bottom: 40px;
}

.messager-wrap .nav-tabs .nav-link {
    padding: 10px 0 8px 0;
    background: transparent;
    border: none;
    color: var(--gray-dark-2);
    position: relative;
    width: 100%;
    text-align: inherit;
}

.messager-wrap .nav-tabs .nav-item {
    width: 32%;
    flex: 0 0 auto;
}

.messager-wrap .nav-tabs .nav-item:nth-child(even) {
    text-align: right;
}

.messager-wrap .nav-tabs .nav-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: currentColor;
    border-radius: 4px;
}

.messager-wrap .nav-tabs .nav-link.active {
    color: var(--primary);
}

.user-msg-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 12px;
    /* box-shadow: var(--card-shadow-sm); */
    /* margin-bottom: 30px; */
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    color: inherit;
    text-decoration: none;
}

.user-msg-card .thumb {
    width: 60px;
    flex: 0 0 auto;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--primary);
}

.user-msg-card .thumb:before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.user-msg-card .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-msg-card .content-wrap {
    flex-grow: 1;
    padding-left: 20px;
    padding-right: 25px;
}

.user-msg-card .content-wrap .name {
    margin-bottom: 4px;
    font-size: inherit;
    font-weight: 500;
}

.user-msg-card .content-wrap .last-msg {
    margin: 0;
    opacity: 0.6;
}

.user-msg-card:not(.active) .content-wrap .last-msg.new {
    color: var(--primary);
    font-weight: 500;
    opacity: 1;
}

.user-msg-card.highlight:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
    background-color: var(--green);
    border-radius: 50%;
    transform: translateY(-50%);
}

.user-msg-card:hover {
    background-color: var(--primary-light-2);
    box-shadow: var(--card-shadow-sm);
}

.user-msg-card.active {
    background-color: var(--primary);
    color: #fff;
}

.top-product-info {
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    padding-left: var(--padding-x);
    padding-right: var(--padding-x);
    display: flex;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    box-shadow: -1px 1px 4px 0px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.messages-wrap {
    --padding-x: max(20px, 4%);
    --padding-chat-x: max(20px, 4%);
    display: flex;
    flex-direction: column;
    height: 100vh;
    position: sticky;
    top: 0;
    background-color: var(--primary);
    overflow: hidden;
}

.top-product-info .messages-back {
    padding: 10px;
    border-radius: 40px;
}

.top-product-info .thumb {
    width: 60px;
    flex: 0 0 auto;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    border: 2px solid var(--primary);
}

.top-product-info .product-info {
    display: flex;
    align-items: center;
}

.top-product-info .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-product-info .thumb:before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.top-product-info .content-wrap {
    flex-grow: 1;
    padding-left: 15px;
    padding-right: 15px;
}

.top-product-info .content-wrap .price {
    margin: 0;
    color: var(--primary);
    font-weight: 500;
}

.top-product-info .content-wrap .name {
    margin-bottom: 4px;
    font-size: inherit;
    font-weight: 500;
}

.top-product-info .back-btn {
    margin-right: 30px;
}

.chatting-box {
    border-radius: 0 0 20px 20px;
    padding-left: var(--padding-chat-x);
    padding-right: var(--padding-chat-x);
    display: flex;
    padding-top: 30px;
    padding-bottom: 30px;
    height: 100px;
    flex-grow: 1;
    flex-direction: column;
    align-items: flex-end;
    overflow: auto;
    scrollbar-width: none;
}

.btn-none {
    padding: 0;
    background: transparent;
    border: none;
}

.chatting-box .chat-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--card-shadow-sm);
    margin-bottom: 10px;
    padding: 20px;
    width: 100%;
    max-width: 400px;
}

.messages-wrap .make-offer-cta {
    padding-left: var(--padding-x);
    padding-right: var(--padding-x);
    padding-top: 20px;
    padding-bottom: 20px;
}

.messages-wrap .make-offer-cta .offer-form-wrap {
    position: relative;
    width: 400px;
    max-width: 60%;
    margin: 0 auto;
}

.messages-wrap .make-offer-cta .offer-form-wrap input {
    padding: 15px 30px;
    font-size: 24px;
    border-radius: 50px;
    padding-right: 80px;
}

.messages-wrap .make-offer-cta .offer-form-wrap button.submit {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    border-radius: 50%;
}

.messages-wrap .make-offer-cta .offer-form-wrap button.submit img {
    width: 42px;
    height: 42px;
}

.chatting-box .chat-card .offer-price-value {
    font-size: 26px;
    font-weight: 600;
    max-width: 100%;
    overflow: hidden;
}

.chatting-box .chat-card .price-cta-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.chatting-box .chat-card .price-cta-wrap .cta {
    background: var(--green);
    border: none;
    color: #fff;
    border-radius: 20px;
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
}

.chatting-box .chat-card .price-cta-wrap .cta img {
    margin-right: 5px;
    width: 18px;
    height: 18px;
}

.chatting-box .chat-card .chat-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.chatting-box .chat-card .chat-meta .prefix {
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 50%;
    background-color: var(--yellow);
    text-align: center;
    color: #fff;
}

.chatting-box .chat-card.chat-other .chat-meta .prefix {
    background-color: var(--primary);
}

.chatting-box .chat-card .chat-meta .date {
    font-size: 12px;
}

.chatting-box .chat-card.chat-other {
    align-self: flex-start;
}

/**********Buying & Selling Messager End********/
/***Settings Page Start*****/
.settings-menu-wrap .inner-section {
    margin-bottom: 20px;
}

.settings-menu-wrap .heading {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.settings-menu-wrap .heading img {
    margin-right: 10px;
}

.settings-menu-wrap .menu-wrap .btn-menu {
    background: #fff;
    width: 100%;
    text-align: left;
    border: none;
    box-shadow: var(--card-shadow);
    margin-bottom: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='30' d='M184 112l144 144-144 144'/%3E%3C/svg%3E");
    background-position: calc(100% - 15px) 50%;
    background-repeat: no-repeat;
    background-size: 20px;
}

.settings-menu-wrap .menu-wrap .btn-menu:hover {
    background-color: var(--primary-light-2);
}

.settings-menu-wrap .inner-section-bottom {
    margin-top: auto;
}

.settings-menu-wrap {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.messager-wrap.settings-page .left-col {
    padding: 0;
    display: block;
    position: unset;
    min-height: unset;
}

.settings-menu-wrap .inner-section-bottom .btn-logout {
    text-align: center;
    width: 100%;
    background-color: var(--red);
    color: #fff;
    text-transform: uppercase;
    line-height: 1.2;
}

.settings-page .right-col {
    background-color: #fff;
}

.messager-wrap .tab-page {
    /* display: none; */
}

.messager-wrap .tab-page.active {
    /* display: block; */
}

.messager-wrap .tab-page .top-head {
    display: flex;
    margin-bottom: 30px;
}

.messager-wrap .tab-page .top-head .back-btn {
    margin-right: 30px;
}

.messager-wrap .tab-page .top-head .messages-back {
    padding: 10px;
    border-radius: 40px;
}

.messager-wrap .tab-page .top-head .page-title {
    margin: 20px auto 20px;
    font-size: 18px;
}

.my-profile-content {
    text-align: center;
}

.my-profile-content .user-thumb {
    padding: 4px;
    width: 110px;
    margin: 0 auto 20px;
    max-width: 100%;
    border-radius: 50%;
    border: 1px solid var(--gray-dark);
}

.my-profile-content .user-thumb .thumb-inner {
    padding-bottom: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.my-profile-content .user-thumb .thumb-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-profile-content .user-info-box {
    background-image: var(--bg-grad);
    border-radius: 20px;
    padding: 40px 20px;
    color: #fff;
    width: 500px;
    margin: 0 auto 30px;
    max-width: 100%;
}

.my-profile-content .user-info-box .btn-edit-profile {
    background: #fff;
    padding: 8px 20px;
}

.messager-wrap .tab-page-inner {
    padding: 28px 30px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.messager-wrap .tab-page-inner .content-wrap {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.messager-wrap .tab-page-inner .my-profile-content.content-wrap {
    flex-grow: unset;
}

.input-pass-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    align-items: center;
}

.input-pass-wrap .toggle-pass {
    cursor: pointer;
}

.input-pass-wrap .pass-view {
    display: none;
}

.input-pass-wrap.active .pass-view {
    display: block;
}

.input-pass-wrap.active .pass-hide {
    display: none;
}

.messager-wrap .tab-page-inner .submit-wrap {
    margin-top: auto;
    padding-top: 20px;
}

.messager-wrap .tab-page-inner .submit-wrap button {
    width: 100%;
}

.messager-wrap .tab-page-inner form {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.messager-wrap .tab-page-inner form textarea {
    height: 150px;
}

.messager-wrap .my-payments-wrap {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    justify-content: flex-start !important;
}

.messager-wrap .wallet-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--card-shadow);
    height: 100%;
    margin-bottom: 40px;
    background-image: url(../images/payment_design.png);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top left;
}

.messager-wrap .wallet-card .top-head {
    justify-content: space-between;
    align-items: center;
}

.messager-wrap .wallet-card .account-no {
    font-size: 18px;
}

.messager-wrap .wallet-card .account-no .no-x {
    font-size: 130%;
}

.wallet-card .bottom-contents {
    text-align: right;
}

.wallet-card .bottom-contents .amount {
    font-size: 24px;
    color: var(--primary);
    font-weight: 600;
}

.wallet-card .bottom-contents .amount-label {
    margin: 0;
}

.payments-cta .btn {
    width: 100%;
    text-align: left;
    border: none;
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
}

.payments-cta .btn:hover {
    background-color: var(--primary-light);
}

.modal-confirm .modal-content {
    background: var(--primary-light);
    text-align: center;
    border-radius: 20px;
}

.modal-confirm .modal-content .btn-closed {
    position: absolute;
    top: 10px;
    right: 10px;
}

.modal-confirm .modal-body {
    padding: 7% 12% 8%;
    text-align: center;
}

.modal-confirm .modal-confirm-cta {
    display: flex;
    flex-wrap: wrap-reverse;
    justify-content: center;
}

.messager-wrap .tab-page-inner .my-orders-listing.content-wrap {
    justify-content: flex-start;
}

.my-order-card {
    background-color: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 20px;
    box-shadow: var(--card-shadow);
    /* margin-bottom: 30px; */
    height: 100%;
    display: flex;
    margin-bottom: 16px;
    align-items: center;
    color: inherit;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}

.my-order-card:hover {
    color: inherit;
    box-shadow: -1px 1px 10px 2px var(--gray);
}

.my-order-card .thumb {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    width: max(70px, 16%);
    flex: 0 0 auto;
}

.my-order-card .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-order-card .thumb:before {
    content: "";
    display: block;
    padding-bottom: 70%;
}

.my-order-card .inner-content-wrap {
    padding-left: 20px;
    flex-grow: 1;
    text-align: left;
    padding-right: 10px;
}

.my-order-card .inner-content-wrap .name {
    font-size: 18px;
    font-weight: 500;
}

.my-order-card .inner-content-wrap .status {
    color: var(--yellow);
    font-size: 16px;
    margin-bottom: 0;
}

.status.status-yellow {
    color: var(--yellow) !important;
}

.status.status-green {
    color: var(--green) !important;
}

.status.status-red {
    color: var(--red) !important;
}

.my-order-card .view-cta {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border: 1px solid var(--gray);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.my-order-card .view-cta svg {
    width: 70%;
}

.tab-inner-2-btn-wrap .tab-inner-2-back {
    padding: 10px;
    border-radius: 40px;
}

.messager-wrap .tab-page-inner.tab-inner-2 {
    display: none;
}

.messager-wrap .tab-page-inner.tab-inner-2[style*="display: block"] {
    display: flex !important;
}

/***Settings Page End*******/
/******My Favorites Listing**********/
.my-favorites-listings .my-card .top-contents .price {
    color: inherit;
}

.my-favorites-listings .my-card .top-contents .title {
    font-weight: 400;
}

.my-favorites-listings .my-card .top-contents .meta-info {
    padding-right: 40px;
    position: relative;
}

.my-favorites-listings .my-card .delete-fav {
    padding: 0;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    outline: none;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: none;
}

.my-favorites-listings .my-card .delete-fav img {
    margin: 0;
}

/*****My Favourites Listing************/
/*******Notifications Start**************/
.notifications-wrapper .item {
    background: var(--white);
    display: inline-block;
    width: 100%;
    border-radius: 14px;
    padding: 20px 25px 20px;
    color: inherit;
    box-shadow: -1px 1px 6px 0px var(--gray);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.notifications-wrapper .item .thumb {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border: 0;
    background-image: var(--bg-grad);
    background-repeat: no-repeat;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    align-self: flex-start;
}

.notifications-wrapper .item .content-wrap {
    flex: 1 0 0%;
    padding: 0 25px;
}

.notifications-wrapper .item .content-wrap .date {
    margin-bottom: 0;
    color: var(--primary);
}

.notifications-wrapper .item p {
    margin-bottom: 8px;
}

.notifications-wrapper .item .content-wrap .title {
    font-weight: 600;
    font-size: 16px;
}

.notifications-wrapper .sort-heading {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 16px;
    margin-top: 50px;
    color: var(--gray-dark-2);
}

.notify-counts .count {
    background: var(--red);
    color: #fff !important;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
}

.notifications-wrapper .item.new .title:after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    margin-left: 10px;
    vertical-align: text-top;
    margin-top: 6px;
}

/*******Notifications End*****************/
/********Checkout Page Start*************/
.checkout-page .top-heading,
.order-details-inner .top-heading {
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.checkout-page .top-heading .icon-wrap,
.order-details-inner .top-heading .icon-wrap {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 8px;
}

.checkout-page .top-heading .icon-wrap img,
.order-details-inner .top-heading .icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info-card {
    background-color: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 20px;
    box-shadow: var(--card-shadow);
    /* margin-bottom: 30px; */
    height: 100%;
    display: flex;
    margin-bottom: 16px;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.product-info-card .thumb {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    width: max(70px, 21%);
    max-width: 150px;
    flex: 0 0 auto;
}

.product-info-card .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-card .thumb:before {
    content: "";
    display: block;
    padding-bottom: 80%;
}

.product-info-card .content-wrap {
    padding-left: 20px;
    flex-grow: 1;
    text-align: left;
}

.product-info-card .content-wrap h6 {
    font-weight: 600;
    font-size: 115%;
}

.product-info-card .content-wrap .excerpt p:last-child {
    margin-bottom: 0;
}

.product-info,
.price-details-wrap,
.delivery-address,
.return-policy,
.shipping-details {
    margin-bottom: 40px;
}

.price-details-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--card-shadow);
    transition: 0.15s ease-in-out;
    transition-property: transform, box-shadow;
    padding: 16px 20px;
    margin-bottom: 30px;
    color: inherit;
    text-decoration: none;
}

.price-details-card>p:last-child {
    margin-bottom: 0;
}

.price-details-card table {
    table-layout: fixed;
    width: 100%;
}

.price-details-card td:last-child {
    text-align: right;
    font-weight: 600;
}

.price-details-card td {
    padding: 8px 0;
}

.price-details-card tfoot td {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
}

.delivery-form-wrap input {
    border-radius: 50px;
    padding: 12px 20px;
}

.checkout-page>.container>.row>* {
    position: relative;
}

.checkout header.header {
    border-bottom: 1px solid #dedede;
}

.checkout-page .pay-now-wrap .btn {
    font-size: 16px;
    padding: 14px 20px;
}

.checkout-tooltip .tooltip-inner {
    padding: 10px 4px;
    max-width: 160px;
}

.checkout-page .select2-container .select2-dropdown {
    width: 100% !important;
}

body .checkout-page .input-wrap .select2-selection {
    border-radius: 50px !important;
    box-shadow: -1px 1px 4px 0px rgba(0, 0, 0, 0.5);
    padding: 1px 10px;
}

/********Checkout Page End***************/
/*Media Query**/
@media(min-width: 992px) {
    .top-product-info .back-btn {
        display: none;
    }

    .messager-wrap .tab-page .top-head .back-btn {
        display: none;
    }

    .settings-menu-wrap .menu-wrap .btn-menu.active {
        background-color: var(--primary);
        color: #fff;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='30' d='M184 112l144 144-144 144'/%3E%3C/svg%3E");
    }

    .checkout-page>.container>.row>* {
        padding-top: 40px;
    }

    .checkout-page .left-col {
        border-right: 1px solid #dedede;
    }

    .checkout-page .right-col:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 50vw;
        background: var(--primary-light);
        z-index: -1;
    }

    .checkout-page>.container>.row {
        --bs-gutter-x: 5rem;
        min-height: calc(100vh - 90px);
    }

    .checkout header.header {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        padding: 20px 0;
    }

    .checkout .checkout-page {
        padding-top: 0 !important;
        overflow: hidden;
    }

    .tab-inner-2 .top-head {
        padding-right: 45px;
    }
}

@media(min-width:768px) {
    .container {
        max-width: 90%;
        width: 1600px;
    }

    body.no-grad {
        background-color: #fff;
        ;
    }

    .add-listing-wrap .top-head .back-sm-wrap,
    .add-listing-wrap .top-head .steps-count-sm {
        display: none;
    }

    body .btn.btn-outline:hover {
        background: var(--gray);
    }

    body .btn.btn-primary-clr:hover {
        background-color: #005899;
    }

    .my-favorites-listings .my-card .top-contents .thumbnail {
        width: max(130px, 26%);
    }
}

@media(max-width:1199px) {
    .hero-search.js-scrolled {
        max-width: 34%;
        width: min(500px, 30vw);
    }

    .messager-wrap .left-col {
        width: 40%;
        flex: 0 0 40%;
    }

    .messager-wrap .right-col {
        width: 60%;
        flex: 0 0 60%;
    }
}

@media(max-width:991px) {

    .authentication-page .authentication-col:first-child,
    .authentication-page .authentication-col:last-child {
        width: 100%;
        flex: 0 0 100%;
    }

    .authentication-page .authentication-col:first-child {
        display: none;
    }

    .authentication-page .authntication-thumb {
        display: none;
    }

    .authentication-page .left-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .main-search-holder {
        padding: 0 0;
        height: auto;
        margin-bottom: 0;
    }

    .top-categories ul.cats-list li {
        width: 25%;
    }

    .add-listing-wrap .left-col {
        width: 30%;
        flex: 0 0 30%;
    }

    .product-detail-wrap .imperfection {
        background-color: #fff;
        border-radius: 12px;
        padding: 20px 20px;
        box-shadow: var(--card-shadow-sm);
    }

    .buy-make-offers-cta {
        /* order: -10; */
        --bs-gutter-x: 0.8rem;
        margin-bottom: 20px;
    }

    .messages-wrap {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        transform: translateX(100%);
        opacity: 0;
        transition: all 0.2s ease-in-out;
    }

    .messages-wrap.open {
        transform: translateX(0);
        opacity: 1;
    }

    .messager-wrap .left-col {
        width: 100%;
        flex: 0 0 100%;
    }

    .messager-wrap {
        overflow: hidden;
    }

    .messager-wrap .tab-page {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        transform: translateX(100%);
        opacity: 0;
        background: #fff;
        transition: all 0.2s ease-in-out;
        overflow: auto;
        height: 100%;
    }

    .messager-wrap .tab-page.open {
        transform: translateX(0);
        opacity: 1;
        display: block !important;
    }

    .messager-wrap .tab-page .top-head .page-title {
        padding-right: 48px;
    }

    body.checkout {
        background: var(--primary-light);
    }
}

@media(max-width: 767px) {
    /* body {
        font-size: 14px;
    } */

    h1 {
        font-size: 30px;
    }

    h2,
    .h2-font {
        font-size: 20px;
    }

    h3,
    .h3-font {
        font-size: 22px;
    }

    h4,
    .h4-font {
        font-size: 20px;
    }

    h5,
    .h5-font {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    body:not(.auth-page, .no-grad) {
        background-size: 100% 400px;
    }

    header.header {
        padding: 20px 0;
    }

    .authentication-page {
        padding: 0;
        background: #fff;
    }

    .authentication-inner-wrapper {
        border-radius: 0;
        padding: 20px 20px;
        align-items: self-start;
        background-color: var(--white);
    }

    .input-wrapper input {
        padding: 10px 15px;
    }

    .input-wrapper label {
        font-size: 90%;
    }

    .authentication-page .authentication-form .sub-heading p {
        margin: 0;
    }

    .pass-toggle-wrap .pass-toggle {
        top: 8px;
    }

    .authentication-inner-wrapper .forgot-pass {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .authentication-page .authentication-form {
        margin: 0 0 auto;
        padding-top: 15px;
    }

    .authentication-page .heading-wrap h1 {
        font-size: 20px;
    }

    .authentication-anchor {
        padding: 20px 20px;
    }

    .authentication-anchor ul.auth-cta {
        flex-wrap: wrap;
    }

    .authentication-anchor ul.auth-cta li.auth-cta-item {
        margin-bottom: 20px;
    }

    .authentication-page .authentication-form .sub-heading {
        color: #000;
    }

    .authentication-form ul.nav.nav-pills li.nav-item {
        width: 100%;
        flex: 0 0 100%;
    }

    .authentication-form.sm-btn-btm {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .authentication-form.sm-btn-btm form {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .authentication-page .otp-inputs input {
        padding: 10px 10px;
    }

    .authentication-form.sm-btn-btm form .submit-wrap {
        margin-top: auto;
        margin-bottom: 0;
    }

    .authentication-form.sm-btn-btm form .submit-wrap button {
        margin-bottom: 0;
    }

    .header .menu-cta-wrapper a.btn,
    .header .menu-cta-wrapper button.btn {
        padding: 5px 10px;
        /* width: 38px; */
        height: 38px;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .header .menu-cta-wrapper .btn.btn-sm-text {
        height: auto;
        padding: 8px 12px;
        font-size: 12px;
    }

    .header .menu-cta-wrapper a.btn svg,
    .header .menu-cta-wrapper a.btn img,
    .header .menu-cta-wrapper button.btn svg {
        width: 18px;
        height: 18px;
        margin: 0 !important;
    }

    .header .menu-cta-wrapper .btn-outline {
        margin-left: 8px;
    }

    .logo-wrapper {
        width: 100px;
    }

    .add-listing-wrap .left-col {
        display: none;
    }

    .header+.main-content>*:first-child {
        padding-top: 100px;
    }

    .hero-banner .sub-title {
        margin-bottom: 30px;
    }

    .hero-search .search-inner .search-prefix img {
        width: 22px;
        height: 22px;
    }

    .hero-search .search-inner button img {
        width: 20px;
        height: 20px;
    }

    .hero-search .search-inner .input-group input[type="search"] {
        height: auto;
        font-size: 14px;
        padding: 8px;
    }

    .hero-search {
        height: 56px;
        padding: 9px;
    }

    .hero-search .search-inner .search-prefix {
        padding: 0 10px 0 8px;
        border-right-width: 1px;
    }

    body .btn.btn-outline {
        border-width: 1px;
    }

    .hero-search .search-inner .search-submit .btn {
        padding: 0 0;
        width: 38px;
    }

    .hero-search .search-inner {
        --col-gap: 6px;
    }

    .inter-sec {
        padding: 20px 0;
    }

    .sec-top-head {
        margin-bottom: 20px;
    }

    .sm-w-20 {
        width: 20px;
        height: 20px;
    }

    .sm-w-25 {
        width: 25px;
        height: 25px;
    }

    .top-categories ul.cats-list li {
        width: 115px;
        scroll-snap-align: start;
        flex: 0 0 auto;
        padding: 10px 4px 10px 12px;
    }

    .top-categories ul.cats-list:not(.cat-6) {
        flex-wrap: nowrap;
        overflow: auto;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        /* padding: 0 12px; */
    }

    .top-categories ul.cats-list a {
        padding: 15px 8px 18px;
        font-size: 12px;
        line-height: 1.2;
        border-radius: 10px;
    }

    .top-categories ul.cats-list a .icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .top-categories ul.cats-list a .icon-wrapper img {
        width: 30px;
        height: 30px;
        object-fit: contain;
    }

    .top-categories ul.cats-list li:last-child {
        padding-right: 12px;
    }

    .product-card .thumbnail-meta {
        padding-bottom: 60%;
    }

    .product-card .cats .item {
        font-size: 10px;
        padding: 2px 8px;
    }

    .product-card .cats {
        padding: 5px 0;
    }

    .product-card {
        border-radius: 10px;
    }

    .products-listing .row {
        --bs-gutter-y: 1rem;
        --bs-gutter-x: 1rem;
    }

    .products-listing .content-wrap {
        padding: 10px 10px 10px;
    }

    .products-listing .content-wrap .title {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .products-listing .content-wrap .price {
        font-size: 16px;
    }

    .products-listing .content-wrap .cta-wrap .btn-ico img {
        width: 22px;
        height: 22px;
        object-fit: contain;
    }

    .products-listing .content-wrap .cta-wrap .btn-ico {
        padding: 4px;
    }

    .drawer-modal .modal-dialog .modal-content {
        border-radius: 0px;
    }

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

    footer.footer .logo-wrapper {
        margin-bottom: 25px;
        width: 100px;
    }

    footer.footer .footer-main {
        padding: 30px 0 40px;
    }

    footer.footer .footer-menu {
        margin-bottom: 30px;
    }

    .footer-bottom ul.bottom-menu {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px;
        row-gap: 10px;
    }

    .footer-bottom .copyright {
        text-align: center;
        width: 100%;
    }

    .dropdown ul.dropdown-list {
        padding: 6px;
    }

    .dropdown {
        min-width: 10rem;
    }

    .dropdown ul.dropdown-list .dropdown-item a .icon,
    .dropdown ul.dropdown-list .dropdown-item button .icon {
        width: 15px;
        margin-right: 4px;
    }

    .dropdown ul.dropdown-list .dropdown-item a,
    .dropdown ul.dropdown-list .dropdown-item button {
        font-size: 12px;
        line-height: 1.2;
        padding: 7px 8px;
    }

    .forms-listing .actions ul li:first-child {
        display: none;
    }

    .forms-listing .actions ul li {
        width: 100%;
    }

    .forms-listing .actions ul li a {
        width: 100%;
    }

    .add-listing-wrap .top-head p.text-light-1 {
        display: none;
    }

    .add-listing-wrap .top-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .upload-images-wrap {
        padding: 10px 20px;
    }

    .top-categories ul.cat-6 li {
        width: 33.33%;
        padding: 0 8px 16px;
    }

    .top-categories ul.cat-6 {
        margin: 0 -8px;
    }

    .drop-zone-overlay .preview-item {
        flex: 0 0 33.33%;
    }

    body .btn.btn-outline:active {
        background: var(--gray);
    }

    body .btn.btn-primary-clr:active {
        background-color: #005899;
    }

    .thumb-meta-wrap .return-accepted {
        font-size: 90%;
        padding: 5px 12px;
    }

    .thumb-meta-wrap .free-shipping {
        font-size: 90%;
        padding: 5px 12px;
    }

    .product-detail-wrap>.container>.row {
        --bs-gutter-x: 1rem;
    }

    .product-detail-wrap .product-price {
        font-size: 30px;
    }

    .thumb-meta-wrap .add-to-fav .btn-delete {
        width: 35px;
        height: 35px;
    }

    .thumb-meta-wrap .add-to-fav .btn-delete img {
        width: 20px;
        height: 20px;
    }

    .thumb-meta-wrap .add-to-fav label svg {
        width: 22px;
        height: 22px;
    }

    .product-cat-badge {
        font-size: 12px;
        padding: 6px 15px 6px 6px;
    }

    .thumb-meta-wrap .return-accepted img {
        width: 18px;
        height: 18px;
        margin-right: 4px !important;
    }

    .thumb-meta-wrap .free-shipping img {
        width: 18px;
        height: 18px;
        margin-right: 4px !important;
    }

    .thumbnails-slider .thumb-wraper {
        padding-bottom: 72%;
    }

    .swiper-button-next,
    .swiper-button-prev {
        --swiper-navigation-size: 35px;
        padding: 4px;
        --swiper-navigation-sides-offset: 8px;
    }

    .thumb-meta-wrap .add-to-fav label {
        width: 35px;
        height: 35px;
    }

    body .buy-make-offers-cta .btn {
        font-size: 100%;
        padding: 12px 5px;
    }

    body .buy-make-offers-cta .btn img {
        width: 20px;
        height: 20px;
        margin-right: 5px !important;
    }

    .thumb-meta-wrap {
        margin-bottom: 10px;
    }

    .author-all-offers {
        padding: 20px 15px;
    }

    .author-all-offers .stat-value {
        font-size: 110%;
        margin-bottom: 5px;
    }

    .author-all-offers .stat-label {
        font-size: 85%;
    }

    .author-all-offers .top-stat {
        margin-bottom: 20px;
    }

    .author-all-offers .cta-wrap .btn {
        font-size: 100%;
        padding: 5px 10px;
    }

    .product-detail-wrap .imperfection>h4 {
        font-size: 16px;
    }

    .product-stats .item .icon img,
    .product-additional-info .item .icon img {
        width: 30px;
        height: 30px;
    }

    .product-stats .item .stat-value,
    .product-additional-info .item .additional-value {
        font-size: 100%;
    }

    .product-additional-info.row {
        --bs-gutter-x: 0.8rem;
    }

    .product-additional-info .item {
        padding: 20px 10px;
    }

    .similar-products {
        padding: 40px 0;
    }

    .product-stats,
    .product-detail-wrap .imperfection {
        padding: 10px 15px;
    }

    .similar-products .inner-wrap {
        padding-top: 40px;
    }

    .product-stats,
    .product-detail-wrap .imperfection,
    .product-detail-wrap .description {
        margin-bottom: 20px;
    }

    .my-listings-section .nav-pills .nav-link {
        padding: 6px 10px;
        border-radius: 10px;
    }

    .my-card {
        border-radius: 10px;
        padding: 12px;
    }

    .my-card .top-contents .thumbnail {
        border-radius: 12px;
        width: max(100px, 25%);
    }

    .my-card .top-contents .meta-info {
        padding-left: 12px;
        padding-top: 4px;
    }

    .my-card .top-contents .meta-info .price {
        font-size: 18px;
        line-height: 1;
        margin-bottom: 10px;
    }

    .my-card .btn {
        padding: 6px 10px;
    }

    .my-card .btn img {
        width: 20px;
        height: 20px;
        margin-right: 6px;
    }

    .my-card .cta-wrap.row {
        --bs-gutter-x: 0.6rem;
    }

    .my-listings-section .nav-pills-wrap {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    #make-offer-modal .modal-body {
        padding: 8% 8% 10%;
    }

    #make-offer-modal .btn-closed {
        top: 0;
        right: 0;
    }

    .messager-wrap .left-col {
        padding-left: var(--bs-gutter-x, .75rem);
        padding-right: var(--bs-gutter-x, .75rem);
        padding-top: 15px;
    }

    .user-msg-card {
        padding: 10px;
    }

    .user-msg-card .thumb,
    .top-product-info .thumb {
        width: 50px;
    }

    .user-msg-card .content-wrap {
        padding-left: 15px;
    }

    .messages-wrap {
        --padding-x: var(--bs-gutter-x, .75rem);
    }

    .messages-wrap {
        --padding-x: var(--bs-gutter-x, .75rem);
    }

    .top-product-info {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .top-product-info .messages-back {
        width: 38px;
        height: 38px;
        padding: 8px;
    }

    .top-product-info .back-btn {
        margin-right: 20px;
    }

    .chatting-box .chat-card {
        padding: 15px;
        font-size: 12px;
    }

    .chatting-box .chat-card .offer-price-value {
        font-size: 22px;
    }

    .chatting-box .chat-card .price-cta-wrap {
        margin-bottom: 10px;
    }

    .chatting-box .chat-card .price-cta-wrap .cta {
        font-size: 12px;
        padding: 4px 12px;
    }

    .messages-wrap .make-offer-cta .offer-form-wrap input {
        font-size: 22px;
        padding: 10px 60px 10px 20px;
    }

    .chatting-box .chat-card .price-cta-wrap .cta img {
        width: 15px;
        height: 15px;
    }

    .messages-wrap .make-offer-cta {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .messager-left-inner {
        padding: 15px var(--bs-gutter-x, .75rem);
    }

    .settings-menu-wrap .menu-wrap .btn-menu {
        font-size: 12px;
        padding: 8px 20px;
    }

    .messager-wrap .tab-page-inner {
        padding: 15px var(--bs-gutter-x, .75rem);
    }

    .messager-wrap .tab-page .top-head .messages-back,
    .messager-wrap .tab-page .top-head .tab-inner-2-back {
        width: 38px;
        height: 38px;
        padding: 8px;
    }

    .messager-wrap .tab-page .top-head .page-title {
        margin: 10px auto;
        font-size: 16px;
        padding-right: 48px;
    }

    .messager-wrap .tab-page .top-head .back-btn {
        margin-right: 10px;
    }

    .input-pass-wrap .toggle-pass img {
        width: 22px;
        height: 22px;
    }

    .my-favorites-listings .my-card .top-contents .thumbnail {
        width: max(80px, 22%);
    }

    .my-favorites-listings .my-card .delete-fav {
        width: 30px;
        height: 30px;
        border-radius: 4px;
    }

    .my-favorites-listings .my-card .top-contents .title {
        font-size: 16px;
    }

    .notify-counts .count {
        width: 40px;
        height: 40px;
    }

    .notifications-wrapper .sort-heading {
        margin-top: 30px;
        font-size: 16px;
    }

    .notifications-wrapper .item {
        padding: 15px;
        flex-wrap: wrap;
    }

    .notifications-wrapper .item .thumb {
        width: 40px;
        height: 40px;
    }

    .notifications-wrapper .item .content-wrap {
        padding: 0 0 0 15px;
    }

    .notifications-wrapper .item .description {
        font-size: 90%;
    }

    .notifications-wrapper .item .content-wrap .title {
        font-size: inherit;
    }

    .notifications-wrapper .item.new .title:after {
        margin-top: 4px;
    }

    .notifications-wrapper .item .cta-action .btn {
        font-size: 90%;
        padding: 8px 30px;
    }

    .notifications-wrapper .item .cta-action {
        width: 100%;
        padding-left: 60px;
        padding-top: 12px;
    }

    .product-info-card {
        padding: 10px;
        border-radius: 10px;
        font-size: 12px;
        line-height: 1.4;
    }

    .product-info-card .thumb {
        border-radius: 8px;
    }

    .drawer-right-modal .modal-dialog .modal-content {
        border-radius: 0;
        padding: 10px 12px;
    }

    .product-info-card .content-wrap {
        padding-left: 10px;
    }

    .delivery-form-wrap input {
        padding: 10px 20px;
    }

    .delivery-form-wrap .input-wrap {
        margin-bottom: 12px;
    }

    .delivery-form-wrap .row {
        --bs-gutter-x: 12px;
    }

    .price-details-card {
        padding: 10px 18px;
        border-radius: 10px;
    }

    .price-details-card td {
        padding: 6px 0;
    }

    .return-policy {
        font-size: 12px;
    }

    .product-info,
    .price-details-wrap,
    .delivery-address,
    .return-policy,
    .shipping-details {
        margin-bottom: 30px;
    }

    .my-order-card {
        padding: 10px;
        border-radius: 10px;
        font-size: 12px;
        line-height: 1.4;
    }

    .my-order-card .thumb {
        border-radius: 8px;
    }

    .my-order-card .inner-content-wrap .name {
        font-size: 16px;
    }

    .my-order-card .inner-content-wrap .status {
        font-size: 14px;
    }

    .my-order-card .view-cta {
        width: 30px;
        height: 30px;
    }

    .add-listing-wrap .input-wrap,
    .input-wrap,
    .radios-wrap {
        margin-bottom: 16px;
    }

    .input-wrap label,
    .radios-wrap label {
        margin-bottom: 6px;
    }

    .add-listing-wrap .step .row {
        --bs-gutter-x: 16px;
    }

    .drop-zone-overlay .preview-item .card-wrap {
        height: 80px;
    }

    body .checkout-page .input-wrap .select2-selection {
        padding: 0 10px;
    }
}

@media(max-width:520px) {}

@media(max-width:320px) {}

/**Media Query End*/