.sticky-anchor-menu-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
}

@media screen and (min-width: 1200px){
    .sticky-anchor-menu-container {
        padding: 0 15px;
    }
}

.sticky-anchor-menu-sidebar {
    width: 33%;
    /* min-width: 300px; */
    padding: 20px 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.sticky-anchor-menu-content {
    width: 66%;
    /* min-width: 500px; */
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

@media screen and (max-width: 800px){
    .sticky-anchor-menu-content {
        width: 100%;
    }

    .sticky-anchor-menu-sidebar {
        width: 100%;
    }
}

/*Sidebarmenü*/

.anchor-list a {
    display: block;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9em;
    color: var(--darkgrey);
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    white-space: nowrap;
}

.anchor-list a:hover {
    color: var(--primary);
}

.anchor-list a::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 2px solid var(--darkgrey);
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: calc(50% - 10px);
}

.anchor-list a:hover::before {
    border: 2px solid var(--primary);
}

.anchor-list a::after {
    content: '';
    width: 15px;
    height: 15px;
    border-left: 2px solid var(--darkgrey);
    position: absolute;
    left: 10px;
    top: calc(100% + 2.5px);
}

.anchor-list a:last-child:after {
    width: 0;
    height: 0;
}

.anchor-list a.active,
.anchor-list a.active-click {
    color: var(--primary);
}

.anchor-list a.active::before,
.anchor-list a.active-click::before {
    border: 2px solid var(--primary);
    background-color: var(--primary);
}

.sticky-anchor-menu-sidebar {
    position: relative;
}

.anchor-list{
    position: absolute;
    top: 0;
    left: 0;
    /* width: 100%; */
}

.anchor-list.side-fixed{
    position: fixed;
    left: auto;
    /* top: 50%; */
    top: 150px;
}

.anchor-list.bottom{
    position: absolute;
    top: auto;
    left: 0;
    bottom: 0;
}

@media screen and (max-width: 1210px){
    .anchor-list {
        padding-left: 15px;
    }
}

@media screen and (max-width: 800px){
    .header-img-entry {
        margin-bottom: 0!important;
    }
    .sticky-anchor-menu-sidebar {
        padding: 0;
    }
    .anchor-list {
        background-color: #fff;
        padding: 15px;
        position: relative;
        width: 100%;
        max-width: 100vw;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .anchor-list a {
        display: inline;
        margin-bottom: 0;
        padding-right: 25px;
        font-size: 0.8em;
        line-height: 2.5em;
    }

    .anchor-list a:after {
        width: 10px;
        height: 10px;
        border-left: none;
        border-top: 2px solid var(--darkgrey);
        position: absolute;
        left: auto;
        right: 8px;
        top: 50%;
    }

    .anchor-list.side-fixed{
        top: 115px;
        border-bottom: 2px solid var(--grey);
        border-top: 2px solid var(--grey);
        width: 100%;
        max-width: 100vw;
        padding: 5px 15px;
    }
}

@media screen and (max-width: 600px){

    .anchor-list a {
        font-size: 0.7em;
        padding-left: 20px;
    }

    .anchor-list.side-fixed{
        top: 70px;
    }

    .anchor-list a::before {
        width: 15px;
        height: 15px;
        top: calc(50% - 7.5px);
    }
}
