.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-ellipsis div {
    position: absolute;
    top: 27px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #363636;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(19px, 0);
    }
}

.ptr,
.ptr__children {
    height: 100%;
    width: 100%;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

.ptr.ptr--fetch-more-treshold-breached .ptr__fetch-more {
    display: block;
}

.ptr__fetch-more {
    display: none;
}

/**
* Pull down transition 
*/
.ptr__children,
.ptr__pull-down {
    transition: transform 0.2s cubic-bezier(0, 0, 0.31, 1);
}

.ptr__pull-down {
    position: absolute;
    overflow: hidden;
    left: 0;
    right: 0;
    top: 0;
    visibility: hidden;
}

.ptr__pull-down>div {
    display: none;
}

.ptr--dragging {
    /**
* Hide PullMore content is treshold breached
*/
    /**
* Otherwize, display content
*/
}

.ptr--dragging.ptr--pull-down-treshold-breached .ptr__pull-down--pull-more {
    display: none;
}

.ptr--dragging .ptr__pull-down--pull-more {
    display: block;
}

.ptr--pull-down-treshold-breached {
    /**
* Force opacity to 1 is pull down trashold breached
*/
    /**
* And display loader
*/
}

.ptr--pull-down-treshold-breached .ptr__pull-down {
    opacity: 1 !important;
}

.ptr--pull-down-treshold-breached .ptr__pull-down--loading {
    display: block;
}

.ptr__loader {
    margin: 0 auto;
    text-align: center;
}



: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, .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: .2;
}

:root {
    --swiper-theme-color: #007aff;
}

.material-symbols-sharp {
    font-family: Material Symbols Sharp, serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}

.material-symbols-sharp.icon-active {
    font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.gap-1 {
    gap: 4px !important;
}

.gap-2 {
    gap: 8px !important;
}

.flex-row-center-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.flex-col-start-start {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
}

:root {
    -webkit-tap-highlight-color: transparent;
}

:root a {
    text-decoration: none;
}

:root p {
    margin: 0;
}

:root body {
    padding: 0 !important;
}

:root input.ltr-input::placeholder {
    text-align: end;
}

body {
    padding-right: 0 !important;
}

body.light-mode {
    background-color: #f6f6f6;
}

body.light-mode::-webkit-scrollbar {
    transition-duration: .1s;
    width: 8px;
    height: 8px;
    cursor: pointer;
}

body.light-mode::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
}

body.light-mode::-webkit-scrollbar-thumb {
    background: #8f9398;
    box-sizing: border-box;
    transition: all .3s linear;
    cursor: pointer;
    border-radius: 4px;
}

.light-mode *::-webkit-scrollbar {
    transition-duration: .1s;
    width: 6px !important;
    height: 6px !important;
    cursor: pointer;
    border-radius: 12px !important;
}

.light-mode *::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background: #ddd !important;
}

.light-mode *::-webkit-scrollbar-thumb:hover {
    background: #8f9398 !important;
}

.light-mode *::-webkit-scrollbar-track {
    border-radius: 12px !important;
    background: transparent !important;
}

/*! CSS Used from: Embedded */
html {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    text-size-adjust: 100%;
}

*,
::before,
::after {
    box-sizing: inherit;
}

body {
    margin: 0px;
    color: rgb(65, 71, 79);
    font-family: IranYekanEnNum;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    background-color: rgb(250, 250, 250);
}

@media print {
    body {
        background-color: rgb(255, 255, 255);
    }
}

