.turbo-progress-bar {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    height: 3px;
    background: #0076ff;
    z-index: 2147483647;
    transition: width 300ms ease-out, opacity 150ms 150ms ease-in;
    transform: translate3d(0, 0, 0);
}

body{
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: black;
}

#app {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    min-height: 100vh;
    width: 100%;
}

.main-container-bg {
    background: linear-gradient(
        180deg,
        rgb(255, 240, 221) 64%,
        rgb(238, 245, 237) 100%
    );
}

.main-container {
    max-width: 421px;
    margin-left: auto;
    margin-right: auto;
    min-height: 100vh;
    display: flex;
    flex-flow: column;
    width: 100%;
}

@media screen and (max-width: 421px) {
    .main-container {
        width: 100%;
        height: auto;
    }
}
.cursor-pointer {
    cursor: pointer;
}

.overflow-hdn {
    overflow: hidden;
}

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

input[type="number"] {
    -moz-appearance: textfield;
}

* {
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
    scrollbar-width: none;
    /* Firefox */
}

*::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.auth-container {
    background: linear-gradient(
        143deg,
        rgb(255, 240, 221) 42%,
        rgb(238, 245, 237) 100%
    );
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    row-gap: 2%;
}

.auth-text {
    font-family: "Mukta";
    font-size: 5.5vw;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0.06em;
    text-align: left;
}

.auth-text-container {
    border-bottom: 1px solid;
    margin: 0px 26px;
    display: flex;
    flex-direction: column;
    row-gap: 22px;
    margin-top: 5rem;
    align-items: center;
}

.otp-input-container {
    justify-content: center;
    display: flex;
    gap: 10px;
}

.otp-input-container > div {
    margin-top: 15px;
    justify-content: center;
    column-gap: 1%;
}

@media screen and (min-width: 430px) {
    .otp-input-container > div {
        column-gap: 2% !important;
    }
}
.otp-input-container input {
    width: 50px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border: 1px solid #ccc !important;
    border-radius: 4px;
}

.otp-input {
    display: flex;
}

.otp-input input {
    width: 40px;
    height: 40px;
    margin: 0 5px;
    text-align: center;
    font-size: 18px;
}

.otp-input {
    background-color: black;
}

.timer-class {
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 600;
    line-height: 19.07px;
    text-align: left;
    padding: 0px 8px;
    border: none !important;
    background: transparent !important;
}

.span-resend {
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 600;
    line-height: 19.07px;
    text-align: left;
    color: orange;
}

.css-1d27nd2-MuiCircularProgress-root {
    width: 25px !important;
    height: 25px !important;
}

@media only screen and (min-width: 768px) {
    .auth-text {
        font-size: 28px;
    }
}

.btn-container {
    display: flex;
    justify-content: space-between;
    background: #f5821f;
    color: white;
    align-items: center;
    border: 1px solid;
    border-radius: 30px;
    padding: 10px 15px;
    font-family: "Open Sans";
    font-size: 20px;
    font-weight: 700;
    height: 59px;
    width: 100%;
    line-height: 19.07px;
    text-align: center;
    margin-bottom: 30px;
}

.btn-container:disabled {
    background-color: gray;
}

.arrow-div {
    height: 32px;
    width: 32px;
    background-color: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-divv {
    height: 32px;
    width: 32px;
    background-color: white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.position-relative {
    position: relative;
}

:root {
    --toastify-color-light: #fff;
    --toastify-color-dark: #121212;
    --toastify-color-info: #3498db;
    --toastify-color-success: #07bc0c;
    --toastify-color-warning: #f1c40f;
    --toastify-color-error: #e74c3c;
    --toastify-color-transparent: rgba(255, 255, 255, 0.7);
    --toastify-icon-color-info: var(--toastify-color-info);
    --toastify-icon-color-success: var(--toastify-color-success);
    --toastify-icon-color-warning: var(--toastify-color-warning);
    --toastify-icon-color-error: var(--toastify-color-error);
    --toastify-toast-width: 320px;
    --toastify-toast-offset: 16px;
    --toastify-toast-top: max(
        var(--toastify-toast-offset),
        env(safe-area-inset-top)
    );
    --toastify-toast-right: max(
        var(--toastify-toast-offset),
        env(safe-area-inset-right)
    );
    --toastify-toast-left: max(
        var(--toastify-toast-offset),
        env(safe-area-inset-left)
    );
    --toastify-toast-bottom: max(
        var(--toastify-toast-offset),
        env(safe-area-inset-bottom)
    );
    --toastify-toast-background: #fff;
    --toastify-toast-min-height: 64px;
    --toastify-toast-max-height: 800px;
    --toastify-toast-bd-radius: 6px;
    --toastify-font-family: sans-serif;
    --toastify-z-index: 9999;
    --toastify-text-color-light: #757575;
    --toastify-text-color-dark: #fff;
    --toastify-text-color-info: #fff;
    --toastify-text-color-success: #fff;
    --toastify-text-color-warning: #fff;
    --toastify-text-color-error: #fff;
    --toastify-spinner-color: #616161;
    --toastify-spinner-color-empty-area: #e0e0e0;
    --toastify-color-progress-light: linear-gradient(
        to right,
        #4cd964,
        #5ac8fa,
        #007aff,
        #34aadc,
        #5856d6,
        #ff2d55
    );
    --toastify-color-progress-dark: #bb86fc;
    --toastify-color-progress-info: var(--toastify-color-info);
    --toastify-color-progress-success: var(--toastify-color-success);
    --toastify-color-progress-warning: var(--toastify-color-warning);
    --toastify-color-progress-error: var(--toastify-color-error);
    --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
    z-index: var(--toastify-z-index);
    -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
    position: fixed;
    padding: 4px;
    width: var(--toastify-toast-width);
    box-sizing: border-box;
    color: #fff;
}
.Toastify__toast-container--top-left {
    top: var(--toastify-toast-top);
    left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
    top: var(--toastify-toast-top);
    left: 50%;
    transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
    top: var(--toastify-toast-top);
    right: var(--toastify-toast-right);
}
.Toastify__toast-container--bottom-left {
    bottom: var(--toastify-toast-bottom);
    left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
    bottom: var(--toastify-toast-bottom);
    left: 50%;
    transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
    bottom: var(--toastify-toast-bottom);
    right: var(--toastify-toast-right);
}

@media only screen and (max-width: 480px) {
    .Toastify__toast-container {
        width: 100vw;
        padding: 0;
        left: env(safe-area-inset-left);
        margin: 0;
    }
    .Toastify__toast-container--top-left,
    .Toastify__toast-container--top-center,
    .Toastify__toast-container--top-right {
        top: env(safe-area-inset-top);
        transform: translateX(0);
    }
    .Toastify__toast-container--bottom-left,
    .Toastify__toast-container--bottom-center,
    .Toastify__toast-container--bottom-right {
        bottom: env(safe-area-inset-bottom);
        transform: translateX(0);
    }
    .Toastify__toast-container--rtl {
        right: env(safe-area-inset-right);
        left: initial;
    }
}
.Toastify__toast {
    --y: 0;
    position: relative;
    -ms-touch-action: none;
    touch-action: none;
    min-height: var(--toastify-toast-min-height);
    box-sizing: border-box;
    margin-bottom: 1rem;
    padding: 8px;
    border-radius: var(--toastify-toast-bd-radius);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-height: var(--toastify-toast-max-height);
    font-family: var(--toastify-font-family);
    cursor: default;
    direction: ltr;
    /* webkit only issue #791 */
    z-index: 0;
    overflow: hidden;
}
.Toastify__toast--stacked {
    position: absolute;
    width: 100%;
    transform: translate3d(0, var(--y), 0) scale(var(--s));
    transition: transform 0.3s;
}
.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body,
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
    transition: opacity 0.1s;
}
.Toastify__toast--stacked[data-collapsed="false"] {
    overflow: visible;
}
.Toastify__toast--stacked[data-collapsed="true"]:not(:last-child) > * {
    opacity: 0;
}
.Toastify__toast--stacked:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: calc(var(--g) * 1px);
    bottom: 100%;
}
.Toastify__toast--stacked[data-pos="top"] {
    top: 0;
}
.Toastify__toast--stacked[data-pos="bot"] {
    bottom: 0;
}
.Toastify__toast--stacked[data-pos="bot"].Toastify__toast--stacked:before {
    transform-origin: top;
}
.Toastify__toast--stacked[data-pos="top"].Toastify__toast--stacked:before {
    transform-origin: bottom;
}
.Toastify__toast--stacked:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    transform: scaleY(3);
    z-index: -1;
}
.Toastify__toast--rtl {
    direction: rtl;
}
.Toastify__toast--close-on-click {
    cursor: pointer;
}
.Toastify__toast-body {
    margin: auto 0;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 6px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.Toastify__toast-body > div:last-child {
    word-break: break-word;
    -ms-flex: 1;
    flex: 1;
}
.Toastify__toast-icon {
    -webkit-margin-end: 10px;
    margin-inline-end: 10px;
    width: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -ms-flexbox;
    display: flex;
}

.Toastify--animate {
    animation-fill-mode: both;
    animation-duration: 0.5s;
}

.Toastify--animate-icon {
    animation-fill-mode: both;
    animation-duration: 0.3s;
}

@media only screen and (max-width: 480px) {
    .Toastify__toast {
        margin-bottom: 0;
        border-radius: 0;
    }
}
.Toastify__toast-theme--dark {
    background: var(--toastify-color-dark);
    color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
    background: var(--toastify-color-light);
    color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
    background: var(--toastify-color-light);
    color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
    color: var(--toastify-text-color-info);
    background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
    color: var(--toastify-text-color-success);
    background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
    color: var(--toastify-text-color-warning);
    background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
    color: var(--toastify-text-color-error);
    background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
    background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
    background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
    background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
    background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
    background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
    background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
    background: var(--toastify-color-transparent);
}

.Toastify__close-button {
    color: #fff;
    background: transparent;
    outline: none;
    border: none;
    padding: 0;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s ease;
    -ms-flex-item-align: start;
    align-self: flex-start;
    z-index: 1;
}
.Toastify__close-button--light {
    color: #000;
    opacity: 0.3;
}
.Toastify__close-button > svg {
    fill: currentColor;
    height: 16px;
    width: 14px;
}
.Toastify__close-button:hover,
.Toastify__close-button:focus {
    opacity: 1;
}

@keyframes Toastify__trackProgress {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}
.Toastify__progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--toastify-z-index);
    opacity: 0.7;
    transform-origin: left;
    border-bottom-left-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
    transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
    right: 0;
    left: initial;
    transform-origin: right;
    border-bottom-left-radius: initial;
    border-bottom-right-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--wrp {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    border-bottom-left-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--wrp[data-hidden="true"] {
    opacity: 0;
}
.Toastify__progress-bar--bg {
    opacity: var(--toastify-color-progress-bgo);
    width: 100%;
    height: 100%;
}

.Toastify__spinner {
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 2px solid;
    border-radius: 100%;
    border-color: var(--toastify-spinner-color-empty-area);
    border-right-color: var(--toastify-spinner-color);
    animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        transform: translate3d(10px, 0, 0);
    }
    90% {
        transform: translate3d(-5px, 0, 0);
    }
    to {
        transform: none;
    }
}
@keyframes Toastify__bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, var(--y), 0);
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, var(--y), 0);
    }
}
@keyframes Toastify__bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0);
    }
    75% {
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        transform: translate3d(5px, 0, 0);
    }
    to {
        transform: none;
    }
}
@keyframes Toastify__bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, var(--y), 0);
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, var(--y), 0);
    }
}
@keyframes Toastify__bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    from {
        opacity: 0;
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0);
    }
    75% {
        transform: translate3d(0, 10px, 0);
    }
    90% {
        transform: translate3d(0, -5px, 0);
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}
@keyframes Toastify__bounceOutUp {
    20% {
        transform: translate3d(0, calc(var(--y) - 10px), 0);
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, calc(var(--y) + 20px), 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
}
@keyframes Toastify__bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0);
    }
    75% {
        transform: translate3d(0, -10px, 0);
    }
    90% {
        transform: translate3d(0, 5px, 0);
    }
    to {
        transform: none;
    }
}
@keyframes Toastify__bounceOutDown {
    20% {
        transform: translate3d(0, calc(var(--y) - 10px), 0);
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, calc(var(--y) + 20px), 0);
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
}
.Toastify__bounce-enter--top-left,
.Toastify__bounce-enter--bottom-left {
    animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right,
.Toastify__bounce-enter--bottom-right {
    animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
    animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
    animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left,
.Toastify__bounce-exit--bottom-left {
    animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right,
.Toastify__bounce-exit--bottom-right {
    animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
    animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
    animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
@keyframes Toastify__zoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}
.Toastify__zoom-enter {
    animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
    animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in;
    }
    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        transform: perspective(400px);
    }
}
@keyframes Toastify__flipOut {
    from {
        transform: translate3d(0, var(--y), 0) perspective(400px);
    }
    30% {
        transform: translate3d(0, var(--y), 0) perspective(400px)
            rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    to {
        transform: translate3d(0, var(--y), 0) perspective(400px)
            rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}
.Toastify__flip-enter {
    animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
    animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
    from {
        transform: translate3d(110%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, var(--y), 0);
    }
}
@keyframes Toastify__slideInLeft {
    from {
        transform: translate3d(-110%, 0, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, var(--y), 0);
    }
}
@keyframes Toastify__slideInUp {
    from {
        transform: translate3d(0, 110%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, var(--y), 0);
    }
}
@keyframes Toastify__slideInDown {
    from {
        transform: translate3d(0, -110%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, var(--y), 0);
    }
}
@keyframes Toastify__slideOutRight {
    from {
        transform: translate3d(0, var(--y), 0);
    }
    to {
        visibility: hidden;
        transform: translate3d(110%, var(--y), 0);
    }
}
@keyframes Toastify__slideOutLeft {
    from {
        transform: translate3d(0, var(--y), 0);
    }
    to {
        visibility: hidden;
        transform: translate3d(-110%, var(--y), 0);
    }
}
@keyframes Toastify__slideOutDown {
    from {
        transform: translate3d(0, var(--y), 0);
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 500px, 0);
    }
}
@keyframes Toastify__slideOutUp {
    from {
        transform: translate3d(0, var(--y), 0);
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -500px, 0);
    }
}
.Toastify__slide-enter--top-left,
.Toastify__slide-enter--bottom-left {
    animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right,
.Toastify__slide-enter--bottom-right {
    animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
    animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
    animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left,
.Toastify__slide-exit--bottom-left {
    animation-name: Toastify__slideOutLeft;
    animation-timing-function: ease-in;
    animation-duration: 0.3s;
}
.Toastify__slide-exit--top-right,
.Toastify__slide-exit--bottom-right {
    animation-name: Toastify__slideOutRight;
    animation-timing-function: ease-in;
    animation-duration: 0.3s;
}
.Toastify__slide-exit--top-center {
    animation-name: Toastify__slideOutUp;
    animation-timing-function: ease-in;
    animation-duration: 0.3s;
}
.Toastify__slide-exit--bottom-center {
    animation-name: Toastify__slideOutDown;
    animation-timing-function: ease-in;
    animation-duration: 0.3s;
}

@keyframes Toastify__spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.Toastify__toast-container {
    z-index: 999999;
}

.enter-mobile {
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 600;
    line-height: 19.07px;
    text-align: left;
}

.input-number {
    padding-left: 8px;
    border: none;
}

.number-container {
    position: relative;
    column-gap: 10px;
    padding: 12px 7px;
    border-radius: 8px;
    background-color: white;
}

.input-p {
    font-family: "Open Sans";
    font-size: 20px;
    font-weight: 700;
    line-height: 30.4px;
    text-align: left;
    color: #000000;
    padding: 0px 15px;
    border-right: 1px solid #dde2e3;
    margin: 0;
    padding: 0px 15px;
}

.input-number:focus {
    outline: white;
    border: none;
    box-shadow: none;
}

.checkbox-auth {
    height: 27px;
    width: 47px;
}

.login-checkbox-container {
    margin: -14px -24px;
    display: flex;
    padding-top: 18px;
    padding-right: 23px;
    padding-left: 10px;
}

.login-checkbox-container input[type="checkbox"] {
    accent-color: black;
    background-color: black;
    border-radius: 4px;
    width: 20px;
}

.colGap-13 {
    padding: 0px 13px;
    column-gap: 18px;
}

.label-text {
    color: #878d92;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    text-align: left;
    letter-spacing: 0.1px;
}

.label-text > a {
    cursor: pointer;
    color: #878d92;
    text-decoration: underline;
}

.input-container-bg {
    background-color: #fbf2e2;
}

.input-container-border {
    border: 1px solid #d8d8d8;
}

.padding-top-number {
    padding-top: 3px;
    position: absolute;
    right: 20px;
}

.term-cond {
    cursor: pointer;
    text-decoration: underline;
}

.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 55px;
    height: 20px;
    background-color: white;
    border: 2px solid black;
    cursor: pointer;
}

/* Style for the checkbox when checked */
.custom-checkbox:checked {
    background-color: black;
    border-color: black;
}

/* The checkmark */
.custom-checkbox:checked::after {
    content: "";
    display: block;
    width: 6px;
    height: 13px;
    border: solid orange;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    position: relative;
    left: 5px;
    top: 0px;
}

.editable-num {
    font-size: 20px;
    font-weight: 600;
}

.non-editable-num {
    font-size: 16px;
    font-weight: 600;
}

.number-country-code {
    color: black;
    font-size: 16px;
    font-weight: 600;
}

.input-number-country-code {
    color: #878d92;
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 500px) {
    .custom-checkbox {
        width: 65px;
    }
}

.terms {
    font-weight: bold;
    text-align: center;
    padding: 20px;
    background: #f5821f;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    font-family: "Open Sans";
    font-size: 17.13px;
    font-weight: 700;
    line-height: 25.7px;
}

.mandatory-text {
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
}

.drawer-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    row-gap: 30%;
    padding: 25px 27px;
}

.okay-btn {
    display: flex;
    justify-content: space-between;
    background: #f15600;
    color: white;
    align-items: center;
    border: 1px solid;
    border-radius: 30px;
    padding: 10px 15px;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 700;
    height: 59px;
    line-height: 19.07px;
    text-align: center;
    width: 358px;
}

.profile-pic-container {
    height: 120px;
    width: 120px;
    background-image: linear-gradient(#fff0dd, #eef5ed);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-photo-label {
    font-weight: 400 !important;
    font-size: 16px;
    color: #000000;
    margin-top: 10px;
}

.pp-main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 10px;
}

.file-input {
    display: none;
}

.pp-upload-btn {
    border: none;
    background-color: white;
    z-index: 1;
    border-radius: 100%;
    height: 35px;
    width: 35px;
    position: absolute;
    /* top: 75px; */
    top: 77px;
    right: 0px;
}

.pp-sub-contt {
    position: relative;
}

.primary-dropdown-container {
    width: 100%;
    border: 1px solid #c3c9d5;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.css-1869usk-MuiFormControl-root {
    min-width: 95% !important;
}



.css-n70jm4-MuiInputBase-root-MuiInput-root-MuiSelect-root::after {
    border: none !important;
}

.css-n70jm4-MuiInputBase-root-MuiInput-root-MuiSelect-root::before {
    border: none !important;
}

.add-address-label {
    font-weight: 700;
    font-size: 16px;
}

.address-form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* .input-container .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    background-color: white !important;
} */

