/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 27 2026 | 15:38:44 */
/* =========================================================
   HOLACANARIA.DE – KLEUREN
   ========================================================= */

:root {
    --hc-turquoise: #0799ad;
    --hc-turquoise-dark: #057f91;
    --hc-turquoise-light: #eaf8fa;
    --hc-yellow: #ffae00;
    --hc-yellow-dark: #ed9800;
    --hc-green: #41ad88;
    --hc-text: #17252a;
    --hc-muted: #607077;
    --hc-white: #ffffff;
}


/* =========================================================
   HOME – HERO SEARCH
   ========================================================= */

#hero-search {
    width: calc(100% - 32px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;

    position: relative;
    z-index: 20;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.97) 0%,
            rgba(239, 250, 252, 0.97) 100%
        );

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(7, 153, 173, 0.18);
    border-radius: 22px;

    box-shadow:
        0 18px 50px rgba(5, 70, 80, 0.14),
        0 3px 10px rgba(5, 70, 80, 0.06);
}


/* Gekleurde lijn bovenaan */
#hero-search::before {
    content: "";

    position: absolute;
    z-index: -1;

    top: 0;
    left: 32px;
    right: 32px;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--hc-green) 0%,
            var(--hc-turquoise) 48%,
            var(--hc-yellow) 100%
        );

    border-radius: 0 0 10px 10px;
}


/* Bestemming, reisgezelschap en zoekknop */
#hero-search .search-container {
    display: grid;

    grid-template-columns:
        minmax(260px, 1.25fr)
        minmax(270px, 1fr)
        minmax(245px, 0.85fr);

    gap: 18px;
    align-items: end;
}


#hero-search .search-field {
    position: relative;
    min-width: 0;
}


#hero-search label {
    display: block;

    margin: 0 0 9px 4px;

    color: var(--hc-text);

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}


/* =========================================================
   BESTEMMING
   ========================================================= */

#hero-search select {
    width: 100%;
    min-height: 58px;

    padding: 14px 48px;

    color: var(--hc-text) !important;
    -webkit-text-fill-color: var(--hc-text) !important;

    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;

    background-color: var(--hc-white);

    border: 1.5px solid rgba(7, 153, 173, 0.22);
    border-radius: 14px;

    box-shadow:
        0 4px 12px rgba(7, 91, 104, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);

    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease,
        background-color 0.25s ease;
}


#hero-search .destination-field::before {
    content: "3c5";

    position: absolute;
    z-index: 2;

    left: 17px;
    bottom: 20px;

    width: 20px;
    height: 20px;

    color: var(--hc-turquoise) !important;

    font-family: "Font Awesome 5 Free";
    font-size: 18px;
    font-weight: 900;
    line-height: 20px;

    pointer-events: none;
}


#hero-search .destination-field::after {
    content: "";

    position: absolute;

    right: 19px;
    bottom: 24px;

    width: 8px;
    height: 8px;

    border-right: 2px solid var(--hc-turquoise);
    border-bottom: 2px solid var(--hc-turquoise);

    transform: rotate(45deg);

    pointer-events: none;
}


#hero-search select:hover {
    border-color: rgba(7, 153, 173, 0.55);
    background-color: #fbfeff;

    box-shadow:
        0 7px 18px rgba(7, 91, 104, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

    transform: translateY(-1px);
}


#hero-search select:focus,
#hero-search select:focus-visible,
#hero-search select:active {
    outline: none;

    color: var(--hc-text) !important;
    -webkit-text-fill-color: var(--hc-text) !important;

    border-color: var(--hc-turquoise);

    box-shadow:
        0 0 0 4px rgba(7, 153, 173, 0.14),
        0 8px 20px rgba(7, 91, 104, 0.12);
}


#hero-search select option {
    color: var(--hc-text) !important;
    -webkit-text-fill-color: var(--hc-text) !important;

    background-color: var(--hc-white);
}


/* =========================================================
   REISGEZELSCHAP – VELD
   ========================================================= */

#hero-search .travellers-trigger {
    width: 100%;
    min-height: 58px;

    display: flex;
    align-items: center;

    position: relative;

    padding: 14px 48px;

    color: var(--hc-text);
    background-color: var(--hc-white);

    border: 1.5px solid rgba(7, 153, 173, 0.22);
    border-radius: 14px;

    box-shadow:
        0 4px 12px rgba(7, 91, 104, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);

    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: left;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease,
        background-color 0.25s ease;
}


