/* ===========================================================================
   CC Events — overzichten en datumpaginas
   ---------------------------------------------------------------------------
   Verticale Cacaofabriek-stijl voor archive-event.php + taxonomy-event-categories.php.
   Apart enqueued vanuit functions.php zodat de bestaande SCSS-build niet wordt
   geraakt.
   =========================================================================== */

/* Maandkop in listing */
.event-listing__month {
    border-bottom: 2px solid currentColor;
    padding-bottom: .25rem;
    font-size: 1.5rem;
}

/* Eén rij in de agenda */
.event-row {
    gap: 1rem;
}

/* Laatste rij in een maand (vóór de volgende maandkop) of allerlaatste rij:
   geen border-bottom — voorkomt dubbele lijn boven de volgende maand. */
.event-listing .event-row:has(+ .event-listing__month),
.event-listing .event-row:last-of-type {
    border-bottom: 0 !important;
}

.event-row__date {
    min-width: 90px;
    padding-right: 1rem;
    border-right: 1px dotted rgba(0,0,0,.15);
}

.event-row__image img {
    width: 220px;
    height: 124px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.event-row__body h2 {
    line-height: 1.2;
}

/* Speeldata-knopjes onder de titel (no_date rijen, bv. film-archief) */
.event-row__dates {
    gap: .35rem;
}
.event-row__date-btn {
    font-size: 12px;
    padding: .2rem .5rem;
    line-height: 1.3;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: .25px;
}
.event-row__date-btn.is-sold {
    text-decoration: line-through;
    opacity: .65;
    pointer-events: none;
}
.event-row__date-btn.is-last {
    border-color: #d50032;
    color: #d50032;
}
.event-row__date-btn.is-last:hover {
    background-color: #d50032;
    color: #fff;
}

/* Verborgen extra datums + toggle-knop */
.event-row__date-btn--hidden {
    display: none !important;
}
.event-row__dates[data-collapsed="0"] .event-row__date-btn--hidden {
    display: inline-block !important;
}
.event-row__dates-toggle {
    font-size: 12px;
    font-weight: 600;
    color: #524459;
    text-decoration: underline;
    align-self: center;
    line-height: 1.3;
}
.event-row__dates-toggle:hover,
.event-row__dates-toggle:focus {
    color: #2e2434;
    text-decoration: underline;
}

.event-row__body h2 a:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.event-row__venue {
    color: #777;
    margin-left: .25rem;
}

.event-row__cta {
    min-width: 140px;
}

.event-row__price {
    font-size: 1.1rem;
}

/* Film-archief: desktop = horizontale rij met liggende thumbnail (16:9).
   Mobiel/tablet = volledig gestapeld met foto bovenop zodat de CTA-knop
   altijd in beeld blijft. */
.event-listing--films .event-row {
    flex-direction: row;
    align-items: center;
}
.event-listing--films .event-row__image img {
    width: 220px;
    height: 124px;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .event-listing--films .event-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .event-listing--films .event-row__image {
        margin-right: 0 !important;
        margin-bottom: .75rem !important;
        width: 100%;
        display: block;
    }
    .event-listing--films .event-row__image img {
        width: 100%;
        height: auto;
        max-height: 280px;
        aspect-ratio: 16 / 9;
    }
    .event-listing--films .event-row__body {
        width: 100%;
    }
    .event-listing--films .event-row__cta {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100%;
        margin-top: .75rem !important;
        text-align: left !important;
    }
    .event-listing--films .event-row__cta .btn {
        margin-top: 0 !important;
    }
}

/* Single event — keuze-datum kaartjes */
.event-date-card {
    background: #fff;
    border-radius: 4px;
}

.event-date-card .card-body {
    padding: 1rem;
}

.event-date-card time {
    font-size: 1.05rem;
}

/* ===========================================================================
   Event-standaardtekst (intro-blocks) & Zaal-standaardtekst — huisstijl card
   Paarse header-bar (#524459), gouden accent (#C69314), sharp edges, uppercase.
   =========================================================================== */
.event-intro-block,
.venue-default-text {
    position: relative;
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: 0 13px 20px 0 rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    display: block;
    overflow: hidden;
}

/* Bovenste gouden accent-streep (zelfde gevoel als .border-after / btn-cta gold) */
.event-intro-block::before,
.venue-default-text::before {
    content: "";
    display: block;
    height: 4px;
    background: #C69314;
}

.event-intro-block__header,
.venue-default-text__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: #524459;
    color: #fff;
}

.event-intro-block__icon,
.venue-default-text__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 2px solid #C69314;
    background: transparent;
    color: #C69314;
}

.event-intro-block__label,
.venue-default-text__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #C69314;
    margin-bottom: 3px;
    line-height: 1;
}

