.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #000;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd
}

*,
::after,
::before {
    box-sizing: border-box
}

@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: smooth
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: .25
}

.h5,
h5 {
    font-size: 1.25rem
}

.h6,
h6 {
    font-size: 1rem
}

p {
    margin-top: 0;
    margin-bottom: 1rem
}

a {
    color: var(--bs-link-color);
    text-decoration: underline
}

a:hover {
    color: var(--bs-link-hover-color)
}

table {
    caption-side: bottom;
    border-collapse: collapse
}

caption {
    padding-top: .5rem;
    padding-bottom: .5rem;
    color: #6c757d;
    text-align: left
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0
}

label {
    display: inline-block
}

button {
    border-radius: 0
}

button:focus:not(:focus-visible) {
    outline: 0
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button,
select {
    text-transform: none
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto
}

@media (min-width:576px) {

    .container,
    .container-sm {
        max-width: 540px
    }
}

@media (min-width:768px) {

    .container,
    .container-md,
    .container-sm {
        max-width: 720px
    }
}

@media (min-width:992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 960px
    }
}

@media (min-width:1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1140px
    }
}

@media (min-width:1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px
    }
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

.col {
    flex: 1 0 0%
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

@media (min-width:576px) {
    .col-sm {
        flex: 1 0 0%
    }

    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

@media (min-width:768px) {
    .col-md {
        flex: 1 0 0%
    }

    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

@media (min-width:992px) {
    .col-lg {
        flex: 1 0 0%
    }

    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

@media (min-width:1200px) {
    .col-xl {
        flex: 1 0 0%
    }

    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

@media (min-width:1400px) {
    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }
}

.table {
    --bs-table-color: var(--bs-body-color);
    --bs-table-bg: transparent;
    --bs-table-border-color: var(--bs-border-color);
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--bs-body-color);
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: var(--bs-body-color);
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: var(--bs-body-color);
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-bottom: 1rem;
    color: var(--bs-table-color);
    vertical-align: top;
    border-color: var(--bs-table-border-color)
}

.table> :not(caption)>*>* {
    padding: .5rem .5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
    color: #5e5e5e !important;

}

.table>tbody {
    vertical-align: inherit
}

.table>thead {
    vertical-align: bottom
}

.table-group-divider {
    border-top: 2px solid currentcolor
}

.caption-top {
    caption-side: top
}

.table-sm> :not(caption)>*>* {
    padding: .25rem .25rem
}

.table-bordered> :not(caption)>* {
    border-width: 1px 0
}

.table-bordered> :not(caption)>*>* {
    border-width: 0 1px
}

.table-borderless> :not(caption)>*>* {
    border-bottom-width: 0
}

.table-borderless> :not(:first-child) {
    border-top-width: 0
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color)
}

.table-striped-columns> :not(caption)>tr> :nth-child(2n) {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color)
}

.table-active {
    --bs-table-accent-bg: var(--bs-table-active-bg);
    color: var(--bs-table-active-color)
}

.table-hover>tbody>tr:hover>* {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color)
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
}

@media (max-width:575.98px) {
    .table-responsive-sm {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:767.98px) {
    .table-responsive-md {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:991.98px) {
    .table-responsive-lg {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:1199.98px) {
    .table-responsive-xl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

@media (max-width:1399.98px) {
    .table-responsive-xxl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

.form-text {
    margin-top: .25rem;
    font-size: .875em;
    color: #6c757d
}

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .form-control {
        transition: none
    }
}

.form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
}

.d-inline {
    display: inline !important
}

.d-inline-block {
    display: inline-block !important
}

.d-block {
    display: block !important
}

.d-grid {
    display: grid !important
}

.d-table {
    display: table !important
}

.d-table-row {
    display: table-row !important
}

.d-flex {
    display: flex !important
}

.border {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
}

.border-dark {
    --bs-border-opacity: 1;
    border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important
}

.w-100 {
    width: 100% !important
}

.align-items-center {
    align-items: center !important
}

.mt-0 {
    margin-top: 0 !important
}

.mt-1 {
    margin-top: .25rem !important
}

.mt-2 {
    margin-top: .5rem !important
}

.mt-3 {
    margin-top: 1rem !important
}

.mt-4 {
    margin-top: 1.5rem !important
}

.mt-5 {
    margin-top: 3rem !important
}

.mt-auto {
    margin-top: auto !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.mb-1 {
    margin-bottom: .25rem !important
}

.mb-2 {
    margin-bottom: .5rem !important
}

.mb-3 {
    margin-bottom: 1rem !important
}

.mb-4 {
    margin-bottom: 1.5rem !important
}

.mb-5 {
    margin-bottom: 3rem !important
}

.p-0 {
    padding: 0 !important
}

.p-1 {
    padding: .25rem !important
}

.p-2 {
    padding: .5rem !important
}

.p-3 {
    padding: 1rem !important
}

.p-4 {
    padding: 1.5rem !important
}

.p-5 {
    padding: 3rem !important
}

.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important
}

.px-1 {
    padding-right: .25rem !important;
    padding-left: .25rem !important
}

.px-2 {
    padding-right: .5rem !important;
    padding-left: .5rem !important
}

.px-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important
}

.px-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important
}

.px-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important
}

.pt-0 {
    padding-top: 0 !important
}

.pt-1 {
    padding-top: .25rem !important
}

.pt-2 {
    padding-top: .5rem !important
}

.pt-3 {
    padding-top: 1rem !important
}

.pt-4 {
    padding-top: 1.5rem !important
}

.pt-5 {
    padding-top: 3rem !important
}

.pb-0 {
    padding-bottom: 0 !important
}

.pb-1 {
    padding-bottom: .25rem !important
}

.pb-2 {
    padding-bottom: .5rem !important
}

.pb-3 {
    padding-bottom: 1rem !important
}

.pb-4 {
    padding-bottom: 1.5rem !important
}

.pb-5 {
    padding-bottom: 3rem !important
}

.fw-bold {
    font-weight: 700 !important
}

.text-center {
    text-align: center !important
}


/* sahil css start */
* {
    font-family: "Raleway", sans-serif;
    font-style: normal;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
a {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    transition: 0.3s ease-in;
}

@font-face {
    font-family: 'Retro Signature';
    src: url('../font/RetroSignatureRegular.woff2') format('woff2'),
        url('../font/RetroSignatureRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {

    opacity: 1;

}


img {
    height: auto;
    max-width: 100%;
    /* width: 100%; */
}

video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

input,
textarea,
select {
    width: 100%;
}

input[type="checkbox"] {
    height: auto;
    width: auto;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
}


:root {

    --text-color-top: #4D4D4D;
    --fs-14: 14px;
    --fs-16: 16px;
    --fs-17: 17px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-22: 22px;
    --fs-23: 23px;
    --fs-24: 24px;
    --fs-25: 25px;
    --fs-26: 26px;
    --fs-27: 27px;
    --fs-30: 30px;
    --fs-35: 35px;
    --fs-40: 40px;
    --fs-45: 45px;
    --fs-50: 50px;
    --fs-60: 60px;
    --fs-70: 70px;
    --fs-80: 80px;
    --fs-90: 90px;
    --fs-100: 100px;
    --lh-45: 45px;
    --lh-40: 40px;
    --lh-30: 30px;
    --lh-20: 20px;
    --lh-25: 25px;
    --lh-28: 28px;
    --lh-27: 27px;



}

p {

    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-30);

    /* 115% */
    letter-spacing: 0.04px;


}

/* single product start */

.stickynavbar-links ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stickynavbar-links ul li a {
    color: var(--text-color-top);
    font-size: 14px;
    font-weight: 500;
    line-height: var(--lh-20);

    /* 142.857% */
}

.stickynavbar-links ul li.active a {
    color: #A95265;


}

.singleproductdetails {
    padding-top: 18px;
}

.productdetails {
    padding-top: 40px;
    display: flex;
    justify-content: flex-end;
    gap: 60px;
    padding-bottom: 74px;
}


.productimages {
    max-width: 645px;
    width: 100%;
}

.productdeatilsdata {
    max-width: 769px;
    width: 100%;
    overflow: hidden;
}

.productimages {
    /* position: sticky;
    top: 200px; */
    height: fit-content;
    padding-bottom: 30px;
}

span.productrating {
    display: flex;
    align-items: center;
    gap: 6px;
    /* padding: 25px 0px; */
}

span.productrating span {
    color: #231F20;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-20);
    /* 100% */
}

span.mainprice {
    color: #A95265;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-30);
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-20);
    /* 66.667% */
}

.sortdiscraption {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

.sortdiscraption p {
    color: #000;
    color: #000;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-30);
    /* 135% */
    letter-spacing: 0.04px;
    padding-bottom: 8px;
}

.colortitle {
    display: flex;
    /* padding-bottom: 40px; */
}

.colortitle span {

    padding-left: 12px;
    color: #4D4D4D;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-20);
}

.colortitle span.color {

    font-weight: 700;
    padding-right: 12px;
    padding-left: 0px;
    border-right: 1px solid #000;

}

.selectcolorflow {
    padding: 35px 0px;
    max-width: 585px;
    width: 100%;
    flex-wrap: wrap;
}

.selectcolorflow {
    display: flex;
    gap: 6px;

}

.selectcolorflow label {
    width: 50px;
    height: 50px;
    display: block;
    padding: 3px;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease-in;
}

.selectcolorflow label span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
}

.selectcolorflow label.active,
label.label-data.data-active {
    border: 1px solid #808080;

}

/* custom radio box */

.customradio {
    display: block;
    position: relative;
    padding-left: 31px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #000;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-14);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-20);
    /* 142.857% */
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

/* Hide the browser's default checkbox */
.customradio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    /* position: absolute; */
    position: relative;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #4D4D4D;
    display: block;
}

/* On mouse-over, add a grey background color */


/* When the checkbox is checked, add a blue background */
.customradio input:checked~.checkmark {
    background-color: transparent;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.customradio input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.customradio .checkmark:after {
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    transform: translate(-45%, -46%);
    background-color: #A95265;
    border-radius: 50%;
    position: absolute;
    content: "";
}

.allSignature {
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
    padding-bottom: 50px;
    gap: 15px;
    max-width: 600px;
    width: 100%;
}

/* custom radio box end */
.buynow {
    display: flex;
    gap: 15px;
    max-width: 645px;
    width: 100%;
}

.allSignature,
.re-order,
.detailsacrodean,
.best-of-tinag,
.shopby {
    max-width: 645px;
    width: 100%;
}

.selectcolorflow {
    max-width: 100%;
}

.buynow input {
    padding: 8px 12px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.50);
    background: #FFF;
    outline: none;
    width: 93px;
}

.addtocart {
    border-radius: 2px;
    background: #231F20;
    padding-top: 20px;
    padding: 13px 0px;
    width: 100%;
    color: #FFF;
    text-align: center;
    font-family: Raleway;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 500;
    /* line-height: 18px; */
    /* 112.5% */
    letter-spacing: 0.16px;
    line-height: normal;
    transition: 0.3s ease-in;
}

.addtocart:hover {
    color: #fff;
    background-color: #A95265;
}

.shopby a {
    width: 100%;
    border-radius: 2px;
    background: #5A31F4;
    display: block;
    margin-top: 25px;
    /* padding: 16px 0px; */
    height: 44px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}


.re-order {
    /* padding-top: 42px;
    border-top: 1px solid rgba(0, 0, 0, 0.50); */
    padding-bottom: 26px;
}

.re-order h2 {
    color: #000;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 700;
    line-height: var(--lh-20);
    /* 100% */
    text-transform: uppercase;
    padding-bottom: 13px;
}

.re-order p {
    color: #4D4D4D;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-25);
    /* 143.75% */
}

span.shadename {
    display: block;
    width: fit-content;
    /* margin-top: 25px; */
    color: #000;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-20);
    /* 100% */
    margin-bottom: 37px;
    margin: 0px !important;
}

span.shadename span {
    color: rgba(0, 0, 0, 0.50);

}

span.shadenameprice {
    color: #A95265;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-20);
    margin-top: 15px;
    /* 66.667% */
    margin-bottom: 42px;
    display: block;
    width: fit-content;
}

span.shadenameprice span {
    color: rgba(0, 0, 0, 0.50);

}

.re-order input {
    color: #4D4D4D;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-20);
    /* 111.111% */
    padding-bottom: 8px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.50);
    padding-bottom: 8x;
    outline: none;
    margin-bottom: 45px;
    margin: 0px !important;
}

.re-order textarea {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.50);
    height: 65px;
    margin-bottom: 45px;
    outline: none;
}

.buynow input {
    margin-bottom: 0px;
    border: 1px solid;
    height: 44px;
}

.header-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;

}

.header-title h3 {
    color: #000;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 700;
    line-height: var(--lh-20);
    /* 100% */
    text-transform: uppercase;
}

.mainacrd {
    padding: 30px 0px;
    padding-top: 0px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.50);

    ;
    padding-bottom: 0px;
}

.acordienbody {
    /* padding: 20px 0px; */
    padding-bottom: 30px;
    display: none;
}

.acordienbody p {
    color: #4D4D4D;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-25);
    /* 143.75% */
}

.productshare {
    padding-top: 36px;
    padding-bottom: 60px;
}

.productshare ul {
    display: flex;
    gap: 20px;
}

.best-of-tinag {
    border: 1px solid rgba(0, 0, 0, 0.50);
    background: #FFF;
    padding: 50px 50px 36px 50px;
    position: relative;
}

.contentflowdata {
    display: flex;
    gap: 37px;
    align-items: center;
}

.productcontet {
    width: 160px;
}

.heading-25 {
    color: #231F20;
    font-family: Raleway;
    font-size: var(--fs-25);
    padding-bottom: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: var(--lh-28);
    /* 112% */
}

.shopbtn {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: #231F20;
    letter-spacing: 0.16px;
    display: inline-block;
    padding: 13px 30px;
    text-align: center;
    border-radius: 2px;
}

.shopbtn:hover {
    color: #fff;
    background: #A95265;
}

.heading-20 {
    color: #000;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 700;
    line-height: var(--lh-20);
    /* 100% */
    text-transform: uppercase;
}

.best-of-tinag .heading-20 {
    position: absolute;
    padding: 0px 21px;
    top: 0;
    background-color: #fff;
    top: -11px;
    margin: 0 auto;
    /* display: block; */
    left: 50%;
    transform: translateX(-50%);
    width: 390px;
}

/* single product end */

/* you may like this product start  */
.heading-30 {
    color: #A95265;
    text-align: center;
    font-family: Raleway;
    font-size: var(--fs-30);
    font-style: normal;
    font-weight: 600;
    line-height: var(--lh-40);
    /* 133.333% */
}

.likeproduct {
    padding: 54px 0px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.productmain {
    max-width: 18%;
    width: 100%;
    position: relative;
}

.productmain a.shopbtn {
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    z-index: 1;
    transition: 0.3s ease-in;
    opacity: 0;
    padding: 12px;
}

.productmain a.shopbtn:hover {
    background: #A95265;
}

.productmain::after {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.50);
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
    transition: 0.3s ease-in;
}

.contentproduct {
    padding-top: 28px;
}

.productmain:hover a.shopbtn,
.productmain:hover::after {
    opacity: 1;
}

.contentproduct h3.heading-20 {
    font-weight: 600;
    line-height: 26px;
    min-height: 78px;
    text-transform: none;
    color: #231F20;
    text-align: center;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 600;
    line-height: 25px;
    /* 125% */
}

.productmain span.productrating {

    padding-top: 7px;
    padding-bottom: 14px;
    justify-content: center;
}


.productmain span.productrating span {
    color: #231F20;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-20);
    /* 111.111% */
}


.productmain span.mainprice {
    color: #A95265;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 700;
    line-height: var(--lh-20);
    margin: 0 auto;
    display: block;
    margin-bottom: 15px;
}

span.available {
    color: #4D4D4D;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-16);
    display: block;
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-20);
    /* 111.111% */
    text-transform: uppercase;
}