/*! CSS Used from: Embedded */
.rx-rtl-tf4qh7 {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: 0px;
    border: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    text-align: center;
    flex: 0 0 auto;
    font-size: 1.5rem;
    padding: 8px;
    overflow: visible;
    color: rgba(0, 0, 0, 0.54);
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: auto;
    z-index: 1200;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 0px;
    transition: opacity 150ms ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.rx-rtl-tf4qh7:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

@media (hover: none) {
    .rx-rtl-tf4qh7:hover {
        background-color: transparent;
    }
}

.rx-rtl-tf4qh7:hover {
    background-color: rgb(255, 255, 255);
}

@media (min-width: 900px) {
    .rx-rtl-tf4qh7 {
        bottom: 2rem;
        right: 2rem;
    }
}

.rx-rtl-xd1ctv {
    color: rgb(143, 147, 152);
    font-size: 20px;
}

.rx-rtl-xd1ctv.active-color {
    color: rgb(65, 71, 79);
}

.rx-rtl-2yqdji {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100svh;
    overflow: hidden;
}



.rx-rtl-2yqdji .vector {
	background-image: url("https://cdn.ramzinex.com/statics/web-next/b0c51a0e/public/images/auth/auth-vector.svg");
	width: 1000%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	background-size: cover;
	background-repeat: no-repeat;
}

@media (max-width: 1199.95px) {
    .rx-rtl-2yqdji .vector {
        display: none;
    }
}

.rx-rtl-2yqdji .MuiContainer-root {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

@media (min-width: 900px) {
    .rx-rtl-2yqdji .MuiContainer-root {
        gap: 80px;
    }
}

.rx-rtl-2yqdji .image {
    max-width: 520px;
    max-height: 520px;
}

@media (min-width: 1536px) {
    .rx-rtl-2yqdji .image {
        max-width: 659px;
        max-height: 659px;
    }
}

@media (max-width: 1199.95px) {
    .rx-rtl-2yqdji .image {
        display: none;
    }
}

.rx-rtl-vvfl9i {
    width: 100%;
    margin-right: auto;
    box-sizing: border-box;
    margin-left: auto;
    display: block;
    padding-right: 16px;
    padding-left: 16px;
    max-width: 1440px !important;
}

@media (min-width: 600px) {
    .rx-rtl-vvfl9i {
        padding-right: 24px;
        padding-left: 24px;
    }
}

@media (min-width: 1200px) {
    .rx-rtl-vvfl9i {
        max-width: 1200px;
    }
}

.rx-rtl-1yfigpr {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 450px;
    height: 100%;
    box-sizing: border-box;
    gap: 56px;
    min-height: 100svh;
    padding-top: 80px;
    padding-bottom: 16px;
}

@media (min-width: 900px) {
    .rx-rtl-1yfigpr {
        height: auto;
        gap: 64px;
        min-height: 520px;
        max-width: 420px;
        justify-content: space-between;
        padding-top: 0px;
        padding-bottom: 0px;
    }
}

.rx-rtl-pyjdtp {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.rx-rtl-1kkt86i {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rx-rtl-1yh4x1x {
    margin: 0px;
    font-family: IranYekanEnNum;
    font-size: 1.125rem;
    line-height: 1.75;
    font-weight: 700;
    color: rgb(31, 38, 48);
}

@media screen and (min-width: 900px) {
    .rx-rtl-1yh4x1x {
        font-size: 1.5rem;
    }
}

.rx-rtl-bacjcj {
    margin: 0px;
    font-family: IranYekanEnNum;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.75;
}

@media (min-width: 0px) {
    .rx-rtl-bacjcj {
        font-size: 0.75rem;
    }
}

@media (min-width: 900px) {
    .rx-rtl-bacjcj {
        font-size: 0.875rem;
    }
}

.rx-rtl-fv31tr {
    margin: 0px;
    font-family: IranYekanEnNum;
    font-size: 0.875rem;
    line-height: 1.75;
    font-weight: 700;
}

.rx-rtl-yd8sa2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rx-rtl-sr2204 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rx-rtl-sr2204.wrapper-full-width {
    width: 100%;
}

.rx-rtl-16ntgt8 {
    margin: 0px;
    font-family: IranYekanEnNum;
    font-size: 0.75rem;
    line-height: 1.66;
    font-weight: 400;
    padding-inline: 8px;
}

.rx-rtl-10yrn8f {
    font-family: IranYekanEnNum;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    color: rgb(65, 71, 79);
    box-sizing: border-box;
    cursor: text;
    display: inline-flex;
    align-items: center;
    width: 100%;
    position: relative;
    border-radius: 4px;
    min-height: 40px;
    padding-block: 0px !important;
}

.rx-rtl-10yrn8f:hover .MuiOutlinedInput-notchedOutline {
    border-color: rgb(65, 71, 79);
}

@media (hover: none) {
    .rx-rtl-10yrn8f:hover .MuiOutlinedInput-notchedOutline {
        border-color: rgba(0, 0, 0, 0.23);
    }
}

.rx-rtl-10yrn8f .MuiOutlinedInput-notchedOutline {
    border-color: rgb(224, 224, 224);
}

.rx-rtl-10yrn8f .MuiOutlinedInput-input {
    font-size: 0.875rem;
    min-height: 48px;
    padding: 0px 16px;
}

.rx-rtl-10yrn8f .MuiOutlinedInput-input::placeholder {
    font-size: 0.875rem;
    color: rgb(143, 147, 152);
}

.rx-rtl-10yrn8f .MuiOutlinedInput-input {
    min-height: 40px;
    font-size: 0.75rem;
}

.rx-rtl-10yrn8f .MuiOutlinedInput-input::placeholder {
    font-size: 0.75rem;
}

.rx-rtl-180nvy8 {
    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: 8.5px 14px;
}

.rx-rtl-180nvy8:focus {
    outline: 0px;
}

.rx-rtl-180nvy8:invalid {
    box-shadow: none;
}

.rx-rtl-igs3ac {
    text-align: right;
    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);
}

.rx-rtl-ihdtdm {
    float: unset;
    width: auto;
    overflow: hidden;
    padding: 0px;
    line-height: 11px;
    transition: width 150ms cubic-bezier(0, 0, 0.2, 1);
}

.rx-rtl-q5ig3e {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
    min-height: 40px;
}

.rx-rtl-1l3v1wz {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: 0px;
    border: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: IranYekanEnNum;
    min-width: 64px;
    border-radius: 4px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-shadow: none;
    white-space: nowrap;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 28px;
    color: rgb(10, 13, 19);
    background-color: rgb(247, 194, 19);
    padding: 8px 16px;
    height: 40px;
    font-size: 0.875rem;
}

.rx-rtl-1l3v1wz:hover {
    text-decoration: none;
    background-color: rgb(195, 125, 10);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px;
}

@media (hover: none) {
    .rx-rtl-1l3v1wz:hover {
        background-color: rgb(247, 194, 19);
    }
}

.rx-rtl-1l3v1wz:active {
    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;
}

.rx-rtl-1l3v1wz:hover {
    box-shadow: none;
}

.rx-rtl-1l3v1wz:active {
    box-shadow: none;
}

.rx-rtl-1l3v1wz:hover {
    background-color: rgb(234, 177, 17);
}

.rx-rtl-ldsevv {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0px;
    border: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: IranYekanEnNum;
    min-width: 64px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    color: rgb(247, 194, 19);
    box-shadow: none;
    white-space: nowrap;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 25px;
    border-radius: 0px;
    font-size: 0.875rem;
    width: fit-content;
    min-height: 40px;
    padding: 0px !important;
    height: fit-content !important;
}

.rx-rtl-ldsevv:hover {
    text-decoration: none;
    background-color: rgba(247, 194, 19, 0.04);
}

@media (hover: none) {
    .rx-rtl-ldsevv:hover {
        background-color: transparent;
    }
}

.rx-rtl-ldsevv:hover {
    box-shadow: none;
}

.rx-rtl-ldsevv:active {
    box-shadow: none;
}

.rx-rtl-ldsevv:hover {
    background-color: transparent;
}

.rx-rtl-ldsevv.MuiButton-textPrimary {
    color: rgb(195, 125, 10);
}

.rx-rtl-ldsevv.MuiButton-textPrimary:hover {
    background-color: transparent;
}

.rx-rtl-3d55eq {
    margin: 0px;
    font-family: IranYekanEnNum;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgb(98, 103, 110);
}

.rx-rtl-12snp4d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0px;
    border: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: IranYekanEnNum;
    min-width: 64px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    color: rgb(247, 194, 19);
    box-shadow: none;
    white-space: nowrap;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 25px;
    border-radius: 0px;
    font-size: 0.875rem;
    width: fit-content;
    padding: 0px !important;
    height: fit-content !important;
}

.rx-rtl-12snp4d:hover {
    text-decoration: none;
    background-color: rgba(247, 194, 19, 0.04);
}

@media (hover: none) {
    .rx-rtl-12snp4d:hover {
        background-color: transparent;
    }
}

.rx-rtl-12snp4d:hover {
    box-shadow: none;
}

.rx-rtl-12snp4d:active {
    box-shadow: none;
}

.rx-rtl-12snp4d:hover {
    background-color: transparent;
}

.rx-rtl-12snp4d.MuiButton-textPrimary {
    color: rgb(195, 125, 10);
}

.rx-rtl-12snp4d.MuiButton-textPrimary:hover {
    background-color: transparent;
}

.rx-rtl-w0pj6f {
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 0;
    inset: 0px;
    border-radius: inherit;
}

/*! CSS Used from: Embedded */
#webklipper-publisher-widget-container,
#webklipper-publisher-widget-container * {
    overflow: visible;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/*! CSS Used keyframes */
@keyframes mui-auto-fill-cancel {
    0% {
        display: block;
    }
}




.gap-1 {
    gap: 4px !important;
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.w-100 {
    width: 100% !important;
}

.m-2 {
    margin: .5rem !important;
}

.flex-row-center-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.flex-col-start-start {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
}

:root a {
    text-decoration: none;
}

:root input[type=number] {
    -moz-appearance: textfield;
}

.light-mode *::-webkit-scrollbar {
    transition-duration: .1s;
    width: 6px !important;
    height: 6px !important;
    cursor: pointer;
    border-radius: 12px !important;
}

.light-mode *::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background: #ddd !important;
}

.light-mode *::-webkit-scrollbar-thumb:hover {
    background: #8f9398 !important;
}

.light-mode *::-webkit-scrollbar-track {
    border-radius: 12px !important;
    background: transparent !important;
}

/*! CSS Used from: Embedded */
*,
::before,
::after {
    box-sizing: inherit;
}

/*! CSS Used from: Embedded */
.rx-rtl-1yfigpr {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 450px;
    height: 100%;
    box-sizing: border-box;
    gap: 56px;
    min-height: 100svh;
    padding-top: 80px;
    padding-bottom: 16px;
}

@media (min-width: 900px) {
    .rx-rtl-1yfigpr {
        height: auto;
        gap: 64px;
        min-height: 520px;
        max-width: 420px;
        justify-content: space-between;
        padding-top: 0px;
        padding-bottom: 0px;
    }
}

.rx-rtl-pyjdtp {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.rx-rtl-1kkt86i {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rx-rtl-1yh4x1x {
    margin: 0px;
    font-family: IranYekanEnNum;
    font-size: 1.125rem;
    line-height: 1.75;
    font-weight: 700;
    color: rgb(31, 38, 48);
}

@media screen and (min-width: 900px) {
    .rx-rtl-1yh4x1x {
        font-size: 1.5rem;
    }
}

.rx-rtl-yd8sa2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rx-rtl-q5ig3e {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
    min-height: 40px;
}

.rx-rtl-mkfi0f {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    box-sizing: border-box;
}

.rx-rtl-12wwc3s {
    margin: 0px;
    font-family: IranYekanEnNum;
    font-size: 0.75rem;
    line-height: 1.66;
    font-weight: 400;
}

.rx-rtl-1w6sm5s {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0px;
    border: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: IranYekanEnNum;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    color: rgb(247, 194, 19);
    box-shadow: none;
    white-space: nowrap;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 25px;
    border-radius: 0px;
    font-size: 0.75rem;
    min-width: fit-content;
    padding: 0px !important;
    height: fit-content !important;
}

.rx-rtl-1w6sm5s:hover {
    text-decoration: none;
    background-color: rgba(247, 194, 19, 0.04);
}

@media (hover: none) {
    .rx-rtl-1w6sm5s:hover {
        background-color: transparent;
    }
}

.rx-rtl-1w6sm5s:hover {
    box-shadow: none;
}

.rx-rtl-1w6sm5s:active {
    box-shadow: none;
}

.rx-rtl-1w6sm5s:hover {
    background-color: transparent;
}

.rx-rtl-1w6sm5s.MuiButton-textPrimary {
    color: rgb(195, 125, 10);
}

.rx-rtl-1w6sm5s.MuiButton-textPrimary:hover {
    background-color: transparent;
}

.rx-rtl-16astv1 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    gap: 8px;
}

.rx-rtl-1l78sg5 {
    margin: 0px 8px;
    font-family: IranYekanEnNum;
    font-size: 0.75rem;
    line-height: 1.66;
    font-weight: 400;
}

.rx-rtl-11z6oa {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border: 1px solid rgb(224, 224, 224);
    border-radius: 4px;
    color: rgb(98, 103, 110);
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    background-color: inherit;
}

.rx-rtl-11z6oa:focus {
    outline: none;
    border-width: 2px;
    border-color: rgb(247, 194, 19);
}

@media (min-width: 600px) {
    .rx-rtl-11z6oa {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }
}

.rx-rtl-fxb66d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    background-color: transparent;
    outline: 0px;
    border: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: IranYekanEnNum;
    min-width: 64px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    color: rgb(247, 194, 19);
    box-shadow: none;
    white-space: nowrap;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 25px;
    border-radius: 0px;
    font-size: 0.75rem;
    padding: 0px !important;
    height: fit-content !important;
}

.rx-rtl-fxb66d.Mui-disabled {
    pointer-events: none;
    cursor: default;
}

.rx-rtl-fxb66d:hover {
    text-decoration: none;
    background-color: rgba(247, 194, 19, 0.04);
}

@media (hover: none) {
    .rx-rtl-fxb66d:hover {
        background-color: transparent;
    }
}

.rx-rtl-fxb66d.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.rx-rtl-fxb66d:hover {
    box-shadow: none;
}

.rx-rtl-fxb66d:active {
    box-shadow: none;
}

.rx-rtl-fxb66d.Mui-disabled {
    box-shadow: none;
}

.rx-rtl-fxb66d:hover {
    background-color: transparent;
}

.rx-rtl-fxb66d.MuiButton-textPrimary {
    color: rgb(195, 125, 10);
}

.rx-rtl-fxb66d.MuiButton-textPrimary:hover {
    background-color: transparent;
}

.rx-rtl-fxb66d.MuiButton-textPrimary.Mui-disabled {
    color: rgb(188, 190, 193);
}

.light-mode *::-webkit-scrollbar {
    transition-duration: .1s;
    width: 6px !important;
    height: 6px !important;
    cursor: pointer;
    border-radius: 12px !important;
}

.light-mode *::-webkit-scrollbar-thumb {
    border-radius: 12px;
    background: #ddd !important;
}

.light-mode *::-webkit-scrollbar-thumb:hover {
    background: #8f9398 !important;
}

.light-mode *::-webkit-scrollbar-track {
    border-radius: 12px !important;
    background: transparent !important;
}

/*! CSS Used from: Embedded */
*,
::before,
::after {
    box-sizing: inherit;
}

/*! CSS Used from: Embedded */
.rx-rtl-sr2204 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rx-rtl-sr2204.wrapper-full-width {
    width: 100%;
}

.rx-rtl-16ntgt8 {
    margin: 0px;
    font-family: IranYekanEnNum;
    font-size: 0.75rem;
    line-height: 1.66;
    font-weight: 400;
    padding-inline: 8px;
}

.rx-rtl-igs3ac {
    text-align: right;
    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);
}

.rx-rtl-ihdtdm {
    float: unset;
    width: auto;
    overflow: hidden;
    padding: 0px;
    line-height: 11px;
    transition: width 150ms cubic-bezier(0, 0, 0.2, 1);
}

.rx-rtl-w0pj6f {
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 0;
    inset: 0px;
    border-radius: inherit;
}

.rx-rtl-1lwgkab {
    font-family: IranYekanEnNum;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    color: rgb(65, 71, 79);
    box-sizing: border-box;
    cursor: text;
    display: inline-flex;
    align-items: center;
    width: 100%;
    position: relative;
    border-radius: 4px;
    min-height: 40px;
    padding-left: 8px;
    padding-block: 0px !important;
}

.rx-rtl-1lwgkab:hover .MuiOutlinedInput-notchedOutline {
    border-color: rgb(65, 71, 79);
}

@media (hover: none) {
    .rx-rtl-1lwgkab:hover .MuiOutlinedInput-notchedOutline {
        border-color: rgba(0, 0, 0, 0.23);
    }
}

.rx-rtl-1lwgkab .MuiOutlinedInput-notchedOutline {
    border-color: rgb(224, 224, 224);
}

.rx-rtl-1lwgkab .MuiOutlinedInput-input {
    font-size: 0.875rem;
    min-height: 48px;
    padding: 0px 16px;
}

.rx-rtl-1lwgkab .MuiOutlinedInput-input.MuiInputBase-inputAdornedEnd {
    padding: 0px 10px;
}

.rx-rtl-1lwgkab .MuiOutlinedInput-input::placeholder {
    font-size: 0.875rem;
    color: rgb(143, 147, 152);
}

.rx-rtl-1lwgkab .MuiOutlinedInput-input {
    min-height: 40px;
    font-size: 0.75rem;
}

.rx-rtl-1lwgkab .MuiOutlinedInput-input::placeholder {
    font-size: 0.75rem;
}

.rx-rtl-1kowzwq {
    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: 8.5px 14px 8.5px 0px;
}

.rx-rtl-1kowzwq:focus {
    outline: 0px;
}

.rx-rtl-1kowzwq:invalid {
    box-shadow: none;
}

.rx-rtl-4olp5c {
    margin: 0px;
    flex-shrink: 0;
    border-width: 0px 0px 0px thin;
    border-style: solid;
    border-color: rgb(238, 238, 238);
    width: 1px;
    height: 32px;
    margin-inline-end: 6px;
}

.rx-rtl-vjo498 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: 0px;
    border: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: IranYekanEnNum;
    min-width: 64px;
    border-radius: 4px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    white-space: nowrap;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 28px;
    color: rgb(10, 13, 19);
    background-color: rgb(247, 194, 19);
    padding: 4px 16px;
    height: 32px;
    font-size: 0.75rem;
}