#hero-search .travellers-trigger:hover {
    border-color: rgba(7, 153, 173, 0.55);
    background-color: #fbfeff;

    box-shadow:
        0 7px 18px rgba(7, 91, 104, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);

    transform: translateY(-1px);
}


#hero-search .travellers-trigger:focus,
#hero-search .travellers-trigger:focus-visible,
#hero-search .travellers-trigger[aria-expanded="true"] {
    outline: none;

    border-color: var(--hc-turquoise);

    box-shadow:
        0 0 0 4px rgba(7, 153, 173, 0.14),
        0 8px 20px rgba(7, 91, 104, 0.12);
}


#hero-search .travellers-trigger-icon::before {
    content: "0c0";

    position: absolute;

    left: 17px;
    top: 50%;

    color: var(--hc-turquoise);

    font-family: "Font Awesome 5 Free";
    font-size: 17px;
    font-weight: 900;

    transform: translateY(-50%);
}


#hero-search .travellers-trigger-text {
    overflow: hidden;

    white-space: nowrap;
    text-overflow: ellipsis;
}


#hero-search .travellers-trigger-arrow {
    position: absolute;

    right: 19px;
    top: 50%;

    width: 8px;
    height: 8px;

    border-right: 2px solid var(--hc-turquoise);
    border-bottom: 2px solid var(--hc-turquoise);

    transform: translateY(-70%) rotate(45deg);

    transition: transform 0.2s ease;
}


#hero-search
.travellers-trigger[aria-expanded="true"]
.travellers-trigger-arrow {
    transform: translateY(-25%) rotate(225deg);
}


/* =========================================================
   REISGEZELSCHAP – POP-UP
   ========================================================= */

#hero-search .travellers-panel {
    width: 100%;
    min-width: 390px;

    position: absolute;
    z-index: 9999;

    top: calc(100% + 12px);
    right: 0;

    overflow: hidden;

    background: var(--hc-white);

    border: 1px solid rgba(7, 153, 173, 0.16);
    border-radius: 18px;

    box-shadow:
        0 24px 60px rgba(5, 70, 80, 0.20),
        0 5px 16px rgba(5, 70, 80, 0.10);

    opacity: 0;
    transform: translateY(-8px) scale(0.985);

    transition:
        opacity 0.18s ease,
        transform 0.18s ease;
}


#hero-search .travellers-panel[hidden] {
    display: none;
}


#hero-search .travellers-panel.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
}


#hero-search .travellers-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 22px 14px;
}


#hero-search .travellers-panel-header h3 {
    margin: 0;

    color: var(--hc-turquoise-dark);

    font-family: inherit;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}


#hero-search .travellers-close {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    flex: 0 0 44px;

    padding: 0;

    background: var(--hc-turquoise-light);

    border: none;
    border-radius: 50%;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}


#hero-search .travellers-close:hover {
    background: rgba(7, 153, 173, 0.18);

    transform: rotate(5deg);
}


#hero-search .travellers-close span::before,
#hero-search .travellers-close span::after {
    content: "";

    width: 20px;
    height: 2px;

    position: absolute;

    top: 21px;
    left: 12px;

    background: var(--hc-text);

    border-radius: 2px;
}


#hero-search .travellers-close span::before {
    transform: rotate(45deg);
}


#hero-search .travellers-close span::after {
    transform: rotate(-45deg);
}


#hero-search .traveller-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 17px 22px;

    border-bottom: 1px solid rgba(7, 153, 173, 0.10);
}


#hero-search .traveller-label {
    display: flex;
    flex-direction: column;

    gap: 3px;
}


#hero-search .traveller-label strong {
    color: var(--hc-text);

    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}


#hero-search .traveller-label span {
    color: var(--hc-muted);

    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}


#hero-search .traveller-counter {
    display: grid;
    grid-template-columns: 42px 38px 42px;

    align-items: center;
    justify-items: center;

    gap: 6px;

    flex: 0 0 auto;
}


#hero-search .counter-value {
    min-width: 32px;

    color: var(--hc-text);

    font-size: 19px;
    font-weight: 800;
    line-height: 1;

    text-align: center;
}