.event-intro-block__title,
.venue-default-text__title {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    letter-spacing: .5px;
    line-height: 1.15;
}

.venue-default-text__title a {
    color: inherit;
    text-decoration: none;
    transition: color .15s ease;
}

.venue-default-text__title a:hover,
.venue-default-text__title a:focus {
    color: #C69314;
    text-decoration: none;
}

.event-intro-block__body,
.venue-default-text__body {
    color: #3a313e;
    font-size: 15px;
    line-height: 1.65;
    padding: 1.25rem 1.5rem 1.4rem;
}

.event-intro-block__body p:last-child,
.venue-default-text__body p:last-child {
    margin-bottom: 0;
}

.event-intro-block__body a,
.venue-default-text__body a {
    color: #524459;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: #C69314;
    text-underline-offset: 3px;
}

.event-intro-block__body a:hover,
.event-intro-block__body a:focus,
.venue-default-text__body a:hover,
.venue-default-text__body a:focus {
    color: #C69314;
}

@media (max-width: 575.98px) {
    .event-intro-block__header,
    .venue-default-text__header {
        padding: 0.95rem 1.1rem;
        gap: 0.75rem;
    }
    .event-intro-block__icon,
    .venue-default-text__icon {
        width: 38px;
        height: 38px;
    }
    .event-intro-block__title,
    .venue-default-text__title {
        font-size: 1.05rem;
    }
    .event-intro-block__body,
    .venue-default-text__body {
        padding: 1rem 1.1rem 1.15rem;
    }
}

/* FacetWP-facets uitlijnen */
.facetwp-facets .facetwp-facet {
    margin-bottom: 0;
}

/* Result-count verbergen bij alle facets */
.facetwp-counter {
    display: none !important;
}

/* ===========================================================================
   Sidebar facet-layout (col-lg-3) — Cacaofabriek-stijl, gepolijst
   =========================================================================== */
.facet-sidebar {
    font-size: 14px;
    color: #524459;
}

.facet-sidebar__group {
    background: #fff;
    border: 1px solid rgba(82, 68, 89, 0.12);
    border-radius: 4px;
    padding: 1rem 1.1rem 1.1rem;
    box-shadow: 0 1px 3px rgba(31, 21, 31, 0.04);
    transition: box-shadow .2s ease;
}

.facet-sidebar__group:hover {
    box-shadow: 0 2px 8px rgba(31, 21, 31, 0.07);
}

.facet-sidebar__label {
    font-size: 12px;
    letter-spacing: 1px;
    color: #524459;
    border-bottom: 2px solid #524459;
    padding-bottom: .5rem;
    margin-bottom: .75rem !important;
}

.facet-sidebar .facetwp-facet {
    margin: 0;
}

/* ---------- Search-input ---------- */
.facet-sidebar .facetwp-input-wrap {
    position: relative;
    width: 100%;
}

.facet-sidebar .facetwp-search {
    width: 100%;
    min-width: 0 !important;
    height: 42px;
    padding: 0 38px 0 14px;
    border: 1.5px solid rgba(82, 68, 89, 0.25);
    border-radius: 3px;
    background-color: #fafafa;
    color: #524459;
    font-size: 14px;
    font-weight: 500;
    transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.facet-sidebar .facetwp-search:hover {
    border-color: rgba(82, 68, 89, 0.5);
}

.facet-sidebar .facetwp-search:focus {
    outline: 0;
    border-color: #524459;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(82, 68, 89, 0.08);
}

.facet-sidebar .facetwp-search::placeholder {
    color: rgba(82, 68, 89, 0.55);
    font-weight: 400;
}

/* ---------- Dropdown (custom select) ---------- */
.facet-sidebar .facetwp-dropdown {
    width: 100%;
    height: 42px;
    padding: 0 38px 0 14px;
    border: 1.5px solid rgba(82, 68, 89, 0.25);
    border-radius: 3px;
    background-color: #fafafa;
    color: #524459;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23524459' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px 6px;
    transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}

.facet-sidebar .facetwp-dropdown:hover {
    border-color: rgba(82, 68, 89, 0.5);
}

.facet-sidebar .facetwp-dropdown:focus {
    outline: 0;
    border-color: #524459;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(82, 68, 89, 0.08);
}

/* ---------- Checkbox-rijen ---------- */
.facet-sidebar .facetwp-checkbox {
    display: flex;
    align-items: center;
    padding: .45rem .5rem .45rem .55rem;
    margin: 0 -.5rem;
    background-image: none !important;
    color: #524459;
    font-weight: 500;
    cursor: pointer;
    line-height: 1.3;
    border-radius: 3px;
    transition: background-color .12s ease, color .12s ease;
    position: relative;
}

.facet-sidebar .facetwp-checkbox::before {
    content: "";
    flex-shrink: 0;
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border: 1.5px solid rgba(82, 68, 89, 0.35);
    border-radius: 3px;
    background-color: #fff;
    transition: border-color .12s ease, background-color .12s ease;
}

.facet-sidebar .facetwp-checkbox:hover {
    background-color: rgba(82, 68, 89, 0.05);
    color: #2e2434;
}

.facet-sidebar .facetwp-checkbox:hover::before {
    border-color: #524459;
}

.facet-sidebar .facetwp-checkbox.checked {
    color: #524459;
    font-weight: 700;
    background-color: rgba(82, 68, 89, 0.06);
}

.facet-sidebar .facetwp-checkbox.checked::before {
    border-color: #524459;
    background-color: #524459;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M2 6.5l2.5 2.5L10 3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.facet-sidebar .facetwp-checkbox .facetwp-counter {
    color: rgba(82, 68, 89, 0.55);
    font-weight: 400;
    margin-left: auto;
    padding-left: .5rem;
    font-size: 12px;
}

/* ---------- "Meer tonen / Minder tonen" link ---------- */
.facet-sidebar .facetwp-toggle,
.facet-sidebar .facetwp-reset {
    display: inline-block;
    margin-top: .5rem;
    color: #524459;
    font-size: 12px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    letter-spacing: .25px;
}

.facet-sidebar .facetwp-toggle:hover,
.facet-sidebar .facetwp-reset:hover {
    color: #2e2434;
}

/* FacetWP-pager (paginatie onder de listing) */
.event-listing__pager {
    margin-top: 2.5rem !important;
}

.event-listing__pager .cc-row-pager,
.event-listing__pager .facetwp-pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .35rem;
    font-size: 14px;
}