.rx-rtl-vjo498:hover {
    text-decoration: none;
    background-color: rgb(195, 125, 10);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, rgba(0, 0, 0, 0.14) 0px 4px 5px 0px, rgba(0, 0, 0, 0.12) 0px 1px 10px 0px;
}

@media (hover: none) {
    .rx-rtl-vjo498:hover {
        background-color: rgb(247, 194, 19);
    }
}

.rx-rtl-vjo498:active {
    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;
}

.rx-rtl-vjo498:hover {
    box-shadow: none;
}

.rx-rtl-vjo498:active {
    box-shadow: none;
}

.rx-rtl-vjo498:hover {
    background-color: rgb(234, 177, 17);
}

/*! CSS Used keyframes */
@keyframes mui-auto-fill-cancel {
    0% {
        display: block;
    }
}


.hide {
    display: none !important;
}

#overlay {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.6);
  z-index: 999999;
}

#overlay-loader{
  position: absolute;
  left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
  margin:0 auto;
}

.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
  box-sizing: border-box;
}
.lds-spinner {
  color: #EAB111;
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3.2px;
  left: 36.8px;
  width: 6.4px;
  height: 17.6px;
  border-radius: 20%;
  background: currentColor;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}



.rx-rtl-1qklgvt {
	font-family: IranYekanEnNum;
	font-weight: 400;
	font-size: 0.75rem;
	line-height: 1.66;
	text-align: right;
	margin: 3px 0px 0px;
	color: rgb(230, 103, 102);
	padding: 4px 8px;
}

.alert-danger {
	transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 4px;
	background-image: none;
	font-family: IranYekanEnNum;
	font-size: 0.875rem;
	line-height: 1.43;
	display: flex;
	font-weight: 500;
	background-color: rgb(252, 234, 233);
	color: rgb(207, 36, 35);
	box-shadow: none;
	width: 100%;
	padding: 10px 16px 10px 8px;
	align-items: center;
}
