header .section__banner > * {
    background-image: url('/storage/assets/images/backgrounds/background_2.jpg');
}

main .section__board > .text__basic {
    font-size: 20px;
}

main .section__board table.members-and-roles {
    width: 100%;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

main .section__board table.members-and-roles th,
main .section__board table.members-and-roles td {
    font-size: 18px;
    font-weight: 500;
    color: #5f5f63;
    width: 50%;
    text-align: center;
    padding: 10px;
}

main .section__board table.members-and-roles th {
    background: #2d68c4;
    color: #FFFFFF;
}

main .section__board table.members-and-roles tbody tr:nth-of-type(odd) {
    background: #EAEAEA;
}


main input[type='checkbox'] {
    display: none;
}

main input[type='checkbox'] + * {
    transition: max-height 0.5s ease-in-out;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #5f5f63;
    margin-bottom: 40px;
}



main input[type='checkbox']:checked + * {
    max-height: max-content;
}


label.dropdown__label {
    padding: 20px 40px;
    background: #2D68C4;
    display: block;
    width: 100%;
}

label.dropdown__label > *::before {
    content: '+';
    font-size: 20px;
    margin-right: 10px;
}

.dropdown__collapsible.dropdown__collapsible__1 ul {
    padding-left: 20px;
    list-style: decimal;
}

.dropdown__collapsible.dropdown__collapsible__1 li {
    margin-bottom: 10px;
}

.dropdown__collapsible.dropdown__collapsible__1 li::marker {
    color: #5f5f63;
}