/* ===================================
   GRAVITY FORMS - CUSTOM STYLING
   Gebaseerd op GF Orbital theme HTML
=================================== */

/* Reset browser standaard fieldset/legend styling */
.gform_wrapper fieldset {
    border: none;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.gform_wrapper legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-darkblue);
}

.gform_wrapper .ginput_container_radio,
.gform_wrapper .ginput_container_checkbox {
    width: 100%;
}

/* Reset GF orbital theme variabelen */
.gform_wrapper.gform-theme--orbital {
    --gf-color-primary: #4DA9FF;
    --gf-color-primary-darker: #03036A;
    --gf-radius: 10px;
    font-family: inherit;
}

/* ---- Titel ---- */
.gform_wrapper .gform_title {
    font-family: 'Chonk', sans-serif;
    font-size: 65px;
    color: var(--color-darkblue);
    margin-bottom: 8px;
    text-align: center;
}

.gform_wrapper .gform_description {
    color: var(--color-blue);
    font-size: 16px;
    margin-bottom: 20px;
}

/* ---- Voortgangsbalk ---- */
.gf_progressbar_wrapper {
    margin-bottom: 30px;
}

.gf_progressbar_title {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-darkblue);
    opacity: 0.7;
    margin-bottom: 8px;
}

.gf_progressbar {
    background-color: rgba(77, 169, 255, 0.2) !important;
    border-radius: 100px !important;
    height: 8px !important;
    overflow: hidden;
}

.gf_progressbar_percentage {
    height: 100% !important;
    background-color: var(--color-blue) !important;
    background-image: none !important;
    border-radius: 100px !important;
    transition: width 0.4s ease;
}

.gf_progressbar_percentage span {
    display: none;
}

/* ---- Velden ---- */
.gform_wrapper .gform_fields {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 24px !important;
}

.gform_wrapper .gfield {
    margin-bottom: 16px;
    flex: 0 0 100%;
    min-width: 0;
}

.gform_wrapper .gfield--width-half {
    flex: 0 0 calc(50% - 12px) !important;
}

.gform_wrapper .gfield_label,
.gform_wrapper .gform-field-label:not(.gform-field-label--type-inline) {
    font-weight: 700;
    font-size: 30px;
    color: var(--color-lightblue);
    margin-bottom: 10px;
    text-align: center;
}


/* Verberg "(Required)" tekst */
.gform_wrapper .gfield_required {
    display: none;
}

/* ---- Tekst inputs ---- */
.gform_wrapper .ginput_container input[type="text"],
.gform_wrapper .ginput_container input[type="email"],
.gform_wrapper .ginput_container input[type="tel"],
.gform_wrapper .ginput_container input[type="number"],
.gform_wrapper .ginput_container textarea,
.gform_wrapper .ginput_container select {
    width: 100%;
    padding: 12px 16px !important;
    border: 2px solid rgba(77, 169, 255, 0.3) !important;
    border-radius: 10px !important;
    font-size: 15px;
    font-family: inherit;
    color: var(--color-darkblue);
    background-color: #fff !important;
    box-shadow: none !important;
    outline: none;
    transition: border-color 0.2s ease;
}

.gform_wrapper .ginput_container input[type="text"]:focus,
.gform_wrapper .ginput_container input[type="email"]:focus,
.gform_wrapper .ginput_container input[type="tel"]:focus,
.gform_wrapper .ginput_container input[type="number"]:focus,
.gform_wrapper .ginput_container textarea:focus,
.gform_wrapper .ginput_container select:focus {
    border-color: var(--color-blue) !important;
    box-shadow: 0 0 0 3px rgba(77, 169, 255, 0.15) !important;
}

/* ---- Radio & Checkbox keuzes (kaart-stijl) ---- */
/* Voeg 'gitaar-en-piano-optie' of 'keuze-kaart-optie' toe als CSS Class Name in GF Admin */