#hero-search .counter-button {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    color: var(--hc-turquoise);
    background: var(--hc-white);

    border: 1.5px solid rgba(7, 153, 173, 0.28);
    border-radius: 50%;

    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


#hero-search .counter-button:hover:not(:disabled) {
    color: var(--hc-white);
    background: var(--hc-turquoise);

    border-color: var(--hc-turquoise);

    transform: scale(1.06);
}


#hero-search .counter-button:focus-visible {
    outline: none;

    box-shadow: 0 0 0 4px rgba(7, 153, 173, 0.14);
}


#hero-search .counter-button:disabled {
    color: #cbd4d7;
    background: #f6f8f9;

    border-color: #dce3e5;

    cursor: not-allowed;
}


#hero-search .travellers-panel-footer {
    padding: 18px 22px 22px;

    background: #f7fbfc;
}


#hero-search .travellers-confirm {
    width: 100%;
    min-height: 50px;

    padding: 12px 20px;

    color: var(--hc-text);

    background:
        linear-gradient(
            135deg,
            #ffc12c 0%,
            var(--hc-yellow) 55%,
            #ff9f00 100%
        );

    border: none;
    border-radius: 12px;

    box-shadow:
        0 8px 18px rgba(255, 174, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.40);

    font-family: inherit;
    font-size: 16px;
    font-weight: 800;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


#hero-search .travellers-confirm:hover {
    color: var(--hc-white);

    background:
        linear-gradient(
            135deg,
            var(--hc-turquoise) 0%,
            var(--hc-turquoise-dark) 100%
        );

    box-shadow:
        0 10px 22px rgba(7, 153, 173, 0.25);

    transform: translateY(-1px);
}


/* =========================================================
   ZOEKKNOP
   ========================================================= */

#hero-search .button-field,
#hero-search .cta-field {
    align-self: end;
}


#hero-search .cta-button {
    width: 100%;
    min-height: 58px;

    padding: 14px 24px;

    position: relative;
    overflow: hidden;

    color: var(--hc-text);

    background:
        linear-gradient(
            135deg,
            #ffc12c 0%,
            var(--hc-yellow) 55%,
            #ff9f00 100%
        );

    border: none;
    border-radius: 14px;

    box-shadow:
        0 9px 22px rgba(255, 174, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);

    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;

    cursor: pointer;

    transition:
        color 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
}


#hero-search .cta-button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -110%;

    width: 70%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.55s ease;
}


#hero-search .cta-button:hover {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--hc-turquoise) 0%,
            var(--hc-turquoise-dark) 100%
        );

    box-shadow:
        0 12px 26px rgba(7, 153, 173, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);

    transform: translateY(-2px);
}


#hero-search .cta-button:hover::before {
    left: 140%;
}


#hero-search .cta-button:focus,
#hero-search .cta-button:focus-visible {
    outline: none;

    box-shadow:
        0 0 0 4px rgba(255, 174, 0, 0.24),
        0 12px 26px rgba(255, 174, 0, 0.30);
}


#hero-search .cta-button:active {
    transform: translateY(0);

    box-shadow:
        0 5px 12px rgba(7, 153, 173, 0.22);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    #hero-search {
        width: calc(100% - 28px);
        max-width: 760px;

        padding: 22px;
    }

    #hero-search .search-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #hero-search .button-field,
    #hero-search .cta-field,
    #hero-search .search-field:last-child {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   MOBIEL
   ========================================================= */