.input-container {
    width: 100%;
    border: 1px solid #c3c9d5;
    border-radius: 10px;
}

.input-container .css-1u3bzj6-MuiFormControl-root-MuiTextField-root {
    width: 100%;
}

.input-container .css-batk84-MuiInputBase-root-MuiFilledInput-root::before {
    border: none !important;
}

/* .input-container .css-batk84-MuiInputBase-root-MuiFilledInput-root {
    background: transparent !important;
} */

.input-container .css-batk84-MuiInputBase-root-MuiFilledInput-root::after {
    border: none !important;
}

.input-container .css-o943dk-MuiFormLabel-root-MuiInputLabel-root.Mui-focused {
    color: #716f86 !important;
}

.input-container .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    border-radius: 7px !important;
    margin-left: 1px;
    width: 92%;
}

/* .input-container
    .css-batk84-MuiInputBase-root-MuiFilledInput-root.Mui-disabled {
    background-color: transparent !important;
} */

.profile-upload-containerr {
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
}

.profile-upload-sub-containerr {
    height: 70%;
    width: 92%;
    border-radius: 12px;
    border: 1px dashed #c5cbeb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    background-color: #f8f8ff;
    margin-top: 44px;
}

.btns-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.camera-btn {
    height: 40px;
    padding: 6px 11px;
    border-radius: 100px;
    border: 1px solid #f5821f;
    color: #f5821f;
    width: 102px;
    font-weight: 500;
    text-align: center;
    background-color: transparent;
    cursor: pointer;
}

.gallery-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 102px;
    border-radius: 100px;
    color: white;
    font-weight: 500;
    border: none;
    background-color: #f5821f;
    cursor: pointer;
}

.select-label {
    font-weight: 700;
    font-size: 24px;
    color: #3f3d51;
}

.or-label {
    font-weight: 400;
    font-size: 14px;
    color: #716f86;
}

.cancel-label, #btnPreviewCancel {
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    border: none;
    background-color: transparent;
    height: 40px;
    width: 100px;
}

.profile-img-div {
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 70%;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.profile-image-container-two {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
    width: 100%;
}

.close-camera {
    color: #000000;
    font-weight: 500;
    font-size: 13px;
    border: none;
    background-color: transparent;
    height: 40px;
    border: 1px solid #fd9a01;
    border-radius: 100px;
    padding: 6px 11px;
    color: #fd9a01;
}

.width-btn {
    width: 90%;
    cursor: pointer;
}

.uploading-btn-container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    cursor: pointer;
}

.upload-icon {
    cursor: pointer;
}

.picker-container {
    z-index: 10001;
    width: 100%;
}

.picker-container,
.picker-container *,
.picker-container :after,
.picker-container :before {
    box-sizing: border-box;
}

.picker-container .picker-inner {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    font-size: 1.2em;
    -webkit-mask-box-image: linear-gradient(
        0deg,
        transparent,
        transparent 5%,
        #fff 20%,
        #fff 80%,
        transparent 95%,
        transparent
    );
}

.picker-container .picker-column {
    -ms-flex: 1 1;
    flex: 1 1;
    position: relative;
    max-height: 100%;
    overflow: hidden;
    text-align: center;
}

.picker-container .picker-column .picker-scroller {
    transition: 0.3s;
    transition-timing-function: ease-out;
}

.picker-container .picker-column .picker-item {
    position: relative;
    padding: 0 10px;
    white-space: nowrap;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
}

.picker-container .picker-column .picker-item.picker-item-selected {
    color: #222;
}