section.youmayliketheseproduct {
    padding-bottom: 100px;
}

/* you may like this product end  */


/* single product review start */
.title img {
    display: block;
    margin: 0 auto;
    margin-top: 42px;
}

.title p {
    padding-top: 25px;
    text-align: center;
}

.title a.shopbtn {
    width: 263px;
    margin-top: 47px;
    margin: 0 auto;
    display: block;
    margin-top: 50px;

}

.reviwlist {
    padding-top: 60px;
    max-width: 1352px;
    width: 100%;
    margin: 0 auto;
}

.reviwlist ul li {
    padding: 35px 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.50);
}

.reviews h3 {
    text-align: left;
    line-height: var(--lh-25);
    /* 125% */
    margin-bottom: 9px;
}

.reviews span {
    color: #231F20;
    font-family: Raleway;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: var(--lh-25);
    /* 138.889% */
    padding-bottom: 20px;
    display: block;
    width: fit-content;
}

.reviews span b {
    font-weight: 600;

}

.reviews p {
    color: #231F20;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.reviews span.report {
    padding: 0px;
    margin-left: auto;
    margin-top: 20px;
    font-style: normal;
    color: #231F20;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: var(--fs-20);
    /* 142.857% */
    cursor: pointer;
}

.reviwlist li:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.50);
}

section.singleproductreviw {
    padding-bottom: 78px;
}

.reviwform {
    max-width: 1352px;
    width: 100%;
    margin: 0 auto;
    padding-top: 34px;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.50);
    display: none;
}

.inputfileds {
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
    align-items: flex-start;
    gap: 6px;
}

.inputfileds span {
    color: #231F20;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-14);
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-20);
    /* 142.857% */
}

.inputfileds textarea,
.inputfileds input {
    color: rgba(0, 0, 0, 0.50);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-20);
    /* 125% */
    padding: 10px 19px;
    border: 1px solid rgba(0, 0, 0, 0.30);
    outline: none;
}

.inputfileds label {
    color: #231F20;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-14);
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-20);
    /* 142.857% */
}

.inputfileds textarea {
    border: 1px solid rgba(0, 0, 0, 0.30);
    height: 185px;
}

input.shopbtn {
    margin: 0 auto;
    margin-top: 15px;
    max-width: 215px;
    width: 100%;
    text-align: center;
    display: block;
    border: none;
    transition: 0.3s ease-in;
}

.reviwform.show {
    display: block;
}

.productimages ul {
    display: flex;
    /* justify-content: space-between; */
    justify-content: flex-start;
    gap: 11px;
    flex-wrap: wrap;
}

.productimages ul li {
    border: 2px solid #fff;
    height: 94px;
    cursor: pointer;
    width: 152px;
    transition: 0.3s ease-in;
}

.productimages ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.productimages ul li.active {
    border: 2px solid #A95265;

}

.productimages {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mainproduct {
    max-width: 646px;
    width: 100%;
    height: 569px;
    cursor: pointer;
    margin-bottom: 15px;
    padding-top: 20px;
}

.mainproduct img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: ease-in 0.8s animateflow;

}

/* single product review end */


/* image poup start */
section.viwallimages {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding-top: 67px;
    display: none;
    z-index: 12;

}

section.viwallimages .close {
    position: absolute;
    right: 26px;
    top: 26px;
    cursor: pointer;
}

.mainvectorimg {
    position: absolute;
    top: 0;
    left: 0;
}

.mainsliderdata {
    display: flex;
    gap: 73px;
    align-items: center;
    justify-content: flex-end;
    padding-left: 15px;
}

.mainproductimageslider {
    max-width: 820px;
    width: 100%;
    position: relative;

}

.mainflow {
    position: relative;
}

.mainflow .swiper-button-next,
.mainflow .swiper-button-prev {
    position: relative;
    transform: none;
}

.mainflow {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
}

.mainflow .swiper-button-next:after,
.mainflow .swiper-button-prev:after {
    font-size: 30px;
    color: #4D4D4D;
}

.allcontent h2 {
    color: #231F20;
    font-weight: 500;
    line-height: var(--lh-25);
    /* 83.333% */
    padding-bottom: 30px;
}

span.maincolor span.type {
    font-weight: 700;
    padding-right: 13px;
    border-right: 1px solid #000;
}

span.color {
    font-weight: 500;
    padding-left: 13px;

}

.maincolor span {
    color: #000;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    line-height: var(--lh-20);
    /* 100% */
    text-transform: uppercase;
}

section.viwallimages.show {
    display: block;
    animation: ease-in 0.8s animateflow;
}

@keyframes animateflow {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* .header-title.active+.acordienbody {
    animation: ease-in 0.8s animateflow;
    display: block;

} */
.header-title {
    padding: 20px 0px;
}


.header-title.active span {
    transform: rotate(90deg);
    transition: 0.3s ease-in;

}

.header-title.active span img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.re-order.pt-0 {
    border-top: none;
}

/* image poup end*/


/* extra css for single page */
.order-sampler h3 {
    text-align: left;
    padding-bottom: 19px;
    color: #231F20;
    font-weight: 500;
    line-height: var(--lh-25);
    /* 83.333% */
}

.order-sampler {
    padding-top: 13px;
}

.order-sampler {
    padding-bottom: 40px;
}

.priceflow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.priceflow span.ml {
    color: #000;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-27);
    /* 135% */
    letter-spacing: 0.04px;
}

.selectcolor p {
    color: #000;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-27);
    /* 135% */
    letter-spacing: 0.04px;
    padding-top: 9px;
}

span.label-photo,
span.or {
    display: block;
    color: #4D4D4D;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-18);
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-20);
    margin: 0px !important;
    /* 111.111% */
}

span.label-photo {
    margin-bottom: 60px;
    text-decoration: underline;
    margin-bottom: 15px !important;
}

span.or {
    margin: 15px 0px !important;
}

.imagesahdes ul {
    padding-top: 34px;
    gap: 20px;
    display: flex;
}

.imagesahdes ul li a,
.imagesahdes ul li {
    color: rgba(0, 0, 0, 0.50);

    cursor: pointer;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-14);
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-20);
    /* 142.857% */
    text-transform: uppercase;
}

.imagesahdes ul li.active a {
    color: #000;
    font-weight: 700;
}

.imagesahdes ul li.active {
    color: #000;

}

span.show.curent {
    display: block;
}

.selectcolorflow.flowcolor.curent {
    display: flex;
}

span.show,
.selectcolorflow.flowcolor {
    display: none;
}

.selectcolor p.title {
    padding-top: 40px;
    max-width: 700px;
    width: 100%;
}

.mainsahde {
    margin-bottom: 63px;
}

.mainsahde label input {
    position: absolute;
    opacity: 0;
    right: 0;
}

.mainsahde {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mainsahde label {
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
    width: fit-content;
}

span.select-one-shade {
    display: flex;
    align-items: center;
    gap: 10px;
}

span.select-one-shade span {
    color: #000;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-20);
    /* 100% */
}

span.outborder {
    display: flex;
    width: 17px;
    height: 17px;
    border: 1px solid #4D4D4D;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
}

span.choose {
    width: 9px;
    height: 9px;
    display: block;
    background-color: #A95265;
    border-radius: 50%;
    opacity: 0;
    transition: 0.3s ease-in;
    /* margin-top: 1px; */
}

.mainsahde label span.price {
    color: #A95265;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-30);
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-20);
    /* 66.667% */
}

.mainsahde label.active span.choose {
    opacity: 1;
}

.imagesahdes.flowdata ul {
    padding-top: 0px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

label.customradio.active span.choose {
    opacity: 1;
}

.imagesahdes.flowdata ul li {
    color: rgba(0, 0, 0, 0.50);
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-14);
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-20);
    /* 142.857% */
    text-transform: uppercase;
}

.imagesahdes.flowdata ul {
    gap: 13px;
}

.imagesahdes.flowdata ul li.active {
    color: #000;
    font-weight: 700;

}

.sortdiscraption p {
    max-width: 770px;
    width: 100%;
}

.titleprodutc h1 {
    color: #231F20;
    font-family: Raleway;
    font-size: var(--fs-30);
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-25);
    /* 83.333% */
}

/* extra css for single page end  */



/* ectra css for main work */

.productimages {
    display: none;
}

.productimages.curent {
    display: block;
}

.cartsection {
    max-width: 490px;
    width: 100%;
    margin-left: auto;
    background-color: #fff;
    position: relative;
    height: 100vh;
    /* padding-top: 17px;
    pos
    padding-right: 17px; */
    /* transform: translateX(100%); */
    /* transition: 3s ease-in; */
}

.ceackout {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99;
}

span.close {
    display: block;
    margin-left: auto;
    width: fit-content;
    cursor: pointer;
    position: absolute;
    top: 17px;
    right: 17px;

}

.cartsection h2 {
    padding-top: 10px;
    color: #231F20;
    font-family: Raleway;
    font-size: 49px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px;
    /* 114.286% */
    padding-left: 24px;
    padding-top: 57px;
}

.allproducts .productdetailsdata {
    padding-top: 38px;
    padding-left: 24px;
}

.productdetailsdata {
    display: flex;
    gap: 22px;
}

.productcontent {
    max-width: 277px;
    width: 100%;
}

.productcontent h3 {
    color: #231F20;
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
    padding-bottom: 10px;
}

.productcontent span.price {
    color: #231F20;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
    display: block;
    padding-bottom: 10px;
}

.productcontent span {
    color: #4D4D4D;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
    padding-bottom: 10px;
    display: block;
}

.increment {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.increment span {
    color: #4D4D4D;
    text-align: right;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
    text-decoration-line: underline;
    padding-bottom: 0px;
    cursor: pointer;
}

.increment input {
    width: 93px;
    height: 44px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.50);
    background: #FFF;
    outline: none;
    padding-left: 16px;
}

.products p {
    color: #A95265;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 125% */
    padding-top: 18px;
    padding-left: 24px;
    padding-right: 47px;
}

.checkout .pricesubtotla {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 21px 24px;
    border-top: 1px solid #231F20;
    width: 100%;
    max-width: 100%;
}

.checkout .pricesubtotla span {
    color: #231F20;
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 133.333% */
}

.checkout a.shopbtn {
    max-width: 442px;
    width: 100%;
    margin: 0 auto;

}

.checkout {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 24px;
    width: 100%;
    max-width: 100%;
}

.allproducts {
    height: 88%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    z-index: -2;
}

.logo {
    position: absolute;
    bottom: 130px;
    z-index: 1;
}

.products {
    position: relative;
    z-index: 2;
}

span.colorrgba {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.50);
    /* z-index: 32; */
    /* position: relative; */
    position: absolute;
}

section.ceackout {
    display: none;
}

section.ceackout.show {
    display: block;
    animation: 0.3s ease animateflow;
}

@keyframes animateflow {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}




/* amet product */

section.sitamet {
    padding-top: 14px;
    padding-bottom: 130px;
}

section.sitamet h2 {
    padding-bottom: 21px;
}

section.sitamet .maintitle {
    max-width: 587px;
    width: 100%;
    margin: 0 auto;
}

section.sitamet .maintitle p {
    color: #231F20;
    text-align: center;
    font-family: Raleway;
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    /* 128% */
    letter-spacing: 0.05px;
}

.ametproduct {
    display: flex;
    justify-content: center;
    gap: 42px;
    padding-top: 55px;
}

.ametproduct a h3 {
    color: #231F20;
    text-align: center;
    font-family: Raleway;
    font-size: var(--fs-30);
    margin-top: 38px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    /* 133.333% */
    text-transform: uppercase;
}

.ceackout .allproducts .products,
.ceackout .allproducts .productdetailsdata {
    max-width: 100%;
    width: 100%;
}

/* single page css end */


/* custom design css start */
.selectedcolor {
    width: 620px;
    background: #484349;
    border: 14px solid #252328;
    margin-top: 27px;
    padding: 5px;
}

.mainarea .title p {
    color: #231F20;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 140% */
    padding: 0px;
}

.mainarea .title p.maroom {
    color: #A95265;
    font-weight: 600;

}

.sleectarea {
    padding-top: 28px;
}

.sleectarea h2 {
    color: #231F20;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-16);
    margin-bottom: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 175% */
}

.sleectarea ul {
    display: flex;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.sleectarea ul li h3 {
    color: #231F20;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-16);
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 175% */
}

.chosearea {
    /* max-width: 620px;
    width: 100%; */
    margin-top: 70px;
    height: fit-content;
    position: static;
    top: 100px;
    margin-bottom: 100px;
    padding-left: 170px;
    max-width: 825px;
    width: 100%;
    top: 18% !important;
}

.create-makeupkit {
    display: flex;
    gap: 45px;
    /* justify-content: center; */
}

.samplearea {
    max-width: 795px;
    width: 100%;
    /* padding-left: 58px; */
    background-color: #F5F5F5;
    padding-left: 75px;
}

.sampleareatitle {
    margin-top: 70px;
}

.sampleareatitle span {
    color: #231F20;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 100% */
    text-transform: uppercase;
    padding-bottom: 15px;
    display: block;
}

.sampleareatitle h1 {
    color: #000;
    font-family: Raleway;
    font-size: var(--fs-35);
    font-style: normal;
    font-weight: 500;
    line-height: 46px;
    /* 131.429% */
    text-transform: uppercase;
    margin-bottom: 18px;
}

.sampleareatitle p {
    color: #231F20;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 140% */
    /* margin-bottom: 10px; */
}

.mainarea .title p {
    margin-bottom: 10px;
}

.selectshade h2 {
    color: #A95265;
    font-family: Raleway;
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 140% */
    text-transform: uppercase;
    padding-bottom: 30px;
    padding-top: 55px;
}

.selectshade {
    position: relative;
}

span.alloverlay {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background-color: red;
    z-index: 9;
    display: none;
}

.framelogog {
    position: absolute;
    top: 10px;
    left: 0;
}

section.custom-makeup-kit {
    position: relative;
}

section.custom-makeup-kit::after {
    position: absolute;
    content: "";
    height: 100%;
    background-color: #F5F5F5;
    top: 0;
    right: 0;
    max-width: 50%;
    width: 100%;
    z-index: -1;
    /* display: none; */
}

.slectamakupshdaecolor ul li {
    width: 86px;

}

.colorshade {
    cursor: pointer;
    position: relative;
}

/* .colorshade .disabled{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 2555, 0.6);
} */
.slectamakupshdaecolor ul li h3 {
    color: #000;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.18px;
    margin-top: 6px;
}

.slectamakupshdaecolor ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 55px;
    /* justify-content: center; */
    row-gap: 15px;
}

.samplearea {
    padding-bottom: 80px;
}

.framelogog {
    position: absolute;
    top: -34px;
    left: 0px;
    z-index: -23;
}

.selectedcolor {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    /* align-items: center; */
}

.selectedcolor {
    padding: 16px;
}

.selectedcolor span {
    display: block;
    border-radius: 50%;
    position: relative;
    cursor: pointer;

}

/* shade css end */



.selectedcolor {
    /* display: grid; */
    grid-template-columns: repeat(5, minmax(0, 1fr));
    /* align-items: center; */
    margin-left: auto;
}

.selectedcolor span.closemeshade {
    position: absolute;
    bottom: 0;
    right: 0;
    cursor: pointer;
}

.selectedcolor span {
    max-width: fit-content;
    margin: 0 auto;
    height: fit-content;
    width: 100%;
}

.selectedcolor span.closemeshade img {
    filter: invert(1);
    max-width: 20px;
}

.colorshade {
    border: 3px solid transparent;
    /* border-radius: 50%; */
    width: 84px;
    height: 84px;
    overflow: hidden;
    background-repeat: no-repeat;
    border-radius: 56%;
    background-size: cover;
    border: 3px solid transparent;
    background-size: 101px;
    background-position: center;
    transition: 0.3s ease-in;
}

.colorshade.selected {
    border: 3px solid #A95265;

}

.colorshade img {
    width: 100%;
    height: 100%;
    display: none;
}

