html,
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    max-width: 100vw;
    color: #fff;
    font-family: Inter !important;
    font-size: 12px;
}
body {
    background-color: #000f26;
}
@media (min-width: 1024px) {
    html,
    body {
        font-size: 8px;
    }
}
@media (min-width: 1200px) {
    html,
    body {
        font-size: 9px;
    }
}

@media (min-width: 1350px) {
    html,
    body {
        font-size: 10px;
    }
}
@media (min-width: 1430px) {
    html,
    body {
        font-size: 10.7px;
    }
}

@media (min-width: 1500px) {
    html,
    body {
        font-size: 11px;
    }
}

@media (min-width: 1650px) {
    html,
    body {
        font-size: 12px;
    }
}

@media (min-width: 1760px) {
    html,
    body {
        font-size: 13px;
    }
}

@media (min-width: 1900px) {
    html,
    body {
        font-size: 14px;
    }
}
.main-container {
    width: 100vw;
    height: 100vh;
    background-image: url("./assets/backgroundmobile.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    overflow-y: scroll;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 1024px) {
    .main-container {
        background-image: url("./assets/background.png");
        overflow: hidden;
    }
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 1024px) {
    .container {
        align-items: initial;
    }
}
.header {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
}
@media (min-width: 1024px) {
    .header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: initial;
        box-sizing: initial;
        padding: 2rem 5rem 0 5rem;
    }
}

