@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter-VariableFont_slnt.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

:root {
    --primary: #C35D7D;
    --primary-100: #FBE1E9;
    --primary-300: #F6BCCE;
    --pink-200: #F8CFDC;
    --primary-400: #ED7C9F;
    --primary-700: #6C3545;
    --primary-hover: #974860;
    --pink-50: #FDF0F4;
    --pink-500: #C35D7D;
    --danger: #F95555;
    --grey: #757E9D;

    --fetch-pink-light: #fbe6ec;
    --fetch-pink: #d94178;
    --fetch-purple: #974860;

    --text-primary: #1D232E;
    --text-secondary: #475467;

    --line: #D0D5DD;

    --nav-bg: #1e1e25;
    --nav-accent: #ffffff;
    --nav-inactive: rgba(255, 255, 255, 0.7);

    --container-width: 440px;
    --form-control-height: 50px;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--text-secondary);
}

body:not(:has(.pur-loader)):not(:has(.pur-dashboard)):not(:has(.pur-frame.bg-white)) {
    background: linear-gradient(180deg, var(--primary-400) 10%, #FFF 50%);
}

body:has(.pur-frame.bg-pink-gradient) {
    background: var(--Background-Pink-Gradient-2, linear-gradient(180deg, var(--Color-Base-White, #FEFEFE) 0%, var(--Color-Pink-Pink-100, #FBE1E9) 81.09%)) !important;
}

body:has(.pur-loader) {
    background: url(../images/bg-fetch-loader.png), linear-gradient(180deg, #FEFEFE 0%, var(--primary-100) 81.09%);
}

body:has(.pur-dashboard) {
    background: linear-gradient(180deg, #FEFEFE 0%, var(--primary-100) 81.09%);
}

body:has(.mobile-bottom-nav) .pur-container {
    padding-bottom: 130px;
    height: auto;
}

.font-11 {
    font-size: 11px !important;
    font-style: normal !important;
    line-height: 15px !important;
}

.font-12 {
    font-size: 12px !important;
    font-style: normal !important;
    line-height: 16px !important;
}


.font-16 {
    font-size: 16px !important;
    font-style: normal !important;
    line-height: 20px !important;
}

.font-20 {
    font-size: 20px !important;
    font-style: normal !important;
    line-height: 24px !important;
}

.font-24 {
    font-size: 24px !important;
    font-style: normal !important;
    line-height: 28px !important;
}

.font-32 {
    font-size: 32px !important;
    font-weight: 500 !important;
    line-height: 36px !important;
}

.text-gray-600 {
    color: #475467 !important;
}

.text-base-black {
    color: #1D232E !important;
}

.text-pink-700 {
    color: #6C3545 !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.bg-pink-50 {
    color: var(--pink-50) !important;
}

.bg-pink-100 {
    background: var(--primary-100) !important;
}

.bg-pink-400 {
    background: var(--primary-400) !important;
}

.rounded-1 {
    border-radius: 4px !important;
}

.rounded-2 {
    border-radius: 8px;
}

.rounded-3 {
    border-radius: 12px;
}

.rounded-4 {
    border-radius: 16px;
}

.rounded-5 {
    border-radius: 20px;
}

.rounded-6 {
    border-radius: 24px;
}

.rounded-7 {
    border-radius: 28px;
}




/* Utilities */
.pur-btn-primary {
    border-radius: 100px;
    border: 1px solid var(--primary-100);
    background: linear-gradient(265deg, var(--primary-100) 0%, var(--primary-300) 65%, var(--primary-400) 100%);
    box-shadow: 1px 1px 0 0.5px var(--primary);
    display: flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    transition: all 0.5s ease;
    color: var(--primary-700);
    font-weight: 500;
}

.pur-btn-primary:hover,
.pur-btn-primary:focus {
    background: var(--primary-hover);
    box-shadow: 0 0 0 1px transparent;
    border-color: transparent;
    color: white;
}

.pur-btn-primary-sm {
    border-radius: 100px;
    border: 1px solid var(--primary-100);
    background: linear-gradient(265deg, var(--primary-100) 0%, var(--primary-300) 65%, var(--primary-400) 100%);
    box-shadow: 1px 1px 0 0.5px var(--primary);
    display: flex;
    padding: 7px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    transition: all 0.5s ease;
    color: var(--primary-700);
    font-weight: 500;
}

.pur-btn-primary-sm:hover,
.pur-btn-primary-sm:focus {
    background: var(--primary-hover);
    box-shadow: 0 0 0 1px transparent;
    border-color: transparent;
    color: white;
}

.pur-btn-secondary-outline {
    border-color: var(--text-secondary);
    color: var(--text-secondary);
    border-radius: 100px;
    padding: 12px 20px;
    font-weight: 500;
}

.pur-btn-secondary-outline:hover,
.pur-btn-secondary-outline:focus {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.pur-btn-primary-outline {
    border-radius: 100px;
    padding: 12px 20px;
    border-color: var(--primary);
    color: var(--primary-700);
    background: transparent;
    font-weight: 500;
}

.pur-btn-primary-outline:hover,
.pur-btn-primary-outline:focus {
    color: var(--primary);
}

.pur-btn-grey-sm {
    border-radius: 100px;
    border: 1px solid var(--grey);
    background: var(--grey);
    display: flex;
    padding: 7px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    transition: all 0.5s ease;
    color: white;
    font-weight: 500;
}

.pur-btn-grey-outline-sm {
    border-radius: 100px;
    border: 1px solid var(--grey);
    background: transparent;
    display: flex;
    padding: 7px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex: 1 0 0;
    align-self: stretch;
    transition: all 0.5s ease;
    color: var(--grey);
    font-weight: 500;
}

.pur-btn-grey-outline-sm:hover,
.pur-btn-grey-outline-sm:focus {
    background: var(--grey);
    color: white;
}

.transparent-sm-btn {
    color: #6C3545;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.1px;
    border-radius: 100px;
    border: 1px solid #C35D7D;
    box-shadow: 0 0 0 1px #C35D7D;
    padding: 7px 20px;
    text-decoration: none;
    transition: all 0.5s ease;
}

.transparent-sm-btn:hover {
    color: #6C3545;
}

.color-primary,
.color-primary:hover {
    color: var(--primary);
}

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

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

.text-sm {
    font-size: 14px;
}

.text-xs {
    font-size: 12px;
}

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

.pur-card-info {
    display: flex;
    width: 299px;
    min-height: 299px;
    padding: 32px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    box-shadow: 0 2px 8px 0 rgba(108, 53, 69, 0.20);
    border-radius: 28px;
}

.pur-card-info hr {
    background: var(--grey);
    margin-left: 24px;
    margin-right: 24px;
}

/* End Utilities */

.pur-frame {
    width: 100%;
    overflow: auto;
    height: 100vh;
    /* padding: 28px 0 0 0; */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-400) transparent;
}

/* #signupForm{
    overflow: scroll !important;
    height: 100% !important;
} */

/** scrollbar **/
/* Chrome, Edge, Safari (Mac + Windows) */
.pur-frame::-webkit-scrollbar {
    width: 6px; /* thin */
}

.pur-frame::-webkit-scrollbar-track {
    background: transparent;
}

.pur-frame::-webkit-scrollbar-thumb {
    background: var(--primary-400);
    border-radius: 10px;
}

.pur-frame::-webkit-scrollbar-thumb:hover {
    background: var(--primary-700);
}

/** scrollbar ends **/

.pur-frame__between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pur-frame__between::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: black;
    filter: blur(6px);
    opacity: 0.5;
}

.pur-brand {
    padding: 28px 16px 96px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: -1;
}

.pur-frame__between .pur-brand img {
    filter: blur(6px);
}

@media screen and (max-width: 328px) {
    .pur-brand {
        padding: 16px 16px 64px 16px;
    }

    .pur-brand img {
        width: calc(100% - 32px);
    }
}


.pur-container {
    width: 100%;
    height: 100%;
    max-width: var(--container-width) !important;
    margin: auto;
    /* padding: 16px; */
    padding: 0 16px 0px 16px;
    /* border-radius: 24px 24px 0 0; */
}


/** removed the minus margin **/
/* .pur-container.margin-to-minus-top-padding {
    margin-top: -16px;
} */

.pur-container-auth {
    width: 100%;
    max-width: var(--container-width);
    margin: auto;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 24px 24px 0 0;
}

body:has(.margin-to-minus-top-padding) .back-btn-header {
    background: transparent;
    box-shadow: none;
    margin-top: -66px;
}



@media screen and (max-width: 350px) {
    .pur-container-auth {
        padding: 32px 16px;
    }
}

.pur-frame__between .pur-container-auth {
    margin: 0 auto;
    z-index: 1;
    text-align: center;
    position: relative;
    padding-top: 64px;
}

.pur-frame__between .pur-container-auth>img {
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.pur-container-auth__title {
    color: var(--text-primary);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.pur-container-auth__or {
    text-align: center;
    position: relative;
}

.pur-container-auth__or hr {
    border-color: var(--line);
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    margin: 0;
}

.pur-container-auth__or span {
    display: inline-block;
    background: white;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 0 16px;
    z-index: 10;
    position: relative;
}

.pur-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 72px);
}

.pur-loader h4 {
    color: var(--text-primary);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 116.667% */
    margin-bottom: 8px;
}

.pur-loader p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Form */
input[type="date" i]::-webkit-calendar-picker-indicator {
    background-image: url(../icons/ic-calendar.svg);
    background-size: 28px;
    background-position: center;
    block-size: 28px;
    inline-size: 28px;
}

select {
    background-image: url(../icons/ic-dropdown.svg) !important;
    background-size: 28px !important;
}

.form-control:focus,
.form-select:focus {
    color: var(--text-primary);
    background-color: #FDF0F4;
    border-width: 2px;
    border-color: var(--primary-hover);
    box-shadow: none !important;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-width: 2px;
    border-color: var(--danger);
    color: var(--danger);
    background-image: none;
}

.form-date.is-invalid {
    padding-right: .75rem;
}

.form-control,
.form-select {
    border-radius: 16px;
    height: var(--form-control-height) !important;
}

.form-icon-wrapper {
    position: relative;
}

.form-icon-wrapper>img {
    /* Changed from i to img based on your HTML */
    position: absolute;
    top: calc(var(--form-control-height) / 2);
    transform: translateY(-50%);
    left: 15px;
    z-index: 3;
    width: 20px;
    height: 20px;
}

.form-icon-wrapper .form-control {
    padding-left: 40px;
}

.form-floating>label {
    padding: 12px 16px 16px 16px;
    height: 100%;
}

.form-icon-wrapper.form-floating>label {
    padding: 12px 16px 16px 40px;
}

.form-floating .form-date:not(.is-filled):not(:focus),
.form-floating .form-select:not(.is-filled):not(:focus) {
    color: transparent;
}

.form-floating>.form-date:not(.is-filled):not(:focus)~label,
.form-floating>.form-select:not(.is-filled):not(:focus)~label {
    opacity: 1 !important;
    transform: none !important;
}

.form-floating>.form-control:focus,
.form-floating>.form-select:focus,
.form-floating>.form-control:not(:placeholder-shown),
.form-floating>.form-select:not(:placeholder-shown) {
    /* Keep the default Bootstrap padding-top adjustment when the label floats */
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-select:focus~label,
.form-floating>.form-control.is-filled:not(:placeholder-shown)~label,
.form-floating>.form-select[value=""]~label,
.form-floating>.form-control.is-filled~label,
.form-floating>.form-select.is-filled~label {
    transform: scale(0.85) translateY(-0.8rem) translateX(0.60rem);
    opacity: 1;
    background-color: #fff;
    padding: 0 5px;
    height: fit-content;
    color: var(--text-primary);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.1px;
}


/**in normal state middle align **/
/* This ensures the label only floats if there is text OR if the user is focused */
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control:focus ~ label {
    transform: scale(0.85) translateY(-0.8rem) translateX(0.60rem) !important;
    opacity: 1;
    background-color: #fff;
    padding: 0 5px;
    height: fit-content;
}

/* This forces the label to stay centered when the placeholder IS shown (field is empty) */
.form-floating > .form-control:placeholder-shown:not(:focus) ~ label {
    transform: scale(1) translateY(0) translateX(0) !important;
    top: 50%;
    transform: translateY(-50%) !important; 
    padding-left: 40px !important; 
    background-color: transparent;
}
/**in normal state middle align **/

.form-password {
    position: relative;
}

.form-password input {
    padding-right: 50px !important;
}

.form-password .toggle {
    position: absolute;
    top: calc(var(--form-control-height) / 2);
    transform: translateY(-50%);
    right: 15px;
    background: transparent;
    border: none;
    padding: 0;
}

.form-password .toggle img {
    height: 24px;
}

/* End Form */

/** homepage CSS **/
.header-top {

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top .inner-header-top {
    display: flex;
    justify-content: flex-start;
    gap: 1px;
    align-items: center;
}

.credits-badge {
    border-radius: var(--Rounded-Corners-m, 28px);
    background: linear-gradient(103deg, #954DAA 0%, #EC4580 100%), var(--Color-Background-Background, #FFF);
    display: inline-flex;
    padding: 8px 16px 8px 12px;
    align-items: center;
    gap: 4px;
    color: #fff;
    padding: 7px 10px;
    border-radius: 20px;
    color: #FEFEFE;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 112.5% */
    letter-spacing: 0.15px;
    display: flex;
    align-items: center;
}

.header-top .credits-badge i {
    margin-right: 5px;
    font-size: 0.9rem;
}

.header-top .initials-badge {
    background-color: var(--fetch-pink);
    width: 40px;
    height: 40px;
    padding: 10.333px 7px 10.667px 7px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FEFEFE;
    text-align: center;
    font-family: Inter;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: 19px;
    /* 100% */
    letter-spacing: -0.083px;
}

.sms-notification {
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    background: #FFF;
    box-shadow: 0 2px 8px 0 rgba(108, 53, 69, 0.20);
}

/* Shake animation */
@keyframes notify-shake {
    0% {
        transform: translate(-72%, -18%) rotate(0deg);
    }

    20% {
        transform: translate(-72%, -18%) rotate(-10deg);
    }

    40% {
        transform: translate(-72%, -18%) rotate(10deg);
    }

    60% {
        transform: translate(-72%, -18%) rotate(-6deg);
    }

    80% {
        transform: translate(-72%, -18%) rotate(6deg);
    }

    100% {
        transform: translate(-72%, -18%) rotate(0deg);
    }
}

/* Base notification dot */
.notification-dot {
    border-color: #f8f9fa !important;
    background: var(--pink-500);
    padding: 5px !important;
    transform: translate(-72%, -18%);
    display: block;
}

/* Shake when ICON (anchor) is hovered */
a:hover .notification-dot {
    animation: notify-shake 0.4s ease-in-out;
}

.main-heading {
    color: #1D232E;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px;
    /* 112.5% */
    padding: 10px 92px 20px 0;
}

/* .horizontal-scroll-section {
    padding: 0 20px 20px;
} */

.horizontal-scroll-content {
    display: flex;
    overflow-x: scroll;
    gap: 8px;
    padding-bottom: 10px;
    padding-top: 10px;
    /* Space for the scrollbar */
    -webkit-overflow-scrolling: touch;
    /* iOS smooth scrolling */
}

/* Hide scrollbar for a cleaner look (optional) */
.horizontal-scroll-content::-webkit-scrollbar {
    display: none;
}

.horizontal-scroll-content {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.product-card {
    flex: 0 0 112px;
    /* Fixed width for mobile cards */
    height: 112px;
    background-color: #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px 0 rgba(108, 53, 69, 0.20);
    transition: all 0.3s ease
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.product-card .new-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 1;
    border-radius: 100px;
    background: var(--Color-Background-Background, #FFF);
    color: #fff;
    padding: 2px 6px;
    color: #475467;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .new-badge img {
    width: 10px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h4 {
    color: #1D232E;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 120% */
    margin: 0;
}

.section-header .transparent-pink-link {
    color: var(--fetch-pink);
    font-size: 0.9rem;
    text-decoration: none;
}

/* --- Campaign Idea Card --- */
.campaign-idea-card {
    border-radius: var(--Rounded-Corners-m, 28px);
    background: var(--Background-Pitch-Gradient, radial-gradient(170.7% 133.24% at 11.94% 0%, #954DAA 0%, rgba(149, 77, 170, 0.00) 100%), radial-gradient(309.7% 129.9% at 11.94% 0%, #F48EDC 0%, rgba(244, 142, 220, 0.00) 100%), radial-gradient(354.25% 108.93% at 100% 100%, #EC4580 0%, rgba(236, 69, 128, 0.00) 100%), #F38BD7);
    box-shadow: 0 2px 8px 0 rgba(108, 53, 69, 0.20);
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.campaign-idea-card .left-div {
    max-width: 80%;
}

.campaign-idea-card .left-div h4 {
    color: #FEFEFE;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 120% */
}

.campaign-idea-card .left-div p {
    color: #FEFEFE;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.2px;
    margin-bottom: 0;
}

.campaign-idea-card .play-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.play-button img {
    transition: transform 0.15s ease;
}

.play-button:hover img {
    transform: scale(1.1);
}

.play-button:active img {
    transform: scale(0.85);
}

/* .campaign-idea-card .play-button i {
    color: #fff;
    font-size: 1.2rem;
} */

.transparent-pink-link {
    color: #C35D7D;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: var(--Label-Large-Tracking, 0.1px);
    border-radius: 100px;
    border: 1px solid #C35D7D;
    display: flex;
    height: 36px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all ease-in-out 0.3s;
}

.transparent-pink-link:hover {
    color: #e9608b;
    border: 1px solid #e9608b;
}

.campaign-grid {
    margin-top: 20px;
    margin-bottom: 20px;
}

.campaign-grid .row {
    --bs-gutter-x: 15px;
}

.campaign-grid .col-6 {
    margin-bottom: 15px;
}

.campaign-grid .product-card {
    flex: none;
    width: 100%;
    height: 172px;
    transition: all 0.3s ease
}

/** bottom navigation **/
.mobile-bottom-nav {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-width);
    background: var(--nav-bg);
    padding: 18px 12px 32px;
    border-radius: 16px 16px 0px 0px;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    z-index: 9999;
}

.mobile-bottom-nav .nav-item {
    text-decoration: none;
    color: var(--nav-inactive);
    font-size: 12px;
    width: 25%;
    padding: 6px 6px 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}

.mobile-bottom-nav .nav-item i {
    font-size: 20px;
    display: block;
}

/* Indicator */
.mobile-bottom-nav .nav-indicator {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0.3);
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background: var(--nav-accent);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(.34, 1.56, .64, 1), opacity 0.2s ease;
}

.mobile-bottom-nav .nav-label {
    opacity: 0;
    text-align: center;
    color: #FEFEFE;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    /* 127.273% */
    letter-spacing: -0.15px;
    text-wrap: nowrap;
}

/* Active - full white, label visible, indicator shown */
.mobile-bottom-nav .nav-item.active {
    color: var(--nav-accent);
}

.mobile-bottom-nav .nav-item.active .nav-label {
    opacity: 1;
    text-align: center;
    color: #FEFEFE;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    /* 127.273% */
    letter-spacing: -0.15px;
}

.mobile-bottom-nav .nav-item.active .nav-indicator {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

/** campaign page tab pills **/

.pur-tabs-div {
    margin: 20px 0;
}

.custom-pill-nav {
    background: #FEFEFE;
    border-radius: 50px;
    display: inline-flex;
    gap: 8px;
    padding: 3px;
    width: 100%;
}

.custom-pill-nav .nav-item {
    flex: 1;
    text-align: center;
}


/* Base tab button */
.custom-pill-nav .nav-link {
    position: relative;
    border: none !important;
    background: transparent !important;
    border-radius: 40px;
    padding: 8px 22px;
    z-index: 2;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    transition: color .35s ease;
    color: #1D232E;
    text-align: center;

    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: -0.5px;
    display: flex;
    justify-content: space-around;
    gap: 4px;
    align-items: center;

}

.custom-pill-nav .alert-tab-number {
    color: #FEFEFE;
    text-align: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px;
    /* 127.273% */
    letter-spacing: -0.15px;
    background-color: #D0D5DD;
    border-radius: 100%;
    padding: 2px 4px;
    flex-shrink: 0;
    min-width: 18px;
}

/* Sliding background */
.custom-pill-nav .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    /* Start from left */
    height: 100%;
    width: 0%;
    /* Hidden initially */
    border-radius: 100px;
    background: var(--pink-200);
    z-index: -1;
    transition: width .35s ease;
    /* Creates the slide */
}

/* Active pill */

.custom-pill-nav .nav-link.active .alert-tab-number {
    background-color: #F95555;
}

/* Background expands from left → right */
.custom-pill-nav .nav-link.active::before {
    width: 100%;
}

.campaign-grid .product-card.product-card-desc {
    height: 100%;
}

.product-card.product-card-desc .product-card-img {
    border-radius: 16px 16px 0px 0px;
    height: 176px;
}


.product-card.product-card-desc {
    flex: auto;
    height: 202px;
    background-color: #f0f0f0;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 2px 8px 0 rgba(108, 53, 69, 0.20);
}

.product-card.product-card-desc p {
    border-radius: 0 0 var(--Rounded-Corners-s, 16px) var(--Rounded-Corners-s, 16px);
    background: #FEFEFE;
    margin-bottom: 0;
    color: #1D232E;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.5px;
    padding: 10px;
    height: 100%;
}

.main-top-heading {
    color: #1D232E;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 116.667% */
    margin: 0;
}

/** campaing detail page **/
.back-btn-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    padding: 12px 16px;
    margin-left: -16px;
    margin-right: -16px;
    background: #FFF;
    box-shadow: 0 8px 12px -6px rgba(108, 53, 69, 0.20);
    position: sticky;
    top: -9px;
    margin-top: -9px;
    z-index: 999;
}




.back-btn-header h1 {
    color: #1D232E;
    /* text-align: center; */
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 116.667% */
    margin: 0;
    width: 100%;
}

/* Header Back Button */
.back-btn-header .back-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    background: #ffe6f1;
    border-radius: 50%;
    color: #fc4fa7;
    font-size: 1.2rem;
}

.back-btn img {
    transition: transform 0.25s ease;
}

.back-btn img:hover {
    transform: translateX(-3px);
}

/* Progress card */
.progress-card {
    border-radius: 16px;
    border: 1px solid #F8CFDC;
    background: #FDF0F4;
}

.progress-card p {
    color: #1D232E;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.15px;
    margin-bottom: 4px;
}

.progress-card span {
    color: #101828;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    /* 114.286% */
    letter-spacing: 0.1px;
    margin-left: 10px;
}

.progress-icon {
    width: 30px;
    height: 30px;
    background: #ED7C9F;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d81b60;
    font-size: 14px;
}

/* Incentive Pill */
.incentive-pill {
    background: #ffccdf;
    color: #d81b60;
}

.campaign-image {
    margin-left: -16px;
    margin-right: -16px;
}

.campaign-image img {
    object-fit: cover;
    max-height: 390px;
    width: 100%;
}

.progress-bar {
    background-color: #ED7C9F;
}

.progress {
    background-color: #fff;
    height: 4px;
}

hr {
    background-color: #E5E7EE;
}

.vr-pur {
    position: relative;
}

.vr-pur::after {
    content: "";
    border: solid 1px #E5E7EE;
    height: 62px;
    top: 1px;
    position: absolute;
}


/** upload wrapper **/
.upload-box {
    position: relative;
    border: 1px dashed #F6BCCE;
    background: #FFF9FB;
    border-radius: 12px;
    width: 75%;
    text-align: center;
    cursor: pointer;
    transition: 0.2s;
    margin: 10px auto;
}

.upload-box:hover {
    background: #fce4ec;
}

.upload-icon {
    font-size: 65px;
    color: #c75d79;
    margin-bottom: 10px;
}

.upload-remove-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #C35D7D;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

.upload-remove-btn:hover {
    background: #b04462;
}

.upload-preview {
    width: 100%;
    object-fit: cover;
    display: none;
    border-radius: 12px;
    height: 278px;
}

.default-content {
    padding: 38px 20px;
}

#igForm textarea.form-control {
    min-height: 120px !important;
}

.campaign-ip-thumbnail-img {
    width: 80px;
    height: 80px;
    margin-top: 10px;
}


.badge-credit {
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge-credit img {
    width: 16px;
    height: 16px;
}

.badge-absolute-r {
    position: absolute;
    right: 4px;
    top: 4px;

}


.media-content-box {
    position: absolute;
    bottom: 6px;
    left: 12px;
}

.media-option input {
    display: none;
}

/* Box styling */
.media-option .content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 20px 16px;
    border: 1px solid #eee;
    min-height: 109px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Hover effect */
.media-option .content:hover {
    transform: translateY(-2px);
}

/* Background animation */
.media-option .content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #974860;
    /* light red */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 0;
    border-radius: 16px;
}

/* Animate on check */
.media-option input:checked+.content::before {
    transform: scaleX(1);
}

/* Text + checkmark above animation */
/* .media-option .content * {
    position: relative;
    z-index: 5;
} */

.media-option {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

/* Checkmark container */
.media-option .checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid #c9d1e0;
    background: #f6f8fc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hide tick initially */
.media-option .checkmark .tick-checked {
    width: 100%;
    display: none;
    transition: opacity .2s ease;
}

.media-option .checkmark .tick-unchecked {
    width: 100%;
    display: block;
    transition: opacity .2s ease;
}

.media-option input:checked+.content .checkmark {
    background: #FFF;
    /* border-color: #e34b6d; */
}

.media-option input:checked .media-option .platform {
    color: #FFF !important;
}

.media-option input:checked+.content .media-content-box .platform {
    color: #FFF;
}

.media-option input:checked+.content .media-content-box .type {
    color: #FFF;
}


.media-option input:checked+.content .checkmark .tick-checked {
    display: block;
}

.media-option input:checked+.content .checkmark .tick-uncheck {
    display: none;
}

.media-option .platform {
    display: block;
    color: #475467;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.5px;
}

.media-option .type {
    display: block;
    color: #1D232E;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 112.5% */
    letter-spacing: 0.15px;
}

/** showroom detail page ends **/

/** pitches page **/
.pitches-hero {
    position: relative;
    margin-left: -16px;
    margin-right: -16px;
    padding: 16px 16px 16px 16px;
}

.pitches-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 250px;
    border-radius: 0 0 28px 28px;
    background: linear-gradient(180deg, #FEFEFE 0%, var(--primary-100) 100%);
}

.pitches-hero .campaign-idea-card {
    margin-top: -14px;
}

.current-pitch-div {
    border: 1px solid #F8CFDC;

}

.current-pitch-div img {
    width: 82px;
}

.min-h-280 {
    min-height: 280px;
}

.min-h-100 {
    min-height: 100px !important;
}

/** pitches pages ends **/

/* My Account / Profile */
.pur-profile::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 86px;
    z-index: -1;
    border-radius: 0 0 28px 28px;
    background: linear-gradient(180deg, #FEFEFE 0%, var(--primary-100) 100%);
}

.pur-profile figure {
    margin: 8px auto 0 auto;
    height: 120px;
    width: 120px;
    background: var(--primary-400);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.pur-profile figure span {
    font-size: 57px;
}

.pur-profile h1 {
    margin-top: 12px;
    margin-bottom: 4px;
    font-size: 32px;
}

.pur-profile h1,
.pur-profile .credit {
    text-align: center;
}

.pur-profile .credit {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 57px;
}

.pur-profile .credit small {
    font-size: 12px;
    font-weight: 700;
}

.pur-profile .credit div {
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: 28px;
    background: linear-gradient(103deg, #954DAA 0%, #EC4580 100%), #FFF;
    font-size: 20px;
    font-weight: 600;
    padding: 8px 16px 8px 12px;
    color: white;
}

.pur-profile .menu {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pur-profile .menu a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    background: #FEFEFE;
    color: var(--text-primary);
    text-decoration: none;
    box-shadow: 0 2px 8px 0 rgba(108, 53, 69, 0.20);
    padding: 12px 20px;
}

.pur-profile hr {
    margin-top: 24px;
    margin-bottom: 24px;
    background-color: #979FBC;
}

.pur-profile .campaign-idea-card {
    background: linear-gradient(to right top, #757e9d, #8479a2, #9970a0, #b06693, #c35d7d) !important;
}

/* My Account / Profile */

/* Card hover lift */
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.product-card .product-card-img {
    transition: transform .4s ease;
    transform-origin: center;
    will-change: transform;
}

.product-card:hover .product-card-img {
    transform: rotateX(4deg) rotateY(-4deg);
}

.product-card .badge-credit {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    transition: transform .3s ease;
}

.product-card:hover .badge-credit {
    transform: translateY(-3px);
}

/** hover effects ends **/

.pitches-screen-grid .pitch-card {
    border-radius: 16px;
    border: 1px solid #C7CBDB;
    background: #FFF;
    padding: 8px;
}

.product-card.product-card-desc.pitch-card p {
    padding: 0px;
    height: auto;
}

.pitch-badge {
    border-radius: var(--Rounded-Corners-m, 28px);
    display: inline-flex;
    padding: 8px 16px 8px 12px;
    align-items: center;
    gap: 4px;
    color: #fff;
    padding: 7px 10px;
    border-radius: 20px;
    color: #FEFEFE;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 0.15px;
    display: flex;
    align-items: center;
    background: #efefef;
    position: absolute;
    top: -2px;
    width: max-content;
}

.pitch-badge.pitch-badge-pending {
    background: #757E9D !important;
}

.pitch-badge.pitch-badge-accepted {
    background: #28BC2F !important;
}

.pitch-badge.pitch-badge-denied {
    background: #F95555 !important;
}

.product-card.product-card-desc.pitch-card img {
    border-radius: 16px;
}

.badge-credit .pitch-badge img {
    border-radius: 0;
    height: 12px !important;
}

.tasks-content-box {
    border-radius: 16px;
    background: #FFF;
    padding: 8px 12px;
}

.tasks-content-box p {
    color: #475467;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    margin: 0;
}

.tasks-content-box span {
    color: #1D232E;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    /* 112.5% */
    letter-spacing: 0.15px;
}

.brand-detail-pitch-row {
    padding-top: 30px;
    padding-bottom: 20px;
    align-items: flex-end;
}

.brand-detail-pitch-img {
    width: 156px;
    height: 156px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid #D6DAE5;

}

.message-item small {
    position: relative;
}

.message-item.unread-item small::before {
    content: " ";
    font-size: 14px;
    position: absolute;
    top: 2px;
    border: 4px solid #F95555;
    left: -16px;
    border-radius: 50%;

}


/** messages 2 UI css **/
.conversation-list {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    /* height: calc(100vh - 120px); */
    height: auto;
}

.mobile-screen {
    max-width: 375px;
    background: linear-gradient(#fff, #fdecef);
    border-radius: 20px;
}

.message-item {
    background: #fff;
    padding: 12px 16px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 2px 8px 0 rgba(108, 53, 69, 0.20);
}

.read-detail {
    text-decoration: none;
    color: unset;
}

.message-item-chat-text {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read-detail:hover {
    text-decoration: none;
    color: unset;
}

/* .bottom-sticky-div {
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    padding: 10px;
    position: fixed;
    margin: 0 auto;
    width: 400px;
    bottom: 153px;
} */

.fixed-btn {
    position: fixed;
    bottom: 2px;
    width: calc(100% - 20px);
    left: 10px;
}

/* .sticky-btn{
    position: sticky;
  } */




/**messages 2 ends**/

/**messages 3 UI **/
/* Layout */
.chat-layout {
    /* max-width: 375px;
    height: 100vh; */
    background: linear-gradient(#fff, #fdecef);
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* Header */
/* .chat-header {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
  } */

/* Title */
/* .chat-title {
    padding: 0 12px 8px;
    background: #fff;
  } */

/* Scrollable messages */
.chat-body {
    flex: 1;
    overflow-y: auto;
    /* padding: 12px; */
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 20px;
    padding-top: 10px;
}

/* Chat rows */
.chat-row {
    display: flex;
}

.chat-row.incoming {
    justify-content: flex-start;
}

.chat-row.outgoing {
    justify-content: flex-end;
}

/* Bubble */
.chat-bubble {
    display: flex;
    flex-direction: column;
    max-width: 75%;
    padding: 12px 12px;
    border-radius: 14px;
    font-size: 14px;
    box-shadow: 0 2px 8px 0 rgba(108, 53, 69, 0.20);
}

.chat-bubble.typing {
    flex-direction: row;
}

.incoming .chat-bubble {
    background: #fff;
    color: #333;
    border-top-left-radius: 4px;
}

.outgoing .chat-bubble {
    background: #974860;
    color: #fff;
    border-top-right-radius: 4px;
}


.chat-bubble .time {
    display: block;
    font-size: 12px;
    opacity: 1;
    margin-top: 4px;
    align-self: self-end;
}

/* Fixed input */
.chat-input {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #fff;
    position: sticky;
    /* bottom: -16px; */
    bottom: 0;
}

.chat-input input {
    border-radius: 16px;
    padding: 16px 45px 16px 16px;
    border: none;
    background: #FDF0F4;
}

/* .chat-message {
    padding-right: 45px;
} */

/* Attachment button inside input */
.attach-btn {
    position: absolute;
    right: 85px;
    /* adjust based on send button width */
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.attach-btn img {
    width: 18px;
    height: 18px;
}

.send-btn {
    background: #974860;
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 50px;
    margin-left: 8px;
}

/** safe area support for IOS **/
.chat-layout {
    padding-bottom: env(safe-area-inset-bottom);
}

.chat-input {
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    margin-left: -16px;
    margin-right: -16px;
}

/** safe area support for IOS **/

/** typing indicator **/
.typing {
    display: flex;
    gap: 4px;
}

.typing span {
    width: 6px;
    height: 6px;
    background: #bbb;
    border-radius: 50%;
    animation: blink 1.4s infinite both;
}

.typing span:nth-child(2) {
    animation-delay: .2s;
}

.typing span:nth-child(3) {
    animation-delay: .4s;
}

@keyframes blink {
    0% {
        opacity: .2;
    }

    20% {
        opacity: 1;
    }

    100% {
        opacity: .2;
    }
}

.inside-ph input {
    padding-right: 45px !important;
}

.inside-ph .attach-btn {
    position: absolute;
    top: 12px;
    right: 20px;
}

/** file choosen and remove for create message **/
.selected-file {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f5f7fa;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
    max-width: 100%;
}

.selected-file span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.remove-file {
    background: none;
    border: none;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    color: #999;
}

.product-disabled {
    opacity: 0.5;
    filter: grayscale(60%);
    cursor: not-allowed;
}

/* Smooth hover UX */
.product-card {
    transition: all 0.3s ease
}

/** pagination css **/

/* Pagination wrapper */
nav[aria-label="Pagination Navigation"] {
    margin-top: 20px;
    font-family: inherit;
    text-align: center;
}

/* Remove default border look */
nav[aria-label="Pagination Navigation"] a,
nav[aria-label="Pagination Navigation"] span {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Base pagination button style */
nav[aria-label="Pagination Navigation"] .inline-flex {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    color: var(--primary-700);
    text-decoration: none;
}

/* Hover state */
nav[aria-label="Pagination Navigation"] a:hover {
    background-color: #f3f4f6 !important;
    transform: translateY(-1px);
}

/* Active page */
nav[aria-label="Pagination Navigation"] [aria-current="page"] span {
    background-color: var(--primary-700)!important;
    color: #fff !important;
    border-radius: 8px;
    font-weight: 600;
}

/* Disabled state */
nav[aria-label="Pagination Navigation"] .cursor-not-allowed {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Arrow icons size */
nav[aria-label="Pagination Navigation"] svg {
    width: 16px;
    height: 16px;
}

/* Remove negative margin spacing */
nav[aria-label="Pagination Navigation"] .-ml-px {
    margin-left: 6px !important;
}

/* Spacing between numbers */
nav[aria-label="Pagination Navigation"] .shadow-sm {
    gap: 6px;
}

/* Hide "Showing X to Y of Z results" text */
nav[aria-label="Pagination Navigation"] .sm\:flex-1>div:first-child {
    display: none !important;
}

/* Hide mobile Previous & Next text buttons */
nav[aria-label="Pagination Navigation"] .sm\:hidden {
    display: none !important;
}

/* Center pagination */
nav[aria-label="Pagination Navigation"] .sm\:flex-1 {
    justify-content: center !important;
}

/* Remove extra spacing */
nav[aria-label="Pagination Navigation"] .sm\:flex-1>div:last-child {
    margin: 0 auto !important;
}

/* Optional: Improve arrow & number alignment */
nav[aria-label="Pagination Navigation"] .relative.inline-flex {
    align-items: center;
}

/* Optional: Make pagination more compact */
nav[aria-label="Pagination Navigation"] a,
nav[aria-label="Pagination Navigation"] span {
    padding: 6px 12px;
    font-size: 14px;
}

/* Optional: Add smooth hover effect */
nav[aria-label="Pagination Navigation"] a:hover {
    background-color: rgba(0, 255, 255, 0.1);
    transition: 0.3s ease;
}

/** CSS for desktop **/

@media screen and (min-width: 441px) {
    .pur-frame {
        /* height: calc(100vh - 101px); */
        height: calc(100vh - 0px);
        overflow:hidden;
    }

    body:has(.mobile-bottom-nav) .pur-container {
        /* min-height: calc(100vh - 101px) !important; */
        min-height: calc(100vh - 0px) !important;
        /* overflow-y: scroll; */
        /* height: calc(100vh - 101px) !important; */
        height: calc(100vh - 0px) !important;
        padding-bottom: 120px;
    }

    .pur-container {
        border-radius: 16px;
        border: 1px solid var(--Color-Gray-Gray-300, #D0D5DD);
        /* background: linear-gradient(180deg, #ED7C9F 10%, #FFF 50%); */
        box-shadow: 0 2px 8px 0 rgba(108, 53, 69, 0.20);
        /* margin: 35px auto 53px auto; */
        position: relative;
        overflow-y: scroll;
        padding-bottom: 120px;
         /* Firefox */
        scrollbar-width: thin;
        scrollbar-color: var(--primary-400) transparent;
    }

    /** scrollbar **/
    /* Chrome, Edge, Safari (Mac + Windows) */
    .pur-container::-webkit-scrollbar {
        width: 6px; /* thin */
    }

    .pur-container::-webkit-scrollbar-track {
        background: transparent;
    }

    .pur-container::-webkit-scrollbar-thumb {
        background: var(--primary-400);
        border-radius: 10px;
    }

    .pur-container::-webkit-scrollbar-thumb:hover {
        background: var(--primary-700);
    }

    .mobile-bottom-nav {
        /* bottom: 53px; */
        border-radius: 16px 16px 8px 8px;
    }

    .onboarding-container{
        border-radius: 16px;
        border: 1px solid #D0D5DD;
        box-shadow: 0 2px 8px 0 rgba(108, 53, 69, 0.20);
        /* margin: 35px auto 53px auto; */
        margin: 0px auto 0px auto;
        position: relative;
        overflow-y: scroll !important;
         /* Firefox */
        scrollbar-width: thin;
        scrollbar-color: var(--primary-400) transparent;
        max-width: var(--container-width) !important;
        height: 100%;
        padding-bottom: 53px;
    }

    .pur-profile::before {
        margin: 35px auto;
        max-width: var(--container-width) !important;
    }

    .pur-brand {
        padding: 28px 16px 32px 16px;
    }

    #signupForm{
        overflow: hidden !important;
    }
}
