:root {
    --color-green: rgba(3, 105, 107, 1); /* #03696b */
    --color-purple: rgba(140, 89, 194, 1); /* #8c59c2 */
    --color-orange: rgba(245, 87, 56, 1); /* #f55738 */
    --color-pink: rgba(250, 176, 181, 1); /* #fab0b5 */
    --color-pink-dark: rgba(175, 89, 199, 1); /* #AF59C7 */
    --color-yellow: rgba(250, 212, 20, 1); /* #fad414 */
    --color-beige: rgba(248, 233, 219, 1); /* #f8e9db */
}

/* Main content styles */

body {
    margin: 0;
    padding: 0;
    background-color: var(--color-pink);
    font-family: "halyard-display", sans-serif;
    font-size: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.5rem;
}

strong {
    font-weight: 600;
}

.formgroup {
    max-width: 20rem;
    margin: 0 auto;
}

.formgroup label:not(.radio-inline) {
    display: block;
    margin: 1rem 0 0.25rem 0;
    font-weight: 600;
}

.formgroup .help-block {
    color: var(--color-orange);
}

label.block {
    display: block;
    margin-bottom: 0.25rem;
}

label.block.rbc {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

label.block.rbc input {
    margin: .5rem .5rem 0 0;
    flex: 0 0 fit-content;
}

label.block.rbc span {
    display: block;
}

div.usermessage {
    padding: 1.25rem;
    background-color: var(--color-beige);
    color: var(--color-orange);
    font-weight: 500;
}

span.outline_rounded {
    outline: solid 3px;
    outline-offset: 2px;
    border-radius: 9999px;
    margin: 0 .5rem;
}

.pbutton {
    background-color: var(--color-beige);
    padding: .25rem .75rem;
    border-radius: 999px;
    color: var(--color-orange);
    font-family: "new-kansas", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    text-wrap: nowrap;
}

.pbutton:hover {
    background-color: var(--color-orange);
    color: var(--color-beige);
}

button {
    background-color: var(--color-orange);
    border-radius: 999px;
    border: solid 2px var(--color-beige);
    color: var(--color-beige);
    font-family: "new-kansas", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: .5rem 1.5rem;
    text-decoration: none;
    cursor: pointer;
}

button:hover {
    background-color: var(--color-beige);
    color: var(--color-orange);
    border-color: var(--color-orange);
}

input[type="text"], input[type="password"], input[type="email"], input[type="date"] {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
    line-height: 1.5rem;
    border: solid 1px var(--color-orange);
    color: var(--color-green);
    padding: .375rem .75rem;
    border-radius: .375rem;
}

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="date"]:focus {
    outline: solid 2px var(--color-orange);
}

.tooltip {
    position: relative;
}