.gform_wrapper .gitaar-en-piano-optie .gfield_radio,
.gform_wrapper .gitaar-en-piano-optie .gfield_checkbox,
.gform_wrapper .keuze-kaart-optie .gfield_radio,
.gform_wrapper .keuze-kaart-optie .gfield_checkbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.gform_wrapper .gitaar-en-piano-optie .gchoice,
.gform_wrapper .keuze-kaart-optie .gchoice {
    display: flex;
    flex-direction: column;
    width: 144px;
    padding: 0;
    background-color: #fff;
    border: 2px solid rgba(77, 169, 255, 0.25);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.gform_wrapper .gitaar-en-piano-optie .gchoice:has(input:checked),
.gform_wrapper .keuze-kaart-optie .gchoice:has(input:checked) {
    border-color: var(--color-blue);
}

.gform_wrapper .gitaar-en-piano-optie .gchoice-image-wrap,
.gform_wrapper .keuze-kaart-optie .gchoice-image-wrap {
    background-color: #C4E3FF;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    width: 144px;
    height: 144px;
}

.gform_wrapper .gitaar-en-piano-optie .gchoice-bottom,
.gform_wrapper .keuze-kaart-optie .gchoice-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
}

/* Custom radio/checkbox binnen kaart */
.gform_wrapper .gitaar-en-piano-optie .gchoice .gfield-choice-input[type="radio"],
.gform_wrapper .gitaar-en-piano-optie .gchoice .gfield-choice-input[type="checkbox"],
.gform_wrapper .keuze-kaart-optie .gchoice .gfield-choice-input[type="radio"],
.gform_wrapper .keuze-kaart-optie .gchoice .gfield-choice-input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(77, 169, 255, 0.5) !important;
    border-radius: 50%;
    background-color: #fff !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    margin: 0 !important;
}

.gform_wrapper .gitaar-en-piano-optie .gchoice .gfield-choice-input[type="checkbox"],
.gform_wrapper .keuze-kaart-optie .gchoice .gfield-choice-input[type="checkbox"] {
    border-radius: 6px;
}

.gform_wrapper .gitaar-en-piano-optie .gchoice .gfield-choice-input[type="radio"]:checked,
.gform_wrapper .gitaar-en-piano-optie .gchoice .gfield-choice-input[type="checkbox"]:checked,
.gform_wrapper .keuze-kaart-optie .gchoice .gfield-choice-input[type="radio"]:checked,
.gform_wrapper .keuze-kaart-optie .gchoice .gfield-choice-input[type="checkbox"]:checked {
    background-color: var(--color-blue) !important;
    border-color: var(--color-blue) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.gform_wrapper .gitaar-en-piano-optie .gchoice .gform-field-label--type-inline,
.gform_wrapper .keuze-kaart-optie .gchoice .gform-field-label--type-inline {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-darkblue);
    cursor: pointer;
    margin: 0;
}

/* Kaart zonder afbeelding: input + label als rij */
.gform_wrapper .gitaar-en-piano-optie .gchoice:not(:has(.gchoice-image-wrap)),
.gform_wrapper .keuze-kaart-optie .gchoice:not(:has(.gchoice-image-wrap)) {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    width: auto;
    min-width: 140px;
}

.gform_wrapper .gitaar-en-piano-optie .gchoice:not(:has(.gchoice-image-wrap)) .gfield-choice-input[type="radio"],
.gform_wrapper .gitaar-en-piano-optie .gchoice:not(:has(.gchoice-image-wrap)) .gfield-choice-input[type="checkbox"],
.gform_wrapper .keuze-kaart-optie .gchoice:not(:has(.gchoice-image-wrap)) .gfield-choice-input[type="radio"],
.gform_wrapper .keuze-kaart-optie .gchoice:not(:has(.gchoice-image-wrap)) .gfield-choice-input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(77, 169, 255, 0.5) !important;
    border-radius: 50%;
    background-color: #fff !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    margin: 0 !important;
    flex-shrink: 0;
}

.gform_wrapper .gitaar-en-piano-optie .gchoice:not(:has(.gchoice-image-wrap)) .gfield-choice-input:checked,
.gform_wrapper .keuze-kaart-optie .gchoice:not(:has(.gchoice-image-wrap)) .gfield-choice-input:checked {
    background-color: var(--color-blue) !important;
    border-color: var(--color-blue) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.gform_wrapper .gitaar-en-piano-optie .gchoice:not(:has(.gchoice-image-wrap)) .gform-field-label--type-inline,
.gform_wrapper .keuze-kaart-optie .gchoice:not(:has(.gchoice-image-wrap)) .gform-field-label--type-inline {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-darkblue);
    cursor: pointer;
    margin: 0;
}

#gf_progressbar_wrapper_1 {
    display: none;
}

