﻿a {
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
input {
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
button {
    outline: 0 !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.cursor-pointer {
    cursor: pointer;
}
.cursor-default {
    cursor: default;
}
img {
    max-width: 100%;
    height: auto;
}
.w-100 {
    width: 100% !important;
}
.radius20{
    border-radius:20px;
}
/*** main-info ***/
.main-info {
    padding: 30px 0px 50px 0px;
}
.main-info .datebar {
    border-radius: 20px;
    background: #FFF;
    padding-top: 17px;
    overflow: hidden;
}
    .main-info .datebar h2 {
        padding: 0px 32px;
        font-size: 25px;
        font-weight: 500;
        display: flex;
        align-items: center;
        /*justify-content: space-between;*/
        gap: 14px;
        margin-top: 0px;
        margin-bottom: 15px;
    }
    .main-info .datebar .date-updated {
        padding: 0px 32px;
        font-size: 13px;
        margin-bottom: 15px;
    }
    .main-info .datebar .radius {
        border-radius: 0px 0px 20px 20px;
    }

    .main-info .smallbar {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin: 24px 0px;
        gap: 5px;
    }

        .main-info .smallbar .user {
            display: flex;
            height: 48px;
            padding: 8px 24px 8px 4px;
            justify-content: center;
            align-items: center;
            gap: 4px;
            border-radius: 20px;
            background: #FFF;
        }
        .main-info .smallbar .user-name {
            max-width: 190px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
            .main-info .smallbar .user .img {
                display: flex;
                width: 40px;
                height: 40px;
                padding: 12px 14px;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                margin-right: 10px;
                border-radius: 50%;
                background: #FFF2D9;
                color: #A85A00;
                font-size: 14px;
                font-weight: 400;
            }
                .main-info .smallbar .user .img img {
                    width: 35px;
                    height: 35px;
                    position: absolute;
                    border-radius: 20px;
                }

                .main-info .smallbar .user .img + div {
                    color: #454545;
                    font-size: 14px;
                    font-weight: 600;
                }

                    .main-info .smallbar .user .img + div span {
                        color: rgba(69, 69, 69, 0.80);
                        font-size: 12px;
                        font-weight: 400;
                    }
.indicator-validated {
    display: inline-block;
    text-align: center;
    line-height: 48px;
    color: #008000;
    font-weight: 700;
    min-width: 230px;
    border-radius: 20px;
    background: rgba(229, 246, 225, 0.80);
    text-transform: inherit;
}

    .indicator-validated img {
        margin-right: 5px;
    }
.btn-default {
    display: inline-block;
    text-align: center;
    border-radius: 32px;
    background: #00AEEF;
    color: #FAFAFA;
    font-weight: 600;
    line-height: 48px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0;
    padding-bottom: 0;
    line-height: 46px;
}
    .btn-default.bordered {
        background-color: #f8f8f8;
        border: 1px solid #00AEEF;
        color: #00AEEF;
        font-weight: 700;
    }
        .btn-default.bordered:hover {
            background-color: #FFFFFF;
        }
        .btn-default.bordered:active {
            /*color: #fff;*/
        }
        .btn-default.bordered:focus-visible {
            outline: 2px solid #00AEEF !important;
            /*color: #fff;*/
        }
        .btn-default.bordered.share {
            min-width: 230px;
        }
        .btn-default.bordered.share img {
            margin-left: 3px;
            margin-right: 0px;
        }
.main-info .story-info {
    padding: 32px;
    border-radius: 20px;
    background: #FFF;
    margin-bottom: 20px;
}
    .main-info .story-info h3 {
        color: #454545;
        font-size: 20px;
        font-weight: 600;
        margin: 0;
        margin-bottom: 10px;
    }

    .main-info .story-info ul {
        list-style: disc;
        padding-left: 1.5em;
    }
    .main-info .story-info em {
        font-style:italic;
    }
    .main-info .story-info strong {
        font-weight:600;
    }

    .thumb-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .thumb {
        flex: 0 0 calc(20% - 12px); /* 5 per rij (20% elk) */
        max-width: 180px; /* wordt niet groter dan dit */
        aspect-ratio: 3 / 2; /* moderne browsers; anders padding-truc */
        background: #f6f6f6;
        border-radius: 6px;
        overflow: hidden;
        position: relative;
    }
    /* Fallback voor browsers zonder aspect-ratio */
    @supports not (aspect-ratio: 1) {
        .thumb {
            height: 120px; /* vaste hoogte als fallback */
        }
    }

    .thumb img {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        transform: translate(-50%, -50%);
    }
    /* Responsief kleiner maken op smalle schermen */
    @media (max-width: 768px) {
        .thumb {
            flex: 0 0 calc(33.33% - 12px); /* 3 per rij */
        }
    }

    @media (max-width: 480px) {
        .thumb {
            flex: 0 0 calc(50% - 12px); /* 2 per rij */
        }
    }

    .thumb:hover img {
        transform: translate(-50%, -50%) scale(1.05);
        transition: transform .15s ease-out;
    }

    .main-info .read-para-content {
        max-height: 500px;
        position: relative;
        overflow: hidden;
        transition: max-height .3s ease;
        -webkit-transition: max-height .3s ease;
        /*color: #808080;*/
        font-size: 15px;
        line-height: 1.4;
        font-style: normal;
        font-weight: 400;
        word-break: break-word;
        word-wrap: break-word;
    }

        .main-info .read-para-content::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 150px;
            background: linear-gradient(360deg, var(--text, rgb(255 255 255 / 80%)) 26.36%, rgb(255 255 255 / 0%) 100%);
        }

        .main-info .read-para-content h2 {
            font-size: 20px;
        }

    .main-info .read-para.expanded .read-para-content {
        max-height: none;
    }

        .main-info .read-para.expanded .read-para-content::after {
            display: none;
        }

    .main-info .read-para .readmorebtn {
        cursor: pointer;
        color: #454545;
        font-size: 16px;
        font-weight: 600;
        text-decoration: underline;
    }

        .main-info .read-para .readmorebtn:hover {
            text-decoration: none;
        }
    /*** modal css ***/
    .modal-body {
        position: relative;
        padding: 32px;
    }

    .modal-content {
        border: none;
        border-radius: 10px;
        background: #FFF;
    }

    .modal h4 {
        color: #454545;
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .modal .close {
        opacity: 1;
    }

    .modal p {
        color: #454545;
        font-size: 16px;
        font-weight: 400;
        margin-bottom: 24px;
    }

    .modal .copybar {
        border-radius: 20px;
        border: 1.5px solid #F3F3F3;
        background: #F8F8F8;
        box-shadow: 4px 4px 8px 0px rgba(255, 255, 255, 0.35) inset;
        backdrop-filter: blur(32px);
        display: flex;
        padding: 8px 8px 8px 16px;
        align-items: center;
        gap: 4px;
        align-self: stretch;
        margin-bottom: 24px;
    }

        .modal .copybar .text {
            display: inline-block;
            width: 100%;
            font-size: 16px;
            font-weight: 400;
            background: linear-gradient(90deg, var(--text, rgba(69, 69, 69, 0.80)) 34.16%, rgba(63, 63, 63, 0.00) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            white-space: nowrap;
            overflow: hidden;
        }

        .modal .copybar .btn-default {
            min-width: 138px;
            text-transform: capitalize;
            padding: 0px 0px;
            gap: 4px;
        }

            .modal .copybar .btn-default img {
                margin-right: 0px;
            }

    .modal .social a {
        display: inline-block;
        width: 100%;
        display: flex;
        padding: 8px;
        align-items: center;
        gap: 16px;
        align-self: stretch;
        border-radius: 20px;
        margin-bottom: 12px;
        color: inherit;
    }

        .modal .social a:hover {
            background: #F8F8F8;
        }

    .modal .social i {
        color: #fff;
        width: 40px;
        height: 40px;
        border-radius: 20px;
        font-size: 25px;
        text-align: center;
        margin-bottom: 5px;
        padding-top: 9px;
    }

        .modal .social i.fa-print {
            background-color: #72c02c;
            box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
        }

        .modal .social i.fa-qrcode {
            background-color: #ff785d;
            box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
        }

        .modal .social i.fa-whatsapp {
            background-color: #52c051;
            box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
        }

        .modal .social i.fa-x-twitter {
            background: rgb(30, 48, 80);
            box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
        }

        .modal .social i.fa-code {
            background: #939393;
            box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
        }

        .modal .social i.fa-facebook-f {
            background-color: #3b5998;
            box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
        }

        .modal .social i.fa-facebook-messenger {
            background-color: #3b5998;
            box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
        }

        .modal .social i.fa-at {
            background-color: #337ab7;
            box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
        }

        .modal .social i.fa-linkedin {
            background-color: #007bb6;
            box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
        }

        .modal .social i.fa-nextdoor {
            background-color: #1b8751;
            box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
            padding-top: 0;
        }

        .modal .social i.fa-instagram {
            background: #d6249f;
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
            box-shadow: 0px 3px 10px rgba(0, 0, 0, .25);
        }

    .modal {
        text-align: center;
        padding: 0 !important;
    }

        .modal:before {
            content: '';
            display: inline-block;
            height: 100%;
            vertical-align: middle;
            margin-right: -4px;
        }

    .modal-dialog {
        display: inline-block;
        text-align: left;
        vertical-align: middle;
    }

    .modal-backdrop.in {
        filter: none;
        opacity: 1;
        background: rgba(16, 23, 26, 0.73);
        backdrop-filter: blur(10px);
    }

    .modal-view {
        display: none;
    }

        .modal-view.active {
            display: block;
        }

    .price-card {
        display: inline-block;
        width: 100%;
        padding: 32px;
        gap: 20px;
        border-radius: 32px;
        background: #FFF;
        margin-bottom: 24px;
    }

        .price-card.mobile {
            padding: 20px;
            margin-bottom: 0;
            margin-top: 10px;
        }

        .price-card h4 {
            color: #454545;
            font-size: 24px;
            font-weight: 600;
            margin-top: 0;
        }

            .price-card h4 span {
                font-size: 16px;
                /*font-weight: 400;*/
            }

        .price-card .upbar {
            display: flex;
            align-items: center;
            margin-bottom: 35px;
            margin-top: 15px;
        }

        .price-card.mobile .upbar {
            margin-bottom: 15px;
            margin-top: 0px;
        }

        .price-card .upbar .rightimg {
            margin-left: auto;
        }

        .price-card .stext {
            font-size: 16px;
            font-weight: 400;
            margin-right: 20px;
        }

            .price-card .stext img {
                margin-right: 5px;
            }

    .radiobar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 12px;
    }

        .radiobar label {
            border-radius: 20px;
            height: 52px;
            padding: 14px 0px 14px 0px;
            flex: 1 0 0;
            position: relative;
            overflow: hidden;
            text-align: center;
            font-weight: 600;
            background-color: #f6f4f4;
        }

            .radiobar label span {
                color: #454545;
            }

            .radiobar label input {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border: 1px solid #F3F3F3;
                height: 52px;
                appearance: none;
                border-radius: 20px;
                margin: 0;
                outline: none !important;
                box-shadow: none !important;
                cursor: pointer;
            }

                .radiobar label input:hover {
                    border: 1px solid #00AEEF;
                    color: #00AEEF;
                }

                    .radiobar label input:hover + span {
                        color: #00AEEF;
                    }

                .radiobar label input:checked + span {
                    color: #00AEEF;
                    font-weight: 600;
                }

                .radiobar label input:checked {
                    border-radius: 20px;
                    border: 1px solid #00AEEF;
                    background: rgba(0, 174, 239, 0.05);
                }

    .main-info .text-input,
    .main-info .normal-input {
        display: inline-block;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .main-info .normal-input {
        margin-top: 25px;
    }

        .main-info .text-input input,
        .main-info .normal-input input,
        .main-info .normal-input textarea {
            display: inline-block;
            width: 100%;
            height: 56px;
            padding: 16px;
            border-radius: 20px;
            border: 1.5px solid #F3F3F3;
            background: #FFF;
            box-shadow: 4px 4px 8px 0px rgba(255, 255, 255, 0.35) inset;
            backdrop-filter: blur(32px);
            padding-left: 45px;
            font-family: "Raleway", sans-serif;
            font-size: 18px;
            font-weight: 400;
            outline: none !important;
            resize: none;
            background-color: #f6f4f4;
        }

            .main-info .text-input input.input-donation-amount {
                text-align: right;
                padding-right: 50px;
                color: rgba(69, 69, 69, 0.80);
                font-size: 20px;
                font-weight: 700;
            }

            .main-info .text-input input::-webkit-input-placeholder,
            .main-info .normal-input input::-webkit-input-placeholder,
            .main-info .normal-input textarea::-webkit-input-placeholder {
                color: #B4B4B4;
            }

        .main-info .normal-input label {
            display: inline-block;
            width: 100%;
            margin-bottom: 12px;
            color: #454545;
            font-size: 16px;
            font-weight: 600;
        }

        .main-info .normal-input input,
        .main-info .normal-input textarea {
            margin-bottom: 12px;
            padding-left: 20px;
        }

        .main-info .normal-input textarea {
            height: 80px;
            padding-top: 20px;
        }

        .main-info .normal-input label.check {
            color: rgba(69, 69, 69, 0.80);
            font-size: 16px;
            font-weight: 400;
        }

            .main-info .normal-input label.check input {
                position: relative;
                margin: 0;
                vertical-align: middle;
                width: 18px;
                height: 18px;
                border-radius: 3px;
                border: 1px solid #00AEEF;
                appearance: none;
                padding: 0;
                position: relative;
                overflow: hidden;
                margin-right: 5px;
            }

                .main-info .normal-input label.check input:checked {
                    background: #00AEEF;
                }

                    .main-info .normal-input label.check input:checked:after {
                        content: "\f00c";
                        color: #fff;
                        font: normal normal normal 14px / 1 FontAwesome;
                        position: absolute;
                        top: 2px;
                        left: 2px;
                        font-size: 12px;
                    }

    .main-info .text-input span.field-prefix {
        color: rgba(69, 69, 69, 0.80);
        font-size: 20px;
        font-weight: 500;
        position: absolute;
        top: 15px;
        left: 18px;
    }

    .main-info .text-input span.field-postfix {
        color: rgba(69, 69, 69, 0.80);
        font-size: 20px;
        font-weight: 500;
        position: absolute;
        top: 15px;
        right: 18px;
    }

        .main-info .text-input span.field-prefix.stronger, .main-info .text-input span.field-postfix.stronger {
            font-weight: 700;
        }

    .submitbtn {
        font-size: 18px;
        width: 100%;
        /*box-shadow: 0px 4px 33.3px 0px rgba(0, 186, 255, 0.26), 0px 4px 6.7px 0px rgba(0, 84, 149, 0.12);*/
        margin-top: 15px;
        background-color: #58ab7f;
        border: 0;
    }

        .submitbtn:hover {
            background-color: #478966;
        }

        .submitbtn:active {
            color: #fff;
        }

        .submitbtn:focus-visible {
            outline: 2px solid #00AEEF !important;
            color: #fff;
        }

        .submitbtn.bottomcta {
            margin-top: 0;
        }

    .info-card {
        display: inline-block;
        width: 100%;
        padding: 32px;
        border-radius: 20px;
        background: #FFF;
    }

        .info-card h3 {
            color: #454545;
            font-size: 20px;
            font-weight: 600;
            margin: 0;
            margin-bottom: 10px;
        }

            .info-card h3 img {
                margin-right: 5px;
            }

    .donation_blocks {
        margin-top: 15px;
    }

    .donation_block .name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        max-width: 225px;
    }

    .donation_block_info_text {
        font-size: 12px;
        font-style: italic;
        padding: 7px;
    }

    .donation_blocks .donation_block:not(:last-child) {
        border-bottom: 1px dotted #ddd;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .paginationbar {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .pagination > li > a, .pagination > li > span {
        border: none;
    }

    .pagination > li {
        display: inline-block;
        vertical-align: middle;
    }

        .pagination > li > a {
            color: #B4B4B4;
            font-size: 16px;
            font-weight: 600;
            padding: 0px 5px;
        }

            .pagination > li > a:hover,
            .pagination > li > a.active {
                color: #00AEEF;
                font-size: 16px;
                font-weight: 600;
                background: none !important;
            }

            .pagination > li > a.prev,
            .pagination > li > a.next {
                display: flex;
                width: 32px;
                line-height: 30px;
                padding: 0px 10px;
                justify-content: center;
                align-items: center;
                gap: 10px;
                border-radius: 1000px;
                border: 1px solid #F3F3F3;
                background: #FFF;
                margin: 0px 5px;
            }
    /* RESPONSIVE */
    @media only screen and (max-width:767px) {
        .main-info {
            padding: 15px 0px 15px 0px;
        }

            .main-info .smallbar .user {
                padding: 8px 24px 8px 8px;
                width: 100%;
                justify-content: start;
            }

            .main-info .smallbar .indicator-validated {
                min-width: 50px;
                width: 100%;
            }

            .main-info .smallbar .btn-default.bordered {
                min-width: 50px;
                width: 100%;
            }

            .main-info .datebar {
                padding-top: 10px;
            }

                .main-info .datebar h2 {
                    font-size: 18px;
                    margin-bottom: 10px;
                    padding: 0px 10px;
                }

                .main-info .datebar .date-updated {
                    display: none;
                }

            .main-info .story-info {
                padding: 20px 18px;
            }

        .modal:before {
            display: none;
        }

        .modal-dialog {
            position: relative;
            width: auto;
            margin: 10px;
        }

        .modal-dialog {
            display: block;
            text-align: left;
            vertical-align: middle;
        }

        .modal-body {
            padding: 28px 25px;
        }
    }

    .anonymousCheckbox {
        padding-top: 10px;
        padding-left: 20px;
    }

        .anonymousCheckbox label {
            font-weight: normal;
        }

    .input-invalid {
        border: 2px solid #a94442 !important;
        background-color: #fff0f0 !important;
    }

    .sticky-cta {
        position: fixed;
        width: calc(33.33% - 47px);
        max-width: 360px;
        top: 60px;
        z-index: 100;
        display: none;
    }

    @media (min-width: 992px) and (max-width: 1199px) {
        .sticky-cta {
            width: calc(33.33% - 47px); /* col-md-4 in md (970px * 0.3333 - 15px) */
            max-width: 294px; /* 970px * 0.3333 - 15px */
        }
    }

    .sticky-cta.visible {
        display: block;
    }

    .video-photo-frame {
    }

        .video-photo-frame > iframe {
            border: medium none;
            border-radius: 10px;
            float: left;
            height: 321px;
            width: 100%;
            margin-top: 20px;
        }

    .rblWidgetSize {
        width: 100%;
    }

        .rblWidgetSize input {
            display: inline;
        }
.switch-container {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: start;
    width: 100%;
    margin: 10px;
}

.switch-label {
    font-weight:normal;
}

.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 26px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 26px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 19px;
        width: 19px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #4CAF50;
}

    input:checked + .slider:before {
        transform: translateX(19px);
    }