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-1wc8hg8 {
    background-image: url("/home/about/about-s1-hero.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

@media (min-width: 0px) {
    .css-1wc8hg8 {
        padding-top: 64px;
        padding-bottom: 64px;
        min-height: 60vh;
    }
}

@media (min-width: 900px) {
    .css-1wc8hg8 {
        padding-top: 96px;
        padding-bottom: 96px;
        min-height: 70vh;
    }
}

.css-1wc8hg8::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.css-1wc8hg8 > * {
    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-1kp17i {
    max-width: 800px;
}

@media (min-width: 0px) {
    .css-1kp17i {
        text-align: left;
        margin-left: 0px;
        margin-right: 0px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 900px) {
    .css-1kp17i {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0px;
        padding-right: 0px;
    }
}

.css-1ke0tkb {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

@media (min-width: 0px) {
    .css-1ke0tkb {
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
}

@media (min-width: 900px) {
    .css-1ke0tkb {
        -webkit-box-pack: center;
        justify-content: center;
    }
}

.css-akcpbl {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgb(16, 185, 129);
    animation: 2s ease 0s infinite normal none running pulse;
}

@-webkit-keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.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-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-62e42a {
    margin: 0px auto 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: 600px;
}

@media (min-width: 0px) {
    .css-62e42a {
        font-size: 1.125rem;
    }
}

@media (min-width: 900px) {
    .css-62e42a {
        font-size: 1.25rem;
    }
}

.css-1nrtlr4 {
    background: rgb(255, 255, 255);
    position: relative;
}

@media (min-width: 0px) {
    .css-1nrtlr4 {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

@media (min-width: 900px) {
    .css-1nrtlr4 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.css-yaghvx {
    --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);
    align-items: flex-start;
}

.css-yaghvx > * {
    --Grid-parent-columns: 12;
}

.css-yaghvx > * {
    --Grid-parent-columnSpacing: 32px;
}

@media (min-width: 900px) {
    .css-yaghvx {
        --Grid-columnSpacing: 64px;
    }

    .css-yaghvx > * {
        --Grid-parent-columnSpacing: 64px;
    }
}

.css-yaghvx > * {
    --Grid-parent-rowSpacing: 32px;
}

@media (min-width: 900px) {
    .css-yaghvx {
        --Grid-rowSpacing: 64px;
    }

    .css-yaghvx > * {
        --Grid-parent-rowSpacing: 64px;
    }
}

.css-19ynww8 {
    -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-19ynww8 {
        -webkit-box-flex: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: calc(100% * 5 / var(--Grid-parent-columns) - (var(--Grid-parent-columns) - 5) * (var(--Grid-parent-columnSpacing) / var(--Grid-parent-columns)));
    }
}

.css-151qilg {
    position: relative;
    width: fit-content;
}

@media (min-width: 0px) {
    .css-151qilg {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 64px;
    }
}

@media (min-width: 900px) {
    .css-151qilg {
        margin-left: 0px;
        margin-right: 0px;
        margin-bottom: 0px;
    }
}

.css-1s4e9pa {
    width: 350px;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 8px 32px;
    background: rgb(241, 245, 249);
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.css-6jrdpz {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.css-1cbfi1v {
    position: absolute;
    bottom: -80px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    padding: 24px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 16px;
    border: 1px solid rgb(226, 232, 240);
}

.css-1ytl3oc {
    margin: 0px 0px 16px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.00938em;
    color: rgb(30, 41, 59);
    font-style: italic;
    line-height: 1.6;
    font-size: 0.95rem;
}

.css-eixabi {
    margin: 0px 0px 4px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: 0.0075em;
    line-height: 1.3;
    color: rgb(30, 41, 59);
    font-weight: 600;
    font-size: 1rem;
}

.css-1iea6rn {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    color: rgb(100, 116, 139);
    font-size: 0.875rem;
}

.css-1tn0d4a {
    -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-1tn0d4a {
        -webkit-box-flex: 0;
        flex-grow: 0;
        flex-basis: auto;
        width: calc(100% * 7 / var(--Grid-parent-columns) - (var(--Grid-parent-columns) - 7) * (var(--Grid-parent-columnSpacing) / var(--Grid-parent-columns)));
    }
}

@media (min-width: 0px) {
    .css-19z5pre {
        margin-top: 32px;
    }
}

@media (min-width: 900px) {
    .css-19z5pre {
        margin-top: 0px;
    }
}

.css-1n1sk1q {
    margin: 0px 0px 32px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 3.75rem;
    line-height: 1.2;
    letter-spacing: -0.00833em;
    color: rgb(30, 41, 59);
    font-weight: 700;
}

@media (min-width: 0px) {
    .css-1n1sk1q {
        font-size: 2rem;
        text-align: center;
    }
}

@media (min-width: 900px) {
    .css-1n1sk1q {
        font-size: 2.5rem;
        text-align: left;
    }
}

.css-13kuilq {
    margin: 0px 0px 32px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.00938em;
    color: rgb(100, 116, 139);
    font-size: 1.125rem;
    line-height: 1.7;
}

.css-y67e4 {
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0.00938em;
    color: rgb(100, 116, 139);
    font-size: 1.125rem;
    line-height: 1.7;
}

.css-uel2lh {
    background: linear-gradient(135deg, rgb(248, 250, 252) 0%, rgb(226, 232, 240) 100%);
}

.css-kwtt2q {
    position: relative;
}

@media (min-width: 0px) {
    .css-kwtt2q {
        padding-top: 48px;
        padding-bottom: 48px;
    }
}

@media (min-width: 900px) {
    .css-kwtt2q {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.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)));
    }
}

.css-8laiyc {
    margin: 0px 0px 32px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 3.75rem;
    line-height: 1.2;
    letter-spacing: -0.00833em;
    color: rgb(30, 41, 59);
    font-weight: 700;
}

@media (min-width: 0px) {
    .css-8laiyc {
        font-size: 2rem;
    }
}

@media (min-width: 900px) {
    .css-8laiyc {
        font-size: 2.5rem;
    }
}

.css-5nrjn8 {
    width: 100%;
    max-width: 464px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 16px;
    border: 1px solid rgb(226, 232, 240);
}

@media (min-width: 0px) {
    .css-5nrjn8 {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 900px) {
    .css-5nrjn8 {
        margin-left: 0px;
        margin-right: 0px;
    }
}

.css-c6rank {
    width: 100%;
    height: auto;
    display: block;
}

.css-vehq91 {
    background: white;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 16px;
    border: 1px solid rgb(226, 232, 240);
}

@media (min-width: 0px) {
    .css-vehq91 {
        padding: 24px;
    }
}

@media (min-width: 900px) {
    .css-vehq91 {
        padding: 32px;
    }
}

.css-8fhiac {
    margin: 0px 0px 16px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.167;
    letter-spacing: 0em;
    color: rgb(30, 41, 59);
    font-size: 1.5rem;
    font-weight: 600;
}

.css-1to5vs1 {
    margin: 0px 0px 32px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.01071em;
    color: rgb(100, 116, 139);
    line-height: 1.6;
}

.css-177xvbk {
    --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-177xvbk > * {
    --Grid-parent-columns: 12;
}

.css-177xvbk > * {
    --Grid-parent-columnSpacing: 24px;
}

.css-177xvbk > * {
    --Grid-parent-rowSpacing: 24px;
}

.css-lscdn3 {
    -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-lscdn3 {
        -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)));
    }
}

.css-1342zxd .MuiOutlinedInput-root {
    border-radius: 8px;
}

.css-ca2aej {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    min-width: 0px;
    padding: 0px;
    margin: 0px;
    border: 0px;
    vertical-align: top;
    width: 100%;
}

.css-ca2aej .MuiOutlinedInput-root {
    border-radius: 8px;
}

.css-aqpfg7 {
    display: block;
    transform-origin: left top;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: color 200ms cubic-bezier(0, 0, 0.2, 1), transform 200ms cubic-bezier(0, 0, 0.2, 1), max-width 200ms cubic-bezier(0, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
    transform: translate(14px, 16px) scale(1);
    max-width: calc(100% - 24px);
}

.css-6ibjzl {
    color: rgba(0, 0, 0, 0.6);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.4375em;
    letter-spacing: 0.00938em;
    padding: 0px;
    display: block;
    transform-origin: left top;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: color 200ms cubic-bezier(0, 0, 0.2, 1), transform 200ms cubic-bezier(0, 0, 0.2, 1), max-width 200ms cubic-bezier(0, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
    transform: translate(14px, 16px) scale(1);
    max-width: calc(100% - 24px);
}

.css-6ibjzl.Mui-focused {
    color: rgb(0, 0, 0);
}

.css-6ibjzl.Mui-disabled {
    color: rgba(0, 0, 0, 0.38);
}

.css-6ibjzl.Mui-error {
    color: rgb(211, 47, 47);
}

.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-81qg8w {
    float: unset;
    width: auto;
    overflow: hidden;
    display: block;
    padding: 0px;
    height: 11px;
    font-size: 0.75em;
    visibility: hidden;
    max-width: 0.01px;
    transition: max-width 50ms cubic-bezier(0, 0, 0.2, 1);
    white-space: nowrap;
}

.css-81qg8w > span {
    padding-left: 5px;
    padding-right: 5px;
    display: inline-block;
    opacity: 0;
    visibility: visible;
}

.css-j5005a {
    -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;
}

.css-1imi2lg {
    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;
    padding: 16.5px 14px;
}

.css-1imi2lg.Mui-disabled {
    color: rgba(0, 0, 0, 0.38);
    cursor: default;
}

.css-1imi2lg:hover .MuiOutlinedInput-notchedOutline {
    border-color: rgba(0, 0, 0, 0.87);
}

@media (hover: none) {
    .css-1imi2lg:hover .MuiOutlinedInput-notchedOutline {
        border-color: rgba(0, 0, 0, 0.23);
    }
}

.css-1imi2lg.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-width: 2px;
}

.css-1imi2lg.Mui-focused .MuiOutlinedInput-notchedOutline {
    border-color: rgb(0, 0, 0);
}

.css-1imi2lg.Mui-error .MuiOutlinedInput-notchedOutline {
    border-color: rgb(211, 47, 47);
}

.css-1imi2lg.Mui-disabled .MuiOutlinedInput-notchedOutline {
    border-color: rgba(0, 0, 0, 0.26);
}

.css-s63k3s {
    font: inherit;
    letter-spacing: inherit;
    color: currentcolor;
    border: 0px;
    box-sizing: content-box;
    background: none;
    margin: 0px;
    -webkit-tap-highlight-color: transparent;
    display: block;
    min-width: 0px;
    width: 100%;
    animation-name: mui-auto-fill-cancel;
    animation-duration: 10ms;
    height: auto;
    resize: none;
    padding: 0px;
}

.css-s63k3s::-webkit-input-placeholder {
    color: currentcolor;
    opacity: 0.42;
    transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.css-s63k3s:focus {
    outline: 0px;
}

.css-s63k3s:invalid {
    box-shadow: none;
}

.css-s63k3s::-webkit-search-decoration {
    appearance: none;
}

label[data-shrink="false"] + .MuiInputBase-formControl .css-s63k3s::-webkit-input-placeholder {
    opacity: 0 !important;
}

label[data-shrink="false"] + .MuiInputBase-formControl .css-s63k3s:focus::-webkit-input-placeholder {
    opacity: 0.42;
}

.css-s63k3s.Mui-disabled {
    opacity: 1;
    -webkit-text-fill-color: rgba(0, 0, 0, 0.38);
}

.css-s63k3s:-webkit-autofill {
    animation-duration: 5000s;
    animation-name: mui-auto-fill;
}

.css-s63k3s:-webkit-autofill {
    border-radius: inherit;
}

.css-8atqhb {
    width: 100%;
}

.css-1mkymft {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    display: flex;
    padding: 6px 16px;
    color: rgb(102, 60, 0);
    background-color: rgb(255, 244, 229);
}

.css-1mkymft .MuiAlert-icon {
    color: rgb(237, 108, 2);
}

.css-mlts1b {
    transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    box-shadow: var(--Paper-shadow);
    background-image: var(--Paper-overlay);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.43;
    letter-spacing: 0.01071em;
    display: flex;
    padding: 6px 16px;
    color: rgb(102, 60, 0);
    background-color: rgb(255, 244, 229);
}

.css-mlts1b .MuiAlert-icon {
    color: rgb(237, 108, 2);
}

.css-131is6g {
    margin-right: 12px;
    padding: 7px 0px;
    display: flex;
    font-size: 22px;
    opacity: 0.9;
}

.css-1l6e05h {
    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: inherit;
}

.css-127h8j3 {
    padding: 8px 0px;
    min-width: 0px;
    overflow: auto;
}

.css-1spgqbt {
    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;
    width: 100%;
    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-1spgqbt:hover {
    text-decoration: none;
}

.css-1spgqbt.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-1spgqbt: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-1spgqbt: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-1spgqbt: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-1spgqbt.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-1spgqbt.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .css-1spgqbt: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-1spgqbt.MuiButton-loading {
    color: transparent;
}

.css-1spgqbt:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 70, 213);
}

.css-yjnvfu {
    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;
    width: 100%;
    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-yjnvfu.Mui-disabled {
    pointer-events: none;
    cursor: default;
}

@media print {
    .css-yjnvfu {
        print-color-adjust: exact;
    }
}

.css-yjnvfu:hover {
    text-decoration: none;
}

.css-yjnvfu.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
}

.css-yjnvfu: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-yjnvfu: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-yjnvfu: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-yjnvfu.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-yjnvfu.Mui-disabled {
    color: rgba(0, 0, 0, 0.26);
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.12);
}

@media (hover: hover) {
    .css-yjnvfu: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-yjnvfu.MuiButton-loading {
    color: transparent;
}

.css-yjnvfu:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 70, 213);
}

.css-zxkh6t {
    display: inherit;
    margin-right: -4px;
    margin-left: 8px;
}

.css-zxkh6t > :nth-of-type(1) {
    font-size: 22px;
}

.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);
}

body {
    overflow-x: hidden;
}
