:root {
    /* Font Families */
    --bdo: "BDO Grotesk";
    --dm_mono: "DM Mono";

    /* Eases */
    --inOutSine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
    --inOutQuad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    --inOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1);
    --inOutQuart: cubic-bezier(0.77, 0, 0.175, 1);

    /* Font Weights */
    --reg: 400;
    --med: 500;
    --semi: 600;
    --bold: 700;

    /* Border Radius */
    --global_br: 0.125em;

    /* Base Padding */
    --site_padding: 6.25em;

    /* Base Font-Size == 16px */
    --base_fs: 1.11111111111112vw;

    /* Headline Font Sizes */
    --dd1: 11.25em;
    --dd2: 6em;
    --h1: 4em;
    --h2: 3.25em;
    --h3: 2.5em;
    --h4: 2em;
    --h5: 1.5em;
    --h6: 1.125em;

    /* Body Font Sizes */
    --b20: 1.25em;
    --b18: 1.125em;
    --b16: 1em;
    --b14: 0.875em;
    --b12: 0.75em;
    --b10: 0.6125em;

    /* Colors */
    --market_shadow: #080a10;
    --black: #000;
    --white: #fff;
    --light_grey: #d9d9d9;
    --dark_grey: #444444;
    --silver: #f0f0f0;
    --liquidity_lagoon: #75fbf4;
    --liquidity_lagoon--lighter: #aaffea;
    --liquidity_lagoon--darker: #64d7bb;
    --iron_horizon: #8f959d;
    --iron_horizon--lighter: #bbc0c7;
    --iron_horizon--darker: #727983;
    --iron_horizon--darkest: #565b62;
    --iron_horizon--darkested: #32363d;
    --sidebar_bg--color: #13141a;
    --success: #00b548;
    --error: #fc1c1f;
    --warning: #ff6c00;
}

@media (min-width: 1660px) {
    :root {
        --base_fs: 0.9vw;
    }
}

@media (min-width: 1920px) {
    :root {
        --base_fs: 0.8vw;
    }
}

@media (max-width: 992px) {
    :root {
        --base_fs: 16px;

        --site_padding: 1.25em;

        --dd1: 4em;
        --dd2: 2.625em;
        --h1: 2.125em;
        --h2: 1.875em;
        --h3: 1.7em;
        --h4: 1.5em;
        --h5: 1.125em;
        --h6: 1em;
    }
}

::selection {
    color: #080a10;
    background-color: #aaffea;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--bdo);
    font-size: var(--base_fs);
    font-weight: var(--reg);
    color: var(--iron_horizon--darker);
    background-color: var(--market_shadow);
    padding: 0;
    margin: 0;
    opacity: 0;
}

/* Lenis CSS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

.square {
    display: block;
    width: 0.5em;
    height: 0.5em;
    background-color: currentColor;
}

.basic_button .square {
    margin-left: 0.3125em;
}

.basic_button.del_account {
    justify-content: space-between;
}

.basic_button.del_account svg {
    color: var(--market_shadow);
    flex-shrink: 0;
}

.basic_button-text.red {
    color: var(--iron_horizon--darkest);
    display: flex;
    align-items: center;
    border-radius: 2px;
    gap: 0.85em;
}

/* Headline Styles */
h1 {
    font-size: var(--h1);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: var(--reg);
    margin: 0;
}

h2 {
    font-size: var(--h2);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: var(--reg);
    margin: 0;
}

h3 {
    font-size: var(--h3);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: var(--reg);
    margin: 0;
}

h4 {
    font-size: var(--h4);
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: var(--reg);
    margin: 0;
}

h5 {
    font-size: var(--h5);
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: var(--reg);
    margin: 0;
}

h6 {
    font-size: var(--h6);
    line-height: 1.4;
    letter-spacing: -0.01em;
    font-weight: var(--reg);
    margin: 0;
}

/* Headline Classes */
.h1 {
    font-size: var(--h1);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: var(--reg);
    margin: 0;
}

.h2 {
    font-size: var(--h2);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: var(--reg);
    margin: 0;
}

.h3 {
    font-size: var(--h3);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: var(--reg);
    margin: 0;
}

.h4 {
    font-size: var(--h4);
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: var(--reg);
    margin: 0;
}

.h5 {
    font-size: var(--h5);
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-weight: var(--reg);
    margin: 0;
}

.h6 {
    font-size: var(--h6);
    line-height: 1.4;
    letter-spacing: -0.01em;
    font-weight: var(--reg);
    margin: 0;
}

/* Headline Animations Set-Ups */
.h_split {
    overflow: hidden;
    line-height: 0.9;
    padding-bottom: 0.13em;
}

.h5 .h_split,
h5 .h_split {
    line-height: 1.2;
}

h4 .h_split,
.h4 .h_split {
    line-height: 1.2;
}

.p_split {
    overflow: hidden;
}