.totalshades {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-direction: column;
    display: none;
    gap: 30px;
    padding-top: 20px;
}

.totalshades .content {

    font-size: 18px;
    padding: 10px 0px;
    font-weight: 400;
}

.totalshades .content span {
    font-size: 18px;
}

.totalshades .content a {
    display: block;
    width: fit-content;
    margin: 0 auto;

}

.allsahdes {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}


/* custom sahde end */
/* custom single product page css start */
.maincustomproduct {
    display: flex;
}

.customproductimage {
    max-width: 810px;
    width: 100%;
}

.customproductdetails {
    max-width: 1095px;
    width: 100%;
    padding: 80px 160px 80px 75px;
    background-color: #F5F5F5;
}





.heading-35 {
    color: #000;
    font-family: Raleway;
    font-size: var(--fs-35);
    font-style: normal;
    font-weight: 500;
    line-height: 46px;
    /* 131.429% */
    text-transform: uppercase;
}

.customproducttitle h1 {
    max-width: 510px;
    width: 100%;
    margin-bottom: 45px;
}

.pigments h2 {
    color: #A95265;
    text-align: left;
    margin-bottom: 20px;
    font-family: Raleway;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    /* 140% */

}

.pigments {
    padding-bottom: 30px;
}

.pigments ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 25px;
    row-gap: 16px;
}

.pigments ul li {
    padding: 8px 16px;
    cursor: pointer;
    color: #FFF;
    text-align: center;
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 133.333% */
    letter-spacing: 0.18px;
    border: 2px solid transparent;
    transition: 0.3s ease-in;
}

.pigments ul li.active {
    border: 2px solid #000;
}

.pigments .allSignature {
    padding: 0px;
    max-width: 860px;
    width: 100%;
}

.pigments .allSignature .customradio {
    color: #000;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 111.111% */
}

.pigments .allSignature {
    column-gap: 15px;
    row-gap: 20px;
}

.customproductimage .maintabs {
    display: none;
    width: 100%;
    height: 100%;
    position: relative;

}

.customproductimage .maintabs .mainlogog {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.customproductimage .maintabs.curent {

    display: flex;
    justify-content: center;

}

.productdetailsdatacustom .fulldeatils h2 {

    text-align: center;
    margin-top: 24px;
    color: #FFF;
    text-align: center;
    font-family: Raleway;
    font-size: var(--fs-22);
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    /* 104.545% */
    letter-spacing: 0.22px;
    margin-bottom: 25px;
}

.productdetailsdatacustom .fulldeatils h3 {
    color: #FFF;
    text-align: center;
    font-family: Raleway;
    font-size: var(--fs-22);
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    /* 104.545% */
    letter-spacing: 0.22px;
    margin-bottom: 50px;
}

.productdetailsdatacustom .fulldeatils input {
    color: #FFF;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: var(--fs-18);
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 111.111% */
    max-width: 385px;
    width: 100%;
    padding-bottom: 8px;
    border-bottom: 1px solid #df9f80;
    border: none;
    outline: none;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.50);
}

.productdetailsdatacustom .fulldeatils input::placeholder {
    color: #fff;
}

.fulldeatils span.price {
    color: #FFF;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    /* 104.545% */
    letter-spacing: 0.22px;
    display: block;
    margin: 37px 0px;
}

.fulldeatils a {
    border-radius: 2px;
    background: #FFF;
    color: #231F20;
    text-align: center;
    font-family: Raleway;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 112.5% */
    letter-spacing: 0.16px;
    max-width: 350px;
    width: 100%;
    display: block;
    padding: 16px 0px;
}

.productdetailsdatacustom {
    position: relative;
    z-index: 1;
}

[activeproduct="pigments3"] .fulldeatils h3,
[activeproduct="pigments4"] .fulldeatils h3,
[activeproduct="Shimmers1"] .fulldeatils h3,
[activeproduct="Shimmers3"] .fulldeatils h3,
[activeproduct="Shimmers4"] .fulldeatils h3,
[activeproduct="Shimmers5"] .fulldeatils h3,
[activeproduct="glitters3"] .fulldeatils h3,
[activeproduct="glitters4"] .fulldeatils h3,
[activeproduct="pigments3"] .fulldeatils span.price,
[activeproduct="Shimmers1"] .fulldeatils span.price,
[activeproduct="pigments4"] .fulldeatils span.price,
[activeproduct="Shimmers1"] .fulldeatils span.price,
[activeproduct="Shimmers3"] .fulldeatils span.price,
[activeproduct="Shimmers4"] .fulldeatils span.price,
[activeproduct="Shimmers5"] .fulldeatils span.price,
[activeproduct="glitters3"] .fulldeatils span.price,
[activeproduct="glitters4"] .fulldeatils span.price,
[activeproduct="glitters"] .fulldeatils span.price,
[activeproduct="pigments3"] .fulldeatils input,
[activeproduct="pigments4"] .fulldeatils input,
[activeproduct="Shimmers3"] .fulldeatils input,
[activeproduct="Shimmers3"] .fulldeatils input,
[activeproduct="Shimmers5"] .fulldeatils input,
[activeproduct="glitters3"] .fulldeatils input,
[activeproduct="glitters4"] .fulldeatils input,
[activeproduct="pigments3"] .fulldeatils h2,
[activeproduct="pigments3"] .fulldeatils h2,
[activeproduct="Shimmers1"] .fulldeatils h2,
[activeproduct="Shimmers3"] .fulldeatils h2,
[activeproduct="Shimmers5"] .fulldeatils h2,
[activeproduct="pigments4"] .fulldeatils h2,
[activeproduct="Shimmers4"] .fulldeatils h2,
[activeproduct="glitters3"] .fulldeatils h2,
[activeproduct="glitters4"] .fulldeatils h2 {
    color: #000;
}

[activeproduct="pigments3"] .fulldeatils input::placeholder,
[activeproduct="pigments4"] .fulldeatils input::placeholder,
[activeproduct="Shimmers1"] .fulldeatils input::placeholder,
[activeproduct="Shimmers3"] .fulldeatils input::placeholder,
[activeproduct="Shimmers4"] .fulldeatils input::placeholder,
[activeproduct="Shimmers5"] .fulldeatils input::placeholder,
[activeproduct="glitters3"] .fulldeatils input::placeholder,
[activeproduct="glitters4"] .fulldeatils input::placeholder {
    color: #000;


}

[activeproduct="pigments3"] .fulldeatils input,
[activeproduct="pigments4"] .fulldeatils input,
[activeproduct="Shimmers1"] .fulldeatils input,
[activeproduct="Shimmers3"] .fulldeatils input,
[activeproduct="Shimmers4"] .fulldeatils input,
[activeproduct="Shimmers5"] .fulldeatils input,
[activeproduct="glitters3"] .fulldeatils input,
[activeproduct="glitters4"] .fulldeatils input {
    padding-bottom: 8px;
    border-bottom: 1px solid #000;
}

[activeproduct="pigments3"] .fulldeatils a,
[activeproduct="pigments4"] .fulldeatils a,
[activeproduct="Shimmers3"] .fulldeatils a,
[activeproduct="Shimmers4"] .fulldeatils a,
[activeproduct="Shimmers5"] .fulldeatils a,
[activeproduct="glitters3"] .fulldeatils a,
[activeproduct="glitters4"] .fulldeatils a {
    background-color: #A95265;
    color: #fff;
}

section.singleproductreviw .title p {
    padding-bottom: 0px;
}

.selectcolorflow label span.name {
    display: none;
}

.colortitle span {
    text-transform: uppercase;
}

