﻿.header-title {
    color: #000000;
    font-family: 'Open Sans';
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
    text-transform: none;
    margin-bottom: 15px;
}

.list-voting-text {
    overflow: hidden;
    width: 100%;
    height: auto;
    margin: 0 30px !important;
    box-sizing: border-box;
    padding: 0 0 30px 0;
}

    .list-voting-text h6 {
        color: #000000;
        font-family: 'Open Sans';
        font-size: 17px;
        font-weight: 600;
        line-height: 25px;
        text-align: left;
        margin: 0 0 4px 0;
        align-self: flex-start;
    }

    .list-voting-text p {
        color: #000000;
        font-family: 'Open Sans';
        font-size: 17px !important;
        font-weight: 400 !important;
        line-height: 25px !important;
        text-align: left;
        text-transform: none;
        padding-bottom: 0;
        margin: 0 0 20px 0;
        border-bottom: 0 solid #e2e2e2;
    }

.list-voting-info {
    position: relative;
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 26px;
    margin: 0 !important;
}

    .list-voting-info span.info {
        position: absolute;
        right: 30px;
        top: 30px;
        color: #ffffff;
        font-family: 'Open Sans';
        font-size: 20px;
        font-weight: 800;
        line-height: 26px;
        text-align: center;
        cursor: pointer;
        width: 26px;
        background-color: #008000;
        border-radius: 100%;
        -moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }


    .list-voting-info div.info-content {
        overflow: hidden;
        width: 100%;
        height: auto;
        max-height: 0;
        box-sizing: border-box;
        margin-top: 35px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 0;
        -webkit-transition: max-height 0.6s, padding 0.6s;
        -moz-transition: max-height 0.6s, padding 0.6s;
        -o-transition: max-height 0.6s, padding 0.6s;
        transition: max-height 0.6s, padding 0.6s;
    }

    .list-voting-info div p {
        color: #8d8d8c;
        font-family: 'Open Sans';
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
        text-align: center;
        text-transform: none;
        padding-bottom: 36px;
        border-bottom: 2px solid #e2e2e2;
    }

    .list-voting-info span.info.show + div {
        max-height: 1600px;
    }



    .list-voting-info div.filter {
        position: absolute;
        left: 30px;
        top: 30px;
        width: 257px;
    }

        .list-voting-info div.filter span {
            float: left;
            cursor: pointer;
            width: 26px;
            height: 26px;
            background-image: url(../svg/filter_icon.svg);
            background-size: 17px 17px;
            background-repeat: no-repeat;
            background-position: center;
            background-color: #008000;
            border-radius: 100%;
            -moz-user-select: none;
            -khtml-user-select: none;
            -webkit-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .list-voting-info div.filter span:after {
                position: absolute;
                left: 36px;
                display: block;
                float: left;
                cursor: pointer;
                content: 'Open filter mogelijkheid';
                color: #000000;
                font-family: 'Open Sans';
                font-size: 18px;
                font-weight: 600;
                line-height: 25px;
                text-align: left;
                margin: 0;
                transition: opacity 0.6s;
            }


        .list-voting-info div.filter.show + div {
            max-height: 1600px;
        }

        .list-voting-info div.filter + div p {
            color: #000000;
            font-family: 'Open Sans';
            font-size: 17px !important;
            font-weight: 400 !important;
            line-height: 25px !important;
            text-align: left;
            text-transform: none;
            padding-bottom: 17px;
            border: none;
        }

@media (max-width: 600px) {
    .list-voting-info div.filter span:after {
        font-size: 14px;
        line-height: 25px;
    }

    .list-voting-info div.filter {
        width: 210px;
    }
}


.filters {
    display: flex;
    display: -ms-flexbox;
    align-content: flex-start;
    align-self: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 0 36px 0;
    margin: 0 -5px 15px -5px;
    border-bottom: 2px solid #e2e2e2;
}

    .filters > div {
        display: flex;
        flex: 0;
        padding: 0 5px 17px 5px;
        align-content: space-between;
        justify-content: space-between;
        flex-direction: column;
    }

@media all and (-ms-high-contrast:none) {
    .filters > div {
        flex-grow: 0;
        flex-shrink: 0;
        flex-basis: auto;
    }
}

.filters label {
    display: block;
    color: #000000;
    font-family: 'Open Sans';
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    margin-bottom: 11px;
}

@keyframes changeToOpen {
    0% {
        content: 'Open filter mogelijkheid';
    }

    50% {
        color: white;
    }

    100% {
        content: 'Filter sluiten';
    }
}

@keyframes changeToClose {
    0% {
        content: 'Filter sluiten';
    }

    50% {
        color: white;
    }

    100% {
        content: 'Open filter mogelijkheid';
    }
}

.list-voting-info div.filter.show span:after {
    animation: changeToOpen 0.6s linear alternate;
    content: 'Filter sluiten';
}

.list-voting-info div.filter.hide span:after {
    animation: changeToClose 0.6s linear alternate;
}


.custom-select {
    float: left;
    display: block;
    position: relative;
}

    .custom-select select {
        color: #000000;
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
        min-width: 100%;
        border: 1px solid #BCDEE7;
        border-radius: 6px;
        background-color: #ffffff;
        -webkit-appearance: none;
        -moz-appearance: window;
        padding: 4px 37px 4px 12px;
    }

    .custom-select:after {
        position: absolute;
        top: 16px;
        right: 12px;
        content: '';
        background-image: url(../svg/dropdown_icon.svg);
        width: 9px;
        height: 5px;
        display: block;
        background-repeat: no-repeat;
        background-size: 9px 5px;
        background-position: right center;
        transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
    }


    .custom-select select:focus {
        outline: none;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
    }





.to-top {
    position: fixed;
    right: 91px;
    bottom: 40px;
    cursor: pointer;
    width: 42px;
    height: 42px;
    visibility: hidden;
    opacity: 0;
    background: #ffffff;
    box-shadow: 0 0 20px -8px rgba(0,0,0,.75);
    background-color: #E1431F;
    background-image: url(../svg/backtotop.svg);
    background-position: center !important;
    background-size: 17px 9px !important;
    background-repeat: no-repeat !important;
    border-radius: 100%;
    transition: opacity 0.3s linear 0s, visibility 0s linear 0.4s;
}

    .to-top.btn-show {
        visibility: visible;
        opacity: 1;
        transition: opacity 0.3s ease 0s, visibility 0s linear 0s;
    }

@media (max-width: 991.5px) {
    .to-top {
        right: 35px;
        bottom: 30px;
    }
}

.filter-list {
    width: 100%;
}

.filters-enabled span {
    display: block;
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
    text-align: left;
    padding-top: 16px;
}

.filters-enabled {
    width: 100%;
    display: none;
}

    .filters-enabled.open {
        display: block;
        margin-bottom: 30px;
        padding-left: 30px;
        padding-right: 30px;
        box-sizing: border-box
    }

        .filters-enabled.open + .check-list {
            border-top: 0px !important;
        }

.no-filter-results {
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    margin-top: -19px;
    margin-bottom: 18px;
}

    .no-filter-results span {
        color: #8d8d8c;
        font-size: 16px;
        font-weight: 400;
        line-height: 26px;
        text-align: center;
        text-transform: none;
    }



ul.ul-4-columns li {
    width: 25%;
    float: left;
    display: inline-block;
}


@media (max-width: 1200px) {
    ul.ul-4-columns li {
        width: 50%;
    }
}

@media (max-width: 991.5px) {
    ul.ul-4-columns li {
        width: 100%;
    }
}