@import"https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap";.mobile-wallet-button .wallet-adapter-button-start-icon {
    display: none
}

.mobile-header-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    background-color: #0a070e;
    color: #8a94ac;
    border-bottom: 2px solid #8a94ac;
    z-index: 1000;
    box-sizing: border-box
}

.mobile-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%
}

.mobile-nav-left .menu-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #8a94ac;
    transition: color .5s ease;
    cursor: pointer
}

.mobile-nav-left .menu-item:hover {
    color: #55599f;
    opacity: .85
}

.mobile-menu-icon {
    width: 30px;
    height: 30px;
    object-fit: contain
}

.mobile-nav-right {
    display: flex;
    align-items: center
}

.desktop-nav-right .custom-wallet-button {
    padding: 22px 10px;
    font-size: 14px;
    font-Weight: 600
}

.mobile-menu-list {
    position: fixed;
    top: 104px;
    left: 0;
    width: 280px;
    height: 100vh;
    background-color: #0a070e;
    border-right: 2px solid #0a070e;
    border-bottom: 2px solid #0a070e;
    display: flex;
    flex-direction: column;
    padding: 0;
    z-index: 999;
    transform: translate(-100%);
    opacity: 0;
    transition: transform .5s ease-in-out,opacity .5s ease-in-out;
    -webkit-transition: -webkit-transform .5s ease-in-out,opacity .5s ease-in-out
}

.mobile-menu-list.open {
    transform: translate(0);
    opacity: 1
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #cfd6e5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .5s ease,background-color .5s ease;
    gap: 8px
}

.mobile-menu-item.hovered {
    color: #55599f;
    opacity: .85;
    background-color: #ffffff0d
}

.mobile-menu-icon {
    width: 26px;
    height: 26px;
    object-fit: contain
}

.desktop-header-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: #0a070e;
    color: #8a94ac;
    z-index: 1000;
    padding: 0;
    box-sizing: border-box
}

.nav-buttons {
    display: flex;
    align-items: center;
    margin-right: 40%;
    gap: 10px;
    justify-content: flex-start
}

.desktop-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%
}

.desktop-nav-left .menu-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #8a94ac;
    transition: color .5s ease;
    cursor: pointer
}

.desktop-nav-left .menu-item:hover {
    color: #55599f;
    opacity: .85
}

.menu-icon {
    width: 27px;
    height: 27px;
    object-fit: contain
}

.desktop-nav-right {
    display: flex;
    align-items: center
}

.desktop-nav-right .custom-wallet-button {
    padding: 18px 8px;
    font-size: 13px;
    font-Weight: 600
}

.desktop-notice {
    width: 100%;
    background-color: #0a070e;
    color: #8a94ac;
    z-index: 999;
    box-sizing: border-box
}

.desktop-menu-list {
    position: fixed;
    top: 86px;
    left: 0;
    width: 290px;
    height: 100%;
    background-color: #0a070e;
    border-right: 2px solid #0a070e;
    border-bottom: 2px solid #0a070e;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    z-index: 999;
    transform: translate(-100%);
    opacity: 0;
    transition: transform .5s ease-in-out,opacity .5s ease-in-out;
    -webkit-transition: -webkit-transform .5s ease-in-out,opacity .5s ease-in-out
}

.desktop-menu-list.open {
    transform: translate(0);
    opacity: 1
}

.desktop-menu-item {
    display: flex;
    align-items: center;
    padding: 14px 22px 14px 32px;
    color: #cfd6e5;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color .5s ease,background-color .5s ease;
    gap: 10px
}

.desktop-menu-item.hovered {
    color: #55599f;
    opacity: .85;
    background-color: #ffffff0d
}

.desktop-menu-icon {
    width: 27px;
    height: 27px;
    object-fit: contain;
    transition: color .5s ease,background-color .5s ease
}

.app-footer {
    padding: 14px;
    text-align: center;
    height: 44px;
    background-color: "transparent";
    color: #cfd6e5;
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
    font-family: Segoe UI,sans-serif
}

@media (min-width: 768px) {
    .app-footer {
        margin-top:70px;
        margin-left: 255px;
        margin-bottom: 20px;
        max-width: "80%"
    }
}

html,body {
    margin: 0;
    padding: 0;
    background-color: "#0a070e"
}

.feature-box-wrapper {
    position: relative;
    width: 480px;
    border-radius: 12px;
    z-index: 1
}

