html, body {
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    margin: auto;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-flow: column;
}

* {
    transition: color 0.15s, background 0.15s, border-color 0.15s, box-shadow 0.25s;
}

.wrapper {
    padding: 0px;
    position: relative;
}
.container {
    max-width: 1200px;
    padding: 25px 15px;
    margin: auto;
    position: relative;
    box-sizing: border-box;
}

.wrapper.yellow {
    background: #fdd850;
}
.wrapper.green {
    background: #1fa177;
    color: #FFF;
}
.wrapper.darkyellow {
    background: #fdcc35;
}
.wrapper.light {
    background: #e5f7fc;
}
.wrapper.blue {
    background: #2dc1ed;
}

.wrapper.blue h1, .wrapper.blue h2, .wrapper.blue h3,
.wrapper.green h1, .wrapper.green h2, .wrapper.green h3 {
    color: #FFF;
}
.wrapper.blue a:not(.button),
.wrapper.green a:not(.button) {
    color: inherit;
}
.wrapper.blue .info {
    color: #067da1;
}
.wrapper.blue a:hover {
    color: #FFF;
}

.wrapper.narrow .container {
    max-width: 980px;
}
.wrapper.power {
    font-size: 1.2em;
    font-weight: 700;
}

.slot {
    text-align: center;
    min-height: 120px;
    max-width: 100%;
    overflow: hidden;
}

:first-child {
    margin-top: 0px;
}
:last-child {
    margin-bottom: 0px;
}

#top {
    background: #fdd850;
}
#top nav {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    height: 75px;
    padding: 10px 15px;
}
#top nav a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}
#top a:hover {
    color: #1fa177;
}
#top .logo {
    display: flex;
    align-items: center;
    height: 100%;
}
#top .logo img {
    height: 100%;
}
#top ul.mainnav {
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 15px;
}
@media screen and (min-width: 800px) {
    #top ul.mainnav {
        gap: 20px;
    }
}
@media screen and (min-width: 1000px) {
    #top ul.mainnav {
        gap: 25px;
    }
}

/* Hero image */
.hero > .container {
    z-index: 20;
    color: #FFF;
    font-size: 1.1em;
    max-width: 710px;
    padding-top: 100px;
    padding-bottom: 100px;
}
.hero h1 {
    color: #FFF;
    font-size: 1.9em;
    line-height: 1.2em;
}
.hero a {
    color: inherit;
    text-decoration: none;
}
.hero-images {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: hidden;
    display: inline-block;
}
.hero-images img {
    object-fit: cover;
    max-width: none;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 50;
    position: absolute;
    left: 0px;
    top: 0px;
    visibility: hidden;
}
.hero-images:after {
    display: block;
    position: absolute;
    background-color: rgba(26, 34, 59, 50%);
    mix-blend-mode: hard-light;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    content: '';
    z-index: 100;
}

.hero-images img.active,
.hero-images img.prev {
    visibility: visible;
    z-index: 50;
}
.hero-images img.next {
    visibility: visible;
    z-index: 40;
}
.with-hero .wrapper:not(.hero) {
    position: absolute;
    width: 100%;
    top: 0px;
    z-index: 100;
    color: #FFF;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 30%) 0, rgba(0, 0, 0, 0%) 100%);
}
.with-hero .hero {
    padding-top: 100px;
}

.hero .searchbar {
    margin: 40px 0px 30px;
}

/* Searchbar */
.searchbar form {
    display: flex;
    flex-flow: row nowrap;
    gap: 0px;
    align-items: stretch;
}
.searchbar .input {
    border-radius: 4px 0px 0px 4px;
    background: #e2eef2;
    color: #1a223b;
    padding: 3px;
    margin: 0px;
}
.searchbar input {
    max-width: none;
}
.searchbar .input {
    flex: 0;
}
.searchbar .input.text {
    flex: 1;
}
.searchbar input[type="text"] {
    width: 100%;
    box-sizing: border-box;
}
.searchbar button {
    height: 100%;
    width: 100%;
    white-space: nowrap;
}
.searchbar .togglebuttons {
    font-weight: 600;
    border-radius: 0px 4px 4px 0px;
    margin-right: 8px;
}
.searchbar .togglebuttons label {
    line-height: 2.5em;
}
@media screen and (max-width: 600px) {
    .searchbar form {
        flex-flow: row wrap;
        gap: 8px;
    }
    .searchbar .input {
        flex: 2;
        border-radius: 4px;
        margin-right: 0px;
    }
    .searchbar .submit {
        flex: 1;
    }
    .searchbar .togglebuttons {
        background: transparent;
    }
    .hero .togglebuttons {
        color: #FFF;
    }
    .searchbar .input.text {
        flex-basis: 100%;
    }
}