.event-listing__pager .facetwp-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 .75rem;
    border: 2px solid #524459;
    border-radius: 2px;
    color: #524459;
    background: #fff;
    font-weight: bold;
    text-decoration: none;
    line-height: 1;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}

.event-listing__pager a.facetwp-page:hover,
.event-listing__pager a.facetwp-page:focus {
    background-color: #524459;
    color: #fff !important;
    text-decoration: none;
}

.event-listing__pager .facetwp-page.active,
.event-listing__pager a.facetwp-page.active {
    background-color: #524459;
    color: #fff !important;
    cursor: default;
}

.event-listing__pager .facetwp-page.first,
.event-listing__pager .facetwp-page.last,
.event-listing__pager .facetwp-page.prev,
.event-listing__pager .facetwp-page.next {
    font-weight: bold;
    letter-spacing: -1px;
}

.event-listing__pager .facetwp-pager-label {
    margin-right: .5rem;
    color: #524459;
    font-size: 13px;
    align-self: center;
}

@media (max-width: 767.98px) {
    .event-row {
        flex-direction: column !important;
        padding: 1rem 0 1.25rem !important;
        gap: .75rem;
    }
    .event-row__date {
        border-right: 0;
        border-bottom: 1px dotted rgba(0,0,0,.15);
        padding: 0 0 .5rem;
        min-width: 0;
        display: flex;
        gap: .5rem;
        align-items: baseline;
        text-align: left !important;
    }
    .event-row__date .h2 {
        display: inline !important;
        font-size: 1.5rem;
    }
    .event-row__image {
        margin-right: 0 !important;
    }
    .event-row__image img {
        width: 100%;
        height: auto;
        max-height: 220px;
        aspect-ratio: 16 / 9;
    }
    .event-row__body h2 {
        font-size: 1.1rem;
    }
    .event-row__cta {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: .75rem;
        min-width: 0;
        margin-top: 0 !important;
    }
    .event-row__cta .btn {
        margin-top: 0 !important;
    }
    .event-listing__month {
        font-size: 1.25rem;
    }
}

/* ===========================================================================
   Mobiele facet-drawer (toggle-knop linksonder + slide-in panel + backdrop)
   =========================================================================== */