.header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 1024px) {
    .header-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.main-metrics {
    border: 1px solid #00ffff;
    position: relative;
    max-width: 35rem;
    width: 100%;
    white-space: nowrap;
    cursor: pointer;
}
@media (min-width: 1024px) {
    .main-metrics {
        display: flex;
        flex-direction: column;
        align-items: center;
        border: none;
        width: initial;
        max-width: 45rem;
    }
}
.metric-value {
    font-weight: 700;
    letter-spacing: -0.01em;
    font-size: 3.25rem;
    line-height: 4rem;
    padding: 0.5rem 0.25rem 0.5rem 0.75rem;
}
@media (min-width: 1024px) {
    .metric-value {
        font-size: 4.375rem;
        line-height: 5.3125rem;
    }
}
.metric-label {
    position: absolute;
    top: -39%;
    left: -1px;
    font-size: 1rem;
    background-color: #00ffff;
    border-radius: 5px 5px 0px 0px;
    padding: 0.25rem 0.75rem;
    color: #001128;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.metric-label.ocw {
    top: -37%;
}
@media (min-width: 1024px) {
    .metric-label {
        margin-top: 0.25rem;
        font-size: 1.25rem;
        line-height: 1.5rem;
        background-color: transparent;
        border: none;
        padding: 0;
        color: #fff;
        position: initial;
        font-weight: 400;
    }
}
.middle-metric {
    margin: 3.5rem 0rem;
}
@media (min-width: 1024px) {
    .middle-metric {
        margin: 0px 5rem;
    }
}

.header-right {
    display: none;
}

@media (min-width: 1024px) {
    .header-right {
        display: block;
    }
}
.date-time {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.date {
    font-size: 1.125rem;
    line-height: 1.5rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    white-space: nowrap;
}
.time {
    font-size: 1.5625rem;
    line-height: 1.875rem;
    letter-spacing: -0.01em;
    font-weight: 200;
}
.main-section {
    flex: 1;
    display: block;
    margin-top: 4.25rem;
    max-width: 40rem;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}
@media (min-width: 1024px) {
    .main-section {
        flex: 1;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: initial;
        margin-top: 0rem;
        max-width: initial;
        padding: 0 5rem 1rem 5rem;
        width: initial;
        box-sizing: initial;
    }
}
.left-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tables {
    display: block;
    position: relative;
}
@media (min-width: 1024px) {
    .tables {
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }
}

.metric-table {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 1rem;
}
.table-title {
    font-size: 1.25rem;
    color: #00ffff;
    font-weight: 700;
    position: relative;
    display: none;
    margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
    .table-title {
        display: block;
    }
}
.table-container {
    position: relative;
    width: 100%;
}
@media (min-width: 1024px) {
    .table-container {
        width: initial;
    }
}
.table-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1px;
    border-radius: 0px 0px 20px 20px;
    border: 1px solid #00ffff;
    z-index: 0;
}
@media (min-width: 1024px) {
    .table-container::before {
        border-radius: 1.5rem;
        border: none;

        background: linear-gradient(
            104.31deg,
            #1d6ba6 -1.33%,
            rgba(29, 107, 166, 0) 49.25%,
            #1d6ba6 99.83%
        );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }
}
.table {
    height: 32rem;
    width: calc(100% - 2.5rem);
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(177.36deg, #012b43 6.06%, rgba(1, 0, 37, 0) 117.43%);
}
@media (min-width: 1024px) {
    .table {
        height: 16rem;
        width: 36rem;
        display: flex;
        border-radius: 1.5rem;
        background: linear-gradient(358.57deg, #000204 31.09%, rgba(13, 27, 38, 0) 120.95%);
    }
}
.table-container.hideOnMobile {
    display: none;
}
@media (min-width: 1024px) {
    .table-container.hideOnMobile {
        display: flex;
    }
}
.table-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    flex: 1;
}
@media (min-width: 1024px) {
    .table-row {
        display: block;
        margin-bottom: 1rem;
    }
}
.table-label {
    flex: 1;
    margin-right: 1.5rem;
    font-weight: 900;
    align-items: flex-end;
}
@media (min-width: 1024px) {
    .table-label {
        display: flex;
        white-space: nowrap;
        min-width: 14.5rem;
    }
}
.table-value {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .table-value {
        font-size: 1.5rem;
        margin-top: 0.25rem;
    }

    .behaviour .table-value {
        margin-top: 0.1rem;
    }
}
.table-label-text {
    font-weight: 500;
    color: #00ffff;
    font-size: 1.2rem;
}
.table-label-text-sm {
    font-weight: 500;
    color: #00ffff;
    font-size: 0.75rem;
    margin-right: 0.25rem;
}
.brand-name {
    color: #00ffff;
    letter-spacing: 0.02em;
    font-size: 4.5rem;
    line-height: 5rem;
    font-weight: 800;
}
.brand-tag {
    font-weight: 500;
    text-align: right;
    margin-top: -0.5rem;
}
.brand-tag sup {
    font-size: 0.5625rem;
}
.brand-desc {
    font-size: 1rem;
    line-height: 1.25rem;
    color: #989898;
    width: 23.625rem;
    font-weight: 500;
    margin-top: 0.5rem;
}
.learnmore {
    display: flex;
    align-items: center;
    color: #00ffff;
    margin-top: 0.25rem;
}
a {
    text-decoration: none;
}
.right-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 2rem;
    margin-bottom: 2rem;
}
@media (min-width: 1024px) {
    .right-section {
        margin-top: 0rem;
        margin-right: 0rem;
        margin-bottom: 0rem;
        position: relative;
    }
}
.right-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mission-section {
    display: none;
    padding: 1.5rem;
    color: #989898;
    font-weight: 500;
    background: #001020;
    border: 1px solid transparent;
    background: linear-gradient(#001020, #001020),
        linear-gradient(
            159.08deg,
            rgba(134, 216, 235, 0.78) 1.89%,
            rgba(191, 234, 244, 0) 48.39%,
            #ffffff 100%
        );
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 1.25rem;
    margin: 2rem 0rem;
}
@media (min-width: 1024px) {
    .mission-section {
        display: block;
        padding: 1.25rem 1.5rem 1.25rem 1.5rem;
        width: 27.5rem;
        font-size: 1.125rem;
        margin: 2rem 0 1rem 0;
    }
}
.mission-title {
    font-size: 2.215rem;
    line-height: 2.215rem;
    font-weight: 700;
    color: #00ffff;
}
@media (min-width: 1024px) {
    .mission-title {
        color: #fff;
    }
}
.mission-desc {
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: #989898;
    margin-top: 0.75rem;
}

.stats-before {
    content: none;
}

@media (min-width: 1024px) {
    .stats::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1px;
        border-radius: 1.25rem;
        border: none;
        z-index: 0;

        background: linear-gradient(
            105.76deg,
            #1d6ba6 0%,
            rgba(29, 107, 166, 0) 48.7%,
            #1d6ba6 99.47%
        );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }
}

.stats {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 1.25rem;
    position: relative;
    border: 1px solid transparent;
    background: linear-gradient(#002242, #002242),
        linear-gradient(90deg, #86d8eb 0%, rgba(255, 255, 255, 0) 46.25%, #ffffff 98.67%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}
@media (min-width: 1024px) {
    .stats {
        width: 26.5rem;
        background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 125.09%);
        background-clip: initial;
        background-origin: initial;
    }
}
.stat-label {
    font-size: 1.125rem;
    line-height: 1.125rem;
    letter-spacing: 0.1em;
    flex: 1;
}
.stats-row {
    display: flex;
    align-items: center;
}
.stat-value-container {
    flex: 1;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.n-metric {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.375rem;
}
.n-metric-sm {
    font-size: 0.625rem;
    line-height: 0.75rem;
    font-weight: 500;
}
.grey {
    color: #6f6f6f;
}
.dot-matrix-container {
    display: flex;
    align-items: center;
    margin-left: 0.75rem;
}
.dot {
    height: 0.5625rem;
    width: 0.5625rem;
    border-radius: 100%;
    margin: 0px 2px;
    background-color: #535557;
}
.dot.active {
    background-color: #ffffff;
}
.accuracy-percentage {
    color: #00ffff;
    font-weight: 800;
    font-size: 3.75rem;
    line-height: 4.5rem;
    letter-spacing: -0.02em;
    position: relative;
    margin-right: 0.25rem;
}
.accuracy-label {
    font-weight: 700;
    font-size: 1.125rem;
}
.uptime {
    font-size: 1.125rem;
    line-height: 1.375rem;
    font-weight: 500;
    margin-top: 2rem;
    text-align: right;
}
.uptime span {
    color: #00ffff;
}
.copyright {
    font-size: 1rem;
    line-height: 1.125rem;
    color: #989898;
    font-weight: 500;
    text-align: center;
    padding-bottom: 4rem;
    padding-top: 3rem;
}
@media (min-width: 1024px) {
    .copyright {
        padding-top: 0rem;
        padding-bottom: 0rem;
        position: absolute;
        transform: rotate(-90deg);
        right: -12rem;
        bottom: 12rem;
    }
}
.connector {
    position: absolute;
    z-index: 3;
    left: 0.3125rem;
    top: 0.75rem;
}
.decayimage {
    width: 12rem;
}
.nnimage {
    width: 12rem;
}
.connectorimage {
    width: 1rem;
    height: 3.125rem;
}
.doublechevronimage {
    height: 1.5rem;
    width: 1.875rem;
    margin-left: -0.2rem;
    margin-top: 0.0625rem;
}
.hiddenlayers {
    position: absolute;
    color: #989898;
    transform: rotate(270deg);
    left: 84%;
    top: 46%;
    font-size: 1rem;
    line-height: 1.25rem;
    z-index: 3;
    white-space: nowrap;
}
@media (min-width: 1024px) {
    .hiddenlayers {
        left: 86%;
    }
}
.table-title .dotarray {
    position: absolute;
    top: 40% !important;
    left: 105% !important;
    z-index: 3;
    width: 10rem !important;
    height: 0.1875rem !important;
}
.tables .dotarray {
    left: 45%;
    position: absolute;
    top: 60%;
    width: 0.1875rem;
    height: 9rem;
}
.stats .dotarray {
    position: absolute;
    left: -1.5rem;
    top: 60%;
    width: 0.1875rem;
    height: 9rem;
}
.dotarray img {
    width: 100%;
    height: 100%;
}
.active-since {
    font-size: 0.75rem;
    text-align: right;
    font-weight: 500;
}
.daycount {
    font-size: 1rem;
    margin-left: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.launchdate {
    display: flex;
    margin-bottom: 0.5rem;
    align-items: flex-end;
}
.launchdate sup {
    text-transform: lowercase;
}
.odometer-value {
    text-align: center;
}
.odometer-value.odometer-first-value,
.odometer-value.odometer-last-value {
    width: 100%;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
    font-family: Inter !important;
    line-height: 1.1em;
}
.behaviour .table-label {
    max-width: 10rem;
    flex: 2;
}
@media (min-width: 640px) {
    .behaviour .table-label {
        max-width: initial;
        flex: 1;
    }
}
@media (min-width: 1024px) {
    .behaviour .table-label {
        max-width: 17rem;
        flex: 2;
    }
}
.table.behaviour {
    width: calc(100% - 2.5rem);
}
@media (min-width: 1024px) {
    .table.behaviour {
        width: 43rem;
    }
}
.mobile-intro {
    margin-bottom: 1.333rem;
    padding: 2rem 2rem 0 2rem;
}
@media (min-width: 1024px) {
    .mobile-intro {
        display: none;
    }
}
.mobile-intro .brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.mobile-intro .brand .brand-desc {
    width: initial;
    color: white;
    font-size: 0.75rem;
    line-height: 1.33rem;
    text-align: center;
    max-width: 40rem;
}
.mobile-intro .brand .brand-name {
    font-size: 4.1667rem;
    line-height: 4.5rem;
}
.mobile-intro .brand .brand-tag {
    font-size: 0.75rem;
}
.mobile-intro .brand .brand-tag sup {
    font-size: 0.5rem;
}
.desktop-only {
    display: none;
}
@media (min-width: 1024px) {
    .desktop-only {
        flex: 1;
        align-items: center;
        display: flex;
        justify-content: center;
    }
}

.desktop-only .brand {
    padding: 0.75rem 1.75rem 1.75rem 1.75rem;
    position: relative;
    width: 27.25rem;
    background: linear-gradient(358.57deg, rgba(0, 2, 4, 0.58) 31.09%, rgba(13, 27, 38, 0) 120.95%);
}

.desktop-only .brand::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1px;
    border-radius: 1.25rem;
    border: none;
    z-index: 0;

    background: linear-gradient(105.76deg, #1d6ba6 0%, rgba(29, 107, 166, 0) 48.7%, #1d6ba6 99.47%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.dotarray {
    display: none;
}
@media (min-width: 1024px) {
    .dotarray {
        display: block;
    }
}
.left-table {
    margin-right: 0rem;
}
@media (min-width: 1024px) {
    .left-table {
        margin-right: 5.625rem;
        margin-left: 1rem;
    }
}
.mobile-selector-container {
    display: flex;
    align-items: center;
    position: relative;
}
.mobile-selector {
    width: 50%;
    font-size: 1.17rem;
    font-weight: 500;
    text-align: center;
    padding: 1rem;
    border: 1px solid transparent;
    background: linear-gradient(270deg, #02598a 6.04%, #000000 97.8%),
        linear-gradient(270deg, rgba(1, 255, 255, 0.42) 0%, rgba(1, 255, 255, 0) 98.04%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-radius: 10px 10px 0px 0px;
}
.mobile-selector.left {
    background: linear-gradient(90.16deg, #02598a 0.18%, #000101 96.65%),
        linear-gradient(90.12deg, rgba(1, 251, 251, 0.42) 0.13%, rgba(1, 251, 251, 0) 99.93%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}
.mobile-selector.active {
    width: 55%;
    background: #00ffff;
    color: #010e23;
    border: 0px 0px 1px 0px #00ffff;
    font-weight: 700;
}
@media (min-width: 1024px) {
    .mobile-selector-container {
        display: none;
    }
}
button {
    border: none;
    color: inherit;
}

.mobile-only {
    display: flex;
    justify-content: center;
}
@media (min-width: 1024px) {
    .mobile-only {
        display: none;
    }
}
.learnmorebtn {
    width: 10rem;
    padding: 1rem 0rem;
    border: 1px solid #00ffff;
    border-radius: 10px;
    text-align: center;
    margin-top: 3.75rem;
    color: #00ffff;
}
.desktop-bg-video {
    position: absolute;
    z-index: -1;
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: none;
}
@media (min-width: 1024px) {
    .desktop-bg-video {
        display: block;
    }
}
.daycount span.digit {
    color: #86d8eb;
    border: 1px solid white;
    border-radius: 2px;
    margin-right: 3px;
    padding: 0.25rem;
    font-weight: 800;
}
.dayslabel {
    margin-bottom: 0.125rem;
}
.daycontainer {
    display: flex;
}
.precisionAccuracy {
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: -0.055em;
    text-align: left;
    z-index: 2;
    color: #1d6ba6;
    position: absolute;
    line-height: initial;
}
.accuracy-container {
    text-align: center;
    display: flex;
    align-items: baseline;
}
.mobile-active-since {
    display: flex;
    font-weight: 500;
    font-size: 0.666rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.6666rem;
    align-items: flex-end;
}
.mobile-active-since .daycount {
    font-weight: 500;
    font-size: 0.666rem;
    color: rgba(255, 255, 255, 0.8);
    margin-left: 0.25rem;
}
@media (min-width: 1024px) {
    .mobile-active-since {
        display: none;
    }
}
#mobile-daycount span.digit {
    font-size: 0.75rem;
    color: #86d8eb;
    border: 1px solid white;
    border-radius: 2px;
    margin-right: 0.25rem;
    padding: 0.1rem 0.25rem;
    font-weight: 800;
}
.hasdollarwithodometer {
    display: flex;
}
.table-value.hasdollarwithodometer {
    line-height: 1.1em;
}
.currency-container {
    cursor: pointer;
    position: relative;
}
@media (min-width: 1024px) {
    .currency-container {
        margin-top: -2.5rem;
        margin-bottom: 1rem;
    }
}
.current-currency {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: #002242;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    font-weight: 500;
    width: max-content;
}
@media (min-width: 1024px) {
    .current-currency {
        padding: 0.75rem 0.375rem 0.75rem 0.75rem;
        border-radius: 0px 0px 0.5rem 0.5rem;
    }
}
.currency-option-container {
    display: none;
    width: 100%;
    position: absolute;
    z-index: 5;
    background-color: #002242;
    top: 2.5rem;
}
@media (min-width: 1024px) {
    .currency-option-container {
        top: 3rem;
    }
}
.showoptions .currency-option-container {
    display: block;
}
.currency-option {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 500;
}
@media (min-width: 1024px) {
    .currency-option {
        padding: 0.5rem 0.75rem;
    }
}
.currency-option:hover {
    background: #00ffff;
    color: #002242;
}
.currency-option.active {
    background: #00ffff;
    color: #002242;
}
button {
    background-color: initial;
    cursor: pointer;
    font-size: 1rem;
}
.check {
    display: none;
    background-color: #002242;
    padding: 0.125rem;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
}
.active .check {
    display: flex;
}
img.flag {
    height: 1rem;
    width: 1rem;
    border-radius: 100%;
    overflow: hidden;
    object-fit: cover;
    margin-right: 0.5rem;
}
.option-container {
    display: flex;
    align-items: center;
    flex: 4;
}
.currency-info {
    flex: 1;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-right: 4px;
}
.check-container {
    flex: 3;
    display: flex;
    justify-content: end;
}
.selected-flag {
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    overflow: hidden;
    object-fit: cover;
    margin-right: 0.5rem;
}
.flex-center {
    display: flex;
    align-items: center;
}
.currency-label {
    color: rgba(255, 255, 255, 0.65);
}
.currency-symbol {
    font-size: 0.875rem;
    font-weight: 500;
}
.mobile-active-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 0 2rem;
}
@media (min-width: 1024px) {
    .mobile-active-container {
        display: none;
    }
}
.hidden {
    display: none;
}
.align-right {
    display: flex;
    justify-content: flex-end;
}
.this-month {
    font-size: 0.75rem;
    color: #a7a7a7;
    font-weight: 400;
    font-style: italic;
}
.decay-metric-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 11rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 0rem;
    margin-left: 0rem;
}
.decayimage-container {
    position: relative;
    margin-top: 1rem;
    margin-left: -1rem;
}
.decay-bg {
    position: absolute;
    z-index: 0;
    width: 8rem;
    left: 0.65rem;
    top: 1.4rem;
}

.nn-metric-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 9rem;
    font-size: 0.6rem;
    font-weight: 700;
    margin-top: 0rem;
    margin-left: 0.5rem;
}
.nn-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nnimage-container {
    position: relative;
    margin-top: 0.5rem;
}
.nn-bg {
    position: absolute;
    z-index: 0;
    width: 9rem;
    left: -0.1rem;
    top: 0.05rem;
}
.nn-optimal-container {
    position: absolute;
    font-size: 0.6rem;
    font-weight: 700;
    color: #275273;
    display: flex;
    flex-direction: column;
    align-items: center;
    top: 0.75rem;
    left: 3.17rem;
}
.nn-optimal-block {
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(0, 128, 157, 0.51);
    margin-bottom: 1px;
}
.yellow {
    background-color: #ffd600;
    border-color: #ffd600;
}
.line-left {
    height: 0.4rem;
    width: 1px;
    position: absolute;
    left: 2rem;
    top: 2.4rem;
}
.line-left-big {
    height: 0.7rem;
    width: 1px;
    position: absolute;
    left: 2.5rem;
    top: 2.1rem;
}
.line-right {
    height: 0.45rem;
    width: 1px;
    position: absolute;
    top: 2.35rem;
    left: 7rem;
}
.no-wrap {
    white-space: nowrap;
}

.logo-img img {
    width: 22rem;
}

@media (min-width: 1024px) {
    .logo-img img {
        width: 25rem;
    }
}
.container-404 {
    position: fixed;
    width: 100vw;
    min-height: 100vh;
    z-index: 30;
    background-image: url("./assets/bg404.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .container-404 {
        padding: 2rem 3rem;
    }
}

.container-404 .heading {
    width: 100%;
}

.container-404 .heading span {
    color: #00ffff;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: 2.4rem;
}

@media (min-width: 1024px) {
    .container-404 .heading span {
        font-size: 2.4rem;
    }
}

.container-404 .main-404 {
    flex: 1;
    letter-spacing: -0.02em;
    display: flex;
    /* margin-top: 8rem; */
    align-items: center;
    position: relative;
}

@media (min-width: 1024px) {
    .container-404 .main-404 {
        margin-top: -3rem;
    }
}

.container-404 .graphic {
    display: flex;
    justify-content: center;
    position: absolute;
    margin-top: -7rem;
}

@media (min-width: 1024px) {
    .container-404 .graphic {
        margin-top: -10.8rem;
    }
}

.container-404 .graphic img {
    width: 100%;
}

.container-404 .main-404 .headline {
    font-size: 3.125rem;
    font-weight: 700;
    text-align: center;
}

@media (min-width: 1024px) {
    .container-404 .main-404 .headline {
        font-size: 5rem;
    }
}

.container-404 .main-404 .subtext {
    text-align: center;
    font-size: 1.09375rem;
    margin-top: -0.25rem;
}

@media (min-width: 1024px) {
    .container-404 .main-404 .subtext {
        font-size: 1.75rem;
    }
}

.container-404 .footer-404 {
    width: 100%;
    text-align: center;
    color: #989898;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 3rem;
    padding-bottom: 4rem;
}

@media (min-width: 1024px) {
    .container-404 .footer-404 {
        line-height: initial;
        padding-bottom: 0;
    }
}

.graphContainer {
    position: relative;
    border-radius: 2.5rem;
    height: 32rem;
    margin-bottom: 4rem;
}
@media (min-width: 1024px) {
    .graphContainer {
        width: 92rem;
        height: 100%;
        margin: 0;
    }
}

.about-section {
    background: linear-gradient(180deg, rgba(0, 2, 4, 0.92) 55.73%, rgba(0, 2, 4, 0) 100%);
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 2rem 0rem;
}
@media (min-width: 1024px) {
    .about-section {
        width: 25.5rem;
    }
}

#graph {
    width: 100%;
    height: 100%;
    position: relative;
}
.table-rows-container {
    display: flex;
    flex: 1;
    justify-content: space-evenly;
    flex-direction: column;
}
@media (min-width: 1024px) {
    .table-rows-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.colorIndicator {
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 1rem;
}

.table-row-box {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex: 1;
}
@media (min-width: 1024px) {
    .table-row-box {
        flex: initial;
    }
}

@media (min-width: 1024px) {
    .nnContainer {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* margin-bottom: 0.75rem; */
    }
}

.tooltipValue {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        linear-gradient(180deg, #445285 0%, rgba(35, 42, 65, 0) 100%);
    border: solid 1px black;
    border-radius: 5px;
    padding: 0.25rem 0.5rem;
    color: white;
    width: max-content;
}
.tooltipName {
    color: white;
}

.tooltipContainer {
    display: none;
    flex-direction: column;
    align-items: center;
    font-size: 1.25rem;
    position: absolute;
    white-space: nowrap;
    z-index: 10;
    transition: left 1s, top 1s;
}

.tooltipContainer2 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        linear-gradient(180deg, #445285 0%, rgba(35, 42, 65, 0) 100%);
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
}

@media (min-width: 1024px) {
    .GIlabel {
        margin-bottom: 0.875rem;
    }
}
.graphOuter {
    overflow: hidden;
}

@media (min-width: 1024px) {
    .graphOuter {
        display: flex;
        align-items: center;
        flex: 1;
        padding: 1rem 0 1rem 0;
    }
}

.horizontalRule {
    display: none;
}
@media (min-width: 1024px) {
    .horizontalRule {
        display: block;
        width: 30rem;
        background: linear-gradient(90deg, #00ffff 50%, rgba(0, 0, 0, 0) 78.57%);
        margin-bottom: 1rem;
        padding: 1px;
    }
}

.maxSecContainer {
    margin-right: 0.5rem;
}

@media (min-width: 1024px) {
    .maxSecContainer {
        margin-top: 0.2rem;
    }
}

.secContainer {
    margin-top: 0.5rem;
}

@media (min-width: 1024px) {
    .secContainer {
        margin-top: 0.8rem;
    }
}
.footer {
    background-color: #101010;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding-bottom: 4rem;
}
@media (min-width: 1024px) {
    .footer {
        justify-content: space-between;
        flex-direction: row;
        padding: 0 5rem;
        width: initial;
    }
}

@media (min-width: 1024px) {
    .avgPriceDecay {
        margin-top: -1.2rem;
    }
}

.links {
    display: flex;
    align-items: center;
    flex-direction: column;
}
@media (min-width: 1024px) {
    .links {
        flex-direction: row;
    }
}
.links > div {
    font-size: 1.125rem;
    margin: 1rem 0;
}
@media (min-width: 1024px) {
    .links > div {
        margin: 0 8rem 0 0;
    }
}

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

.socials {
    display: flex;
    align-items: center;
}
@media (min-width: 1024px) {
    .socials > div {
        margin-left: 1.25rem;
    }
}

.ttdata {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ttvalue {
    margin-left: 1.5rem;
    font-weight: 600;
}

.circle {
    height: 1rem;
    width: 1rem;
    border-radius: 100%;
    overflow: hidden;
    margin-right: 1rem;
}

.ttlabel {
    display: flex;
    align-items: center;
}

g.tick text {
    fill: #989898;
    font-size: 0.875rem;
}

#animate {
    position: absolute;
    height: 1rem;
    width: 1rem;
    background-color: purple;
    transition: 2000ms;
}
.text-404 {
    padding: 0 3rem;
}

@media (min-width: 1024px) {
    .text-404 {
        padding: 0 4rem;
    }
}

.tooltipContainer3 {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        linear-gradient(180deg, #445285 0%, rgba(35, 42, 65, 0) 100%);

    mix-blend-mode: normal;
    border: 1px solid #ffffff;
    /* filter: blur(4px); */
    border-radius: 0.5rem;
    position: absolute;
    white-space: nowrap;
    z-index: 10;
    display: none;
    padding: 0.25rem 0.75rem;
    min-width: 12rem;
    transition: left 1s, top 1s;
}

.tooltipDate {
    color: #989898;
    font-size: 1rem;
    text-align: center;
}

.tooltipData {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.25rem;
    text-shadow: 1px 1px black;
}
.tooltipData > div:nth-child(1) {
    text-transform: uppercase;
    flex: 1;
}

.tooltipData > div:nth-child(2) {
    flex: 1;
}

.tooltipLine {
    display: block;
    width: 2rem;
    margin-bottom: 0.125rem;
    padding: 1px;
}

.blue {
    background: #0085ff;
}
.green {
    background: #81ff00;
}
.gold {
    background: #d8be39;
}

@media (min-width: 1024px) {
    .readtime {
        margin-top: 0.2rem;
    }
}

.transition {
    transition: transform 2s;
}

#graph path,
#graph circle {
    cursor: grab;
}
#graph path:active,
#graph circle:active {
    cursor: grab;
}
