﻿/*list groups*/

ul.list-group li {
    border: 0;
}

ul.list-group li:before {
    content: '';
    display: inline-block;
    height: 0.6em;
    width: 0.6em;
    background-image: url('/icons/chevron-breadcrum.svg');
    background-size: contain;
    background-repeat: no-repeat;
    color: #337ab7;
    padding-left: 1em;
}


/*Video*/

articles {
    padding-top: calc(var(--bs-gutter-x)/ 2);
    padding-bottom: calc(var(--bs-gutter-x)/ 2);
}

article {
    margin-bottom: 0.5rem;
}

/*.row>* {padding-left:0;padding-right:0;}*/

.post-div {
    width: 100%;
    position: relative;
    min-height: 240px;
    transition: transform .2s ease;
}

.post-image {
    position: absolute;
    height: 100%;
    position: absolute;
    width: 100%;
    background-size: cover;
    transition: transform .5s;
}

.post-div:hover .post-image {
    transform: scale(1.05);
}

.post-bg {
    overflow: hidden;
}

.post-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 10px 10px 10px;
    color: #fff;
    line-height: 18px;
    background: linear-gradient(transparent,#000000d1);
}

.post__video {
    color: #fff;
    background-color: #5084D0;
    height: 48px;
    padding: 12px 11px 12px 13px;
    right: 0;
    top: 0;
    width: 48px;
    position: absolute;
}

.icon path {
    fill: currentColor;
}

.post-div:hover .icon {
    /*
    -webkit-transform: rotate(360deg);
    -webkit-transition-duration: 1s;
    -webkit-transition-delay: now;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
*/
}

.embeddedsubject {
    background-color: #5084D0;
    color: white;
    padding: 3px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 5px
}


/*stemwijzer*/
.hoekje {
    float: right;
}

table.statusbar td {
    border-left: 1px solid silver;
}

table.statusbar td div {
    padding-top: 6px;
    font-weight: bold;
}



/*Tags*/

.ArticleTags__articleTagsList {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
}

.ArticleTags__tag {
    font-display: swap;
    font-family: 'Roboto', 'Arial', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    color: #3A3E3F;
    background-color: #D2D5D7;
    border-radius: 100px;
    text-decoration: none;
    padding: 4px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32px;
    border: 0;
}

.ArticleTags__tag::after {
    content: url(/icons/plus.svg);
    margin-left: 8px;
    width: 8px;
}


/*Menu hover*/

/*.nav-link:hover, .nav-item.activelink >a  {
    text-decoration: none;
}

.nav-link::after {
    content: "";
    display: block;
    margin: auto;
    height: 3px;
    width: 0;
    top: 5px;
    background: transparent;
    transition: all 0.3s;
}

.nav-link:hover::after, .nav-item.activelink > a::after {
    width: 100%;
    background: #1b75bb;
}
*/