/* Backend CSS */

/* ###ROOT### */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'helvetica';
    src: url('../fonts/Helvetica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'helveticaBold';
    src: url('../fonts/Helvetica-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'helveticaLight';
    src: url('../fonts/helvetica-light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --pink: #FF4286;
    --white: #ffffff;
    --black: #171717;
    --blue: #00A1BA;
    --light-blue: #D3F8FE;
    --light-yellow: #FFECC3;
    --grey: #DFDFDF;
    --yellow: #FFA800;
    --red: #D31638;
    --filter-bg: #FFFAEF;
    --gold: linear-gradient(#DDAC17, #ECC440, #FFFA8A);
    touch-action: pan-x pan-y;
    height: 100%
}

::-webkit-scrollbar {
    width: 10px;
    height: 2px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: var(--blue);
}

::-webkit-scrollbar-thumb:hover {
    border-radius: 4px;
    background: var(--yellow);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input:focus, input:active,
select:focus, select:active,
textarea:focus, textarea:active {
    box-shadow: none !important;
}

.owl-nav, .owl-dots {
    display: none !important;
}

a {
    text-decoration: none;
}

p {
    margin: 0;
}

/* ###COMMON### */

body {
    font-family: "helvetica", sans-serif;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
        overflow-x: hidden;
}

main {
    flex-grow: 1;
}

.custom-container {
    width: 90%;
    margin: auto;
}

.back-to-top-div {
    position: fixed;
    right: 2%;
    bottom: 5%;
    transition: all 2s ease;
    display: none;
    z-index: 999;
}

.back-to-top {
    height: 2.5rem;
    width: 2.5rem;
    background-color: var(--yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    border-radius: 10px;
}

.back-to-top img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.vip-btn {
    font-size: 1rem;
    width: fit-content;
    padding: .5rem 1.5rem;
    text-decoration: none;
    background: transparent;
    transition: background-color .2s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.vip-btn img {
    height: 1.8rem;
    width: 1.8rem;
    object-fit: contain;
}

.vip-btn-red {
    background-color: var(--red);
    color: var(--white);
    border-radius: 50vw;
    font-weight: 500;
}

.vip-btn-blue {
    background-color: var(--blue);
    color: var(--white);
    border-radius: 50vw;
    font-weight: 500;
}

.vip-btn-blue:hover {
    background-color: var(--yellow);
}

.vip-btn-yellow {
    background-color: var(--yellow);
    color: var(--white);
    border-radius: 50vw;
    font-weight: 500;
}

.vip-btn-grey {
    background-color: var(--grey);
    color: var(--black);
    border-radius: 50vw;
    font-weight: 500;
}

.vip-btn-yellow:hover {
    background-color: var(--blue);
}

.vip-btn-hero-yellow {
    border-radius: 10px 10px 0 0;
}


.access-bar {
    background-color: var(--blue);
    border-radius: 0 0 5px 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.access-data {
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.access-data span a {
    text-decoration: none;
    color: var(--white);
    padding: .5rem 1.5rem;
    border-radius: 5px;
}

/* .access-name {
    width: 50%;
    text-wrap: wrap;
    white-space: wrap;
    word-wrap: break-word;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
} */

.view-more-navigation {
    color: var(--blue);
    font-size: 1.2rem;
    font-weight: 500;
}

.sectionWrapper {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin: 1rem auto;
}

.page-heading {
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
    color: var(--black);
}

.order-id-head {
    font-size: 1.2rem !important;
}

.subheading {
    font-size: 1.3rem;
    font-family: "helveticaBold", sans-serif;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    color: var(--black);
}

.layout-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: calc(80dvh - 6rem);
}

.main-layout {
    gap: 1.5rem !important;
    margin-bottom: 4rem;
}

.main-layout, .layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.required {
    color: var(--red);
    font-size: 1.5rem !important;
}

.page-not-found {
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

.page-not-found h4 {
    text-align: center;
    color: var(--grey);
}

.sim-yellow {
    fill: var(--yellow);
}

.sim-blue {
    fill: var(--blue);
}

.sim-red {
    fill: var(--red);
}

.dropdown-menu {
    min-width: fit-content !important;
}

/* ###NAVBAR### */

.vip-nav {
    margin-top: 2rem;
    border-radius: 50vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: var(--black);
    position: sticky;
    top: 1%;
    left: 0;
    z-index: 2;
    width: 100%;
}

.logo a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.logo a svg {
    height: 2rem;
    width: 2rem;
    object-fit: contain;
}

.vip-nav-options, .vip-nav-option {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.vip-nav-option a,
.categories-dropdown {
    color: var(--white);
    font-family: "helveticaLight", sans-serif;
}

.nav-btn {
    padding: .2rem;
}

.nav-btn img {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
}

.nav-btn-dropdown::after {
    display: none !important;
}

.categories-dropdown::after {
    margin: 0 !important;
}

.vip-dd-menu {
    background-color: var(--blue);
    z-index: 999 !important;
}

.vip-dd-item {
    color: var(--white);
    z-index: 999 !important;
}

.category-menu {
    max-height: 25rem;
    max-width: 50rem;
    overflow-x: scroll;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cat-item {
    min-width: fit-content;
}

.category-menu::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: var(--yellow);
}

/* ###LOGIN### */

.login-container {
    min-height: 100dvh;
    display: flex;
    width: 100%;
    align-items: center;
}

.sign-up-data {
    width: 60% !important;
}

.sign-up-image {
    width: 40% !important;
}

.sign-in-layout {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.sign-in-layout > div {
    width: 48%;
}

.login-layout {
    width: 50%;
    height: 100%;
    display: flex;
}

.login-data {
    width: 80%;
    margin: auto;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-data form {
    width: 100%;
}

.login-image {
    width: 50%;
}

.login-img {
    height: 100vh;
    position: relative;
}

.login-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.login-logo {
    position: absolute;
    top: 2%;
    right: 2%;
    z-index: 2;
}

.login-logo svg {
    height: 5rem;
    width: 5rem;
    object-fit: contain;
    object-position: center;
}

/* ###INDEX### */

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    max-height: 70vh;
}

.hero-text {
    width: 60%;
}

.hero-text h1 {
    font-size: 4rem;
    text-wrap: balance;
    color: var(--black);
}

.hero-text h1 span {
    font-family: "helveticaBold", sans-serif;
}

.hero-img {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-banner-text {
    height: 40rem;
    width: 40rem;
    object-fit: contain;
    animation-name: spin;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

.hero-banner-img {
    position: absolute;
    height: 20rem;
    width: 20rem;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

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

.hero-search-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-search-option {
    display: flex;
    align-items: center;
}

.hero-search-option > .active {
    background-color: var(--yellow) !important;
    color: var(--white);
}

.hero-service-providers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 1rem 0 0 0;
}

.hero-service-providers span {
    color: var(--pink);
    font-size: 1.5rem;
    font-weight: 600;
    justify-content: center;
    border-right: 4px solid var(--blue);
    padding: 1rem;
}

.index-guide-section {
    border-top: 2px dashed var(--blue);
    border-bottom: 2px dashed var(--yellow);
}

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

.guide-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 18%;
}

.guide-step svg {
    transition: all .2s ease;
}

.guide-step svg:hover {
    scale: 1.2;
}

.guide-step svg:hover rect {
    fill: var(--yellow);
}

.guide-step svg:hover path {
    fill: var(--yellow);
}

.notfill {
    fill: var(--white) !important;
}

.guide-step p {
    margin: 0;
    text-align: center;
    font-weight: 600;
}

.index-info-section {
    background-color: var(--yellow);
    border-radius: 12px;
    flex-direction: row;
    justify-content: center;
}

.index-information {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.index-information img {
    height: 5rem;
    width: 5rem;
    object-fit: contain;
    aspect-ratio: 1/1;
}

.index-information h5 {
    color: var(--white);
    text-wrap: pretty;
    text-align: center;
    font-weight: 600;
}

.testimonials-carousel .item {
    padding: .5rem 0;
}

.testimonials-card {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 1rem;
    border-radius: 12px;
    height: 15rem;
}

.testimonial-card-data {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-card-data-body p {
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: var(--black);
    text-align: justify;
}

.testimonial-card-data-head {
    display: flex;
    align-items: end;
    flex-direction: column;
    color: var(--black);
}

.index-vendor-registration {
    background-color: var(--blue);
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-radius: 12px;
    overflow-x: hidden;
}

.index-vendor-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 2rem;
}

.index-vendor-text {
    width: 40%;
}

.index-vendor-text h3 {
    color: var(--white);
    font-size: 4rem;
    font-weight: 600;
}

.index-vendor-img {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.index-vendor-body {
    width: 100%;
}

.index-vendor-body h2 {
    color: var(--white);
}

.index-vendor-data-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin: 3rem auto 0;
}

.index-vendor-foot {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.index-vendor-foot > a {
    transition: scale .2s ease;
}

.index-vendor-foot > a:hover {
    scale: 1.2;
    background-color: var(--yellow);
}

.index-vendor-foot span {
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
}

.index-vendor-foot span a {
    color: var(--white);
}

/* ###PRODUCT_WRAPPER### */

.product-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    padding-bottom: 5rem;
}

.product-card {
    width: 20rem;
    background-color: var(--blue);
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    gap: .5rem;
    border-radius: 35px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
}

.suggested-card {
    width: 100% !important;
    box-shadow: none;
}

.suggest-card-btn {
    text-wrap: nowrap;
}

.refund-btn {
    text-wrap: nowrap;
}

.card-head {
    color: var(--white);
    text-align: center;
}

.card-head h4 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: .2rem;
}

.card-sum {
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    font-size: 1.2rem;
    padding: .2rem .5rem;
}

.card-sum span {
    padding-inline: .5rem;
}

.card-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 400;
    font-family: "helveticaBold", sans-serif;
}

.card-link {
    color: var(--white);
    font-size: .8rem;
    font-weight: 400;
    font-family: "helveticaLight", sans-serif;
}

.card-btn {
    background-color: var(--yellow);
    color: var(--white);
    border-radius: 5px;
    padding-inline: 1rem !important;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 400;
    font-family: "helveticaBold", sans-serif;
}

.card-btn img {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
}

.card-add-cart {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ###ADVANCE_SEARCH_MODAL### */

.modal-search-option > .active {
    background-color: var(--white) !important;
    color: var(--blue);
}

.modal-search-option button {
    color: var(--white);
}

.modal-content {
    background-color: var(--blue);
    border-radius: 10px;
    border: none;
}

.modal-search-options {
    gap: 0;
}

.modal-tab-content {
    background-color: var(--white);
    border-radius: 0 10px 10px 10px;
}

.modal-information {
    min-height: 30rem;
    justify-content: center;
    flex-direction: column;
    gap: 1rem !important;
    padding: 1rem;
    color: var(--text-secondary);
}

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

.modal-information input {
    border-radius: 5px !important;
    border: 1px solid var(--black);
}

.modal-radio-container,
.modal-search-radio {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-search-radio {
    text-wrap: nowrap;
}

.modal-search-radio input[type=radio] {
    height: 1rem;
    width: 1rem;
}

.modal-advance-fleids-container {
    width: 90%;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-advance-fleids {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-advance-fleids p {
    margin: 0;
}

.modal-advance-input {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-advance-input input {
    text-align: center;
}

/* ###INFORMATION### */

.information {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.information input {
    padding: .5rem 1rem;
    border-radius: 50vw;
    width: 50%;
    border: 1px solid var(--black);
}

.hero-information input {
    background-color: var(--grey);
    border: 1px solid var(--grey);
}

.hero-information input:active,
.hero-information input:focus {
    border: 1px solid var(--black);
}

.user-information-form {
    width: 60%;
}

.user-information-form p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.user-information label {
    font-size: 1.5rem;
}

.user-information input,
.user-information select {
    border-radius: 50vw;
    padding: .5rem 1.5rem;
    color: var(--black);
    border: 1px solid var(--black);
}

.user-information textarea {
    border-radius: 10px;
    padding: .5rem 1.5rem;
    color: var(--black);
    height: 10rem;
    border: 1px solid var(--black);
}

.info-link {
    text-align: end;
    font-size: .6rem;
    color: var(--pink);
    font-weight: 600;
}

.info {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.user-information span {
    text-align: end;
    font-size: .6rem;
    font-weight: 500;
}

.user-information button {
    width: 100%;
    font-weight: 400;
}

.sign-terms, .delete-terms {
    flex-direction: row;
    align-items: center;
}

.sign-terms input[type=checkbox] {
    height: 1rem;
    width: 1rem;
    accent-color: var(--yellow);
}

.sign-terms span {
    font-size: .7rem;
    color: var(--black);
}

.delete-terms input[type=checkbox] {
    height: 1.5rem;
    width: 1.5rem;
    accent-color: var(--yellow);
}

.delete-terms span {
    font-size: 1rem;
    color: var(--black);
}

.delete-user-form-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-direction: row;
}

.delete-user-form-btn button {
    border-radius: 50vw;
    font-weight: 500;
}

.ap-otp-inputs {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ap-otp-input {
    border-radius: 5px;
    border: 1px solid var(--black);
    color: var(--black);
    width: 10%;
    padding: .5rem 1rem;
    text-align: center;
}

/* ###USER_GUIDE### */

.guide-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.guideline {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
    width: 80%;
    margin: auto;
}

.guide-number,
.guide-img {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-number {
    height: 8rem;
    width: 8rem;
    border-radius: 50vw;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
    font-weight: 600;
}

.guide-img img {
    height: 10rem;
    width: 10rem;
    object-fit: contain;
}

.guide-data {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guide-data-head h4 {
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
    color: var(--black);
}

.guide-data-body p {
    font-size: 1.2rem;
    color: var(--black);
    margin: 0;
    text-wrap: pretty;
}

/* ###ABOUT_US### */

.about-us-wrapper {
    margin-top: 2rem;
}

.about-us-wrapper > h3 {
    font-size: 2rem;
    margin: 0;
}

.about-us-wrapper > p {
    font-size: 1.2rem;
    margin: 0;
}

/* ###CONTACT_US### */

.contact-us-information {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 5rem;
}

.information-block {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 10rem;
}

.thanks-data {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thanks-data p a {
    font-weight: 400;
    font-family: "helveticaBold", sans-serif;
    color: var(--blue);
}

.block-heading h6 {
    font-size: 2rem;
    color: var(--black);
    margin: 0;
}

.block-heading ul {
    margin: 1rem 0;
    color: var(--blue);
}

.block-heading-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.block-heading-btn button {
    border-radius: 50vw;
}

.block-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 60%;
    justify-content: space-between;
}

.block-content span {
    font-size: 1rem;
}

.block-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}

.block-foot a {
    color: var(--yellow);
    font-size: 1.5rem;
}

.block-foot-contacts a {
    color: var(--black) !important;
}

/* ###MULTIPLE_ORDERS### */

.multi-order-section {
    display: block;
    overflow: hidden;
}

.multi-order-container {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.multi-order-container > .block-heading {
    width: 60%;
}

.multi-order-container > .block-heading-btn {
    width: 40%;
    flex-direction: column;
    align-items: end;
}

.multi-order-container > .block-heading-btn button {
    min-width: 15rem;
}

.multi-order-info {
    display: flex;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: space-between;
}

.multi-order-data span {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.pending-points {
    filter: grayscale(1);
}

/* ###ORDER_CONFIRMATION### */

.order-confirmation {
    background-color: var(--blue);
    color: var(--white);
    min-height: 10rem;
    padding: 1rem;
    width: 60%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-confirmation-head h6 {
    color: var(--white);
    font-weight: 600;
}

.order-confirmation-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-confirmation-data {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ##USER_SECTION### */

.custom-tooltip {
    --bs-tooltip-bg: var(--grey);
    --bs-tooltip-color: var(--black);
    font-weight: 500;
    font-size: .8rem;
}

.user-options {
    z-index: 1;
}

.user-options svg {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
}

.user-options-active {
    fill: var(--yellow);
}

.refer-or {
    text-align: center;
    font-weight: 600;
}

.code-copy {
    flex-direction: row;
}

.code-copy input {
    flex-grow: 1;
}

.code-copy button {
    width: fit-content;
    padding: .5rem;
}

.code-copy span {
    text-align: start;
}

.userWrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
}

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

.my-order-form {
    width: 15%;
}

.my-order-form select {
    border-radius: 50vw 0 0 50vw;
    background-color: var(--blue);
    color: var(--white);
}

.orderWrapper {
    gap: 2rem !important;
}

.order-card-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.order-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-bottom: dotted 2px var(--blue);
    padding-bottom: 1rem;
}

.order-card-head {
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.order-card-heading h6 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.order-card-link img {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
}

.order-card-body {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.order-card-body-data {
    display: flex;
    align-items: end;
    gap: 1rem;
}

.order-card-img svg {
    height: 5rem;
    width: 5rem;
    object-fit: contain;
}

.order-card-details {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.order-card-details p {
    margin: 0;
}

.order-card-body-options {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 20%;
    align-items: end;
}

.order-card-body-options p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.order-card-body-options button {
    border-radius: 50vw;
}

.points-img img {
    height: 1rem;
    width: 1.5rem;
    object-fit: contain;
}

.order-pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    cursor: pointer;
    position: absolute;
    bottom: 0;
}

.wallet-pagination {
    position: unset !important;
}

.order-pagination a {
    color: var(--blue);
}

.upc-info {
    color: var(--red);
    font-size: .8rem;
}

.upc-container {
    width: 50%;
    text-align: justify;
}

.upc-container p {
    font-size: 1.5rem;
}

.upc-container p b {
    color: var(--blue);
}

.wallet-container {
    padding: 2rem 0;
    margin: 2rem auto;
}

.wallet-container,
.wallet-head {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

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

.balance {
    width: 100%;
    background-color: var(--light-blue);
    padding: 1rem .5rem;
    border-radius: 5px;
}

.balance span {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.2rem;
}

.payment {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-failed-wrapper {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-failed-wrapper p {
    font-size: 1.2rem;
    font-weight: 400;
    font-family: "helveticaBold", sans-serif;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.payment-data {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ###TABLE### */

.tableWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.data-table-overflow {
    overflow-x: scroll;
}

.table-label {
    border-radius: 10px 10px 0 0;
    background-color: var(--black);
    color: var(--white);
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.data-table .table-label {
    width: 100%;
}

.data-table {
    height: 80%;
    margin: 0;
}

.data-table-head tr th,
.data-table-body tr td {
    color: var(--black);
    border: none;
    border-left: 1px solid var(--blue);
    border-right: 1px solid var(--blue);
    word-break: keep-all;
    white-space: nowrap;
    text-wrap: nowrap;
    text-align: center;
    font-size: .8rem;
    font-weight: 500;
}

.data-table-head tr th {
    font-weight: 600 !important;
    background: var(--light-yellow);
}

.data-table-body tr td a {
    color: var(--blue);
    font-weight: 400;
    font-family: 'helveticaBold'
}

.data-table-body tr td button {
    font-size: .8rem;
    padding: .2rem 1rem;
}

.data-table-body tr td:first-child,
.data-table-head tr th:first-child,
.data-table-body tr td:last-child,
.data-table-head tr th:last-child {
    border-left: none;
    border-right: none;
}

.data-table-body tr:nth-child(even) > * {
    background: var(--light-yellow);
}

.data-table-body tr:nth-child(odd) > * {
    background: var(--white);
}

/* ###CAREER### */

.careerSection {
    margin: 2rem auto;
    width: 50%;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.career-head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.career-head h2 {
    font-weight: 600;
}

.career-head p {
    font-size: 1.1rem;
}

.career-head h3 {
    font-weight: 600;
    font-size: 1.5rem;
}

/* ###SUPPORTING_PAGES### */

.supporting-pages {
    width: 60%;
    margin: 2rem auto;
}

.supporting-data p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.supporting-data ol li {
    font-size: 1.1rem;
    margin-bottom: .8rem;
}

/* ###STORE### */

.info-marqee {
    margin: 1rem 0;
    color: var(--white);
    background-color: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem 0;
}

.store-section {
    margin: 2rem auto;
    width: 100%;
}

.store-banner {
    height: 15rem;
    width: 100%;
}

.store-banner-card {
    height: 15rem;
}

.store-banner-card-data {
    height: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-banner-card-data a {
    height: 100%;
    width: 100%;
}

.store-banner-card-data a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    background: var(--white);
}

.store-banner-inner,
.store-banner-item {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.store-banner-item a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--white);
}

.store-container {
    display: flex;
    align-items: start;
    gap: 2rem;
    position: relative;
    width: 100%;
}

.overlay {
    position: absolute;
}

.filters {
    width: 18%;
    background-color: var(--filter-bg);
    border-radius: 10px;
    position: sticky;
    top: 11%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1rem;
    min-height: 3rem;
    border-bottom: 1px solid var(--grey);
}

.filter-foot {
    border: none;
}

.filter-clear-btn {
    background: transparent;
    border: none;
    font-size: .8rem;
}

.filter-heading {
    font-weight: 500;
    font-size: 1.5rem;
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.filter-form label, .cat-span {
    font-size: 1.2rem;
}

.filter-input-group input {
    border-radius: 20px;
    border: 1px solid var(--black);
    width: 100%;
    padding: 0 .5rem;
}

.categories-field {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
    border: none;
    padding: 0;
}

.cat-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 0;
    width: 100%;
}

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

.cat-data {
    display: flex;
    align-items: center;
    width: 80%;
}

.cat-name {
    width: 50%;
}

.cat-count {
    font-size: .8rem;
}

.cat-select input {
    accent-color: var(--pink);
    height: 1rem;
    width: 1rem;
}

.filter-btn {
    border: none;
    background: transparent;
    border-radius: 0 50vw 50vw 0;
    background-color: var(--yellow);
    padding: .2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
}

.price-fields {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.filter-range-filed {
    width: 48%;
}

.filter-range-filed input {
    width: 100%;
    padding: 0 .5rem;
    border: 1px solid var(--black);
    border-radius: 20px;
    margin-top: .5rem;
    -moz-appearance: textfield;
}

.slider {
    height: 5px;
    background-color: var(--blue);
    border-radius: 5px;
    position: relative;
    margin-top: 1rem;
}

.slider .price-progress {
    height: 5px;
    inset: 0;
    width: 0;
    position: absolute;
    border-radius: 5px;
    background-color: var(--blue);
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    top: -20px;
    height: 5px;
    width: 100%;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 1rem;
    width: 1rem;
    background-color: var(--blue);
    border-radius: 50%;
    -webkit-appearance: none;
    pointer-events: auto;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    height: 1rem;
    width: 1rem;
    border: none;
    background-color: var(--blue);
    border-radius: 50%;
    -moz-appearance: none;
    pointer-events: auto;
    cursor: pointer;
}

.product-store-wrapper {
    width: 82%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sort-btn img {
    height: 1rem;
    width: 1rem;
}

.sort-dd-menu {
    background-color: var(--yellow);
    z-index: 999 !important;
}

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

.filter-chips {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-chip {
    border: 1px solid var(--black);
    padding: .5rem 1rem;
    border-radius: 50vw;
}

.filter-chip p {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-chip span button {
    background: none;
    border: none;
    height: 1rem;
    width: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-chip span button img {
    mix-blend-mode: difference;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.product-store-body {
    padding: 1rem 0;
}

.offer-product-card {
    background: var(--gold);
}

.offer-product-card > .card-price a,
.offer-product-card > .card-price span {
    color: var(--black);
}

.offer-product-btn {
    background-color: var(--blue);
}

/* ###FOOTER### */

.vip-footer {
    background-color: var(--black);
}

.foot {
    padding: 2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.foot-top {
    display: flex;
    width: 100%;
    align-items: start;
    justify-content: space-between;
}

.foot-align {
    align-items: center;
}

.foot-top-option {
    width: 23%;
    display: flex;
    justify-content: start;
    align-items: center;
    color: var(--white);
}

.foot-top-option svg {
    height: 2.5rem;
    width: 2.5rem;
    object-fit: contain;
    object-position: center;
    margin-right: .5rem;
}

.foot-top-option h5 {
    margin: 0;
}

.big-foot {
    width: 48%;
    display: flex;
    align-items: start;
    justify-content: space-around;
}

.foot-search {
    width: 100%;
}

.foot-search input {
    flex-grow: 1;
}

.foot-links {
    display: flex;
    flex-direction: column;
    width: 30%;
    gap: .5rem;
}

.foot-links b {
    margin-bottom: 1rem;
}

.foot-links a {
    color: var(--white);
}

.foot-contact {
    width: 100%;
}

.foot-contact a {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.foot-contact a img {
    height: 1.2rem;
    width: 1.2rem;
    object-fit: contain;
}

.foot-data {
    flex-direction: column;
    gap: 1rem;
}

.footer-socials {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.footer-socials img {
    height: 1.2rem;
    width: 1.2rem;
    object-fit: contain;
}

.foot hr {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    color: var(--white);
}

.footer-bottom a {
    color: var(--white);
    font-size: .8rem;
}

/* ###OFFCANVAS### */

.vip-cart-offcanvas {
    background-color: var(--black);
}

.vip-cart-header {
    justify-content: space-between;
}

.vip-cart-header h5 {
    color: var(--blue);
    font-size: 2rem;
    font-family: "helveticaBold", sans-serif;
    font-weight: 700;
}

.vip-cart-header button {
    padding: 0;
}

.vip-cart-body {
    border: 1px solid var(--white);
    max-height: 60vh;
    border-left: none;
    border-right: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cart-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    position: relative;
}

.cart-na > div {
    opacity: .5;
}

.cart-number-na {
    position: absolute;
    width: 100%;
    font-size: .6rem;
    color: var(--red);
    font-family: "helveticaBold", sans-serif;
    font-weight: 700;
    left: 0;
    bottom: -60%;
}

.cart-details {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-data-img img {
    height: 2rem;
    width: 2rem;
    object-fit: contain;
}

.cart-data-number span b {
    font-size: 1.2rem;
}

.cart-price {
    width: 40%;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: end;
}

.cart-remove-btn {
    padding: 0;
}

.cart-remove-btn img {
    height: .8rem;
    width: .8rem;
    object-fit: contain;
}

.vip-cart-foot {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.cart-total-options span {
    color: var(--grey);
    font-size: .8rem;
}

.cart-total-options p {
    margin: 0;
    font-size: 1.5rem;
    font-family: "helveticaBold", sans-serif;
    font-weight: 700;
}

.text-blue {
    color: var(--blue);
}

.text-yellow {
    color: var(--yellow);
}

.cart-total-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.cart-total-buttons button,
.cart-total-buttons a {
    width: 100%;
    border-radius: 5px;
    color: var(--black);
    font-weight: 600;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ###CHECKOUT### */

.checkout-table {
    display: flex;
    flex-direction: column;
    background-color: var(--light-yellow);
    gap: .2rem;
    padding: .5rem;
}

.checkout-table-row {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: end;
    gap: 1rem;
}

.checkout-table-row span {
    font-size: .8rem;
    font-family: "helveticaBold", sans-serif;
    font-weight: 700;
    text-align: end;
}

.checkout-table-row span:first-child {
    width: 50%;
    flex-grow: 1;
}

.checkout-table-row span:last-child {
    min-width: 10%;
}

.checkout-pay {
    margin-top: 1rem;
}

.redeem-conditions {
    font-size: .8rem;
    font-family: 'helvetica';
    font-weight: 400;
}

#redeemPoints {
    height: 1rem;
    width: 1rem;
    accent-color: var(--pink);
    vertical-align: middle;
    margin-right: .5rem;
}

/* ###INVOICE### */

.invoice-wrapper {
    width: 220mm;
    height: fit-content;
    max-height: 297mm;
    margin: 0 auto;
    padding: 0;
    border: 1px solid var(--black);
    outline: 0;
    box-sizing: border-box;
    padding: 1rem;
    margin-top: 2rem;
}

.invoice-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--black);
    padding-bottom: 1rem;
}

.invoice-logo {
    display: flex;
    align-items: center;
    gap: .2rem;
    width: fit-content;
}

.invoice-logo svg {
    height: 2rem;
    width: 2rem;
    object-position: center;
    object-fit: contain;
}

.invoice-logo span {
    text-wrap: nowrap;
    font-size: 1.2rem;
    font-weight: 500;
}

.invoice-number {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 60%;
}

.invoice-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.invoice-details {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.invoice-information {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.invoice-information h4 {
    font-family: "helveticaBold", sans-serif;
    font-size: 1.2rem;
}

.invoice-info {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.invoice-table table {
    width: 100%;
    border: 1px solid var(--black);
}

.invoice-table-row th, td {
    border: 1px solid var(--black);
    text-align: center;
}

.invoice-table-row th {
    font-size: 1.1rem;
    background-color: #D3F8FE;
    padding: .5rem;
}

.invoice-table-row td {
    padding: .2rem;
}

.invoice-total {
    font-family: "helveticaBold", sans-serif;
    text-align: start;
}

.invoice-foot h1 {
    font-family: "helveticaBold", sans-serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.invoice-foot-information {
    display: flex;
    align-items: start;
    gap: 1rem;
    justify-content: space-between;
}

.invoice-foot-info {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.invoice-op-btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

@media print {
    .invoice-op-btns {
        display: none;
    }
}

/* ###MOBILE_ELEMENTS### */

.mobile-bottom-nav {
    display: none;
}

.mobile-product-filter {
    display: none;
}

.filter-close {
    display: none;
}

#id_category{
    height: 20rem;
    overflow-y: scroll;
    width: 100%;
}

@media only screen and (max-width: 991px) and (min-width: 280px) {
    /* ###COMMON### */
    .mob-100w {
        width: 100%;
        margin: auto;
    }

    .vip-btn {
        padding: .5rem .8rem;
        font-size: .8rem;
    }

    .page-heading {
        font-size: 2rem;
        font-weight: 600;
    }

    .subheading {
        font-size: 1.2rem;
    }

    .block-heading h6 {
        font-size: 1.5rem;
    }

    .mob-sub-head {
        font-size: 1.3rem !important;
    }

    .back-to-top-div {
        bottom: 10%;
    }

    .layout-section {
        flex-direction: column;
    }

    .logo a span {
        display: none;
    }

    /* ###NAVBAR### */
    .vip-nav {
        padding: .5rem 1rem;
        margin-top: 1rem;
    }

    .vip-nav-option {
        display: none;
    }

    /* ###ADVANCE_SEARCH_MODAL### */
    .hero-search-option button {
        font-size: .6rem !important;
    }

    .modal-radio-container, .modal-advance-input {
        align-items: unset;
        flex-direction: column;
    }

    .modal-search-radio {
        flex-direction: row;
    }

    .modal-information button {
        min-width: 10rem;
    }

    .digit-modal-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .digit-modal-container input {
        text-align: center;
        width: 25% !important;
    }

    /* ###INDEX### */
    .hero-text {
        margin: 2rem auto;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 3rem;
        min-height: 12rem;
    }

    .hero-img {
        display: none;
    }

    .hero-service-providers {
        width: 100%;
        padding: .5rem 0;
        justify-content: space-between;
    }

    .hero-service-providers span {
        font-size: 1rem;
        border: none;
    }

    .guide-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .guide-step {
        width: 45%;
    }

    .guide-step svg {
        height: 3rem;
        width: 100%;
        object-fit: contain;
    }

    .guide-step p {
        font-size: .8rem;
        font-weight: 500;
    }

    .product-wrapper {
        gap: 1.5rem 1rem;
    }

    .product-card {
        width: 100%;
    }

    .card-sum {
        padding: .2rem .5rem;
    }

    .card-sum span {
        padding-inline: unset;
    }

    .card-price {
        align-items: start;
        padding: .2rem .5rem;
    }

    .card-link {
        font-size: 1rem;
    }

    .card-add-cart button {
        width: 60%;
        font-size: 1.1rem;
    }

    .index-info-section {
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .index-information {
        width: 45%;
    }

    .index-vendor-registration {
        min-height: unset;
    }

    .index-vendor-head {
        padding: 1rem;
    }

    .index-vendor-text {
        width: 60%;
    }

    .index-vendor-text h3 {
        font-size: 2rem;
    }

    .index-vendor-img {
        width: 30%;
    }

    .index-vendor-img img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .index-vendor-data-wrapper {
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: start;
        gap: 1rem;
    }

    .index-information img {
        height: 2rem;
        width: 2rem;
        object-fit: contain;
        aspect-ratio: 1 / 1;
    }

    .index-information h5 {
        font-size: 1rem;
    }

    .index-vendor-foot span {
        font-size: .8rem;
    }

    /* ###LOGIN### */
    .login-container {
        flex-direction: column-reverse;
        align-items: unset;
        justify-content: start;
        overflow-x: hidden;
        gap: 1rem;
    }

    .login-data {
        width: 90%;
    }

    .login-image,
    .login-layout,
    .sign-up-image,
    .sign-up-data {
        width: 100% !important;
    }

    .login-img {
        height: 20vh;
    }

    .sign-in-layout > div {
        width: 100%;
    }

    .ap-otp-input {
        padding: .5rem;
        width: 15%;
    }

    /* ###INFORMATION### */
    .information input {
        padding: .5rem .8rem;
        font-size: .8rem;
        width: 100%;
    }

    /* ###USER_GUIDE### */
    .guideline {
        width: 100%;
        gap: .5rem;
        align-items: start;
    }

    .guide-wrapper {
        gap: 2rem;
    }

    .guide-number {
        display: none;
    }

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

    .guide-data {
        width: 80%;
        text-align: justify;
    }

    .guide-data-head h4 {
        font-size: 1rem;
    }

    .guide-data-body p {
        font-size: .8rem;
    }

    /* ###404### */
    .page-not-found img {
        height: 100%;
        width: 100%;
    }

    /* ###USER_PAGES### */
    .user-information-form {
        width: 100%;
    }

    .wallet-balance {
        flex-direction: column;
        gap: 1rem;
    }

    .balance {
        width: 100%;
    }

    .my-order-form {
        width: 40%;
    }

    .order-card-body {
        flex-direction: column;
        gap: 1rem;
        justify-content: space-between;
    }

    .order-card-body-data {
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .order-card-body-options {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .order-card-img svg {
        height: 5rem;
        width: 5rem;
        object-fit: cover;
    }

    .order-confirmation {
        width: 100%;
    }

    .order-confirmation-data span:first-child {
        width: 30%;
    }

    .block-heading-btn button {
        flex-grow: 1;
    }

    .upc-container {
        width: 100%;
    }

    .upc-container p {
        font-size: 1.2rem;
    }

    .delete-terms {
        justify-content: space-between;
    }

    .delete-terms input[type=checkbox] {
        height: unset;
        width: unset;
    }

    /* ###CAREER### */
    .careerSection {
        margin: 0;
        width: 100%;
        gap: 1rem;
    }

    /* ###CONTACT### */
    .contact-us-information {
        align-items: unset;
        justify-content: unset;
        padding-bottom: 3rem;
        flex-direction: column;
        gap: 2rem;
    }

    .information-block {
        width: 100%;
        gap: 1rem;
        height: 10rem;
    }

    .block-foot {
        width: 100%;
    }

    /* ###STORE### */
    .filters {
        width: 100%;
        height: 100dvh;
        top: 0;
        left: -100%;
        position: fixed;
        z-index: 99;
        overflow-y: scroll;
        padding: 1rem 3rem 5rem 2rem;
        transition: left .5s ease;
    }

    .filter-close {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 2%;
        top: 3%;
        background-color: var(--blue);
        border-radius: 50vw;
        padding: .5rem;
    }

    .filter-close img {
        height: 1rem;
        width: 1rem;
        object-fit: contain;
    }

    #sidebar-anime:checked ~ .filters {
        left: 0;
    }

    #sidebar-anime:checked ~ .overlay {
        background: linear-gradient(#0003, #0000008d);
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        transition: background .5s ease;
    }

    .product-store-head {
        gap: 1rem;
        align-items: start;
        flex-direction: column-reverse;
    }

    .filter-field {
        min-height: fit-content;
    }

    .filter-chips {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: nowrap;
        overflow-x: scroll;
        padding-bottom: 1rem;
    }

    .filter-chip p {
        text-wrap: nowrap;
    }

    .store-banner-item a img {
        object-fit: contain;
    }

    .product-store-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .shot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .store-sortby {
        width: fit-content;
    }

    .mobile-product-filter {
        display: flex;
    }

    .mobile-product-filter img {
        width: 1rem;
        height: 1rem;
    }

    /* ###MULTIPLE_ORDERS### */
    .multi-order-container {
        flex-direction: column;
    }

    .multi-order-container > .block-heading {
        width: 100%;
    }

    .multi-order-container > .block-heading-btn {
        width: 100%;
        align-items: center;
        margin-top: 1rem;
    }

    .multi-order-info {
        overflow: scroll;
        gap: 1rem;
    }

    .multi-order-data {
        text-wrap: nowrap;
    }

    .multi-order-data span {
        font-size: .8rem;
        margin-bottom: .5rem;
    }

    /* ###FOOTER### */
    .vip-footer {
        display: none;
    }

    /* ###MOBILE_BOTTOM_BAR### */
    .mobile-bottom-nav {
        display: flex;
        position: sticky;
        bottom: 0;
        background-color: var(--black);
        z-index: 99;
        padding: 1rem 2rem;
        align-items: center;
        justify-content: space-between;
    }

    .mob-nav-dd button {
        padding: 0 !important;
    }

    .mac-btns button {
        min-width: 40% !important;
    }

}

@media only screen and (max-width: 991px) and (min-width: 550px) {

        .logo a span {
        display: unset;
    }

    .hero-section {
        max-height: unset;
    }

    .product-card {
        width: 48%;
    }

    .back-to-top-div {
        bottom: 20%;
    }

    .filters {
        border-radius: 0;
        width: 40%;
    }

    .store-banner-item a img {
        object-fit: cover;
    }

    .order-card-body-data {
        justify-content: unset;
        gap: 1rem;
    }

    .order-card-img {
        width: 30%;
    }

    .page-not-found {
        height: 80dvh;
    }

    .page-not-found img {
        object-fit: contain;
        height: 40%;
        width: 40%;
    }

    .page-not-found h4 {
        font-size: 1rem;
    }

    .modal-information {
        min-height: fit-content;
    }

    .modal-radio-container, .modal-advance-input {
        align-items: center;
        flex-direction: row;
    }

    .delete-terms input[type=checkbox] {
        height: 1.5rem;
        width: 1.5rem;
    }

    .delete-user-form-btn button {
        flex-grow: 1;
    }

    .ap-otp-input {
        width: 10%;
    }

    .multi-order-container > .block-heading-btn {
        align-items: start;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .tab-appear-section {
        flex-direction: column-reverse;
        justify-content: center;
        height: fit-content;
        overflow-x: hidden;
    }

    .tab-appear {
        display: flex;
        width: 100%;
        height: 30dvh;
    }

    .tab-appear img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .information input {
        width: 40%;
    }

    .hero-service-providers {
        width: 50%;
    }

    .back-to-top-div {
        bottom: 7%;
    }

    .mobile-bottom-nav {
        width: 90%;
        margin: auto;
        border-radius: 50vw;
    }

    .guideline {
        align-items: center;
    }

    .page-not-found img {
        height: 100%;
        width: 100%;
    }

    .page-not-found h4 {
        font-size: 1.5rem;
    }

    .contact-us-information {
        align-items: start;
        justify-content: space-between;
        padding-bottom: 3rem;
        flex-direction: row;
        gap: 2rem;
    }

    .order-card-body {
        flex-direction: row;
    }

    .order-card-img {
        width: fit-content;
    }

    .order-card-body-options button {
        text-wrap: nowrap;
    }

    .order-card-body-options {
        flex-direction: column;
        width: fit-content;
    }

    .filter-close {
        top: 2%;
    }

    .wallet-balance {
        flex-direction: row;
    }


    .ap-otp-input {
        width: 7%;
    }

}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .vip-btn {
        padding: .5rem .8rem;
        font-size: .8rem;
    }

    .mob-100w {
        width: 50%;
        margin: 0;
        margin-right: auto;
    }

    .tab-btn {
        margin-left: auto;
        margin-right: 0;
    }

    .tab-appear img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .vip-nav-options, .vip-nav-option {
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        min-height: 10rem;
    }

    .hero-banner-text {
        height: 30rem;
        width: 30rem;
    }

    .hero-banner-img {
        height: 15rem;
        width: 15rem;
    }

    .guide-step {
        width: 15%;
    }

    .product-card {
        width: 18rem;
    }

    .index-vendor-registration {
        min-height: fit-content;
    }

    .filters {
        width: 28%;
    }

    .product-store-wrapper {
        width: 70%;
    }

    .filter-chips {
        width: 80%;
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .filter-chip p {
        text-wrap: nowrap;
    }

    .careerSection,
    .order-confirmation,
    .supporting-pages,
    .upc-container,
    .user-information-form {
        width: 80%;
    }

    .about-us-wrapper > h3 {
        font-size: 1.5rem;
        margin: 0;
    }

    .my-order-form {
        width: fit-content;
    }

}

@media only screen and (max-width: 1450px) and (min-width: 1200px) {
    .mob-100w {
        width: 50%;
        margin: 0;
        margin-right: auto;
    }

    .tab-btn {
        margin: 0;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        min-height: 10rem;
    }

    .careerSection,
    .order-confirmation,
    .supporting-pages,
    .upc-container,
    .user-information-form {
        width: 80%;
    }

    .my-order-form {
        width: fit-content;
    }

    .filters {
        width: 25%;
    }

    .product-store-wrapper {
        width: 75%;
    }

    .filter-chips {
        width: 95%;
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .filter-chip p {
        text-wrap: nowrap;
    }

    .ap-otp-input {
        width: 8%;
    }
}

@media only screen and (max-width: 1650px) and (min-width: 1451px) {

    .index-vendor-registration {
        min-height: fit-content;
    }

    .mob-100w {
        width: 30%;
    }

    .tab-btn {
        margin: 0;
        width: 100%;
    }
}

@media only screen and (max-width: 1920px) and (min-width: 1651px) {
    .tab-btn {
        margin: 0;
        width: 100%;
    }
}

@media only screen and (min-width: 1921px) {

    .index-vendor-registration {
        min-height: fit-content;
    }

    .mob-100w {
        width: 30%;
    }

    .custom-container {
        width: 70%;
        margin: auto;
    }

    .tab-btn {
        margin: 0;
        width: 100%;
    }
}

.modal-mac-body {
    background-color: var(--white);
    border-radius: 10px;
}

.mac-form {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: center;
    text-align: center;
}

.mac-btns {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.mac-btns button {
    min-width: 20%;
}

/* ###SELECT_SEARCH### */

.select2-container {
    flex-grow: 1;
    width: 100% !important;
    border-radius: 20px !important;
}

.select2-dropdown {
    border: 1px solid var(--black);
}

.select2-container--open .select2-dropdown {
    z-index: 9999;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--blue) !important;
    color: var(--white) !important;
}

.select2-container--default .select2-selection--single {
    min-height: 2.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
    border-radius: 20px;
    color: var(--black);
    border: 1px solid var(--black);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: unset;
    right: 2%;
}

.select2-selection__rendered {
    font-size: 1rem !important;
    font-weight: 400 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--black) !important;
}

.select2-search .select2-search--inline,
.select2-search__field {
    margin: 0 !important;
    width: 100% !important;
    height: 0 !important;
    min-height: 2.5rem !important;
    border-radius: 0 !important;
}

.modal-message-content {
    background: transparent;
}

.modal-message-body {
    background-color: var(--white);
    border-radius: 20px;
    min-height: 10rem;
}

.modal-message-body p {
    font-weight: 500;
    font-size: 1.2rem;
}

.msg-ul {
    text-decoration: underline;
}

.foot-cat-update {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: var(--white);
    gap: .5rem;
}

.foot-cat-update-head {
    color: var(--white);
    font-size: 1.2rem;
}

.foot-cat-update a {
    color: var(--white);
    border-right: 1px solid var(--white);
    padding-right: .2rem;
}