.sp-header {
    --sp-header-bg: #e5e5ea;
    --sp-header-side-bg: #f4f4f4;
    --sp-header-yellow: #fc0;
    --sp-header-blue: #0082a0;
    --sp-header-black: #232323;
    --sp-header-gray: #606060;
    background-color: var(--sp-header-bg);
    font-family: var(--sp-font-sans, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    left: 0;
    line-height: 1.5;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 3;
}

.sp-header *,
.sp-header *::before,
.sp-header *::after {
    box-sizing: border-box;
}

.sp-header a {
    text-decoration: none;
}

.sp-header__nav {
    align-items: center;
    background-color: var(--sp-header-bg);
    box-shadow: rgb(0 0 0 / 10%) 0 1px 1px 1px;
    display: flex;
    padding: .5rem;
    width: 100%;
}

.sp-header__container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
    width: 100%;
}

.sp-header__container--centered {
    justify-content: center;
}

@media (max-width: 767px) {
    .sp-header__container--mobile-split {
        justify-content: space-between;
    }
}

.sp-header__menu-shell {
    display: flex;
    flex: 0 0 auto;
    margin: 0;
}

.sp-header__icon-button {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: inherit;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 40px;
}

.sp-header__icon-button:focus-visible,
.sp-header__cta:focus-visible,
.sp-header__side-menu a:focus-visible,
.sp-header__side-menu button:focus-visible {
    outline: 2px solid var(--sp-header-blue);
    outline-offset: 2px;
}

.sp-header__menu-icon {
    display: block;
    height: 40px;
    width: 40px;
}

.sp-header__logo-link {
    display: block;
    flex: 0 0 auto;
}

.sp-header__logo {
    display: block;
    height: auto;
    width: 90px;
}

.sp-header__actions {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    justify-content: flex-end;
}

.sp-header__actions--with-menu {
    min-width: 40px;
}

.sp-header__cta {
    background-color: var(--sp-header-yellow);
    border-radius: 100px;
    color: var(--sp-header-black);
    font-family: "Montserrat", var(--sp-font-sans, Arial, sans-serif);
    font-size: .82rem;
    font-weight: 500;
    line-height: 1.6;
    padding: .5rem 1rem;
    white-space: nowrap;
}

.sp-header__cta:hover {
    color: var(--sp-header-black);
}

.sp-header__cta-label--short {
    display: inline;
}

.sp-header__cta-label--full {
    display: none;
}

.sp-header__side-menu {
    background-color: var(--sp-header-side-bg);
    box-shadow: rgba(0, 0, 0, .09) 1px 0 3px 0;
    height: 100vh;
    height: 100dvh;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-top: 20px;
    position: fixed;
    font-family: "Montserrat", var(--sp-font-sans, Arial, sans-serif);
    font-size: 14.4px;
    line-height: 23.04px;
    top: 0;
    transform: translateX(-100%);
    transition: transform .5s ease;
    width: 100%;
    will-change: transform;
    z-index: 4;
}

.sp-header__side-menu.is-open {
    transform: translateX(0);
}

.sp-header__side-content {
    min-width: 100%;
}

.sp-header__side-close-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.sp-header__side-close {
    height: 30px;
    width: 30px;
}

.sp-header__side-close-icon {
    display: block;
    height: 30px;
    width: 30px;
}

.sp-header__account {
    align-items: center;
    display: flex;
    gap: 0;
    min-height: 0;
    padding: 0 0 24px;
}

.sp-header__account-avatar-link {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    flex: 0 0 auto;
    justify-content: center;
    min-height: 0;
    min-width: 0;
}

.sp-header__account-avatar {
    border-radius: 50%;
    display: block;
    height: 30px;
    margin-left: 8px;
    width: 30px;
}

.sp-header__account-login {
    align-items: center;
    color: var(--sp-header-gray);
    display: inline-flex;
    font-size: 1rem;
    font-weight: 700;
    min-height: 0;
    padding-left: 16px;
}

.sp-header__account-login:hover {
    color: var(--sp-header-blue);
}

.sp-header__account-name {
    color: #464646;
    font-family: var(--sp-font-display, "Baloo 2", sans-serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 26.4px;
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
    padding-left: 8px;
}

.sp-header__side-section {
    width: 100%;
}

.sp-header__side-title {
    background-color: var(--sp-header-bg);
    color: var(--sp-header-gray);
    display: block;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1.6;
    padding: .5rem 0 .5rem 1rem;
    text-align: start;
    width: 100%;
}

.sp-header__side-list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1rem;
    text-align: start;
}

.sp-header__side-item {
    padding-bottom: .5rem;
    padding-top: .5rem;
}

.sp-header__side-link {
    color: var(--sp-header-gray);
    font-size: .875rem;
    font-weight: 500;
    line-height: 1.6;
}

.sp-header__side-link:hover {
    color: var(--sp-header-blue);
}

.sp-header__logout-form {
    margin: 0;
}

.sp-header__side-link--button {
    appearance: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline;
    font-family: inherit;
    padding: 0;
    text-align: start;
}

@media (prefers-reduced-motion: reduce) {
    .sp-header__side-menu {
        transition: none;
    }
}

@media (min-width: 576px) {
    .sp-header__container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .sp-header {
        display: flex;
        justify-content: center;
    }

    .sp-header__nav {
        padding: .5rem 3rem;
    }

    .sp-header__container {
        max-width: 720px;
    }

    .sp-header__logo {
        padding-bottom: 1rem;
        padding-top: 1rem;
    }
}

@media (min-width: 992px) {
    .sp-header__container {
        max-width: 960px;
    }
}

@media (min-width: 998px) {
    .sp-header__logo {
        width: 100px;
    }

    .sp-header__side-menu {
        width: 360px;
    }

    .sp-header__side-content {
        min-width: 360px;
    }
}

@media (min-width: 1200px) {
    .sp-header__container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .sp-header__container {
        max-width: 1320px;
        padding: 0 .75rem;
    }
}

@media (min-width: 769px) {
    .sp-header__cta-label--short {
        display: none;
    }

    .sp-header__cta-label--full {
        display: inline;
    }
}

@media (min-width: 998px) {
    .sp-header__cta {
        font-size: .9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sp-header__side-menu {
        transition: none;
    }
}