.cc-facets-toggle {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    z-index: 1040;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.25rem;
    background: #524459;
    color: #fff;
    border: 0;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.cc-facets-toggle:hover,
.cc-facets-toggle:focus {
    background-color: #2e2434;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
    outline: 0;
}

.cc-facets-toggle__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.cc-facets-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1042;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

body.cc-facets-open .cc-facets-backdrop {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 991.98px) {
    .cc-facets-panel {
        position: fixed !important;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        max-height: 85vh;
        background: #fff;
        z-index: 1043;
        overflow-y: auto;
        transform: translateY(100%);
        transition: transform .3s ease;
        padding: 1rem 1.1rem 2rem !important;
        margin: 0 !important;
        box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.18);
        border-radius: 16px 16px 0 0;
    }

    body.cc-facets-open .cc-facets-panel {
        transform: translateY(0);
    }

    body.cc-facets-open {
        overflow: hidden;
    }

    .cc-facets-panel__header {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.25rem;
        padding-bottom: .75rem;
        border-bottom: 1px solid rgba(82, 68, 89, 0.15);
    }

    .cc-facets-panel__title {
        font-size: 1.15rem;
        font-weight: 700;
        color: #524459;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .cc-facets-panel__close {
        background: none;
        border: 0;
        font-size: 32px;
        line-height: 1;
        color: #524459;
        cursor: pointer;
        padding: 0 .5rem;
    }

    /* Facets in de drawer altijd verticaal stapelen */
    .cc-facets-panel.row {
        display: block;
    }
    .cc-facets-panel.row > [class*="col-"] {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0;
        margin-bottom: 1rem;
    }

    /* Body-scroll-lock fix voor iOS */
    body.cc-facets-open {
        position: relative;
    }
}

@media (min-width: 992px) {
    .cc-facets-toggle,
    .cc-facets-backdrop,
    .cc-facets-panel__header {
        display: none !important;
    }
}

/* ============================================================
   Event opties (single-event.php) — huisstijl card (paars + goud)
   Zelfde stijl als .event-intro-block en .venue-default-text.
   ============================================================ */
.event-options {
    position: relative;
    background: #fff;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: 0 13px 20px 0 rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    display: block;
    overflow: hidden;
}

/* Gouden accent-streep bovenaan */
.event-options::before {
    content: "";
    display: block;
    height: 4px;
    background: #C69314;
}

.event-options__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: #524459;
    color: #fff;
}

.event-options__header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border: 2px solid #C69314;
    background: transparent;
    color: #C69314;
}

.event-options__header-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #C69314;
    margin-bottom: 3px;
    line-height: 1;
}

.event-options__header-title {
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    letter-spacing: .5px;
    line-height: 1.15;
}

.event-options__body {
    padding: 1.25rem 1.5rem 1.4rem;
}

.event-options__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 0.75rem;
    align-items: center;
}

.event-options__item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.95rem 0.4rem 0.4rem;
    background: #fff;
    border: 1.5px solid rgba(82, 68, 89, 0.22);
    border-radius: 999px;
    color: #2a2230;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.event-options__item:hover {
    border-color: #C69314;
    box-shadow: 0 4px 10px rgba(198, 147, 20, 0.18);
    transform: translateY(-1px);
}

.event-options__icon {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #524459;
    color: #C69314;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.event-options__label {
    line-height: 1.2;
    color: #3a313e;
}

.event-options__notes {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(82, 68, 89, 0.22);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    color: #3a313e;
    font-size: 15px;
    line-height: 1.6;
}

.event-options__note strong {
    color: #524459;
}

@media (max-width: 575.98px) {
    .event-options__header {
        padding: 0.95rem 1.1rem;
        gap: 0.75rem;
    }

    .event-options__header-icon {
        width: 38px;
        height: 38px;
    }

    .event-options__header-title {
        font-size: 1.05rem;
    }

    .event-options__body {
        padding: 1rem 1.1rem 1.15rem;
    }

    .event-options__item {
        font-size: 0.87rem;
    }

    .event-options__icon {
        width: 28px;
        height: 28px;
        font-size: 0.78rem;
    }
}

/* ============================================================
   Zwevende WhatsApp-knop (cc-whatsapp.php) — rechtsonder
   ============================================================ */
.cc-whatsapp-fab {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1041;
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 0;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    font-weight: 600;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.cc-whatsapp-fab:hover,
.cc-whatsapp-fab:focus {
    color: #fff;
    background: #1da851;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
    transform: translateY(-2px);
}

.cc-whatsapp-fab__icon {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cc-whatsapp-fab__label {
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width .25s ease, opacity .2s ease, padding .25s ease;
}

@media (min-width: 992px) {
    .cc-whatsapp-fab--has-label:hover .cc-whatsapp-fab__label,
    .cc-whatsapp-fab--has-label:focus .cc-whatsapp-fab__label {
        max-width: 16rem;
        opacity: 1;
        padding-left: 1rem;
        padding-right: 0.5rem;
    }
}

/* Op mobiel: alleen icoon (label klapt nooit open) zodat de knop compact blijft. */
@media (max-width: 575.98px) {
    .cc-whatsapp-fab {
        right: 1rem;
        bottom: 1rem;
    }

    .cc-whatsapp-fab__icon {
        width: 52px;
        height: 52px;
    }
}

/* ============================================================
   Back-to-top knop boven de WhatsApp-FAB stapelen
   ============================================================ */
@media (min-width: 992px) {
    .scrolltop-wrap {
        right: 1.25rem !important;
    }
    .scrolltop-wrap a {
        top: -8.5rem;
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 50%;
    }
}