@media (max-width: 600px) {

    #hero-search {
        width: calc(100% - 22px);

        padding: 19px 16px 16px;

        border-radius: 18px;
    }

    #hero-search::before {
        left: 22px;
        right: 22px;
    }

    #hero-search .search-container {
        display: flex;
        flex-direction: column;

        gap: 15px;
    }

    #hero-search .search-field,
    #hero-search .button-field,
    #hero-search .cta-field {
        width: 100%;
    }

    #hero-search label {
        margin-left: 2px;
        margin-bottom: 7px;

        font-size: 13px;
    }

    #hero-search select,
    #hero-search .travellers-trigger,
    #hero-search .cta-button {
        min-height: 54px;

        border-radius: 13px;

        font-size: 15px;
    }

    #hero-search select,
    #hero-search .travellers-trigger {
        padding-left: 45px;
    }

    #hero-search .destination-field::before {
        left: 16px;
        bottom: 18px;

        font-size: 17px;
    }

    #hero-search .destination-field::after {
        right: 18px;
        bottom: 22px;
    }

    #hero-search .travellers-panel {
        width: 100%;
        min-width: 0;

        right: 0;
        left: 0;
    }

    #hero-search .travellers-panel-header {
        padding: 18px 16px 12px;
    }

    #hero-search .traveller-row {
        padding: 16px;
    }

    #hero-search .travellers-panel-footer {
        padding: 16px;
    }

    #hero-search .traveller-counter {
        grid-template-columns: 38px 30px 38px;

        gap: 4px;
    }

    #hero-search .counter-button {
        width: 38px;
        height: 38px;
    }

    #hero-search .traveller-label strong {
        font-size: 16px;
    }

    #hero-search .traveller-label span {
        font-size: 13px;
    }
}


/* Specifiek voor iOS */
@supports (-webkit-touch-callout: none) {

    #hero-search select {
        color: var(--hc-text) !important;
        -webkit-text-fill-color: var(--hc-text) !important;

        -webkit-appearance: none;

        background-color: var(--hc-white);
    }

    #hero-search select option {
        color: var(--hc-text) !important;
        -webkit-text-fill-color: var(--hc-text) !important;
    }
}


/* Extra specifieke selector voor Safari en iOS */
_::-webkit-full-page-media,
_:future,
:root #hero-search select {
    color: #17252a !important;
    -webkit-text-fill-color: #17252a !important;
}


/* =========================================================
   HEADER – CUSTOM DROPDOWN LIST
   ========================================================= */

ul.custom-dropdown-list {
    width: 100%;

    margin: 0;
    padding: 0;

    list-style: none;
}


