.anchormenu {
    position: relative;
    text-align: center;
    z-index: 1021;
}
.anchormenu .nav {
    position: relative;
    background-color: transparent;
    border: rgba(7, 7, 7, 0.15) solid 0px;
    border-radius: 4px;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 32px;
    padding-right: 32px;
    margin-top: 48px;
    display: inline-flex;
    overflow: hidden;
    isolation: isolate;
}
.anchormenu .nav::before {
    --anchormenu-bg-scale: 1;
    content: "";
    position: absolute;
    inset: 0;
    background-color: #f2f2f2;
    border-radius: inherit;
    z-index: -1;
    transform: scaleX(var(--anchormenu-bg-scale));
    transform-origin: center center;
    will-change: transform;
}
.anchormenu .nav .nav-item {
    margin-left: 32px;
}
.anchormenu .nav .nav-item:first-child {
    margin-left: 0;
}
.anchormenu .nav .nav-item .nav-link {
    color: #00547b;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
}
.anchormenu .nav .nav-item .nav-link.active {
    color: #00334d;
    text-decoration: underline;
}
.anchormenu.anchormenu--sticky-top, .anchormenu.anchormenu--sticky-bottom {
    position: fixed;
    left: 0;
    right: 0;
}
.anchormenu.anchormenu--sticky-top .nav, .anchormenu.anchormenu--sticky-bottom .nav {
    margin-top: 0;
    display: flex;
    justify-content: center;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 0px;
}
.anchormenu.anchormenu--sticky-top {
    top: var(--anchormenu-offset-top, 0px);
}
.anchormenu.anchormenu--sticky-bottom {
    bottom: 0;
}
@media (max-width: 768px) {
    .anchormenu {
        overflow-x: auto;
    }
    .anchormenu .nav {
        display: flex;
        min-width: max-content;
        white-space: nowrap;
        justify-content: flex-start;
        padding-left: 16px;
        padding-right: 16px;
        border-radius: 0px;
        scrollbar-width: thin;
        scrollbar-color: #00547B #F2F2F2;
    }
    .anchormenu .nav .nav-item {
        flex-shrink: 0;
        margin-left: 40px;
    }
    .anchormenu.anchormenu--sticky-bottom .nav {
        min-width: max-content;
        white-space: nowrap;
        justify-content: flex-start;
        padding-left: 16px;
        padding-right: 16px;
        scrollbar-width: thin;
        scrollbar-color: #00547B #F2F2F2;
        padding-top: 28px;
        padding-bottom: 28px;
    }
    .anchormenu .nav::-webkit-scrollbar {
        height: 4px;
    }
    .anchormenu .nav::-webkit-scrollbar-track {
        background: #F2F2F2;
    }
    .anchormenu .nav::-webkit-scrollbar-thumb {
        background: #00547B;
        border-radius: 2px;
    }
}