:root {
    --black: #000000;
    --text-default: var(--black, #000);
    --text-inverted: #FFF;
    --colors-blue-100: #0A316B;
    --white: #ffffff;
    --background-yellow: #FFFBE8;
    --background-blue: #E6EAF0;
    --background-red: #F8E6E7;
    --background-turquoise: #EEFCFD;
    --background-purple: #F8EEFF;
    --surface-blue: #0A316B;
    --background-dark: var(--surface-blue);
    --text-inverted: var(--white, #ffffff);
    --text-link: var(----colors-blue-100, #0A316B);
    --spacing-25: 4px;
    --spacing-50: 8px;
    --spacing-75: 12px;
    --spacing-100: 16px;
    --spacing-150: 24px;
    --spacing-200: 32px;
    --spacing-250: 64px;
    --spacing-600: 96px;
    --navbar-height: 56px;
}


p:last-of-type {
    margin-bottom: 0;
}

h1 {
    color: var(--text-default, #000);
    font-family: Satoshi;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.5px;
}

h3 {
    color: var(--text-default, #000);
    font-family: Satoshi;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: 0.5px;
}

.copy,
p {
    color: var(--text-default, #000);
    font-family: Satoshi;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.5px;
}


.z-behind {
    z-index: -99;
}

.mt-600 {
    margin-top: var(--spacing-600, 96px);
}

.mt-150 {
    margin-top: var(--spacing-150, 24px);
}

.mb-150 {
    margin-bottom: var(--spacing-150, 24px);
}

@media (min-width: 768px) {
    .mt-md-600 {
        margin-top: var(--spacing-600, 96px) !important;
    }
}

.no-text-break {
    white-space: nowrap;
}

.content-block-max-height {
    height: calc(100svh - 56px - 16px);
}

.api-configurator-accordion-body {
    display: flex;
    justify-content: start;
    flex-direction: column;
    gap: 10px;

    max-height: 65vh;
    overflow-y: auto;
    overflow-x: hidden;
}

@media screen and (min-width: 768px) {
    .api-configurator-accordion-body {
        width: 900px;
        max-width: calc(100svw - 32px);
        max-height: 300px;
    }
}
