:root{
    --clr-primary: #000000;
    --clr-secondary: #000000;
    --clr-text: #000000;
    --clr-bg-white: #ffffff;
    --clr-white: #ffffff;
    --clr-bg: #f5f5f5;
    --clr-body-bg: #f5f5f5;
    --clr-gray-light: #f5f5f5;
    --font-family: "Montserrat", sans-serif;
    --logo-font: "Montserrat", sans-serif;
}
html,body{
    scroll-behavior: smooth;
}
*,*::before,*::after{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
a,a:hover{
    text-decoration: none;
}
ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
img{
    max-width: 100%;
    height: auto;
}
body{
    font-family: var(--font-family);
    box-sizing: border-box;
    font-size: 1rem;
    font-weight: 500;
    padding: 0;
    margin: 0;
}
body.light-theme{
    background: var(--clr-body-bg);
}
.v-middle{
    vertical-align: middle;
}
.position-relative{
    position: relative;
}
.pointer{
    cursor: pointer;
}
/* ---- END OF BASIC STRUCTURE ---- */
/* ---- PAGE STRUCTURE ---- */
.max-width-1350{
    max-width: 1350px;
    margin: 0 auto;
}
.header-wrapper {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 10px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #dfdddd;
    z-index: 999;
    background: #ffffff;
}

.header-left {
    width: 260px;
}

.header-right {
    width: Calc(100% - 260px);
}

a.logo-area img {
    width: 35px;
}

.companyname {
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-text);
}
.cmn {font-size: 14px;color: var(--clr-text);font-weight: 600;display: flex;align-items: center;gap: 5px;}

.header-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-right-wrapper {
    width: 100%;
    justify-content: flex-end;
    display: flex;
}

.cmn:hover {
    color: var(--clr-primary);
}

.cmn i {
    font-size: 17px;
}

a.logbtn {
    background: var(--clr-primary);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 5px;
}

a.logbtn:hover {
    background: var(--clr-primary);
    color: #ffffff;
}

li.header-menu-list ul a {
    font-size: 13px;
    font-weight: 600;
}

/* Login  */

.login-signup-modal.show {
    display: block;
}

.login-signup-modal {
    position: fixed;
    display: none;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.login-signup-modal-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmn-log-sign-box {
    /* width: 100%; */
    /* background: #ffffff; */
}



.log-box-header {
    margin: 20px 0 25px 0;
}

.modal-heading {
    font-weight: 700;
    font-size: 21px;
}

.close-login-signup-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ebe8e8;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}

.toggle-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
}

.toggle-eye:hover {
    color: var(--clr-primary);
}
.custom-btn.log-btn-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.custom-btn.log-btn-area .btn {
    width: 100%;
}

.custom-btn .btn {
    font-weight: 600;
    padding: 6px 10px;
    border: 1px solid transparent;
    font-size: 14px;
}

.custom-btn .btn.btn-main {
    background: var(--clr-primary);
    color: #ffffff;
}

.custom-btn .btn.btn-secondary-outline {
    border-color: #bdb9b9;
    color: #676565;
}


.custom-btn .btn.btn-secondary-outline:hover {
    color: var(--clr-primary);
    border-color: var(--clr-primary);
}
.forgot-password {
    text-align: right;
    font-size: 14px;
    color: var(--clr-text);
    font-weight: 500;
}
.login-signup-modal-wrapper {
    background: #ffffff;
    padding: 30px 20px 10px 20px;
    width: 95%;
    max-width: 500px;
    max-height: 80%;
    overflow: auto;
    border-radius: 20px;
    position: relative;
}
/* //Login  */
.footer-bottom {
    display: flex;
    text-align: center;
    min-height: 200px;
    justify-content: center;
    align-items: center;
}

.footer-bottom a {
    color: #777474;
    font-size: 14px;
    font-weight: 600;
}
.category-menu {
    display: flex;
    /* justify-content: center; */
    overflow: auto;
}

a.category-menu-list-item {
    padding: 5px 10px;
    display: block;
    color: var(--clr-primary);
    font-size: 14px;
    font-weight: 700;
    width: max-content;
}

a.category-menu-list-item:hover {
    color: var(--clr-primary);
}
.category-section{
    background: #ffffff;
}
.category-section-wrapper {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    justify-content: center;
    min-height: 60px;
    align-items: center;
}

.category-section {
    border-bottom: 1px solid #dfdddd;
}
.cart-counter {
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 1;
}

