#qs-container {
    padding-top: 10rem;

    &.toelichting-wrapper {
        padding-top: 20rem;
        
        .text-block-wrapper {
            padding-top: 40px;
        }
    }
}


.b_btn, a.b_btn {
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 10px 24px;
    border: 0;
    background-color: #00417A;
    color: #FFF;
    font-size: 16px;
    line-height: 1.625;
    cursor: pointer;
    -webkit-appearance: button;
    font-weight: 400;
    text-decoration: none;
    border-radius: 50px;
}

a.b_btn-secondary, a.b_btn-secondary {
    border: 2px solid #00417A;
    background: #FFF;
    color: #00417A;
}

.selection-container {
    border-top: 10px solid #00417A;
}

.radio-switch__input:checked~.radio-switch__label {
    background-color: #00417A;
}

.radio-switch__label {
	color: #00417A;
}

/*Start to top btn*/
#scrollToTop {
    background: #00417A;
}

.back-to-top i {
    color: #fff;
}

.radio-switch__input:checked~.radio-switch__label {
	background-color: #00417A;
	color: hsl(0, 0%, 100%);
}

#innercontainer::before {
    background: url(images/JanKok20200914-45441.jpg) no-repeat bottom center;
    background-size: cover;
    content: "";
    top: 90px;
    position: absolute;
    height: 568px;
    width: 100%;
    z-index: -1;
}

body#ballroom #container #innercontainer header {
    background: #fff;
}

#footer {
    margin-top: auto;
}

.select-nav__label::after {
    color: #275582;
}

/*Custom CSS*/
:root {
    --main: #275582;
    --main-font-color: #ffffff;
}

.show-chart-btn {
    background: #00417A;
    color: var(--main-font-color);
}

.radio-label .checkmark {
    border-color: var(--main);
}

.radio-label:hover .checkmark:before, .radio-label input:checked + .checkmark:before {
    background: var(--main);
}


/*Verwijderen als over is naar Ballroom*/
body {
    margin: 0;
}

.tile .tile-icon {
    max-width: 25px;
    width: 100%;
    height: 100%;
    max-height: 25px;

    svg {
        fill: #00417A;
    }
}

.pie-visible #qs-container {
    padding-top: 0;
}

.hidden {
    display: none !important;
}
/*tot hier*/


.tileset--content--items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;

    @media screen and (max-width: 768px) {
        align-items: start;
        flex-direction: column;
        gap: 3rem;
    }

    &.gebiedsprofiel-tiles {
        display: flex;
        flex-direction: column;
        align-items: unset;
        gap: 24px;
        margin-top: 30px;

        h3 {
            font-size: 24px;
        }

        .tile__row {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 100%;
            gap: 20px;

            @media screen and (min-width: 768px) {
                flex-direction: row;
            }
            
            .tile {
                justify-content: center;
                text-decoration: none;
                background-color: #FFFFFF;
                max-width: 250px;
                transition: all ease-in-out 0.3s;
                border-radius: 5px;

                &:hover {
                    transition: all ease-in-out 0.3s;
                    box-shadow: 10px 10px 10px #636363;
                    transform: scale(1.1);
                }

                .tile__content {
                    padding: 10px;
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    text-align: center;
                    gap: 25px;

                    h4 {
                        margin: unset;
                    }

                    * {
                        color: #00417A;
                    }

                    .tile__icon {
                        width: 100%;
                        max-width: 50px;
                        margin: 0 auto;
                        
                        svg {
                            fill: #00417A !important;
                            max-height: 50px;
                        }
                    }
                }
            }
        }
    }    
}

.img__container {
    display: flex;
    justify-content: center;

    img {
        @media screen and (max-width: 768px) {
            width: 100%;
            object-fit: contain;
        }
    }
}

.tile  {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 18px;
    font-weight: 500;
}

.tile .tile-icon {
    max-width: 25px;
    width: 100%;
    height: 100%;
    max-height: 25px;

    svg {
        fill: #00417A;
    }
}

.table {
    margin: 0;
    overflow-y: scroll;

        @media screen and (min-width: 768px) {
            overflow-y: unset;
        }

    .blueTable {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 3rem;
        
        
        td, th {
            padding: 10px 10px 10px 0px;
            border-bottom: 1px solid #E4E4EC;
            font-family: "Source Sans 3", serif;
        }

        thead {
            th {
                font-size: 1.3125rem;
                font-weight: bold;
                text-align: left;
            }
        }

        tbody {
            td {
                font-size: 1.3125rem;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;            

                .th-lgnd {
                    display: flex;
                    align-items: center;
                    gap: 1rem;

                    &::before {
                        content: "";
                        width: 14px;
                        height: 14px;
                        display: inline-block;
                        border-radius: 50%;
                    }

                    &#lgd-red {
                        &:before {
                            background: #D7191C;
                        }
                    }

                    &#lgd-orange {
                        &:before {
                            background: #FDAE61;
                        }
                    }

                    &#lgd-yellow {
                        &:before {
                            background: #FEE08B;
                        }
                    }

                    &#lgd-green {
                        &:before {
                            background: #A6D96A;
                        }
                    }

                    &#lgd-darkgreen {
                        &:before {
                            background: #1A9641;
                        }
                    }

                    &#lgd-blue1 {
                        &:before {
                            background: #CCDFE3;
                        }
                    }

                    &#lgd-blue2 {
                        &:before {
                            background: #77AFFF;
                        }
                    }

                    &#lgd-blue3 {
                        &:before {
                            background: #227FFF;
                        }
                    }

                    &#lgd-blue4 {
                        &:before {
                            background: #0057CC;
                        }
                    }

                    &#lgd-blue5 {
                        &:before {
                            background: #003377;
                        }
                    }
                }
            }
        }
    }
}