.picker-container .picker-highlight {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.picker-container .picker-highlight:after,
.picker-container .picker-highlight:before {
    content: " ";
    position: absolute;
    left: 0;
    right: auto;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #d9d9d9;
    transform: scaleY(0.5);
}

.picker-container .picker-highlight:before {
    top: 0;
    bottom: auto;
}

.picker-container .picker-highlight:after {
    bottom: 0;
    top: auto;
}

.date-selector-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-color: #ffffff; /* White background color */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    color: #333; /* Dark text color for better visibility */
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.date-selector-container h2 {
    height: 65px;
    background: #f5821f;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
}

.date-selector-container button {
    background-color: #007bff; /* Blue background color for button */
    color: #fff; /* White text color */
    padding: 10px 20px; /* Padding inside the button */
    border: none; /* Remove default border */
    border-radius: 4px; /* Rounded button corners */
    cursor: pointer; /* Pointer cursor on hover */
    display: block; /* Make button a block-level element */
    margin: 0 auto; /* Center-align button */
}

.date-selector-container button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Date Picker specific styles */
.react-scrollable-picker {
    color: #333; /* Ensure picker text is dark */
    font-size: 16px; /* Set a readable font size */
}

.react-scrollable-picker-wheel {
    background-color: #fff; /* Ensure wheel background is white */
    color: #333; /* Ensure text color is dark */
}

.dob-action-container {
    height: 56px;
    display: flex;
    border-top: solid 1px black;
    padding-top: 1px;
}

.dob-cancel-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: solid 1px black;
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
    cursor: pointer;
}

.dob-ok-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
    cursor: pointer;
}

.picker-container .picker-highlight:after,
.picker-container .picker-highlight:before {
    content: " ";
    position: absolute;
    left: 0;
    right: auto;
    display: block;
    width: 82%;
    height: 1px;
    background-image: repeating-linear-gradient(
        90deg,
        #f15600 0%,
        #f15600 26%,
        white 26%,
        white 35%
    );
    transform: scaleY(-1.5);
    margin-left: 10%;
    background-color: transparent;
}

.picker-container .picker-column .picker-item {
    display: flex;
    justify-content: center;
    align-items: center;
    top: 12px;
}

.picker-container {
    margin-top: -25%;
}

.picker-container .picker-highlight {
    height: 45px !important;
    margin-top: -8px !important;
}

.divider-div {
    border-bottom: 0.5px solid #e9e8f2;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px;
}

.double-field-wrapper {
    border: 1px solid #e9e8f2;
    height: 58px;
    border-radius: 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.dfw-contt-one {
    width: 25%;
    height: 100%;
}

.dfw-contt-two {
    width: 70%;
    height: 100%;
}

.separate {
    border-right: 1px solid #e9e8f2;
    height: 80%;
}

.input-name {
    height: 90%;
    width: 100%;
    border: none;
    outline: none;
}

.input-name .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    background-color: white !important;
}

.input-name .css-1u3bzj6-MuiFormControl-root-MuiTextField-root {
    width: 100%;
}

.input-name .css-batk84-MuiInputBase-root-MuiFilledInput-root::before {
    border: none !important;
}

.input-name .css-batk84-MuiInputBase-root-MuiFilledInput-root::after {
    border: none !important;
    background: transparent !important;
}

/* .css-batk84-MuiInputBase-root-MuiFilledInput-root {
    background: transparent !important;
} */

.input-name .css-o943dk-MuiFormLabel-root-MuiInputLabel-root.Mui-focused {
    color: #716f86 !important;
}

.dob-field-one .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    border-top-left-radius: 7px !important;
    border-bottom-left-radius: 7px !important;
}

.input-name .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    border-radius: 0px !important;
}

.dob-field-two .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    background-color: white !important;
}

.dob-field-two .css-1u3bzj6-MuiFormControl-root-MuiTextField-root {
    width: 100%;
}

.dob-field-two .css-batk84-MuiInputBase-root-MuiFilledInput-root::before {
    border: none !important;
}

.dob-field-two .css-batk84-MuiInputBase-root-MuiFilledInput-root::after {
    border: none !important;
}

.dob-field-two .css-o943dk-MuiFormLabel-root-MuiInputLabel-root.Mui-focused {
    color: #716f86 !important;
}

.dob-field-two .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    border-radius: 7px !important;
}

.dob-field-one .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    background-color: white !important;
}

.dob-field-one .css-1u3bzj6-MuiFormControl-root-MuiTextField-root {
    width: 100%;
}

.dob-field-one .css-batk84-MuiInputBase-root-MuiFilledInput-root::before {
    border: none !important;
}

.dob-field-one .css-batk84-MuiInputBase-root-MuiFilledInput-root::after {
    border: none !important;
}

.select-input {
    border: none;
    background-color: transparent;
    height: 100%;
    width: 95%;
    outline: none;
    padding: 10%;
    color: #716f86;
}

.dob-field {
    display: flex;
    gap: 2%;
}

.dob-field-one {
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-right: 5px;
    border: 0 transparent solid !important;
}

.dob-field-two {
    width: 28%;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.age-input {
    border: none;
    outline: none;
    height: 100%;
    width: 100%;
}

.dob-span {
    height: 100%;
    color: #716f86;
    padding: 5%;
    width: 95%;
}

.gender-container {
    border-radius: 10px;
    background-image: linear-gradient(#fff0dd, #eef5ed);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 15px 15px;
}

.chip-container {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.chip {
    padding: 5px 18px;
    border-radius: 20px;
    background-color: white;
    color: #716f86;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.chip.selected {
    background-color: #f15600;
    color: white;
    border: 1px solid #f15600;
}

.gender-label {
    color: #716f86;
    font-size: 16px;
}

.date-picker-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.date-picker-input {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
}

.height-div {
    height: 36px;
}

.checkbox-container {
    display: flex;
    gap: 10px;
}

.height-div-two {
    height: 5px;
}

.checkbox-container {
    margin: 0px -24px;
    height: 88px;
    display: flex;
    padding-top: 18px;
    padding-right: 25px;
    padding-left: 42px;
}

.checkbox-tnc {
    color: #878d92;
    font-size: 12px;
}

.calendar-icon-btn {
    border: none;
    background-color: transparent;
}

.checkbox-container {
    cursor: pointer;
}

.ud-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #716f86 !important;
}

.footer-label {
    color: #716f86 !important;
}

.footer-border {
    border-right: 1px solid #716f86;
    height: 15px;
}

.pledge-style {
    font-family: "Open Sans";
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
}

.bg-pledge {
    background-color: #f7f7fc;
}

.checkbox-container-user input[type="checkbox"] {
    accent-color: black;
    background-color: black;
    border-radius: 4px;
    height: 20px !important;
    width: 20px !important;
}

.user-extra-form-container {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.user-extra-form-container .user-extra-details-divider {
    border-bottom: 1px solid #e9e8f2;
    margin: 8px 0px;
}
.user-extra-form-container .relationship-label {
    font-family: "Open Sans";
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: black;
}
.user-extra-form-container .MuiFormControl-root {
    width: 100%;
}
.user-extra-form-container .Mui-focused {
    color: #716f86 !important;
}
.user-extra-form-container .css-e4w4as-MuiFormLabel-root-MuiInputLabel-root {
    color: #716f86 !important;
    font-weight: 400 !important;
    font-family: "Open Sans" !important;
}
.user-extra-form-container
    .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    border-radius: 8px !important;
    border: 1px solid #c3c9d5;
}
.user-extra-form-container
    .css-batk84-MuiInputBase-root-MuiFilledInput-root::after {
    border: none !important;
}
.user-extra-form-container
    .css-batk84-MuiInputBase-root-MuiFilledInput-root::before {
    border: none !important;
}

/* .dob-field-one {
    border: 1px solid #c3c9d5;
} */

/* .dob-field-one .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    border: none !important;
} */

/* .family-form-add-btn {
    background: #ffefe7;
    color: #f15600;
    font-weight: 600;
    font-size: 16px;
    font-family: "Open Sans";
    cursor: pointer;
    height: 45px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.user-area-container {
    background: #fef1dd;
    padding: 0 16px 0 16px;
    border-radius: 5px;
}

.i-card-header {
    font-family: "open sans";
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 1rem !important;
}

.refer-container {
    margin: 20px 4px 9px 0;
    position: relative;
}

.copy-ic {
    cursor: pointer;
    position: absolute;
    left: 10.7rem;
    bottom: 13%;
}

.refer-label {
    position: absolute;
    left: 8%;
    font-size: 12px;
    bottom: 15%;
    font-weight: 500;
    line-height: 15.6px;
    overflow: hidden;
    width: 120px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.share-btn {
    position: absolute;
    right: 4%;
    bottom: 10%;
    background: #2aac7e;
    font-size: 14px;
    line-height: 18px;
    height: 32px;
    font-weight: 700;
    color: white;
    border: 1px solid #2aac7e;
    padding: 8px 8px 8px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    justify-content: center;
    min-width: 127px;
}

.margin-divider {
    margin-top: 15% !important;
}

.margin-divider-new {
    margin-top: 10% !important;
}

.margin-dividerr {
    margin-top: 18% !important;
}

.margin-dividerrr {
    height: 25px;
    border-top: 0.5px dashed #f5821f;
}

.more-text {
    font-size: 12px;
    line-height: 18px;
    padding: 0px 0rem 0px 0.5rem;
    font-weight: 300;
    margin-top: 16px;
    text-align: center !important;
}

.faq-container {
    padding: 1.5rem 0.5rem 0rem 0.5rem;
}

.faq-head {
    font-size: 18px;
    line-height: 23px;
    font-weight: 600;
}

.dashboard-divider {
    border-bottom: 0.5px dashed #f5821f;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.dashboard-dividerr {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.update-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fd9a01;
    color: white;
    height: 48px;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 11px;
    cursor: pointer;
    transition: background-color 0.3s ease;

    padding: 10px 20px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* Shimmer effect */
.update-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    /* Reduced width of the shimmer effect */
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5),
        rgba(255, 255, 255, 0)
    );
    transform: skewX(-180deg);
    animation: shimmer 5s infinite;
}

.update-btn-description-text {
    color: #000000 !important;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
@media only screen and (max-width: 767px),
    only screen and (min-device-width: 320px) and (max-device-width: 767px) and (-webkit-min-device-pixel-ratio: 2),
    only screen and (min-device-width: 320px) and (max-device-width: 767px) and (min-resolution: 192dpi) {
    .refer-container {
        width: 100% !important;
        height: 142px !important;
    }
    .refer-container .refer-container-first-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain;
    }
    .refer-label {
        left: 13%;
    }
    /* Your styles for high-resolution mobile devices */
}
@media only screen and (min-width: 320px) and (max-width: 350px) {
    .refer-label {
        left: 1rem !important;
        bottom: 1.5rem !important;
        font-size: 10px !important;
        width: 100px;
    }
    .copy-ic {
        left: 7.7rem !important;
        bottom: 1.3rem !important;
    }
}
@media only screen and (min-width: 351px) and (max-width: 399px) {
    .refer-label {
        left: 9% !important;
        bottom: 1.2rem !important;
        font-size: 10px !important;
        width: 100px;
    }
    .copy-ic {
        left: 8.7rem !important;
        bottom: 1.1rem !important;
    }
}
@media (max-width: 770px) {
    .share-btn {
        right: 10% !important;
        bottom: 8% !important;
    }
}
@media (max-width: 400px) {
    .share-btn {
        right: 7% !important;
    }
}
@media (min-width: 321px) and (max-width: 360px) {
    .share-btn {
        right: 3% !important;
    }
}
@media (min-width: 300px) and (max-width: 320px) {
    .share-btn {
        right: 2% !important;
        gap: 0;
        bottom: 14% !important;
        min-width: 0;
    }
    .copy-ic {
        left: 7.5rem !important;
        bottom: 1.5rem !important;
    }
    .refer-label {
        left: 6% !important;
        bottom: 19%;
        width: 100px;
    }
}
.membership-number-text {
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 19.04px;
    text-align: center;
    margin-bottom: 0.5rem !important;
}

.membership-number {
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 700;
    line-height: 19.04px;
    text-align: center;
}

.refer-link-text {
    font-family: "Open Sans";
    font-size: 12px;
    font-weight: 600;
    line-height: 15.6px;
    text-align: left;
    padding: 9px 17px;
}

.refer-link-container {
    border: 1px dashed #936456;
    border-radius: 12px;
}

