body {
    margin: 0px;
    padding: 0px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-image: url("/alps2-blurred-bg.webp");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: 100vh;
    line-height: 1.6;
}

.noscript-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.noscript-card {
    background: white;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 32px;
    padding: 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    animation: 0.5s ease-in 0s 1 normal none running fadeIn;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

.logo {
    height: 56px;
    margin-bottom: 24px;
    max-width: 100%;
}

.title {
    color: rgb(25, 118, 210);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.subtitle {
    color: rgb(102, 102, 102);
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.5;
}

.warning-icon {
    font-size: 48px;
    margin-bottom: 16px;
    color: rgb(255, 152, 0);
}

.steps-section {
    text-align: left;
    margin: 32px 0px;
    background: rgb(248, 249, 250);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid rgb(25, 118, 210);
}

.steps-title {
    color: rgb(25, 118, 210);
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.steps-list {
    margin: 16px 0px;
    padding-left: 20px;
}

.steps-list li {
    margin-bottom: 12px;
    color: rgb(51, 51, 51);
    font-size: 16px;
}

.browser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin: 32px 0px;
}

.browser-option {
    padding: 20px 16px;
    background: rgb(248, 249, 250);
    border-radius: 8px;
    text-decoration: none;
    color: rgb(51, 51, 51);
    transition: 0.3s;
    border: 2px solid transparent;
    display: block;
}

.browser-option:hover {
    transform: translateY(-3px);
    box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 20px;
    border-color: rgb(25, 118, 210);
    background: rgb(227, 242, 253);
}

.browser-name {
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

.browser-action {
    font-size: 14px;
    color: rgb(102, 102, 102);
}

.contact-info {
    background: rgb(227, 242, 253);
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
    border: 1px solid rgb(187, 222, 251);
}

.contact-title {
    color: rgb(25, 118, 210);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 18px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgb(51, 51, 51);
}

.contact-icon {
    margin-right: 8px;
    font-size: 18px;
}

.security-note {
    background: rgb(255, 243, 224);
    border: 1px solid rgb(255, 204, 2);
    border-radius: 8px;
    padding: 16px;
    margin-top: 24px;
    font-size: 14px;
    color: rgb(230, 81, 0);
}

.security-note strong {
    color: rgb(191, 54, 12);
}

.refresh-button {
    background-color: rgb(25, 118, 210);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 24px;
    transition: background-color 0.3s;
}

.refresh-button:hover {
    background-color: rgb(21, 101, 192);
}

@media (max-width: 768px) {
    .noscript-card {
        padding: 24px;
        margin: 16px;
    }

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 16px;
    }

    .browser-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .browser-option {
        padding: 16px 12px;
    }

    .contact-details {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .steps-section {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .browser-grid {
        grid-template-columns: 1fr;
    }

    .noscript-card {
        padding: 20px;
        margin: 12px;
    }

    .warning-icon {
        font-size: 36px;
    }
}

:root {
    font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    font-weight: 400;
    color-scheme: light dark;
    color: rgba(255, 255, 255, 0.87);
    background-color: rgb(36, 36, 36);
    font-synthesis: none;
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    font-weight: 500;
    text-decoration: inherit;
}

body {
    margin: 0px;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

h1 {
    font-size: 3.2em;
    line-height: 1.1;
}

button {
    border-radius: 8px;
    border: 1px solid transparent;
    padding: 0.6em 1.2em;
    font-size: 1em;
    font-weight: 500;
    font-family: inherit;
    background-color: rgb(26, 26, 26);
    cursor: pointer;
    transition: border-color 0.25s;
}

.go1475592160 {
    height: 0px;
}

.go1671063245 {
    height: auto;
}

.go1888806478 {
    display: flex;
    flex-wrap: wrap;
    flex-grow: 1;
}

@media (min-width: 600px) {
    .go1888806478 {
        flex-grow: initial;
        min-width: 288px;
    }
}

.go167266335 {
    background-color: rgb(49, 49, 49);
    font-size: 0.875rem;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    color: rgb(255, 255, 255);
    align-items: center;
    padding: 6px 16px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px;
}

.go3162094071 {
    padding-left: 20px;
}

.go3844575157 {
    background-color: rgb(49, 49, 49);
}

.go1725278324 {
    background-color: rgb(67, 160, 71);
}

.go3651055292 {
    background-color: rgb(211, 47, 47);
}

.go4215275574 {
    background-color: rgb(255, 152, 0);
}

.go1930647212 {
    background-color: rgb(33, 150, 243);
}

.go946087465 {
    display: flex;
    align-items: center;
    padding: 8px 0px;
}

.go703367398 {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-left: 16px;
    margin-right: -8px;
}

.go3963613292 {
    width: 100%;
    position: relative;
    transform: translateX(0px);
    inset: 0px;
    min-width: 288px;
}

.go1141946668 {
    box-sizing: border-box;
    display: flex;
    max-height: 100%;
    position: fixed;
    z-index: 1400;
    height: auto;
    width: auto;
    transition: top 300ms, right 300ms, bottom 300ms, left 300ms, max-width 300ms;
    pointer-events: none;
    max-width: calc(100% - 40px);
}

.go1141946668 .notistack-CollapseWrapper {
    padding: 6px 0px;
    transition: padding 300ms;
}

@media (max-width: 599.95px) {
    .go1141946668 {
        width: 100%;
        max-width: calc(100% - 32px);
    }
}

.go3868796639 .notistack-CollapseWrapper {
    padding: 2px 0px;
}

.go3118922589 {
    top: 14px;
    flex-direction: column;
}

.go1453831412 {
    bottom: 14px;
    flex-direction: column-reverse;
}

.go4027089540 {
    left: 20px;
}

@media (min-width: 600px) {
    .go4027089540 {
        align-items: flex-start;
    }
}

@media (max-width: 599.95px) {
    .go4027089540 {
        left: 16px;
    }
}

.go2989568495 {
    right: 20px;
}

@media (min-width: 600px) {
    .go2989568495 {
        align-items: flex-end;
    }
}

@media (max-width: 599.95px) {
    .go2989568495 {
        right: 16px;
    }
}

.go4034260886 {
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 600px) {
    .go4034260886 {
        align-items: center;
    }
}

[_nghost-ng-c2697620354] {
    font-family: "Open Sans", sans-serif;
    color: rgb(18, 18, 18);
}

html {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    text-size-adjust: 100%;
}

*, ::before, ::after {
    box-sizing: inherit;
}

strong, b {
    font-weight: 700;
}

body {
    margin: 0px;
    color: rgba(0, 0, 0, 0.87);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
    background-color: rgb(255, 255, 255);
}

@media print {
    body {
        background-color: rgb(255, 255, 255);
    }
}

body::backdrop {
    background-color: rgb(255, 255, 255);
}

@-webkit-keyframes mui-auto-fill {
    0% {
        display: block;
    }
}

@keyframes mui-auto-fill {
    0% {
        display: block;
    }
}

@-webkit-keyframes mui-auto-fill-cancel {
    0% {
        display: block;
    }
}

@keyframes mui-auto-fill-cancel {
    0% {
        display: block;
    }
}

@-webkit-keyframes mui-auto-fill {
    0% {
        display: block;
    }
}

@keyframes mui-auto-fill {
    0% {
        display: block;
    }
}

@-webkit-keyframes mui-auto-fill-cancel {
    0% {
        display: block;
    }
}

@keyframes mui-auto-fill-cancel {
    0% {
        display: block;
    }
}

@-webkit-keyframes mui-auto-fill {
    0% {
        display: block;
    }
}

@keyframes mui-auto-fill {
    0% {
        display: block;
    }
}

@-webkit-keyframes mui-auto-fill-cancel {
    0% {
        display: block;
    }
}

@keyframes mui-auto-fill-cancel {
    0% {
        display: block;
    }
}

@-webkit-keyframes mui-auto-fill {
    0% {
        display: block;
    }
}

@keyframes mui-auto-fill {
    0% {
        display: block;
    }
}

@-webkit-keyframes mui-auto-fill-cancel {
    0% {
        display: block;
    }
}

@keyframes mui-auto-fill-cancel {
    0% {
        display: block;
    }
}

.css-1lb6n3v {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    height: 100vh;
}

.css-vioek3 {
    display: inline-block;
    animation: 1.4s linear 0s infinite normal none running animation-61bdi0;
    color: rgb(0, 0, 0);
}

@-webkit-keyframes animation-61bdi0 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animation-61bdi0 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.css-4ejps8 {
    display: block;
}

.css-13odlrs {
    stroke: currentcolor;
    stroke-dasharray: 80px, 200px;
    stroke-dashoffset: 0;
    animation: 1.4s ease-in-out 0s infinite normal none running animation-1o38n3e;
}

@-webkit-keyframes animation-1o38n3e {
    0% {
        stroke-dasharray: 1px, 200px;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 100px, 200px;
        stroke-dashoffset: -15px;
    }
    100% {
        stroke-dasharray: 1px, 200px;
        stroke-dashoffset: -126px;
    }
}

@keyframes animation-1o38n3e {
    0% {
        stroke-dasharray: 1px, 200px;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 100px, 200px;
        stroke-dashoffset: -15px;
    }
    100% {
        stroke-dasharray: 1px, 200px;
        stroke-dashoffset: -126px;
    }
}

.css-g12s8z {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    position: sticky;
    z-index: 1100;
    top: 0px;
    left: auto;
    right: 0px;
    --AppBar-background: #f5f5f5;
    --AppBar-color: rgba(0, 0, 0, 0.87);
    color: var(--AppBar-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    background-color: rgb(255, 255, 255);
}

.css-blk0om {
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--Paper-shadow);
    background-image: var(--Paper-overlay);
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    position: sticky;
    z-index: 1100;
    top: 0px;
    left: auto;
    right: 0px;
    --AppBar-background: #f5f5f5;
    --AppBar-color: rgba(0, 0, 0, 0.87);
    color: var(--AppBar-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    background-color: rgb(255, 255, 255);
}

.css-ncszxy {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
    min-height: 56px;
    -webkit-box-pack: justify;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

@media (min-width: 600px) {
    .css-ncszxy {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 0px) {
    @media (orientation: landscape) {
        .css-ncszxy {
            min-height: 48px;
        }
    }
}

@media (min-width: 600px) {
    .css-ncszxy {
        min-height: 64px;
    }
}

.css-4g6ai3 {
    cursor: pointer;
}

.css-7pf6at {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
}

.css-1rqqp05 {
    -webkit-box-flex: 1;
    flex-grow: 1;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
}

.css-hzi2b9 {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    border: 0px;
    border-radius: 4px;
    padding: 6px 8px;
    background-color: var(--variant-textBg);
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    text-transform: none;
    transition: 0.2s ease-in-out;
    color: rgba(0, 0, 0, 0.87);
    margin-left: 12px;
    margin-right: 12px;
}

.css-hzi2b9:hover {
    text-decoration: none;
}

.css-hzi2b9.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

@media (hover: hover) {
    .css-hzi2b9:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-hzi2b9.MuiButton-loading {
    color: transparent;
}

.css-1xno2q4 {
    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;
    outline: 0px;
    margin: 0px 12px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    border: 0px;
    border-radius: 4px;
    padding: 6px 8px;
    background-color: var(--variant-textBg);
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    text-transform: none;
    transition: 0.2s ease-in-out;
    color: rgba(0, 0, 0, 0.87);
}

.css-1xno2q4.Mui-disabled {
    pointer-events: none;
    cursor: default;
}

@media print {
    .css-1xno2q4 {
        print-color-adjust: exact;
    }
}

.css-1xno2q4:hover {
    text-decoration: none;
}

.css-1xno2q4.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

@media (hover: hover) {
    .css-1xno2q4:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-1xno2q4.MuiButton-loading {
    color: transparent;
}

.css-axw7ok {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 8px;
}

.css-lig97n {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    border: 0px;
    border-radius: 4px;
    padding: 6px 8px;
    background-color: var(--variant-textBg);
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    transition: 0.2s ease-in-out;
    color: rgba(0, 0, 0, 0.87);
    text-transform: none;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.css-lig97n:hover {
    text-decoration: none;
}

.css-lig97n.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

@media (hover: hover) {
    .css-lig97n:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-lig97n.MuiButton-loading {
    color: transparent;
}

.css-10ateo4 {
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    border: 0px;
    border-radius: 4px;
    padding: 6px 8px;
    background-color: var(--variant-textBg);
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    transition: 0.2s ease-in-out;
    color: rgba(0, 0, 0, 0.87);
    text-transform: none;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
}

.css-10ateo4.Mui-disabled {
    pointer-events: none;
    cursor: default;
}

@media print {
    .css-10ateo4 {
        print-color-adjust: exact;
    }
}

.css-10ateo4:hover {
    text-decoration: none;
}

.css-10ateo4.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

@media (hover: hover) {
    .css-10ateo4:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-10ateo4.MuiButton-loading {
    color: transparent;
}

.css-1bsvy8h {
    width: 24px;
    height: auto;
    margin-right: 8px;
    border-radius: 2px;
}

.css-q7mezt {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    flex-shrink: 0;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
    fill: currentcolor;
    font-size: 1.5rem;
}

.css-1ygv029 {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    border-radius: 4px;
    padding: 5px 15px;
    border: 1px solid rgb(22, 119, 255);
    background-color: var(--variant-outlinedBg);
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    text-transform: none;
    transition: 0.2s ease-in-out;
    box-shadow: none;
    color: rgb(22, 119, 255);
    margin-right: 8px;
    white-space: nowrap;
}

.css-1ygv029:hover {
    text-decoration: none;
}

.css-1ygv029.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-1ygv029.Mui-disabled {
    border: 1px solid rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .css-1ygv029:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-1ygv029.MuiButton-loading {
    color: transparent;
}

.css-1ygv029:hover {
    background-color: rgb(255, 255, 255);
    border-color: rgb(177, 215, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
    transform: translateY(-1px);
}

.css-1ygv029:focus-visible {
    background-color: transparent;
    outline: none;
}

.css-1ygv029:hover {
    color: rgb(22, 119, 255);
}

.css-1m38jpc {
    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;
    outline: 0px;
    margin: 0px 8px 0px 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    border-radius: 4px;
    padding: 5px 15px;
    border: 1px solid rgb(22, 119, 255);
    background-color: var(--variant-outlinedBg);
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    text-transform: none;
    transition: 0.2s ease-in-out;
    box-shadow: none;
    color: rgb(22, 119, 255);
    white-space: nowrap;
}

.css-1m38jpc.Mui-disabled {
    pointer-events: none;
    cursor: default;
}

@media print {
    .css-1m38jpc {
        print-color-adjust: exact;
    }
}

.css-1m38jpc:hover {
    text-decoration: none;
}

.css-1m38jpc.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-1m38jpc.Mui-disabled {
    border: 1px solid rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .css-1m38jpc:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-1m38jpc.MuiButton-loading {
    color: transparent;
}

.css-1m38jpc:hover {
    background-color: rgb(255, 255, 255);
    border-color: rgb(177, 215, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
    transform: translateY(-1px);
}

.css-1m38jpc:focus-visible {
    background-color: transparent;
    outline: none;
}

.css-1m38jpc:hover {
    color: rgb(22, 119, 255);
}

.css-69c4gd {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    padding: 6px 16px;
    border: 0px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    text-transform: none;
    transition: 0.2s ease-in-out;
    color: rgb(255, 255, 255);
    background-color: rgb(22, 119, 255);
    white-space: nowrap;
}

.css-69c4gd:hover {
    text-decoration: none;
}

.css-69c4gd.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-69c4gd:hover {
    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) {
    .css-69c4gd:hover {
        box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    }
}

.css-69c4gd: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;
}

.css-69c4gd.Mui-focusVisible {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px;
}

.css-69c4gd.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .css-69c4gd:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-69c4gd.MuiButton-loading {
    color: transparent;
}

.css-69c4gd:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 70, 213);
}

.css-ad23s4 {
    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;
    outline: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    padding: 6px 16px;
    border: 0px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    text-transform: none;
    transition: 0.2s ease-in-out;
    color: rgb(255, 255, 255);
    background-color: rgb(22, 119, 255);
    white-space: nowrap;
}

.css-ad23s4.Mui-disabled {
    pointer-events: none;
    cursor: default;
}

@media print {
    .css-ad23s4 {
        print-color-adjust: exact;
    }
}

.css-ad23s4:hover {
    text-decoration: none;
}

.css-ad23s4.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-ad23s4:hover {
    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) {
    .css-ad23s4:hover {
        box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    }
}

.css-ad23s4: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;
}

.css-ad23s4.Mui-focusVisible {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px;
}

.css-ad23s4.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .css-ad23s4:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-ad23s4.MuiButton-loading {
    color: transparent;
}

.css-ad23s4:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 70, 213);
}

.css-12mlt4t {
    z-index: 1200;
}

@media (min-width: 0px) {
    .css-12mlt4t {
        display: block;
    }
}

@media (min-width: 900px) {
    .css-12mlt4t {
        display: none;
    }
}

.css-12mlt4t .MuiDrawer-paper {
    box-sizing: border-box;
    width: 250px;
}

.css-1kzo3b9 {
    overflow-x: hidden;
}

.css-s99now {
    background-image: url("/home/currency-exchange/s1-hero.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

@media (min-width: 0px) {
    .css-s99now {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

@media (min-width: 900px) {
    .css-s99now {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

.css-s99now::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.css-s99now > * {
    position: relative;
    z-index: 2;
}

.css-j7wd97 {
    width: 100%;
    margin-left: auto;
    box-sizing: border-box;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    max-width: 1200px;
}

@media (min-width: 600px) {
    .css-j7wd97 {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.css-17k224h {
    --Grid-columns: 12;
    --Grid-columnSpacing: 32px;
    --Grid-rowSpacing: 32px;
    flex-flow: wrap;
    min-width: 0px;
    box-sizing: border-box;
    display: flex;
    gap: var(--Grid-rowSpacing) var(--Grid-columnSpacing);
    -webkit-box-align: center;
    align-items: center;
}

.css-17k224h > * {
    --Grid-parent-columns: 12;
}

.css-17k224h > * {
    --Grid-parent-columnSpacing: 32px;
}

@media (min-width: 900px) {
    .css-17k224h {
        --Grid-columnSpacing: 64px;
    }

    .css-17k224h > * {
        --Grid-parent-columnSpacing: 64px;
    }
}

.css-17k224h > * {
    --Grid-parent-rowSpacing: 32px;
}

@media (min-width: 900px) {
    .css-17k224h {
        --Grid-rowSpacing: 64px;
    }

    .css-17k224h > * {
        --Grid-parent-rowSpacing: 64px;
    }
}

.css-tnatjl {
    -webkit-box-flex: 0;
    flex-grow: 0;
    flex-basis: auto;
    width: calc(100% * 12 / var(--Grid-parent-columns) - (var(--Grid-parent-columns) - 12) * (var(--Grid-parent-columnSpacing) / var(--Grid-parent-columns)));
    min-width: 0px;
    box-sizing: border-box;
}

@media (min-width: 900px) {
    .css-tnatjl {
        -webkit-box-flex: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: calc(100% * 6 / var(--Grid-parent-columns) - (var(--Grid-parent-columns) - 6) * (var(--Grid-parent-columnSpacing) / var(--Grid-parent-columns)));
    }
}

@media (min-width: 0px) {
    .css-e1oes3 {
        max-width: 100%;
    }
}

@media (min-width: 900px) {
    .css-e1oes3 {
        max-width: 500px;
    }
}

.css-cwb3vc {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.css-v5or2a {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    color: rgb(167, 187, 224);
    font-size: 0.875rem;
}

.css-1utx3w7 {
    display: flex;
    gap: 4px;
}

.css-1m56k6q {
    color: rgb(16, 185, 129);
    font-size: 1rem;
}

.css-1ahyf14 {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    color: rgb(16, 185, 129);
    font-size: 0.875rem;
    font-weight: 600;
}

.css-redaj0 {
    margin: 0px 0px 32px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 6rem;
    letter-spacing: -0.01562em;
    color: rgb(255, 255, 255);
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 0px) {
    .css-redaj0 {
        font-size: 2.25rem;
    }
}

@media (min-width: 600px) {
    .css-redaj0 {
        font-size: 2.75rem;
    }
}

@media (min-width: 900px) {
    .css-redaj0 {
        font-size: 3.5rem;
    }
}

.css-sl6doy {
    margin: 0px 0px 48px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.00938em;
    color: rgb(167, 187, 224);
    line-height: 1.6;
    max-width: 480px;
}

@media (min-width: 0px) {
    .css-sl6doy {
        font-size: 1.125rem;
    }
}

@media (min-width: 900px) {
    .css-sl6doy {
        font-size: 1.25rem;
    }
}

@media (min-width: 0px) {
    .css-ji3lbb {
        padding-left: 0px;
    }
}

@media (min-width: 900px) {
    .css-ji3lbb {
        padding-left: 32px;
    }
}

.css-1mlzp8w {
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    background-image: var(--Paper-overlay);
    padding: 32px;
    border-radius: 16px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.css-1w8qyb {
    margin: 0px 0px 24px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.334;
    letter-spacing: 0em;
    color: rgb(30, 41, 59);
    font-weight: 600;
    text-align: center;
}

.css-i3pbo {
    margin-bottom: 24px;
}

.css-1atglfe {
    margin: 0px 0px 8px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    color: rgb(100, 116, 139);
    font-weight: 500;
}

.css-1klpoq2 {
    --Grid-columns: 12;
    --Grid-columnSpacing: 16px;
    --Grid-rowSpacing: 16px;
    flex-flow: wrap;
    min-width: 0px;
    box-sizing: border-box;
    display: flex;
    gap: var(--Grid-rowSpacing) var(--Grid-columnSpacing);
}

.css-1klpoq2 > * {
    --Grid-parent-columns: 12;
}

.css-1klpoq2 > * {
    --Grid-parent-columnSpacing: 16px;
}

.css-1klpoq2 > * {
    --Grid-parent-rowSpacing: 16px;
}

.css-21m6ca {
    -webkit-box-flex: 0;
    flex-grow: 0;
    flex-basis: auto;
    width: calc(100% * 8 / var(--Grid-parent-columns) - (var(--Grid-parent-columns) - 8) * (var(--Grid-parent-columnSpacing) / var(--Grid-parent-columns)));
    min-width: 0px;
    box-sizing: border-box;
}

.css-67g7j1 .MuiOutlinedInput-root {
    background-color: rgb(255, 255, 255);
}

.css-tuhj2a {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    min-width: 0px;
    padding: 0px;
    margin: 0px;
    border: 0px;
    vertical-align: top;
    width: 100%;
}

.css-tuhj2a .MuiOutlinedInput-root {
    background-color: rgb(255, 255, 255);
}

.css-1vw0mdz {
    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;
    width: 100%;
    position: relative;
    border-radius: 4px;
}

.css-1vw0mdz.Mui-disabled {
    color: rgba(0, 0, 0, 0.38);
    cursor: default;
}

.css-1vw0mdz:hover .MuiOutlinedInput-notchedOutline {
    border-color: rgba(0, 0, 0, 0.87);
}

@media (hover: none) {
    .css-1vw0mdz:hover .MuiOutlinedInput-notchedOutline {
        border-color: rgba(0, 0, 0, 0.23);
    }
}

.css-1vw0mdz.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-width: 2px;
}

.css-1vw0mdz.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: rgb(0, 0, 0);
}

.css-1vw0mdz.Mui-error .MuiOutlinedInput-notchedOutline {
    border-color: rgb(211, 47, 47);
}

.css-1vw0mdz.Mui-disabled .MuiOutlinedInput-notchedOutline {
    border-color: rgba(0, 0, 0, 0.26);
}

.css-1pk1fka {
    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-1pk1fka::-webkit-input-placeholder {
    color: currentcolor;
    opacity: 0.42;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.css-1pk1fka:focus {
    outline: 0px;
}

.css-1pk1fka:invalid {
    box-shadow: none;
}

.css-1pk1fka::-webkit-search-decoration {
    appearance: none;
}

label[data-shrink="false"] + .MuiInputBase-formControl .css-1pk1fka::-webkit-input-placeholder {
    opacity: 0 !important;
}

label[data-shrink="false"] + .MuiInputBase-formControl .css-1pk1fka:focus::-webkit-input-placeholder {
    opacity: 0.42;
}

.css-1pk1fka.Mui-disabled {
    opacity: 1;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.38);
}

.css-1pk1fka:-webkit-autofill {
    animation-duration: 5000s;
    animation-name: mui-auto-fill;
}

.css-1pk1fka:-webkit-autofill {
    border-radius: inherit;
}

.css-h2v8xi {
    border-color: rgba(0, 0, 0, 0.23);
}

.css-5v2ak0 {
    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-w4cd9x {
    float: unset;
    width: auto;
    overflow: hidden;
    padding: 0px;
    line-height: 11px;
    transition: width 150ms cubic-bezier(0, 0, 0.2, 1);
}

.css-fiq9q0 {
    -webkit-box-flex: 0;
    flex-grow: 0;
    flex-basis: auto;
    width: calc(100% * 4 / var(--Grid-parent-columns) - (var(--Grid-parent-columns) - 4) * (var(--Grid-parent-columnSpacing) / var(--Grid-parent-columns)));
    min-width: 0px;
    box-sizing: border-box;
}

.css-mp9f0v {
    appearance: none;
    user-select: none;
    cursor: pointer;
    border-radius: 4px;
    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-mp9f0v:focus {
    border-radius: 0px;
}

.css-mp9f0v.Mui-disabled {
    cursor: default;
}

.css-mp9f0v[multiple] {
    height: auto;
}

.css-mp9f0v:not([multiple]) option, .css-mp9f0v:not([multiple]) optgroup {
    background-color: rgb(255, 255, 255);
}

.css-mp9f0v:focus {
    border-radius: 4px;
}

.css-mp9f0v.css-mp9f0v.css-mp9f0v {
    padding-right: 32px;
}

.css-mp9f0v.MuiSelect-select {
    height: auto;
    min-height: 1.4375em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.css-mp9f0v::-webkit-input-placeholder {
    color: currentcolor;
    opacity: 0.42;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.css-mp9f0v:focus {
    outline: 0px;
}

.css-mp9f0v:invalid {
    box-shadow: none;
}

.css-mp9f0v::-webkit-search-decoration {
    appearance: none;
}

label[data-shrink="false"] + .MuiInputBase-formControl .css-mp9f0v::-webkit-input-placeholder {
    opacity: 0 !important;
}

label[data-shrink="false"] + .MuiInputBase-formControl .css-mp9f0v:focus::-webkit-input-placeholder {
    opacity: 0.42;
}

.css-mp9f0v.Mui-disabled {
    opacity: 1;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.38);
}

.css-mp9f0v:-webkit-autofill {
    animation-duration: 5000s;
    animation-name: mui-auto-fill;
}

.css-mp9f0v:-webkit-autofill {
    border-radius: inherit;
}

.css-147e5lo {
    bottom: 0px;
    left: 0px;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    box-sizing: border-box;
}

.css-1g8ch8 {
    position: absolute;
    top: calc(50% - 0.5em);
    pointer-events: none;
    color: rgba(0, 0, 0, 0.54);
    right: 7px;
}

.css-1g8ch8.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-mccray {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    background-color: rgb(255, 255, 255);
    padding-left: 6px;
    padding-right: 6px;
    position: absolute;
    top: calc(50% - 0.5em);
    pointer-events: none;
    color: rgba(0, 0, 0, 0.54);
    right: 7px;
}

.css-mccray.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-ke8xzm {
    user-select: none;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
    fill: currentcolor;
    font-size: 1.5rem;
    display: block;
}

.css-9ticqz {
    margin-bottom: 24px;
    padding: 12px 16px;
    background-color: rgb(241, 245, 249);
    border-radius: 8px;
}

.css-i9gxme {
    -webkit-box-flex: 1;
    flex-grow: 1;
}

.css-kx2ft0 {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    color: rgba(0, 0, 0, 0.6);
}

.css-7c3jh4 {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.0075em;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.87);
    font-weight: 600;
}

.css-1yjvs5a {
    margin-bottom: 32px;
}

.css-i5rfc3 {
    margin: 0px 0px 24px;
    flex-shrink: 0;
    border-width: 0px 0px thin;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.12);
}

.css-104u1jw {
    margin: 0px 0px 24px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    color: rgb(100, 116, 139);
    text-align: center;
    font-size: 0.875rem;
}

.css-rt9376 {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    border: 0px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    padding: 12px 22px;
    width: 100%;
    transition: 0.2s ease-in-out;
    color: rgb(255, 255, 255);
    background-color: rgb(22, 119, 255);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: none;
    white-space: nowrap;
}

.css-rt9376:hover {
    text-decoration: none;
}

.css-rt9376.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-rt9376:hover {
    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) {
    .css-rt9376:hover {
        box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    }
}

.css-rt9376: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;
}

.css-rt9376.Mui-focusVisible {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px;
}

.css-rt9376.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .css-rt9376:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-rt9376.MuiButton-loading {
    color: transparent;
}

.css-rt9376:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 70, 213);
}

.css-nzgub {
    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;
    outline: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    border: 0px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    padding: 12px 22px;
    width: 100%;
    transition: 0.2s ease-in-out;
    color: rgb(255, 255, 255);
    background-color: rgb(22, 119, 255);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: none;
    white-space: nowrap;
}

.css-nzgub.Mui-disabled {
    pointer-events: none;
    cursor: default;
}

@media print {
    .css-nzgub {
        print-color-adjust: exact;
    }
}

.css-nzgub:hover {
    text-decoration: none;
}

.css-nzgub.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-nzgub:hover {
    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) {
    .css-nzgub:hover {
        box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    }
}

.css-nzgub: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;
}

.css-nzgub.Mui-focusVisible {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px;
}

.css-nzgub.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .css-nzgub:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-nzgub.MuiButton-loading {
    color: transparent;
}

.css-nzgub:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 70, 213);
}

.css-j2as55 {
    display: inherit;
    margin-right: 8px;
    margin-left: -4px;
}

.css-j2as55 > :nth-of-type(1) {
    font-size: 22px;
}

.css-b681dl {
    background-color: rgb(101, 216, 255);
    position: relative;
}

@media (min-width: 0px) {
    .css-b681dl {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

@media (min-width: 900px) {
    .css-b681dl {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

.css-1mbezr8 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
}

@media (min-width: 0px) {
    .css-1mbezr8 {
        height: 300px;
    }
}

@media (min-width: 900px) {
    .css-1mbezr8 {
        height: 400px;
    }
}

.css-a9ypgc {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 500px;
    border-radius: 12px;
    filter: hue-rotate(0deg) saturate(1.1) brightness(1.05);
}

@media (min-width: 0px) {
    .css-4ne4ca {
        max-width: 100%;
        margin-left: 0px;
    }
}

@media (min-width: 900px) {
    .css-4ne4ca {
        max-width: 480px;
        margin-left: 32px;
    }
}

.css-1qdjamc {
    margin: 0px 0px 32px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 3.75rem;
    letter-spacing: -0.00833em;
    color: rgb(0, 23, 66);
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 0px) {
    .css-1qdjamc {
        font-size: 2rem;
    }
}

@media (min-width: 600px) {
    .css-1qdjamc {
        font-size: 2.5rem;
    }
}

@media (min-width: 900px) {
    .css-1qdjamc {
        font-size: 3rem;
    }
}

.css-1naq7md {
    margin: 0px 0px 48px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.00938em;
    color: rgb(0, 23, 66);
    line-height: 1.6;
}

@media (min-width: 0px) {
    .css-1naq7md {
        font-size: 1rem;
    }
}

@media (min-width: 900px) {
    .css-1naq7md {
        font-size: 1.125rem;
    }
}

.css-13rcduy {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.css-4rm8eu {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    border: 0px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    transition: 0.2s ease-in-out;
    color: rgb(255, 255, 255);
    background-color: rgb(22, 119, 255);
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: none;
    white-space: nowrap;
}

.css-4rm8eu:hover {
    text-decoration: none;
}

.css-4rm8eu.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-4rm8eu:hover {
    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) {
    .css-4rm8eu:hover {
        box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    }
}

.css-4rm8eu: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;
}

.css-4rm8eu.Mui-focusVisible {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px;
}

.css-4rm8eu.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .css-4rm8eu:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-4rm8eu.MuiButton-loading {
    color: transparent;
}

.css-4rm8eu:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 70, 213);
}

.css-1r63bzv {
    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;
    outline: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    border: 0px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    transition: 0.2s ease-in-out;
    color: rgb(255, 255, 255);
    background-color: rgb(22, 119, 255);
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: none;
    white-space: nowrap;
}

.css-1r63bzv.Mui-disabled {
    pointer-events: none;
    cursor: default;
}

@media print {
    .css-1r63bzv {
        print-color-adjust: exact;
    }
}

.css-1r63bzv:hover {
    text-decoration: none;
}

.css-1r63bzv.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-1r63bzv:hover {
    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) {
    .css-1r63bzv:hover {
        box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    }
}

.css-1r63bzv: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;
}

.css-1r63bzv.Mui-focusVisible {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px;
}

.css-1r63bzv.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .css-1r63bzv:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-1r63bzv.MuiButton-loading {
    color: transparent;
}

.css-1r63bzv:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 70, 213);
}

.css-ghip4b {
    margin-left: 8px;
    font-size: 1.2em;
}

.css-1dkuoxe {
    background: linear-gradient(135deg, rgb(248, 250, 252) 0%, rgb(226, 232, 240) 100%);
    position: relative;
}

@media (min-width: 0px) {
    .css-1dkuoxe {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

@media (min-width: 900px) {
    .css-1dkuoxe {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

.css-4zswg4 {
    text-align: center;
}

@media (min-width: 0px) {
    .css-4zswg4 {
        margin-bottom: 48px;
    }
}

@media (min-width: 900px) {
    .css-4zswg4 {
        margin-bottom: 64px;
    }
}

.css-1ytvd95 {
    margin: 0px 0px 32px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 3.75rem;
    letter-spacing: -0.00833em;
    color: rgb(30, 41, 59);
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 0px) {
    .css-1ytvd95 {
        font-size: 2rem;
    }
}

@media (min-width: 600px) {
    .css-1ytvd95 {
        font-size: 2.5rem;
    }
}

@media (min-width: 900px) {
    .css-1ytvd95 {
        font-size: 3rem;
    }
}

.css-1aukcg3 {
    --Grid-columns: 12;
    --Grid-columnSpacing: 24px;
    --Grid-rowSpacing: 24px;
    flex-flow: wrap;
    min-width: 0px;
    box-sizing: border-box;
    display: flex;
    gap: var(--Grid-rowSpacing) var(--Grid-columnSpacing);
}

.css-1aukcg3 > * {
    --Grid-parent-columns: 12;
}

.css-1aukcg3 > * {
    --Grid-parent-columnSpacing: 24px;
}

@media (min-width: 900px) {
    .css-1aukcg3 {
        --Grid-columnSpacing: 32px;
    }

    .css-1aukcg3 > * {
        --Grid-parent-columnSpacing: 32px;
    }
}

.css-1aukcg3 > * {
    --Grid-parent-rowSpacing: 24px;
}

@media (min-width: 900px) {
    .css-1aukcg3 {
        --Grid-rowSpacing: 32px;
    }

    .css-1aukcg3 > * {
        --Grid-parent-rowSpacing: 32px;
    }
}

.css-qoghzg {
    -webkit-box-flex: 0;
    flex-grow: 0;
    flex-basis: auto;
    width: calc(100% * 12 / var(--Grid-parent-columns) - (var(--Grid-parent-columns) - 12) * (var(--Grid-parent-columnSpacing) / var(--Grid-parent-columns)));
    min-width: 0px;
    box-sizing: border-box;
}

@media (min-width: 600px) {
    .css-qoghzg {
        -webkit-box-flex: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: calc(100% * 6 / var(--Grid-parent-columns) - (var(--Grid-parent-columns) - 6) * (var(--Grid-parent-columnSpacing) / var(--Grid-parent-columns)));
    }
}

@media (min-width: 900px) {
    .css-qoghzg {
        -webkit-box-flex: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: calc(100% * 3 / var(--Grid-parent-columns) - (var(--Grid-parent-columns) - 3) * (var(--Grid-parent-columnSpacing) / var(--Grid-parent-columns)));
    }
}

.css-l5f2ac {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
}

.css-19ft3di {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

@media (min-width: 0px) {
    .css-19ft3di {
        width: 80px;
        height: 80px;
    }
}

@media (min-width: 900px) {
    .css-19ft3di {
        width: 100px;
        height: 100px;
    }
}

.css-1n6b3eq {
    width: 100%;
    height: 100%;
    background-color: rgb(241, 245, 249);
    border-radius: 50%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.css-hyoqt8 {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.0075em;
    line-height: 1.3;
    color: rgb(100, 116, 139);
    font-weight: 600;
}

.css-rkcdjd {
    margin: 0px 0px 16px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0em;
    color: rgb(30, 41, 59);
    font-weight: 600;
    line-height: 1.3;
}

@media (min-width: 0px) {
    .css-rkcdjd {
        font-size: 1.125rem;
    }
}

@media (min-width: 900px) {
    .css-rkcdjd {
        font-size: 1.25rem;
    }
}

.css-a9i56j {
    margin: 0px auto;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.00938em;
    color: rgb(100, 116, 139);
    line-height: 1.6;
    max-width: 280px;
}

@media (min-width: 0px) {
    .css-a9i56j {
        font-size: 0.875rem;
    }
}

@media (min-width: 900px) {
    .css-a9i56j {
        font-size: 1rem;
    }
}

.css-1vngl3d {
    background-color: rgb(255, 255, 255);
    position: relative;
    overflow: hidden;
}

@media (min-width: 0px) {
    .css-1vngl3d {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

@media (min-width: 900px) {
    .css-1vngl3d {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

@media (min-width: 0px) {
    .css-hiy6kh {
        max-width: 100%;
    }
}

@media (min-width: 900px) {
    .css-hiy6kh {
        max-width: 480px;
    }
}

.css-1a83ksn {
    margin: 0px 0px 48px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.00938em;
    color: rgb(100, 116, 139);
    line-height: 1.6;
}

@media (min-width: 0px) {
    .css-1a83ksn {
        font-size: 1rem;
    }
}

@media (min-width: 900px) {
    .css-1a83ksn {
        font-size: 1.125rem;
    }
}

.css-1xmimhh {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    position: relative;
}

@media (min-width: 0px) {
    .css-1xmimhh {
        height: 300px;
        margin-left: 0px;
    }
}

@media (min-width: 900px) {
    .css-1xmimhh {
        height: 400px;
        margin-left: 32px;
    }
}

.css-1e24cbl {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 500px;
    border-radius: 12px;
}

.css-uel2lh {
    background: linear-gradient(135deg, rgb(248, 250, 252) 0%, rgb(226, 232, 240) 100%);
}

.css-1kyexwi {
    background-color: transparent;
    position: relative;
}

@media (min-width: 0px) {
    .css-1kyexwi {
        padding-top: 64px;
        padding-bottom: 64px;
    }
}

@media (min-width: 900px) {
    .css-1kyexwi {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

.css-1060qc8 {
    width: 100%;
    margin-left: auto;
    box-sizing: border-box;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    max-width: 800px;
}

@media (min-width: 600px) {
    .css-1060qc8 {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.css-9whsf3 {
    max-width: 100%;
}

.css-ky36dd {
    position: relative;
    transition: margin 150ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow-anchor: none;
    margin-bottom: 16px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 8px;
    border-radius: 12px !important;
}

.css-ky36dd::before {
    position: absolute;
    left: 0px;
    top: -1px;
    right: 0px;
    height: 1px;
    content: "";
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.12);
    transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1), background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.css-ky36dd:first-of-type::before {
    display: none;
}

.css-ky36dd.Mui-expanded::before {
    opacity: 0;
}

.css-ky36dd.Mui-expanded:first-of-type {
    margin-top: 0px;
}

.css-ky36dd.Mui-expanded:last-of-type {
    margin-bottom: 0px;
}

.css-ky36dd.Mui-expanded + .css-ky36dd.Mui-expanded::before {
    display: none;
}

.css-ky36dd.Mui-disabled {
    background-color: rgba(0, 0, 0, 0.12);
}

.css-ky36dd:first-of-type {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.css-ky36dd:last-of-type {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

@supports (-ms-ime-align: auto) {
    .css-ky36dd:last-of-type {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
}

.css-ky36dd.Mui-expanded {
    margin: 16px 0px;
}

.css-ky36dd::before {
    display: none;
}

.css-ky36dd.Mui-expanded {
    margin: 0px 0px 16px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 16px;
}

.css-1e7cug6 {
    color: rgba(0, 0, 0, 0.87);
    background-image: var(--Paper-overlay);
    position: relative;
    transition: margin 150ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow-anchor: none;
    margin-bottom: 16px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(226, 232, 240);
    box-shadow: rgba(0, 0, 0, 0.04) 0px 2px 8px;
    border-radius: 12px !important;
}

.css-1e7cug6::before {
    position: absolute;
    left: 0px;
    top: -1px;
    right: 0px;
    height: 1px;
    content: "";
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.12);
    transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1), background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.css-1e7cug6:first-of-type::before {
    display: none;
}

.css-1e7cug6.Mui-expanded::before {
    opacity: 0;
}

.css-1e7cug6.Mui-expanded:first-of-type {
    margin-top: 0px;
}

.css-1e7cug6.Mui-expanded:last-of-type {
    margin-bottom: 0px;
}

.css-1e7cug6.Mui-expanded + .css-1e7cug6.Mui-expanded::before {
    display: none;
}

.css-1e7cug6.Mui-disabled {
    background-color: rgba(0, 0, 0, 0.12);
}

.css-1e7cug6:first-of-type {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.css-1e7cug6:last-of-type {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

@supports (-ms-ime-align: auto) {
    .css-1e7cug6:last-of-type {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }
}

.css-1e7cug6.Mui-expanded {
    margin: 16px 0px;
}

.css-1e7cug6::before {
    display: none;
}

.css-1e7cug6.Mui-expanded {
    margin: 0px 0px 16px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 16px;
}

.css-wnfue5 {
    all: unset;
}

.css-4kqvox {
    display: flex;
    width: 100%;
    padding: 16px;
    transition: min-height 150ms cubic-bezier(0.4, 0, 0.2, 1), background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    min-height: auto;
}

.css-4kqvox.Mui-focusVisible {
    background-color: rgba(0, 0, 0, 0.12);
}

.css-4kqvox.Mui-disabled {
    opacity: 0.38;
}

.css-4kqvox:hover:not(.Mui-disabled) {
    cursor: pointer;
}

.css-4kqvox.Mui-expanded {
    min-height: 64px;
}

@media (min-width: 0px) {
    .css-4kqvox {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 900px) {
    .css-4kqvox {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.css-4kqvox .MuiAccordionSummary-content {
    margin: 0px;
    padding-right: 16px;
}

.css-4kqvox:hover {
    background-color: rgb(248, 250, 252);
}

.css-1a7f8wz {
    -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;
    outline: 0px;
    border: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    color: inherit;
    display: flex;
    width: 100%;
    padding: 16px;
    transition: min-height 150ms cubic-bezier(0.4, 0, 0.2, 1), background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    min-height: auto;
}

.css-1a7f8wz.Mui-disabled {
    pointer-events: none;
    cursor: default;
}

@media print {
    .css-1a7f8wz {
        print-color-adjust: exact;
    }
}

.css-1a7f8wz.Mui-focusVisible {
    background-color: rgba(0, 0, 0, 0.12);
}

.css-1a7f8wz.Mui-disabled {
    opacity: 0.38;
}

.css-1a7f8wz:hover:not(.Mui-disabled) {
    cursor: pointer;
}

.css-1a7f8wz.Mui-expanded {
    min-height: 64px;
}

@media (min-width: 0px) {
    .css-1a7f8wz {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 900px) {
    .css-1a7f8wz {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.css-1a7f8wz .MuiAccordionSummary-content {
    margin: 0px;
    padding-right: 16px;
}

.css-1a7f8wz:hover {
    background-color: rgb(248, 250, 252);
}

.css-1b8uc0m {
    display: flex;
    text-align: start;
    -webkit-box-flex: 1;
    flex-grow: 1;
    margin: 12px 0px;
    transition: margin 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.css-1b8uc0m.Mui-expanded {
    margin: 20px 0px;
}

.css-1px8yjk {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.0075em;
    color: rgb(30, 41, 59);
    font-weight: 600;
    line-height: 1.4;
}

@media (min-width: 0px) {
    .css-1px8yjk {
        font-size: 1rem;
    }
}

@media (min-width: 900px) {
    .css-1px8yjk {
        font-size: 1.125rem;
    }
}

.css-f8wb7g {
    display: flex;
    color: rgba(0, 0, 0, 0.54);
    transform: rotate(0deg);
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.css-f8wb7g.Mui-expanded {
    transform: rotate(180deg);
}

.css-njrkdg {
    background-color: rgb(241, 245, 249);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    transition: 0.3s;
    transform: rotate(0deg);
}

.css-ycyaox {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    flex-shrink: 0;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
    fill: currentcolor;
    color: rgb(100, 116, 139);
    font-size: 1.25rem;
}

.css-abqyn {
    height: 0px;
    overflow: hidden;
    transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.css-15830to {
    display: flex;
    width: 100%;
}

.css-9vd5ud {
    width: 100%;
}

.css-3dwhcx {
    padding: 0px 16px 24px;
}

@media (min-width: 0px) {
    .css-3dwhcx {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 900px) {
    .css-3dwhcx {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.css-g0eki4 {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.00938em;
    color: rgb(100, 116, 139);
    line-height: 1.6;
}

@media (min-width: 0px) {
    .css-g0eki4 {
        font-size: 0.875rem;
    }
}

@media (min-width: 900px) {
    .css-g0eki4 {
        font-size: 1rem;
    }
}

.css-lyv5an {
    background: transparent;
    color: rgba(0, 0, 0, 0.6);
    padding: 32px 0px;
    margin-top: auto;
}

.css-1qnxzd9 {
    background: transparent;
    color: rgba(0, 0, 0, 0.6);
    padding: 32px 0px;
    margin-top: auto;
}

.css-9wvnva {
    width: 100%;
    margin-left: auto;
    box-sizing: border-box;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 600px) {
    .css-9wvnva {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 1200px) {
    .css-9wvnva {
        max-width: 1200px;
    }
}

.css-1pjwakg {
    margin: 16px 0px;
    flex-shrink: 0;
    border-width: 0px 0px thin;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.12);
}

.css-1dzrtg8 {
    display: flex;
}

@media (min-width: 0px) {
    .css-1dzrtg8 {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 32px;
    }
}

@media (min-width: 900px) {
    .css-1dzrtg8 {
        flex-direction: row;
        gap: 32px;
        margin-bottom: 16px;
    }
}

@media (min-width: 0px) {
    .css-fz7a1v {
        flex: 1 1 0%;
    }
}

@media (min-width: 900px) {
    .css-fz7a1v {
        flex: 0 0 auto;
        min-width: 200px;
    }
}

.css-8kfknb {
    height: 40px;
}

@media (min-width: 0px) {
    .css-1ozjt1n {
        flex: 1 1 0%;
    }
}

@media (min-width: 900px) {
    .css-1ozjt1n {
        flex: 0 0 auto;
        min-width: 250px;
    }
}

.css-ec33c8 {
    margin: 0px 0px 16px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.0075em;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.87);
    font-weight: 600;
}

.css-1ov46kg {
    display: flex;
    flex-direction: column;
}

.css-1ov46kg > :not(style):not(style) {
    margin: 0px;
}

.css-1ov46kg > :not(style) ~ :not(style) {
    margin-top: 16px;
}

.css-3yehj1 {
    color: rgba(0, 0, 0, 0.6);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.875rem;
}

.css-3yehj1:hover {
    color: rgb(0, 0, 0);
}

.css-14cdlnb {
    --Link-underlineColor: rgba(0, 0, 0, 0.4);
    color: rgba(0, 0, 0, 0.6);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.875rem;
}

.css-14cdlnb:hover {
    text-decoration-color: inherit;
}

.css-14cdlnb:hover {
    color: rgb(0, 0, 0);
}

.css-oxf4ig {
    margin: 0px;
    font-style: inherit;
    font-variant: inherit;
    font-weight: inherit;
    font-stretch: inherit;
    font-family: inherit;
    font-optical-sizing: inherit;
    font-size-adjust: inherit;
    font-kerning: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    --Link-underlineColor: rgba(0, 0, 0, 0.4);
    color: rgba(0, 0, 0, 0.6);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.875rem;
}

.css-oxf4ig:hover {
    text-decoration-color: inherit;
}

.css-oxf4ig:hover {
    color: rgb(0, 0, 0);
}

@media (min-width: 0px) {
    .css-bipww7 {
        flex: 1 1 0%;
    }
}

@media (min-width: 900px) {
    .css-bipww7 {
        flex: 0 0 auto;
        min-width: 300px;
    }
}

.css-pb4y8c {
    display: flex;
    flex-direction: column;
}

.css-pb4y8c > :not(style):not(style) {
    margin: 0px;
}

.css-pb4y8c > :not(style) ~ :not(style) {
    margin-top: 12px;
}

.css-fm4r4t {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.css-kczits {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    flex-shrink: 0;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
    fill: currentcolor;
    font-size: 1.1rem;
    margin-top: 1.6px;
    color: rgba(0, 0, 0, 0.6);
}

.css-1nf0shr {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.01071em;
    font-size: 0.875rem;
    line-height: 1.4;
}

.css-1vdrrz4 {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    flex-shrink: 0;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
    fill: currentcolor;
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
}

.css-1ywm1ei {
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.875rem;
    color: rgb(15, 23, 42);
}

.css-1ywm1ei:hover {
    color: rgb(0, 0, 0);
}

.css-1ywm1ei:hover {
    color: rgb(55, 65, 81);
}

.css-1upy14c {
    --Link-underlineColor: rgba(0, 0, 0, 0.4);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.875rem;
    color: rgb(15, 23, 42);
}

.css-1upy14c:hover {
    text-decoration-color: inherit;
}

.css-1upy14c:hover {
    color: rgb(0, 0, 0);
}

.css-1upy14c:hover {
    color: rgb(55, 65, 81);
}

.css-1gjwup2 {
    margin: 0px;
    font-style: inherit;
    font-variant: inherit;
    font-weight: inherit;
    font-stretch: inherit;
    font-family: inherit;
    font-optical-sizing: inherit;
    font-size-adjust: inherit;
    font-kerning: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    --Link-underlineColor: rgba(0, 0, 0, 0.4);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.875rem;
    color: rgb(15, 23, 42);
}

.css-1gjwup2:hover {
    text-decoration-color: inherit;
}

.css-1gjwup2:hover {
    color: rgb(0, 0, 0);
}

.css-1gjwup2:hover {
    color: rgb(55, 65, 81);
}

@media (min-width: 0px) {
    .css-14v0ocj {
        margin-top: 32px;
    }
}

@media (min-width: 900px) {
    .css-14v0ocj {
        margin-top: 16px;
    }
}

.css-pvgo2o {
    font-size: 0.8rem;
    line-height: 1.4;
}

.css-44jkby {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.00938em;
    font-size: 0.8rem;
    line-height: 1.4;
}

@media print {
    .css-depviu {
        position: absolute !important;
    }
}

.css-1o9zlj7 {
    position: fixed;
    inset: 0px;
    visibility: hidden;
    z-index: 1200;
}

@media (min-width: 0px) {
    .css-1o9zlj7 {
        display: block;
    }
}

@media (min-width: 900px) {
    .css-1o9zlj7 {
        display: none;
    }
}

.css-1o9zlj7 .MuiDrawer-paper {
    box-sizing: border-box;
    width: 250px;
}

.css-lw0xdp {
    z-index: -1;
}

.css-14dl35y {
    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-eb32fy {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1 0 auto;
    z-index: 1200;
    position: fixed;
    top: 0px;
    outline: 0px;
    right: 0px;
}

.css-y50yd7 {
    background-color: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 0.87);
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--Paper-shadow);
    background-image: var(--Paper-overlay);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1 0 auto;
    z-index: 1200;
    position: fixed;
    top: 0px;
    outline: 0px;
    right: 0px;
}

.css-1u2gdj3 {
    text-align: center;
    padding: 16px;
}

.css-1wduhak {
    list-style: none;
    margin: 0px;
    padding: 8px 0px;
    position: relative;
}

.css-1ohqk82 {
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
}

.css-y0y4my {
    display: flex;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    min-width: 0px;
    box-sizing: border-box;
    padding: 8px 16px;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.css-y0y4my:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.04);
}

@media (hover: none) {
    .css-y0y4my:hover {
        background-color: transparent;
    }
}

.css-y0y4my.Mui-selected {
    background-color: rgba(0, 0, 0, 0.08);
}

.css-y0y4my.Mui-selected.Mui-focusVisible {
    background-color: rgba(0, 0, 0, 0.2);
}

.css-y0y4my.Mui-selected:hover {
    background-color: rgba(0, 0, 0, 0.12);
}

@media (hover: none) {
    .css-y0y4my.Mui-selected:hover {
        background-color: rgba(0, 0, 0, 0.08);
    }
}

.css-y0y4my.Mui-focusVisible {
    background-color: rgba(0, 0, 0, 0.12);
}

.css-y0y4my.Mui-disabled {
    opacity: 0.38;
}

.css-g55hxg {
    -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;
    display: flex;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    min-width: 0px;
    box-sizing: border-box;
    padding: 8px 16px;
    transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.css-g55hxg.Mui-disabled {
    pointer-events: none;
    cursor: default;
}

@media print {
    .css-g55hxg {
        print-color-adjust: exact;
    }
}

.css-g55hxg:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.04);
}

@media (hover: none) {
    .css-g55hxg:hover {
        background-color: transparent;
    }
}

.css-g55hxg.Mui-selected {
    background-color: rgba(0, 0, 0, 0.08);
}

.css-g55hxg.Mui-selected.Mui-focusVisible {
    background-color: rgba(0, 0, 0, 0.2);
}

.css-g55hxg.Mui-selected:hover {
    background-color: rgba(0, 0, 0, 0.12);
}

@media (hover: none) {
    .css-g55hxg.Mui-selected:hover {
        background-color: rgba(0, 0, 0, 0.08);
    }
}

.css-g55hxg.Mui-focusVisible {
    background-color: rgba(0, 0, 0, 0.12);
}

.css-g55hxg.Mui-disabled {
    opacity: 0.38;
}

.css-14rdsw0 {
    flex: 1 1 auto;
    min-width: 0px;
    margin-top: 4px;
    margin-bottom: 4px;
}

.MuiTypography-root:where(.css-14rdsw0 .MuiListItemText-primary) {
    display: block;
}

.MuiTypography-root:where(.css-14rdsw0 .MuiListItemText-secondary) {
    display: block;
}

.css-n4oace {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 0.00938em;
}

.css-1wv770k {
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    margin-top: 16px;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
}

.css-1aecmc7 {
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    margin-top: 16px;
}

.css-134eh3y {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    border-radius: 4px;
    padding: 5px 15px;
    border: 1px solid rgb(22, 119, 255);
    background-color: var(--variant-outlinedBg);
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    width: 100%;
    text-transform: none;
    transition: 0.2s ease-in-out;
    box-shadow: none;
    color: rgb(22, 119, 255);
}

.css-134eh3y:hover {
    text-decoration: none;
}

.css-134eh3y.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-134eh3y.Mui-disabled {
    border: 1px solid rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .css-134eh3y:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-134eh3y.MuiButton-loading {
    color: transparent;
}

.css-134eh3y:hover {
    background-color: rgb(255, 255, 255);
    border-color: rgb(177, 215, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
    transform: translateY(-1px);
}

.css-134eh3y:focus-visible {
    background-color: transparent;
    outline: none;
}

.css-134eh3y:hover {
    color: rgb(22, 119, 255);
}

.css-1c20e47 {
    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;
    outline: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    border-radius: 4px;
    padding: 5px 15px;
    border: 1px solid rgb(22, 119, 255);
    background-color: var(--variant-outlinedBg);
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    width: 100%;
    text-transform: none;
    transition: 0.2s ease-in-out;
    box-shadow: none;
    color: rgb(22, 119, 255);
}

.css-1c20e47.Mui-disabled {
    pointer-events: none;
    cursor: default;
}

@media print {
    .css-1c20e47 {
        print-color-adjust: exact;
    }
}

.css-1c20e47:hover {
    text-decoration: none;
}

.css-1c20e47.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-1c20e47.Mui-disabled {
    border: 1px solid rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .css-1c20e47:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-1c20e47.MuiButton-loading {
    color: transparent;
}

.css-1c20e47:hover {
    background-color: rgb(255, 255, 255);
    border-color: rgb(177, 215, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 8px;
    transform: translateY(-1px);
}

.css-1c20e47:focus-visible {
    background-color: transparent;
    outline: none;
}

.css-1c20e47:hover {
    color: rgb(22, 119, 255);
}

.css-7hiuzh {
    display: flex;
    -webkit-box-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    margin-top: 8px;
}

.css-1lq39gu {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    padding: 6px 16px;
    border: 0px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    width: 100%;
    text-transform: none;
    transition: 0.2s ease-in-out;
    color: rgb(255, 255, 255);
    background-color: rgb(22, 119, 255);
}

.css-1lq39gu:hover {
    text-decoration: none;
}

.css-1lq39gu.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-1lq39gu:hover {
    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) {
    .css-1lq39gu:hover {
        box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    }
}

.css-1lq39gu: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;
}

.css-1lq39gu.Mui-focusVisible {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px;
}

.css-1lq39gu.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .css-1lq39gu:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-1lq39gu.MuiButton-loading {
    color: transparent;
}

.css-1lq39gu:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 70, 213);
}

.css-1g11idv {
    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;
    outline: 0px;
    margin: 0px;
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
    appearance: none;
    text-decoration: none;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.75;
    letter-spacing: 0.02857em;
    min-width: 64px;
    padding: 6px 16px;
    border: 0px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    --variant-textColor: #000000;
    --variant-outlinedColor: #000000;
    --variant-outlinedBorder: rgba(0, 0, 0, 0.5);
    --variant-containedColor: #fff;
    --variant-containedBg: #000000;
    width: 100%;
    text-transform: none;
    transition: 0.2s ease-in-out;
    color: rgb(255, 255, 255);
    background-color: rgb(22, 119, 255);
}

.css-1g11idv.Mui-disabled {
    pointer-events: none;
    cursor: default;
}

@media print {
    .css-1g11idv {
        print-color-adjust: exact;
    }
}

.css-1g11idv:hover {
    text-decoration: none;
}

.css-1g11idv.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-1g11idv:hover {
    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) {
    .css-1g11idv:hover {
        box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    }
}

.css-1g11idv: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;
}

.css-1g11idv.Mui-focusVisible {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 5px -1px, rgba(0, 0, 0, 0.14) 0px 6px 10px 0px, rgba(0, 0, 0, 0.12) 0px 1px 18px 0px;
}

.css-1g11idv.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .css-1g11idv:hover {
        --variant-containedBg: rgb(0, 0, 0);
        --variant-textBg: rgba(0, 0, 0, 0.04);
        --variant-outlinedBorder: #000000;
        --variant-outlinedBg: rgba(0, 0, 0, 0.04);
    }
}

.css-1g11idv.MuiButton-loading {
    color: transparent;
}

.css-1g11idv:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 70, 213);
}

.css-1jpcp03 {
    width: 100%;
    height: 100%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

.css-1pfhyq4 {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.css-r938or {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.css-y91wn9 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-box-flex: 1;
    flex-grow: 1;
}

body {
    overflow-x: hidden;
}