.cart-counter-value {
    background: var(--clr-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.header-menu-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-searchbar input {
    width: 100%;
    /* max-width: 400px; */
    min-height: 35px;
    padding: 0 10px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 5px;
    border: none;
    background: transparent;
}

.header-searchbar {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #d1cdcd;
    background: #f9f9f9;
    width: 300px;
}

.header-searchbar button {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    width: 30px;
    height: 100%;
    border: none;
}
.header-searchbar input:focus-visible {
    box-shadow: none;
    border: none;
    outline: none;
}
.mobile-slides{
    display: block;
}
.large-slides{
    display: none;
}
.section-wrapper {
    padding: 60px 10px;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    font-weight: 800;
}

.section-header {
    padding-bottom: 30px;
}

.shopbycat-holder {
    display: flex;
    flex-wrap: wrap;
}

a.shopbycats {
    width: Calc(100% / 4);
    padding: 20px;
}

.shopbycats-img img {
    object-fit: cover;
}

.shopbycats-img {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.shopbycats-name {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
    width: 100%;
    padding: 15px 20px;
    color: #ffffff;
}
/* ---- //PAGE STRUCTURE ---- */

/* =============================================== */
/* Common For All Device */
.header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    background: var(--clr-bg-white);
    width: 100%;
}

.header-wrapper {
    max-width: 1350px;
    margin: 0 auto;
    padding: 10px;
    min-height: 80px;
}

.toggle {
    display: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.logo.no-img img, .login-btn-area {
    display: none;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-btm {
    margin-top: 10px;
}

.page-search-container {
    position: relative;
}

.page-search-container input {
    width: 100%;
    border: 1px solid #c9c2c2;
    border-radius: 5px;
    min-height: 35px;
    font-size: 14px;
    font-weight: 500;
    padding: 0 10px;
}

.page-search-container .btn-search {
    position: absolute;
    right: 0;
    top: 0;
    background: transparent;
    border: none;
    align-items: center;
    justify-content: center;
    display: flex;
    width: 30px;
    height: 100%;
}
.menu-name.cart-icon-box {
    position: relative;
}

.cart-icon-box span {
    font-size: 20px;
    color: var(--clr-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.counter.cart-counter {
    position: absolute;
    top: -12px;
    right: -2px;
    background: var(--clr-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 100%;
    border: 2px solid #ffffff;
    color: #ffffff;
}
.mobile-menu {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.mm-name {
    font-size: 14px;
    display: inline-block;
}

.mobile-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: var(--clr-bg-white);
    border-top: 1px solid #e7e2e2;
}

.mobile-menu-container {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 999;
}
.log-modal.show {
    display: block;
}

.log-modal {
    display: none;
    position: fixed;
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: 99999;
    overflow: hidden;
}

.log-modal-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.log-modal-box {
    background: var(--clr-bg-white);
    width: 100%;
    max-height: 70%;
    height: auto;
    padding: 30px 20px;
    border-radius: 20px 20px 0 0;
}
.modal-heading {
    font-size: 1.2rem;
    font-weight: 700;
}

.log-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close-icon {
    background: #e7e2e2;
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    font-size: 17px;
    cursor: pointer;
}

.close-icon:hover {
    color: #ff4747;
    background: #f5dcdc;
}
.log-modal-body-wrapper {
    padding-top: 2rem;
}

.form-fields-holder label {
    font-weight: 600;
}

.form-container {
    margin-bottom: 15px;
}

.custom-btn .btn {
    background: #dbd7d7;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1rem;
    color: #898585;
}

.custom-btn.log-btn-grp .btn {
    width: 100%;
}

.custom-btn.log-btn-grp {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

.custom-btn.log-btn-grp .btn.btn-link {
    font-size: 14px;
    background: transparent;
    text-decoration: none;
    color: #878282;
}

.custom-btn.log-btn-grp .btn.btn-link:hover {
    color: var(--clr-primary);
}


.custom-btn .btn.btn-main {background: var(--clr-primary);color: #ffffff;}

.form-fields-holder input {
    font-size: 14px;
    font-weight: 500;
}
.show-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0px, 15%);
}

.show-password:hover {
    color: var(--clr-primary);
}
.forgot-pwd-box {
    display: block;
    text-align: right;
}

.forgotPassword {
    font-size: 14px;
    font-weight: 600;
    color: #7f7c7c;
}

.forgotPassword:hover {
    color: var(--clr-primary);
}
.log-modal-box-wrapper.registration-section, .log-modal-box-wrapper.forgot-section, .log-modal-box-wrapper.login-section.hide{
    display: none;
}
.above-header {
    display: block;
    text-align: center;
    background: #ffffff;
    padding: 5px 10px;
    border-bottom: 1px solid #f3eded;
}

.abv-hdr-box {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 500;
}

.abv-hdr-box i {
    font-size: 17px;
}
marquee.abv-hdr-box i {
    margin-right: 5px;
}
.product-type-title {
    font-weight: 700;
    font-size: 2rem;
    padding-bottom: 10px;
}

.product-list-type {
    padding-bottom: 10px;
}
.product-list-body-wrapper {
    display: flex;
}

.product-box {
    background: #ffffff;
    padding: 10px;
    border: 1px solid #edeaea;
}

.product-image-area {
    position: relative;
}

.wishlist-icon-area {
    position: absolute;
    top: 2px;
    right: 2px;
}

.wishlist-icon {
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    font-size: 17px;
    color: #959090;
}

.products-container {
    padding: 10px 10px 10px 10px;
}

.wishlist-icon:hover {
    color: var(--clr-primary);
}

.product-brand-name {
    font-size: 12px;
}

.product-data {
    padding-top: 10px;
}

.product-name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
    color: var(--clr-text);
    font-weight: 600;
}
.product-size-name {
    font-size: 13px;
    display: block;
}

.product-ratings-area {
    padding: 5px 0;
}

.product-pricing-area {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.product-price {
    font-size: 13px;
    font-weight: 600;
}

.product-mrp {
    font-size: 12px;
    text-decoration: line-through;
}

.product-offer {
    color: var(--clr-green);
    font-size: 13px;
    font-weight: 600;
}
.prd-with-cat {
    padding-bottom: 1.5rem;
}

.page-container {
    margin-bottom: 80px;
    height: 100%;
}
.custom-btn.cart-page-btn-grp {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
}

.cart-fixed-area {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}

.cart-fixed-area-wrapper {
    background: #ffffff;
    padding: 10px;
    border-top: 1px solid #e1dbdb;
}

.cart-value {
    font-size: 12px;
    color: var(--clr-primary);
    font-weight: 600;
}
.custom-btn.cart-page-btn-grp {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 5px;
}

.cart-fixed-area {
    position: fixed;
    width: 100%;
    bottom: 70px;
    left: 50%;
    max-width: 1350px;
    margin: 0 auto;
    transform: translateX(-50%);
}

.cart-fixed-area-wrapper {
    background: #ffffff;
    padding: 10px;
    border-top: 1px solid #e1dbdb;
}

.cart-value {
    font-size: 12px;
    color: var(--clr-primary);
    font-weight: 600;
}

.cart-box-wrapper {
    display: flex;
    gap: 10px;
}

.cart-item-img {
    width: 60px;
}

.cart-item-img img {
    object-fit: cover;
}

.cart-box {
    background: #ffffff;
    padding: 15px 10px;
    border-bottom: 1px solid #e3dfdf;
}
.cart-item-box-wrapper .cart-box:not(:last-child) {
    border-bottom: 1px solid #e3dfdf;
}


.cart-box-left {
    width: 60px;
}

.cart-box-right {
    width: Calc(100% - 60px - 10px);
}

.cart-price-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}

.cart-counter-box input {
    width: 30px;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.cart-counter {
    font-size: 17px;
    padding: 5px;
    color: #000000;
}

.cart-counter-box {
    display: flex;
    align-items: center;
    border: 1px solid #979494;
}

.cart-price {
    font-size: 14px;
    font-weight: 600;
}

.cart-counter:hover {
    color: var(--clr-primary);
}
.page-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.back-arrow {font-size: 17px;display: inline-flex;width: 30px;height: 30px;align-items: center;justify-content: center;border-radius: 100%;background: #cfcccc;}

.back-arrow:hover {
    background: #b9b7b7;
    color: #000000;
}


.page-card-header {
    background: #ffffff;
    padding: 10px 10px;
    border-bottom: 1px solid #ebe6e6;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
}
.delete-item:hover {
    color: var(--clr-red);
}

.f-17 {
    font-size: 17px;
}
.save-later-title {
    font-weight: 600;
    padding: 20px 10px 10px 10px;
}
.custom-btn.save-later-btn-grp .btn.btn-main-outline {
    padding: 5px 10px;
    font-size: 13px;
    background: #ffffff;
    border: 1px solid var(--clr-primary);
    color: var(--clr-primary);
}

.custom-btn.save-later-btn-grp .btn.btn-main-outline:hover {
    background: var(--clr-primary);
    color: #ffffff;
}
.save-later-container {
    margin-bottom: 150px;
    display: block;
}
.cart-summary-container {
    background: #ffffff;
    padding: 15px 10px;
    margin-top: 10px;
}

.csb-title {
    font-weight: 600;
}

.csb-header {
    padding-bottom: 10px;
}

.csb-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 5px;
}

.csb-list-item h6 {
    font-weight: 600;
    font-size: 14px;
}

.csb-list-item.grand-total h6 {
    font-weight: 800;
}

.csb-list-item.grand-total {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid #e5e2e2;
}
.options-selection-container {
    display: flex;
    gap: 10px;
    margin: 0 auto;
    justify-content: center;
}

.pd-box-holder {
    padding: 20px 10px 10px 10px;
}

.options-box {
    position: relative;
}

.options-box input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
}

.options-box label {
    background: #d5d1d1;
    color: #555252;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.options-box label:hover, .options-box input:checked + label {
    background: var(--clr-primary);
    color: #ffffff;
}
.store-address {
    padding: 10px;
}

.store-address-box {
    border: 1px solid #e1dbdb;
    padding: 10px;
    border-radius: 5px;
    background: #ffffff;
    font-size: 13px;
    font-weight: 600;
}
.date-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #ffffff;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    min-width: 80px;
    border-radius: 5px;
    border: 1px solid #dfd9d9;
}

.date-box-container.select_date_container {
    display: flex;
    padding-bottom: 10px;
    gap: 10px;
    overflow-y: auto;
}

.date-box.selected {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #ffffff;
}
.slots-body-wrapper {
    padding: 15px 10px 0 10px;
}

.slot-title {
    font-weight: 600;
    padding-bottom: 15px;
}
.slot-time-icon{
    font-size: 17px;
    color: var(--clr-green);
    opacity: 0;
    visibility: hidden;
}
.slots-bottom {
    padding-top: 20px;
}

.slots-day {
    font-weight: 600;
    padding-bottom: 15px;
}

.slot-time {
    position: relative;
    padding-bottom: 5px;
}

.slot-time input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
}

.slot-time label {
    display: flex;
    padding: 5px 10px;
    border-radius: 5px;
    background: #ffffff;
    border: 1px solid #d7d4d4;
    color: #6b6969;
    font-weight: 600;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}


.slot-time input:checked + label, .slot-time input:checked + label i {
    visibility: visible;
    opacity: 1;
    color: var(--clr-primary);
    border-color: var(--clr-primary);
}
.slot-time input:checked + label i {
    color: var(--clr-green);
}
.no-address {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #ffffff;
    padding: 20px;
    gap: 15px;
    color: #555151;
    font-size: 14px;
}
.page-card-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-btn .btn.btn-main-outline {
    background: transparent;
    border: 1px solid var(--clr-primary);
    color: var(--clr-primary);
}

.custom-btn .btn.btn-main-outline:hover {
    background: var(--clr-primary);
    color: #ffffff;
}

.custom-btn.add-new-adr .btn {
    padding: 0 0;
    font-size: 13px;
    padding: 5px 10px;
}
.adr-box address {
    padding-bottom: 5px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
}
.added-add-box-holder {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.adr-box {
    background: #ffffff;
    padding: 20px;
    width: 100%;
}

.customer-type {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.customer, .city-pincode {
    font-size: 14px;
    font-weight: 600;
}

.adrtype {
    display: inline-flex;
    background: #d7d4d4;
    font-size: 12px;
    border-radius: 0.25rem;
    padding: 4px 5px;
    font-weight: 600;
}

.selection-icon {
    color: var(--clr-green);
    font-size: 21px;
    display: none;
}

.radio-circle {
    background: #bdb9b9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 2px solid #ffffff;
    outline: 1px solid #878383;
}
.adr-box.selected .selection-icon{
    display: block;
}
.adr-box.selected .radio-circle{
    display: none;
}
.pg-crd-body-wrapper.mkpymnt-pg-crd-body-wrapper {
    padding: 10px;
}

.payment-opt-box label {
    background: #ffffff;
    /* display: block; */
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #dbd7d7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.payment-opt-box {position: relative;padding-bottom: 10px;}

.payment-opt-box input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
}
.payment-opt-box input:checked + label i {
    visibility: visible;
    opacity: 1;
}

.payment-opt-box input:checked + label {
    border-color: var(--clr-primary);
    font-weight: 700;
}
.mkpymnt-btn-grp {
    padding-top: 20px;
}
.item-det-img-thumbnails-container {
    padding: 10px 10px;
}

.itm-thumbnails-holder {
    display: flex;
    overflow: auto;
    gap: 10px;
}

.itm-thumbnails-box {
    border: 1px solid #dfdede;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    width: 100px;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-height: 100px;
}

.itm-thumbnails-box:hover {
    border-color: var(--clr-primary);
}

.itm-thumbnails-box img {
    object-fit: cover;
}
.itm-det-right {
    padding: 20px 10px;
}

.itm-name {
    font-weight: 700;
}
.itm-brand-size {
    padding: 4px 0;
    font-size: 14px;
}

.itm-det-pricing {
    padding: 10px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.itm-price {
    font-weight: 700;
}

.itm-ofr-tg {
    color: var(--clr-green);
    font-weight: 600;
}
.itm-mrp {
    text-decoration: line-through;
}
.itm-det-btns .btn {
    width: 100%;
}
.share-wish-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.share-wish-box .sw-icon {
    background: #ffffff;
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 17px;
}

.share-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
}

.share-wish-box .sw-icon:hover {
    color: var(--clr-primary);
}
.itm-det-more-info {
    padding-top: 20px;
}

.itm-more-info {
    padding-bottom: 20px;
}

.itm-more-info-title {
    font-weight: 700;
    padding-bottom: 15px;
}

.itm-more-info-body {
    font-weight: 500;
    font-size: 15px;
}
.itm-more-more-info {
    padding-top: 10px;
}

td.td-lft-bg {
    background: #f8fafd;
}

.itm-more-more-info td {
    font-size: 14px;
    font-weight: 600;
}
.itm-rvw-box {
    margin-bottom: 15px;
    border: 1px solid #d9d5d5;
    padding: 10px;
    border-radius: 5px;
    background: #ffffff;
}

.rvwbycustomer {
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 5px;
}

.rvw-msg-box {
    padding-top: 5px;
}

.rvw-msg {
    font-size: 14px;
    font-weight: 600;
}

.rvw-msg-admn-rep {
    border-left: 1px solid var(--clr-primary);
    background: #e5e3e3;
    padding: 6px 10px;
    border-radius: 0 5px 5px 0;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}
.max-width-1350{
    max-width: 1350px;
    margin: 0 auto;    
}
.max-width-1180{
    max-width: 1180px;
    margin: 0 auto;    
}
.pg-crd-body-wrapper.main-order-pg-area {
    padding: 20px 10px;
}
.ord-bx-list-box-wrapper {
    border: 1px solid #dddada;
    /* padding: 10px; */
    border-radius: 5px;
    background: #ffffff;
    margin-bottom: 10px;
}

.order-list-container {
    padding-top: 2rem;
}

.ord-bx-list-top {
    border-bottom: 1px solid #dddada;
    margin-bottom: 15px;
    padding: 10px 10px 10px 10px;
}

.order-info {
    font-size: 14px;
}

.order-info.myorderid {
    font-weight: 700;
}

.ord-bx-list-btm {
    padding: 0 10px 10px 10px;
    display: flex;
    gap: 10px;
}

.ordbx-left {
    width: 80px;
}

.ordbx-right {
    width: Calc(100% - 90px);
}

.moreItems {
    background: #e9e7e7;
    padding: 3px 10px;
    display: inline-flex;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.ord-itm-btm {
    padding-top: 15px;
}

a.btn.view-order-details {
    padding: 0;
    font-size: 13px;
    color: var(--clr-primary);
    background: transparent;
    border-bottom: 1px dashed;
    border-radius: 0;
    cursor: pointer;
}

.ordered-itms-img {
    border: 1px solid #dfdddd;
    padding: 5px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ordered-itms-img img {
    border-radius: 7px;
    object-fit: cover;
}
.btn-download-invoice {
    border: 1px solid var(--clr-primary);
    color: var(--clr-primary);
    font-size: 13px;
    font-weight: 600;
}

.btn-download-invoice i {
    font-size: 17px;
}

.withinvoice {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}
.ord-det-itm-top {
    display: flex;
    gap: 10px;
}

.odi-img {
    width: 70px;
}

.order-details-items {
    width: Calc(100% - 80px);
}

.ord-det-itm-btm {
    margin-top: 20px;
}

.ord-det-itm-btm .custom-btn .btn {
    font-size: 14px;
    padding: 5px 15px;
    background: #ffffff;
    color: var(--clr-primary);
    border: 1px solid var(--clr-primary);
}

.ord-det-itm-btm .custom-btn .btn:hover {
    background: var(--clr-primary);
    color: #ffffff;
}

.qty-size-price {
    font-size: 14px;
    font-weight: 600;
    padding-top: 5px;
}
.order-details-box-wrapper .order-details-box:not(:last-child) {
    border-bottom: 1px solid #dddada;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.order-details-summary {
    padding: 20px 10px 10px 10px;
    border-top: 1px solid #dddada;
    margin-top: 15px;
}

.order-summary-title {
    font-weight: 700;
    font-size: 14px;
    padding-bottom: 10px;
}
.bnr-box {
    position: relative;
}

.bnr-data {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    width: 100%;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
}
.banner-section {
    /* padding-top: 1rem; */
    /* padding-bottom: 1rem; */
}


.bnr-data span {
    display: block;
    color: #ffffff;
}
.banner-section-wrapper {
    /* max-width: 1350px; */
    /* margin: 0 auto; */
}
.cat-section-wrapper {
    max-width: 1350px;
    margin: 0 auto;
    padding: 40px 0;
}

.section-title {
    font-weight: 700;
    font-size: 1.2rem;
}

.cat-title-area {
    text-align: center;
    padding-bottom: 2rem;
}
.category-section.aftrbnr {
    border: none;
    background: transparent;
}

.cat-section-box-holder {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}


.categoryBoxContainer {
    /* width: Calc(100% / 4 - 38px); */
    width: Calc(100% / 8 - 38px);
}
.cat-name-area {
    text-align: center;
    padding-top: 20px;
}

.cat-name-title {
    font-size: 14px;
    font-weight: 800;
    color: #000000;
}
.prd-with-category-wrapper {
    max-width: 1350px;
    margin: 0 auto;
}
.products-wrapper {padding: 3rem 0 0 0;}
.product-name-area {
    min-height: 80px;
}
.category-slider .slick-next:before, .category-slider .slick-prev:before, .banner-section-wrapper .slick-next:before, .banner-section-wrapper .slick-prev:before{
    background: rgba(0,0,0,0.7);
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: inline-grid;
    align-items: center;
    border-radius: 5px;
    /* z-index: 9; */
}
.category-slider .slick-prev.slick-arrow, .banner-section-wrapper .slick-prev.slick-arrow{
    z-index: 9;
    left: -20px;
}
.video-title {
    font-weight: 700;
    font-size: 2rem;
}

.video-section-header {
    text-align: center;
    padding-bottom: 2rem;
}

.video-section-container {
    padding-top: 3rem;
    padding-bottom: 4rem;
    /* background: #ffffff; */
}

.vid-sec-wrapper {
    max-width: 1350px;
    margin: 0 auto;
}

.video-section-bosy-wrapper {
    display: flex;
    gap: 50px;
}

/******* circle animation thankup page ***************/
.success-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    font-size: 12px;
    border-radius: 50%;
    border: 4px solid var(--clr-green);
    background-color: #fff;
    position: relative;
    overflow: hidden;
    transform-origin: center;
    animation: showSuccess 180ms ease-in-out;
    transform: scale(1);
  }
  
  .success-icon-line, .success-icon-longline {
    display: block;
    position: absolute;
    height: 4px;
    background-color: var(--clr-green);
    border-radius: 10px;
  }
  
  .success-icon-line {
    width: 2.4em;
    top: 4.3em;
    left: 1.4em;
    transform: rotate(45deg);
    animation: smallLine 300ms ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 180ms;
    visibility: hidden;
  }
  
  .success-icon-longline {
    width: 4em;
    transform: rotate(-45deg);
    top: 3.7em;
    left: 2.75em;
    animation: longLine 140ms ease-in-out;
    animation-fill-mode: forwards;
    visibility: hidden;
    animation-delay: 440ms;
  }
  
  @keyframes showSuccess {
    from {
      transform: scale(0);
    }
  
    to {
      transform: scale(1);
    }
  }
  
  @keyframes smallLine {
    from {
      width: 0em;
      top: 0em;
      left: -1.6em;
    }
  
    to {
      width: 2.4em;
      top: 4.3em;
      left: 1.4em;
      visibility: visible;
    }
  }
  
  @keyframes longLine {
    from {
      width: 0em;
      top: 5.1em;
      left: 3.2em;
    }
  
    to {
      width: 4em;
      top: 3.7em;
      left: 2.75em;
      visibility: visible;
    }
  }
  
  .thankyou-container {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 60px;
  }
  
  .success-msg {
    color: var(--clr-green);
  }
  
  .recently-view-items-on-thanku {
    margin-top: 60px;
  }
  
  ::-webkit-inner-spin-button {
    display: none;
  }
  
  .input-boxes {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  ._all_product_container_both_side {
    display: flex;
    max-width: 1350px;
    margin: 0 auto;
    gap: 50px;
}

._all_product_container_left_side {
    width: 260px;
    background: #ffffff;
    padding: 20px;
    position: static;
}

._all_product_container_right_side {
    width: Calc(100% - 260px - 50px);
}

._product_right_top_section._withFilter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.product-cards-holder {
    display: flex;
    flex-wrap: wrap;
}


.product-cards-holder .product-box {
    width: Calc(100% / 5);
}
.filter_box {
    border-bottom: 1px dashed #d1cdcd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.form-check.custom-filter-form.brand-list label {
    cursor: pointer;
}

.custom-filter-form.brand-list {
    /* padding-bottom: 5px; */
}

.filter-checks {
    padding-top: 15px;
}

.clolor-list {
    position: relative;
    display: flex;
    align-items: center;
}

.page-container-wrapper.item-details-page-container-wrapper {
    max-width: 1350px;
    margin: 0 auto;
}


  /*********** End thankup page ***********/
  .item-details-data-container {
    background: #ffffff;
    padding: 60px;
    margin-top: 2rem;
}
.page-container-wrapper.cart-page-container-wrapper {
    max-width: 1350px;
    margin: 0 auto;
}

.page-container-wrapper.cart-page-container-wrapper {
    padding-top: 60px;
}

.cart-fixed-area {
    /* max-width: 1350px; */
}
.categoryitem-holders-box {
    display: flex;
    flex-wrap: wrap;
}

.page-container-wrapper {
    max-width: 1350px;
    margin: 0 auto;
}

.categoryitem-holders-box .product-box {
    width: Calc(100% / 5);
}
.gender-radios-input {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gender-box {
    position: relative;
}

.gender-box input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
}

.gender-box label {
    background: #ffffff;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 0.25rem;
    border: 1px solid #a3a1a1;
    color: #2d2d2d;
    font-weight: 600;
}

.gender-box input:checked + label, .gender-box label:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #ffffff;
}
/* //Common For All Device */
/* =============================================== */
/* SCAN  */
.header-btm.with-scan {
    display: flex;
    align-items: center;
    gap: 10px;
}

.scan-barcode-container {
    /* width: 50px; */
    display: none;
}

.scan-icon {
    width: 40px;
    height: 37px;
    background: #f5f1f1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 21px;
    cursor: pointer;
}

.scan-icon:hover {
    color: var(--clr-primary);
}


.header-btm.with-scan .page-search-container {
    width: Calc(100% - 60px);
}

.header-btm.with-scan .page-search-container input {
    min-height: 37px;
}
.modal-body.modal-body-change {
    border: none;
    padding: 0;
}
.scanned-modal-body {
    padding: 20px;
}

.scanned-item-box-wrapper {
}

.sib-top-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sib-top-left {
    width: 90px;
    height: 90px;
    overflow: hidden;
}

.sib-top-left img {
    width: 90px;
    height: 90px;
    padding: 5px;
    border: 1px solid #dfdada;
    border-radius: 5px;
    object-fit: cover;
}

.sib-top-right {
    width: Calc(100% - 100px);
}

.sib-otherinmfo {
    font-weight: 500;
    font-size: 14px;
}

.sib-itm-name {
    font-weight: 700;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.sib-price-container {
    padding-top: 14px;
}

.product-pricing-area.sib-pricing {
    align-items: center;
}

.product-pricing-area.sib-pricing .product-price {
    font-size: 15px;
    font-weight: 700;
}
/* //SCAN  */
.cart-price-area {
    flex-wrap: wrap;
    gap: 10px;
}

.cart-summary-container {
    padding-bottom: 10pc;
}
.category-container {}

.category-container .category {
    margin-top: 25px;
}

.category-name {
    font-size: 18px;
    font-weight: 700;
    padding: 0 10px;
}
.category-upr-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-top: 10px;
}

.custom-btn-cat-urp-btn {}

.custom-btn.cat-urp-btn .btn {
    border-radius: 100px;
    padding: 0 0;
    font-size: 12px;
    padding: 4px 7px;
}

.custom-btn.save-later-btn-grps .btn {
    padding: 1px 5px;
    font-size: 10px;
    font-weight: 600;
}

.cart-summary-container.cart-summary-container-delivery-type.hide-for-mobile {
    padding-bottom: 20px;
}
.explore, .explore-btn{
    background: var(--clr-primary);
    width: 100%;
    display: block;
    text-align: center;
    padding: 5px 0;
    border-radius: 5px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}
.other-packs {
    width: 70px;
}

.other-packs .small {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.other-item-container {
    padding: 15px 0;
}

.other-item-container .tag-name {
    font-weight: 700;
    font-size: 14px;
    padding-bottom: 10px;
}
.cat-img img {
    object-fit: cover;
    border-radius: 100%;
}
.cat-img img {
    object-fit: cover;
    border-radius: 100%;
}

.cat-title-area {
    display: none;
}

/* from style.css */
/* STYLE STARTS */
.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-box {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    object-fit: cover;
}

.header-wrapper-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-wrapper {
    width: 100%;
    padding: 0 10px;
    min-height: 80px;
    align-items: center;
    justify-content: center;
    display: flex;
}

ul.header-menu {
    display: flex;
    align-items: center;
}

a.header-manu-name {
    display: block;
    padding: 5px 15px;
    color: var(--clr-text);
    font-size: 14px;
}
a.header-manu-name:hover {
    color: var(--clr-primary);
}

ul.hcp-menu {
    display: flex;
    align-items: center;
}

a.hcp-menu-item {
    display: block;
    padding: 5px 15px;
    color: var(--clr-text);
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    border-bottom: 1px solid #edecec;
    background: var(--clr-bg-white);
}

.company-name {
    color: var(--clr-primary);
    font-weight: 700;
    font-size: 1rem;
}
.max-width-1350{
    max-width: 1350px;
    margin: 0 auto;
}
.p-set-060{
    padding: 0 60px;
}
.p-set-6060{
    padding: 60px;
}
.double-side-data {
    display: flex;
    gap: 30px;
}

.double-side-data .filter-area-container {
    width: 260px;
    display: none;
}

.double-side-data .item-list-body {
    width: 100%;
    padding: 10px 0;
}
.mark-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
}

.mark-wishlist i {
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    border: 1px solid #c5c1c1;
    color: #9b9898;
    cursor: pointer;
}

.mark-wishlist i.bi.heart-fill {
    color: #ff4747;
}
.item-box-holder {
    display: flex;
    flex-wrap: wrap;
}

.item-box {
    width: Calc(100% / 4);
    padding: 10px;
    border: 1px solid #efe9e9;
    background: #ffffff;
}

.item-box-bottom {
    margin-top: 15px;
}

.item-box-information {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.item-ratings-holder.ratings-view span {
    color: var(--clr-yellow);
    font-size: 12px;
}
.item-name {
    color: var(--clr-text);
    font-weight: 600;
}

.itemprice {
    font-size: 14px;
    color: var(--clr-text);
    margin-top: 10px;
    font-weight: 600;
}

.item-box-img-holder:hover img {
    transition: opacity .5s ease,transform 2s cubic-bezier(0,0,.44,1.18);
    transform: scale(1.08);
}
.item-box-upper {
    overflow: hidden;
}

.wishlist-heading {
    padding: 60px 10px;
}
.mark-wishlist i.bi-heart-fill{
    color: #ff4747;
}

.item-box-holder.wishlist-item-box-holder .item-box {
    width: Calc(100% / 2);
}
.wishlist-group-container {
    padding: 40px 0;
}

.wishlist-grp-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.goto-wishlist-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

w {}

.wishlist-right {
    width: 100px;
}

.wishlist-left {
    width: Calc(100% - 100px - 10px);
}

.grp-name {
    color: var(--clr-text);
    font-size: 14px;
}

.wishlist-grp {
    padding: 10px;
    width: 100%;
}

.wishlist-grp-box {
    border: 1px solid #ddd6d6;
    padding: 10px;
    border-radius: 10px;
}

.wishlist-grp-img img {
    object-fit: cover;
    border-radius: 5px;
}
.order-top-side {
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-box-left {
    width: 50px;
}

.order-box-right {
    width: Calc(100% - 50px - 10px);
}

.order-box-wrapper {
    border-bottom: 1px solid #f3efef;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.orders-container {
    padding: 30px 0;
}

.orderid, .orderdate {
    color: var(--clr-text);
}

.orderid {
    font-weight: 600;
    font-size: 14px;
}

.orderdate {
    font-size: 12px;
    font-weight: 500;
}

.order-status {
    display: inline-block;
    padding: 1px 10px;
    border-radius: 100px;
    font-size: 10px;
    margin-top: 10px;
    background: #e3dede;
    color: #666565;
}

.order-status.completed {
    background: #c9f3c9;
    color: var(--clr-green);
}

.order-status.inprocess {
    background: #f5e8cf;
    color: #e59606;
}

.order-status.canceled, .order-status.cancelled {
    background: #f9dcdc;
    color: #ff4747;
}
.view-details-btn-grp {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    /* top: 0; */
    right: 0;
}

.view-details-btn {
    background: #ffffff;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    justify-content: center;
    border-radius: 100px;
    cursor: pointer;
    color: var(--clr-primary);
    border: 1px solid var(--clr-primary);
}

.order-box {
    position: relative;
}

.view-details-btn:hover {
    background: var(--clr-primary);
    color: #ffffff;
}

.order-box-left-img img {
    object-fit: cover;
    border-radius: 5px;
}
.order-details-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.order-details-left {
    width: 100%;
}

.order-details-right {
    width: 100%;
    margin-top: 100px;
    /* justify-content: center; */
    /* display: flex; */
}

.orderqrbox {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #cbc6c6;
    border-radius: 5px;
}

.order-summary {
    margin-top: 20px;
}

.ordlist-info {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10px;
}

li.order-list-li {
    padding-bottom: 10px;
}

.breakline {
    position: relative;
    width: 100%;
    border-top: 1px dashed #b1acac;
    padding-top: 15px;
    margin-top: 15px;
}

ul.orderlist {
    border: 1px dashed #b1acac;
    padding: 15px 0;
    width: 100%;
}

.ord-det-rght-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.order-summary {
    width: 100%;
}
.orddt-itm-box-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}


.orddt-left {
    width: 50px;
}

.orddt-right {
    width: var(100% - 50px - 10px);
}

.orddtextrainfo {
    font-size: 12px;
    font-weight: 500;
}

.price {
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 10px;
    margin-top: 0px;
}
.custom-btn {}

.custom-btn .btn-cancel-ord {
    background: transparent;
    font-size: 11px;
    border: none;
    font-weight: 600;
    color: var(--clr-red);
}

.custom-btn .btn-cancel-ord:hover {
    color: var(--clr-red);
}

.ordbtngrp {
    position: absolute;
    bottom: 30px;
    right: 0;
}


/* //STYLE STARTS */
/* Login  */

.login-signup-modal.show {
    display: block;
}

.login-signup-modal {
    position: fixed;
    display: none;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.login-signup-modal-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmn-log-sign-box {
    /* width: 100%; */
    /* background: #ffffff; */
}

.login-signup-modal-wrapper {
    background: #ffffff;
    padding: 30px 20px 10px 20px;
    width: 95%;
    max-height: 80%;
    overflow: auto;
    border-radius: 20px;
    position: relative;
}

.log-box-header {
    margin: 20px 0 25px 0;
}

.modal-heading {
    font-weight: 700;
    font-size: 21px;
}

.close-login-signup-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ebe8e8;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}

.toggle-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
}

.toggle-eye:hover {
    color: var(--clr-primary);
}
.custom-btn.log-btn-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.custom-btn.log-btn-area .btn {
    width: 100%;
}

.custom-btn .btn {
    font-weight: 600;
    padding: 6px 10px;
    border: 1px solid transparent;
    font-size: 14px;
}

.custom-btn .btn.btn-main {
    background: var(--clr-primary);
    color: #ffffff;
}

.custom-btn .btn.btn-secondary-outline {
    border-color: #bdb9b9;
    color: #676565;
}


.custom-btn .btn.btn-secondary-outline:hover {
    color: var(--clr-primary);
    border-color: var(--clr-primary);
}
.forgot-password {
    text-align: right;
    font-size: 14px;
    color: var(--clr-text);
    font-weight: 500;
}
/* //Login  */

.gender-radio-container {
    display: flex;
    gap: 10px;
  }
  
  .gender-radio input {
    display: none;
  }
  
  .gender-radio label {
    background: #eae5e5;
    font-size: 14px;
    padding: 7px 16px;
    border-radius: 100px;
    color: #3a3737;
    cursor: pointer;
  }
  
  .gender-radio input:checked+label {
    background: var(--clr-primary);
    color: #fff;
  }
  
  .account-header {
    /* background: red; */
    padding: 20px 10px;
    border-bottom: 1px solid #c1c1c1;
    margin-bottom: 25px;
  }
  
  .account-header h6 {
    font-size: 21px;
    font-weight: 700;
  }
  
  .account-tabs-container {
    display: flex;
    width: 100%;
    background: #fff;
    padding: 60px 70px;
    /* gap: 50px; */
  }
  
  .customer-tab-menu {
    width: 20%;
    margin: 0;
    padding: 0;
  }
  
  .custom-box-content-box {
    width: Calc(100% - 20%);
  }
  
  .custom-tab-content-box {
    width: Calc(100% - 20%);
    padding: 0 30px;
  }
  
  .customer-tab-menu .nav-link {
    background: #f1f1f1;
    color: #6f6a6a;
    margin-bottom: 10px;
  }
  
  .customer-tab-menu .nav-link.active {
    background: var(--clr-primary);
  }
  
  .address-box {
    background: white;
    padding: 20px;
    border: 1px solid #c1c1c1;
    border-radius: 10px;
    position: relative;
    /* width: Calc(100% / 3 - 14px); */
  }
  
  .address-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    /* justify-content: space-between; */
  }
  
  .address-box.for-adding-new-address {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--clr-primary);
    color: var(--clr-primary);
    cursor: pointer;
  }
  
  .address-box.for-adding-new-address h4 {
    font-size: 18px;
  }
  
  .address-box.for-adding-new-address:before {
    position: absolute;
    content: "";
    background: var(--clr-primary);
    width: 100%;
    height: 100%;
    opacity: 0.1;
  }
  
  .address-box.for-adding-new-address span {
    background: var(--clr-primary);
    width: 30px;
    height: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 17px;
    margin-bottom: 15px;
  }
  
  .add--box--address {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  
  .add--action--btn span {
    font-size: 15px;
    color: var(--clr-primary);
    font-weight: 600;
  }
  
  .add--action--btn {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .add--states p {
    font-size: 14px;
  }
  
  .type-of-address {
    background: #e6e6e6;
    font-size: 13px;
    border-radius: 100px;
    padding: 3px 10px;
  }
  
  .addresstype {
    margin-bottom: 15px;
  }
  
  .text-red {
    color: #ff4747;
  }
  
  .del-red {
    color: #ff4747 !important;
  }
  .webpg-top {
    padding: 60px 10px;
}
.contactus-form-wrapper {
    max-width: 1020px;
    margin: 0 auto;
    padding: 60px 0;
}

.item-images-container {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  
  .item-images-slider {
    width: 15%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .item--large--image--container {
    width: Calc(100% - 15%);
  }
  
  .item-details-page {
    display: flex;
    flex-direction: column;
    max-width: 1180px;
    /* background: #fff; */
    padding: 10px;
    gap: 20px;
  }
  
  .item-left-side {
    width: 100%;
    top: 180px;
    height: auto;
  }
  
  .item-right-side {
    width: 100%;
  }
  
  .page-container.item-wrapper {
    display: flex;
    justify-content: center;
    background: #fff;
    flex-direction: column;
    align-items: center;
  }
  
  .item--large--image--container img {
    cursor: pointer;
  }
  
  .item-images-slider img {
    cursor: pointer;
  }
  
  .itm__brand {
    font-size: 12px;
    color: #6a6868;
    margin-bottom: 5px;
    display: inline-block;
  }
  
  .itm__size__color span {
    font-size: 14px;
  }
  
  .medicine__type {
    display: block;
    margin-bottom: 0px;
  }
  
  .__stars {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .item-pricing-sec h6 {
    font-size: 20px;
    font-weight: 700;
  }
  
  .item-pricing-sec {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .__mrp {
    text-decoration: line-through;
    color: #9f9c9c;
  }
  
  .__discountTag {
    background: var(--clr-green);
    color: #fff;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 50px;
  }
  
  .itm__price__container {
    margin-top: 25px;
  }
  
  ._itemBtns {
    display: flex;
    gap: 20px;
    /* flex-direction: row-reverse; */
  }
  
  .__item_btns_container {
    margin-top: 50px;
  }
  
  button.btn.btn-wishlist {
    border: 1px solid #c3c1c2;
    color: #6a6769;
    font-size: 18px;
    padding: 10px 26px;
  }
  
  button.btn.btn-add-2-cart {
    background: var(--clr-primary);
    color: #fff;
    width: 100%;
    display: block;
    padding: 13px 0;
    border: 1px solid var(--clr-primary);
  }
  

  
  .add--btn {
    width: Calc(100% - 12%);
  }
  
  .__proDesc {
    display: block;
    font-weight: 800;
    padding-bottom: 8px;
    font-size: 1rem;
  }
  
  .__aboutProduct {
    margin-top: 25px;
  }
  
  .__aboutProduct p {
    font-size: 15px;
    line-height: 25px;
  }
  
  
  td.td-lft-bg {
    width: 30%;
    background: #f8fafd !important;
    font-weight: 500;
  }
  
  .product--btm--details {
    max-width: 1180px;
    width: 100%;
    padding: 20px 10px 0 10px;
    padding-bottom: 60px;
  }
  
  td.td-lft-bg {
    width: 30%;
    background: #f8fafd !important;
    font-weight: 500;
  }
  
  .product--btm--details .__proDesc {
    margin-bottom: 20px;
  }
  
  .review-msg p {
    margin: 0;
    font-size: 15px;
    line-height: 24px;
  }
  
  .user-info {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
  }
  
  .user-info span {
    font-size: 14px;
    color: #6e6c6c;
  }
  
  .review-reply {
    position: relative;
    padding: 10px;
    margin-top: 15px;
  }
  
  .review-reply:before {
    position: absolute;
    content: "";
    background: var(--clr-primary);
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
  }
  
  .review-reply p {
    margin: 0;
    font-size: 14px;
    position: relative;
    z-index: 1;
  }
  
  .review-reply:after {
    position: absolute;
    content: "";
    background: var(--clr-primary);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
  }
  
  .review_box {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 10px;
    border: 1px solid #d5d2d2;
    border-radius: 10px;
  }
  
  .f-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer-pages-wrapper {
    padding: 60px 100px;
  }
  
  .f-header h4 {
    font-size: 31px;
    font-weight: 600;
    margin: 0;
    color: var(--clr-primary);
  }
  
  .category_top_area {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .category__boxes {
    /* width: 10%; */
    position: relative;
    margin-bottom: 10px;
  }
  li.cart-summary-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 0;
}

.line-breaker {
    border-bottom: 1px dashed #e1dede;
    width: 100%;
    padding: 5px 0;
}

.cart-section {
    display: flex;
    flex-direction: column;
    padding: 30px 10px;
}

.cart-section-left {
    width: 100%;
}

.cart-section-right {
    width: 100%;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    margin-top: 70px;
}

.cart-summary-container {
    width: 100%;
    padding: 20px 10px;
    border: 1px dashed #cdc7c7;
    border-radius: 5px;
}

.cart-section-right-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-right-head {
    padding-bottom: 15px;
    border-bottom: 1px dashed #cdc7c7;
    margin-bottom: 15px;
}

.cart-right-head h6 {
    font-weight: 700;
    font-size: 1rem;
}
.cart-summary-data.net-payable {
  color: var(--clr-primary);
  font-weight: 700;
}
.del-opt-box input {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.del-opt-box label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border: 1px dashed #9f9b9b;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
}

.del-opt-box label .circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b9b5b5;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: 2px solid #ffffff;
  outline: 2px solid #b9b5b5;
}

.del-opt-box label:hover {
  border-color: var(--clr-primary);
}

.del-opt-box input:checked + label {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.del-opt-box input:checked + label .circle {
  outline-color: var(--clr-primary);
  background: var(--clr-primary);
  transition: 0.5s ease-in-out;
}
.cart-btn-grp.custom-btn .btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.cart-item-box-wrapper {
  display: flex;
  gap: 20px;
  width: 100%;
}

.cart-item-box-left {
  width: 50px;
  max-height: 100px;
}

.cart-item-img-holder {
  width: 50px;
  max-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e3dfdf;
  padding: 5px;
  overflow: hidden;
}

.cart-item-img-holder img {
  object-fit: cover;
}

.cart-item-box-right {
  width: Calc(100% - 50px - 20px);
}

.cart-color {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
}

.cart-item-name {
  font-weight: 600;
  font-size: 14px;
}

.cart-item-qty-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.price-del {
  display: flex;
  align-items: center;
  gap: 15px;
}

.price-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-price {
  font-size: 14px;
  font-weight: 600;
}

.cart-offer-tag {
  background: var(--clr-green);
  color: #ffffff;
  font-size: 10px;
  padding: 3px 5px;
  border-radius: 5px;
}

.c-qty-changer {
  display: flex;
  align-items: center;
  text-align: center;
  border: 1px solid #a5a3a3;
}

a.q-changer {
  /* background: red; */
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  color: #000000;
}

.c-qty-changer input {
  width: 30px;
  text-align: center;
  padding: 0;
  margin: 0;
  display: block;
  border: none;
}
.cart-header {
  border-bottom: 1px solid #cdc7c7;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-box-holder .cart-item-box:not(:last-child) {
  border-bottom: 1px solid #f3f0f0;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.back-icon {
  background: #efecec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  color: #2d2d2d;
}

.waitingPeriod {
  font-size: 13px;
  background: #f9efdd;
  padding: 10px 20px;
  border-radius: 0 5px 5px 0;
  border-left: 5px solid #ffa500;
  margin-bottom: 20px;
  color: #422c02;
}

input {}

.curbside-delivery input, .curbside-delivery label {
  font-size: 12px;
  font-weight: 600;
}

.del-checks .form-check {
  display: flex;
  align-items: center;
  gap: 5px;
}

.del-checks .form-check label {
  padding-top: 4px;
}

.del-checks .form-check input:checked {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.del-checks input:checked + label {
  color: var(--clr-primary);
}

.del-checks input {
  width: 1.1rem;
  height: 1.1rem;
}

.date-box-container {
  display: flex;
  overflow: auto;
  gap: 10px;
}

.date-box {
  background: #fff;
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #c9c7c7;
  cursor: pointer;
  border-radius: 5px;
}

.date-box-full-body {
  margin-top: 20px;
}

.date-box:hover {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.date-box.selected {
  color: #fff;
  border-color: var(--clr-primary);
  background: var(--clr-primary);
}

.slot-time-input-box input {
  display: none;
}

.slot-time-input-box label {
  border: 1px solid #c9c7c7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  font-size: 1rem;
  margin-bottom: 10px;
  padding-left: 50px;
  position: relative;
  align-items: center;
}

.slot-timing-container {
  margin-top: 30px;
}

.slot-time-input-box span.remaining-slots {
  color: var(--clr-red);
}

.slot-time-input-box span {
  font-size: 14px;
}

.slot-time-input-box span.slot-full {
  color: #838181;
}

.slot-time-input-box input:checked+label {
  border-color: var(--clr-primary);
  font-weight: 700;
  color: var(--clr-primary);
}

.slot-time-input-box label:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 15px;
  border-radius: 50%;
  transform: translate(0, -50%);
  border: 3px solid #787a7c;
}

.slot-time-input-box input:checked+label:before {
  background: var(--clr-primary);
  outline: 2px solid var(--clr-primary);
  border-color: #fff;
  transition: 0.2s ease-in;
}


.store-address h6 {font-size: 14px;font-weight: 600;}

.store-address p, .addtnl-info {
    font-size: 13px;
    font-weight: 500;
}

.store-address {
    background: #fbf8f8;
    padding: 10px 10px;
    border-radius: 5px;
}
.cart-header.home-delivery-header {
  justify-content: space-between;
}

.cart-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn.add-new-address {
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--clr-primary);
  color: var(--clr-primary);
}

.btn.add-new-address:hover {
  background: var(--clr-primary);
  color: #ffffff;
}
.address-box-holder {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.add-box {
  width: 100%;
  border: 1px solid #b5b2b2;
  padding: 10px;
  border-radius: 5px;
  position: relative;
}

.d-customer-name h6 {
  font-size: 13px;
  font-weight: 700;
}

.d-customer-name {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.d-customer-address .cart_address_address, .d-customer-address .states {
  font-size: 13px;
  font-weight: 600;
}


.custom-btn.del-actions.fordelivery .btn.btn-main-outline.delivery_address {
  padding: 4px 10px;
  font-size: 12px;
  border: 1px solid #8f8b8b;
  font-weight: 600;
}
.custom-btn.del-actions.fordelivery .btn.btn-main-outline.delivery_address:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #ffffff;;
}

.d-btns {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  position: relative;
  flex-wrap: wrap;
}

.custom-btn.del-actions.foractions .btn.btn-action {
  padding: 0 5px;
}
.add-box.selected {
  border-color: var(--clr-primary);
}

.add-box.selected:before {position: absolute;content: "";width: 100%;height: 100%;background: var(--clr-primary);top: 0;left: 0;opacity: 0.04;}

.d-customer-address {
  position: relative;
}

.add-box.selected .custom-btn.del-actions.fordelivery .btn.btn-main-outline.delivery_address {
  background: var(--clr-primary);
  color: #ffffff;
  border-color: var(--clr-primary);
}
.form-field-container input, .form-field-container label {
  font-size: 13px;
  font-weight: 600;
}

.add-type-radio {
  position: relative;
}

.add-type-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.add-type-radio input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.add-type-radio label {
  background: #e5e3e3;
  padding: 3px 10px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #545353;
  cursor: pointer;
  border: 1px solid #d1cbcb;
}

.add-type-radio label:hover {
  border-color: var(--clr-primary);
}

.add-type-radio input:checked + label {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #ffffff;
  transition: 0.5s ease-in-out;
}

.del-list-icon-area span {
  color: #ff4747;
  font-size: 4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.del--msg h6 {
  text-align: center;
  margin-top: 10px;
  color: #ff4747;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.del--msg span {
  text-align: center;
}

.del--msg {
  text-align: center;
}

.del-btn {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.del-btn.custom-btn .btn {
  width: 100%;
}

.del-btn.custom-btn .btn.btn-red {
  background: var(--clr-red);
  color: #fff;
}

.del-btn.custom-btn .btn {
  padding: 15px 20px;
}
.item-right-top-head h4 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.ratingStars .bi-star, .ratingStars .bi-star-fill {
  color: var(--clr-yellow);
}

._ratingViewer_section {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

._reviewNumbering {
  font-size: 12px;
  font-weight: 600;
}

.item-pricing-sec, .item-pricing-sec h6 {
  font-size: 14px;
}

.recent-info-sets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.recent-info-sets span {
  display: inline-flex;
  font-size: 12px;
  position: relative;
}

.recent-info-sets span:not(:last-child)::before {
  position: absolute;
  content: "|";
  top: 0;
  right: -7px;
}

._itm_information_container.return-policy-text {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
}

.a-list-item {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}


.product--btm--details td {
  font-size: 12px;
  font-weight: 600;
}
.item-slide-img {
  border: 1px solid #e1dddd;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-slide-img img {
  object-fit: cover;
  padding: 5px;
}
.scan-barcode-container {
  display: none;
}
.custom-btn .btn.btn-send-main {
  background: var(--clr-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.contact-forms {border: 1px solid #d9d5d5;border-radius: 10px;padding: 50px;}

.contact-form-header h1 {
    font-size: 21px;
    font-weight: 700;
    display: inline-block;
    border-bottom: 1px dashed #ada8a8;
    padding-bottom: 5px;
}

.contact-form-header {
    text-align: center;
}
.dropdown-item.custom-dropdown-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 600;
}
.custom-dropdown-item.logout-btn-tog{
  color: #ff4747;
}

a.dropdown-item.custom-dropdown-item:active {
  background: #e9e9e9;
  color : #2d2d2d;
}
/* wishlist modal */

.wishlist-product-section-header-right {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
}

.wishlist-action span {
  background: #edeaea;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #504e4e;
  font-size: 17px;
}

.wishlist-action span:hover {
  background: var(--clr-primary);
  color: #fff;
}

.wish-radio-inp input {
  display: none;
}

.form-check.wish-radio-inp {
  margin: 0;
  padding: 0;
}

.wish-radio-inp label {
  position: relative;
  background: #fff;
  display: block;
  padding: 7px 35px;
  margin-bottom: 5px;
  border: 1px solid #cbcaca;
  border-radius: 5px;
  cursor: pointer;
}

.wish-radio-inp label:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.wish-radio-inp label:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: 2px solid #8f8a8a;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
}


.wish-radio-inp label:hover:before {
  border-color: var(--clr-primary);
}

.wish-radio-inp input:checked+label {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.wish-radio-inp input:checked+label:before {
  background: var(--clr-primary);
  border-color: #fff;
  outline: 2px solid var(--clr-primary);
}

.createNewList {
  cursor: pointer;
  border: 1px solid var(--clr-primary);
  color: var(--clr-primary);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  gap: 5px;
}
/* .createNewList:hover {
    background: var(--clr-primary);
    color: #ffffff;
} */
.createNewList i {
  font-size: 17px;
}
span.createNewList i {
  font-size: 15px;
}

.create-new-on-popup, .back2select {
  display: none;
}

.create-new-on-popup.show {
  display: block;
}

.createNewList.hide, .wishlist--selection--container.hide {
  display: none;
}

.back2select {
  background: #fff;
  width: 30px;
  height: 30px;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.back2select:hover {
  background: #e5e2e2;
}

.back2select.show {
  display: flex;
}


.right-side-modal-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

span.createNewList i {
    font-size: 17px;
}

.modal-title {
    font-size: 18px;
    font-weight: 700;
}
.btn.btn-wishlist.manageWishlist .bi-heart-fill {
  color: #ff4747;
}
/* //wishlist modal */
/* Share modal */

.share-on-social-media {
  margin-top: 20px;
}

.share-media-head h6:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -5px;
  background: var(--dark-text);
  color: var(--dark-text);
}

.share-media-head h6 {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  position: relative;
}

a.wish-socia {
  font-size: 25px;
}

.social-media-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 20px;
  margin-bottom: 20px;
}

a.facebook {
  color: #1877F2;
}

a.wish-socia {
  background: #e1dbdb;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #6a6666;
}

a.wish-socia.facebook {
  color: #fff;
  background: #166FE5;
}

a.wish-socia.twitter {
  background: #1DA1F2;
  color: #fff;
}

a.wish-socia.whatsapp {
  background: #4BC959;
  color: #ffffff;
}

a.wish-socia.telegram {
  background: #1CACE1;
  color: #fff;
}

.orshare {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #afaaaa;
}

.share-via-url {
  margin-top: 20px;
  position: relative;
  margin-bottom: 30px;
}

.share-via-url input {
  width: 100%;
  min-height: 48px;
  padding: 0 5px;
  border: 1px solid #c7c5c5;
  background: white;
}

.btn.btn-copy {
  position: absolute;
  top: 0;
  right: 0;
  background: #e1dada;
  height: 100%;
  color: #323030;
  padding: 0 20px;
}

.share-on-social-media {
  margin-top: 20px;
}

.share-media-head {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* //Share modal */
.item-box-holder.wishlist-item-box-holder {
  padding: 60px 10px;
}
.item-box-holder.wishlist-item-box-holder {
  padding: 60px 10px;
}

.wishlist-actions span {
  cursor: pointer;
  display: inline-flex;
  background: #ffffff;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 17px;
}

.wishlist-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.wishlist-actions span:hover {
  color: var(--clr-primary);
}
/* Filters */

.filter-search-btn {
  position: absolute;
  top: 50%;
  right: 7px;
  border: none;
  background: #fff;
  color: #a1a2a3;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  font-size: 14px;
  transform: translate(-5px, -50%);
}

.filter-box-search {
  margin: 20px 0 20px 0;
}

.filter_box {
  padding: 20px 10px 0 10px;
  margin-bottom: 30px;
}

input.form-control.filter-search-input::placeholder {
  font-size: 14px;
  color: #8e8e8f;
}

.filter-label {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 13px;
  padding-top: 3px;
}

span.color_circle {
  position: relative;
  height: 100%;
  line-height: 16px;
  vertical-align: top;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  background: transparent;
  /* border: 1px solid #969696; */
}

.color_circle[data-colorhex="off white"], .color_circle[data-colorhex=white] {
  border: 1px solid #d6d6d6;
}

.input-boxes {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.custom-btn .btn.btn-main-outline {
  border: 1px solid var(--clr-primary);
  color: var(--clr-primary);
}

.custom-btn .btn.btn-main-outline:hover {
  background: var(--clr-primary);
  color: #fff;
}

/******* circle animation ***************/
.success-icon {
  display: inline-block;
  width: 100px;
  height: 100px;
  font-size: 12px;
  border-radius: 50%;
  border: 4px solid var(--clr-green);
  background-color: #d2f7df;
  position: relative;
  overflow: hidden;
  transform-origin: center;
  animation: showSuccess 180ms ease-in-out;
  transform: scale(1);
}

.success-icon-line, .success-icon-longline {
  display: block;
  position: absolute;
  height: 4px;
  background-color: var(--clr-green);
  border-radius: 10px;
}

.success-icon-line {
  width: 2.4em;
  top: 4.3em;
  left: 1.4em;
  transform: rotate(45deg);
  animation: smallLine 300ms ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 180ms;
  visibility: hidden;
}

.success-icon-longline {
  width: 4em;
  transform: rotate(-45deg);
  top: 3.7em;
  left: 2.75em;
  animation: longLine 140ms ease-in-out;
  animation-fill-mode: forwards;
  visibility: hidden;
  animation-delay: 440ms;
}

@keyframes showSuccess {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@keyframes smallLine {
  from {
    width: 0em;
    top: 0em;
    left: -1.6em;
  }

  to {
    width: 2.4em;
    top: 4.3em;
    left: 1.4em;
    visibility: visible;
  }
}

@keyframes longLine {
  from {
    width: 0em;
    top: 5.1em;
    left: 3.2em;
  }

  to {
    width: 4em;
    top: 3.7em;
    left: 2.75em;
    visibility: visible;
  }
}

.thanks--box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 70px 0;
  background: #d2f7df;
}

.thanks-msg h6 {
  color: var(--clr-green);
  font-size: 18px;
  margin-top: 10px;
  padding-top: 10px;
}

.thanks--box:before {
  position: absolute;
  /* content: ""; */
  background: var(--clr-green);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.1;
}

.thanks-btn {
  margin-top: 20px;
}

.thanks-btn .btn.btn-home {
  color: var(--clr-primary);
  background: #fff;
  border: 1px solid var(--clr-primary);
}

.thanks-btn .btn.btn-track {
  border: 1px solid var(--clr-green);
  color: var(--clr-green);
  background: #fff;
}

.thanks-msg {
  text-align: center;
}
.filter-box-header h6 {
  font-size: 14px;
  font-weight: 700;
  border-bottom: 1px dashed #d9d2d2;
  padding-bottom: 10px;
}
ul.nested-ul {
  padding-left: 8px;
}

a.cat-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--clr-text);
}

li.main-cat-li {
  padding: 2px 0;
}

a.cat-name.sub-cat-name {
  font-weight: 500;
}

a.cat-name:hover {
  color: var(--clr-primary);
}
/* //Filters */
label.error {
  font-size: 10px !important;
  color: #ff4747;
  position: absolute;
  top: -8px;
  left: 9px;
  z-index: 1;
  padding: 0 2px;
  margin: 0;
  background: #ffffff;
  height: auto;
  font-style: italic;
}

#contactUsForm .form-floating {
  position: relative;
}


#contactUsForm .form-floating label {
  font-size: 13px;
  font-weight: 600;
}
.banner-section-container {
  padding-top: 20px;
}
.item-box-information .item-name {
  text-overflow: ellipsis;
  overflow: hidden;
  /* white-space: nowrap; */
  line-height: 1.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.slick-next:before, .slick-prev:before {
  color: #000000 !important;
  font-size: 40px !important;
}
.header-menu-area, .header-cart-profile-section {
  display: none;
}
.category-slider .slick-prev.slick-arrow, .banner-section-wrapper .slick-prev.slick-arrow, .slick-next, .slick-prev{
  display: none !important;
}

.give-ratings {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  margin-top: 15px;
}

.tracking-area {
  padding: 10px 10px 20px 10px;
}
/* Old css */

/* Page Common Style */
.position-relative {
    position: relative;
}

.display-flex {
    display: flex;
}

.page-card-header {
  padding: 0 10px;
}
.section-heading {
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 5px;
}

.section-subheading {
    font-size: 1.2rem;
}

.body-text {
    font-size: 1rem;
}

/* //Page Common Style */
/* STYLE STARTS */
.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-box {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-box img {
    object-fit: cover;
}

.header-wrapper-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


ul.header-menu {
    display: flex;
    align-items: center;
}

a.header-manu-name {
    display: block;
    padding: 5px 15px;
    color: var(--clr-text);
}

ul.hcp-menu {
    display: flex;
    align-items: center;
}

a.hcp-menu-item {
    display: block;
    padding: 5px 15px;
    color: var(--clr-text);
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    border-bottom: 1px solid #edecec;
    background: var(--clr-bg-white);
}

.company-name {
    color: var(--clr-primary);
}
.max-width-1350{
    max-width: 1350px;
    margin: 0 auto;
}
.p-set-060{
    padding: 0 60px;
}
.p-set-6060{
    padding: 60px;
}
.double-side-data {
    display: flex;
    gap: 30px;
}


.mark-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
}

.mark-wishlist i {
    font-size: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    border: 1px solid #c5c1c1;
    color: #9b9898;
    cursor: pointer;
}

.mark-wishlist i.bi.heart-fill {
    color: #ff4747;
}
.item-box-holder {
    display: flex;
    flex-wrap: wrap;
}



.item-box-bottom {
    margin-top: 15px;
}

.item-box-information {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.item-ratings-holder.ratings-view span {
    color: var(--clr-yellow);
    font-size: 12px;
}
.item-name {
    color: var(--clr-text);
}

.itemprice {
    font-size: 14px;
    color: var(--clr-text);
}
.item-name {
    color: var(--clr-text);
}

.itemprice {
    font-size: 14px;
    color: var(--clr-text);
}
.item-box-img-holder:hover img {
    transition: opacity .5s ease,transform 2s cubic-bezier(0,0,.44,1.18);
    transform: scale(1.08);
}
.item-box-upper {
    overflow: hidden;
}

.wishlist-heading {
    padding: 60px 0;
}
.mark-wishlist i.bi-heart-fill{
    color: #ff4747;
}

.item-box-holder.wishlist-item-box-holder .item-box {
    width: Calc(100% / 5);
}
.wishlist-group-container {
    padding: 40px 0;
}

.wishlist-grp-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.goto-wishlist-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

w {}

.wishlist-right {
    width: 100px;
}

.wishlist-left {
    width: Calc(100% - 100px - 10px);
}

.grp-name {
    color: var(--clr-text);
    font-size: 14px;
}

.wishlist-grp {
    padding: 10px;
    width: Calc(100% / 4);
}

.wishlist-grp-box {
    border: 1px solid #ddd6d6;
    padding: 10px;
    border-radius: 10px;
}

.wishlist-grp-img img {
    object-fit: cover;
    border-radius: 5px;
}
.order-top-side {
    display: flex;
    align-items: center;
    gap: 10px;
}



.order-box-wrapper {
    border-bottom: 1px solid #f3efef;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.orders-container {
    padding: 60px 0;
}

.orderid, .orderdate {
    color: var(--clr-text);
}




.order-status {
    display: inline-block;
    padding: 1px 10px;
    border-radius: 100px;
    font-size: 10px;
    margin-top: 10px;
    background: #e3dede;
    color: #666565;
}

.order-status.completed {
    background: #c9f3c9;
    color: var(--clr-green);
}

.order-status.inprocess {
    background: #f5e8cf;
    color: #e59606;
}

.order-status.canceled, .order-status.cancelled {
    background: #f9dcdc;
    color: #ff4747;
}
.view-details-btn-grp {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    bottom: 10px;
    right: 0;
}

.view-details-btn {
    background: #ffffff;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    justify-content: center;
    border-radius: 100px;
    cursor: pointer;
    color: var(--clr-primary);
    border: 1px solid var(--clr-primary);
}

.order-box {
    position: relative;
}

.view-details-btn:hover {
    background: var(--clr-primary);
    color: #ffffff;
}

.order-box-left-img img {
    object-fit: cover;
    border-radius: 5px;
}
.order-details-wrapper {
    display: flex;
}



.orderqrbox {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #cbc6c6;
    border-radius: 5px;
}

.order-summary {
    margin-top: 20px;
}

.ordlist-info {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 10px;
}

li.order-list-li {
    padding-bottom: 10px;
}

.breakline {
    position: relative;
    width: 100%;
    border-top: 1px dashed #b1acac;
    padding-top: 15px;
    margin-top: 15px;
}

ul.orderlist {
    border: 1px dashed #b1acac;
    padding: 15px 0;
    width: 100%;
}






.orddtextrainfo {
    font-size: 12px;
    font-weight: 500;
}


.custom-btn .btn-cancel-ord {
    background: transparent;
    font-size: 11px;
    border: none;
    font-weight: 600;
    color: var(--clr-red);
}

.custom-btn .btn-cancel-ord:hover {
    color: var(--clr-red);
}

.ordbtngrp {
    position: absolute;
    bottom: 0;
    right: 10px;
}

.order-details-item-box {
    position: relative; 
    padding: 10px;
}
/* //STYLE STARTS */
/* Login  */

.login-signup-modal.show {
    display: block;
}

.login-signup-modal {
    position: fixed;
    display: none;
    inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.login-signup-modal-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmn-log-sign-box {
    /* width: 100%; */
    /* background: #ffffff; */
}



.log-box-header {
    margin: 20px 0 25px 0;
}

.modal-heading {
    font-weight: 700;
    font-size: 21px;
}

.close-login-signup-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ebe8e8;
    font-size: 20px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}

.toggle-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 17px;
}

.toggle-eye:hover {
    color: var(--clr-primary);
}
.custom-btn.log-btn-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.custom-btn.log-btn-area .btn {
    width: 100%;
}

.custom-btn .btn {
    font-weight: 600;
    padding: 6px 10px;
    border: 1px solid transparent;
    font-size: 14px;
}

.custom-btn .btn.btn-main {
    background: var(--clr-primary);
    color: #ffffff;
}

.custom-btn .btn.btn-secondary-outline {
    border-color: #bdb9b9;
    color: #676565;
}


.custom-btn .btn.btn-secondary-outline:hover {
    color: var(--clr-primary);
    border-color: var(--clr-primary);
}
.forgot-password {
    text-align: right;
    font-size: 14px;
    color: var(--clr-text);
    font-weight: 500;
}
/* //Login  */

.gender-radio-container {
    display: flex;
    gap: 10px;
  }
  
  .gender-radio input {
    display: none;
  }
  
  .gender-radio label {
    background: #eae5e5;
    font-size: 14px;
    padding: 7px 16px;
    border-radius: 100px;
    color: #3a3737;
    cursor: pointer;
  }
  
  .gender-radio input:checked+label {
    background: var(--clr-primary);
    color: #fff;
  }
  
  .account-header {
    /* background: red; */
    padding: 20px 10px;
    border-bottom: 1px solid #c1c1c1;
    margin-bottom: 25px;
  }
  
  .account-header h6 {
    font-size: 21px;
    font-weight: 700;
  }
  
  .account-tabs-container {
    display: flex;
    width: 100%;
    background: #fff;
    padding: 60px 70px;
    /* gap: 50px; */
  }
  
  .customer-tab-menu {
    width: 20%;
    margin: 0;
    padding: 0;
  }
  
  .custom-box-content-box {
    width: Calc(100% - 20%);
  }
  
  .custom-tab-content-box {
    width: Calc(100% - 20%);
    padding: 0 30px;
  }
  
  .customer-tab-menu .nav-link {
    background: #f1f1f1;
    color: #6f6a6a;
    margin-bottom: 10px;
  }
  
  .customer-tab-menu .nav-link.active {
    background: var(--clr-primary);
  }
  
  .address-box {
    background: white;
    padding: 20px;
    border: 1px solid #c1c1c1;
    border-radius: 10px;
    position: relative;
    /* width: Calc(100% / 3 - 14px); */
  }
  
  .address-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    /* justify-content: space-between; */
  }
  
  .address-box.for-adding-new-address {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--clr-primary);
    color: var(--clr-primary);
    cursor: pointer;
  }
  
  .address-box.for-adding-new-address h4 {
    font-size: 18px;
  }
  
  .address-box.for-adding-new-address:before {
    position: absolute;
    content: "";
    background: var(--clr-primary);
    width: 100%;
    height: 100%;
    opacity: 0.1;
  }
  
  .address-box.for-adding-new-address span {
    background: var(--clr-primary);
    width: 30px;
    height: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 17px;
    margin-bottom: 15px;
  }
  
  .add--box--address {
    margin-top: 10px;
    margin-bottom: 20px;
  }
  
  .add--action--btn span {
    font-size: 15px;
    color: var(--clr-primary);
    font-weight: 600;
  }
  
  .add--action--btn {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .add--states p {
    font-size: 14px;
  }
  
  .type-of-address {
    background: #e6e6e6;
    font-size: 13px;
    border-radius: 100px;
    padding: 3px 10px;
  }
  
  .addresstype {
    margin-bottom: 15px;
  }
  
  .text-red {
    color: #ff4747;
  }
  
  .del-red {
    color: #ff4747 !important;
  }
  .webpg-top {
    padding: 60px 10px;
}
.contact-forms {
    max-width: 1020px;
    margin: 0 auto;
    padding: 60px 0;
}

.item-images-container {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  
  .item-images-slider {
    width: 15%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .item--large--image--container {
    width: Calc(100% - 15%);
  }
  
  .item-details-page {
    display: flex;
    max-width: 1180px;
    /* background: #fff; */
    padding: 30px;
    gap: 20px;
  }
  
  .item-left-side {
    /* width: 50%;
    display: flex;
    position: sticky;
    position: -webkit-sticky;
    top: 180px;
    height: 500px; */
  }
  
  .item-right-side {
    /* width: Calc(100% - 50%); */
  }
  
  .page-container.item-wrapper {
    display: flex;
    justify-content: center;
    background: #fff;
    flex-direction: column;
    align-items: center;
  }
  
  .item--large--image--container img {
    cursor: pointer;
  }
  
  .item-images-slider img {
    cursor: pointer;
  }
  
  .itm__brand {
    font-size: 14px;
    color: #6a6868;
  }
  
  .itm__size__color span {
    font-size: 14px;
  }
  
  .medicine__type {
    display: block;
    margin-bottom: 0px;
  }
  
  .__stars {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .item-pricing-sec h6 {
    font-size: 20px;
    font-weight: 700;
  }
  
  .item-pricing-sec {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .__mrp {
    text-decoration: line-through;
    color: #9f9c9c;
  }
  
  .__discountTag {
    background: var(--clr-green);
    color: #fff;
    font-size: 14px;
    padding: 2px 10px;
    border-radius: 50px;
  }
  
  .itm__price__container {
    margin-top: 25px;
  }
  
  ._itemBtns {
    display: flex;
    gap: 20px;
    /* flex-direction: row-reverse; */
  }
  
  .__item_btns_container {
    margin-top: 50px;
  }
  
  button.btn.btn-wishlist {
    border: 1px solid #c3c1c2;
    color: #6a6769;
    font-size: 18px;
    padding: 12px 26px;
  }
  
  button.btn.btn-add-2-cart {
    background: var(--clr-primary);
    color: #fff;
    width: 100%;
    display: block;
    padding: 13px 0;
    border: 1px solid var(--clr-primary);
  }
  
  .wishlist--btn {
    width: 12%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .add--btn {
    width: Calc(100% - 12%);
  }
  
  .__proDesc {
    display: block;
  }
  
  .__aboutProduct {
    margin-top: 25px;
  }
  
  .__aboutProduct p {
    font-size: 15px;
    line-height: 25px;
  }
  
  
  td.td-lft-bg {
    width: 30%;
    background: #f8fafd !important;
    font-weight: 500;
  }
  
  .product--btm--details {
    max-width: 1180px;
    width: 100%;
    padding: 0 60px;
    padding-bottom: 60px;
  }
  
  td.td-lft-bg {
    width: 30%;
    background: #f8fafd !important;
    font-weight: 500;
  }
  
  .product--btm--details .__proDesc {
    margin-bottom: 20px;
  }
  
  .review-msg p {
    margin: 0;
    font-size: 15px;
    line-height: 24px;
  }
  
  .user-info {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
  }
  
  .user-info span {
    font-size: 14px;
    color: #6e6c6c;
  }
  
  .review-reply {
    position: relative;
    padding: 10px;
    margin-top: 15px;
  }
  
  .review-reply:before {
    position: absolute;
    content: "";
    background: var(--clr-primary);
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
  }
  
  .review-reply p {
    margin: 0;
    font-size: 14px;
    position: relative;
    z-index: 1;
  }
  
  .review-reply:after {
    position: absolute;
    content: "";
    background: var(--clr-primary);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
  }
  
  .review_box {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 10px;
    border: 1px solid #d5d2d2;
    border-radius: 10px;
  }
  
  .f-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .footer-pages-wrapper {
    padding: 60px 100px;
  }
  
  .f-header h4 {
    font-size: 31px;
    font-weight: 600;
    margin: 0;
    color: var(--clr-primary);
  }
  
  .category_top_area {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .category__boxes {
    /* width: 10%; */
    position: relative;
    margin-bottom: 10px;
  }
  li.cart-summary-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 0;
}

.line-breaker {
    border-bottom: 1px dashed #e1dede;
    width: 100%;
    padding: 5px 0;
}


.cart-right-head {
    padding-bottom: 15px;
    border-bottom: 1px dashed #cdc7c7;
    margin-bottom: 15px;
}

.cart-right-head h6 {
    font-weight: 700;
    font-size: 1rem;
}
.cart-summary-data.net-payable {
  color: var(--clr-primary);
  font-weight: 700;
}
.del-opt-box input {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}

.del-opt-box label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  border: 1px dashed #9f9b9b;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
}

.del-opt-box label .circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b9b5b5;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  border: 2px solid #ffffff;
  outline: 2px solid #b9b5b5;
}

.del-opt-box label:hover {
  border-color: var(--clr-primary);
}

.del-opt-box input:checked + label {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.del-opt-box input:checked + label .circle {
  outline-color: var(--clr-primary);
  background: var(--clr-primary);
  transition: 0.5s ease-in-out;
}
.cart-btn-grp.custom-btn .btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.cart-item-box-wrapper {
  display: flex;
  gap: 20px;
  width: 100%;
}

.cart-color {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
}

.cart-item-name {
  font-weight: 600;
  font-size: 14px;
}

.cart-item-qty-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.price-del {
  display: flex;
  align-items: center;
  gap: 15px;
}

.price-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-price {
  font-size: 14px;
  font-weight: 600;
}

.cart-offer-tag {
  background: var(--clr-green);
  color: #ffffff;
  font-size: 10px;
  padding: 3px 5px;
  border-radius: 5px;
}

.c-qty-changer {
  display: flex;
  align-items: center;
  text-align: center;
  border: 1px solid #a5a3a3;
}

a.q-changer {
  /* background: red; */
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  color: #000000;
}

.c-qty-changer input {
  width: 30px;
  text-align: center;
  padding: 0;
  margin: 0;
  display: block;
  border: none;
}
.cart-header {
  border-bottom: 1px solid #cdc7c7;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-item-box-holder .cart-item-box:not(:last-child) {
  border-bottom: 1px solid #f3f0f0;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.back-icon {
  background: #efecec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  color: #2d2d2d;
}

.waitingPeriod {
  font-size: 13px;
  background: #f9efdd;
  padding: 10px 20px;
  border-radius: 0 5px 5px 0;
  border-left: 5px solid #ffa500;
  margin-bottom: 20px;
  color: #422c02;
}

input {}

.curbside-delivery input, .curbside-delivery label {
  font-size: 12px;
  font-weight: 600;
}

.del-checks .form-check {
  display: flex;
  align-items: center;
  gap: 5px;
}

.del-checks .form-check label {
  padding-top: 4px;
}

.del-checks .form-check input:checked {
  background-color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.del-checks input:checked + label {
  color: var(--clr-primary);
}

.del-checks input {
  width: 1.1rem;
  height: 1.1rem;
}

.date-box-container {
  display: flex;
  overflow: auto;
  gap: 10px;
}

.date-box {
  background: #fff;
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #c9c7c7;
  cursor: pointer;
  border-radius: 5px;
}

.date-box-full-body {
  margin-top: 20px;
}

.date-box:hover {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.date-box.selected {
  color: #fff;
  border-color: var(--clr-primary);
  background: var(--clr-primary);
}

.slot-time-input-box input {
  display: none;
}

.slot-time-input-box label {
  border: 1px solid #c9c7c7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  font-size: 1rem;
  margin-bottom: 10px;
  padding-left: 50px;
  position: relative;
  align-items: center;
}

.slot-timing-container {
  margin-top: 30px;
}

.slot-time-input-box span.remaining-slots {
  color: var(--clr-red);
}

.slot-time-input-box span {
  font-size: 14px;
}

.slot-time-input-box span.slot-full {
  color: #838181;
}

.slot-time-input-box input:checked+label {
  border-color: var(--clr-primary);
  font-weight: 700;
  color: var(--clr-primary);
}

.slot-time-input-box label:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 15px;
  border-radius: 50%;
  transform: translate(0, -50%);
  border: 3px solid #787a7c;
}

.slot-time-input-box input:checked+label:before {
  background: var(--clr-primary);
  outline: 2px solid var(--clr-primary);
  border-color: #fff;
  transition: 0.2s ease-in;
}


.store-address h6 {font-size: 14px;font-weight: 600;}

.store-address p, .addtnl-info {
    font-size: 13px;
    font-weight: 500;
}

.store-address {
    background: #fbf8f8;
    padding: 10px 10px;
    border-radius: 5px;
}
.cart-header.home-delivery-header {
  justify-content: space-between;
}

.cart-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn.add-new-address {
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--clr-primary);
  color: var(--clr-primary);
}

.btn.add-new-address:hover {
  background: var(--clr-primary);
  color: #ffffff;
}
.address-box-holder {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.d-customer-name h6 {
  font-size: 13px;
  font-weight: 700;
}

.d-customer-name {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.d-customer-address .cart_address_address, .d-customer-address .states {
  font-size: 13px;
  font-weight: 600;
}


.custom-btn.del-actions.fordelivery .btn.btn-main-outline.delivery_address {
  padding: 4px 10px;
  font-size: 12px;
  border: 1px solid #8f8b8b;
  font-weight: 600;
}
.custom-btn.del-actions.fordelivery .btn.btn-main-outline.delivery_address:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #ffffff;;
}



.custom-btn.del-actions.foractions .btn.btn-action {
  padding: 0 5px;
}
.add-box.selected {
  border-color: var(--clr-primary);
}

.add-box.selected:before {position: absolute;content: "";width: 100%;height: 100%;background: var(--clr-primary);top: 0;left: 0;opacity: 0.04;}

.d-customer-address {
  position: relative;
}

.add-box.selected .custom-btn.del-actions.fordelivery .btn.btn-main-outline.delivery_address {
  background: var(--clr-primary);
  color: #ffffff;
  border-color: var(--clr-primary);
}
.form-field-container input, .form-field-container label {
  font-size: 13px;
  font-weight: 600;
}

.add-type-radio {
  position: relative;
}

.add-type-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.add-type-radio input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.add-type-radio label {
  background: #e5e3e3;
  padding: 3px 10px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #545353;
  cursor: pointer;
  border: 1px solid #d1cbcb;
}

.add-type-radio label:hover {
  border-color: var(--clr-primary);
}

.add-type-radio input:checked + label {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #ffffff;
  transition: 0.5s ease-in-out;
}

.del-list-icon-area span {
  color: #ff4747;
  font-size: 4rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.del--msg h6 {
  text-align: center;
  margin-top: 10px;
  color: #ff4747;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.del--msg span {
  text-align: center;
}

.del--msg {
  text-align: center;
}

.del-btn {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.del-btn.custom-btn .btn {
  width: 100%;
}

.del-btn.custom-btn .btn.btn-red {
  background: var(--clr-red);
  color: #fff;
}

.del-btn.custom-btn .btn {
  padding: 15px 20px;
}
.bg-main {
  background: #520204;
}

.content-section-box {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.content-section-wrapper {
    padding: 30px 0;
}

.csb-left-data h1, .csb-left-data p {
  color: #ffffff;
  padding-bottom: 15px;
}

a.btn.csb-btn {
  background: #ffffff;
}

.csb-left {
  width: 100%;
  padding: 0 10px 30px 10px;
}

.csb-right {
  width: 100%;
}
.csb-btn-grp {
  padding-top: 20px;
}

.section-subheading {
  font-size: 16px;
  font-weight: 500;
}
.web-cat-section-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.web-cat-box {
  width: 50%;
  position: relative;
  overflow: hidden;
  padding: 10px;
}



.web-cat-name {
  position: absolute;
  color: #ffffff;
  padding: 10px 20px;
  bottom: 0;
  left: 0;
  font-size: 14px;
  background: rgba(0,0,0,0.5);
  width: 100%;
}

.web-cat-box-img img {
  object-fit: cover;
}

.web-cat-box-img {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* max-height: 400px; */
}

.web-cat-box-wrapper {
  position: relative;
}

.padding-set-tb {
  padding: 60px 10px;
}

.web-cat-section-header {
  margin-bottom: 20px;
}
.csb-right-wrapper {
  width: 100%;
  padding: 10px;
  display: flex;
  margin: 0 auto;
}
.img-in-bg{
  background-image: url(https://images.pexels.com/photos/298863/pexels-photo-298863.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1);
  height: 700px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.extra-section-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: red; */
  width: 100%;
  height: 100%;
  max-width: 1350px;
  margin: 0 auto;
}

.extra-section-data {
  max-width: 100%;
  text-align: center;
  position: relative;
}

.img-in-bg::before {position: absolute;content: "";width: 100%;height: 100%;background: rgba(0,0,0,0.7);top: 0;left: 0;}

.extra-section-btn-area.custom-btn {
  position: relative;
  margin-top: 30px;
}

.custom-btn .btn.btn-white {
  background: var(--clr-white);
  color: var(--clr-primary);
}

.custom-btn .btn.btn-white:hover {
  background: var(--clr-primary);
  color: #ffffff;
}

.extra-section-heading {
  color: #ffffff;
  font-size: 2.5rem;
  padding-bottom: 10px;
  font-weight: 700;
}

.extra-section-data .section-subheading {
  color: #ffffff;
}
/* // End old css */
/* Mobile menu */
.mobile-menu-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  
}

a.mobile-menu-name {
  text-align: center;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  color: #2d2d2d;
  font-weight: 700;
}

.mobile-menu-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #e3e0e0;
  background: #ffffff;
  z-index: 1;
  min-height: 60px;
}

.mobile-menu-wrapper {
  padding: 12px 10px;
}

i.mobile-menu-icon {
  font-size: 17px;
}
.dropdown-toggle.mobile-dropdown-toggle::after{
  display: none;
}
footer.footer {
  padding-bottom: 80px;
}
/* //Mobile menu */
@media only screen and (min-width: 1100px){
  .mobile-menu-container, .cart-mobile-btn-container {
    display: none;
  }
}
.cart-mobile-btn-container {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: #ffffff;
  border: 1px solid #e1d9d9;
}

.cart-mobile-btn-container-wrapper {
  min-height: 100px;
  padding: 10px;
}

.delivery-mode-title {
  font-size: 12px;
}

.delmod-box input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.delmod-box label {
  background: #f1eeee;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 0.25rem;
  border: 1px solid #cfcbcb;
}

.del-mode-opt {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
  margin-top: 5px;
}

.cart-mobile-btn-grp.custom-btn .btn {
  justify-content: center;
}
.hide-for-mobile {
  display: none;
}
.delmod-box input:checked + label {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #ffffff;
}
.payment-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.payment-options {
  display: flex;
  flex-direction: column;
  background: #e3dfdf;
  padding: 9px 10px;
  gap: 5px;
  margin-bottom: 5px;
  border-radius: 5px;
}

.payment-options h6 {
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  gap: 5px;
}

.payment-right-side {
  border: 1px solid #e1dddd;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
}

.payment-left-side {
  width: 100%;
}

.payment_type_box._codBox.cod_payment label {
  display: flex;
  flex-direction: column;
}

.payment_type_box._codBox.cod_payment input, .payment_type_box._codBox.cod_payment label {
  cursor: pointer;
}

.payment_type_box._codBox.cod_payment small {
  font-size: 12px;
}

.payment_type_box._codBox.cod_payment input {
  accent-color: var(--clr-primary);
  width: 20px;
  height: 20px;
}


.success-icon-new i {
  color: var(--clr-green););
  font-size: 3rem;
}

.thanks--box {
  margin: 0 auto;
  background: #e4f5e4;
}

.thanks-msg span {
  font-size: 12px;
}

.thanks--box .custom-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.thanks--box .custom-btn .btn {
  padding: 3px 8px;
  margin: 0;
}

.thanks-icons {
  margin-bottom: 0;
}

.thanks-msg h6 {
  color: var(--clr-green);
}
a.order-box {
  /* padding: 0 30px; */
  display: block;
}

.orders-wrapper {
  padding: 0 10px;
}
.order-details-item-holder .order-details-item-box:not(:last-child) {
  border-bottom: 1px solid #f3efef;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
span.reviewpin.pointer.write-review-container {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

ul.direct-rating i {
  color: #7f7c7c;
}
.order-summary-title {
  font-size: 12px;
  margin-bottom: 10px;
}
.orddtname {
  font-size: 14px;
}
.slick-next, .slick-prev{
  z-index: 1;
}
.not-found {text-align: center;padding: 60px 10px;}
label#password-error {
  font-size: 10px !important;
  
  opacity: 1;
  height: auto !important;
  padding: 0 !important;
  /* background: antiquewhite; */
  padding: 0 3px !important;
}
.form-fields small {
  line-height: initial;
  font-size: 12px;
  display: block;
  padding-top: 5px;
}
.no-data-img figure img {
  object-fit: cover;
}

.no-data-img figure {
  max-width: 100px;
  margin: 0 auto;
}

.no-data {
  text-align: center;
}

.no-data-available.no-cart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 60px 10px;
}

.no-data h6 {
  font-size: 13px;
  font-style: italic;
  color: #6e6a6a;
  font-weight: 500;
}
a.hcp-menu-item.page-searchbar {
   /* display: none; */
}
.category-container{
  padding: 0 10px;
}

.orderDeliveringInfo {
  position: relative;
  padding: 20px 20px;
  border-radius: 10px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  z-index: 1;
  flex-wrap: wrap;
  gap: 10px;
}

.orderDeliveringInfo:before {
  position: absolute;
  background: var(--clr-primary);
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.1;
  border-radius: 10px;
}

.curbsinfo {
  position: relative;
  z-index: 1;
}

.curbside-pickup-order {
  position: relative;
  z-index: 1;
}
.curbside-delivery textarea {
  font-size: 13px;
  font-weight: 600;
}

.curbside-delivery small.required_cehicle {
    font-size: 10px;
    font-style: italic;
}
.hcp-menu-name {
  font-size: 13px;
  font-weight: 600;
}
.badge.badge-order-type {
  background: #ffffff;
  border-radius: 100px;
  color: var(--clr-primary);
  padding: 5px 15px;
  font-size: 10px;
  margin-top: 5px;
}
.orderDeliveringInfo {
  margin: 0 10px 10px 10px;
}
.input-boxes label, .input-boxes input {
    font-size: 14px;
}

.contact-form-body {
    padding: 50px;
}

.contact-forms {
    width: 60%;
}

.main-page-container.website-pages {
    padding: 0 90px;
}

.scan-barcode-container{
	display: none;
}
.item-ratings-holder.ratings-view span {
    color: orange;
}
.main-page-container.itemdetailspage {
    background: #ffffff;
}
/* //from style.css */