.tooltip .tooltiptext {
    visibility: hidden;
    background-color: #3f3f3f;
    color: #dfdfdf;
    text-align: center;
    padding: 6px 8px;
    border-radius: 4px;
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.col632 {
    display:flex;
    gap-x: 1rem;
    align-items: flex-start;
    justify-content: space-between;
}


@media (max-width: 767.98px) {
    div.b_gr, div.b_bei, div.b_pink { padding: 1.25rem 1rem; }
    div.b_content { padding: 0 0 1px 0; }
    div.inspr { margin: 0 0 1rem 2rem; }
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    .col632 { flex-wrap: wrap; }
    .col632 > div { flex: 1 0 35%; }

    .activiteitfoto_groot { display: none; }
}

@media (min-width: 768px) {
    div.b_gr, div.b_bei, div.b_pink { padding: 60px 40px; }
    div.b_content { padding: 0; }
    div.inspr { margin: 0 0 1rem 4rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .col632 > div { flex: 1 0 1px; }

    div.b_inner {
        max-width: 1200px;
        margin: 0 auto;
    }

    .activiteitfoto_groot {
        float: right;
        margin: 0 1rem 1rem 0;
        border-radius: 999px 999px 0 0;
        width: 30rem;
        height: 22.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    .activiteitfoto_groot {
        width: 20rem;
        height: 15rem;
    }
    .col632 { flex-wrap: wrap; }
    .col632 > div { flex: 1 0 25%; }
}

div.b_gr {
    background-color: var(--color-green);
    color: var(--color-pink);
}

div.b_bei {
    background-color: var(--color-beige);
    color: var(--color-green);
}

div.b_pink {
    background-color: var(--color-pink-dark);
    color: var(--color-pink);
}

li, div.b_gr p, div.b_bei p, div.b_pink p, div.b_gr label.block, div.b_bei label.block, div.b_pink label.block {
    font-size: 18px;
    line-height: 28px;
}

a {
    color: inherit;
    text-decoration: underline;
}

a:hover {
    color: var(--color-orange)
}

h1, h2, h3 {
    font-family: "new-kansas", sans-serif;
    font-weight: 600;
    margin: 0 0 .5rem 0;
}


/* Header styles */

header div.b_inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

header div.logo {
    display: flex;
    column-gap: 1rem;
    align-items: flex-end;
    color: var(--color-green);
    font-weight: 300;
    font-size: 18px;
}

header div.logo a {
    display: block;
    width: 206px;
    height: 40px;
    color: var(--color-green);
}

header div.logo a:hover {
    color: var(--color-orange);
}

header div.pmenu {
    color: var(--color-green);
    font-weight: 300;
}

header div.pbuttons {
    display: flex;
    column-gap: .5rem;
    align-items: center;
}

header div.pmenu div.pbuttons a.logout {
    border: solid 2px var(--color-orange);
    background-color: var(--color-pink);
    font-size: 12px;
    line-height: 16px;
}

header div.pmenu div.pbuttons a.logout.pbutton:hover {
    background-color: var(--color-orange);
    color: var(--color-beige);
}

@media (max-width: 419.98px) {
    header div.logo {
        font-size: 14px;
    }

    header div.logo a {
        width: 154px;
        height: 30px;
    }
}

@media (max-width: 767.98px) {

    header div.b_inner {
        padding: 1.25rem 0;
        flex-direction: column-reverse;
    }

    header div.pmenu {
        display: flex;
        flex-direction: column;
        row-gap: .5rem;
        align-items: center;
    }

    header div.pmenu {
        display: flex;
        flex-direction: column;
        row-gap: .5rem;
        align-items: center;
    }
}

@media (min-width: 768px) {
    header div.b_inner {
        padding: 1.25rem 2.5rem;
    }

    header div.pmenu {
        display: flex;
        column-gap: .5rem;
        align-items: center;
    }
}


/* Expandable box */

@media (max-width: 767.98px) {
    .expandable {
        position: relative;
    }

    .expandable .b_inner {
        height: 30vh;
        overflow: hidden;
        transition: height 0.6s ease, mask-image 0.6s ease;
        mask-image: linear-gradient(to bottom, black 60%, transparent 90%);
        mask-size: 100% 100%;
        mask-repeat: no-repeat;
    }

    .expandable.expanded .b_inner {
        -webkit-mask-image: none;
        mask-image: none;
    }

    .btn_expand_container {
        position: absolute;
        bottom: 1rem;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
    }

    .expandable.expanded .btn_expand_container {
        display: none;
    }
}

@media (min-width: 768px) {
    .btn_expand_container {
        display: none;
    }
}


/* Betaaltabel */

table.pubbetaaltabel { border-collapse: collapse; margin: 0px auto 15px auto; }
table.pubbetaaltabel td, table.pubbetaaltabel th { border: none; padding: 6px 12px; font-size: 18px; line-height: 28px; text-align: left; }


/* Login */

@media (max-width: 1023.98px) {
    div.b_pink.b_aanmelden {
        background-color: var(--color-beige);
        color: var(--color-green);
    }
    .aanmelden_1 { margin-bottom: 1rem; }
}

@media (min-width: 1024px) {
    .aanmelden_container {
        display: flex;
        gap: 60px;
        align-items: stretch;
        justify-content: space-between;
    }

    .aanmelden_1, .aanmelden_2 {
        flex: 1 0 1px;
        padding: 2rem 2rem 1rem 2rem;
        background-color: var(--color-beige);
        color: var(--color-green);
        border-radius: 1rem;
    }
}


/* Home */

.profielfoto_home { width: 12rem; float: right; margin: 0 0 .5rem .5rem; }
.profielfoto_home > img { width: 12rem; height: 12rem; border-radius: 1rem; }
.profielfoto_home > p { margin: .5rem 0 0 0; text-align: center;}
.activiteitfoto_klein  { width: 8rem; height: 6rem; float: right; margin: 5px 0 0 5px; border-radius: 9999px 9999px 0 0; }
.activiteiten > a {
    display: block;
    padding: 0 0 .5rem 0;
    text-decoration: none;
    border-bottom: dotted 4px var(--color-pink);
}
.activiteiten > a .actomsch {
    max-height: 56px;
    overflow: hidden;
}

.activiteiten small {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.label-pink, .label-green {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: .875rem;
    line-height: .875rem;
}

.label-pink {
    background-color: var(--color-pink-dark);
    color: #fff;
}

.label-green {
    background-color: var(--color-green);
    color: var(--color-pink);
}

@media (max-width: 1023.98px) {
    .home_1 { margin-bottom: 2rem; }
}

@media (min-width: 1024px) {
    .home_container {
        display: flex;
        gap: 60px;
        align-items: stretch;
        justify-content: space-between;
    }

    .home_1, .home_2 {
        flex: 1 0 1px;
    }
}