#bottom {
    background: #ed1556;
    color: #FFF;
    flex: 1;
}
#bottom .container {
    font-size: 0.9em;
}
#bottom a {
    color: inherit;
}
#bottom a:hover {
    text-decoration: none;
    color: #fdd850;
}

#bottom .disclaimer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 700px) {
    #bottom .disclaimer {
        flex-direction: column-reverse;
        align-items: center;
        padding-top: 20px;
    }
    #bottom .disclaimer li {
        line-height: 40px;
    }
}
#bottom .disclaimer ul {
    flex: 1;
    list-style: none;
    margin: 0px;
    padding: 15px 0px 10px;
    display: flex;
    flex-wrap: wrap;
}
@media screen and (max-width: 1160px) {
    #bottom .disclaimer ul {
        max-width: 550px;
    }
}
@media screen and (max-width: 700px) {
    #bottom ul {
        justify-content: center;
    }
}
#bottom .disclaimer li {
    padding-right: 15px;
    line-height: 30px;
    white-space: nowrap;
}
#bottom a.logo img {
    height: 45px;
    width: auto;
    max-width: none;
}
#bottom .disclaimer a {
    text-decoration: none;
}

#bottom ul svg {
    width: 16px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    margin: 0px 2px 0px 4px;
}
#bottom ul .icon_path {
    fill: #FFF;
}
#bottom ul a:hover .icon_path {
    fill: #fdd850;
}

#bottom .cities ul {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    margin: 0px;
    padding: 0px;
    font-weight: 700;
}
#bottom .cities li {
    padding: 0px 7px 7px 0px;
}
#bottom .cities ul:not(:first-child) {
    font-weight: 400;
}
#bottom .cities ul:not(:first-child) li {
}
#bottom .cities a {
    background: #d71653;
    text-decoration: none;
    border-radius: 3px;
    padding: 1px 8px;
    display: block;
    line-height: 1.7em;
}
#bottom .cities a:hover {
    color: #1fa177;
    background: #fff;
}

#bottom li.with-flag {
    position: relative;
}
#bottom li.with-flag a {
    padding-left: 24px;
}
#bottom li.with-flag:before {
    content: '';
    position: absolute;
    left: 4px;
    top: -1px;
}
#bottom li.flag-nl:before {
    content: url('/img/flags/nl.png');
}
#bottom li.flag-be:before {
    content: url('/img/flags/be.png');
}
#bottom li.flag-lu:before {
    content: url('/img/flags/lu.png');
}

/* Page with sidebar */
@media screen and (min-width: 700px) {
    .wrapper.with_sidebar .container {
        display: flex;
    }
    .wrapper.with_sidebar .sidebar {
        max-width: 250px;
        min-width: 180px;
        padding-right: 40px;
        flex: 1;
    }
    .wrapper.with_sidebar .content {
        flex: 3;
    }
}

.sidebar .toggle-filters {
    display: none;
    margin-bottom: 20px;
}
.sidebar .filter_count {
    display: inline-block;
    font-size: 0.65em;
    border-radius: 50%;
    background: #d61509;
    color: #FFF;
    height: 15px;
    width: 15px;
    line-height: 15px;
    text-align: center;
    position: relative;
    top: -7px;
}

@media screen and (max-width: 700px) {
    .sidebar .toggle-filters {
        display: initial;
    }
    .wrapper.with_sidebar .sidebar {
        margin-bottom: 20px;
        display: flex;
        align-items: stretch;
        flex-wrap: wrap;
    }
    .sidebar .filter {
        padding: 10px;
        background: #f2fbfe;
        border-radius: 4px;
        margin-right: 10px;
        min-height: 82px;
        min-width: 40%;
        display: none;
        box-shadow: 0px 1px 0px rgba(26, 48, 61, 0.05);
    }
    .sidebar .filter.city {
        width: 100%;
    }
    .sidebar .filter:not(.city) {
        flex-basis: 0;
        flex-grow: 1;
    }
    .sidebar button {
        width: 100%;
    }
    .sidebar button:not(.toggle-filters) {
        display: none;
    }
}