.allcolors {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.selectcolorflow {
    padding-top: 0px;
}

.selectcolor.flowmain {
    padding-bottom: 35px;
}

span.show.flow-data {
    display: block;
    color: #000;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: Raleway;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: var(--fs-20);
    /* 100% */
    text-transform: none;

}

.selectcolorflow.flowcolor.curent {
    flex-direction: column;
}

.allproductsimage.curent {
    display: block;
}

.allproductsimage {
    display: none;
}

.selectcolorflow label:first-child {
    pointer-events: all;
}

.selectcolorflow label:nth-child(2) {
    pointer-events: all;
}

/* 
 .selectcolorflow label {
    pointer-events: none;

}  */

.header-title span {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-in;
}

/* custom single product page css start */




/* shhil css end */

/* himanshu css start */
* {
    font-family: "Raleway", sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
a {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    transition: 0.3s ease-in;
}

@font-face {
    font-family: 'Retro Signature';
    src: url('../font/RetroSignatureRegular.woff2') format('woff2'),
        url('../font/RetroSignatureRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}





img {
    height: auto;
    max-width: 100%;
    /* width: 100%; */
}

video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

input,
textarea,
select {
    width: 100%;
}

input[type="checkbox"] {
    height: auto;
    width: auto;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: none;
}


/* :root {
    --white: #fff;
    --light-white: #F4F4F4;
    --black: #000;
    --dark-grey: #191919;
    --yellow: #FED401;
    --fs-14: 14px;
    --fs-16: 16px;
    --fs-17: 17px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-22: 22px;
    --fs-23: 23px;
    --fs-24: 24px;
    --fs-25: 25px;
    --fs-26: 26px;
    --fs-27: 27px;
    --fs-30: 30px;
    --fs-40: 40px;
    --fs-45: 45px;
    --fs-50: 50px;
    --fs-60: 60px;
    --fs-70: 70px;
    --fs-80: 80px;
    --fs-90: 90px;
    --fs-100: 100px;

} */


:root {
    --white: #fff;
    --black: #000;
    --black-light: #231F20;
    --primary-pink: #A95265;
    --skin-color: #F3EEE9;
    --skin-color2: #F5F5F5;
    --fs-120: 120px;
    --fs-152: 152px;
    --fs-100: 100px;
    --fs-40: 40px;
    --fs-50: 50px;
    --fs-32: 32px;
    --fs-35: 35px;
    --fs-30: 30px;
    --fs-20: 20px;
    --lh-125: 125px;
    --fs-25: 25px;
    --lh-45: 45px;
    --lh-40: 40px;
    --lh-30: 30px;

}


/* HEADER  */

.top-header {
    background: var(--black);
    color: var(--white);
    padding: 5px 0px;
}

.grid-top-head-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

ul.cart-list {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-email {
    display: flex;
    align-items: center;
    gap: 15px;
}

.grid-top-head-main a,
.grid-top-head-main p {
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.036px;
    color: var(--white);
}

.grid-top-head-main a span,
.grid-top-head-main p span {
    font-weight: 700;
}

.logo-main {
    max-width: 310px;
    width: 100%;
}

ul.navlist li a {
    font-family: "Raleway", sans-serif;
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
}

ul.navlist li a:hover {
    color: var(--primary-pink);
}

.navlist-holder ul.navlist {
    display: flex;
    align-items: center;
    gap: 30px;
}

.grid-main-header-here {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.main-header {
    background: var(--white);
    padding: 13px 0px;
}

header.custome-header {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 5px;
    position: fixed;
    width: 100%;
    z-index: 11;
    top: 0;
}

.margin-top {
    margin-top: 123px;
}

li.menu-item-has-children {
    position: relative;
}

ul.sub-menu {
    position: absolute;
    padding-top: 35px;
    top: 18px;
    left: 0;
    width: 260px;
    animation: slideup 0.5s ease;
    display: none;
}

li.menu-item-has-children .sub-menu li .sub-menu {
    left: 100%;
    top: 0;
    padding-top: 0px;
}



@keyframes slideup {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);

    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);

    }
}

ul.sub-menu li {
    border-bottom: 1px solid #D3D3D3;
    padding: 8px 18px;
    background: var(--white);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    position: relative;
}

ul.sub-menu li:last-child {
    border-bottom: none;
}



.top-mail.mailmain {
    margin-left: -21%;
}

.tooglemenu {
    max-width: 40px;
    width: 100%;
    display: none;
}

ul.sub-menu li a {
    text-transform: capitalize;
    font-weight: 500;
    display: block;
}


/* HEADER END */


/* HOME SLIDER  */
.slider-baner {
    min-height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}

section.homeslide-sec {
    position: relative;
    overflow: hidden;
}


.main-title {
    color: var(--black-light);
    font-family: 'Retro Signature';
    font-size: var(--fs-120);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.slider-data p {
    color: var(--black-light);
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 0.064px;
    max-width: 645px;
    width: 100%;
    margin: 0 auto;
}

.slider-data {
    max-width: fit-content;
    width: 100%;
    text-align: center;
}

.slider-data .universal-anchor {
    padding-top: 20px;
}

.slide-top {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.slider-data .main-title {
    padding-bottom: 30px;
    line-height: 80px;
}


.slide-first .slider-baner:last-child {
    position: absolute;
    inset: 0;
    width: 100%;
    z-index: 11;
    animation: showhide 4s ease-in-out infinite;
}


@keyframes showhide {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.mobile-image {
    display: none;
}







/* HOME SLIDER END */


/* HOME PRODUCT  */
section.youmayliketheseproduct.home .heading-30 {
    color: var(--black);
}

section.youmayliketheseproduct.home .likeproduct {
    padding-top: 30px;
    padding-bottom: 0px;
}

section.youmayliketheseproduct.home {
    padding-top: 40px;
    padding-bottom: 65px;
    position: relative;
}

.hometinaglogo {
    max-width: 488px;
    width: 100%;
    position: absolute;
    top: -45%;
    z-index: 1;
    left: -7%;
}

section.youmayliketheseproduct.home .title {
    position: relative;
}

.viewall a {
    color: var(--primary-pink);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.16px;
}

section.youmayliketheseproduct.home .viewall {
    position: absolute;
    top: 0;
    right: 0;
}

/* HOME PRODUCT END */



.productmain-image {
    max-width: 284px;
    height: 212px;
    overflow: hidden;
}

.productmain-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    background: #f5f5f5;
}


/* BESPOKE BEAUTY  */
.sub-title {
    color: var(--black-light);
    font-size: var(--fs-30);
    font-style: normal;
    font-weight: 600;
    line-height: var(--lh-40);
    text-transform: uppercase;
    padding-bottom: 10px;
}

.heading-spoke p {
    color: var(--black-light);
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
}

.bespokebeauty-holder {
    max-width: 1130px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.heading-spoke {
    padding-bottom: 30px;
}

section.bespokebeauty-sec {
    padding: 45px 0px;
    background: var(--skin-color);
}

.heading-spoke .sub-title {
    padding: 10px 0px;
}

section.bespokebeauty-sec p {
    line-height: 30px;
}

/* BESPOKE BEAUTY END */



/* PRODUCT MAINCUSTOM */
.productsdeta {
    height: 755px;
    max-width: 643px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
    overflow: hidden;
    position: relative;
}

.grid-datapro {
    display: grid;
    gap: 60px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1350px;
    margin: 0 auto;
    width: 100%;
}

section.productmaindatasec {
    padding: 70px 0px;
}

.productdeta {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.productsdeta:hover ::after {
    top: 0;
}

.productsdeta:hover .ttitlemainpro {
    opacity: 1;
}

.ttitlemainpro {
    padding: 10px;
    opacity: 0;
    transition: 0.3s ease-in;
}

.productdeta::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: -1;
    top: 120%;
    transition: 0.3s ease-in;
}

.ttitlemainpro p {
    text-transform: uppercase;
}

.four-zero {
    color: var(--primary-pink);
    font-size: var(--fs-40);
    font-style: normal;
    font-weight: 700;
    line-height: var(--lh-40);
}

.ttitlemainpro .four-zero {
    padding: 10px 0px;
    text-transform: uppercase;
}

.two-five {
    color: var(--black-light);
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-40);
    text-transform: uppercase;
}

.ttitlemainpro .universal-anchor {
    padding-top: 35px;
}

.overlay-image {
    max-width: 488px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.baner-imagee {
    position: absolute;
    inset: 0;
}

.baner-imagee img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* PRODUCT MAINCUSTOMEND */


/* CUSTOMIZE ADDING  */
section.customize-secmain {
    background: var(--skin-color);
    padding: 100px 0px;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 488px;
    overflow: hidden;
}

.uppercase {
    text-transform: uppercase;
}

.three-five {
    font-size: var(--fs-35);
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-45);
    text-transform: uppercase;
    padding-bottom: 10px;
}

.custmize-container .three-five {
    padding: 10px 0px;
}

/* section.customize-secmain .adding-tit p {
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-30);
} */

.customize-adding {
    padding-top: 40px;
}

li {
    color: var(--black-light);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 100% */
}

.grid-adding {
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    gap: 15px;
    padding-top: 30px;
}

.scent-title {
    max-width: 165px;
    width: 100%;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
}

.custmize-container {
    max-width: 505px;
    width: 100%;
}

.custmize-container .universal-anchor {
    padding-top: 40px;
}

.pinkpanther-holder {
    max-width: 605px;
    width: 100%;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagepinkpanther {
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
}

.curomize-rowholder {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.two-zero {
    color: var(--primary-pink);
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.curomize-rowholder .row {
    align-items: center;
}

.shopbtn {
    text-transform: uppercase;
}


/* CUSTOMIZE ADDING END */


/* CUSTOMIZE PLATE  */
section.custmize-palatesec {
    background: var(--skin-color2);
    padding: 90px 0px;
    background-repeat: no-repeat;
    background-size: 530px;
    background-position: left center;
}

section.custmize-palatesec .custmize-container {
    max-width: 635px;
    width: 100%;
    margin-left: auto;
}

.platecustomee {
    max-width: 435px;
    width: 100%;
}


/* CUSTOMIZE PLATE END */



/* GIFTY SEC  */
section.customize-secmain.btm .custmize-container .universal-anchor a {
    max-width: 130px;
    width: 100%;
}

.gift-holder {
    max-width: 536px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.gift-holder img {
    transition: 0.3s ease;
}

img.gift-2 {
    position: absolute;
    z-index: -1;
    left: 17px;
    top: 10px;
    transform: rotate(1deg);
}

.gift-holder:hover img.gift-1 {
    transform: rotate(8deg);
}

.gift-holder:hover img.gift-2 {
    transform: rotate(0deg);
    opacity: 0;
}

/* GIFTY SEC END */




/* FOLLOW SEC  */
.heading-spoke {
    max-width: fit-content;
    margin: 0 auto;
    text-align: center;
}

section.follow-ussec .heading-spoke p,
section.follow-ussec .heading-spoke a {
    font-weight: 400;
    text-transform: initial;
    color: #231F20;
}

.foolow-holder,
a.data-mainlink {
    max-width: 338px;
    height: 338px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

a.data-mainlink {
    display: flex;
    align-items: center;
    justify-content: center;
}

.follow-data p {
    color: var(--white);
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    padding-bottom: 0px;
}

.grid-foolowicon {
    display: flex;
    gap: 10px;
}

.follow-data {
    display: flex;
    align-items: center;
    gap: 25px;
    max-width: fit-content;
    margin: 0 auto;
    opacity: 0;
    transition: 0.3s ease;
}

.foolow-holder:hover .follow-data {
    opacity: 1;
}

.follow-grid {
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

section.follow-ussec .universal-anchor {
    max-width: fit-content;
    margin: 0 auto;
    padding-top: 65px;
}

section.follow-ussec {
    padding: 65px 0px;
}

section.follow-ussec .heading-spoke {
    padding-bottom: 0px;
}

/* FOLLOW SEC END */




/* TESTIMONIAL  */
.product-tetsti {
    height: 79px;
    width: 79px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

ul.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.client-name {
    color: #231F20;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    padding: 5px 0px;
}

.grid-testi {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
}

.testimonial-data {
    max-width: 211px;
    width: 100%;
}

.grid-testi p {
    color: #4D4D4D;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.testimonial-holder {
    max-width: 995px;
    width: 100%;
    margin: 0 auto;
}

.testislider-btn .swiper-button-next,
.testislider-btn .swiper-button-prev {
    position: static;
}

.testislider-btn {
    display: flex;
    flex-direction: row-reverse;
    max-width: fit-content;
    margin: 0 auto;
    gap: 50px;
    padding-top: 60px;
}

.testislider-btn .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.testislider-btn .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    color: #4D4D4D;
    font-size: 30px;
}

section.testimonial-sec {
    padding-top: 30px;
    padding-bottom: 80px;
}

.joiholder {
    max-width: 745px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.serach-form {
    padding-top: 30px;
}

.grid-serach {
    display: flex;
    align-items: center;
    border-radius: 3px;
    background: var(--white);
    padding: 7px;
    max-width: 555px;
    width: 100%;
    margin: 0 auto;
    padding-left: 20px;
}

.input-holder {
    max-width: 100%;
    width: 100%;
}

.grid-serach .input-holder input {
    border: none;
}

.serach-btn {
    border-radius: 2px;
    background: var(--primary-pink);
    max-width: 90px;
    width: 100%;
}


.serach-btn input {
    background: transparent;
    border: none;
    color: var(--white);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.16px;
    padding: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.serach-btn input:hover {
    background: var(--black);
    color: var(--white);
}

.input-holder input,
.input-holder input::-webkit-input-placeholder {
    color: var(--black);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

section.joinlist-sec {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 147px 0px;
    position: relative;
    background-position: right;
}

section.joinlist-sec .overlay-image {
    left: 0;
    top: 0;
    bottom: 0;
    transform: none;
    overflow: hidden;
}


/* TESTIMONIAL END */



/* FOOTER  */
footer.custom-footer {
    background: var(--primary-pink);
    color: var(--white);
    padding-top: 80px;
    padding-bottom: 30px;
}

ul.social-media {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
}

footer.custom-footer a,
footer.custom-footer p {
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 27px;
    letter-spacing: 0.04px;
    color: var(--white);
    padding: 0px;
}

.social-media p strong {
    font-weight: 600;
}

.logofooter-holder ul li a {
    display: flex;
    align-items: center;
    gap: 5px;
}

footer.custom-footer ul li {
    padding-bottom: 15px;
}

.footer-logo {
    max-width: 310px;
    width: 100%;
    margin-bottom: 20px;
}

.logofooter-holder ul li a img {
    max-width: fit-content;
}

.logofooter-holder {
    max-width: 345px;
    width: 100%;
}

.social-media {
    max-width: fit-content;
    width: 100%;
    /* padding-left: 20px; */
    text-align: center;
}

.footer-listholder {
    display: flex;
    gap: 85px;
    max-width: fit-content;
    width: 100%;
    margin-left: auto;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 25px;
}

ul.footerlist-link {
    padding-top: 20px;
}

.footerlist-main p strong {
    font-weight: 600;
}

.selectnow select {
    color: #FFF;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.036px;
    background: transparent;
    border-radius: 5px;
    border: 1px solid #FFF;
    padding: 10px 12px;
}

.selectnow {
    max-width: 245px;
    width: 100%;
}

.copy-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid var(--white);
    gap: 20px;
}

footer.custom-footer ul.footerlist-link li {
    padding-bottom: 8px;
}

.scrl-top {
    max-width: 40px;
    width: 100%;
    position: fixed;
    right: 2%;
    bottom: 4%;
    z-index: 111;
    display: none;
    animation: topscrl 1s ease alternate infinite;
}

@keyframes topscrl {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0px);
    }
}


footer.custom-footer .copy-rightsmain p,
footer.custom-footer .copy-rightsmain p a {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.036px;
}



/* FOOTER END */



/* MODAL  */
section.loginmodal {
    position: fixed;
    inset: auto;
    z-index: 111;
    background: var(--white);
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    top: 0;
    padding-bottom: 50px;
    display: none;
}



/* Track */




section.loginmodal::-webkit-scrollbar {
    width: 5px;
}

/* Track */
section.loginmodal::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

/* Handle */
section.loginmodal::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 10px;
}

.logonmodalimage {
    max-width: 310px;
    width: 100%;
    margin: 0 auto;
    padding-top: 100px;
}




ul.logintab {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}


ul.logintab {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    border-bottom: 1px solid #000;
    padding-bottom: 25px;
}

section.loginmodal p {
    color: var(--black);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.customer-form {
    max-width: 39%;
    width: 100%;
}

.login-formm .grid-formmains .customer-form:last-child {
    max-width: 63%;
    width: 100%;
    position: relative;
}

.login-formm .grid-formmains .customer-form:last-child::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 1px;
    background-color: var(--black);
    top: 0;
    bottom: 0;
    left: -45px;
}

.grid-formmains {
    display: flex;
    justify-content: space-between;
    gap: 90px;
    padding-top: 65px;
}

.inputmain input,
.inputmain select {
    /* height: 68px; */
    padding: 15px 20px;
    border: 1px solid #D9D9D9;

}

.inputmain input,
.inputmain input::-webkit-input-placeholder,
.checkboggrid label,
.inputmain select,
.forget-pw p a {
    color: var(--black);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.forget-pw p a {
    font-weight: 500;
}

.inputmain {
    margin-bottom: 30px;
    max-width: 100%;
    width: 100%;
}

.checkboggrid {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-holdermain {
    max-width: 1450px;
    width: 100%;
    margin: 0 auto;
    padding-top: 90px;
}


input.sbmt-btnmain {
    color: var(--white);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.16px;
    max-width: 215px;
    background: var(--black);
    border: none;
    height: 45px;
    cursor: pointer;
    transition: 0.3s ease-in;
}

input.sbmt-btnmain:hover {
    background: var(--primary-pink);
}

.submit-btn {
    max-width: 215px;
    width: 100%;
    padding-top: 38px;
}

.forget-pw {
    max-width: fit-content;
    width: 100%;
    padding-top: 50px;
}

.login-formm .grid-formmains .customer-form:last-child .submit-btn {
    padding-top: 90px;
}

.login-title {
    color: var(--primary-pink);
    font-size: var(--fs-50);
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
}

.logindata-titleholder {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    border-bottom: 1px solid var(--black);
    padding-bottom: 25px;
}

.modal-overlay {
    max-width: 690px;
    width: 100%;
    position: absolute;
    top: 0;
    left: -95px;
    z-index: -1;
}

.close-icon {
    max-width: 37px;
    width: 100%;
    position: absolute;
    top: 2%;
    right: 1%;
    cursor: pointer;
}

#bothform {
    display: none;
}

.tabsmain.tab-2 .customer-form {
    max-width: 1015px !important;
    width: 100%;
    margin: 0 auto;
}

.tabsmain.tab-2 .customer-form::after {
    display: none;
}

.inputmain select,
.selectnow select {
    appearance: none !important;
    background-repeat: no-repeat !important;
    background-position: 95% !important;
}

.tabsmain.tab-2 {
    display: none;
}

.tabsmain.tab-2 .submit-btn {
    margin: 0 auto;
    padding-top: 30px;
}

/* MODAL END */


/* LOADER  */
section.loader-sec {
    position: fixed !important;
    inset: 0;
    background: #231F20;
    z-index: 111;
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: block;
}

.loader-logo {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: opacity 2s ease-in;
    opacity: 0;

}

@keyframes opacity {
    0% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.loader-image {
    position: absolute;
    inset: 0;
    animation: opacity2 3s ease-in-out;
    animation-delay: 1s;
    opacity: 0;
}

@keyframes opacity2 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

section.loader-sec.loaderdata .loader-image {
    opacity: 1;
}






/* LOADER END */





/* CONTACT MODAL  */
section.contact-modal {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: rgb(0 0 0 / 56%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 111;
    display: none;
}

section.contact-modal .contact-form {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

.contact-form .inputmain {
    margin: 0px;
}

.contact-form .submit-btn {
    padding: 0px;
    width: 100%;
    max-width: 100%;
}

.contact-form input.sbmt-btnmain {
    max-width: 100%;
}

section.contact-modal .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

span.ovelay-span {
    position: fixed;
    inset: 0;
    cursor: pointer;
}

section.contact-modal .contact-form {
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.closeconatct {
    z-index: 1;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 2%;
    top: 2%;
    cursor: pointer;
}



/* CONTACT MODAL END */



/* SHOP COLLECTION  */
.collection-holder p {
    color: #231F20;
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.05px;
}

.collection-holder p.uppercase {
    padding-bottom: 10px;
}

.collection-holder {
    max-width: 970px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 85px;
}

.ttitlemainpro p {
    color: var(--black);
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    letter-spacing: 0.05px;
    text-transform: uppercase;
}

.ttitlemainpro {
    max-width: 475px;
    width: 100%;
    margin: 0 auto;
}

section.collection-sec {
    padding-top: 55px;
    padding-bottom: 140px;
    position: relative;
    z-index: 1;
}

.overlay-collection {
    max-width: 365px;
    width: 100%;
    position: absolute;
    top: 9%;
    left: 0%;
}

/* SHOP COLLECTION END */


/* HOW IT WORK SEC  */
section.howwork-sec {
    min-height: 812px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
}


.submini-titile {
    font-family: 'Retro Signature';
    font-size: var(--fs-152);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-125);
    padding-bottom: 10px;
    word-spacing: -33px;
}

.hundread {
    font-size: var(--fs-100);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-125);
    text-transform: uppercase;
    padding-bottom: 30px;
}

.how-workholder p {
    font-size: var(--fs-32);
    font-style: normal;
    font-weight: 300;
    line-height: var(--lh-45);
    letter-spacing: 0.064px;
    max-width: 690px;
}



.how-workholder {
    max-width: 816px;
    width: 100%;
}

section.about-worksec .collection-holder {
    max-width: 545px;
    width: 100%;
    padding-bottom: 40px;
}

.grid-aboutwork {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: fit-content;
    margin: 0 auto;
    gap: 100px;
}

.grid-aboutwork p {
    color: var(--black);
    font-size: var(--fs-30);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-30);
    letter-spacing: 0.06px;
    padding-bottom: 15px;
}

.grid-aboutwork p strong {
    font-weight: 600;
}

.grid-aboutwork span {
    color: #231F20;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    /* 177.778% */
    letter-spacing: 0.036px;
    display: block;
    padding-bottom: 15px;
}

section.about-worksec .universal-anchor {
    max-width: 165px;
    margin: 0 auto;
    padding-top: 50px;
}

section.about-worksec .universal-anchor a {
    max-width: 165px;
    width: 100%;
}

section.about-worksec {
    padding: 80px 0px;
    position: relative;
}

.overlay-work {
    max-width: 364px;
    width: 100%;
    position: absolute;
    top: -55%;
}

section.faq-sec .three-five {
    color: var(--black-light);
}

section.faq-sec .collection-holder {
    padding-bottom: 50px;
}

.faq-title {
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 500;
    line-height: var(--lh-30);
}

.grid-acrdean {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;

}

.acrdean-holder {
    background: var(--primary-pink);
    color: var(--white);
    padding: 10px 30px;
}

.acrdean-maindata {
    max-width: 1005px;
    width: 100%;
    padding-top: 15px;
    display: none;
}

.minuss-image {
    display: none;
}

.acredean-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1130px;
    width: 100%;
    margin: 0 auto;
}

.grid-acrdean.activeacrdean .minuss-image {
    display: block;
}

.grid-acrdean.activeacrdean .plus-image {
    display: none;
}

.icon-acrdn img {
    animation: faderotate 1s ease;
}

@keyframes faderotate {
    0% {
        transform: rotate(180deg);
        opacity: 0;
    }

    100% {
        transform: rotate(0deg);
        opacity: 1;
    }
}

.icon-acrdn {
    height: 28px;
    width: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.faq-sec {
    background: var(--skin-color2);
    padding: 60px 0px;
}

section.our-storesec .collection-holder {
    padding-bottom: 60px;
}

.planparty-grid {
    display: flex;
}

.party-holders,
.party-image {
    width: 50%;
}

.party-holders {
    background: var(--primary-pink);
    color: var(--white);
    padding: 50px;
    display: flex;
    align-items: end;
    min-height: 806px;
    position: relative;
    z-index: 1;
}

.party-overlay {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 530px;
    width: 100%;
    z-index: -1;
}


.party-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.grid-qty {
    display: flex;
    gap: 50px;
    justify-content: end;
    padding: 30px 0px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: fit-content;
    margin-left: auto;
}

.qty-holder {
    max-width: fit-content;
    width: 100%;
    text-align: right;
    margin-left: auto;
}

.plane-contain {
    max-width: 623px;
    width: 100%;
    margin-left: auto;
    text-align: right;
    padding-bottom: 20px;
}

.planparty-grid .three-five,
.planparty-grid .two-five {
    color: var(--white);
}

.planparty-grid p.two-zero,
.planparty-grid .grid-qty p {
    font-size: var(--fs-20);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--white);
}

.plane-contain p {
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-30);
}

.planparty-grid .three-five {
    padding: 25px 0px;
}

.party-holders .two-five {
    padding-bottom: 10px;
}

.party-holders .universal-anchor a:hover {
    background: var(--white);
    color: var(--black);
}

.party-holders .universal-anchor a {
    max-width: fit-content;
    width: 100%;
}

section.our-storesec {
    padding: 60px 0px;
}

.font-weight {
    font-weight: 300 !important;
}

.grp-images {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
}

.grp-data {
    max-width: 585px;
    width: 100%;
}

section.party-btmsec {
    padding-bottom: 70px;
}

.grp-data .three-five {
    padding: 15px 0px;
}


/* HOW IT WORK SEC END */


/* CONTACT FORM  */
section.contactform-sec .customer-form {
    max-width: 100% !important;
    width: 100%;
}

section.contactform-sec .customer-form::after {
    display: none;
}

.inputmain label {
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding-bottom: 10px;
}

section.contactform-sec .grid-formmains {
    max-width: 1025px;
    width: 100%;
    margin: 0 auto;
    padding-top: 0px;
}

section.contactform-sec .collection-holder {
    padding-bottom: 70px;
}

section.contactform-sec .dorm-btmholder .submit-btn {
    width: 100%;
    margin: 0 auto;
    padding-top: 0px !important;
    padding-bottom: 35px;

}

section.contactform-sec .dorm-btmholder .submit-btn input.sbmt-btnmain {
    transition: 0.3s ease-in;
}

section.contactform-sec .dorm-btmholder .submit-btn input.sbmt-btnmain:hover {
    background: var(--primary-pink);
}

.dorm-btmholder {
    max-width: 615px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 55px;
}

.dorm-btmholder p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

section.contactform-sec {
    padding-top: 60px;
    padding-bottom: 130px;
    position: relative;
}

section.contactform-sec .overlay-work {
    top: 35%;
}

/* CONTACT FORM END */

/* BOOK A PARTY MAIN  */
section.book-a-party-sec .collection-holder .uppercase {
    color: var(--black-light);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    padding-bottom: 15px;
}

section.book-a-party-sec .collection-holder {
    max-width: 565px;
    padding-bottom: 65px;
}

.imagemainparty {
    max-width: fit-content;
    margin: 0 auto;
    margin-bottom: -10px;

}


section.book-a-party-sec {
    padding-top: 55px;
}


section.instore-sec .collection-holder {
    padding-bottom: 75px;
}

section.instore-sec {
    fill: #F5F5F5;
    padding-top: 65px;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    background-size: cover;
}

.store-imagee {
    max-width: 586px;
    height: 402px;
    overflow: hidden;
}

.store-imagee img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.store-holder {
    max-width: 646px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
    background: var(--white);
    height: fit-content;
}


.store-holder p {
    color: #231F20;
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 600;
    line-height: var(--lh-45);
}

.primary-pink {
    color: var(--primary-pink) !important;
}

.btmstore-data {
    max-width: 545px;
    width: 100%;
    margin: 0 auto;
    padding-top: 45px;
}

.store-holder .grp-quantity p {
    color: #231F20;
    font-size: var(--fs-30);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-30);
    letter-spacing: 0.062px;
    padding-bottom: 10px;
}

.universal-anchor.primary-pinks a {
    background: var(--primary-pink);
}

.universal-anchor.primary-pinks a:hover {
    background: var(--black);
}

.store-holder .universal-anchor {
    padding-top: 60px;
    padding-bottom: 30px;
}

.store-holder .last-para p {
    color: #231F20;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 29px;
}

.datastore {
    padding-top: 20px;
}

.datastore p:last-child {
    padding-bottom: 0px;
}

.datastore.primarypink p {
    color: var(--primary-pink);
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    max-width: fit-content;
    margin: 0 auto;
}

section.instore-sec .three-five {
    padding-bottom: 20px;
}

.store-holder .universal-anchor a {
    max-width: 142px;
    width: 100%;
}

section.faq-sec.white {
    background: var(--white);
}







/* BOOK A PARTY MAIN END */



/* CUSTOM PRODUCTS  */

section.custome-productsmain .collection-holder {
    max-width: 587px;
    padding-bottom: 45px;
}

/* CUSTOM PRODUCTS END */



/* CUSTOME PRODUCT MAIN SEC  */
section.custome-productsmain .productmain {
    max-width: 533px;
    width: 100%;
}

section.custome-productsmain .productmain-image {
    height: 425px;
    max-width: 100%;
    width: 100%;
    background: #f3f3f3;
}

section.custome-productsmain .contentproduct .heading-20 {
    min-height: auto;
    padding-bottom: 10px;
}

section.custome-productsmain span.productrating {
    display: block;
    max-width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.grid-customepro {
    display: grid;
    gap: 60px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: fit-content;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

section.custome-productsmain {
    padding: 55px 0px;
    position: relative;
}

.custoeoverlay {
    max-width: 364px;
    width: 100%;
    position: absolute;
    z-index: -1;
    top: 28%;
    left: 0;
}

section.custome-productsmain .contentproduct {
    max-width: 445px;
    margin: 0 auto;
    width: 100%;
}

/* CUSTOME PRODUCT MAIN SEC END */


/* THANKS MODAL  */
section.thanksmodal-sec {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 111;
    overflow-y: scroll;
    display: none;
    padding: 30px 0px;
}

.thanks-holder {
    max-width: 1058px;
    width: 100%;
    background: var(--white);
    padding: 20px;
    margin: 0 auto;
    position: relative;
}

.redervation {
    max-width: 675px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    background: #F5F5F5;
    padding: 20px;
}

.gridcallthanks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.gridcallthanks p {
    color: #4D4D4D;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    padding-bottom: 5px;
}

.gridcallthanks .callnow a {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
}

.gridcallthanks .callnow {
    max-width: 230px;
    background: #fff;
    padding: 10px;
    width: 100%;
}

.thanklogo {
    max-width: 310px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.titlethanks {
    max-width: 675px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 30px 0px;
}

.calender-here a {
    max-width: 230px;
    width: 100%;
    display: block;
    border-radius: 2px;
    border: 1px solid #C4C4C4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: #000;
    font-size: 14px;
    font-style: normal;
    gap: 10px;
    font-weight: 500;
    line-height: 20px;
}

.grid-calender {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px 0px;
}

section.thanksmodal-sec .container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.thanksmodal-sec p {
    color: var(--black);
}

.close-icons {
    max-width: 37px;
    width: 100%;
    position: absolute;
    right: 2%;
    top: 2%;
    cursor: pointer;
    z-index: 1;
}

span.overlaysdata {
    position: fixed;
    inset: 0;
    cursor: pointer;
    background: rgb(0 0 0 / 65%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

p {
    padding-bottom: 10px;
}

.goback a {
    color: var(--primary-pink);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.16px;
}

.goback {
    max-width: fit-content;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* THANKS MODAL END */
header.custome-header p {
    padding-bottom: 0px;
}

section.singleproductdetails.sample .selectcolorflow label {
    border: 1px solid transparent;
}

section.singleproductdetails.sample .selectcolorflow label.activeme {
    border: 1px solid #808080;
}

/* himanshu css end */

/* himasshu responsivness start */
@media(min-width:1199px) {
    li.menu-item-has-children>ul.sub-menu>li>ul.sub-menu {
        /* first sub menu here  */
        display: none !important;
    }

    li.menu-item-has-children>ul.sub-menu>li>ul.sub-menu>li>ul.sub-menu {
        /* second sub menu here  */
        display: none !important;
    }

    li.menu-item-has-children:hover ul.sub-menu {
        display: block !important;
    }

    li.menu-item-has-children>ul.sub-menu>li:hover ul.sub-menu {
        display: block !important;
    }

    li.menu-item-has-children>ul.sub-menu>li>ul.sub-menu>li:hover ul.sub-menu {
        display: block !important;
    }
}

@media(max-width:1600px) {
    :root {
        --fs-152: 100px;
        --fs-120: 85px;
        --fs-100: 75px;
        --fs-50: 40px;
        --fs-32: 25px;
        --fs-20: 18px;
        --fs-35: 30px;
        --fs-25: 20px;
        --fs-30: 25px;
        --fs-40: 35px;
        --fs-25: 22px;
        --lh-45: 35px;
        --lh-125: 80px;

    }

    .navlist-holder ul.navlist {
        gap: 20px;
    }

    .grid-top-head-main a,
    .grid-top-head-main p {
        font-size: 16px;
    }

    ul.navlist li a {
        font-size: 14px;
    }

    .logo-main {
        max-width: 290px;
    }

    .top-mail.mailmain {
        margin-left: -28%;
    }

    .slider-baner {
        min-height: 520px;
    }

    .slider-data .main-title {
        line-height: 65px;
    }

    .slider-data {
        max-width: 690px;
    }

    .margin-top {
        margin-top: 120px;
    }

    section.youmayliketheseproduct.home {
        padding: 30px 0px;
    }

    .shopbtn {
        padding: 10px;
    }

    .productmain-image {
        height: 190px;
    }

    .hometinaglogo {
        max-width: 380px;
    }

    .bespokebeauty-holder {
        max-width: 900px;
    }

    p,
    li {
        font-size: 18px;
    }

    section.bespokebeauty-sec p {
        line-height: 25px;
    }

    .productsdeta {
        height: 600px;
        max-width: 550px;
        padding: 30px;
    }

    .grid-datapro {
        max-width: 1162px;
    }

    .overlay-image {
        max-width: 375px;
    }

    section.customize-secmain {
        background-size: 400px;
        padding: 70px 0px;
    }

    .customize-adding {
        padding-top: 20px;
    }

    .pinkpanther-holder {
        max-width: 550px;
    }

    section.custmize-palatesec {
        background-size: 450px;
        padding: 70px 0px;

    }

    section.follow-ussec {
        padding: 50px 0px;
    }

    section.testimonial-sec {
        padding-bottom: 50px;
    }

    section.joinlist-sec .overlay-image {
        top: 15%;
    }


    .footer-listholder {
        gap: 40px;
    }

    footer.custom-footer a,
    footer.custom-footer p {
        font-size: 18px;
    }

    footer.custom-footer {
        padding-top: 50px;
    }

    .tab-holdermain,
    .logonmodalimage {
        padding-top: 50px;
    }

    .grid-formmains {
        padding-top: 30px;
    }

    .modal-overlay {
        max-width: 500px;
        left: -65px;
    }

    .inputmain input,
    .inputmain input::-webkit-input-placeholder,
    .checkboggrid label,
    .forget-pw p a,
    .inputmain select {
        font-size: 18px;
    }



    .login-formm .grid-formmains .customer-form:last-child .submit-btn {
        padding-top: 50px;
    }

    section.collection-sec {
        padding: 60px 0px;
    }

    section.howwork-sec {
        min-height: 621px;
    }

    .how-workholder {
        max-width: 545px;
    }

    .hundread {
        padding-bottom: 20px;
    }

    .submini-titile {
        word-spacing: -10px;
    }

    .grid-aboutwork {
        gap: 50px;
    }

    section.about-worksec .universal-anchor {
        padding-top: 30px;
    }

    section.about-worksec {
        padding: 50px 0px;
    }

    .overlay-work {
        max-width: 300px;
        top: -60%;
    }

    section.faq-sec .collection-holder {
        padding-bottom: 40px;
    }

    .party-overlay {
        max-width: 400px;
    }

    .party-holders {
        min-height: 550px;
    }

    .grp-images {
        max-width: 600px;
    }

    section.contactform-sec .collection-holder {
        padding-bottom: 50px;
    }

    .dorm-btmholder {
        padding-top: 30px;
    }

    section.contactform-sec {
        padding: 60px 0px;
    }

    section.contactform-sec .grid-formmains {
        max-width: 900px;
    }

    .store-holder {
        max-width: 500px;
    }

    .store-imagee {
        height: 315px;
    }

    section.instore-sec {
        padding: 60px 0px;
    }

    .store-grid {
        gap: 30px;
    }

    .store-holder .last-para p {
        font-size: 16px;
    }

    section.instore-sec .collection-holder {
        padding-bottom: 50px;
    }

    section.custome-productsmain .productmain-image {
        height: 300px;
    }

    section.custome-productsmain .productmain {
        max-width: 375px;
    }

    .custoeoverlay {
        max-width: 285px;
    }

    section.custom-makeup-kit::after {
        max-width: 40%;
    }

    .mainarea .title p {
        line-height: 24px;
        margin-bottom: 8px;
    }

    .chosearea {
        margin-top: 50px;
    }

    .create-makeupkit {
        gap: 30px;
    }

    .samplearea {
        padding-left: 50px;
    }

    .sleectarea {
        padding-top: 15px;
    }

    .sleectarea h2 {
        margin-bottom: 10px;
    }

    .sleectarea ul li h3 {
        font-size: 14px;
    }

    .sampleareatitle span {
        padding-bottom: 10px;
    }

    .sampleareatitle h1 {
        line-height: 40px;
        margin-bottom: 10px;
    }

    .sampleareatitle p {
        line-height: 24px;
    }

    .selectshade h2 {
        padding-top: 30px;
    }

    .slectamakupshdaecolor ul {
        column-gap: 20px;
    }

    .slectamakupshdaecolor ul li h3 {
        font-size: 14px;
    }

    .colorshade {
        width: 70px;
        height: 70px;
    }

    .sleectarea,
    .sleectarea h2 {
        max-width: 600px;
        width: 100%;
        margin-left: auto;
    }

    .selectedcolor {
        max-width: 100% !important;
    }

    .sleectarea ul li {
        max-width: 142px;
    }

    .sleectarea ul {
        /* justify-content: flex-start; */
        gap: 10px;
    }

    .samplearea {
        max-width: 672px;
        width: 100%;
    }

    span.shade img {
        max-width: 79px;
    }
}

@media(max-width:1400px) {
    :root {
        --fs-152: 75px;
        --fs-120: 70px;
        --fs-100: 55px;
        --fs-50: 30px;
        --fs-35: 25px;
        --fs-32: 20px;
        --fs-30: 22px;
        --fs-40: 28px;
        --fs-25: 18px;
        --lh-125: 60px;
        --fs-20: 16px;
        --lh-45: 35px;
        --lh-40: 35px;
    }

    ul.sub-menu li {
        padding: 5px 10px;
    }

    ul.navlist li a {
        font-size: 13px;
    }

    .grid-top-head-main a,
    .grid-top-head-main p {
        font-size: 15px;
    }

    .navlist-holder ul.navlist {
        gap: 15px;
    }

    .logo-main {
        max-width: 225px;
    }

    .main-header {
        padding: 10px 0px;
    }

    ul.sub-menu {
        padding-top: 29px;
    }

    ul.sub-menu {
        width: 230px;
    }

    .grid-top-head-main a,
    .grid-top-head-main p {
        font-size: 14px;
    }

    .top-mail.mailmain {
        margin-left: -26%;
    }

    .slider-baner {
        min-height: 430px;
    }

    .slider-data .main-title {
        padding-bottom: 10px;
        line-height: 60px;
    }

    .slider-data .main-title {
        padding-bottom: 10px;
    }



    .slider-data {
        max-width: 500px;
    }

    .margin-top {
        margin-top: 111px;
    }

    section.youmayliketheseproduct.home .likeproduct {
        padding-top: 30px;
    }

    .contentproduct h3.heading-20 {
        min-height: auto;
        padding-bottom: 10px;
    }

    .productmain span.mainprice {
        margin-bottom: 10px;
    }

    section.youmayliketheseproduct.home {
        padding: 30px 0px;
    }

    .hometinaglogo {
        max-width: 313px;
        top: -151px;
        left: -60px;
    }

    p,
    li {
        font-size: 16px;
        line-height: 25px;
    }

    .ttitlemainpro .universal-anchor {
        padding-top: 20px;
    }

    .shopbtn {
        font-size: 14px;
        padding: 10px 15px;
    }

    .productsdeta {
        height: 500px;
        max-width: 445px;
        padding: 20px;
    }

    .grid-datapro {
        max-width: 950px;
    }

    section.productmaindatasec {
        padding: 50px 0px;
    }

    .overlay-image {
        max-width: 295px;
    }

    .grid-adding {
        padding-top: 20px;
    }

    section.customize-secmain {
        background-size: 350px;
        padding: 50px 0px;
    }

    .curomize-rowholder {
        max-width: 900px;
    }

    .pinkpanther-holder {
        max-width: 440px;
    }

    section.custmize-palatesec .custmize-container {
        max-width: 450px;
    }

    .platecustomee {
        max-width: 335px;
    }

    section.custmize-palatesec {
        background-size: 300px;
        padding: 50px 0px;
    }

    .foolow-holder,
    a.data-mainlink {
        height: 285px;
    }

    .grid-foolowicon {
        align-items: initial;
    }

    .likeproduct {
        row-gap: 50px;
    }

    section.testimonial-sec {
        padding: 40px 0px;
    }

    section.joinlist-sec {
        padding: 100px 0px;
    }

    .grid-serach {
        padding: 5px;
        max-width: 400px;
        padding-left: 10px;
    }

    .input-holder input,
    .input-holder input::-webkit-input-placeholder {
        font-size: 16px;
    }

    .serach-btn input {
        padding: 10px;
    }

    .joiholder {
        max-width: 500px;
    }

    footer.custom-footer a,
    footer.custom-footer p {
        font-size: 15px;
    }

    .footer-logo {
        max-width: 280px;
        margin-bottom: 10px;
    }

    .selectnow select {
        font-size: 15px;
    }

    .selectnow {
        max-width: 200px;
    }

    .copy-rightsmain {
        max-width: 700px;
    }

    .copy-right {
        padding-top: 15px;
    }

    .footer-grid {
        padding-bottom: 15px;
    }

    footer.custom-footer {
        padding-top: 30px;
    }

    footer.custom-footer ul.footerlist-link li,
    footer.custom-footer ul li {
        padding-bottom: 5px;
    }

    ul.footerlist-link {
        padding-top: 10px;
    }

    footer.custom-footer .copy-rightsmain p,
    footer.custom-footer .copy-rightsmain p a {
        font-size: 16px;
    }

    section.loginmodal p {
        font-size: 16px;
    }

    .inputmain {
        margin-bottom: 20px;
    }

    input.sbmt-btnmain {
        font-size: 14px;
        max-width: 150px;

    }

    .inputmain input,
    .inputmain input::-webkit-input-placeholder,
    .checkboggrid label,
    .forget-pw p a,
    .inputmain select {
        font-size: 15px;
    }

    .tab-holdermain,
    .logonmodalimage {
        padding-top: 30px;
    }



    .inputmain img {
        max-width: 165px;
    }

    section.loginmodal {
        padding-bottom: 30px;
    }

    .loader-logo {
        max-width: 400px;
    }

    .collection-holder {
        max-width: 700px;
        padding-bottom: 50px;
    }

    .overlay-collection {
        max-width: 270px;
    }

    section.howwork-sec {
        min-height: 500px;
    }

    .how-workholder {
        max-width: 410px;
    }

    .hundread {
        padding-bottom: 15px;
    }

    .how-workholder p {
        max-width: 100%;
    }

    .overlay-work {
        max-width: 200px;
        top: -35%;
    }

    .grid-aboutwork {
        gap: 30px;
    }

    .container .collection-holder {
        padding-bottom: 30px;
    }

    .acredean-container {
        max-width: 900px;
    }

    .icon-acrdn {
        height: 20px;
        width: 20px;
        overflow: hidden;
    }

    section.faq-sec {
        padding: 50px 0px;
    }

    section.faq-sec .collection-holder {
        padding-bottom: 30px;
    }

    .party-holders {
        min-height: auto;
    }

    .grid-qty {
        padding: 20px 0px;
        gap: 20px;
    }

    .planparty-grid .three-five {
        padding: 10px 0px;
    }

    .party-overlay {
        max-width: 300px;
    }

    .grp-images {
        max-width: 550px;
    }

    section.party-btmsec {
        padding: 40px 0px;
    }

    section.contactform-sec .collection-holder {
        padding-bottom: 30px;
    }

    .inputmain label {
        font-size: 15px;
    }

    section.contactform-sec {
        padding: 50px 0px;
    }

    .store-holder {
        max-width: 400px;
        padding: 15px;
    }

    .store-imagee {
        height: 255px;
    }

    section.instore-sec {
        padding: 50px 0px;
    }

    section.book-a-party-sec .collection-holder {
        padding-bottom: 30px;
    }

    section.book-a-party-sec {
        padding-top: 40px;
    }

    section.custome-productsmain .productmain-image {
        height: 245px;
    }

    section.custome-productsmain .productmain {
        max-width: 300px;
    }

    .grid-customepro {
        gap: 40px;
    }

    .productmain a.shopbtn {
        font-size: 12px;
    }

    .custoeoverlay {
        max-width: 235px;
    }

    section.custome-productsmain {
        padding: 50px 0px;
    }

    .thanks-holder {
        max-width: 800px;
    }

    .titlethanks {
        padding: 20px 0px;
    }

    .grid-calender {
        padding: 20px 0px;
    }

    .close-icons {
        max-width: 30px;
    }

    .framelogog img {
        max-width: 340px;
        width: 100%;
    }

    .sampleareatitle h1 {
        font-size: 20px;
        line-height: 35px;
    }

    .selectshade h2 {
        padding: 15px 0px;
    }

    .samplearea {
        padding-left: 30px;
        padding-bottom: 30px;
    }

    .create-makeupkit {
        gap: 20px;
    }

    .slectamakupshdaecolor ul {
        gap: 10px;
    }

    .slectamakupshdaecolor ul li h3 {
        font-size: 12px;
        line-height: normal;
    }

    .colorshade {
        width: 65px;
        height: 65px;
        margin: 0 auto;
    }

    .chosearea {
        padding-left: 100px;
    }

    .samplearea {
        max-width: 650px;
    }

    .sleectarea,
    .sleectarea h2,
    .selectedcolor {
        max-width: 500px;
    }

    .sleectarea ul li {
        max-width: 120px;
    }

    .sleectarea ul li h3 {
        font-size: 12px;
    }

    span.shade img {
        max-width: 60px;
    }

    .selectedcolor span.closemeshade {
        bottom: 0px;
        right: -13px;
        transform: scale(0.8);
    }

    .selectedcolor {
        height: 280px;
        margin-top: 15px;
    }

    .mainarea .title p {
        line-height: 20px;
        margin-bottom: 8px;
    }

    .sampleareatitle p {
        max-width: 550px;
        width: 100%;
    }

    .sleectarea h2 {
        line-height: 20px;
    }
}

@media(max-width:1200px) {
    :root {
        /* --fs-120: 55px; */
        --fs-100: 40px;
        --fs-152: 52px;
        --fs-50: 25px;
        --fs-40: 25px;
        --fs-35: 22px;
        --fs-32: 18px;
        --fs-30: 20px;
        --fs-25: 18px;
        --lh-45: 30px;
        --lh-30: 25px;
        --lh-125: 50px;


    }

    .chosearea {
        position: static;
    }

    .sleectarea {
        margin: 0 auto;
    }

    .grid-main-header-here {
        flex-direction: column;
        align-items: start;
    }

    .navlist-holder ul.navlist {
        display: block;
    }

    ul.sub-menu,
    li.menu-item-has-children .sub-menu li .sub-menu {
        position: static;
        padding-top: 0px;
        box-shadow: none;
        width: 100%;
    }

    ul.sub-menu li {
        border: none;
        box-shadow: none;
    }



    .navlist-holder ul,
    .navlist-holder ul li {
        max-width: 100%;
        width: 100%;
    }

    li.menu-item-has-children::after {
        position: absolute;
        height: 20px;
        width: 20px;
        content: "";
        right: 10px;
        top: 10px;
        background-repeat: no-repeat;
        background-position: center;
    }

    .navlist-holder ul li {
        padding: 10px 0px;
        background: transparent;
    }

    .top-mail.mailmain {
        margin-left: 0px;
        display: none;
    }

    .grid-menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .tooglemenu {
        display: block;
    }

    .navlist-holder {
        width: 100%;
        height: 70vh;
        overflow-y: scroll;
        padding-bottom: 10px;
        display: none;
    }

    ul.sub-menu.active {
        display: block;
    }

    ul.navlist li a {
        font-size: 14px;
        padding: 0px;
    }

    .navlist-holder ul li {
        padding: 12px 0px;
        background: transparent;
        border-bottom: 1px solid #c7c5c5;
    }

    ul.sub-menu li {
        border-bottom: none;
    }

    li.menu-item-has-children>ul.sub-menu {
        background: #F3EEE9;
        padding: 0px;
        margin: 10px 0px;
    }

    li.menu-item-has-children>ul.sub-menu li {
        padding-left: 10px;
    }

    li.menu-item-has-children>ul.sub-menu>li>ul.sub-menu {
        background: #fff;
    }

    .slider-data {
        max-width: 493px;
        width: 100%;
        text-align: center;
    }

    .slider-data .main-title {
        line-height: 45px;
    }

    .slide-top {
        position: static;
        background: #F3EEE9;
        max-width: 100%;
        width: 100%;
        transform: none;
        padding: 40px 0px;
    }

    .slider-data {
        max-width: 493px;
        margin: 0 auto;
    }



    .slider-baner {
        background-position: 100%;
    }

    .slider-data p {
        max-width: 100%;
    }

    /* .slider-baner{
        background-image: none !important;
        min-height: auto;
    }
    .mobile-image {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    } */
    ul.sub-menu li a {
        max-width: fit-content;
    }

    .productmain a.shopbtn {
        font-size: 13px;
    }

    .hometinaglogo {
        max-width: 250px;
        top: 0;
        left: -8%;
        z-index: -1;
    }

    .heading-spoke .sub-title {
        padding: 5px 0px;
    }

    .ttitlemainpro .four-zero {
        padding: 5px 0px;
    }

    .foolow-holder,
    a.data-mainlink {
        height: 230px;
    }

    section.follow-ussec .universal-anchor,
    .follow-grid {
        padding-top: 30px;
    }

    section.follow-ussec {
        padding: 40px 0px;
    }

    .footer-listholder {
        flex-wrap: wrap;
    }

    .tab-holdermain,
    .logonmodalimage {
        padding-top: 20px;
    }

    .modal-overlay {
        max-width: 400px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .loader-logo {
        max-width: 350px;
    }

    section.collection-sec {
        padding: 50px 0px;
    }

    .collection-holder {
        padding-bottom: 30px;
    }

    .how-workholder {
        max-width: 318px;
    }

    .grid-aboutwork span,
    .grid-aboutwork p {
        padding-bottom: 10px;
    }

    .party-holders {
        padding: 20px;
    }

    section.our-storesec .collection-holder {
        padding-bottom: 30px;
    }

    section.our-storesec {
        padding: 40px 0px;
    }

    .grp-images {
        max-width: 450px;
    }

    .grp-images {
        margin: 0 auto;
    }

    .grp-data .three-five {
        padding: 10px 0px;
    }

    .grp-data {
        margin: 0 auto;
        padding-top: 30px;
    }

    .dorm-btmholder p {
        font-size: 14px;
    }

    .productmain a.shopbtn {
        width: 100%;
        max-width: 115px;
    }

    .samplearea {
        max-width: 500px;
    }

    .chosearea {
        padding-left: 30px;
    }

    .sampleareatitle p {
        max-width: 400px;
    }

    .slectamakupshdaecolor ul li {
        width: 67px;
    }
}

@media(max-width:992px) {
    :root {
        --fs-30: 18px;
        --fs-40: 22px;
    }

    .grid-datapro {
        gap: 20px;
    }

    .pinkpanther-holder {
        margin: 0 auto;
        padding-top: 30px;
    }

    .custmize-container {
        margin: 0 auto;
    }

    section.customize-secmain {
        background-size: 300px;
        padding: 40px 0px;
        background-position: center;
    }

    .platecustomee {
        margin: 0 auto;
    }

    section.custmize-palatesec .custmize-container {
        padding-top: 30px;
    }

    section.custmize-palatesec {
        padding: 40px 0px;
        background-position: center;
    }

    .custmize-container .universal-anchor {
        padding-top: 20px;
    }

    .gift-holder {
        max-width: 400px;
        margin: 0 auto;
    }

    section.customize-secmain.btm .custmize-container {
        padding-bottom: 30px;
    }

    section.follow-ussec .universal-anchor,
    .follow-grid {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: initial;
    }

    .foolow-holder,
    a.data-mainlink {
        height: 280px;
    }

    .foolow-holder {
        margin: 0 auto;
    }

    section.joinlist-sec {
        padding: 80px 0px;
        background-position: center;
    }

    .footer-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-listholder {
        max-width: 100%;
        margin: 0 auto;
        justify-content: space-between;
        gap: 30px;
    }

    .footerlist-main {
        max-width: fit-content;
        width: 100%;
    }

    .logofooter-holder {
        max-width: fit-content;
        margin: 0 auto;
        text-align: center;
    }

    .logofooter-holder ul,
    .social-media {
        max-width: fit-content;
        margin: 0 auto;
    }

    .logofooter-holder ul {
        padding: 0px;
    }

    .logofooter-holder ul li a {
        justify-content: center;
    }

    .logofooter-holder ul {
        padding-top: 10px;
    }

    .grid-formmains {
        gap: 30px;
    }

    .login-formm .grid-formmains .customer-form:last-child::after {
        left: -15px;
    }

    .close-icon {
        max-width: 30px;
    }

    .loader-logo {
        max-width: 300px;
    }

    .overlay-collection {
        display: none;
    }

    .planparty-grid {
        flex-direction: column;
        gap: 30px;
    }

    .party-holders {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
        padding: 25px;
    }

    .party-image {
        max-width: 460px;
        width: 100%;
        margin: 0 auto;
    }

    .plane-contain {
        padding-bottom: 0px;
    }

    section.contactform-sec .overlay-work {
        display: none;
    }

    section.contactform-sec {
        padding: 40px 0px;
    }

    .store-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    section.instore-sec .collection-holder {
        padding-bottom: 30px;
    }

    section.instore-sec {
        padding: 40px 0px;
    }

    .btmstore-data {
        padding-top: 20px;
    }

    section.book-a-party-sec {
        padding-top: 30px;
    }

    .custoeoverlay {
        display: none;
    }

    .inputmain select,
    .selectnow select {
        background-position: 97% !important;
    }

    .selectshade h2 {
        line-height: 20px;
    }

    .sampleareatitle h1 {
        font-size: 18px;
        line-height: 28px;
    }

    .slectamakupshdaecolor ul li {
        width: 65px;
    }
}

@media(max-width:768px) {
    :root {
        --fs-152: 45px;
        --fs-100: 30px;
        --fs-50: 20px;
        --fs-32: 16px;
        --lh-45: 30px;
        --lh-125: 40px;

    }

    .tooglemenu {
        max-width: 25px;
    }

    .slider-baner {
        background-position: 85% 100%;
        min-height: 400px;
    }

    .slider-data .main-title {
        line-height: 40px;
        padding-bottom: 20px;
    }

    .hometinaglogo {
        display: none;
    }

    .grid-datapro {
        max-width: fit-content;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .viewall a {
        font-size: 14px;
    }

    section.youmayliketheseproduct.home .viewall {
        position: static;
        max-width: fit-content;
        margin: 0 auto;
        text-align: center;
        padding-top: 10px;
    }

    .contentproduct {
        padding-top: 15px;
    }

    footer.custom-footer .copy-rightsmain p,
    footer.custom-footer .copy-rightsmain p a {
        font-size: 14px;
    }

    .grid-formmains {
        flex-direction: column;
    }

    .customer-form,
    .login-formm .grid-formmains .customer-form:last-child {
        max-width: 100%;
        width: 100%;
    }

    .submit-btn,
    .login-formm .grid-formmains .customer-form:last-child .submit-btn {
        padding-top: 20px;
    }

    .forget-pw {
        padding-top: 30px;
    }

    .logindata-titleholder {
        padding-bottom: 10px;
    }

    .selectnow select {
        background-size: 14px;
    }

    section.collection-sec {
        padding: 40px 0px;
    }

    section.howwork-sec {
        min-height: 370px;
        background-size: cover;
        background-position: 100% 100%;
    }

    .hundread {
        padding-bottom: 10px;
    }

    .how-workholder {
        max-width: 318px;
        padding: 10px;
        border-radius: 10px;
        background: rgb(14 14 14 / 13%);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        border-radius: 10px;
    }

    .grid-aboutwork {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .overlay-work {
        max-width: 200px;
        top: 30px;
        left: 0;
        z-index: -1;
    }

    .grid-aboutwork span {
        font-size: 14px;
    }

    .grid-customepro {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    section.custome-productsmain {
        padding: 40px 0px;
    }

    .gridcallthanks p,
    .gridcallthanks .callnow a {
        font-size: 16px;
    }

    .thanklogo {
        max-width: 230px;
    }

    .titlethanks {
        padding: 20px 0px;
    }

    .close-icons {
        max-width: 25px;
        top: 1%;
    }

    .create-makeupkit {
        flex-direction: column;
    }

    .chosearea {
        padding: 0px;
    }

    .sleectarea,
    .sleectarea h2,
    .selectedcolor {
        margin-right: auto;
    }

    .chosearea {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    section.custom-makeup-kit::after {
        display: none;
    }

    .samplearea {
        max-width: 100%;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .chosearea {
        position: static;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 0px;
    }

    .sampleareatitle p {
        max-width: 100%;
        width: 100%;
    }

    .sampleareatitle {
        margin-top: 25px;
    }

    .sleectarea ul li h3 {
        line-height: normal;
    }

    .selectedcolor {
        padding: 8px;
    }

    .selectedcolor {
        max-width: initial !important;
    }
}

@media(max-width:576px) {

    .grid-top-head-main a,
    .grid-top-head-main p {
        font-size: 12px;
    }

    .top-email {
        gap: 5px;
        flex-direction: column;
        align-items: start;
    }

    .logo-main {
        max-width: 240px;
    }

    .margin-top {
        margin-top: 120px;
    }

    .productsdeta {
        height: 485px;
    }

    .pinkpanther-holder {
        max-width: 300px;
    }

    .overlay-image {
        max-width: 200px;
    }

    .grid-testi {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }

    .testimonial-data {
        max-width: 100%;
    }

    .testislider-btn .swiper-button-prev:after,
    .swiper-rtl .swiper-button-next:after,
    .testislider-btn .swiper-button-next:after,
    .swiper-rtl .swiper-button-prev:after {
        color: #4D4D4D;
        font-size: 20px;
    }

    .testislider-btn {
        padding-top: 30px;
    }

    .footer-listholder {
        justify-content: flex-start;
    }

    .copy-right {
        flex-direction: column;
        text-align: center;
    }

    .logonmodalimage {
        max-width: 230px;
    }

    .closeconatct {
        max-width: 25px;
    }

    .grid-aboutwork {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .gridcallthanks {
        flex-direction: column;
    }

    span.shade img {
        max-width: 50px;
    }

    .sleectarea h2 {
        font-size: 14px;
    }

    .selectedcolor {
        padding: 8px;
        height: 239px;
    }

    .selectedcolor span.closemeshade {
        transform: scale(0.6);
    }

    .slectamakupshdaecolor ul {
        gap: 5px;
        justify-content: center;
    }

    .colorshade {
        width: 60px;
        height: 60px;
    }

    .framelogog img {
        max-width: 250px;
    }
}

@media(max-width:426px) {
    section.howwork-sec {
        background-position: 80% 100%;
    }

    .gift-holder {
        max-width: 340px;
        margin: 0 auto;
    }

    .slider-baner {
        background-position: 91% 100%;
        min-height: 320px;
    }

}

/* himasshu responsivness end  */


/* sahil  responsiness start   */
@media(min-width:1600px) {
    .container {
        max-width: 1600px;
    }


}

@media(max-width:1600px) {
    .productdetails {
        gap: 40px;
    }

    /* span.productrating {
        padding: 15px 0px;
    } */

    .sortdiscraption {
        padding-top: 20px;
    }

    .sortdiscraption p {
        line-height: 28px;
    }

    .sortdiscraption {
        padding-bottom: 22px;
    }

    .selectcolorflow {
        padding: 25px 0px;
    }

    .addtocart {
        font-size: 15px;
        padding: 10px 0px;
    }

    .buynow input {
        height: 38px;
        font-size: 14px;
    }

    .shopby a {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .shopby a img {
        max-width: 80px;
    }

    .mainacrd {
        padding: 15px 0px;
    }

    .acordienbody {
        padding: 10px 0px;
    }

    .productshare {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .best-of-tinag {
        padding: 30px 30px 15px 30px;
    }

    .shopbtn {
        font-size: 15px;
    }

    .heading-25 {
        padding-bottom: 15px;
    }

    .productdetails {
        padding-bottom: 60px;
    }

    .heading-30 {
        line-height: 35px;
    }

    .likeproduct {
        padding: 40px 0px;
    }

    section.youmayliketheseproduct.home .likeproduct {
        padding-top: 20px;
    }

    .likeproduct {
        gap: 20px;
    }

    section.youmayliketheseproduct {
        padding-bottom: 40px;
    }

    .title img {
        margin-top: 20px;
    }

    .title p {
        padding-top: 15px;
    }

    .title a.shopbtn {
        width: 250px;
        margin-top: 30px;
    }

    .reviwlist {
        padding-top: 40px;
    }

    .reviwlist ul li {
        padding: 20px 0px;
    }

    .reviews img {
        max-width: 100px;
    }

    .reviews h3 {
        margin-bottom: 5px;
    }

    .reviews span {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .reviews p {
        line-height: 26px;
    }

    .reviews span.report {
        margin-top: 15px;
    }

    section.singleproductreviw {
        padding-bottom: 60px;
    }

    .reviwlist,
    .reviwform {
        max-width: 1100px;
    }

    .inputfileds textarea,
    .inputfileds input {
        font-size: 15px;
        padding: 8px 16px;
    }

    .inputfileds {
        margin-bottom: 15px;
    }

    .inputfileds textarea {
        height: 150px;
    }

    .productimages,
    .buynow,
    .allSignature,
    .re-order,
    .detailsacrodean,
    .best-of-tinag,
    .shopby,
    .mainproduct {
        max-width: 600px;
    }

    .mainvectorimg {
        max-width: 400px;
    }

    .mainproductimageslider {
        max-width: 650px;
    }

    .mainsliderdata {
        gap: 30px;
    }

    .allcontent h2 {
        padding-bottom: 15px;
    }

    .mainflow .swiper-button-next::after,
    .mainflow .swiper-button-prev::after {
        font-size: 20px;
    }

    section.viwallimages .close {
        transform: scale(0.8);
    }



    /* .re-order {
        padding-top: 30px;
    } */

    span.shadename {
        margin-bottom: 25px;
        margin-top: 25px;
    }

    span.shadenameprice {
        font-size: 25px;
        margin-bottom: 30px;
    }

    .re-order input {
        margin-bottom: 30px;
        font-size: 16px;
    }

    span.label-photo,
    span.or {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .re-order .buynow input {
        margin-bottom: 0px;
    }

    .order-sampler {
        padding-bottom: 30px;
    }

    .allSignature {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .re-order textarea {
        margin-bottom: 30px;
        height: 50px;
    }

    .imagesahdes.flowdata ul {
        padding-bottom: 30px;
        gap: 5px;
        flex-wrap: wrap;
    }

    .imagesahdes.flowdata ul li {
        font-size: 13px;
    }

    .selectcolor p.title {
        padding-top: 30px;
    }

    .imagesahdes ul {
        padding: 20px 0px;
    }

    .mainsahde,
    .mainsahde label {
        gap: 15px;
    }

    span.select-one-shade {
        gap: 8px;
    }

    .mainsahde {
        margin-bottom: 40px;
    }

    .imagesahdes ul {
        gap: 15px;
    }

    .cartsection h2 {
        font-size: 35px;
        padding-top: 40px;
    }

    .productcontent span.price,
    .productcontent h3 {
        font-size: 16px;
        padding-bottom: 8px;
    }

    .productcontent span {
        font-size: 14px;
        padding-bottom: 8px;
    }

    .productdetailsdata {
        gap: 15px;
    }

    .increment input {
        height: 38px;
        padding-left: 10px;
    }

    .products p {
        font-size: 14px;
    }

    .allproducts .productdetailsdata {
        padding-top: 20px;
    }

    .checkout .pricesubtotla span {
        font-size: 16px;
    }

    .checkout .pricesubtotla {
        padding: 15px 24px;
    }

    span.close {
        transform: scale(0.7);
        top: 10px;
        right: 10px;
    }

    .cartsection {
        max-width: 450px;
    }

    .checkout a.shopbtn {
        max-width: 350px;
        width: 100%;
    }

    .ametproduct a h3 {
        margin-top: 25px;
    }

    section.sitamet {
        padding-bottom: 80px;
    }

    .ametproduct {
        padding-top: 30px;
    }

    section.sitamet .maintitle p {
        line-height: 30px;
    }

    .ametproduct {
        gap: 15px;
    }

    section.sitamet h2 {
        padding-bottom: 15px;
    }
}


@media(max-width:1400px) {
    .imagesahdes.flowdata ul {
        padding-bottom: 20px;
    }

    .productmain {
        max-width: 22%;
    }

    .productdetails {
        gap: 30px;
    }

    .productdetails {
        padding-top: 20px;
    }

    /* 
    span.productrating {
        padding: 15px 0px;
    } */

    .sortdiscraption {
        padding-top: 15px;
    }

    .sortdiscraption p {
        line-height: 25px;
    }

    .sortdiscraption {
        padding-bottom: 20px;
    }

    .selectcolorflow {
        padding: 25px 0px;
    }

    .acordienbody {
        padding: 8px 0px;
    }

    .mainacrd {
        padding: 10px 0px;
    }

    .header-title span img {
        max-width: 20px;
    }

    .best-of-tinag .heading-20 {
        width: 350px;
    }

    .reviews p {
        font-size: 16px;
        line-height: 24px;
    }

    .productimages,
    .buynow,
    .allSignature,
    .re-order,
    .detailsacrodean,
    .best-of-tinag,
    .shopby,
    .mainproduct {
        max-width: 500px;
    }

    section.youmayliketheseproduct {
        padding-bottom: 20px;
    }

    .title a.shopbtn {
        margin-top: 20px;
        width: 200px;
    }

    .reviwform {
        margin-top: 40px;
    }

    .reviwlist,
    .reviwform {
        max-width: 900px;
    }

    .inputfileds textarea {
        height: 150px;
    }

    .reviews span.report {
        font-size: 14px;
    }

    .reviwlist ul li {
        padding: 15px 0px;
    }

    .reviews span {
        font-size: 14px;
    }

    section.singleproductreviw {
        padding-bottom: 40px;
    }

    /* .re-order {
        padding-top: 20px;
    } */

    .titleprodutc {
        gap: 20px !important;
    }

    .re-order h2 {
        padding-bottom: 10px;
    }

    .re-order p {
        line-height: 24px;
    }

    .order-sampler {
        padding-bottom: 20px;
    }

    span.shadenameprice {
        font-size: 20px;
    }

    .re-order input {
        margin-bottom: 20px;
    }

    span.shadenameprice {
        font-size: 16px;
        margin-bottom: 15px;
    }

    span.shadename {
        font-size: 15px;
        margin: 10px 0px;
    }

    .allSignature {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .re-order textarea {
        margin-bottom: 20px;
        height: 40px;
    }

    .selectcolor p.title {
        padding-top: 20px;
    }

    .imagesahdes ul {
        padding: 15px 0px;
    }

    .mainsahde,
    .mainsahde label {
        gap: 10px;
    }

    span.select-one-shade {
        gap: 8px;
    }

    .mainsahde {
        margin-bottom: 30px;
    }

    .imagesahdes ul {
        gap: 12px;
    }

    .mainproductimageslider {
        max-width: 500px;
    }

    .allcontent h2 {
        font-size: 18px;
    }

    .maincolor span {
        font-size: 14px;
    }

    .allcontent h2 {
        padding-bottom: 10px;
    }

    .mainflow {
        padding-top: 30px;
    }

    section.viwallimages .close {
        transform: scale(0.7);
    }

    .mainproduct {
        margin-bottom: 10px;
    }

    .cartsection h2 {
        font-size: 25px;
        padding-top: 15px;
    }

    .productcontent span.price,
    .productcontent h3 {
        font-size: 15px;
        padding-bottom: 6px;
    }

    .increment input {
        height: 35px;
    }

    .checkout .pricesubtotla span {
        font-size: 14px;
    }

    .checkout .pricesubtotla {
        padding: 10px 15px;
    }

    .allproducts .productdetailsdata {
        padding-left: 15px;
        padding-top: 10px;
    }

    .cartsection h2 {
        padding-left: 15px;
    }

    .cartsection .logo {
        max-width: 350px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        bottom: 88px;
    }

    .allproducts {
        height: 90%;
    }

    .cartsection {
        max-width: 400px;
    }

    .productcontent {
        padding-right: 15px;
    }

    .checkout a.shopbtn {
        max-width: 300px;
    }

    .ametproduct a h3 {
        margin-top: 10px;
    }

    section.sitamet {
        padding-bottom: 50px;
    }

    .ametproduct {
        padding-top: 15px;
    }

    section.sitamet h2 {
        line-height: 30px;
    }
}

@media(max-width:1200px) {
    section.singleproductreviw {
        padding-bottom: 30px;
    }

    .allSignature {
        padding: 15px 0px;
    }

    .selectcolorflow {
        padding: 20px 0px;
    }

    .selectcolor p.title {
        padding-top: 15px;
    }

    .imagesahdes ul {
        padding: 10px 0px;
    }

    .mainsahde,
    .mainsahde label {
        gap: 8px;
    }

    span.select-one-shade {
        gap: 6px;
    }

    .mainsahde {
        margin-bottom: 20px;
    }

    .imagesahdes ul {
        gap: 10px;
    }

    .order-sampler h3 {
        padding-bottom: 15px;
    }



    .mainproductimageslider {
        max-width: 400px;
    }

    .mainsliderdata {
        justify-content: center;
    }

    .cartsection h2 {
        font-size: 20px;
    }

    .allproducts .productdetailsdata {
        gap: 10px;
    }

    .productimages {
        max-width: 400px;
    }

    section.sitamet {
        padding-top: 0px;
    }

    section.sitamet h2 {
        padding-bottom: 5px;
    }

    section.sitamet .maintitle p {
        line-height: 25px;
    }

    section.sitamet {
        padding-bottom: 40px;
    }
}

@media(max-width:995px) {
    .productmain {
        max-width: 30%;
    }

    .productdetails {
        gap: 20px;
    }

    /* .re-order {
        padding-top: 15px;
    } */

    .best-of-tinag {
        padding: 15px;
    }

    .contentflowdata {
        gap: 10px;
    }

    .productcontet .shopbtn {
        padding: 8px;
    }

    .selectcolorflow {
        padding: 15px 0px;
    }

    .productimages {
        max-width: 350px;
    }

    .ametproduct {
        gap: 10px;
    }

    section.sitamet {
        padding-bottom: 20px;
    }
}

@media(max-width:768px) {
    .productmain {
        max-width: 47%;
    }

    .productdetails {
        gap: 15px;
    }

    .productdetails {
        flex-direction: column;
    }

    .productimages {
        position: static;
        max-width: 100%;
        width: 100%;
    }

    .productdetails {
        padding-top: 5px;
    }

    .reviews span.report {
        margin-top: 10px;
    }

    .reviwlist ul li {
        padding: 10px 0px;
    }

    .reviwlist {
        padding-top: 30px;
    }

    .title p {
        padding-top: 10px;
    }

    .title a.shopbtn {
        margin-top: 15px;
    }

    section.youmayliketheseproduct {
        padding-bottom: 0px;
    }

    .productdetails {
        padding-bottom: 30px;
    }

    .contentflowdata {
        gap: 20px;
    }

    .inputfileds textarea {
        height: 120px;
    }

    .sortdiscraption {
        padding-bottom: 15px;
    }

    .selectcolorflow {
        padding: 15px 0px;
    }

    .re-order textarea {
        margin-bottom: 15px;

    }

    .allSignature {
        gap: 10px;
    }

    .productimages ul {
        gap: 10px;
        flex-wrap: wrap;
    }

    .sortdiscraption {
        padding-bottom: 5px;
    }

    .buynow input {
        width: 50px;
    }

    .buynow {
        gap: 10px;
    }

    .selectcolorflow {
        gap: 4px;
    }

    .re-order {
        padding-bottom: 15px;
    }

    .selectcolor p.title {
        padding-top: 10px;
    }

    .imagesahdes ul {
        flex-wrap: wrap;
    }

    .mainsahde {
        margin-bottom: 15px;
    }

    .imagesahdes ul {
        gap: 7px;
    }

    .order-sampler h3 {
        padding-bottom: 12px;
    }

    .order-sampler {
        padding-top: 0px;
    }

    .mainsliderdata {
        max-width: 350px;
        margin: 0 auto;
    }

    .mainsliderdata {
        gap: 15px;
    }

    .mainsliderdata {
        flex-direction: column-reverse;
    }

    .slidercontent {
        max-width: 100%;
        width: 100%;
    }

    .mainproductimageslider {
        margin: 0 auto;
    }

    .allcontent h2 {
        text-align: left;
        font-size: 16px;
        padding-bottom: 4px;
    }

    .mainsliderdata {
        padding-left: 0px;
    }

    section.sitamet .maintitle {
        max-width: 400px;
    }

    section.sitamet h2 {
        line-height: normal;
    }

    .productimages ul {
        padding-top: 10px;
    }
}

@media(max-width:576px) {
    .productmain {
        max-width: 260px;
    }

    .contentflowdata {
        flex-direction: column;
    }

    .productcontet {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .best-of-tinag {
        padding: 15px;
    }

    .productimages,
    .buynow,
    .allSignature,
    .re-order,
    .detailsacrodean,
    .best-of-tinag,
    .shopby,
    .mainproduct {
        margin: 0 auto;
    }

    .inputfileds textarea {
        height: 100px;
    }

    input.shopbtn {
        max-width: 200px;
    }

    .inputfileds img {
        max-width: 100px;
    }

    .mainsliderdata {
        gap: 15px;
    }

    .ametproduct {
        flex-wrap: wrap;
    }

    .productimages {
        max-width: 100%;
    }

    .ametproduct a {
        display: block;
        max-width: 260px;
        margin: 0 auto;
    }
}

/* sahil  responsiness end   */



/* CHANGES  */

.colorshade.active {
    pointer-events: none !important;
}

.imagemainparty.max-width {
    max-width: 700px;
}

.heading-spoke ul.rating {
    justify-content: center;
    padding-bottom: 5px;
}

section.testimonial-sec .heading-spoke p {
    color: #231F20;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    text-transform: initial;
}

.custmize-container p.mainpara {
    color: #231F20;
    font-family: Raleway;
    font-size: var(--fs-25);
    font-style: normal;
    font-weight: 400;
    line-height: var(--lh-30);
}

.top-mail.mailmain p i {
    font-style: italic !important;
}

.top-mail.mailmain p span {
    font-weight: 500;
}

.top-email a span {
    font-variant-numeric: lining-nums proportional-nums;
}

/* .grid-top-head-main a span{
    font-weight: 500;
} */
/* CHANGES END */


.selectcolorflow label {
    position: relative;
}

.selectcolorflow label span.name {
    position: absolute;
}

.selectcolorflow label:hover span.name {
    z-index: 99;
    border-radius: 0px;
    background-color: red;
    width: 100px;
    width: fit-content;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    top: -33px;
    background: #fff;
    right: 0px;
    font-size: 11px;
    word-wrap: break-word;
}

.detailsacrodean .mainacrd:last-child .acordienbody,
.detailsacrodean .mainacrd:last-child span {
    display: none !important;
}

.selectederror {
    max-width: fit-content;
    width: 100%;
    margin-left: auto;
    padding-top: 20px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 10px;
}

.selectederror p {
    font-size: 18px;
}

p.highlights {
    padding: 10px !important;
    background: transparent;
}



p.highlights span.red {
    background: #FF962C;
    color: #fff;
    display: block;
    border-radius: 4px;
}

p.highlights .green {
    background: green;
    color: #fff;
    display: block;
    border-radius: 4px;
}

p.highlights .green,
p.highlights span.red {
    padding: 5px 10px;
}

.selectederror p#message {
    color: red;
}

.palette-pan {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.palette-pan {
    position: relative;
}

.palette-pan span {
    position: absolute;
    color: #fff;
    font-size: 18px;
    top: 0;
    left: -6px;
    opacity: 0;
}

.palette-pan input {
    display: none;
}

section.howwork-sec.new-banner .how-workholder {
    max-width: 70%;
    padding: 20px;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

section.howwork-sec.new-banner p {
    max-width: 100%;
}

section.howwork-sec.new-banner {
    background-attachment: fixed;
    position: relative;

}

section.howwork-sec.new-banner::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgb(0 0 0 / 39%);
    backdrop-filter: blur(0px);
    border-radius: 10px;
    padding: 20px;
}

.custome-container {
    max-width: 70%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.image-mainsss {
    max-width: fit-content;
    margin: 0 auto;
    width: 100%;
}

.data-home {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

section.newdesign-sec {
    background: #faf5f2;
    padding: 50px 0px;
}

.data-home.no-grid .col-holder {
    text-align: start;
}


section.lipsloddbar-sec .custmize-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.bespok-makeup {
    font-size: 20px;
    font-weight: 700;
}

.containet-bar,
.image-bar {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    text-align: center;

}

section.lipsloddbar-sec {
    background: #f5f5f5;
}

.grid-bar .universal-anchor a {
    max-width: 250px;
    width: 100%;
}

.grid-bar {
    padding: 40px 0px;
    gap: 30px;
}



.image-data {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
}

section.banner-datass {
    min-height: 500px;
    background: #a9526536;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

section.banner-datass .custmize-container {
    max-width: fit-content;
    text-align: center;
}

section.banner-datass .three-five {
    padding: 10px 0px;
    font-size: 50px;
    padding-bottom: 20px;
    font-weight: 700;
}

.grid-bar .three-five {
    font-weight: 600;
}

.bland-typea {
    font-style: italic;
    font-size: 25px;
    font-weight: 500;
}

.name-shade {
    font-size: 20px;
    font-weight: 800;
}

.desc-data {
    padding-top: 20px;
}

.grid-bar .universal-anchor {
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-datahere p {
    text-transform: uppercase;
}

.image-data {
    max-width: 550px;
    width: 100%;
    margin: 0 auto;
    background: #f0f0f0;
    height: 557px;
    overflow: hidden;
}

.image-data img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}



@media(max-width:1600px) {
    section.banner-datass {
        min-height: 520px;
    }

    section.banner-datass .three-five {
        font-size: 45px;
    }

    .image-data {
        max-width: 450px;
        height: 450px;
    }

    .bland-typea {
        font-size: 18px;
    }
}

@media(max-width:1400px) {
    section.banner-datass {
        min-height: 430px;
    }

    section.banner-datass .three-five {
        font-size: 40px;
    }

    .image-data {
        max-width: 350px;
        height: 350px;
    }

    .name-shade {
        font-size: 18px;
    }

    .desc-data {
        padding-top: 10px;
    }

}

@media(max-width:1199px) {
    section.banner-datass .three-five {
        font-size: 35px;
    }

    .bespok-makeup {
        font-size: 18px;
    }

    .create-makeupkit {
        flex-direction: column;
        align-items: center;
    }

    img.image-mobile {
        position: static;
        height: 430px;
        object-position: right top;
        width: 100%;
        object-fit: cover;
    }

    section.banner-datass.new-banner {
        display: block;
        padding: 0px;
    }

    section.banner-datass.new-banner .slider-data {
        padding: 40px 0px;
    }
}

@media(max-width:991px) {
    .grid-bar {
        flex-direction: column-reverse;
    }

    .containet-bar,
    .image-bar {
        width: 100%;
    }
}


@media(max-width:767px) {
    section.howwork-sec.new-banner .how-workholder {
        max-width: 500px;
        backdrop-filter: blur(0px);
        background: #0000;
    }
}



@media(max-width:767px) {
    .acrdean-holder {
        padding: 10px;
    }

    .custome-container {
        max-width: 100%;
    }
}





p#message {
    font-weight: 700;
}

.samplearea .heading-30 {
    text-align: start;
    text-transform: capitalize;
}




/* span#selectedCombination {
    display: none;
} */


.titleprodutc {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.allproductsimage.curent {
    display: block;
    max-width: 100%;
    width: 100%;
}

.sampler-links,
.text-clack {
    font-weight: 700;
    color: #000;
    border-bottom: 1px solid #000;
}

.sampler-links:hover,
.text-clack:hover {
    color: #000;
}

.bg-black {
    color: #000 !important;
}

.file-holder {
    position: relative;
    padding-bottom: 20px;
}

.file-holder input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.grid-datassss {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.grid-shadesss {
    display: flex;
    flex-direction: column;
    gap: 30px;

    padding-bottom: 30px;
}

label.label-photo {
    text-decoration: underline;
    font-weight: 700;
    cursor: pointer;
}

.order-sampler,
.re-order {
    padding: 0px !important;
}

.sample img {
    height: 82px;
    width: 120px;
    object-fit: cover;
    /* border: 2px solid #dfdada; */
}

.only-images {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
}




.samplearea .heading-30 {
    padding-bottom: 20px;
}

li.trigger img {
    border: 4px solid #0000;
    transition: 0.3s ease-in;
}

li.trigger.active img {
    border-color: #a95265;
}

li.trigger:hover img {
    border-color: #a95265;
}

.selectshade.small,
.selectshade.medium,
.selectshade.large {
    display: none;
}

.samplearea.small .selectshade.small {
    display: block;
}

.samplearea.medium .selectshade.medium {
    display: block;
}

.samplearea.large .selectshade.large {
    display: block;
}

.samplearea.allpan .selectshade.large,
.samplearea.allpan .selectshade.medium,
.samplearea.allpan .selectshade.small {
    display: block;
}

.samplearea.only-palette .selectshade.large,
.samplearea.only-palette .selectshade.medium,
.samplearea.only-palette .selectshade.small {
    display: none;
}

.samplearea.small-medium .selectshade.medium,
.samplearea.small-medium .selectshade.small {
    display: block;
}


.samplearea.medium .selectshade.medium {
    display: block;
}

.mainarea .title p {
    font-weight: 700;
    padding-bottom: 10px;
    margin: 0px !important;
}

.grid-btn-data-main {
    padding-bottom: 20px;
}

li.trigger {
    max-width: 145px;
    width: 100%;
    text-align: center;
}

.pink-color {
    color: #a95265 !important;
}

.selectedcolor.noborder {
    border: none;
}

.selectedcolor {
    overflow: hidden;
}

p.grid-datasss span {
    display: inline-block;

}

p.grid-datasss {
    font-size: 25px;
    color: #a95265;
    font-weight: 500;
}

p.grid-datasss span.pricedata {
    font-weight: 700;
    color: #a95265;
}

.sleectarea {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
}

.grid-btns label,
.grid-btns label.active {
    position: static;
    width: 100%;
    max-width: fit-content;
    font-weight: 500;
    font-size: 18px;
    padding: 0px;
    height: auto;
    border: none;
    pointer-events: none !important;
}

.grid-btns input {
    position: static;
    width: fit-content;
    height: 40px;
    width: 40px;
    pointer-events: none !important;
}

.grid-btns input:checked {
    accent-color: #a95265;
}

.grid-btns {
    display: flex;
    align-items: center;
    gap: 10px;

}

.grid-no {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.grid-no p {
    font-weight: 700;
}

.mobile-banner {
    display: none;
}

section.banner-datanew {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}

.grid-no p span {
    color: #A95265;
}


.grid-no.datanew {
    display: none;
}

#ie1ai{
    cursor: pointer;
}

@media(max-width:1600px) {
    .mainproduct {
        height: 400px;
    }
}


@media(max-width:1400px) {
    .allproductsimage.curent {
        max-width: 545px;
        width: 100%;
    }

    .productimages.curent {
        display: block;
        max-width: 100%;
        width: 100%;
    }

    .mainproduct {
        height: 310px;
    }

    .productimages ul li {
        height: 69px;
        width: 100px;
    }

    .inputmain input,
    .inputmain select {
        padding: 10px;
    }
}

@media(max-width:991px) {
    .productdetails {
        flex-direction: column;
        align-items: center;
    }
}

@media(max-width:767px) {
    section.banner-datass {
        background-position: center right;
    }

    section.banner-datass .slider-data {
        background: #ffffff70;
        padding: 10px;
        border-radius: 10px;
    }


}

@media(max-width:575px) {
    section.banner-datass {
        background-position: center right;
    }

    .mobile-banner {
        display: block;
    }

    .pc-banner {
        display: none;
    }

    .image-bannerhere img {
        width: 100%;
    }
}



/* FEB 12  */

.grid-bar .universal-anchor a {
    max-width: 365px;
    width: 100%;
    font-weight: 700;
    padding: 20px 0px;
    font-size: 18px;
}

section.banner-datass.new-banner {
    background: transparent;
    position: relative;
}

img.image-mobiles {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

section.banner-datass .shopbtn {
    font-size: 18px;
    padding: 15px 50px;
}

section.newdesign-sec p a {
    color: #000;
    text-decoration: underline;
}

@media(max-width:1600px) {
    .grid-bar .universal-anchor a {
        max-width: 330px;
        padding: 15px 0px;
    }

    section.banner-datass .shopbtn {
        font-size: 16px;
        padding: 12px 40px;
    }
}

@media(max-width:1400px) {
    .grid-bar .universal-anchor a {
        max-width: 290px;
        padding: 12px 0px;
        font-size: 16px;
    }

    section.banner-datass .shopbtn {
        font-size: 15px;
        padding: 12px 30px;
    }

    .slider-data p {
        font-size: 18px;
        line-height: 30px;
    }
}

@media(max-width:1199px) {
    img.image-mobiles {
        position: static;
        height: 430px;
        width: 100%;
        object-fit: cover;
        object-position: right center;
    }
}

@media(max-width:767px) {
    img.image-mobiles {
        height: 400px;

    }
}

@media(max-width:575px) {
    img.image-mobiles {
        object-position: 92% 100%;
    }
}

/* FEB 12 END */



/* NEW FIGMA HOME PAGE 3 MARCH MONDAY  */

.home-links{
    display: block;
}

/* NEW FIGMA HOME PAGE 3 MARCH MONDAY END */