ul.custom-dropdown-list li {
    margin: 0;
    padding: 0.35rem 0;

    list-style: none;

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


ul.custom-dropdown-list li a {
    color: #656161;

    font-size: 0.8rem;

    text-decoration: none;

    transition: 0.3s ease all;
}


ul.custom-dropdown-list li a:hover {
    color: var(--hc-turquoise);

    text-decoration: underline;

    transition: 0.3s ease all;
}


/* =========================================================
   BREAKDANCE TABS
   ========================================================= */

.breakdance .bde-advanced-tabs-512-265 .bde-tabs__tab:not(.is-active) {
    background-color: var(--inactiveBgColor);
}


.bde-tabs__tabslist--bar .bde-tabs__tab:last-child {
    border-right: none;
}


.bde-tabs__tabslist--bar .bde-tabs__tab {
    padding: 16px 40px;

    border-right: 1px solid var(--separatorColor);
}


.breakdance *,
.breakdance *::before,
.breakdance *::after {
    box-sizing: border-box;
}


.bde-tabs__tab {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;

    position: relative;

    margin: 0;
    padding: 16px 8px;

    border: 0;

    font-weight: 400;

    appearance: none;

    cursor: pointer;

    transition: all var(--transitionTime) ease;
}


/* =========================================================
   BADGES
   ========================================================= */

.badge-bullet {
    position: relative;

    padding-left: 2.5rem !important;
}


.badge-bullet::before {
    content: "•";

    display: block;

    position: absolute;

    top: 50%;
    left: 1rem;

    transform: translateY(-50%);

    width: 10px;
    height: 10px;

    color: var(--hc-yellow);

    font-size: 1rem;
    font-weight: 600;
    line-height: 10px;
}


/* =========================================================
   THEMA GRID
   ========================================================= */

.thema-grid {
    display: grid;

    gap: 20px;
}


/* Desktop en tablet landscape: 3 kolommen */
@media (min-width: 1024px) {
    .thema-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Tablet portrait: 2 kolommen */
@media (max-width: 1023px) {
    .thema-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobiel: 1 kolom */
@media (max-width: 480px) {
    .thema-grid {
        grid-template-columns: 1fr;
    }
}


.thema-card {
    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
        0 0 #0000,
        0 0 #0000,
        0 2px 0 0 rgba(0, 0, 0, 0.05);

    text-decoration: none !important;

    transition: 0.3s ease all;
}


.thema-card:hover {
    box-shadow:
        0 0 #0000,
        0 0 #0000,
        0 3px 0 0 var(--hc-yellow);

    transform: scale(1.02);
}


.thema-card .thema-content {
    padding: 0.5rem;
}


.thema-card h3.thema-title {
    color: var(--bde-palette-color-3);

    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 600;

    text-decoration-line: none;
}


.thema-card .thema-content a {
    text-decoration: none !important;
}


.thema-card .breakdance-image-clip,
.thema-card .breakdance-image-clip img {
    transition: 0.3s ease all;
}


.thema-card:hover .breakdance-image-clip img {
    transform: scale(1.05);
}


.thema-image {
    height: 200px;

    background-position: center;
    background-size: cover;
}


/* =========================================================
   BLOG CARDS
   ========================================================= */

.blog-card {
    box-shadow:
        0 0 #0000,
        0 0 #0000,
        0 2px 0 0 rgba(0, 0, 0, 0.05);
}


.blog-card:hover {
    box-shadow:
        0 0 #0000,
        0 0 #0000,
        0 3px 0 0 var(--hc-yellow);
}


.blog-card .featured-img .breakdance-image-clip,
.blog-card .featured-img .breakdance-image-clip img {
    transition: 0.3s ease all;
}


.blog-card:hover .featured-img .breakdance-image-clip img {
    transform: scale(1.05);
}


.blog-card:hover a.button-atom.button-atom--secondary {
    color: #ffffff;

    background: var(--bde-button-secondary-background-color-hover);
}


/* =========================================================
   INSTAGRAM CARDS
   ========================================================= */

.instagram-card {
    box-shadow:
        0 4px 6px rgba(7, 153, 173, 0.10),
        0 1px 3px rgba(7, 153, 173, 0.08);

    transition: all 0.3s ease;
}


.instagram-card:hover {
    box-shadow:
        0 10px 20px rgba(7, 153, 173, 0.18),
        0 6px 6px rgba(7, 153, 173, 0.10);
}


/* =========================================================
   ALGEMEEN ZOEKVELD
   ========================================================= */

.devakantiegids-search-wrapper {
    max-width: 400px;

    margin: 20px 0;
}


/* Basis zoekveld */
#devakantiegids-searchform input[type="text"],
#search-input {
    width: 100%;

    padding: 10px 15px;

    font-size: 14px;

    border: 1px solid rgba(7, 153, 173, 0.25);
    border-radius: 50px;

    transition: all 0.3s ease;
}


#search-input:focus {
    outline: none;

    border-color: var(--hc-turquoise);

    box-shadow:
        0 0 0 3px rgba(7, 153, 173, 0.10),
        0 2px 10px rgba(0, 0, 0, 0.08);
}


/* Autocomplete dropdown */
.ui-autocomplete {
    width: 100% !important;
    max-height: 400px;

    left: auto !important;

    overflow-x: hidden;
    overflow-y: auto;

    margin: 0;
    padding: 0;

    background-color: #ffffff;

    border: 1px solid rgba(7, 153, 173, 0.20);
    border-radius: 0 0 10px 10px;

    box-shadow: 0 15px 35px rgba(7, 91, 104, 0.12);

    transform: translateY(20px) !important;

    z-index: 1000;
}


/* Categorieheaders */
.ui-autocomplete .ui-autocomplete-category {
    padding: 12px 15px;

    color: var(--hc-turquoise-dark);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: var(--hc-turquoise-light);
}


/* Resultaatitems */
.ui-menu-item {
    margin: 0;
    padding: 0;

    border-bottom: 1px solid #eeeeee;

    list-style: none !important;
}


.ui-menu-item:last-child {
    border-bottom: none;
}


.ui-menu-item-wrapper {
    display: flex;
    align-items: center;

    padding: 12px 15px;

    cursor: pointer;

    transition: background-color 0.2s ease;
}


/* Thumbnail */
.ui-menu-item-wrapper img {
    width: 50px;
    height: 50px;

    margin-top: 5px;
    margin-right: 15px;

    object-fit: cover;

    border-radius: 6px;
}


/* Resultaattekst */
.item-details {
    flex: 1;

    padding-top: 5px;
}


.item-title {
    display: block;

    margin-bottom: 5px;

    color: var(--hc-text);

    font-weight: 600;
}


.item-excerpt {
    display: block;

    color: #666666;

    font-size: 0.9em;
}


/* Alle resultaten */
.all-results {
    padding: 12px 15px;

    color: var(--hc-text);
    background: var(--hc-turquoise-light);

    font-weight: 700;

    text-align: center;
}


/* Hoverstates autocomplete */
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-menu-item-wrapper:hover,
.all-results:hover {
    margin: 0 !important;

    color: var(--hc-text) !important;
    background-color: var(--hc-turquoise-light) !important;

    border: none !important;
    outline: none !important;
}


/* Type labels */
.ui-menu-item-wrapper::before {
    display: inline-block;

    margin-right: 10px;
    margin-bottom: 5px;
    padding: 3px 8px;

    color: var(--hc-turquoise-dark);
    background-color: var(--hc-turquoise-light);

    border-radius: 50px;

    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    transform: translateY(-2px);
}


/* Duitse labels */
.ui-menu-item.vakantie .ui-menu-item-wrapper::before {
    content: "Reise";
}


.ui-menu-item.post .ui-menu-item-wrapper::before {
    content: "Inspiration";
}


.ui-menu-item.aanbieder .ui-menu-item-wrapper::before {
    content: "Anbieter";
}


/* Scrollbar */
.ui-autocomplete::-webkit-scrollbar {
    width: 8px;
}


.ui-autocomplete::-webkit-scrollbar-track {
    background: #f1f1f1;
}


.ui-autocomplete::-webkit-scrollbar-thumb {
    background: var(--hc-turquoise);

    border-radius: 4px;
}


.ui-autocomplete::-webkit-scrollbar-thumb:hover {
    background: var(--hc-turquoise-dark);
}


/* Responsive autocomplete */
@media (max-width: 768px) {
    .devakantiegids-search-wrapper {
        max-width: 100%;
    }

    .ui-menu-item-wrapper img {
        width: 40px;
        height: 40px;
    }

    .item-title,
    .item-excerpt {
        font-size: 13px;
    }
}


/* =========================================================
   SEARCH RESULTS
   ========================================================= */

.search-results-section {
    margin-bottom: 3rem;
}


h2.search-results-title {
    margin-bottom: 2rem;

    color: var(--bde-headings-color);

    font-size: 1.7rem !important;
    font-weight: 600;
}


/* Posts grid */
.devakantiegids-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* Postcard */
.post-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(7, 153, 173, 0.12);
    border-radius: 10px;

    box-shadow:
        0 0 #0000,
        0 0 #0000,
        0 2px 0 0 rgba(0, 0, 0, 0.05);

    transition: 0.3s ease all;
}