.copy-text {
    border: 1px dashed #936456;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
    background: #f15600;
    width: 98px;
    display: flex;
    text-align: center;
    justify-content: center;
}

.copy-text > button {
    border: none;
    width: 100%;
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 700;
    line-height: 16.8px;
    color: white;
    text-align: center;
    border-bottom-right-radius: 12px;
    border-top-right-radius: 12px;
    background: #f15600 !important;
}

.refer-link-text:hover {
    text-decoration: underline;
}

.referral-code-text {
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 600;
    line-height: 16.8px;
    text-align: center;
    color: #292727;
}

.code-span {
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 600;
    line-height: 16.8px;
    text-align: left;
    color: #f15600;
    text-decoration: underline;
}

.share-btn-text {
    border: none;
    padding: 8px;
    text-align: center;
    width: 100%;
    border-radius: 34px;
    background: #2aac7e;
    column-gap: 5px;
}

.ref-count-text {
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    line-height: 21.79px;
    text-align: center;
    color: #222222;
    margin-top: 1rem;
}

.ref-digit {
    font-family: "Open Sans";
    font-size: 20px;
    font-weight: 700;
    line-height: 27.24px;
    color: #222222;
    padding-left: 4px;
}

.ref-text-d {
    font-family: "Open Sans";
    font-size: 14px;
    font-weight: 400;
    line-height: 19.07px;
    color: #222222;
}

.ref-text-container {
    border: 1px solid #f9dacd;
    width: 100%;
    justify-content: space-between;
    padding: 8px 17px;
    align-items: center;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 2rem;
}

.id-card-user-name {
    position: absolute;
    left: 29%;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    width: 120px;
    margin: 0;
    top: 65%;
    font-family: Open Sans, serif;
    font-weight: 600;
    line-height: 18px;
}

.wa-btn {
    height: 40px;
    width: 76px;
    background: #2aac7e;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.id-share-btn {
    height: 40px;
    width: 76px;
    border: 1px solid #2aac7e;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.action-container {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
}

.download-btn {
    height: 40px;
    width: 76px;
    background: #f15600;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mt-16 {
    margin-top: 16px;
}

.idcard-user-img {
    position: absolute;
    top: 17%;
    right: 2.7%;
    width: 113px;
    height: 114px;
    border-radius: 33px;
    object-fit: cover;
}

.user-member-ship-id {
    position: absolute;
    left: 29%;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    width: 150px;
    margin: 0;
    top: 82%;
    font-family: Open Sans, serif;
    font-weight: 600;
    line-height: 18px;
}

.idcard-qr {
    height: 43px !important;
    width: 44px !important;
    position: absolute;
    bottom: 14px;
    right: 14%;
}

.id-card-state {
    position: absolute;
    left: 29%;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    width: 120px;
    margin: 0;
    top: 73%;
    font-family: Open Sans, serif;
    font-weight: 600;
    line-height: 18px;
}

.id-card-white-bg {
    height: 30px;
    width: 32px;
    background: white;
    position: absolute;
    right: 18px;
    bottom: 2px;
}

.id-card-svg-img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

@media only screen and (max-width: 767px),
    only screen and (min-device-width: 320px) and (max-device-width: 767px) and (-webkit-min-device-pixel-ratio: 2),
    only screen and (min-device-width: 320px) and (max-device-width: 767px) and (min-resolution: 192dpi) {
    /* Your styles for high-resolution mobile devices */
}
@media only screen and (min-width: 320px) and (max-width: 350px) {
    .idcard-qr {
        height: 35px !important;
        width: 35px !important;
        position: absolute;
        bottom: 11px;
        right: 14.1%;
    }
}
@media only screen and (min-width: 351px) and (max-width: 370px) {
    .idcard-qr {
        height: 36px !important;
        width: 36px !important;
        position: absolute;
        bottom: 12px;
        right: 14.3%;
    }
}
@media only screen and (min-width: 371px) and (max-width: 399px) {
    .idcard-qr {
        height: 38px !important;
        width: 38px !important;
        position: absolute;
        bottom: 6.5%;
        right: 14.3%;
    }
}
.full-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Shadow background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it covers the entire page */
}

@media (min-width: 391px) and (max-width: 410px) {
    .idcard-user-img {
        width: 108px !important;
        height: 107px !important;
    }
}
@media (max-width: 390px) {
    .idcard-user-img {
        height: 105px;
        width: 104px;
    }
}
@media (max-width: 380px) {
    .id-card-user-name {
        top: 63.9%;
    }
    .user-member-ship-id {
        top: 81.5%;
    }
    .id-card-state {
        top: 72%;
    }
    .idcard-user-img {
        width: 98px !important;
        height: 101px !important;
    }
}
@media (max-width: 370px) {
    .idcard-user-img {
        width: 95px !important;
        height: 98px !important;
        border-radius: 29px;
    }
}
@media (max-width: 355px) {
    .idcard-user-img {
        width: 93px !important;
        height: 91px !important;
    }
}
@media (max-width: 345px) {
    .idcard-user-img {
        right: 2.4%;
        height: 86px !important;
        width: 86px !important;
    }
}
.cursor-pointer {
    cursor: pointer;
}

.sl-heart1,
.sl-heart1 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-heart1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-heart1 .sl-loader {
    width: 100px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-heart1 .sl-loader-title {
    width: 100%;
    text-align: center;
    font-weight: 700;
    line-height: 1.7;
    font-size: 20px;
    color: var(--cl);
}

.sl-heart1 .sl-loader .sl-loader-items {
    width: 100%;
    height: 100px;
    position: relative;
}

.sl-heart1 .sl-loader .sl-loader-items .sl-heart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-85%, -75%);
    transform: translate(-85%, -75%);
    background-color: var(--bg);
    -webkit-animation: sl-heart1 1000ms linear infinite;
    animation: sl-heart1 1000ms linear infinite;
}

.sl-heart1 .sl-loader .sl-loader-items .sl-heart::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 30px;
    top: 0;
    background-color: var(--bg);
}

.sl-heart1 .sl-loader .sl-loader-items .sl-heart::before {
    content: "";
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 15px;
    top: 15px;
    background-color: var(--bg);
}

@-webkit-keyframes sl-heart1 {
    to {
        -webkit-transform: translate(-60%, -60%) scale(0.5);
        transform: translate(-60%, -60%) scale(0.5);
    }
    30% {
        -webkit-transform: translate(-80%, -70%) scale(0.8);
        transform: translate(-80%, -70%) scale(0.8);
    }
    60% {
        -webkit-transform: translate(-60%, -60%) scale(0.5);
        transform: translate(-60%, -60%) scale(0.5);
    }
    80% {
        -webkit-transform: translate(-80%, -70%) scale(0.8);
        transform: translate(-80%, -70%) scale(0.8);
    }
    from {
        -webkit-transform: translate(-85%, -75%) scale(1);
        transform: translate(-85%, -75%) scale(1);
    }
}

@keyframes sl-heart1 {
    to {
        -webkit-transform: translate(-60%, -60%) scale(0.5);
        transform: translate(-60%, -60%) scale(0.5);
    }
    30% {
        -webkit-transform: translate(-80%, -70%) scale(0.8);
        transform: translate(-80%, -70%) scale(0.8);
    }
    60% {
        -webkit-transform: translate(-60%, -60%) scale(0.5);
        transform: translate(-60%, -60%) scale(0.5);
    }
    80% {
        -webkit-transform: translate(-80%, -70%) scale(0.8);
        transform: translate(-80%, -70%) scale(0.8);
    }
    from {
        -webkit-transform: translate(-85%, -75%) scale(1);
        transform: translate(-85%, -75%) scale(1);
    }
}

.sl-box1,
.sl-box1 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-box1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-box1 .sl-loader-title {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--cl);
}

.sl-box1 .sl-loader {
    width: 100px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-box1 .sl-loader .sl-loader-items {
    width: 100%;
    height: 100px;
    -webkit-perspective: 100px;
    perspective: 100px;
}

.sl-box1 .sl-loader .sl-loader-items .sl-parent-cub {
    width: 100px;
    height: 100px;
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 50% 50% -50px;
    transform-origin: 50% 50% -50px;
}

.sl-box1 .sl-loader .sl-loader-items .sl-parent-cub .sl-cub {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    background-color: var(--bg);
    -webkit-animation: sl-box1 500ms ease infinite;
    animation: sl-box1 500ms ease infinite;
}

@-webkit-keyframes sl-box1 {
    to {
        -webkit-transform: translate(-50%, -50%) rotateX(0deg);
        transform: translate(-50%, -50%) rotateX(0deg);
    }
    from {
        -webkit-transform: translate(-50%, -50%) rotateX(180deg);
        transform: translate(-50%, -50%) rotateX(180deg);
    }
}

@keyframes sl-box1 {
    to {
        -webkit-transform: translate(-50%, -50%) rotateX(0deg);
        transform: translate(-50%, -50%) rotateX(0deg);
    }
    from {
        -webkit-transform: translate(-50%, -50%) rotateX(180deg);
        transform: translate(-50%, -50%) rotateX(180deg);
    }
}

.sl-box2,
.sl-box2 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-box2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-box2 .sl-loader-title {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--cl);
}

.sl-box2 .sl-loader {
    width: 100px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-box2 .sl-loader .sl-loader-items {
    width: 100%;
    height: 100px;
    -webkit-perspective: 100px;
    perspective: 100px;
}

.sl-box2 .sl-loader .sl-loader-items .sl-parent-cub {
    width: 100px;
    height: 100px;
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 50% 50% -50px;
    transform-origin: 50% 50% -50px;
}

.sl-box2 .sl-loader .sl-loader-items .sl-parent-cub .sl-cub {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    background-color: var(--bg);
    -webkit-animation: sl-box2 500ms ease infinite;
    animation: sl-box2 500ms ease infinite;
}

@-webkit-keyframes sl-box2 {
    to {
        -webkit-transform: translate(-50%, -50%) rotateY(0deg);
        transform: translate(-50%, -50%) rotateY(0deg);
    }
    from {
        -webkit-transform: translate(-50%, -50%) rotateY(180deg);
        transform: translate(-50%, -50%) rotateY(180deg);
    }
}

@keyframes sl-box2 {
    to {
        -webkit-transform: translate(-50%, -50%) rotateY(0deg);
        transform: translate(-50%, -50%) rotateY(0deg);
    }
    from {
        -webkit-transform: translate(-50%, -50%) rotateY(180deg);
        transform: translate(-50%, -50%) rotateY(180deg);
    }
}

.sl-box3,
.sl-box3 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-box3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-box3 .sl-loader-title {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--cl);
}