/* ---- Keuze-afbeeldingen ---- */
.gform_wrapper .gitaar-en-piano-optie .gchoice-image,
.gform_wrapper .keuze-kaart-optie .gchoice-image {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

/* Prijs verbergen in labels */
.gform_wrapper .ginput_price {
    display: none;
}

/* ---- Consent velden ---- */
.gform_wrapper .ginput_container_consent {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background-color: #fff;
    border: 2px solid rgba(77, 169, 255, 0.25);
    border-radius: 12px;
}

.gform_wrapper .ginput_container_consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(77, 169, 255, 0.5) !important;
    border-radius: 6px;
    background-color: #fff !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    margin: 0 !important;
}

.gform_wrapper .ginput_container_consent input[type="checkbox"]:checked {
    background-color: var(--color-blue) !important;
    border-color: var(--color-blue) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 11px;
}

.gform_wrapper .gfield_consent_label {
    font-size: 14px;
    color: var(--color-darkblue);
    cursor: pointer;
}

/* ---- Knoppen ---- */
.gform_wrapper .gform-page-footer,
.gform_wrapper .gform_page_footer,
.gform_wrapper .gform_footer {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: none !important;
    padding: 0 !important;
    background: none !important;
}

.gform_wrapper .gform_next_button {
    padding: 13px 30px !important;
    background-color: var(--color-blue) !important;
    color: var(--color-darkblue) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    border: none !important;
    border-radius: 100px !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.gform_wrapper .gform_next_button:hover {
    background-color: var(--color-darkblue) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.gform_wrapper .gform_button[type="submit"] {
    padding: 13px 30px !important;
    background-color: var(--color-pink) !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    border: none !important;
    border-radius: 100px !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.gform_wrapper .gform_button[type="submit"]:hover {
    background-color: #c800ad !important;
    transform: translateY(-1px);
}

.gform_wrapper .gform_previous_button {
    padding: 13px 30px !important;
    background-color: var(--color-darkblue) !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    border: none !important;
    border-radius: 100px !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.gform_wrapper .gform_previous_button:hover {
    background-color: #02025a !important;
    transform: translateY(-1px);
}

/* ---- Gegevens pagina (stap 5) ---- */
#gform_page_1_5 .gfield_label,
#gform_page_1_5 .gform-field-label {
    color: #03036A !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    text-align: left !important;
    margin-bottom: 6px !important;
}

#gform_page_1_5 .ginput_container input[type="text"],
#gform_page_1_5 .ginput_container input[type="email"],
#gform_page_1_5 .ginput_container input[type="tel"],
#gform_page_1_5 .ginput_container_date input {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 2px solid #03036A !important;
    border-radius: 0 !important;
    padding: 8px 0 !important;
    box-shadow: none !important;
    color: #03036A !important;
    font-size: 16px !important;
}

#gform_page_1_5 .ginput_container input[type="text"]:focus,
#gform_page_1_5 .ginput_container input[type="email"]:focus,
#gform_page_1_5 .ginput_container input[type="tel"]:focus,
#gform_page_1_5 .ginput_container_date input:focus {
    border-bottom-color: var(--color-lightblue) !important;
    box-shadow: none !important;
}

/* Datepicker icon aanpassen voor transparante achtergrond */
#gform_page_1_5 .ginput_container_date::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2303036A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") !important;
    right: 0 !important;
}

/* ---- Datepicker input icon ---- */

/* Verberg de native GF/jQuery UI trigger */
.gform_wrapper .ginput_container_date img.ui-datepicker-trigger,
.gform_wrapper .ginput_container_date button.ui-datepicker-trigger {
    display: none !important;
}

.gform_wrapper .ginput_container_date {
    position: relative !important;
    display: block !important;
}

.gform_wrapper .ginput_container_date input.datepicker {
    padding-right: 42px !important;
    width: 100% !important;
}

.gform_wrapper .ginput_container_date::after {
    content: '' !important;
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 18px !important;
    height: 18px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2303036A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    pointer-events: none !important;
}

/* ---- Datepicker ---- */
#ui-datepicker-div {
    background: #fff !important;
    border: 1px solid #e0e6f0 !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 30px rgba(3, 3, 106, 0.12) !important;
    padding: 16px !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    width: 300px !important;
}

/* Header */
#ui-datepicker-div .ui-datepicker-header {
    background: var(--color-darkblue) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 10px 8px !important;
    margin-bottom: 12px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
}

/* Maand/jaar dropdowns */
#ui-datepicker-div .ui-datepicker-title {
    display: flex !important;
    gap: 8px !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

#ui-datepicker-div .ui-datepicker-month,
#ui-datepicker-div .ui-datepicker-year {
    background: rgba(255,255,255,0.15) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 4px 8px !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer !important;
}