.sidebar .with-pin {
    margin-top: 0px;
}
.sidebar label {
    font-weight: bold;
    margin-bottom: 5px;
}
.sidebar h3 {
    font-size: 1.0em;
    margin-bottom: 5px;
}
.sidebar .filter {
    margin-bottom: 20px;
}
.sidebar .option a {
    color: inherit;
    text-decoration: none;
}
.sidebar .option a:before, .sidebar .filter_unavailable:before {
    content: '\25CF';
    color: #FFF;
    font-size: 20px;
    display: inline-block;
    background: #b8d6e0;
    text-align: left;
    border-radius: 8px;
    height: 15px;
    padding: 0px 10px 0px 1px;
    width: 24px;
    line-height: 12px;
    overflow: hidden;
    margin-right: 8px;
    box-sizing: border-box;
    position: relative;
    top: 2px;
    transition: padding 0.2s;
}
.sidebar .option a:hover:before {
    background: #9ec7d5;
}
.sidebar .option a:hover {
    color: #1fa177;
}
.sidebar .option.selected {
    font-weight: bold;
}
.sidebar .option.selected a:before {
    background: #1fa177;
    padding: 0px 1px 0px 10px;
    text-align: right;
}
.sidebar .option.selected a:hover:before {
    background: #1e886b;
}
.sidebar .option a:focus:before, .sidebar .option.selected a:focus:before {
    background: #fdcf3f;
    padding: 0px 10px 0px 1px;
    text-align: left;
}
.sidebar .option a:focus:before {
    padding: 0px 1px 0px 10px;
    text-align: right;
}
.sidebar .filter_unavailable {
    color: rgba(150, 155, 168, 0.7);
}
.sidebar .filter_unavailable:before {
    background: rgba(150, 155, 168, 0.2);
}
.sidebar .count {
    color: #067da1;
    font-size: 0.8em;
    font-weight: normal;
    padding-left: 2px;
}
.sidebar .default-hidden:not(.show) {
    display: none;
}
.toggle_more::before {
    content: '+';
    display: inline-block;
    color: #1a303d;
    text-decoration: none;
    margin-right: 5px;
}
.filter.show_all .toggle_more::before {
    content: '-';
}

/* Results & Reviews */

.results, .reviews {
    list-style: none;
    margin: 15px 0px;
    padding: 0px;
    line-height: 1.55em;
}

