/* 
www.landvancuijk.nl
css overall side bars
*/

.content aside.sidebar {
    width: 350px; max-width: 350px; min-width: 350px;
    background: var(--accents);
    border-radius: 10px;
    box-sizing: border-box;
    order: 2;

    position: sticky;
    top: 130px;
}
.content aside.sidebar .sidebar-set {
    padding: 30px;
    border-bottom: 2px solid var(--background);
}
.content aside.sidebar .sidebar-set:last-of-type {
    border-bottom: 0px;
}

/* btns */
.content aside.sidebar .sidebar-set a.btn {
    display: block;
    margin-bottom: 10px;
}
.content aside.sidebar .sidebar-set a.btn:last-of-type {
    margin-bottom: 0px;
}

/* tag cloud */
.content aside.sidebar .sidebar-set .tag-cloud {
    line-height: 1;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    row-gap: 5px;
    column-gap: 5px;

    align-items: center;
    justify-content: center;
    line-height:1;
}
.content aside.sidebar .sidebar-set .tag-cloud a {
    color: var(--main);
}




@media screen and (max-width: 1100px) {

    .content aside.sidebar {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }

    .content aside.sidebar .sidebar-set:last-of-type .banner img {
        max-width: 200px;
        margin: 0 auto;
    }

}