.feature-box-wrapper:before {
    content: "";
    position: absolute;
    top: calc(-1 * var(--top-border-width, 6px));
    left: -2px;
    right: -2px;
    bottom: calc(-1 * var(--bottom-border-width, 2px));
    border-radius: 12px;
    background: linear-gradient(18deg,#a78bfa,#55599f);
    z-index: -1
}

@media (max-width: 768px) {
    .feature-box-wrapper {
        width:100%
    }
}

.home-background {
    position: relative
}

@media (min-width: 769px) and (max-width: 1300px) {
    .home-background:before {
        width:500px;
        height: 500px
    }
}

@media (min-width: 1301px) and (max-width: 1800px) {
    .home-background:before {
        width:650px;
        height: 650px
    }
}

@media (min-width: 1801px) {
    .home-background:before {
        width:800px;
        height: 800px
    }
}

._fieldGroup_ixrra_5 {
    margin-bottom: 16px
}

._inputBox_ixrra_13 {
    width: 100%;
    padding: 10px;
    background-color: #202a3c;
    color: #fff;
    border: 1px solid #36475b;
    border-radius: 8px;
    margin-top: 6px;
    margin-bottom: 12px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box
}

._toggleRow_ixrra_41 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 8px
}

._socialContainer_ixrra_57 {
    background: #0f0c12;
    padding: 16px;
    border-radius: 12px
}

.btn-unified {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #150e1e;
    background: linear-gradient(to right, #865cef, #6583d5, #4aaebc, #cf4ddbff);
    color: #150e1e;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Segoe UI,sans-serif;
    box-sizing: border-box
}

.btn-unified-mini {
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    border: 2px solid #150e1e;
    background: linear-gradient(to right, #865cef, #6583d5, #4aaebc, #cf4ddbff);
    color: #150e1e;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Segoe UI,sans-serif;
    box-sizing: border-box
}

.sbtn-unified:hover {
    background: linear-gradient(to right, #2ad9a3, #4aaebc, #6583d5, #5c3d9b);
    color: #0a070e
}

.sbtn-unified {
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
    border: 2px solid #150e1e;
    background: linear-gradient(to right, #865cef, #6583d5, #4aaebc, #cf4ddbff);
    color: #150e1e;
    cursor: pointer;
    transition: all .3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: Segoe UI,sans-serif;
    box-sizing: border-box
}

.btn-unified:hover,.btn-unified-mini:hover {
    background: linear-gradient(to right, #2ad9a3, #4aaebc, #6583d5, #5c3d9b);
    color: #0b0d13
}

body {
    margin: 0;
    background-color: #0a070e;
    color: #f5f5f5;
    font-family: Segoe UI,sans-serif
}

h1,h2,h3 {
    color: #f5f5f5
}

a {
    color: #f0c674
}

button {
    background-color: #2a2a2a;
    color: #fff;
    border: 1px solid #3b3046;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: .2s;
    font-family: Segoe UI,sans-serif
}

button:hover {
    background-color: #45315a
}

html,body,#root {
    height: 100%;
    margin: 0;
    padding: 0;
    scrollbar-gutter: stable
}

input {
    font-family: Segoe UI,sans-serif;
    font-weight: 500
}

textarea {
    font-family: Segoe UI,sans-serif;
    font-size: "18px";
    font-weight: 500;
    scrollbar-gutter: stable
}

.app-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: "visible",
}

.main-content {
    flex-grow: 1;
    margin-left: 290px;
    margin-Right: 50px;
    padding-top: 86px;
    padding-bottom: 32px;
    font-family: Segoe UI,sans-serif
}

.market-making-content {
    flex-grow: 1;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    font-family: Segoe UI,sans-serif
}

@media (max-width: 768px) {
    .main-content {
        margin-left:0;
        margin-Right: 0;
        padding-bottom: 10px
    }
}

@media (min-width: 769px) and (max-width: 1300px) {
    .main-content {
        margin-left:350px;
        margin-Right: 0
    }
}

@media (min-width: 1301px) and (max-width: 1800px) {
    .main-content {
        margin-left:350px;
        margin-Right: 70px
    }
}

@media (min-width: 1801px) {
    .main-content {
        margin-left:350px;
        margin-Right: 50px
    }
}

.placeholder-light::placeholder {
    color: #8a94ac
}

.placeholder-small::placeholder {
    color: #8a94ac;
    font-size: 14px
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: #1c1427;
    border-radius: 10px;
    margin-top: 6px;
    margin-bottom: 6px
}

::-webkit-scrollbar-thumb {
    background-color: #3a3f4b;
    border-radius: 10px;
    margin: 6px
}

::-webkit-scrollbar-thumb:hover {
    background-color: #5a6374
}

input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0
}

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

input[type=range] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: transparent;
    cursor: pointer
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #55599f;
    border: 2px solid #55599f;
    cursor: pointer
}

input[type=range]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #55599f;
    border: 2px solid #55599f;
    cursor: pointer
}

.wallet-adapter-button {
    background-color: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: DM Sans,Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
    font-size: 16px;
    font-weight: 600;
    height: 48px;
    line-height: 48px;
    padding: 0 24px;
    border-radius: 4px
}

.wallet-adapter-button-trigger {
    background-color: #512da8
}

.wallet-adapter-button:not([disabled]):focus-visible {
    outline-color: #fff
}

.wallet-adapter-button:not([disabled]):hover {
    background-color: #1a1f2e
}