.post-card:hover {
    box-shadow:
        0 0 #0000,
        0 0 #0000,
        0 3px 0 0 var(--hc-yellow);

    transform: scale(1.02);
}


.post-card-image {
    position: relative;

    overflow: hidden;
}


.post-card-image img {
    width: 100%;
    height: 200px;

    object-fit: cover;

    transition: transform 0.3s ease;
}


.post-card:hover .post-card-image img {
    transform: scale(1.1);
}


.post-card-content {
    padding: 1.5rem;
}


.post-card-title {
    margin: 0 0 1rem;

    font-size: 1.1rem !important;
    text-transform: none !important;
}


.post-card-title a {
    color: var(--bde-headings-color);

    text-decoration: none;
}


.post-card-title a:hover {
    color: var(--hc-turquoise);
}


.post-card-excerpt {
    margin-bottom: 1.5rem;

    color: var(--bde-text-color);

    font-size: 0.9rem;
    line-height: 1.6;
}


.post-card-button {
    display: inline-block;

    padding: 0.5rem 1rem;

    color: var(--hc-text);

    border: 2px solid var(--hc-yellow);
    border-radius: 50px;

    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;

    transition: 0.3s ease all;
}


.post-card-button:hover {
    color: #ffffff;
    background: var(--hc-turquoise);

    border-color: var(--hc-turquoise);
}


/* Tablet */
@media (max-width: 991px) {
    .devakantiegids-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobiel */
@media (max-width: 575px) {
    .devakantiegids-posts-grid {
        grid-template-columns: 1fr;
    }

    .search-results-section {
        margin-bottom: 2rem;
    }
}