.sl-box3 .sl-loader {
    width: 100px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-box3 .sl-loader .sl-loader-items {
    width: 100%;
    height: 100px;
    -webkit-perspective: 100px;
    perspective: 100px;
}

.sl-box3 .sl-loader .sl-loader-items .sl-parent-cub {
    width: 100px;
    height: 100px;
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 50% 50% -50px;
    transform-origin: 50% 50% -50px;
}

.sl-box3 .sl-loader .sl-loader-items .sl-parent-cub .sl-cub {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    background-color: var(--bg);
    -webkit-animation: sl-box3 500ms ease infinite;
    animation: sl-box3 500ms ease infinite;
}

@-webkit-keyframes sl-box3 {
    to {
        -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
    from {
        -webkit-transform: translate(-50%, -50%) rotateZ(180deg);
        transform: translate(-50%, -50%) rotateZ(180deg);
    }
}

@keyframes sl-box3 {
    to {
        -webkit-transform: translate(-50%, -50%) rotateZ(0deg);
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
    from {
        -webkit-transform: translate(-50%, -50%) rotateZ(180deg);
        transform: translate(-50%, -50%) rotateZ(180deg);
    }
}

.sl-box4,
.sl-box4 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-box4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-box4 .sl-loader-title {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--cl);
}

.sl-box4 .sl-loader {
    width: 100px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-box4 .sl-loader .sl-loader-items {
    width: 100%;
    height: 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sl-box4 .sl-loader .sl-loader-items .sl-rectangular {
    width: 10px;
    height: 25px;
    background-color: var(--bg);
    border-radius: 5px;
    -webkit-animation: sl-box4 600ms ease-in-out infinite;
    animation: sl-box4 600ms ease-in-out infinite;
    -webkit-animation-delay: calc(var(--i) * -650ms);
    animation-delay: calc(var(--i) * -650ms);
}

@-webkit-keyframes sl-box4 {
    from {
        height: 30px;
    }
    50% {
        height: 60px;
    }
    to {
        height: 30px;
    }
}

@keyframes sl-box4 {
    from {
        height: 30px;
    }
    50% {
        height: 60px;
    }
    to {
        height: 30px;
    }
}

.sl-box5,
.sl-box5 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-box5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-box5 .sl-loader-title {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--cl);
}

.sl-box5 .sl-loader {
    width: 100px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-box5 .sl-loader .sl-loader-items {
    width: 100%;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sl-box5 .sl-loader .sl-loader-items .sl-rectangular-ping {
    width: 100%;
    height: 5px;
    position: relative;
    background-color: var(--bg);
    overflow: hidden;
}

.sl-box5 .sl-loader .sl-loader-items .sl-rectangular-ping::before {
    content: "";
    width: 10px;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: var(--bgb);
    -webkit-animation: sl-rectangular-ping 800ms ease-in infinite;
    animation: sl-rectangular-ping 800ms ease-in infinite;
}

@-webkit-keyframes sl-rectangular-ping {
    from {
        left: -10px;
    }
    to {
        left: calc(100% + 10px);
    }
}

@keyframes sl-rectangular-ping {
    from {
        left: -10px;
    }
    to {
        left: calc(100% + 10px);
    }
}

.sl-box6,
.sl-box6 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-box6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-box6 .sl-loader {
    width: 100px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-box6 .sl-loader-title {
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: var(--cl);
    font-weight: 700;
    line-height: 1.7;
}

.sl-box6 .sl-loader .sl-loader-items {
    width: 100%;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.sl-box6 .sl-loader .sl-loader-items .sl-item {
    width: 10px;
    height: 10px;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    position: relative;
    -webkit-box-shadow: 0 0 5px 0 var(--shadow);
    box-shadow: 0 0 5px 0 var(--shadow);
    background-color: var(--bga);
    -webkit-animation: sl-box6 2500ms ease-in infinite;
    animation: sl-box6 2500ms ease-in infinite;
    -webkit-animation-delay: calc(var(--i) * 500ms);
    animation-delay: calc(var(--i) * 500ms);
}

@-webkit-keyframes sl-box6 {
    from {
        top: 0;
        background-color: var(--bga);
        -webkit-box-shadow: 0 0 5px 0 var(--shadow);
        box-shadow: 0 0 5px 0 var(--shadow);
    }
    10% {
        top: -10px;
        background-color: var(--bg);
        -webkit-box-shadow: 0 0 2px var(--shadow);
        box-shadow: 0 0 2px var(--shadow);
    }
    12.5% {
        top: -10px;
        background-color: var(--bg);
        -webkit-box-shadow: 0 0 2px var(--shadow);
        box-shadow: 0 0 2px var(--shadow);
    }
    22.5% {
        top: 0;
        background-color: var(--bga);
        -webkit-box-shadow: 0 0 5px 0 var(--shadow);
        box-shadow: 0 0 5px 0 var(--shadow);
    }
    to {
        top: 0;
        background-color: var(--bga);
        -webkit-box-shadow: 0 0 5px 0 var(--shadow);
        box-shadow: 0 0 5px 0 var(--shadow);
    }
}

@keyframes sl-box6 {
    from {
        top: 0;
        background-color: var(--bga);
        -webkit-box-shadow: 0 0 5px 0 var(--shadow);
        box-shadow: 0 0 5px 0 var(--shadow);
    }
    10% {
        top: -10px;
        background-color: var(--bg);
        -webkit-box-shadow: 0 0 2px var(--shadow);
        box-shadow: 0 0 2px var(--shadow);
    }
    12.5% {
        top: -10px;
        background-color: var(--bg);
        -webkit-box-shadow: 0 0 2px var(--shadow);
        box-shadow: 0 0 2px var(--shadow);
    }
    22.5% {
        top: 0;
        background-color: var(--bga);
        -webkit-box-shadow: 0 0 5px 0 var(--shadow);
        box-shadow: 0 0 5px 0 var(--shadow);
    }
    to {
        top: 0;
        background-color: var(--bga);
        -webkit-box-shadow: 0 0 5px 0 var(--shadow);
        box-shadow: 0 0 5px 0 var(--shadow);
    }
}

.sl-box-7,
.sl-box-7 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-bubble3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-box-7 .sl-loader {
    width: 100px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-box-7 .sl-loader-title {
    padding-top: 10px;
    width: 100%;
    color: var(--cl);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}

.sl-box-7 .sl-loader .sl-loader-items {
    width: 100%;
    height: 40px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sl-box-7 .sl-loader .sl-loader-items .sl-cube {
    width: 14px;
    height: 25px;
    background-color: var(--bg);
    -webkit-animation: loader-ping-cube 1000ms ease-in-out infinite;
    animation: loader-ping-cube 1000ms ease-in-out infinite;
    -webkit-animation-delay: calc(var(--i) * 150ms);
    animation-delay: calc(var(--i) * 150ms);
}

.sl-box-7 .sl-loader .sl-loader-items .sl-cube + .sl-cube {
    margin-left: 7px;
}

@-webkit-keyframes loader-ping-cube {
    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    5% {
        -webkit-transform: scale(1, 1.5);
        transform: scale(1, 1.5);
    }
    30% {
        -webkit-transform: scale(1, 1.5);
        transform: scale(1, 1.5);
    }
    50% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    from {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes loader-ping-cube {
    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    5% {
        -webkit-transform: scale(1, 1.5);
        transform: scale(1, 1.5);
    }
    30% {
        -webkit-transform: scale(1, 1.5);
        transform: scale(1, 1.5);
    }
    50% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    from {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.sl-bubble1,
.sl-bubble1 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-bubble1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-bubble1 .sl-loader {
    width: 150px;
    height: 40px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-bubble1 .sl-loader-title {
    padding-top: 10px;
    width: 100%;
    color: var(--cl);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}

.sl-bubble1 .sl-loader-items {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sl-bubble1 .sl-loader-items .sl-bubble {
    width: 30px;
    height: 30px;
    background-color: var(--bg);
    border-radius: 100%;
    -webkit-animation: sl-bubble1 1200ms ease-in-out infinite;
    animation: sl-bubble1 1200ms ease-in-out infinite;
    -webkit-animation-delay: calc(var(--i) * -350ms);
    animation-delay: calc(var(--i) * -350ms);
}

@-webkit-keyframes sl-bubble1 {
    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50% {
        -webkit-transform: scale(0.3, 0.3);
        transform: scale(0.3, 0.3);
    }
    from {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes sl-bubble1 {
    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    50% {
        -webkit-transform: scale(0.3, 0.3);
        transform: scale(0.3, 0.3);
    }
    from {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.sl-bubble2,
.sl-bubble2 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-bubble2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-bubble2 .sl-loader {
    width: 150px;
    height: 40px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-bubble2 .sl-loader-title {
    padding-top: 10px;
    width: 100%;
    color: var(--cl);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}

.sl-bubble2 .sl-loader .sl-loader-items {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sl-bubble2 .sl-loader .sl-loader-items .sl-bubble {
    width: 30px;
    height: 30px;
    background-color: var(--bg);
    border-radius: 100%;
    -webkit-animation: sl-bubble2 1200ms ease-in-out infinite;
    animation: sl-bubble2 1200ms ease-in-out infinite;
    -webkit-animation-delay: calc(var(--i) * -350ms);
    animation-delay: calc(var(--i) * -350ms);
}

@-webkit-keyframes sl-bubble2 {
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes sl-bubble2 {
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    from {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.sl-bubble3,
.sl-bubble3 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-bubble3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-bubble3 .sl-loader {
    width: 100px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-bubble3 .sl-loader-title {
    padding-top: 10px;
    width: 100%;
    color: var(--cl);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}

.sl-bubble3 .sl-loader .sl-loader-items {
    width: 100%;
    height: 100px;
    position: relative;
}

.sl-bubble3 .sl-loader .sl-loader-items .sl-bubble {
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--bg);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation: sl-bubble3 1200ms linear infinite;
    animation: sl-bubble3 1200ms linear infinite;
    -webkit-animation-delay: calc(var(--i) * -400ms);
    animation-delay: calc(var(--i) * -400ms);
}

@-webkit-keyframes sl-bubble3 {
    from {
        width: 15px;
        height: 15px;
        opacity: 1;
    }
    to {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

@keyframes sl-bubble3 {
    from {
        width: 15px;
        height: 15px;
        opacity: 1;
    }
    to {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

.sl-bubble4,
.sl-bubble4 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-bubble4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-bubble4 .sl-loader {
    width: 100px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-bubble4 .sl-loader-title {
    padding-top: 10px;
    width: 100%;
    color: var(--cl);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}

.sl-bubble4 .sl-loader .sl-loader-items {
    width: 100%;
    height: 100px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.sl-bubble4 .sl-loader .sl-loader-items .sl-item-content-loader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 70px;
    -webkit-animation: sl-bubble4 1.5s ease-in infinite;
    animation: sl-bubble4 1.5s ease-in infinite;
}

.sl-bubble4 .sl-loader .sl-loader-items .sl-item-content-loader .sl-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--bg);
}

@-webkit-keyframes sl-bubble4 {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    45% {
        -webkit-transform: rotate(400deg);
        transform: rotate(400deg);
    }
    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    95% {
        -webkit-transform: rotate(-40deg);
        transform: rotate(-40deg);
    }
    to {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

@keyframes sl-bubble4 {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    45% {
        -webkit-transform: rotate(400deg);
        transform: rotate(400deg);
    }
    50% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    95% {
        -webkit-transform: rotate(-40deg);
        transform: rotate(-40deg);
    }
    to {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}

.sl-bubble5,
.sl-bubble5 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-bubble5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-bubble5 .sl-loader {
    width: 100px;
    position: relative;
    height: 35px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-bubble5 .sl-loader-title {
    padding-top: 10px;
    width: 100%;
    color: var(--cl);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.7;
    text-align: center;
}

.sl-bubble5 .sl-loader .sl-loader-item {
    width: 20px;
    height: 20px;
    background-color: var(--bg);
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 50%;
}

.sl-bubble5 .sl-loader .sl-loader-item:nth-child(2) {
    -webkit-animation: sl-bubble5AnimOne 600ms linear infinite;
    animation: sl-bubble5AnimOne 600ms linear infinite;
}

.sl-bubble5 .sl-loader .sl-loader-item:nth-child(3) {
    -webkit-animation: sl-bubble5AnimTwo 600ms linear infinite;
    animation: sl-bubble5AnimTwo 600ms linear infinite;
}

.sl-bubble5 .sl-loader .sl-loader-item:first-child {
    -webkit-animation: sl-bubble5AnimThere 600ms linear infinite;
    animation: sl-bubble5AnimThere 600ms linear infinite;
}

.sl-bubble5 .sl-loader .sl-loader-item:last-child {
    -webkit-animation: sl-bubble5AnimFour 600ms linear infinite;
    animation: sl-bubble5AnimFour 600ms linear infinite;
}

@-webkit-keyframes sl-bubble5AnimOne {
    0% {
        -webkit-transform: translate(7px, -50%) scale(1);
        transform: translate(7px, -50%) scale(1);
    }
    100% {
        -webkit-transform: translate(41px, -50%) scale(1.5);
        transform: translate(41px, -50%) scale(1.5);
    }
}

@keyframes sl-bubble5AnimOne {
    0% {
        -webkit-transform: translate(7px, -50%) scale(1);
        transform: translate(7px, -50%) scale(1);
    }
    100% {
        -webkit-transform: translate(41px, -50%) scale(1.5);
        transform: translate(41px, -50%) scale(1.5);
    }
}

@-webkit-keyframes sl-bubble5AnimTwo {
    0% {
        -webkit-transform: translate(41px, -50%) scale(1.5);
        transform: translate(41px, -50%) scale(1.5);
    }
    100% {
        -webkit-transform: translate(74px, -50%) scale(1);
        transform: translate(74px, -50%) scale(1);
    }
}

@keyframes sl-bubble5AnimTwo {
    0% {
        -webkit-transform: translate(41px, -50%) scale(1.5);
        transform: translate(41px, -50%) scale(1.5);
    }
    100% {
        -webkit-transform: translate(74px, -50%) scale(1);
        transform: translate(74px, -50%) scale(1);
    }
}

@-webkit-keyframes sl-bubble5AnimThere {
    0% {
        -webkit-transform: translate(7px, -50%) scale(0.5);
        transform: translate(7px, -50%) scale(0.5);
    }
    100% {
        -webkit-transform: translate(7px, -50%) scale(1);
        transform: translate(7px, -50%) scale(1);
    }
}

@keyframes sl-bubble5AnimThere {
    0% {
        -webkit-transform: translate(7px, -50%) scale(0.5);
        transform: translate(7px, -50%) scale(0.5);
    }
    100% {
        -webkit-transform: translate(7px, -50%) scale(1);
        transform: translate(7px, -50%) scale(1);
    }
}

@-webkit-keyframes sl-bubble5AnimFour {
    0% {
        -webkit-transform: translate(74px, -50%) scale(1);
        transform: translate(74px, -50%) scale(1);
    }
    100% {
        -webkit-transform: translate(74px, -50%) scale(0.5);
        transform: translate(74px, -50%) scale(0.5);
    }
}

@keyframes sl-bubble5AnimFour {
    0% {
        -webkit-transform: translate(74px, -50%) scale(1);
        transform: translate(74px, -50%) scale(1);
    }
    100% {
        -webkit-transform: translate(74px, -50%) scale(0.5);
        transform: translate(74px, -50%) scale(0.5);
    }
}

.sl-spinner1,
.sl-spinner1 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-spinner1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-spinner1 .sl-loader {
    width: 100px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-spinner1 .sl-loader-title {
    width: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 700;
    color: var(--cl);
}

.sl-spinner1 .sl-loader .sl-loader-items {
    width: 100%;
    height: 100px;
    position: relative;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.sl-spinner1 .sl-loader .sl-loader-items .sl-item {
    -webkit-transform: rotate(calc(var(--i) * 30deg));
    transform: rotate(calc(var(--i) * 30deg));
    -webkit-animation: sl-spinner1 1.2s linear infinite;
    animation: sl-spinner1 1.2s linear infinite;
    -webkit-animation-delay: calc(var(--i) * -100ms);
    animation-delay: calc(var(--i) * -100ms);
    -webkit-transform-origin: 50px 50px;
    transform-origin: 50px 50px;
}

.sl-spinner1 .sl-loader .sl-loader-items .sl-item::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 47px;
    width: 7px;
    height: 21px;
    background-color: var(--bg);
    border-radius: 20%;
    -webkit-box-shadow: -1px 1px 2px 1px rgba(0, 0, 0, 0.2);
    box-shadow: -1px 1px 2px 1px rgba(0, 0, 0, 0.2);
}

@-webkit-keyframes sl-spinner1 {
    to {
        opacity: 0;
    }
    from {
        opacity: 1;
    }
}

@keyframes sl-spinner1 {
    to {
        opacity: 0;
    }
    from {
        opacity: 1;
    }
}

.sl-spinner2,
.sl-spinner2 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-spinner2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-spinner2 .sl-loader {
    width: 100px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-spinner2 .sl-loader-title {
    width: 100%;
    text-align: center;
    font-size: 20px;
    line-height: 1.7;
    font-weight: 700;
    color: var(--cl);
}

.sl-spinner2 .sl-loader-items {
    width: 100%;
    height: 100px;
    position: relative;
}

.sl-spinner2 .sl-loader .sl-loader-items .sl-item {
    -webkit-transform: rotate(calc(var(--i) * 45deg));
    transform: rotate(calc(var(--i) * 45deg));
    -webkit-transform-origin: 50px 50px;
    transform-origin: 50px 50px;
}

.sl-spinner2 .sl-loader .sl-loader-items .sl-item::after {
    content: "";
    display: block;
    position: absolute;
    top: 25px;
    left: 25px;
    width: 10px;
    height: 10px;
    background-color: var(--bg);
    border-radius: 50%;
    -webkit-animation: sl-spinner2 800ms linear infinite;
    animation: sl-spinner2 800ms linear infinite;
    -webkit-animation-delay: calc(var(--i) * 100ms);
    animation-delay: calc(var(--i) * 100ms);
}

@-webkit-keyframes sl-spinner2 {
    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    from {
        -webkit-transform: scale(1.5, 1.5);
        transform: scale(1.5, 1.5);
    }
}

@keyframes sl-spinner2 {
    to {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    from {
        -webkit-transform: scale(1.5, 1.5);
        transform: scale(1.5, 1.5);
    }
}

.sl-spinner3,
.sl-spinner3 * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-spinner3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-spinner3 .sl-loader {
    width: 100px;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-spinner3 .sl-loader-title {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--cl);
}

.sl-spinner3 .sl-loader .sl-loader-parent {
    width: 100%;
    height: 100px;
    position: relative;
}

.sl-spinner3 .sl-loader .sl-loader-parent .sl-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 10px solid var(--border);
    border-top: 10px solid var(--bg);
    -webkit-animation: sl-spinner3 800ms linear infinite;
    animation: sl-spinner3 800ms linear infinite;
}

@-webkit-keyframes sl-spinner3 {
    to {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
    from {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes sl-spinner3 {
    to {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
    from {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.sl-ekvalayzer,
.sl-ekvalayzer * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-ekvalayzer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-ekvalayzer .sl-loader-title {
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.7;
    color: var(--cl);
}

.sl-ekvalayzer .sl-loader-items {
    width: 100%;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-ekvalayzer .sl-loader-items .sl-parent-rectangular {
    padding: 3px;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
}

.sl-ekvalayzer .sl-loader-items .sl-parent-rectangular .sl-rectangular {
    width: 10px;
    background-color: var(--bg);
    -webkit-box-shadow: 0 0 10px 2px var(--bg);
    box-shadow: 0 0 10px 2px var(--bg);
    -webkit-animation: sl-ekvalayzer1 500ms ease-in-out infinite;
    animation: sl-ekvalayzer1 500ms ease-in-out infinite;
    -webkit-animation-delay: calc(var(--i) * -100ms);
    animation-delay: calc(var(--i) * -100ms);
}

@-webkit-keyframes sl-ekvalayzer1 {
    from {
        height: calc(var(--w) * 20px);
    }
    50% {
        height: 80px;
    }
    to {
        height: calc(var(--w) * 20px);
    }
}

@keyframes sl-ekvalayzer1 {
    from {
        height: calc(var(--w) * 20px);
    }
    50% {
        height: 80px;
    }
    to {
        height: calc(var(--w) * 20px);
    }
}

.sl-hourglass,
.sl-hourglass * {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.sl-hourglass {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sl-hourglass .sl-hourglass-loader-title {
    width: 100%;
    text-align: center;
    font-size: 20px;
    color: var(--cl);
    font-weight: 700;
    line-height: 1.7;
}

.sl-hourglass .sl-hourglass-loader-items {
    width: 100%;
    height: 100px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-transform: scale(var(--size));
    transform: scale(var(--size));
}

.sl-hourglass .sl-hourglass-loader-items .sl-hourglass-item {
    border: 30px solid transparent;
    border-top-color: var(--bg);
    border-bottom-color: var(--bg);
    border-radius: 50%;
    -webkit-animation: sl-hourglass 1.2s ease-in infinite;
    animation: sl-hourglass 1.2s ease-in infinite;
}

@-webkit-keyframes sl-hourglass {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    45% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    80% {
        -webkit-transform: rotate(900deg);
        transform: rotate(900deg);
    }
    to {
        -webkit-transform: rotate(1080deg);
        transform: rotate(1080deg);
    }
}

@keyframes sl-hourglass {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    45% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    80% {
        -webkit-transform: rotate(900deg);
        transform: rotate(900deg);
    }
    to {
        -webkit-transform: rotate(1080deg);
        transform: rotate(1080deg);
    }
}

.dialog-backdrop {
    backdrop-filter: blur(8px);
}
.custom-dialog-paper {
    width: 400px;
    height: 49%;
    border-radius: 26.82px !important;
}
.img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80%;
    margin-top: 25px;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10;
    justify-content: space-between;
}
.congrats-text {
    font-family: "Open Sans";
    font-size: 24.79px;
    font-weight: 700;
    line-height: 29.68px;
    text-align: center;
}
.primary-id {
    font-family: "Open Sans";
    font-size: 15.09px;
    font-weight: 400;
    line-height: 20.12px;
    text-align: center;
    color: #9f9f9f;
}
.crossimg {
    position: absolute;
    right: 18px;
    top: 9px;
}

.span-style {
    color: black;
    font-weight: 600;
    font-size: 16px;
}

.fadein {
    animation-name: fadein;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

:root {
    --default-bg-color: #f6f7f8;
    --default-bg-moving-gradient: linear-gradient(
        to right,
        rgb(238, 238, 238) 8%,
        rgb(222, 222, 222) 18%,
        rgb(238, 238, 238) 33%
    );
}

.shimmer {
    background: var(--default-bg-color);
    background-image: var(--default-bg-moving-gradient);
    background-repeat: no-repeat;
    animation: shimmering forwards infinite ease-in-out, fadein 0.02s forwards;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes shimmering {
    from {
        background-position: top right;
    }

    to {
        background-position: top left;
    }
}

:root {
    --default-bg-color: #e1e2e4;
}

.breathing {
    width: 100%;
    height: 100%;
    background: var(--default-bg-color);
    animation: breathing ease-in-out infinite alternate;
}

@keyframes breathing {
    from {
        opacity: 0.25;
    }
    to {
        opacity: 1;
    }
}

.fill-details-text {
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 700;
    line-height: 21.79px;
    text-align: center;
}

@media only screen and (min-width: 300px) and (max-width: 390px) {
    .fill-details-text {
        font-size: 14px;
    }
}
.drop-down-style > select {
    padding: 2px 4px;
    border-radius: 5px;
    border: 2px solid white;
    background: #f5821f;
    color: white;
    width: 54px;
}

.drop-down-select {
    border: none;
}

.drop-selct-bg {
    border: none;
    background-color: #f7f7fc !important;
}

.secondary-container {
    column-gap: 6%;
    height: 36px;
    padding: 3px 10px;
    background-color: #f5821f;
}

.translation-icon {
    height: 18px;
    width: 18px;
    filter: invert(1);
}

.drop-down-select:focus {
    outline: none;
}

#nname option {
    background-color: white;
}

#nname > option:hover {
    background-color: #000000 !important;
}

.fixed-position {
    position: fixed;
    width: 100%;
    z-index: 9999;
    max-width: 421px;
}

.logout-icon {
    color: white;
    cursor: pointer;
    /* margin-top: 13px; */
    margin-top: 15px;
}

.dropdown-container {
    display: flex;
}

.margin-second {
    margin-top: 55px;
}

.text-style {
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-weight: 500;
    line-height: 19.2px;
    text-align: left;
}

.drop-down-style {
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.selected-language {
    color: #ffefe7;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-top: 15px;
    padding-right: 10px;
}

.mt-20 {
    margin-left: 20px;
}

.col-40 {
    column-gap: 40px;
}

.bjp-text {
    font-size: 13px;
    color: white;
    font-weight: 600;
    font-family: "Open Sans";
}

.pd-heading {
    gap: 27%;
}

.header-wrapper {
    display: flex;
    width: 24%;
    justify-content: space-between;
}

.align-style {
    justify-content: space-between !important;
    padding-right: 10px;
    padding-left: 20px;
}

.tab-container {
    display: flex;
    justify-content: space-between;
    position: sticky;
    top: 36px;
    background: white;
    z-index: 10;
}

.update-details-tab {
    display: flex;
    flex: 1;
    justify-content: center;
    height: 45px;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #8694ac;
}

.active-tab {
    border-bottom: 1px solid #f15600;
    color: #f15600;
    font-weight: 600;
}

.family-tab-container,
.contact-tab-container {
    margin: 0px 16px 24px 16px;
}

.update-details-container {
    margin-top: 10px;
    flex: 1;
    margin-bottom: 20px;
}

.contact-divier {
    border-bottom: 1px solid #e7e7fc;
    margin: 32px 0px;
}

.update-next-btn-container {
    display: flex;
    flex-direction: row;
    margin: 0 16px 16px 16px;
    position: sticky;
    bottom: 15px;
    z-index: 50;
}

.form-update-btn {
    display: flex;
    flex: 1;
    border-radius: 100px;
    height: 56px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.form-update-light-btn {
    background: #ffefe7;
    color: black;
    margin-right: 11px;
    z-index: 2 !important;
}

.form-update-dark-btn {
    background-color: #f5821f;
    color: white;
    z-index: 2 !important;
}

.remove {
    display: none;
}

.no-mr {
    margin-right: 0px;
}

.family-list-container {
    display: flex;
    flex-direction: column;
    height: 400px;
    overflow-y: scroll;
}
.family-list-container .family-list-header {
    font-family: Open Sans;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: left;
}

.family-details {
    display: grid;
    gap: 5%;
}

.family-form-container {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    margin: 24px 0px;
    border-bottom: 1px solid #e7e7fc;
    padding-bottom: 24px;
}
.family-form-container .MuiFormControl-root {
    width: 100%;
}
.family-form-container .Mui-focused {
    color: #716f86 !important;
}
.family-form-container .css-e4w4as-MuiFormLabel-root-MuiInputLabel-root {
    color: #716f86 !important;
    font-weight: 400 !important;
    font-family: "Open Sans" !important;
}
.family-form-container .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    border-radius: 8px !important;
    border: 1px solid #c3c9d5;
}
.family-form-container
    .css-batk84-MuiInputBase-root-MuiFilledInput-root::after {
    border: none !important;
}
.family-form-container
    .css-batk84-MuiInputBase-root-MuiFilledInput-root::before {
    border: none !important;
}

/* .dob-field-one {
    border: 1px solid #c3c9d5;
} */

/* .dob-field-one .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    border: none !important;
} */

/* .family-form-add-btn {
    background: #ffefe7;
    color: #f15600;
    font-weight: 600;
    font-size: 16px;
    font-family: "Open Sans";
    cursor: pointer;
    flex: 1;
    height: 45px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.family-form-cancel-btn {
    background: #eaeaea;
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    flex: 1;
    font-family: "Open Sans";
    cursor: pointer;
    height: 45px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.family-list-item-container {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 0px 12px;
}
.family-list-item-container .row-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 38px;
    align-items: center;
}
.family-list-item-container .row-item .label {
    font-family: Open Sans;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    color: #0d0d0d;
}
.family-list-item-container .row-item .value {
    font-family: Open Sans;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    text-align: right;
    color: #080625;
}
.family-list-item-container .divider {
    border-bottom: 1px solid #e9e8f2;
}
.family-list-item-container .dashed-divider {
    border-bottom: 1px dashed #e9e8f2;
}
.family-list-item-container .btn-wrapper {
    display: flex;
}
.family-list-item-container .btn-wrapper .spacer {
    display: flex;
    flex: 1;
}
.family-list-item-container .btn-wrapper .family-form-list-btn-container {
    display: flex;
    flex: 1;
    margin: 18px 0px;
}
.family-list-item-container
    .btn-wrapper
    .family-form-list-btn-container
    .action-btn {
    height: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
}
.family-list-item-container
    .btn-wrapper
    .family-form-list-btn-container
    .left-btn {
    flex: 1;
    background: #ffefe7;
    margin-right: 4px;
    color: #f5821f;
}
.family-list-item-container
    .btn-wrapper
    .family-form-list-btn-container
    .right-btn {
    flex: 1;
    background: transparent;
    margin-left: 4px;
    color: #000000;
}

.extra-contact-form-container {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.extra-contact-form-container .MuiFormControl-root {
    width: 100%;
}
.extra-contact-form-container .Mui-focused {
    color: #716f86 !important;
}
.extra-contact-form-container .css-e4w4as-MuiFormLabel-root-MuiInputLabel-root {
    color: #716f86 !important;
    font-weight: 400 !important;
    font-family: "Open Sans" !important;
}
.extra-contact-form-container
    .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    border-radius: 8px !important;
    border: 1px solid #c3c9d5;
}
.extra-contact-form-container
    .css-batk84-MuiInputBase-root-MuiFilledInput-root::after {
    border: none !important;
}
.extra-contact-form-container
    .css-batk84-MuiInputBase-root-MuiFilledInput-root::before {
    border: none !important;
}

.dob-field-one {
    border: 1px solid #c3c9d5;
}

.dob-field-one .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    border: none !important;
}

.family-form-add-btn {
    background: #ffefe7;
    color: #f15600;
    font-weight: 600;
    font-size: 16px;
    font-family: "Open Sans";
    cursor: pointer;
    flex: 1;
    height: 45px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.referral-main-container {
    background-image: linear-gradient(180deg, #fff0dd, #eef5ed);
    height: 100%;
}

.margin-div {
    height: 36px;
}

.go-back-container {
    display: flex;
    gap: 20px;
    padding: 11px;
    align-items: center;
}

.back-button {
    border: none;
    background-color: transparent;
}

.go-back-label {
    color: #222222;
    font-size: 16px;
    font-weight: 600;
}

.referred-member {
    color: #222222;
    font-size: 16px;
    font-weight: 600;
}

.total-member-container {
    font-size: 15px;
    color: #222222;
    font-weight: 400;
}

.rm-container {
    display: flex;
    padding: 15px;
    justify-content: space-between;
    align-items: flex-start;
}

.referral-card-container {
    overflow-y: auto;
    height: 84%;
    position: sticky;
    top: 138.8px;
}

.referral-card-containerrr {
    overflow-y: auto;
    height: 80%;
}

.rc-contt {
    display: flex;
    border-bottom: 1px solid #eddcbb;
    margin: 10px;
    padding-bottom: 10px;
}

.avtar-container {
    width: 8%;
    display: flex;
    justify-content: center;
    padding-top: 2.5%;
}

.details-container {
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 4%;
}

.css-17o22dy-MuiAvatar-root {
    height: 80% !important;
    width: 70% !important;
}

.name-label {
    color: #303030;
    font-weight: 600;
    font-size: 14px;
}

.mobile-label {
    color: #515151;
    font-size: 14px;
    font-weight: 400;
}

.date-span {
    color: #414141;
    font-size: 14px;
    font-weight: 500;
}

.no-referrals {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.spinner {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 4px solid;
    border-color: #dbdcef;
    border-right-color: #f5821f;
    animation: spinner-d3wgkg 1s infinite linear;
}

@keyframes spinner-d3wgkg {
    to {
        transform: rotate(1turn);
    }
}
.container-div {
    margin-top: 36px;
    position: sticky;
    top: 36px;
    background: #fdf1e0;
    z-index: 100;
}

.css-1u3bzj6-MuiFormControl-root-MuiTextField-root {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    min-width: 0px;
    vertical-align: top;
    padding: 0px;
    margin: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
}

.css-o943dk-MuiFormLabel-root-MuiInputLabel-root {
    color: rgba(0, 0, 0, 0.6);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    display: block;
    transform-origin: left top;
    text-overflow: ellipsis;
    max-width: calc(133% - 24px);
    position: absolute;
    left: 0px;
    top: 0px;
    transform: translate(12px, 7px) scale(0.75);
    z-index: 1;
    pointer-events: auto;
    user-select: none;
    padding: 0px;
    white-space: nowrap;
    overflow: hidden;
    transition: color 200ms cubic-bezier(0, 0, 0.2, 1),
        transform 200ms cubic-bezier(0, 0, 0.2, 1),
        max-width 200ms cubic-bezier(0, 0, 0.2, 1);
}

.css-batk84-MuiInputBase-root-MuiFilledInput-root {
    background: transparent !important;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    color: rgba(0, 0, 0, 0.87);
    box-sizing: border-box;
    cursor: text;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    background-color: rgba(0, 0, 0, 0.06);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    transition: background-color 200ms cubic-bezier(0, 0, 0.2, 1);
}

.css-10botns-MuiInputBase-input-MuiFilledInput-input {
    font: inherit;
    letter-spacing: inherit;
    color: currentcolor;
    border: 0px;
    box-sizing: content-box;
    background: none;
    height: 1.4375em;
    margin: 0px;
    -webkit-tap-highlight-color: transparent;
    display: block;
    min-width: 0px;
    width: 100%;
    animation-name: mui-auto-fill-cancel;
    animation-duration: 10ms;
    padding: 25px 12px 8px;
}

.css-o943dk-MuiFormLabel-root-MuiInputLabel-root.Mui-disabled {
    color: rgba(0, 0, 0, 0.38);
}

.input-container
    .css-batk84-MuiInputBase-root-MuiFilledInput-root.Mui-disabled {
    background-color: transparent !important;
}

/* .css-batk84-MuiInputBase-root-MuiFilledInput-root.Mui-disabled {
} */

.css-batk84-MuiInputBase-root-MuiFilledInput-root.Mui-disabled {
    background-color: rgba(0, 0, 0, 0.12);
    color: rgba(0, 0, 0, 0.38);
    cursor: default;
}

.input-container .css-batk84-MuiInputBase-root-MuiFilledInput-root {
    background: transparent !important;
}

.css-10botns-MuiInputBase-input-MuiFilledInput-input.Mui-disabled {
    opacity: 1;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.38);
}

.input-container .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    background-color: white !important;
}

.css-mkijz0-MuiAvatar-root {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1;
    border-radius: 50%;
    overflow: hidden;
    user-select: none;
    color: rgb(255, 255, 255);
    background-color: rgb(189, 189, 189);
    width: 40px;
    height: 40px;
}

.css-10mi8st-MuiSvgIcon-root-MuiAvatar-fallback {
    user-select: none;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    font-size: 1.5rem;
    width: 75%;
    height: 75%;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.css-i4bv87-MuiSvgIcon-root {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.css-1pe4mpk-MuiButtonBase-root-MuiIconButton-root {
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-align: center;
    color: rgba(0, 0, 0, 0.54);
    font-size: 1.125rem;
    outline: 0px;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
    margin: 0px;
    text-decoration: none;
    flex: 0 0 auto;
    border-radius: 50%;
    overflow: visible;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px;
}

.input-name .css-o943dk-MuiFormLabel-root-MuiInputLabel-root .Mui-focused {
    color: #716f86 !important;
}

.css-batk84-MuiInputBase-root-MuiFilledInput-root .Mui-focused {
    background-color: rgba(0, 0, 0, 0.06);
}

.css-e4w4as-MuiFormLabel-root-MuiInputLabel-root {
    color: rgba(0, 0, 0, 0.6);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    display: block;
    transform-origin: left top;
    text-overflow: ellipsis;
    max-width: calc(100% - 24px);
    position: absolute;
    left: 0px;
    top: 0px;
    transform: translate(12px, 16px) scale(1);
    z-index: 1;
    pointer-events: none;
    padding: 0px;
    white-space: nowrap;
    overflow: hidden;
    transition: color 200ms cubic-bezier(0, 0, 0.2, 1), transform 200ms cubic-bezier(0, 0, 0.2, 1), max-width 200ms cubic-bezier(0, 0, 0.2, 1);
}

.css-10botns-MuiInputBase-input-MuiFilledInput-input:focus {
    outline: 0px;
}

/* .input-name .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    border-radius: 0px !important;
}

.input-name .css-10botns-MuiInputBase-input-MuiFilledInput-input {
    background-color: white !important;
} */

.css-r0ibox-MuiFormControl-root-MuiTextField-root {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    min-width: 0px;
    padding: 0px;
    margin: 0px;
    border: 0px;
    vertical-align: top;
    flex: 1 1 0%;
}

.css-r0ibox-MuiFormControl-root-MuiTextField-root .MuiOutlinedInput-root {
    background-color: white;
    color: black;
    border-radius: 8px;
    padding-right: 0px;
}

.css-o9k5xi-MuiInputBase-root-MuiOutlinedInput-root {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    color: rgba(0, 0, 0, 0.87);
    box-sizing: border-box;
    cursor: text;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    border-radius: 4px;
    padding-right: 14px;
}

.css-r0ibox-MuiFormControl-root-MuiTextField-root .MuiOutlinedInput-root .MuiInputBase-input {
    color: black;
    padding: 10px;
    user-select: none;
    z-index: 1;
}

.css-nxo287-MuiInputBase-input-MuiOutlinedInput-input {
    font: inherit;
    letter-spacing: inherit;
    color: currentcolor;
    border: 0px;
    box-sizing: content-box;
    background: none;
    height: 1.4375em;
    margin: 0px;
    -webkit-tap-highlight-color: transparent;
    display: block;
    min-width: 0px;
    width: 100%;
    animation-name: mui-auto-fill-cancel;
    animation-duration: 10ms;
    padding: 16.5px 0px 16.5px 14px;
}

.css-r0ibox-MuiFormControl-root-MuiTextField-root .MuiOutlinedInput-root fieldset {
    border: none;
    border-radius: 8px;
    user-select: none;
}

.css-1d3z3hw-MuiOutlinedInput-notchedOutline {
    text-align: left;
    position: absolute;
    inset: -5px 0px 0px;
    margin: 0px;
    padding: 0px 8px;
    pointer-events: none;
    border-radius: inherit;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    min-width: 0%;
    border-color: rgba(0, 0, 0, 0.23);
}

.css-1rd8emk-MuiFormControl-root-MuiTextField-root {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    min-width: 0px;
    padding: 0px;
    margin: 0px;
    border: 0px;
    vertical-align: top;
}

.css-1rd8emk-MuiFormControl-root-MuiTextField-root .MuiOutlinedInput-root {
    background-color: white;
    color: black;
    border-radius: 8px;
}

.css-9ddj71-MuiInputBase-root-MuiOutlinedInput-root {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    color: rgba(0, 0, 0, 0.87);
    box-sizing: border-box;
    cursor: text;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    border-radius: 4px;
}

.css-1rd8emk-MuiFormControl-root-MuiTextField-root .MuiOutlinedInput-root .MuiInputBase-input {
    color: black;
    padding: 10px;
}

.css-1t8l2tu-MuiInputBase-input-MuiOutlinedInput-input {
    font: inherit;
    letter-spacing: inherit;
    color: currentcolor;
    border: 0px;
    box-sizing: content-box;
    background: none;
    height: 1.4375em;
    margin: 0px;
    -webkit-tap-highlight-color: transparent;
    display: block;
    min-width: 0px;
    width: 100%;
    animation-name: mui-auto-fill-cancel;
    animation-duration: 10ms;
    padding: 16.5px 14px;
}

.css-1rd8emk-MuiFormControl-root-MuiTextField-root .MuiOutlinedInput-root fieldset {
    border: none;
    border-radius: 8px;
}

.css-10nakn3-MuiModal-root-MuiPopover-root-MuiMenu-root {
    position: fixed;
    z-index: 1300;
    inset: 0px;
}

.css-g3hgs1-MuiBackdrop-root-MuiModal-backdrop {
    position: fixed;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    inset: 0px;
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;
    z-index: -1;
}

.css-12711zd-MuiPaper-root-MuiPopover-paper-MuiMenu-paper {
    background-color: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 0.87);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 5px -3px, rgba(0, 0, 0, 0.14) 0px 8px 10px 1px, rgba(0, 0, 0, 0.12) 0px 3px 14px 2px;
    position: absolute;
    overflow-y: auto;
    overflow-x: hidden;
    min-width: 16px;
    min-height: 16px;
    max-width: calc(100% - 32px);
    max-height: calc(100% - 96px);
    width: 250px;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    outline: 0px;
}

.css-6hp17o-MuiList-root-MuiMenu-list {
    list-style: none;
    margin: 0px;
    padding: 8px 0px;
    position: relative;
    outline: 0px;
}

.css-1dinu7n-MuiButtonBase-root-MuiMenuItem-root {
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0px;
    border: 0px;
    margin: 0px;
    border-radius: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    color: inherit;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    min-height: 48px;
    padding: 6px 16px;
    box-sizing: border-box;
    white-space: normal;
    overflow-wrap: break-word;
    overflow: visible;
}

.css-1869usk-MuiFormControl-root {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    padding: 0px;
    border: 0px;
    vertical-align: top;
    margin: 8px;
    min-width: 120px;
}

.css-n70jm4-MuiInputBase-root-MuiInput-root-MuiSelect-root {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    color: rgba(0, 0, 0, 0.87);
    box-sizing: border-box;
    cursor: text;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
}

.css-1rxz5jq-MuiSelect-select-MuiInputBase-input-MuiInput-input.css-1rxz5jq-MuiSelect-select-MuiInputBase-input-MuiInput-input.css-1rxz5jq-MuiSelect-select-MuiInputBase-input-MuiInput-input {
    padding-right: 24px;
    min-width: 16px;
}

.css-1rxz5jq-MuiSelect-select-MuiInputBase-input-MuiInput-input.MuiSelect-select {
    height: auto;
    min-height: 1.4375em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.css-1rxz5jq-MuiSelect-select-MuiInputBase-input-MuiInput-input {
    appearance: none;
    user-select: none;
    border-radius: 0px;
    cursor: pointer;
    font: inherit;
    letter-spacing: inherit;
    color: currentcolor;
    padding: 4px 0px 5px;
    border: 0px;
    box-sizing: content-box;
    background: none;
    height: 1.4375em;
    margin: 0px;
    -webkit-tap-highlight-color: transparent;
    display: block;
    min-width: 0px;
    width: 100%;
    animation-name: mui-auto-fill-cancel;
    animation-duration: 10ms;
}

.css-yf8vq0-MuiSelect-nativeInput {
    right: 0px !important;
    left: 0px;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    box-sizing: border-box;
}

.css-pqjvzy-MuiSvgIcon-root-MuiSelect-icon {
    user-select: none;
    margin-top: -6px;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    font-size: 1.5rem;
    position: absolute;
    right: 0px;
    top: calc(50% - 0.3em);
    pointer-events: none;
    color: rgba(0, 0, 0, 0.54);
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}


/* Login Page Start */

.css-195ptfl-MuiModal-root-MuiDrawer-root {
    position: fixed;
    inset: 0px;
    z-index: 1200;
}

/* .css-195ptfl-MuiModal-root-MuiDrawer-root .MuiDrawer-paper {
     background-color: transparent;
    box-shadow: none;

} */

.css-195ptfl-MuiModal-root-MuiDrawer-root .MuiDrawer-paper {
    background-color: transparent;
    box-shadow: none;
    max-width: 421px !important;
    margin: auto !important;
    border-top-left-radius: 17px;
    border-top-right-radius: 17px;
}

.css-9emuhu-MuiPaper-root-MuiDrawer-paper {
    background-color: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 0.87);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 10px -5px, rgba(0, 0, 0, 0.14) 0px 16px 24px 2px, rgba(0, 0, 0, 0.12) 0px 6px 30px 5px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    height: auto;
    z-index: 1200;
    position: fixed;
    top: auto;
    left: 0px;
    bottom: 0px;
    right: 0px;
    max-height: 100%;
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1 0 auto;
    outline: 0px;
}

.css-sp5hsl {
    width: 100%;
    height: 272px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background-color: transparent;
}

.css-i9fmh8-MuiBackdrop-root-MuiModal-backdrop {
    position: fixed;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-tap-highlight-color: transparent;
    z-index: -1;
}

.css-xi606m {
    text-align: center;
}

/* Login Page End */

.MuiInputBase-input-box{
    height: 55px;
    border-radius:7px;
    width: 100% !important;
    padding: 0px 10px !important;
}

.css-11fq0lf-MuiAvatar-root {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1;
    border-radius: 50%;
    overflow: hidden;
    user-select: none;
    width: 120px;
    height: 120px;
}

.css-1pqm26d-MuiAvatar-img {
    width: 100%;
    height: 100%;
    text-align: center;
    object-fit: cover;
    color: transparent;
    text-indent: 10000px;
}

/* ================== */

.css-10mm8wz {
    width: 100%;
    height: 500px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    background-color: transparent;
}

/* ---------------------------- */

.css-aqpgxn-MuiFormLabel-root-MuiInputLabel-root {
    color: rgba(0, 0, 0, 0.6);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    display: block;
    transform-origin: left top;
    text-overflow: ellipsis;
    max-width: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    transform: translate(0px, 20px) scale(1);
    padding: 0px;
    white-space: nowrap;
    overflow: hidden;
    transition: color 200ms cubic-bezier(0, 0, 0.2, 1), transform 200ms cubic-bezier(0, 0, 0.2, 1), max-width 200ms cubic-bezier(0, 0, 0.2, 1);
}

label + .css-n70jm4-MuiInputBase-root-MuiInput-root-MuiSelect-root {
    margin-top: 16px;
}



.css-1mf6u8l-MuiSvgIcon-root-MuiSelect-icon {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    font-size: 1.5rem;
    position: absolute;
    right: 0px;
    top: calc(50% - 0.5em);
    pointer-events: none;
    color: rgba(0, 0, 0, 0.54);
    transform: rotate(180deg);
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ------------------------ */

.css-1c2i806-MuiFormLabel-root-MuiInputLabel-root.Mui-focused {
    color: rgb(25, 118, 210);
    /* color: #716f86 !important; */
}


.css-1c2i806-MuiFormLabel-root-MuiInputLabel-root {
    color: rgba(0, 0, 0, 0.6);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    display: block;
    transform-origin: left top;
    text-overflow: ellipsis;
    max-width: 133%;
    position: absolute;
    left: 0px;
    top: 0px;
    transform: translate(0px, -1.5px) scale(0.75);
    padding: 0px;
    white-space: nowrap;
    overflow: hidden;
    transition: color 200ms cubic-bezier(0, 0, 0.2, 1), transform 200ms cubic-bezier(0, 0, 0.2, 1), max-width 200ms cubic-bezier(0, 0, 0.2, 1);
}

@media (min-width: 600px) {
    .css-1dinu7n-MuiButtonBase-root-MuiMenuItem-root {
        min-height: auto;
    }
}

.css-1dinu7n-MuiButtonBase-root-MuiMenuItem-root:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.04);
}


.input-box {
   
    padding: 0px 2px !important;
}

.search-box{
    position: sticky ;
    top: 0;
    background-color: #ffffff;
    z-index: 33;;
}
.search-box div{
   width: 100%;
}
.search-box span , .search-box .span-close{
    cursor: pointer;
    position: absolute;
    right: 10px;
}

.search-box .span-close{
    top: 4px ;           
}