.wallet-adapter-button[disabled] {
    background: #404144;
    color: #999;
    cursor: not-allowed
}

.wallet-adapter-button-end-icon,.wallet-adapter-button-start-icon,.wallet-adapter-button-end-icon img,.wallet-adapter-button-start-icon img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px
}

.wallet-adapter-button-end-icon {
    margin-left: 12px
}

.wallet-adapter-button-start-icon {
    margin-right: 12px
}

.wallet-adapter-collapse {
    width: 100%
}

.wallet-adapter-dropdown {
    position: relative;
    display: inline-block
}

.wallet-adapter-dropdown-list {
    position: absolute;
    z-index: 99;
    display: grid;
    grid-template-rows: 1fr;
    grid-row-gap: 10px;
    padding: 10px;
    top: 100%;
    right: 0;
    margin: 0;
    list-style: none;
    background: #2c2d30;
    border-radius: 10px;
    box-shadow: 0 8px 20px #0009;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease,transform .2s ease,visibility .2s;
    font-family: DM Sans,Roboto,Helvetica Neue,Helvetica,Arial,sans-serif
}

.wallet-adapter-dropdown-list-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px)
}

.wallet-adapter-dropdown-list-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: none;
    outline: none;
    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 0 20px;
    width: 100%;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    height: 37px;
    color: #fff
}

.wallet-adapter-dropdown-list-item:not([disabled]):hover {
    background-color: #1a1f2e
}

.wallet-adapter-modal-collapse-button svg {
    align-self: center;
    fill: #999
}

.wallet-adapter-modal-collapse-button.wallet-adapter-modal-collapse-button-active svg {
    transform: rotate(180deg);
    transition: transform ease-in .15s
}

.wallet-adapter-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity linear .15s;
    background: #00000080;
    z-index: 1040;
    overflow-y: auto
}

.wallet-adapter-modal.wallet-adapter-modal-fade-in {
    opacity: 1
}

.wallet-adapter-modal-button-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 12px;
    cursor: pointer;
    background: #120c1a;
    border: none;
    border-radius: 50%
}

.wallet-adapter-modal-button-close:focus-visible {
    outline-color: #fff
}

.wallet-adapter-modal-button-close svg {
    fill: #211630;
    transition: fill .2s ease 0s
}

.wallet-adapter-modal-button-close:hover svg {
    fill: #fff
}

.wallet-adapter-modal-overlay {
    background: #00000080;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0
}

.wallet-adapter-modal-container {
    display: flex;
    margin: 3rem;
    min-height: calc(100vh - 6rem);
    align-items: center;
    justify-content: center
}

@media (max-width: 480px) {
    .wallet-adapter-modal-container {
        margin:1rem;
        min-height: calc(100vh - 2rem)
    }
}

.wallet-adapter-modal-wrapper {
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 1050;
    max-width: 400px;
    border-radius: 10px;
    background: #150e1e;
    box-shadow: 0 8px 20px #0009;
    font-family: DM Sans,Roboto,Helvetica Neue,Helvetica,Arial,sans-serif;
    flex: 1
}

.wallet-adapter-modal-wrapper .wallet-adapter-button {
    width: 100%
}

.wallet-adapter-modal-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    margin: 0;
    padding: 64px 48px 48px;
    text-align: center;
    color: #fff
}

@media (max-width: 374px) {
    .wallet-adapter-modal-title {
        font-size:18px
    }
}

.wallet-adapter-modal-list {
    margin: 0 0 12px;
    padding: 0;
    width: 100%;
    list-style: none
}

.wallet-adapter-modal-list .wallet-adapter-button {
    font-weight: 400;
    border-radius: 0;
    font-size: 18px
}

.wallet-adapter-modal-list .wallet-adapter-button-end-icon,.wallet-adapter-modal-list .wallet-adapter-button-start-icon,.wallet-adapter-modal-list .wallet-adapter-button-end-icon img,.wallet-adapter-modal-list .wallet-adapter-button-start-icon img {
    width: 28px;
    height: 28px
}

.wallet-adapter-modal-list .wallet-adapter-button span {
    margin-left: auto;
    font-size: 14px;
    opacity: .6
}

.wallet-adapter-modal-list-more {
    cursor: pointer;
    border: none;
    padding: 12px 24px 24px 12px;
    align-self: flex-end;
    display: flex;
    align-items: center;
    background-color: transparent;
    color: #fff
}

.wallet-adapter-modal-list-more svg {
    transition: all .1s ease;
    fill: #fff;
    margin-left: .5rem
}

.wallet-adapter-modal-list-more-icon-rotate {
    transform: rotate(180deg)
}

.wallet-adapter-modal-middle {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px 24px;
    box-sizing: border-box
}

.wallet-adapter-modal-middle-button {
    display: block;
    cursor: pointer;
    margin-top: 48px;
    width: 100%;
    background-color: #512da8;
    padding: 12px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    color: #fff
}
