.sidebar_icons {
    position: relative;
    display: flex;
    gap: var(--gap);
    flex-direction: column;
}

.sidebar_icons > span:first-child {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    visibility: hidden;
}

.sidebar_icons .h2 {
    margin: 0;
}

.sidebar_icons .icon-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.sidebar_icons img {
    /* height: 50px; */
    height: 75%;
    /* width: 100%; */
}

.sidebar_icons img[alt='News'] {
    margin-left: 10px;
    height: 80%;
    max-width: none;
}

.sidebar_icons img[alt='Verkehr'] {
    height: 100%;
    max-width: none;
}

.sidebar_icons .icon-wrapper .icon-row a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}

.sidebar_icons .circle {
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 62px;
    height: 62px;
    transition: all 0.3s ease;
}

.sidebar_icons a .circle:hover {
    background-color: var(--secondary);
}
@media (min-width: 1081px) {
    .sidebar_icons .circle {
        background-color: var(--background);
    }

    .sidebar_icons:before {
        content: '';
        width: 2px;
        height: 100%;
        left: calc(0px - var(--gap));
        background-color: var(--secondary);
        top: 0;
        height: 100%;
        position: absolute;
        /* border-left: 2px solid var(--headline-color); */
    }
}

@media (max-width: 768px) {
    #aside_clone .sidebar_icons {
        display: block !important;
        color: var(--primary);
        font-size: 1.3rem;
    }

    #aside_clone ~ aside .sidebar_icons {
        display: none !important;
    }

    aside .content_block .h2 {
        display: none;
    }

    .sidebar_icons .circle {
        width: calc(var(--column) - var(--gap));
        height: calc(var(--column) - var(--gap));
    }

    .sidebar_icons .icon-wrapper {
        justify-content: space-between;
    }
}

.sidebar_icons .button_wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