@media (max-width: 992px) {
    .desktop_only {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .mobile_only {
        display: none !important;
    }
}

/* Body Font Size Classes */
.b20 {
    font-size: var(--b20) !important;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.b20.dm_mono {
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.b32 {
    font-size: 2em !important;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.b22 {
    font-size: 1.375em !important;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.b18 {
    font-size: var(--b18) !important;
    line-height: 1.3;
    letter-spacing: -0.005em;
}

.b18.dm_mono {
    letter-spacing: -0.03em;
}

.b16 {
    font-size: var(--b16) !important;
    line-height: 1.4;
}

.b16.dm_mono {
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.b14 {
    font-size: var(--b14) !important;
    line-height: 1.4;
}

.b14.dm_mono {
    letter-spacing: -0.03em;
}

.b12 {
    font-size: var(--b12) !important;
    line-height: 1.1;
}

.b12.dm_mono {
    letter-spacing: -0.02em;
    line-height: 1.4;
}

.b10 {
    font-size: var(--b10) !important;
    line-height: 1.4;
}

p {
    margin: 0;
}

a {
    color: currentColor;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a:hover {
    text-decoration: none;
}

a.inline {
    display: inline-block;
    font-size: 1em;
    color: currentColor;
}

/* Styling */
.gap10 {
    gap: 0.6125em !important;
}

.gap16 {
    gap: 1em !important;
}

.gap20 {
    gap: 1.25 !important;
}

.gap40 {
    gap: 2.5em !important;
}

.lh1 {
    line-height: 1 !important;
}

.ls0 {
    letter-spacing: normal;
}

.dm_mono {
    font-family: var(--dm_mono);
}

.h_highlight {
    font-family: var(--dm_mono);
    color: var(--iron_horizon--darker);
}

h1 .h_highlight,
.h1 .h_highlight {
    letter-spacing: -0.07em;
}

/* Color Classes */
.iron_horizon {
    color: var(--iron_horizon) !important;
}

.green {
    color: var(--success);
}

.red {
    color: var(--error);
}

.ih_lighter {
    color: var(--iron_horizon--lighter) !important;
}

.ih_darker {
    color: var(--iron_horizon--darker) !important;
}

.dark_grey {
    color: var(--dark_grey) !important;
}

.white_text {
    color: var(--white) !important;
}
.ll_color {
    color: var(--liquidity_lagoon);
}
.ll_darker {
    color: var(--liquidity_lagoon--darker);
}
.ll_lighter {
    color: var(--liquidity_lagoon--lighter);
}
.black_text {
    color: var(--market_shadow) !important;
}
.silver {
    color: var(--silver);
}
.error {
    color: var(--error);
}

.success {
    color: var(--success);
}

.warning {
    color: var(--warning);
}

.accent {
    font-family: var(--dm_mono);
    text-transform: uppercase;
    color: var(--iron_horizon--darker);
}

.accent.ih_lighter {
    color: var(--iron_horizon--lighter);
}

.reg {
    font-weight: var(--reg);
}

.med {
    font-weight: var(--med);
}

.semi {
    font-weight: var(--semi);
}

.bold {
    font-weight: var(--bold);
}

/* Login Page */
.section.login_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12.5em;
    min-height: 100vh;
    position: relative;
    grid-column: 1/12;
    padding: 2.5em var(--site_padding);
    overflow: hidden;
}

.assessment_lottie {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.75em;
    height: 4.75em;
}

.assessment_lottie.smaller {
    width: 3.75em;
    height: 3.75em;
}

.assessment_lottie.bigger {
    width: 7.25em;
    height: 7.25em;
}

.assessment_lottie.medium {
    width: 4.25em;
    height: 4.25em;
}

.mb-20 {
    margin-bottom: 1.25em;
}

.login--details {
    background-color: transparent;
    border: 1px solid var(--iron_horizon--darkested);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.6125em;
    text-decoration: none;
    color: var(--iron_horizon--lighter);
    transition: all 0.15s var(--inOutSine);
    border-radius: 2px;
}

.centered--content {
    grid-column-start: 4;
    grid-column-end: 10;
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.login_heading {
    position: relative;
    display: flex;
    align-items: center;
}

.lh_content {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    z-index: 2;
}

@media (max-height: 600px) {
    .lh_content {
        transform: translateY(-0);
    }
}

.lh_logo--wrap {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 5em;
}

@media (max-width: 992px) {
    .lh_logo--wrap p {
        display: none;
    }

    .section.login_wrap {
        padding: 1.25em;
    }
}

.lh_logo {
    display: block;
    color: var(--white);
    width: 8.125em;
}

.lh_bg {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lh_copywriting {
    position: absolute;
    bottom: 2.5em;
    left: var(--site_padding);
}

.button {
    font-size: 1em;
    background-color: var(--liquidity_lagoon);
    color: var(--market_shadow);
    cursor: pointer;
    width: 100%;
    padding: 1em;
    text-decoration: none;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.25s var(--inOutSine);
}

.button:hover {
    background-color: var(--white) !important;
}

.button.white {
    color: var(--market_shadow);
    background-color: var(--white);
}

.button.white:hover {
    background-color: var(--liquidity_lagoon) !important;
}

.button_text {
    z-index: 2;
    letter-spacing: -0.01em;
    font-size: 0.875em;
    font-weight: var(--med);
    line-height: 1;
    position: relative;
}

.button_icon {
    width: 1em;
    height: 1em;
    display: flex;
}

.button_icon-arrow {
    width: 100%;
    height: 100%;
}

.button_animation--lines {
    z-index: 10;
    pointer-events: none;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

.button_animation--line {
    background-color: var(--market_shadow);
    width: 100%;
    height: 100%;
}

.button_animation--line.dark {
    background-color: var(--white);
}

.login_form-wrap {
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-height: 100vh;
    background-color: #ffffff0a;
    backdrop-filter: blur(0.5em);
    border-radius: var(--global_br);
    padding: 3.75em;
}

@media (max-width: 992px) {
    .login_form-wrap {
        overflow: auto;
    }
}

.login_form-wrap.centered {
    align-items: center;
}

.reg_link.dm_mono {
    font-family: var(--dm_mono);
}

.reg_link {
    display: flex;
    font-size: 1em;
    font-family: var(--bdo);
    color: var(--iron_horizon--lighter);
    text-decoration: none;
    cursor: pointer;
}

.reg_link .b14 {
    letter-spacing: -0.03em;
}

.reg_link.reg {
    font-weight: var(--reg);
}

.reg_link .l_text {
    display: inline-block;
    font-size: var(--b16);
    position: relative;
    padding-bottom: 0.125em;
    transition: all 0.25s var(--inOutSine);
}

.reg_link .l_text.b12 {
    font-size: var(--b12);
    line-height: 1;
    padding-bottom: 0.06125em;
    padding: 0.425em;
    border-radius: 2px;
}

.set-as-default {
    background-color: #ffffff0a;
}

.set-as-default:hover {
    background-color: #ffffff1b;
    color: white;
}

/* .reg_link .l_text.b12:hover{
    color: #ffffff;
    background-color: #ffffff0a;
} */

/* .reg_link .l_text::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 0.125em;
    background-color: currentColor;
    transition: width 0.75s var(--inOutCubic);
}
.reg_link:hover .l_text::before {
    width: 0%;
} */
.button.transparent {
    color: var(--black);
    background-color: transparent;
    border: 0.06125em solid var(--iron_horizon--darker);
}

.button.transparent:hover .button_icon-arrow {
    filter: invert(0) !important;
}

.google_button:hover .button_icon-arrow {
    filter: invert(0) !important;
}

.google_button:hover {
    border-color: transparent;
}

.google_button .button_text {
    display: flex;
    gap: 0.6125em;
    align-items: center;
}

.google_button .button_text img {
    width: 1.25em;
    height: 1.25em;
}

.button.transparent:hover {
    background-color: var(--market_shadow);
    color: var(--white);
    border-color: transparent;
}

.raen_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4em;
    height: 4em;
    border-radius: 0.75em;
    background-color: #ffffff0a;
    overflow: hidden;
}

.raen_logo img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.form_inputs--wrap {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    margin-top: 1.875em;
    margin-bottom: 1.25em;
}

.input_wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.login_form label {
    line-height: 1;
    font-family: var(--dm_mono);
    font-size: var(--b10);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--iron_horizon--lighter);
    text-align: left;
}

.dm-mono {
    font-family: "DM Mono";
}

.pw_label {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.pw_label .reg_link .l_text {
    font-size: 0.64em !important;
}

.pw_input--wrap {
    position: relative;
}

input,
select,
textarea {
    font-family: var(--bdo) !important;
    width: 100%;
    position: relative;
    font-size: var(--b16);
    padding: 1em 0.75em;
    line-height: 1;
    border: 0.06125em solid var(--iron_horizon--darkest);
    background-color: transparent;
    border-radius: var(--global_br);
    box-shadow: none !important;
    outline: none !important;
    color: var(--white);
    transition: border-color 0.25s var(--inOutSine);
}

option {
    color: var(--market_shadow);
}

::placeholder {
    color: #404346;
}

.show_pw {
    position: absolute;
    right: 0.75em;
    width: 1.25em;
    height: 0.875em;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    color: var(--iron_horizon--darker);
    cursor: pointer;
    transition: color 0.15s var(--inOutQuad);
}

.register_here {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6125em;
}

input:hover {
    border-color: var(--white) !important;
}

input:focus {
    border-color: var(--white) !important;
}
textarea:hover {
    border-color: var(--white) !important;
}

textarea:focus {
    border-color: var(--white) !important;
}

.header_video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    pointer-events: none;
}

.header_video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show_pw.shown {
    color: var(--success);
}

.login_form {
    width: 100%;
}

.other_option {
    margin: 1.5625em 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other_option--text {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    width: 100%;
    gap: 1em;
}

.other_option--text::before,
.other_option--text::after {
    content: "";
    width: 100%;
    display: block;
    height: 0.06125em;
    background-color: var(--iron_horizon--lighter);
}

@media (max-width: 992px) {
    .section.login_wrap {
        display: flex;
        flex-direction: column;
        gap: 2.5em;
        padding-bottom: 10em;
    }

    .lh_content {
        transform: translateY(0);
    }

    .login_heading {
        min-height: 30vh;
        padding-top: 7.5em;
        align-items: flex-end;
    }

    .login_form-wrap {
        max-height: none;
        overflow: hidden;
    }

    .login_form {
        width: 100%;
    }

    .raen_logo {
        display: none;
    }

    .form_inputs--wrap {
        margin-top: 0;
    }

    .login_form-wrap {
        padding: 0;
        background-color: transparent;
        backdrop-filter: none;
    }

    input,
    select,
    textarea {
        background-color: #ffffff0d;
        backdrop-filter: blur(0.5em);
    }

    .lh_copywriting {
        bottom: 1.25em;
        left: 1.25em;
    }

    .login_form-wrap.centered {
        align-items: flex-start;
    }

    .lh_content {
        max-width: none;
    }
}

.col_two-input {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6125em;
}

.reg_link.inline.white {
    color: var(--white);
}

.reg_link.inline {
    color: currentColor;
    font-size: 1em !important;
    display: inline;
}

/* Custom Checkbox Styling */

.ch_text {
    font-family: var(--bdo);
    text-transform: none;
    line-height: 1;
}

.pb-0 {
    padding-bottom: 0 !important;
}

label.ch_container {
    font-size: var(--base_fs);
    display: flex;
    position: relative;
    gap: 0.5em;
    align-items: baseline;
    cursor: pointer;
    color: var(--iron_horizon--darker);
}

input[type="checkbox"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

span.checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.125em;
    height: 1.125em;
    border: 0.125em solid var(--iron_horizon--darkest);
    border-radius: 0.125em;
    margin-top: 0.06125em;
    color: var(--white);
    transition: all 0.15s var(--inOutSine);
    aspect-ratio: 1/1;
}

span.checkmark svg {
    width: 75%;
    height: 75%;
    transform: scale(0);
    transition: all 0.15s var(--inOutSine);
    color: var(--market_shadow);
}

.ch_container input[type="checkbox"]:checked + span.checkmark {
    background-color: var(--white);
    border-color: var(--white);
}

.ch_container input[type="checkbox"]:checked + span.checkmark > svg {
    transform: scale(1);
}

@media (max-width: 992px) {
    .col_two-input {
        display: flex;
        flex-direction: column;
        gap: 1.25em;
    }
}

.login_form.acc_created {
    display: flex;
    flex-direction: column;
    gap: 2.5em;
}

.uppercase {
    text-transform: uppercase;
}

.basic_button:hover .l_text::before {
    width: 0%;
}

.basic_button {
    display: flex;
    align-items: center;
    gap: 0.3125em;
    color: var(--iron_horizon--lighter);
    text-decoration: none;
    background-color: var(--silver);
    padding: 0.3125em 0.5em;
    transition: all 0.15s var(--inOutSine);
    min-height: 1.875em;
    backdrop-filter: blur(0.5em);
    cursor: pointer;
}

.basic_button.bigger {
    padding: 0.6125em;
}

.basic_button.transparent {
    background-color: #ffffff0d;
    border: 0.06125em solid var(--iron_horizon--darkested);
    border-radius: 2px;
}

.basic_button.transparent.black_border:hover {
    background-color: var(--market_shadow);
    color: var(--white);
}

.basic_button.transparent.black_border {
    border-color: var(--market_shadow);
    color: var(--market_shadow);
}

.basic_button.centered {
    align-items: center;
    justify-content: center;
}

.basic_button.transparent:hover {
    background-color: #ffffff1d !important;
    color: var(--iron_horizon--lighter) !important;
    border-color: var(--iron_horizon--darkest) !important;
}

.basic_button svg {
    display: flex;
}

.basic_button.back_button:hover svg {
    color: var(--white);
    transform: translateX(-0.125em);
}

.basic_button.back_button {
    min-height: 1.875em;
}

.basic_button.back_button svg {
    width: 0.9375em;
    height: 0.6125em;
    color: var(--market_shadow);
    transition: transform 0.25s var(--inOutSine);
}

.basic_button.lesson_complete svg {
    width: 0.875em;
    height: 0.875em;
}

.basic_button.lesson_complete {
    min-height: auto;
    max-height: 1.875em;
    cursor: pointer;
    background-color: var(--liquidity_lagoon);
}

.basic_button.lesson_complete.mobile_only {
    min-height: auto;
    max-height: none;
}

.basic_button.lesson_complete .bb_text {
    display: flex;
    align-items: center;
    gap: 0.25em;
}

.basic_button svg * {
    transition: all 0.15s var(--inOutSine);
}

.basic_button-text {
    font-size: var(--b12);
}

.basic_button:hover {
    background-color: var(--iron_horizon--lighter);
}

@media (max-width: 992px) {
    .card_info--text {
        gap: 0.45em !important;
    }
}

@media (min-width: 992px) {
    .form_inputs--wrap.reset_pw {
        margin: 2.5em 0;
    }
}

.basic_button--icon {
    width: 1.25em;
    height: 1.25em;
}

.basic_button.iron svg {
    width: 0.75em;
    height: 0.75em;
    color: currentColor;
}

.basic_button.iron {
    background-color: var(--iron_horizon);
    color: var(--market_shadow);
}

.basic_button.copy_link svg {
    width: 0.875em;
    height: 0.875em;
    color: var(--white);
    transition: none;
}

.basic_button.copy_link {
    background-color: transparent;
    color: var(--white);
    border: 0.06125em solid var(--white);
}

.basic_button.copy_link:hover svg {
    color: var(--market_shadow);
}

.basic_button.copy_link:hover {
    background-color: var(--white);
    color: var(--market_shadow) !important;
}

/* Main Content CSS */
.content_wrapper {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    min-height: 75vh;
    position: relative;
    z-index: 2;
}

.page_content {
    z-index: 1;
    grid-column: 3/11;
    display: grid;
    align-content: flex-start;
    padding: 5em 0;
}

.section_title {
    grid-column: 1/9;
    padding: var(--site_padding);
    margin-bottom: 1.25em;
}

.p_card--link {
    font-size: var(--b16);
    color: currentColor;
    justify-content: flex-start;
    align-items: center;
    text-decoration: none;
    display: flex;
    transition: all 0.35s var(--inOutQuad);
    gap: 0.3125em;
    width: fit-content;
    cursor: pointer;
}

.p_card--link-text {
    font-size: 0.875em;
}

.p_card.white .p_card--link_icon {
    filter: invert(1);
}

.pc_sub-title {
    font-family: var(--dm_mono);
    text-transform: uppercase;
    color: var(--iron_horizon);
    line-height: 1;
    letter-spacing: -0.01em;
}

.p_card.white .pc_sub-title {
    color: var(--iron_horizon--darker);
}

.p_card--link-icon {
    flex: none;
    width: 2em;
    height: 1.375em;
    display: flex;
}

.p_card--link-text_wrap {
    position: relative;
    color: white;
}

.edit--profile {
    padding: 0 !important;
}

.p_card--link--line {
    background-color: var(--iron_horizon);
    width: 100%;
    height: 0.125em;
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.5s var(--inOutQuad);
}

.p_card--link:hover {
    margin-left: 0.25em;
}

.p_card--link:hover .p_card--link--line {
    width: 0%;
}

.p_card--link_icon {
    flex-shrink: 0;
    width: 1em;
    margin-left: -0.25em;
}

.p_card {
    padding: var(--site_padding);
    color: var(--white);
    font-weight: var(--med);
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    min-height: 31.25em;
}

@media (max-width: 992px) {
    .p_card {
        min-height: 25em;
    }
}

.p_card.white {
    color: var(--black);
    background-color: var(--white);
    border: 0.06125em solid var(--light_grey);
}

.p_card-title {
    display: flex;
    flex-direction: column;
    gap: 0.9375em;
    margin-bottom: 3.125em;
}

.info_message_svg_size {
    width: 1.325em;
    height: 1.325em;
    flex-shrink: 0;
}

.p_card_button-wrap {
    margin-top: auto;
}

.p_card-price {
    font-size: 1.25em;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.price_sec {
    font-size: var(--b10);
    font-family: var(--dm_mono);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.p_card-price.bigger {
    font-size: 2.5em;
}

.p_card-price.bigger .price_sec {
    font-size: 0.35em;
}

.reset_popup .p_card_button-wrap > * {
    width: 100%;
}

.reset_popup .p_card_button-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25em;
    margin-top: 1.25em;
}

.p_card_button-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.9375em;
}

.program_cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25em;
}

.p_card .button:hover {
    background-color: var(--liquidity_lagoon);
    color: var(--market_shadow);
}

.p_card.white .button:hover {
    background-color: var(--liquidity_lagoon);
    color: var(--market_shadow);
}

.p_card.white .button {
    color: var(--white);
    background-color: var(--market_shadow);
}

.p_card.white .button_icon-arrow {
    filter: invert(1);
}

.p_card .button:hover .button_icon-arrow {
    filter: invert(0);
}

.p_card.white .button:hover .button_icon-arrow {
    filter: invert(0);
}

.p_card.white .button_animation--line {
    background-color: var(--white);
}

.p_card-author {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.p_card-author img {
    width: 2em;
    height: 2em;
}

@media (max-width: 992px) {
    .page_content {
        grid-column: 1/13;
        padding-top: 2em;
    }

    .program_cards {
        display: flex;
        flex-direction: column;
    }

    .content_wrapper {
        padding-bottom: 10em;
    }

    .main_page--title_mobile {
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 0.5em;
    }

    .main_page--title_mobile::before {
        content: "";
        width: 0.5em;
        height: 0.5em;
        display: block;
        background-color: currentColor;
    }
}

.mm-sm-nb {
    background-color: transparent !important;
}

.mt---8 {
    margin-top: -8px;
}

.mobile_menu {
    display: none;
}

/* Mobile Menu CSS */
@media (max-height: 500px) {
    .mobile_menu {
        overflow: auto;
        width: 100% !important;
    }
}

@media (max-width: 992px) {
    .mobile_menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 999;
        background-color: var(--market_shadow);
        width: calc(100% - 3em);
        height: 100%;
        color: var(--white);
        transform: translateX(100%);
        pointer-events: none;
    }

    .profile_dd img {
        width: 2.5em !important;
        height: 2.5em !important;
    }

    .mobile_menu > * {
        opacity: 0;
    }

    .mm_links .active {
        background-color: transparent !important;
        color: white !important;
    }

    .mm_links .sm_link .nl_text {
        font-size: 1.375em;
        line-height: 1;
    }

    .mm_links .sm_link:last-child {
        border-bottom: 0.06125em solid #ffffff1a;
    }

    .mm_links .sm_link {
        opacity: 0;
        transform: translateX(-0.5em);
        clip-path: inset(0% 100% 0% 0%);
        transition: transform 0.35s var(--inOutSine),
            opacity 0.4s var(--inOutSine), clip-path 0.5s var(--inOutSine) !important;
        padding: 1em 0;
        background-color: transparent;
        border-top: 0.06125em solid #ffffff1a;
    }

    .mobile_menu .basic_button {
        transform: translateX(-0.5em);
        clip-path: inset(0% 100% 0% 0%);
        transition: transform 0.5s var(--inOutSine),
            clip-path 0.5s var(--inOutSine) !important;
    }

    .mm_header {
        padding: var(--site_padding);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mm_header p {
        text-transform: uppercase;
        color: var(--iron_horizon--darker);
        line-height: 1;
    }

    .close_mm {
        width: 1.25em;
        height: 1.25em;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close_mm-line {
        position: absolute;
        width: 100%;
        height: 0.125em;
        background-color: currentColor;
        transform: rotate(0deg);
    }

    .mm_profile {
        padding: 0 var(--site_padding);
        margin-top: 1.25em;
    }

    .mm_links {
        padding: 0 var(--site_padding);
    }

    .mm_additional--links {
        margin-top: auto;
    }

    .mobile_menu {
        display: flex;
        flex-direction: column;
    }

    .logout_icon {
        margin-left: auto;
        margin-right: 0.3125em;
    }

    .logout_icon svg {
        width: 0.6125em;
        height: 0.6125em;
        color: var(--market_shadow);
    }

    .mm_bg {
        width: 3em;
        position: absolute;
        left: 0;
        height: 100%;
        transform: translateX(-100%);
        background-color: #00000099;
        opacity: 0;
    }
}

/* Mobile Menu CSS */

/* Assessment Active Page CSS */
.p_card-profile img {
    width: 2em;
    height: 2em;
    display: flex;
}

.p_card-profile {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.p_card-profile.mentorship_active {
    align-items: flex-start;
}

.status.p_card--status {
    display: flex;
    align-items: center;
    width: 100%;
    align-items: center;
}

.p_card.active_assessment {
    justify-content: space-between;
}

.p_card.active_assessment .basic_button:hover {
    background-color: var(--white);
    color: var(--black);
}

.p_card.active_assessment .basic_button {
    align-items: center;
    justify-content: center;
    color: var(--iron_horizon);
    border-color: var(--iron_horizon);
}

.p_card.active_assessment .p_card_button-wrap {
    margin-top: 0;
}

.p_card_aa--header {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.p_card-assessment_info {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.p_card-a_info--line {
    width: 100%;
    height: 0.06125em;
    background-color: var(--dark_grey);
}

@media (max-width: 992px) {
    .p_card-assessment_info {
        margin: 1.875em 0;
    }
}

/* Assessment Active Page CSS */
/* Assessment + Course Active Page CSS */
.p_card.started_dev-program {
    background-color: var(--iron_horizon--lighter);
    color: var(--market_shadow);
}

.course_price {
    font-size: 2.5em;
    line-height: 1;
}

.course_price .price_sec {
    font-size: 0.3em;
}

.course_button--wrap {
    display: flex;
    flex-direction: column;
    gap: 0.9375em;
}

.course_progress {
    width: 100%;
    height: 0.25em;
    background-color: var(--iron_horizon);
    position: relative;
}

.cp_inner {
    width: 47%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--liquidity_lagoon);
}

.p_card.started_dev-program .basic_button {
    align-items: center;
    justify-content: center;
    color: var(--dark_grey);
    border-color: var(--dark_grey);
}

.p_card.started_dev-program .basic_button:hover {
    color: var(--market_shadow);
    border-color: var(--white);
    background-color: var(--white);
}

/* Assessment + Course Active Page CSS */

/* Assessment + Course + Mentorship Active Page CSS */
.p_card--live_session {
    border: 0.06125em solid var(--iron_horizon--lighter);
    display: flex;
    gap: 0.6125em;
    align-items: center;
    padding: 0.6125em;
}

.p_card.mentorship_program {
    background-color: #f0f0f0;
}

.p_card--live_session img {
    width: 5em;
}

.live_prop svg {
    flex-shrink: 0;
}

.p_card--live_session .live_prop {
    flex-shrink: 0;
}

/* Assessment + Course + Mentorship Active Page CSS */
.basic_button.blue {
    background-color: var(--liquidity_lagoon);
    color: var(--market_shadow) !important;
}

.basic_button.blue:hover {
    background-color: var(--liquidity_lagoon--darker);
}

.basic_button.blue svg {
    color: currentColor;
}

.basic_button.blue .basic_button-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

.live_mentorship--popup {
    z-index: 99999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 var(--site_padding);
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.lmp_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000099;
    z-index: 1;
    will-change: clip-path;
}

.lmp_content {
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: var(--site_padding);
    padding-top: 0;
    background-color: var(--white);
    position: relative;
    z-index: 2;
    gap: 1.25em;
}

.lmp_content.ind {
    width: 100%;
}

.sli_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.875em;
    height: 0.875em;
    flex-shrink: 0;
}

.lmp_grid {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 2fr 4fr;
    gap: 1.25em;
}

.live_mentorship--popup .lmp_grid {
    gap: 3.75em;
}

@media (max-width: 992px) {
    .live_mentorship--popup .lmp_grid {
        gap: 1.25em;
    }
}

.lmp_info {
    display: flex;
    flex-direction: column;
    gap: 2.5em;
}

.close_lmp {
    flex-shrink: 0;
    width: 2em;
    height: 2em;
    border-radius: var(--global_br);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    place-self: flex-end;
    cursor: pointer;
    transition: all 0.35s var(--inOutSine);
    background-color: #ffffff0d;
    color: var(--white);
}

.close_lmp-line {
    position: absolute;
    width: 50%;
    height: 0.125em;
    background-color: currentColor;
    transform: rotate(45deg);
}

.close_lmp-line.vertical {
    transform: rotate(-45deg);
}

.schedule_list {
    margin-top: 1.25em;
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.schedule_list-item {
    display: flex;
    align-items: baseline;
    gap: 0.5em;
}

.schedule_list-item p {
    display: flex;
    flex-direction: column;
}

.close_lmp:hover {
    background-color: #ffffff1a;
}

@media (max-width: 992px) {
    .lmp_content {
        width: 100%;
        max-height: 90vh;
        overflow: auto;
        overflow-x: hidden;
    }

    .lmp_grid {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1.25em;
    }
}

/* Prop Desk CSS */
.pd_images {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 0.75em;
    margin: var(--site_padding) 0;
}

.pd_images img {
    width: 100%;
    flex-shrink: 1;
}

@media (max-width: 992px) {
    .p_card-flat--top {
        display: flex;
        flex-direction: column;
        gap: 1.25em;
    }

    .pd_images {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .pd_image:nth-child(n + 4) {
        display: none;
    }
}

@media (min-width: 992px) {
    .p_card-flat--top {
        display: flex;
        gap: 1.25em;
        align-items: flex-start;
    }

    .p_card.flat .p_card-thumb {
        width: 45%;
        height: auto;
        flex-shrink: 0;
    }

    .p_card-flat_right .p_card_button-wrap {
        margin-top: auto;
    }

    .p_card-flat_right {
        display: flex;
        flex-direction: column;
        gap: 2.5em;
        width: 100%;
    }

    .p_card.flat {
        min-height: auto;
    }
}

.light--blue_text--block {
    background-color: var(--liquidity_lagoon--lighter);
    padding: var(--site_padding);
}

.lmp_content.ind {
    padding: var(--site_padding);
    border: 0.06125em solid #d9d9d9;
    margin-top: 1.25em;
}

.lmp_ind-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25em;
    margin-bottom: 1.25em;
}

.lmp_ind--rules {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.5em;
    border: 0.06125em solid var(--dark_grey);
    color: var(--dark_grey);
    cursor: pointer;
    transition: all 0.25s var(--inOutSine);
    position: relative;
}

.lmp_content.ind .lmp_grid {
    display: grid;
    justify-content: space-between;
    gap: 1.25em;
    align-items: stretch;
    grid-template-columns: 1fr 0.1fr 1fr;
}

@media (max-width: 992px) {
    .lmp_content.ind {
        gap: 0;
    }
}

.lmp_ind--ups {
    display: flex;
    flex-direction: column;
    gap: 0.6125em;
}

.lmp_ind-ups--item {
    display: flex;
    align-items: center;
    gap: 0.375em;
}

.lmp_ind-ups--item svg {
    width: 1em;
    height: 1em;
}

.lmp_ind--line {
    width: 0.06125em;
    background-color: var(--light_grey);
    place-self: center;
    height: 100%;
}

.schedule_list.ind {
    margin: 0;
}

.lmp_ind--bottom {
    display: grid;
    grid-template-columns: 1fr 0.1fr 1fr;
    gap: 2.5em;
}

.lmp_ind--rules_popup {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    left: 50%;
    bottom: 100%;
    width: 175%;
    transform: translate(-50%, -0em);
    padding: 0.6125em;
    color: var(--market_shadow);
    background-color: #bbc0c7;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s var(--inOutQuart);
    z-index: 99;
}

.lmp_ind--rules.opened {
    color: var(--market_shadow) !important;
    background-color: var(--white) !important;
    border-color: var(--white) !important;
}

@media (min-width: 992px) {
    .lmp_ind--rules:hover {
        color: var(--white);
        background-color: var(--market_shadow);
        border-color: var(--market_shadow);
    }

    .lmp_ind--rules:hover .lmp_ind--rules_popup {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, -0.5em);
    }
}

.lmp_ind--rules.opened .lmp_ind--rules_popup {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -0.5em);
}

.lmp_ind--rules_popup svg {
    position: absolute;
    bottom: -0.24em;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5em;
    height: 0.25em;
    display: flex;
    color: #bbc0c7;
}

.lmp_ind--title {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

@media (max-width: 992px) {
    .lmp_ind-header {
        flex-direction: column;
        align-items: stretch;
    }

    .lmp_ind--rules {
        align-items: center;
        justify-content: center;
    }

    .lmp_content.ind .lmp_grid {
        display: flex;
        flex-direction: column;
        margin-bottom: 1.25em;
    }

    .lmp_ind--line {
        display: none;
    }

    .lmp_ind--rules_popup {
        width: 100%;
    }
}

.faq_block {
    background-color: #f6f6f6;
    padding: var(--site_padding);
    display: flex;
    flex-direction: column;
    gap: 2.5em;
    margin-top: 1.25em;
}

.faq_spacing {
    width: 100%;
    height: 1.25em;
}

.faq_item {
    padding-bottom: 0.9375em;
    position: relative;
}

.faq_line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.06125em;
    background-color: var(--light_grey);
}

.faq_line--inner {
    width: 0%;
    height: 100%;
    background-color: var(--market_shadow);
}

.faq_button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.9375em;
    gap: 2.5em;
}

.faq_icon {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 0.875em;
    height: 0.875em;
    flex-shrink: 0;
}

.faq_icon--line {
    position: absolute;
    width: 100%;
    height: 0.125em;
    background-color: var(--market_shadow);
}

.faq_icon--line.vertical {
    height: 100%;
    width: 0.125em;
}

.faq_content {
    width: 100%;
    overflow: hidden;
    max-width: 80%;
    color: var(--iron_horizon--darker);
}

.b12.dm_mono .h_split {
    line-height: 1.4;
    padding-bottom: 0;
}

.faq {
    border-bottom: 0.06125em solid var(--light_grey);
}

.assessment_status-block {
    color: var(--white);
    background-color: var(--market_shadow);
    padding: var(--site_padding);
}

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

.asb_line {
    width: 100%;
    height: 0.06125em;
    background-color: var(--dark_grey);
    margin: 1.25em 0;
}

.current_stats {
    display: flex;
    align-items: center;
    gap: 2em;
    margin-bottom: 3.75em;
}

.account_info {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.account_info img {
    width: 2em;
    height: 2em;
}

.account_info--wrap {
    gap: 2.5em;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.asb_buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5em;
    flex-shrink: 0;
}

.asb_buttons > * {
    align-items: center;
    justify-content: center;
}

.lmp_ind--rules.iron_horizon {
    border-color: var(--iron_horizon);
}

.asb_buttons .lmp_ind--rules.iron_horizon:hover {
    background-color: var(--white);
    color: var(--market_shadow) !important;
}

.asb_buttons .start_assessment-button.filled {
    background-color: var(--iron_horizon);
    color: var(--black);
    gap: 0.5em;
}

.asb_buttons .start_assessment-button.filled:hover {
    background-color: var(--white);
}

.stats_graph--wrap {
    width: 100%;
}

.stats_graph--wrap img {
    margin-top: 1.25em;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 992px) {
    .faq_content {
        max-width: 90%;
    }

    .stats_graph--wrap {
        width: 100vw;
        padding-left: var(--site_padding);
        padding-right: var(--site_padding);
        margin-left: calc(0em - var(--site_padding));
    }

    .stats_graph--wrap_inner {
        overflow: auto;
    }

    .stats_graph--wrap img {
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .current_stats {
        flex-direction: column;
        gap: 0.6125em;
        align-items: flex-start;
    }

    .account_info--wrap {
        flex-direction: column;
        gap: 1.25em;
    }

    .price_status {
        flex-direction: column;
        align-items: stretch;
        gap: 5em;
    }

    .price_status--title.mobile_only {
        display: flex;
        flex-direction: column;
        gap: 1.25em;
    }
}

.basic_button.cqg p {
    line-height: 1;
}

.basic_button.cqg {
    margin-top: 1.25em;
    background-color: transparent;
    padding: 0.6125em;
    color: var(--white);
    background-color: var(--market_shadow);
    justify-content: space-between;
}

.basic_button.cqg:hover {
    background-color: var(--liquidity_lagoon);
    color: var(--market_shadow);
}

.basic_button.cqg svg {
    color: var(--white);
    width: 0.75em;
    height: 0.75em;
    transition: all 0.25s var(--inOutSine) !important;
}

.basic_button.cqg:hover svg {
    color: var(--market_shadow);
    transform: translate(0.06125em, -0.06125em);
}

.basic_button.cqg svg > path {
    transition: none !important;
}

.reset_popup {
    position: fixed;
    padding: 0 var(--site_padding);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.ra_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #00000090;
}

.ra_content {
    width: 50%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    padding: 2.5em;
    padding-top: 0;
    background-color: var(--market_shadow);
}

.ra_body img {
    width: 20%;
}

.ra_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25em;
    width: calc(100% + 2.5em * 2);
    margin-left: calc(0em - 2.5em);
    padding: 0.6125em;
    padding-left: 2.5em;
}

.ra_close {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2em;
    height: 2em;
}

.ra_header--title {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    margin-top: var(--site_padding);
}

.ra_header .close_lmp {
    place-self: flex-start;
}

.price--image {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.color--white {
    color: var(--white);
}

@media (max-width: 992px) {
    .ra_content {
        width: 100%;
    }

    .ra_header--title {
        max-width: none;
        margin-bottom: 2.5em;
    }

    .ra_body img {
        display: none;
    }
}

.cancel_popup {
    position: fixed;
    padding: 0 var(--site_padding);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}

.cp_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #00000090;
}

.cp_content {
    width: 50%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    padding: var(--site_padding);
    padding-top: 0;
    background-color: var(--white);
}

.cp_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25em;
    width: calc(100% + var(--site_padding) * 2);
    margin-left: calc(0em - var(--site_padding));
    border-bottom: 0.06125em solid var(--light_grey);
    padding: 0.6125em;
    padding-left: var(--site_padding);
}

.cp_headline {
    margin-top: 1.25em;
}

.cancelation_info {
    margin-bottom: 3.75em;
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.cp_list {
    margin: 0;
    padding-left: 1.5em;
}

.ci_buttons {
    display: flex;
    flex-direction: column;
    gap: 0.3125em;
}

.ca_buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6125em;
}

.close_lmp.cp {
    place-self: flex-start;
}

@media (max-width: 992px) {
    .cp_content {
        width: 100%;
    }

    .ca_buttons {
        display: flex;
        flex-direction: column;
    }
}

.search_bar-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 33.333333%;
}

@media (min-width: 1660px) {
    .search_bar-wrap {
        width: 25%;
    }
}

@media (max-width: 992px) {
    .search_bar-wrap {
        width: 100%;
    }
    .search_bar {
        padding: 14px !important;
    }
}

.search_bar-wrap {
    height: 100%;
}

.search_bar {
    height: 100%;
    padding: 8px;
    border: 1px solid var(--iron_horizon--darkested);
    padding-left: 0.8em !important;
    background-color: var(--market_shadow);
}

.section_title.smaller {
    padding: 0.9375em;
}

.section_title.smaller .button {
    max-height: 1.875em;
}

.search_bar-wrap svg {
    position: absolute;
    right: 0.6125em;
    pointer-events: none;
}

.observations--title-section {
    display: flex;
    gap: 0.45em;
    flex-direction: column;
}

.observations--link {
    position: relative;
    width: max-content;
    transition: all 0.25s var(--inOutSine);
}

.observations--link:hover {
    color: var(--iron_horizon--lighter) !important;
}

.category {
    padding: 0.6125em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    background-color: #ffffff0d;
    color: var(--iron_horizon--lighter);
    backdrop-filter: blur(0.5em);
    text-decoration: none;
    transition: all 0.25s var(--inOutSine);
    border-radius: 2px;
    border: 0.06125em solid var(--iron_horizon--darkested);
}

.category.smaller {
    padding: 0.3215em 0.5em;
}

.dev_categories {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0.425em;
}

a.category:hover {
    background-color: #ffffff1d !important;
    color: var(--iron_horizon--lighter) !important;
    border-color: var(--iron_horizon--darkest) !important;
}

.category.active {
    color: var(--market_shadow);
    background-color: var(--liquidity_lagoon);
}

.category.active:hover {
    color: var(--market_shadow) !important;
    background-color: var(--liquidity_lagoon) !important;
}

.dev_block {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    padding: 1.25em;
    background-color: #ffffff0a;
    text-decoration: none;
    backdrop-filter: blur(0.5em);
    border-radius: 2px;
    border: 1px solid var(--iron_horizon--darkested);
}

.dev_block.members--only {
    cursor: not-allowed;
}

.dev_block img {
    transition: all 0.45s var(--inOutQuad);
}

a.dev_block:not(.members--only):hover img {
    transform: scale(1.08);
}

.dev_archive--list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25em;
}

.dev_archive--list.desk_trader {
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    .dev_archive--list {
        grid-template-columns: 1fr;
    }
}

.dev_thumb {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dev_thumb img {
    border-radius: 2px;
}

.categories--date {
    display: flex;
    justify-content: space-between;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.dev_thumb .play_btn {
    position: absolute;
    color: var(--white);
    mix-blend-mode: difference;
    z-index: 1;
    width: 1.5em;
    height: 1.25em;
}

.dev_link {
    margin-top: 1.875em;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 0.3125em;
    margin-top: 3.75em;
}

.pagination_pages {
    display: flex;
    align-items: baseline;
    gap: 0.3125em;
}

.pagination_page {
    min-width: 1.75em;
    min-height: 1.75em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.06125em solid var(--iron_horizon--darkested);
    padding: 0 0.6125em;
    cursor: pointer;
    transition: all 0.25s var(--inOutSine);
    border-radius: 2px;
}

.pagination_page.active,
.pagination_page:hover {
    background-color: var(--liquidity_lagoon);
    color: var(--market_shadow);
}

.pagination_arrow {
    min-width: 1.75em;
    min-height: 1.75em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.6125em;
    cursor: pointer;
    transition: all 0.25s var(--inOutSine);
    background-color: #ffffff0a;
    color: white;
    border-radius: 2px;
    backdrop-filter: blur(0.5em);
}

.pagination_arrow:hover {
    color: var(--liquidity_lagoon);
    background-color: #ffffff1b;
}

.members_only {
    position: absolute;
    padding: 0.3125em 0.5em;
    top: 0.5em;
    left: 0.5em;
    display: flex;
    z-index: 2;
    align-items: center;
    justify-content: center;
    gap: 0.3125em;
    background-color: var(--liquidity_lagoon);
}

.members_only p {
    line-height: 1;
}

.members_only svg {
    display: flex;
    width: 0.6125em;
    height: 0.6125em;
}

.section_title.dev {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.section_title.dev .button {
    width: 40%;
}

.observations--header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 4em;
}

@media (max-width: 992px) {
    .observations--header {
        flex-direction: column;
        gap: 2em;
    }
}

@media (min-width: 1660px) {
    .section_title.dev .button {
        width: 25%;
    }
}

@media (max-width: 420px) {
    .section_title.dev {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25em;
    }
}

@media (max-width: 992px) {
    .section_title.dev .button {
        width: 100%;
    }
}

.p_card-thumb {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.p_card.disabled > *:not(.p_card-thumb) {
    pointer-events: none;
}

.p_card.disabled {
    cursor: not-allowed;
}

.p_card.disabled .button,
.p_card.disabled .p_card-thumb > img {
    filter: blur(0.5em);
}

.p_card.disabled .p_card-thumb > img {
    transform: scale(1.2);
}

.color--ih-darker {
    color: var(--iron_horizon--darker);
}

.bh_price--date {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
}

.disabled_text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
    background-color: var(--liquidity_lagoon--lighter);
    text-align: center;
    padding: 0.6125em;
}

.reg_link.download {
    display: flex;
    gap: 0.25em;
    align-items: center;
    text-decoration: none;
    padding: 0.25em;
    padding-left: 0.45em;
    border-radius: 2px;
}

.reg_link.download:hover {
    background-color: #ffffff0a;
    color: var(--white);
    transition: all 0.3s ease-in-out;
}

.cancel-subscription {
    color: var(--iron_horizon--darker);
}

.course_block {
    color: var(--white);
    padding: var(--site_padding);
    background-color: var(--market_shadow);
    margin-bottom: 2.5em;
}

.course_header {
    display: flex;
    align-items: center;
    gap: 1.25em;
}

.course_line {
    width: 100%;
    height: 0.06125em;
    margin: var(--site_padding) 0;
    background-color: var(--dark_grey);
}

.course_content {
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr 1fr;
    gap: var(--site_padding);
}

.cc_text {
    display: flex;
    flex-direction: column;
    gap: 0.6125em;
    margin-bottom: 1.25em;
}

.cc_text .accent {
    margin-bottom: 1.875em;
}

@media (max-width: 992px) {
    .course_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5em;
    }

    .course_content {
        display: flex;
        flex-direction: column;
    }
}

.course_modules {
    margin-top: 2.5em;
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.c_module {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.c_module--inner {
    padding: var(--site_padding);
    border: 0.06125em solid var(--market_shadow);
}

.cm_header {
    display: flex;
    justify-content: space-between;
    gap: 1.25em;
}

.view_details {
    flex-shrink: 0;
}

.cm_title {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    margin-bottom: 2.5em;
}

.cm_video {
    width: 30%;
    margin-bottom: 2.5em;
}

.cm_description {
    margin-bottom: 1.875em;
}

.cm_content {
    display: flex;
    flex-direction: column;
    gap: 1.875em;
    overflow: hidden;
    margin-top: 1.25em;
}

.cm_content-part {
    padding-top: 1.25em;
    border-top: 0.06125em solid var(--light_grey);
}

.cm_activity--topic {
    display: flex;
    align-items: center;
    gap: 1.25em;
    margin-bottom: 1.25em;
}

.cm_list {
    padding-left: 1.25em;
    margin: 1.25em 0;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .cm_video {
        width: 50%;
    }

    .cm_activity--topic {
        flex-wrap: wrap;
        row-gap: 0.5em;
    }
}

.view_details .reg_link {
    cursor: pointer;
}

.cm_bottom--text {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    margin-top: 2.5em;
}

.course_overall {
    padding: var(--site_padding);
    border: 0.06125em solid var(--light_grey);
    background-color: #f5f5f5;
    margin-top: 1.875em;
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.co_img {
    display: flex;
}

.co_block {
    padding-top: 1.25em;
    border-top: 0.06125em solid var(--light_grey);
}

.co_blocks-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    padding-bottom: 1.25em;
    border-bottom: 0.06125em solid var(--light_grey);
}

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

.mt20 {
    margin-top: var(--site_padding);
}

.lmp_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25em;
    width: calc(100% + var(--site_padding) * 2);
    margin-left: calc(0em - var(--site_padding));
    border-bottom: 0.06125em solid var(--light_grey);
    padding: 0.6125em;
    padding-left: var(--site_padding);
}

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

.lmp_content .p_card_button-wrap {
    margin-top: 1.25em;
}

.lmp_grid--left {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5em;
}

.asb_buttons .basic_button:hover {
    background-color: var(--white);
    color: var(--market_shadow);
}

.course_content .p_card_button-wrap {
    margin-top: 1.25em;
}

@media (min-width: 1440px) {
    .cm_bottom--text {
        width: 70%;
    }
}

.lesson_title {
    display: flex;
    align-items: center;
    margin-top: 0.9375em;
    justify-content: space-between;
    margin-bottom: 2.5em;
}

.lesson_video {
    display: flex;
}

.lesson_notes {
    margin-top: 2.5em;
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    margin-bottom: 3.125em;
}

.note_block {
    display: flex;
    gap: 1.25em;
    padding: var(--site_padding);
    background-color: #f5f5f5;
    border: 0.06125em solid var(--light_grey);
}

.note_block svg {
    flex-shrink: 0;
}

.note_content {
    display: flex;
    flex-direction: column;
    gap: 0.6125em;
}

.lesson_downloadable {
    display: flex;
    align-items: flex-start;
    margin-top: 0.9375em;
    gap: 1.25em;
    padding: var(--site_padding);
    background-color: #f5f5f5;
    border: 0.06125em solid var(--light_grey);
    position: relative;
}

.ld_content {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.ld_file--type {
    position: absolute;
    top: var(--site_padding);
    right: var(--site_padding);
}

.ld_cats {
    display: flex;
    align-items: center;
    gap: 0.3125em;
    max-width: 70%;
    flex-wrap: wrap;
}

.ld_cats a.category:hover {
    background-color: var(--market_shadow);
}

.ld_cats .category {
    padding: 0.25em;
    background-color: #d9d9d9;
}

@media (max-width: 992px) {
    .lesson_title {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25em;
    }

    .lesson_downloadable {
        flex-direction: column;
    }

    .ld_file--type {
        position: relative;
        right: auto;
        top: auto;
        order: 2;
    }

    .ld_content {
        order: 3;
    }

    .ld_cats {
        max-width: none;
    }
}

.course_overall.course_progress-overall {
    background-color: transparent;
}

.course_progress--line {
    position: relative;
    width: 100%;
    height: 0.25em;
    background-color: var(--silver);
}

.course_progress--line_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 47%;
    height: 100%;
    background-color: var(--liquidity_lagoon);
}

.cp_block {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    padding-bottom: 1.25em;
    border-bottom: 0.06125em solid var(--light_grey);
    margin-bottom: 1.25em;
}

.cp_block:last-child {
    margin-bottom: 0;
}

.cp_parts p {
    color: #6d747d;
    transition: all 0.25s var(--inOutSine);
    cursor: pointer;
    padding: 0.375em 0;
}

.cp_parts p.passed {
    color: var(--market_shadow);
}

.cp_parts p:hover {
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.cp_parts p.active {
    color: var(--market_shadow);
    background-color: var(--liquidity_lagoon--lighter);
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.cp_sub-parts {
    margin-left: 2.5em;
}

.cp_parts p:not(.active):hover {
    background-color: var(--light_grey);
}

.lmp_ind--rules.opened {
    background-color: var(--market_shadow);
    color: var(--white);
}

.faq_content p {
    font-size: var(--b14) !important;
}

.faq_content .h_split {
    line-height: 1.4 !important;
}

.course_content--left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

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

@media (max-width: 992px) {
    .course_overall.course_progress-overall {
        margin-top: 0;
    }

    .cp_overall--wrap.mobile_only {
        display: flex;
        flex-direction: column;
        gap: 1.25em;
        width: calc(100% + var(--site_padding) * 2);
        margin-left: calc(0em - var(--site_padding));
        padding: var(--site_padding);
        padding-top: 0;
        border-bottom: 0.06125em solid var(--light_grey);
        margin-bottom: 1.25em;
    }

    .cp_steps_overall--wrap {
        overflow: hidden;
        margin-bottom: calc(0em - var(--site_padding));
    }
}

.basic_button.open_modules.transparent,
.basic_button.open_modules.transparent:hover {
    align-items: center;
    justify-content: center;
    color: var(--iron_horizon--darker);
    background-color: transparent;
    border-color: var(--iron_horizon--darker);
}

.basic_button.open_modules .basic_button-text {
    display: flex;
    align-items: center;
    gap: 0.6125em;
}

.open_modules--icon {
    width: 0.75em;
    height: 0.75em;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.om_line {
    width: 100%;
    height: 0.125em;
    background-color: currentColor;
    position: absolute;
    transition: all 0.25s var(--inOutSine);
}

.om_line.vertical {
    width: 0.125em;
    height: 100%;
}

.basic_button.open_modules .basic_button-text::before {
    content: "Open Modules";
}

.basic_button.open_modules.opened {
    background-color: var(--iron_horizon--lighter) !important;
    border-color: var(--iron_horizon--lighter) !important;
    color: var(--market_shadow) !important;
}

.basic_button.open_modules.opened .basic_button-text::before {
    content: "Close Modules";
}

.basic_button.open_modules.opened .om_line.vertical {
    height: 0%;
}

.basic_button.mark_complete p {
    display: flex;
    align-items: center;
    gap: 0.6125em;
}

.basic_button.mark_complete {
    align-items: center;
    justify-content: center;
    border-color: var(--market_shadow) !important;
    background-color: transparent !important;
}

@media (max-width: 992px) {
    .lesson_brief--desc {
        margin-bottom: 1.25em;
    }
}

.category.blue {
    background-color: var(--liquidity_lagoon--lighter);
}

.lesson_downloadable.desk_trader .ld_content {
    max-width: none;
    gap: 0.9375em;
}

.lesson_downloadable.desk_trader {
    padding: 0.9375em;
}

.live_date {
    display: flex;
    align-items: center;
    gap: 0.6125em;
}

.live_link--date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25em;
    border-bottom: 0.06125em solid var(--dark_grey);
}

@media (min-width: 1440px) {
    .ld_content {
        max-width: 50%;
    }
}

.ld_img {
    min-width: 18.75em;
}

.scheduled {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
}

.scheduled svg {
    flex-shrink: 0;
    margin-top: 0.125em;
}

@media (max-width: 992px) {
    .pm_content--pw .info_message {
        margin-top: 0;
    }
}

.p_card--horizontal--content {
    display: flex;
    gap: 1.25em;
    align-items: flex-start;
}

.p_card--horizontal--content .p_card-thumb {
    width: 100%;
}

@media (min-width: 992px) {
    .p_card--horizontal--content .p_card-thumb {
        width: 18.75em;
        flex-shrink: 0;
    }

    .p_card.horizontal .p_card-title {
        width: 40%;
    }

    .p_card--horizontal--content.article .p_card-title {
        width: 50%;
    }

    .p_card-horizontal__date {
        position: absolute;
        top: var(--site_padding);
        right: var(--site_padding);
    }
}

.p_card.horizontal .p_card-title {
    margin-bottom: 0;
}

.p_card.horizontal .p_card-title .p_card_button-wrap {
    margin-top: auto;
}

.p_card.horizontal {
    position: relative;
    min-height: auto;
}

@media (max-width: 992px) {
    .p_card--horizontal--content {
        flex-direction: column;
        gap: 0.9375em;
    }
}

@media (min-width: 992px) {
    .section_title.article {
        align-items: center;
    }
}

.article_thumbnail {
    margin-bottom: 1.25em;
}

@media (min-width: 1660px) {
    .article_body {
        max-width: 80%;
    }
}

.article_body {
    margin-top: 1.875em;
}

.read_also {
    margin-top: 3.75em;
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.article_body h2,
.article_body h3,
.article_body h4,
.article_body h5 {
    margin-bottom: 1.875rem;
}

.article_body p {
    font-size: var(--b18);
    line-height: 1.4;
    margin-bottom: 2.5rem;
}

blockquote {
    padding: 0.875em var(--site_padding);
    margin: 2.5em 0;
    border-left: 0.375em solid var(--market_shadow);
}

blockquote p {
    font-size: 1.5em !important;
    margin-bottom: 0 !important;
    font-weight: var(--bold) !important;
}

.article_body ul {
    padding-left: 2.5em;
    display: flex;
    flex-direction: column;
    gap: 0.3125em;
    margin: 2.5em 0;
}

@media (max-width: 992px) {
    .b14_mobile {
        font-size: var(--b14) !important;
        line-height: 1.4 !important;
    }
}

.schedule_list-wrap .p_card_button-wrap {
    margin-top: 2.5em;
}

.validation_message {
    border-radius: var(--global_br);
    padding: 0.875em;
    border-left: 0.25em solid currentColor;
}

.validation_message--wrap {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    margin-top: 1.25em;
}

.validation_message.error {
    background-color: #ff17001a;
    backdrop-filter: blur(0.5em);
}

.validation_message.success {
    background-color: #00b5481a;
    backdrop-filter: blur(0.5em);
}

.validation_message.warning {
    background-color: #ca71301a;
    backdrop-filter: blur(0.5em);
}

input.valid {
    border-color: var(--success) !important;
    outline-color: var(--success) !important;
}

input.invalid {
    border-color: var(--error) !important;
    outline-color: var(--error) !important;
}

.dev_block.members--only img,
.dev_block.members--only video {
    filter: blur(0.5em);
    transform: scale(1.2);
}

.cp--progress {
    display: flex;
    flex-direction: column;
    gap: 0.6125em;
}

.lesson_video.dev_video {
    flex-direction: column;
    gap: 1.25em;
}

.dev_video--title {
    margin-bottom: 0.6125em;
}

.related_content {
    margin-top: 3.75em;
}

@media (min-width: 992px) {
    .related_content .dev_archive--list {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.button_states {
    display: flex;
    width: 50%;
    flex-direction: column;
    gap: 1.25em;
}

@media (max-width: 992px) {
    .button_states {
        width: 100%;
    }
}

.dots {
    display: flex;
    align-items: center;
    gap: 0.25em;
}

.dot {
    width: 0.25em;
    height: 0.25em;
    background-color: var(--white);
    animation: dots 1s linear infinite;
}

@keyframes dots {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.1;
    }
}

.loading_icon svg {
    width: 1.25em;
    height: 1.25em;
    display: flex;
    animation: loadingRotate 1s linear infinite;
}

@keyframes loadingRotate {
    100% {
        transform: rotate(360deg);
    }
}

.button.disabled {
    cursor: not-allowed;
    user-select: none;
    opacity: 0.2;
}

.button.disabled .button_animation--lines {
    display: none !important;
}

.button.d_anim .button_animation--lines {
    display: none !important;
}

.pick_platform {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6125em;
}

.pf_wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.pf_button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
    border: 0.06125em solid var(--iron_horizon--darkest);
    padding: 1em 1.5em;
    cursor: pointer;
    outline: 0.06125em solid transparent;
    transition: all 0.35s var(--inOutCubic);
    width: 100%;
    border-radius: var(--global_br);
    min-height: 5em;
}

.pfb_content {
    display: flex;
    flex-direction: column;
    gap: 0.25em;
}

.pfb_icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 2.1875em;
}

.platform_selection-wrap {
    max-width: 40%;
    margin: 0 auto;
}

.pf_button.active {
    outline-color: var(--liquidity_lagoon);
    border-color: var(--liquidity_lagoon);
}

.pf_button.active,
.pf_button:hover {
    background-color: #ffffff0a;
}

.confirm_platform {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

@media (max-width: 992px) {
    .pf_button {
        background-color: #ffffff0d;
        backdrop-filter: blur(0.5em);
    }
}

.vertical_line--animated {
    justify-content: center;
    align-items: stretch;
    margin-top: 2.5em;
    margin-bottom: 2.5em;
    display: flex;
}

.vertical_line--animated.nm {
    margin-top: 0;
    margin-bottom: 0;
}

.v_line {
    background-color: #26292b;
    width: 0.125em;
    height: 5em;
    position: relative;
    overflow: hidden;
}

.v_line--inner {
    background-image: linear-gradient(#fff0, #fff 50%, #fff0);
    width: 100%;
    height: 50%;
    position: absolute;
    top: 0%;
    left: 0;
    transform: translate(0, -100%);
}

.v_line--inner {
    animation: loopThrough 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes loopThrough {
    from {
        top: 0%;
    }

    to {
        top: 150%;
    }
}

.check_email {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    max-width: 60%;
}

@media (max-width: 992px) {
    .check_email {
        max-width: none;
    }

    .centered--content {
        grid-column: 1 / 13;
    }
}

.ta_left {
    text-align: left !important;
}

.icon_input--wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.icon_input--wrap input {
    padding-left: 2.5em;
}

.icon_input--wrap svg {
    position: absolute;
    left: 0.75em;
}

input[type="month"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.label_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.secure_payments {
    display: flex;
    align-items: center;
    gap: 0.5em;
    justify-content: center;
}

.verified_wrap {
    display: flex;
    align-items: center;
    gap: 2em;
}

.verified_rect.inactive {
    height: 0.06125em;
    width: 0.5em;
    vertical-align: middle;
}

.verified_rect {
    width: 0.375em;
    height: 0.75em;
    margin: 0 0.125em;
    background-color: currentColor;
    display: inline-block;
}

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

.price_text {
    display: flex;
    align-items: baseline;
}

.aps {
    display: flex;
    align-items: stretch;
    gap: 1em;
    border: 0.06125em solid #292929;
    padding: 1em;
    background-color: #ffffff0a;
    backdrop-filter: blur(0.5em);
}

.aps_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1em;
}

.aps .assessment_lottie {
    flex-shrink: 0;
}

.total_sum {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.aps_wrap {
    display: flex;
    flex-direction: column;
    gap: 0.6125em;
    margin-top: 1.25em;
}

.mt_auto {
    margin-top: auto;
}

.mt_20 {
    margin-top: 1.25em;
}

.main_button.iron .main--button_text {
    color: var(--iron_horizon--darker);
}

.main_button {
    cursor: pointer;
    backdrop-filter: blur(0.5em);
    color: var(--white);
    background-color: #ffffff0d;
    border-style: none;
    justify-content: center;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 14.375em;
    margin-right: 0;
    padding: 1em 2em;
    line-height: 1;
    text-decoration: none;
    transition-property: background-color;
    transition-duration: 0.35s;
    transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
    display: flex;
    position: relative;
}

.main_button:hover {
    background-color: #ffffff1a;
}

.main_button.pagination {
    font-size: 1em;
}

.main_button.submit {
    width: auto;
    min-width: auto;
}

.button_border-tr {
    border-top: 0.125em solid #fff;
    border-right: 0.125em solid #fff;
    width: 0.5em;
    height: 0.55em;
    position: absolute;
    top: 0%;
    right: 0%;
}

.button_border-tl {
    border-top: 0.125em solid #fff;
    border-left: 0.125em solid #fff;
    width: 0.5em;
    height: 0.55em;
    position: absolute;
    top: 0%;
    left: 0;
}

.button_border-br {
    border-bottom: 0.125em solid #fff;
    border-right: 0.125em solid #fff;
    width: 0.5em;
    height: 0.55em;
    position: absolute;
    bottom: 0;
    right: 0%;
}

.button_border-bl {
    border-bottom: 0.125em solid #fff;
    border-left: 0.125em solid #fff;
    width: 0.5em;
    height: 0.55em;
    position: absolute;
    bottom: 0;
    left: 0;
}

.main--button_text {
    color: var(--liquidity_lagoon);
    font-family: var(--bdo);
    font-size: 0.75em;
    font-weight: 500;
}

.button_borders {
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0%;
}

.button_borders * {
    transition: width 0.5s cubic-bezier(0.55, 0.28, 0.12, 1.07),
        height 0.5s cubic-bezier(0.55, 0.28, 0.12, 1.07),
        border-color 0.5s cubic-bezier(0.55, 0.28, 0.12, 1.07);
}

.main_button:hover .button_borders * {
    width: 0.875em;
    height: 0.875em;
    border-color: #75fbf4;
}

.ah_content {
    display: flex;
    align-items: flex-start;
    gap: 1.25em;
}

.ah__content {
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.account__info {
    display: flex;
    flex-direction: column;
    margin-top: 0.6125em;
    gap: 0.5em;
}

.ai_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 2em;
    align-items: center;
}

.ai_block--info {
    display: flex;
    align-items: baseline;
    gap: 0.5em;
}

.small_dark--button {
    display: flex;
    align-items: center;
    gap: 0.25em;
    padding: 0.25em 0.375em;
    background-color: #ffffff0a;
    text-decoration: none;
    border-radius: var(--global_br);
    border: 0.06125em solid #23262b;
    backdrop-filter: blur(0.5em);
    width: fit-content;
    transition: all 0.15s var(--inOutSine);
}

.small_dark--field {
    display: flex;
    align-items: center;
    gap: 0.25em;
    padding: 0.25em 0.375em;
    background-color: #ffffff0a;
    text-decoration: none;
    border-radius: var(--global_br);
    border: 0.06125em solid #23262b;
    backdrop-filter: blur(0.5em);
    width: fit-content;
    transition: all 0.15s var(--inOutSine);
}

.small_dark--button:hover {
    background-color: #ffffff1d !important;
    color: var(--iron_horizon--lighter) !important;
    border-color: var(--iron_horizon--darkest) !important;
}

.phase_stats--blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 1.25em;
    margin: 1.25em 0;
}
.phase_info {
    display: flex;
    align-items: flex-start;
    gap: 0.6125em;
}

.phase_info svg {
    flex-shrink: 0;
}
.phase_stats {
    margin-top: 1.875em;
    padding: 1.875em;
    background-color: #d9d9d90d;
    backdrop-filter: blur(20px);
}

.psb {
    padding: 1.25em;
    border: 0.06125em solid #292929;
    display: flex;
    flex-direction: column;
    gap: 0.75em;
    align-items: stretch;
    border-radius: 0.125em;
}
.psb > p {
    line-height: 1.3;
}
.phase_info p {
    line-height: 1.3;
}
.psb_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: auto;
}

.psb__title {
    display: flex;
    align-items: center;
    gap: 0.5em;
    color: var(--liquidity_lagoon);
}

.psb_info--icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.125em;
    height: 2.125em;
    background-color: #ffffff0a;
    border-radius: 50%;
    color: var(--iron_horizon--darker);
}

.psb_info--icon svg {
    width: 50%;
    height: 50%;
    flex-shrink: 0;
}

.psb_info--tooltip {
    position: absolute;
    bottom: 100%;
    padding: 0.75em;
    background-color: var(--market_shadow);
    width: max-content;
    z-index: 99;
    border: 0.06125em solid var(--iron_horizon--darkest);
    opacity: 0;
    transform: translateY(0.6125em);
    transition: all 0.25s var(--inOutSine);
    display: flex;
    flex-direction: column;
    gap: 1.25em;
    pointer-events: none;
    border-radius: 2px;
}

.psb:first-child {
    z-index: 1;
}

.psb_info--icon:hover .psb_info--tooltip {
    transform: translateY(0em);
    opacity: 1;
}

.psb_info--icon:hover {
    color: var(--liquidity_lagoon);
}

.psb_info--tooltip p {
    color: var(--iron_horizon--darker);
}

.psb_price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    margin-top: 1.25em;
}

.psb_progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.progress_line {
    display: block;
    width: 0.06125em;
    height: 1.125em;
    background-color: var(--iron_horizon--darkest);
}

.progress_line.active {
    background-color: #4b79ff;
}

.psb_progress.td .progress_line.active {
    background-color: var(--success);
}

@media (max-width: 992px) {
    .psb_price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6125em;
    }

    .phase_stats--blocks {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .psb_info--tooltip {
        right: 0;
    }

    .ah_content {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .assessment_header {
        flex-direction: column;
    }

    .ai_block {
        align-items: flex-start;
        display: flex;
        gap: 0.25em;
        flex-direction: column;
    }

    .account__info {
        gap: 1em;
        width: 100%;
        margin-bottom: 2em;
    }
}

.phase_2--section {
    margin-top: 2em;
}

.phase_2--line {
    width: 100%;
    height: 0.06125em;
    background-color: var(--iron_horizon--darkested);
    margin: 0.75em 0;
}

.phase_2--stats {
    margin-top: 2.5em;
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.stats_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25em;
}

.stats_grid.two_col {
    grid-template-columns: repeat(2, 1fr);
}

.stats_grid img {
    pointer-events: none;
    cursor: not-allowed;
    user-select: none;
    filter: blur(0.25em);
}

@media (max-width: 992px) {
    .stats_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats_grid.two_col {
        grid-template-columns: repeat(1, 1fr);
    }

    .profile_dropdown {
        background-color: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

    .profile_dd .user_dd p {
        font-size: var(--b14) !important;
    }

    .ah_content {
        gap: 2em;
    }
}

.blue_link {
    width: fit-content;
    grid-column-gap: 0.125em;
    grid-row-gap: 0.125em;
    color: var(--liquidity_lagoon);
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    font-family: BDO Grotesk, Arial, sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.55, 0.28, 0.12, 1.07);
    display: flex;
}

.blue_link:hover {
    color: var(--white);
}

.blue_link--line {
    background-color: currentColor;
    width: 100%;
    height: 0.06125em;
}

.blue_link--text {
    letter-spacing: 0.1px;
    font-size: 0.75em;
}

.blue_link:hover .blue_link--line {
    transform: scaleX(0.65);
}

.blue_link--line {
    transition: transform 0.5s cubic-bezier(0.55, 0.28, 0.12, 1.07);
}

.passed_limit {
    padding: 1.125em;
    display: grid;
    align-items: stretch;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    background-color: #ffffff0d;
    backdrop-filter: blur(20px);
    position: fixed;
    bottom: 2.5em;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 9999999;
    border: 0.06125em solid #2b2d30;
    border-radius: var(--global_br);
}

.pl_content {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.passed_limit--overlay {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 50;
    background: linear-gradient(0deg, #080a10 0%, #080a1000 100%);
    backdrop-filter: blur(2px);
}

.free_reset {
    margin-top: 6.25em;
}

.search_bar::placeholder {
    font-size: var(--b14);
}
.csp_title {
    color: var(--iron_horizon--darker);
    display: flex;
    flex-direction: column;
}

.csp_button--wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    margin-top: 1.875em;
}

@media (max-width: 600px) {
    .csp_button--wrap {
        grid-template-columns: 1fr;
        gap: 1em;
    }
}

.mb-10 {
    margin-bottom: 0.625em;
}

.mwa {
    min-width: auto !important;
    width: 100%;
}
.form_inputs--title_wrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.card_icons {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 0.75em;
}

.card_icons img {
    width: auto;
    height: 100%;
    object-fit: contain;
    max-height: 1em;
}
.dashboard_loading {
    padding: 0.6125em;
    border-radius: var(--global_br);
    background-color: #ffffff0a;
    backdrop-filter: blur(0.5em);
    border: 0.06125em solid var(--iron_horizon--darkested);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}

.dl_squares {
    display: flex;
    align-items: center;
    gap: 0.125em;
}

.dl_squares > * {
    width: 0.25em;
    height: 0.25em;
    background-color: var(--white);
    display: block;
    animation: loadingSquares 2s linear infinite;
}
.dl_squares > *:nth-child(2) {
    animation-delay: 0.15s;
}
.dl_squares > *:nth-child(3) {
    animation-delay: 0.3s;
}
.dl_squares > *:nth-child(4) {
    animation-delay: 0.45s;
}
.dl_squares > *:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes loadingSquares {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.cqg_rp--img {
    width: 3.125em;
    height: 3.125em;
    display: flex;
}
.pib_wrap {
    margin-top: 1.875em;
    display: flex;
    flex-direction: column;
    gap: 1.25em;
}

.phase_info--buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6125em;
}

.pib {
    padding: 1em;
    border-radius: 0.125em;
    border: 0.06125em solid #15171c;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 20;
    transition: all 0.15s var(--inOutSine);
    background-color: var(--market_shadow);
}

.pib_title {
    display: flex;
    align-items: center;
    gap: 0.6125em;
}

.pib_title svg {
    flex-shrink: 0;
}

.pib_info {
    padding: 1.25em 1em;
    position: absolute;
    bottom: 100%;
    left: 0;
    background-color: #111218;
    color: var(--iron_horizon--lighter);
    border: 0.06125em solid #1e1e1e;
    backdrop-filter: blur(20px);
    border-radius: 0.125em;
    opacity: 0;
    pointer-events: none;
    transition: all 0.15s var(--inOutSine);
}
.pib_info p {
    line-height: 1.3;
}
.pib_icon {
    flex-shrink: 0;
}
@media (min-width: 992px) {
    .pib:hover {
        background-color: #d9d9d90d;
        border-color: #1e1e1e;
        backdrop-filter: blur(20px);
    }

    .pib:hover .pib_info {
        transform: translateY(-0.5em);
        opacity: 1;
    }

    .pib:hover .pib_icon {
        color: var(--liquidity_lagoon);
    }
}
.phase_two--info {
    margin-top: 2.5em;
    padding-top: 2.5em;
    border-top: 0.06125em solid var(--iron_horizon--darkested);
}
.phase_two--block svg {
    flex-shrink: 0;
}
.phase_two--block {
    padding: 1.75em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.6125em;
    background-color: #7777770d;
    backdrop-filter: blur(20px);
    border-radius: 0.125em;
}
@media (max-width: 992px) {
    .phase_two--block svg {
        width: 2.5em;
        height: 2.5em;
    }
    .phase_two--block {
        flex-direction: column;
    }
    .phase_info--buttons {
        display: flex;
        flex-direction: column;
    }
    .pib {
        background-color: #d9d9d90d;
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0.6125em;
        align-items: flex-start;
    }
    .pib_icon {
        display: none;
    }
    .pib_info {
        position: relative;
        opacity: 1;
        transform: translate(0);
        bottom: auto;
        left: auto;
        padding: 0;
        border: none;
        background-color: transparent;
        backdrop-filter: none;
    }
    .phase_stats {
        padding: 1.25em;
    }
}
.pl_title {
    display: flex;
    align-items: center;
    gap: 0.6125em;
}

.pl_info {
    display: flex;
    flex-direction: column;
    gap: 1.375em;
    padding-left: 1.9375em;
}

@media (min-width: 1440px) {
    .pl_content {
        max-width: 70%;
    }
}

.reset_col {
    justify-self: flex-end;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: end;
    align-items: flex-end;
}

.reset_col a {
    width: fit-content;
}
@media (max-width: 992px) {
    .passed_limit {
        width: calc(100% - 2.5em);
        display: flex;
        flex-direction: column;
        gap: 1.25em;
        align-items: stretch;
        bottom: 1.25em;
    }
    .pl_content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6125em;
    }
    .pl_info {
        padding-left: 0;
    }
    .pl_title svg {
        flex-shrink: 0;
    }
    .reset_col {
        justify-self: auto;
        text-align: left;
        align-items: flex-start;
        gap: 0.6125em;
    }
    .reset_col a {
        width: 100%;
        align-items: center;
        padding: 0.5em;
        justify-content: center;
    }
}
.csp_choice {
    display: flex;
    align-items: center;
    padding: 1em;
    border-radius: 0.125em;
    border: 0.06125em solid #2d2d2d;
    gap: 0.6125em;
    justify-content: space-between;
    transition: all 0.25s var(--inOutCubic);
    cursor: pointer;
}

.csp_choice--content {
    display: flex;
    flex-direction: column;
    gap: 0.375em;
}

.csp_choice--checkbox {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.125em;
    height: 1.125em;
    border-radius: 0.125em;
    border: 0.125em solid #727983;
    color: var(--market_shadow);
    transition: all 0.25s var(--inOutCubic);
}

.csp_choice.active .csp_choice--checkbox {
    background-color: var(--liquidity_lagoon);
    border-color: var(--liquidity_lagoon);
}

.csp_choice.active .csp_choice--checkbox svg {
    transform: scale(0.9);
}

.csp_choice--checkbox svg {
    transform: scale(0);
    transition: all 0.25s var(--inOutCubic);
}

.csp_choice.active {
    background-color: #d9d9d90d;
}
@media (min-width: 992px) {
    .csp_choice:hover {
        background-color: #d9d9d90d;
    }
}
.csp_choices--wrap {
    display: flex;
    flex-direction: column;
    gap: 0.6125em;
}
.csp_message {
    margin-top: 1.875em;
}
.csp_message textarea {
    min-height: 8.75em;
    max-width: 100%;
    min-width: 100%;
    max-height: 12.5em;
    padding: 1em;
}
@media (min-width: 992px) {
    .csp_message textarea {
        font-size: var(--b14);
    }
}
.csp_message label {
    line-height: 1;
    font-family: var(--dm_mono);
    font-size: var(--b10);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--iron_horizon--lighter);
    text-align: left;
}
.tc_popup {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999999;
}

.tc_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #00000080;
    backdrop-filter: blur(4px);
}

.tc_content {
    width: 25%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 1.25em;
    background-color: #6d747d1a;
    backdrop-filter: blur(20px);
    border: 0.06125em solid #32363d;
    border-radius: 0.125em;
}

.close_tc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.875em;
    height: 1.875em;
    background-color: #ffffff1a;
    color: var(--white);
    cursor: pointer;
    transition: all 0.25s var(--inOutCubic);
}
.close_tc:hover {
    background-color: #ffffff2a;
}

.close_tc svg {
    width: 40%;
    height: 40%;
}

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

.tc_list {
    display: flex;
    flex-direction: column;
    gap: 0.6125em;
}

.tc_ap svg {
    flex-shrink: 0;
}

.tc_ap {
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.75em 0;
    border-top: 0.06125em solid #ffffff1a;
}

.tc_available-platforms {
    border-bottom: 0.06125em solid #ffffff1a;
}

.tc_buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6125em;
}

@media (max-width: 992px) {
    .tc_content {
        width: 90%;
    }
}
.pc_popup {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999999;
}

.pc_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #00000080;
    backdrop-filter: blur(4px);
}

.pc_content {
    width: 25%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 1.25em;
    background-color: #6d747d1a;
    backdrop-filter: blur(20px);
    border: 0.06125em solid #32363d;
    border-radius: 0.125em;
}

.close_pc {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.875em;
    height: 1.875em;
    background-color: #ffffff1a;
    color: var(--white);
    cursor: pointer;
    transition: all 0.25s var(--inOutCubic);
}
.close_pc:hover {
    background-color: #ffffff2a;
}

.close_pc svg {
    width: 40%;
    height: 40%;
}

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

.pc_list {
    display: flex;
    flex-direction: column;
    gap: 0.6125em;
}

.pc_ap svg {
    flex-shrink: 0;
}

.pc_ap {
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.75em 0;
    border-top: 0.06125em solid #ffffff1a;
}

.pc_available-platforms {
    border-bottom: 0.06125em solid #ffffff1a;
}

.pc_buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6125em;
}

@media (max-width: 992px) {
    .pc_content {
        width: 90%;
    }
    .pib_info {
        color: var(--iron_horizon--darker);
    }
}
.cancelation_info > p {
    line-height: 1.3;
}
@media (min-width: 992px) {
    .pm_content {
        height: 35em;
        overflow: auto;
    }
    .pm_content::-webkit-scrollbar {
        width: 0.275em;
        border-radius: 2px !important;
    }
    .pm_content::-webkit-scrollbar-track {
        background: var(--market_shadow);
    }
    .pm_content::-webkit-scrollbar-thumb {
        background: var(--iron_horizon--darker);
    }
}

.ra_body.second_step {
    display: none;
}
.cl_block {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    padding: 0.75em 0;
    border-top: 0.06125em solid #32363d;
}

.cancellation_losses {
    border-bottom: 0.06125em solid #32363d;
}
.wtt_list {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    margin-top: 1em;
    margin-bottom: 1em;
}
.wtt_list--wrap {
    margin: 1.25em 0;
}
