@import url(https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css);
@import url(https://fonts.googleapis.com/css?family=Nunito:400,600,800,500,700);
@import url(https://fonts.googleapis.com/css?family=Roboto:400,600,800,500,700);
@font-face {
    font-family: 'Satoshi';
    src: url(/df8f06167ee6fd05a131.woff2) format('woff2'),
        url(/67e7fa77f107df3491b6.woff) format('woff'),
        url(/22ef061781b1162ac317.ttf) format('truetype'),
        url(/66b6be60222486fa8673.otf) format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url(/9ec05085c4cd2966eba8.woff2) format('woff2'),
        url(/ca3da5fd2b609836ef69.woff) format('woff'),
        url(/fe762acc7e97cb612805.ttf) format('truetype'),
        url(/811ccb0b5af1892a71df.otf) format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url(/1ffe968245568e8ba1e7.woff2) format('woff2'),
        url(/2419b46c96ed15331ba2.woff) format('woff'),
        url(/759562088ba19068aef8.ttf) format('truetype'),
        url(/e9d34f0493a853cf10c1.otf) format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url(/a0e6d25529eab537426c.woff2) format('woff2'),
        url(/a875ff682ee232938607.woff) format('woff'),
        url(/464354ba5a06467ecac5.ttf) format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}

.title {
    &.sm {
        font-size: 13px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: 0.13px;
    }

    &.md-15 {

        font-size: 15px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        letter-spacing: 0.15px;
    }

    &.md {
        font-size: 17px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: 0.17px;
    }

    &.lg {
        font-size: 22px;
        font-weight: 700;
        line-height: 24px;
        letter-spacing: 0.17px;
    }

    &.lg-26 {
        font-size: 26px;
        font-weight: 700;
    }

    &.lg-28 {
        font-size: 28px;
        font-weight: 700;
    }

    &.lg-32 {
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 140%;
    }

    &.lg-40 {
        color: #FFF;
        font-size: 40px;
        font-weight: 700;
        letter-spacing: -0.8px;
    }

    &.text-center {
        text-align: center;
    }

    &.extra-bold {
        font-weight: 700;
    }

    &.dark {
        color: var(--Main-white, #FFF);
    }

    &.white {
        color: var(--Main-white, #FFF);
    }

    &.color-primary {
        color: #9753E8;
    }

    &.grey {
        color: var(--Professional-text-grey, #B6B6B6);
    }
}

.color-primary-gradient {
    background: var(--button-gradient, linear-gradient(267deg, #9099DF 0.53%, #9753E8 45.73%, #CE96CB 100.79%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text {
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.13px;

    &.sm {
        font-size: 11px;
        font-weight: 400;
        line-height: 14px;
        letter-spacing: 0.11px;
    }

    &.sm-12 {
        font-size: 12px;
        letter-spacing: 0.12px;
        line-height: 16px;
    }

    &.md-15 {
        font-size: 15px;
        font-weight: 400;
    }

    &.md-17 {
        font-size: 17px;
        font-weight: 500;
    }

    &.weight-400 {
        font-weight: 400;
    }

    &.strong {
        font-weight: 600;
    }

    &.semi-bold {
        font-weight: 500;
    }

    &.extra-bold {
        font-weight: 700;
    }

    &.grey {
        color: var(--Professional-text-grey, #B6B6B6);
    }

    &.white {
        color: white;
    }

    &.text-center {
        text-align: center;
    }
}

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.daity-tooltip-drop {
    --tooltip-drop-bg: #9753E8;
    --shadow: 1px 2px 4px #302b2b;
    --tooltip-box-width: 120px;
    --tooltip-arrow-width: 10px;

    width: var(--tooltip-box-width);
    background-color: var(--tooltip-drop-bg);
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    animation: move_up .5s ease-in;

    &::after {
        content: "";
        position: absolute;
        margin-left: calc(var(--tooltip-arrow-width) * -1);
        border-width: var(--tooltip-arrow-width);
        border-style: solid;
    }

    &.top {
        bottom: 140%;
        left: calc(50% - calc(var(--tooltip-box-width / 2)));

        &::after {
            top: 100%;
            left: 50%;
            border-color: var(--tooltip-drop-bg) transparent transparent transparent;
        }
    }

    &.bottom {
        top: 140%;
        left: calc(50% - calc(var(--tooltip-box-width / 2)));


        &::after {
            bottom: 100%;
            left: 50%;
            border-color: transparent transparent var(--tooltip-drop-bg) transparent;
        }
    }

    &.bottom-left {
        top: 140%;
        left: 0;
        border-top-left-radius: 0;

        &::after {
            bottom: 100%;
            left: calc(var(--tooltip-arrow-width));
            border-color: transparent transparent var(--tooltip-drop-bg) transparent;
        }
    }

    &.right {
        top: -10px;
        left: calc(100% + var(--tooltip-arrow-width) + 8px);

        &::after {
            top: 10px;
            left: -9px;
            border-color: transparent var(--tooltip-drop-bg) transparent transparent;
        }
    }

    @keyframes move_up {
        from {
            bottom: 0;
            opacity: 0;
        }

        to {
            bottom: 180%;
            opacity: 1;
        }
    }
}
.button {
    border-radius: 26px;
    display: flex;
    justify-content: center;
    align-items: center;

    &.dark {
        color: white;
        background: var(--professional-selected-button-grey, #4E4E4F);
    }

    &.primary {
        color: white;
        background: var(--button-gradient, linear-gradient(267deg, #9099DF 0.53%, #9753E8 45.73%, #CE96CB 100.79%));
    }

    &.grey {
        color: white;
        background: var(--Professional-main-grey, #303030);
    }

    &.full {
        width: 100%;
    }

    &.md {
        height: 40px;
    }

    &:disabled {
        opacity: .5;
        cursor: not-allowed !important;
    }


    // New button styles
    &.btn-grey {
        color: white;
        background: var(--professional-selected-button-grey, #4E4E4F);
    }

    &.btn-primary {
        color: white;
        background: var(--button-gradient, linear-gradient(267deg, #9099DF 0.53%, #9753E8 45.73%, #CE96CB 100.79%));
    }

    &.btn-dark {
        color: white;
        background: var(--Professional-main-grey, #303030);
    }

    &.btn-danger {
        color: white;
        background: #D22F2D;
    }

    &.btn-md {
        height: 40px;
    }

    &.btn-sm {
        height: 32px;
    }

    &.btn-px-16 {
        padding-left: 16px;
        padding-right: 16px;
    }

    &.btn-px-24 {
        padding-left: 24px;
        padding-right: 24px;
    }

    &.btn-px-8 {
        padding-left: 8px;
        padding-right: 8px;
    }

    &.btn-width-full {
        width: 100%;
    }
}
.chip {
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;

    &.chip-sm {
        width: 84px;
        height: 24px;
    }

    &.chip-corner {
        border-radius: 30px;
    }

    &.chip-success {
        color: #68E459;
        background: rgba(104, 228, 89, 0.15);
    }

    &.chip-warning {
        color: white;
        background: #D67D13;
    }

    &.chip-secondary {
        color: white;
        background-color: #4E4E4F;
    }
}


.d-flex {
    display: flex;

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

    &.align-end {
        align-items: flex-end;
    }

    &.align-start {
        align-items: flex-start;
    }

    &.justify-center {
        justify-content: center;
    }

    &.xy-center {
        justify-content: center;
        align-items: center;
    }

    &.flex-column {
        flex-direction: column;
    }

    &.justify-content-between {
        justify-content: space-between;
    }

    &.justify-content-end {
        justify-content: end;
    }

    &.flex-wrap {
        flex-wrap: wrap;
    }

    &.gap-4 {
        gap: 4px;
    }

    &.gap-6 {
        gap: 6px;
    }

    &.gap-8 {
        gap: 8px;
    }

    &.gap-12 {
        gap: 12px;
    }

    &.gap-16 {
        gap: 16px;
    }

    &.gap-24 {
        gap: 24px;
    }

    &.gap-32 {
        gap: 32px;
    }
}

.mobile-only {
    display: block;

    &.flex {
        display: flex;
    }
}

.desktop-only {
    display: none;
}

a {
    text-decoration: none;
}

.w-full {
    width: 100%;
}

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

    .mobile-only,
    .mobile-only.d-flex {
        display: none !important;
    }

    .desktop-only {
        display: block;

        &.inline {
            display: inline-block;
        }

        &.flex {
            display: flex;
        }
    }
}
.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(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.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%;
}

.offset-1 {
    margin-left: 8.33333333%;
}

.offset-2 {
    margin-left: 16.66666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333333%;
}

.offset-5 {
    margin-left: 41.66666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333333%;
}

.offset-8 {
    margin-left: 66.66666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333333%;
}

.offset-11 {
    margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
    --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
    --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
    --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
    --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
    --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
    --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
    --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
    --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%;
    }

    .row-cols-sm-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-sm-1>* {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-sm-2>* {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-sm-3>* {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .row-cols-sm-4>* {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-sm-5>* {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-sm-6>* {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .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%;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333333%;
    }

    .offset-sm-2 {
        margin-left: 16.66666667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333333%;
    }

    .offset-sm-5 {
        margin-left: 41.66666667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333333%;
    }

    .offset-sm-8 {
        margin-left: 66.66666667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333333%;
    }

    .offset-sm-11 {
        margin-left: 91.66666667%;
    }

    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0;
    }

    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0;
    }

    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 1rem;
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 1rem;
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 3rem;
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%;
    }

    .row-cols-md-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-md-1>* {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-md-2>* {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-md-3>* {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .row-cols-md-4>* {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-md-5>* {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-md-6>* {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .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%;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333333%;
    }

    .offset-md-2 {
        margin-left: 16.66666667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333333%;
    }

    .offset-md-5 {
        margin-left: 41.66666667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333333%;
    }

    .offset-md-8 {
        margin-left: 66.66666667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333333%;
    }

    .offset-md-11 {
        margin-left: 91.66666667%;
    }

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0;
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0;
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 1rem;
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 1rem;
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 3rem;
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%;
    }

    .row-cols-lg-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-lg-1>* {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-lg-2>* {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-lg-3>* {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .row-cols-lg-4>* {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-lg-6>* {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .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%;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333333%;
    }

    .offset-lg-2 {
        margin-left: 16.66666667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333333%;
    }

    .offset-lg-5 {
        margin-left: 41.66666667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333333%;
    }

    .offset-lg-8 {
        margin-left: 66.66666667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333333%;
    }

    .offset-lg-11 {
        margin-left: 91.66666667%;
    }

    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0;
    }

    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0;
    }

    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 1rem;
    }

    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 1rem;
    }

    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 3rem;
    }

    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%;
    }

    .row-cols-xl-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xl-1>* {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xl-2>* {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xl-3>* {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .row-cols-xl-4>* {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xl-5>* {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xl-6>* {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .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%;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.33333333%;
    }

    .offset-xl-2 {
        margin-left: 16.66666667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333333%;
    }

    .offset-xl-5 {
        margin-left: 41.66666667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333333%;
    }

    .offset-xl-8 {
        margin-left: 66.66666667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333333%;
    }

    .offset-xl-11 {
        margin-left: 91.66666667%;
    }

    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0;
    }

    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0;
    }

    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 3rem;
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%;
    }

    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xxl-1>* {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xxl-2>* {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xxl-3>* {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .row-cols-xxl-4>* {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xxl-5>* {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xxl-6>* {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .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%;
    }

    .offset-xxl-0 {
        margin-left: 0;
    }

    .offset-xxl-1 {
        margin-left: 8.33333333%;
    }

    .offset-xxl-2 {
        margin-left: 16.66666667%;
    }

    .offset-xxl-3 {
        margin-left: 25%;
    }

    .offset-xxl-4 {
        margin-left: 33.33333333%;
    }

    .offset-xxl-5 {
        margin-left: 41.66666667%;
    }

    .offset-xxl-6 {
        margin-left: 50%;
    }

    .offset-xxl-7 {
        margin-left: 58.33333333%;
    }

    .offset-xxl-8 {
        margin-left: 66.66666667%;
    }

    .offset-xxl-9 {
        margin-left: 75%;
    }

    .offset-xxl-10 {
        margin-left: 83.33333333%;
    }

    .offset-xxl-11 {
        margin-left: 91.66666667%;
    }

    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0;
    }

    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0;
    }

    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 0.25rem;
    }

    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 0.25rem;
    }

    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 0.5rem;
    }

    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 0.5rem;
    }

    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 1rem;
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 1rem;
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 3rem;
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 3rem;
    }
}
.bg-danger {
    background: #D22F2D;
}


/* The following line is used to measure usage of this code. You can remove it if you want. */
/* @import url("https://px.animaapp.com/64768aed2ee29e52bbe44452.64768aee3583ebfa16e629a4.QwHgbii.rcp.png"); */

body::-webkit-scrollbar {
  width: 3px !important;
  /* Adjust the value as needed */
}

body.modal-open {
  overflow: hidden;
}

.screen a {
  display: contents;
  text-decoration: none;
}

html body * {
  box-sizing: border-box;
  font-family: "Nunito", Helvetica;
}

html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
  height: 100%;
}

html body {
  font-size: 1.5rem;
  background-color: #0D051B;
  height: 100%;
}

html body {
  --sidebar-width: 250px;
  --background: #0E0E0E;
}

#app {
  height: 100%;
}

.error-text {
  color: #BD2A28;
  font-size: 13px;
}

.primary-text {
  color: #9753E8;
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  html body {
    --sidebar-width: 280px;
  }
}

@media screen and (min-width: 1280px) {
  html body {
    --sidebar-width: 272px;
  }
}

@media screen and (min-width: 1320px) {
  html body {
    --sidebar-width: 284px;
  }
}

.scrollable-box {
  overflow: auto;
}

.scrollable-box::-webkit-scrollbar-track {
  /* -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
  border-radius: 10px;
}

.scrollable-box::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  position: relative;
}

.scrollable-box::-webkit-scrollbar-thumb {
  position: absolute;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #DFE5EE;
}

.scrollable-box.track-my-8px::-webkit-scrollbar-track {
  margin-top: 8px;
  margin-bottom: 8px;
}

button {
  cursor: pointer;
  outline: none;
  border: none;
}

@media screen and (max-height: 820px) {
  html {
    font-size: 55.5%;
  }
}

@media screen and (min-width: 1580px) {
  html {
    font-size: 70%;
  }
}
:root { 
  --apple: #41bd28;
  --background-black: #0e0e0e;
  --black: #000000;
  --black-haze: #f6f7f9;
  --black-haze-2: #f5f7f9;
  --bombay: #aeb3b9;
  --border-grey: #dfe5ee;
  --button-grey: #f1f3f6;
  --chat-grey: #202020;
  --fern: #7fbe7b;
  --main-blue: #4a525d;
  --main-red: #bd2a28;
  --main-white: #ffffff;
  --masala: #3b3b3b;
  --right-sidebar-grey: #fdfdfd;
  --secondary-black-buttons-background: #191919;
  --text-black: #202020;
  --text-grey: #838388;
 
  --font-size-l: 15px;
  --font-size-m: 13px;
  --font-size-s: 12px;
  --font-size-xl: 17px;
  --font-size-xs: 11px;
  --font-size-xxl: 22px;
  --font-size-xxxl: 27px;
 
  --font-family-nunito: "Nunito", Helvetica;
}
.bodyregular {
  font-family: var(--font-family-nunito);
  font-size: var(--font-size-m);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.13px;
}
.login-component-box {
    display: flex;
    height: 100%;
}

.login-component input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset;
  }

.login-component-box .image-box {
    position: relative;
    width: 50%;
    height: 100%;
    display: none;
}

.login-component-box .image-box img {
    width: 100%;
    object-fit: cover;
    min-height: 100%;
}

.login-component-box .image-box .text-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #0D051B 50.87%);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 100px;
}

.login-component-box .image-box .text-content .heading {
    color: #FFF;
    text-align: center;
    font-family: Nunito;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 80% */
    letter-spacing: 0.4px;
}

.login-component-box .image-box .text-content .text {
    color: var(--Right-sidebar-grey, #FDFDFD);
    text-align: center;
    max-width: 434px;

    /* Body/medium */
    font-family: Nunito;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 153.846% */
    letter-spacing: 0.13px;
}

.login-component {
    --border-gray: #DFE5EE;
    --theme-gradient: linear-gradient(266.91deg, #9099DF 0.53%, #9753E8 45.73%, #CE96CB 100.79%);
    --theme-blue: #9753E8;
}

.login-component .eye {
    position: absolute;
    top: 22px;
    right: 2rem;
    width: 2.4rem;
    height: 2.4rem;
    cursor: pointer;
}

.login-component .eye.eye-off {
    top: 22px;
    width: 2rem;
    height: 2rem;
    right: 2.2rem;
}

.login-component .eye * {
    fill: #4A525D;
}

.login-component .forgot {
    margin: 32px 0;

    color: var(--Text-black, #202020);

    /* Subheadline */
    font-family: Nunito;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 133.333% */
    letter-spacing: -0.24px;
}

.login-component .w-100 {
    width: 100%;
}

.login-component .content {
    width: 100%;
}

.login-component.card {
    background-color: white;
    padding: 1rem;
    min-height: calc(100% - 8rem);
    width: 90%;
    /* margin: auto; */
    /* margin-top: 40px; */
    /* margin-bottom: 10px; */
    margin: 2rem auto;
    margin-top: 6rem;
    border-radius: 15px;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
}

.login-component.card .floating-logo {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
}

.login-component .content .heading {
    text-align: center;
    color: var(--Text-black, #202020);
    font-variant-numeric: slashed-zero;
    font-family: Nunito;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 92.308% */
    letter-spacing: 0.26px;
}

.login-component .input-box {
    /* padding: .5rem; */
    margin: 1.6rem 0;
}

.login-component .input-box label {
    color: var(--Text-black, #202020);

    /* Callout/regular */
    font-family: Nunito;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 0.12px;
}

.login-component .input-box .error {
    color: #D22F2D;
    font-weight: 800;
    font-size: 1.5rem;
    padding: .5rem;

    /* Footnote */
    font-family: Nunito;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 184.615% */
    letter-spacing: 0.13px;
}

.login-component .input-box input,
.login-component .input-box textarea,
.login-component .input-box select {
    /* color: var(--border-gray); */
    border: 1px solid var(--border-gray);
    padding: 8px 22px;
    height: 45px;
    margin-top: 1rem;
    font-size: 1.6rem;
    border-radius: 40px;
    transition: .2s ease-out;
    color: var(--Text-grey, #838388);

    /* Footnote */
    font-family: Nunito;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 184.615% */
    letter-spacing: 0.13px;
}

.login-component .input-box select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: white url(/6dbb5b97ecf4daa4b871.svg) no-repeat right center;
    /* Replace with your arrow image */
    background-size: 1.8rem;
    /* Adjust as needed */
    background-position: calc(100% - 16px) center;
}

.login-component .input-box input.error-input {
    /* color: var(--border-gray); */
    border-color: #D22F2D;
}

.login-component .input-box input:focus,
.login-component .input-box textarea:focus,
.login-component .input-box select:focus {
    outline: none;
    border: 1px solid var(--theme-blue);
}

.login-component .input-box input[type="range"] {
    padding: 0;
    --SliderColor: #f1f1f1;
    appearance: none;
    height: 10px;
    border: none;
    outline: none;
    border-radius: 4px;
    margin-bottom: 15px;
    background-color: rgb(200, 200, 200);
    /* --track-background: blueviolet;  */
    --track-background: #30ee1b;
}

.login-component .input-box input[type="range"]::-webkit-slider-runnable-track {
    /* background: linear-gradient(266.91deg, #68E459 0.53%, #5BC83C 45.73%, #4BA23D 100.79%); */
    height: 100%;
    border-radius: 4px;
    /* background: linear-gradient(to right, var(--track-background) 0%, var(--track-background) var(--thumb-position), transparent var(--thumb-position), transparent 100%); */
    background: linear-gradient(to right, #4BA23D, #5BC83C, #68E459, #68E459, var(--thumb-position), transparent var(--thumb-position), transparent 100%);
}

.login-component .input-box input[type="range"]::-webkit-slider-thumb {
    /* Adjust the thumb styles as needed */
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 10px;
    background-color: var(--SliderColor);
    border: 5px solid var(--theme-blue);
    overflow: visible;
    cursor: pointer;
    margin-top: -4px;
    /* Thumb color */
}

.login-component .btn {
    cursor: pointer;
    background: linear-gradient(266.91deg, #9099DF 0.53%, #9753E8 45.73%, #CE96CB 100.79%);
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 36px;
    height: 48px;
    color: var(--Main-white, #FFF);
    text-align: center;
    font-family: Nunito;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 160% */
    letter-spacing: 0.15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-component .gradient-color {
    /* background-image: var(--theme-gradient);
    background-clip: text;
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent; */
    color: var(--theme-blue);
}

.login-component .auth-chip {
    border: 1px solid var(--border-gray);
    border-radius: 40px;
    margin: 1.6rem 0;
    height: 48px;
    cursor: pointer;
}

.login-component .auth-chip.apple {
    color: var(--label-color-light-primary, #000);
    font-family: SF Pro Text;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 157.143% */
    letter-spacing: -0.408px;
}

.login-component .auth-chip.google {
    color: rgba(0, 0, 0, 0.54);
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.login-component .sub-heading {
    margin-top: 10px;
    text-align: center;
    color: #838388;
}

.login-component .text {
    color: #838388;
    padding-top: 1rem;
}

.login-component a {
    text-decoration: none;
}

.login-component .lds-ring {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-component .lds-ring div {
    box-sizing: border-box;
    display: block;
    /* position: absolute; */
    width: 20px;
    height: 20px;
    margin: 8px;
    border: 3px solid #fff;
    border-radius: 50%;
    animation: lds-ring .8s linear infinite;
    border-color: #fff #fff transparent transparent;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

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


@media screen and (max-width: 1020px) {
    .login-component.card {
        max-width: 550px;
    }
}

@media screen and (min-width: 1020px) {
    .login-component.card .floating-logo {
        top: 32px;
        right: 32px;
    }

    .login-component-box .image-box {
        display: block;
    }

    .login-component.card {
        /* margin-top: 1rem; */
        width: 50%;
        margin: 12px 10px;
        min-height: calc(100% - 2rem);
        /* min-height: calc(100% - 40px); */
    }

    .login-component .forgot {
        margin: 40px 0;
        margin-bottom: 32px;
    }

    .login-component.card .content {
        width: 450px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 1120px) {
    .login-component-box .image-box .text-content .heading {
        font-size: 40px;
    }

    .login-component .eye {
        top: 20px;
    }

    .login-component .eye.eye-off {
        top: 20.5px;
    }
}


@media screen and (min-width: 1780px) {
    .login-component-box .image-box {
        width: 60%;
    }

    .login-component.card {
        width: 40%;
    }

    .login-component .eye {
        top: 22px;
    }

    .login-component .eye.eye-off {
        top: 22px;
    }
}

@media screen and (min-width: 1780px) and (min-height: 1120px) {
    .login-component.card {
        align-items: flex-start;
        padding-top: 15% !important;
    }
}

@media screen and (min-height: 1020px) {
    .login-component-box .image-box img {
        max-height: 100%;
    }
}
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 75%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 2rem;
}

.modal-container .modal-body {
    min-width: 300px;
    background-color: white;
    min-height: 100px;
    /* max-height: 90vh; */
    overflow: auto;
    border-radius: 15px;
    padding: 2rem 1rem;
}

.modal-container .modal-body .modal-header {
    text-align: center;
    padding: 1rem 2rem;
}
.report-issue-component {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 10;
}

/* .report-issue-component .component-wrapper {} */

.report-issue-component .component-wrapper .report-btn {
    cursor: pointer;
    background-color: #9753E8;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.20);
}

.report-issue-component .component-wrapper .report-btn svg.report {
    width: 24px;
    height: 24px;
}

.report-issue-component .component-wrapper .report-btn.close {
    background-color: #4A525D;
}

.report-issue-component .component-wrapper .report-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
}

.report-issue-component .component-wrapper .report-form .report-issue-form-component {
    max-height: 90vh;
}

@media screen and (min-width: 1020px) {
    .report-issue-component .component-wrapper .report-btn {
        width: 80px;
        height: 80px;
    }

    .report-issue-component .component-wrapper .report-btn svg.report {
        width: 36px;
        height: 36px;
    }

    .report-issue-component .component-wrapper .report-form {
        padding: 0;
        all: unset;
        position: absolute;
        right: calc(100% - 10px);
        bottom: calc(100% - 10px);
        width: 468px;
    }

    .report-issue-component .component-wrapper .report-form .report-issue-form-component {
        max-height: 83vh;
    }
}

@media screen and (max-width: 1019px) {
    .report-issue-component .component-wrapper .report-form {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
.report-issue-form-component {
    --Text-black: #202020;
    padding: 24px;
}

.report-issue-form-component {
    background-color: white;
    border-radius: 12px;
    background: var(--Main-white, #FFF);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.15);
}

.report-issue-form-component .header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.report-issue-form-component .header-box .heading {
    color: var(--Text-black, #202020);
    font-size: 22px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: 0.22px;
}

.report-issue-form-component .header-box .close-btn {
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    background-color: transparent;
}

.report-issue-form-component .form-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.report-issue-form-component .form-inputs .input .label-box {
    display: flex;
    justify-content: space-between;
}

.report-issue-form-component .form-inputs .input label {
    display: inline-block;
    color: var(--Text-black, #202020);
    font-size: 13px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.13px;
    margin-bottom: 12px;
}

.report-issue-form-component .form-inputs .input .label-box .limit {
    color: var(--Text-grey, #838388);
    font-size: 11px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.11px;
}

.report-issue-form-component .form-inputs .input input,
.report-issue-form-component .form-inputs .input textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--Border-grey, #DFE5EE);
    padding: 16px;
    outline: none;
}

.report-issue-form-component .form-inputs .input.error input,
.report-issue-form-component .form-inputs .input.error textarea {
    color: #D22F2D;
    border-color: #D22F2D;
}

.report-issue-form-component .form-inputs .input.error .label-box label,
.report-issue-form-component .form-inputs .input.error .label-box .limit {
    color: #D22F2D;
}

.report-issue-form-component .form-inputs .input .error {
    padding-top: 4px;
    color: #D22F2D;
    font-size: 11px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.11px;
}

.report-issue-form-component .action-box {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    flex-direction: column-reverse;
}

.report-issue-form-component .action-box .button {
    border-radius: 26px;
    height: 48px;
    border: none;
    outline: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.report-issue-form-component .action-box .button.cancel {
    background: var(--Button-grey, #F1F3F6);
    color: var(--Main-blue, #4A525D);
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.13px;
}

.report-issue-form-component .action-box .button.submit {
    background: var(--button-gradient, linear-gradient(267deg, #9099DF 0.53%, #9753E8 45.73%, #CE96CB 100.79%));
    color: var(--Main-white, #FFF);
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.13px;
}

@media screen and (min-width: 1020px) {
    .report-issue-form-component .header-box {
        margin-bottom: 24px;
    }

    .report-issue-form-component .form-inputs {
        gap: 16px;
    }

    .report-issue-form-component .form-inputs .input label {
        font-size: 12px;
    }

    .report-issue-form-component .action-box .button {
        height: 40px;
    }

    .report-issue-form-component .action-box {
        flex-direction: row;
    }

    .report-issue-form-component .action-box {
        margin-top: 24px;
    }
}
.rating-component {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating-component .star {
    cursor: pointer;
    width: 48px;
    height: 48px;
}

.rating-component .star * {
    pointer-events: none;
}

.rating-component .star.filled * {
    fill: #FEB336;
}

@media screen and (min-width: 1020px) {
    .rating-component .star {
        width: 40px;
        height: 40px;
    }
}
.loader-spinner-ring {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-spinner-ring div {
    box-sizing: border-box;
    display: block;
    /* position: absolute; */
    width: 20px;
    height: 20px;
    margin: 8px;
    border: 3px solid #fff;
    border-radius: 50%;
    animation: lds-ring .8s linear infinite;
    border-color: #fff #fff transparent transparent;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.toast-alert-container {
    position: fixed;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px;
    border: 1px solid;
    border-color: transparent;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    height: 46px;
    display: flex;
    align-items: center;
    font-size: 15px;
    justify-content: space-between;
    z-index: 10;
}

.toast-alert-container.error {
    border-color: #fce4e4;
    background-color: #fce4e4;
    color: #ea5455;
}

.toast-alert-container.error svg * {
    stroke: #ea5455;
}

.toast-alert-container.success {
    border-color: #EEE1FC;
    background-color: #EEE1FC;
    color: #9855E7;
}

.toast-alert-container.success svg * {
    stroke: #9855E7;
}

.toast-alert-container .svg-box {
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toast-alert-container svg * {
    fill: #ea5455;
}

@media screen and (max-width: 1079px) {
    .toast-alert-container {
        width: 95%;
        font-size: 14px;
    }
}
.main-loader-contianer {
    display: inline-block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 12;
    background-color: #050415;
    flex-direction: column;
    pointer-events: none;
}

.main-loader-contianer svg {
    animation: lds-ring .8s infinite;
}

.main-loader-contianer .text {
    margin-top: 16px;
    color: #E6E6E6;
    text-align: center;
    font-family: Nunito;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    /* 146.667% */
    letter-spacing: 0.15px;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

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