.results > li, .reviews > li {
    padding: 20px 0px;
    border-bottom: solid 1px #daecf1;
    display: flex;
    flex-flow: row wrap;
    align-items: flex-center;
    gap: 40px;
    color: #124664;
}
.reviews > li {
    gap: 10px;
    border-bottom: none 0px;
    padding: 10px 0px;
}
.results > li:hover {
    cursor: pointer;
    color: #1a223b;
    background: rgba(218, 236, 241, 0.1);
}
.results:last-child > li:last-child {
    border-bottom: none 0px;
    /*padding-bottom: 0px;*/
}
.results .logo {
    width: 15%;
    max-width: 150px;
    overflow: hidden;
    /*padding: 10px 15px 10px 2px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.results .logo img {
    max-height: 100px;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.results .text {
    flex: 1;
}
.reviews .text,
.results .review {
    background: #FFF;
    border-radius: 10px;
    padding: 8px 12px;
}
.results .review {
    margin-top: 5px;
}
.reviews .text {
    flex: 1;
    padding-right: 14px;
    margin-right: 14px;
}

.results .header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
}
.results h3 {
    font-size: 1.15em;
    margin: 0px 0px 5px;
}
.results .buttons {
    flex: 0;
    display: flex;
    gap: 5px;
    font-size: 0.85em;
    flex-flow: row nowrap;
    white-space: nowrap;
}
.results .buttons a {
    margin: 0px;
    padding: 2px 8px 1px 8px;
}
.results p {
    margin: 0px 0px 2px;
}
.results li:hover h3 a {
    color: #1fa177;
}
.results li:hover .more.hover {
    background: #1fa177;
}

.results .rating_cats, .results .cats {
    display: flex;
    flex-direction: row;
    gap: 5px;
    padding: 0px;
    align-items: center;
}
.results .rating_cats {
    margin: 5px 0px 0px;
}
.rating_cats ul {
    list-style: none;
}
.rating_cats li {
    color: #1fa177;
    font-size: 0.9em;
    line-height: 1.5em;
    padding: 0px;
}
.rating_cats li.cat {
    background: #def1eb;
    border-radius: 3px;
    padding: 0px 4px 1px;
    white-space: nowrap;
}
@media screen and (max-width: 800px) {
    .results > li {
        gap: 20px;
    }
}
@media screen and (max-width: 600px) {
    .results > li {
        gap: 15px;
    }
    .reviews > li {
        gap: 0px;
    }
}

/* Chains grid */

.results-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
    grid-gap: 20px;
    list-style: none;
    padding: 0px;
    margin: 20px 0px;
}
.results-grid li {
    display: initial;
}
.results-grid a {
    background: #FFF;
    border-radius: 3px;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: solid 1px #FFF;
}
.results-grid a:hover {
    border-color: #1fa177;
}
.results-grid img {
    max-height: 90px;
}
@media screen and (max-width: 800px) {
    .results-grid {
        grid-gap: 10px;
    }
    .results-grid a {
        padding: 8px;
    }
}
@media screen and (max-width: 700px) {
    .results-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.reviews span.time, .reviews dl {
    color: #067da1;
}
.ratings dt {
    float: left;
    clear: left;
    width: 100px;
}
.ratings dd {
    margin-left: 110px;
}
@media screen and (max-width: 800px) {
    .ratings dt {
        width: 70px;
    }
    .ratings dd {
        margin-left: 75px;
    }
}

/* Profile page */
.company-title {
    border-bottom: solid 1px #fdd850;
    background-image: linear-gradient(to top, rgba(229, 247, 252, 0.7) 0, #FFF 5%);
}
.company-title .container {
    color: #4a89b0;
    display: flex;
    flex-flow: row nowrap;
}

.company-title .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 15%;
    max-width: 100px;
    border-radius: 3px;
    margin: 10px 14px 10px 0px;
}
.results .logo img {
    max-height: 60px;
}
.company-title .text {
    flex: 1;
}


.company-title p, .company-title h1, .company-title ul {
    margin: 8px 0px;
}
.company-title a:not(.button) {
    color: inherit;
}
.company-title a:not(.button):hover {
    color: #1fa177;
}
.company-title .rating {
    padding-left: 5px;
}

ul.tagcloud {
    list-style: none;
    padding: 0px;
}
ul.tagcloud li {
    display: inline-block;
    background: #def1eb;
    color: #1fa177;
    border-radius: 4px;
    padding: 2px 10px;
    font-weight: 700;
    margin: 2px 0px;
}

.gallery_thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 20px;
    margin: 15px 0px 20px 0px;
}
.gallery_thumbnails img {
    border-radius: 3px;
}
.review_thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    grid-gap: 10px;
    margin: 10px 0px 0px;
    padding-top: 10px;
    border-top: solid 1px #e4edf3;
}
.review_thumbnails img {
    border-radius: 3px;
}
.review_thumbnails a:hover img, .gallery_thumbnails a:hover img {
    box-shadow: 0px 1px 2px rgba(26, 48, 61, 0.25);
}
@media screen and (max-width: 700px) {
    .gallery_thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        grid-gap: 15px;
    }
    .review_thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(35px, 1fr));
    }
}

/* Cookie consent */
.wrapper.overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1000;
    height: 100%;
    width: 100%;
    background: #1a303d;
    background: rgba(26,34,59,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.wrapper.overlay .container {
    max-width: 500px;
    background: #e4edf3;
    padding: 30px;
    box-shadow: 0px 1px 1px rgba(26, 34, 59, 0.25);
    text-align: center;
    border-radius: 3px;
}
.wrapper.overlay h3 {
    color: #ed1556;
}
.wrapper.overlay p {
    font-size: 0.95em;
    margin: 25px 0px 0px;
}
@media screen and (max-height: 400px) {
    .wrapper.overlay .container {
        max-width: 800px;
    }
    .wrapper.overlay p + p {
        margin-top: 5px;
    }
}
.wrapper.overlay a:not(.button) {
    color: #067da1;
}
.wrapper.overlay a:not(.button):hover {
    color: #1fa177;
}