/* Vorige / volgende pijl */
#ui-datepicker-div .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-next {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    transition: background 0.2s !important;
}

#ui-datepicker-div .ui-datepicker-prev {
    left: 8px !important;
}

#ui-datepicker-div .ui-datepicker-next {
    right: 8px !important;
}

#ui-datepicker-div .ui-datepicker-prev:hover,
#ui-datepicker-div .ui-datepicker-next:hover {
    background: rgba(255,255,255,0.2) !important;
}

#ui-datepicker-div .ui-datepicker-prev .ui-icon,
#ui-datepicker-div .ui-datepicker-next .ui-icon {
    background-image: none !important;
    text-indent: 0 !important;
    overflow: visible !important;
    color: #fff !important;
    font-size: 0 !important;
    width: 20px !important;
    height: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#ui-datepicker-div .ui-datepicker-prev .ui-icon::after {
    content: '‹' !important;
    font-size: 20px !important;
    color: #fff !important;
    line-height: 1 !important;
}

#ui-datepicker-div .ui-datepicker-next .ui-icon::after {
    content: '›' !important;
    font-size: 20px !important;
    color: #fff !important;
    line-height: 1 !important;
}

/* Tabel */
#ui-datepicker-div .ui-datepicker-calendar {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 3px !important;
}

/* Dag-namen header */
#ui-datepicker-div .ui-datepicker-calendar thead th {
    color: var(--color-darkblue) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-align: center !important;
    padding: 4px 0 8px !important;
    border: none !important;
    background: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

/* Dag-cellen */
#ui-datepicker-div .ui-datepicker-calendar td {
    padding: 0 !important;
    border: none !important;
    text-align: center !important;
}

#ui-datepicker-div .ui-datepicker-calendar td a,
#ui-datepicker-div .ui-datepicker-calendar td span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    margin: 0 auto !important;
    border-radius: 50% !important;
    font-weight: 500 !important;
    color: var(--color-darkblue) !important;
    text-decoration: none !important;
    transition: background 0.15s, color 0.15s !important;
    border: none !important;
    background: none !important;
}

/* Hover */
#ui-datepicker-div .ui-datepicker-calendar td a:hover {
    background: var(--color-lightblue) !important;
    color: var(--color-darkblue) !important;
}

/* Vandaag */
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-highlight {
    background: rgba(77, 169, 255, 0.2) !important;
    color: var(--color-darkblue) !important;
    font-weight: 700 !important;
}

/* Geselecteerde dag */
#ui-datepicker-div .ui-datepicker-calendar td a.ui-state-active {
    background: var(--color-darkblue) !important;
    color: #fff !important;
    font-weight: 700 !important;
}

/* Andere maand / uitgeschakeld */
#ui-datepicker-div .ui-datepicker-calendar td.ui-datepicker-other-month span,
#ui-datepicker-div .ui-datepicker-calendar td.ui-state-disabled span {
    color: #c5cfe0 !important;
}

/* Weekend subtiel anders */
#ui-datepicker-div .ui-datepicker-calendar td.ui-datepicker-week-end a {
    color: var(--color-darkblue) !important;
    opacity: 0.7 !important;
}

/* ---- Validatiefouten ---- */
.gform_wrapper .gfield_error .ginput_container input,
.gform_wrapper .gfield_error .ginput_container textarea,
.gform_wrapper .gfield_error .ginput_container select {
    border-color: #e05c5c !important;
}

.gform_wrapper .gfield_validation_message,
.gform_wrapper .validation_message {
    color: #e05c5c;
    font-size: 13px;
    margin-top: 6px;
}

/* ---- Bevestigingsbericht ---- */
.gform_confirmation_message {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-blue);
    text-align: center;
    padding: 30px 0;
}

fieldset#field_1_29 {
    display: none;
}

.pakket-kaarten-wrapper {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 40px;
    margin-top: 45px;
}

button.pakket-kaart__knop {
    background: var(--color-lightblue);
}

.pakket-kaart__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #4ea9ff;
    padding-top: 20px;
    margin-top: 20px;
}

.pakket-kaart__badge {
    border-radius: 15px;
    background: var(--color-darkblue);
    color: #fff;
    padding: 10px 15px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.pakket-kaart__titel {
    font-size: 30px;
    text-align: left;
    color: var(--color-lightblue);
}

.pakket-kaart__beschrijving,
.pakket-kaart__checklist li {
    font-size: 18px;
    color: var(--color-darkblue);
    font-weight: 500;
}