@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

html,
body {
    font-family: 'Quicksand', sans-serif;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: 'Quicksand', sans-serif;
}

h1 {
    color: #000000;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 141%;
    /* 45.12px */
}

h2 {
    color: #000000;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 152%;
    /* 33.44px */
}

h3 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 152%;
    /* 27.36px */
}


body {
    background: url("../img/DAK-background.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 30px;
}

.bold {
    font-weight: bold;
}

.main-content {
    background-color: white;
    border-radius: 20px;
    padding: 56px;
    border: 1px solid #DFE4E9;
}

.main-content-blue {
    overflow: hidden;
    background-color: #0D73CC;
    border-radius: 20px;
    padding: 10px;
    border: 1px solid #DFE4E9;
    color: white;
}

.main-content-blue h3 {
    color: #ffffff;
    margin-top: 32px;
}

.main-content-blue img {
    margin-left: 30px;
    width: 150%;
    max-width: 150%;
    margin-top: 20px;
}

.small-content {
    background-color: white;
    border-radius: 20px;
    border: 1px solid #DFE4E9;
}


.margin-top-20 {
    margin-top: 20px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-top-120 {
    margin-top: 120px;
}

.margin-bottom-140 {
    margin-bottom: 140px;
}

.nopad {
    padding: 0 !important;
}

.pad32 {
    padding: 56px 32px;
}

.small-content .pad32 {
    padding: 56px 32px 0 32px;
}

.pad3220 {
    padding: 0 32px 20px;
}

.highlights span {
    color: #000000;
    font-family: Quicksand;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 154%;
    /* 24.64px */
}

hr {
    border-bottom: 1px solid #DFE4E9;
}

.link-actie {
    color: #0D73CC;
    font-family: Quicksand;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    cursor: pointer;
}


/*Zoeken*/

#searchInput {
    border-radius: 5px;
    border: 1px solid #DFE4E9;
    background: #F0F3F5;
    height: 60px;
}

::placeholder {
    color: black;
    opacity: 1;
    /* Firefox */
}

::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: black;
}

/*Accordeon*/
.accordion-title {
    color: #000;
    font-family: Quicksand;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 230%;
    border: 0 !important;
    border-bottom: 1px solid #e6e6e6 !important;
    padding: 10px 0;
}

.accordion-title::before {
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-top: -0.5rem;
    content: url("../img/icon-arrow-down.png");
}

.is-active > .accordion-title::before {
    content: url("../img/icon-arrow-up.png");
}

.accordion-content {
    border: 0;
    border-bottom: 1px solid #e6e6e6;
    background-color: #ffffff;
}

:last-child:not(.is-active) > .accordion-title {
    border-bottom: 1px solid red;
    border-radius: 0 0 0 0;
}

.accordion-title:hover,
.accordion-title:focus {
    background-color: #ffffff;
}

.accordion-title:hover,
.accordion-title:focus {
    color: #000000;
}

.accordion-item.found .accordion-content {
    display: block !important;
}

.accordion.searching li:not(.found) {
    display: none;
}

.highlight {
    background-color: yellow;
}

.close-button.medium,
.close-button {
    font-size: 5em;
}

/*Button*/
a.button {
    direction: ltr;
    -webkit-box-direction: normal;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    appearance: none;
    font-family: Quicksand;
    font-size: 100%;
    font-weight: bold;
    -webkit-box-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-box-pack: center;
    justify-content: center;
    line-height: 1;
    transition: all 100ms linear;
    border-radius: 100px;
    background-color: #FFBB00;
    border: var(--border-size-s) solid var(--color-primary);
    color: black;
    box-shadow: 0px 3px 0px #D19A03;
    height: 48px;
    box-sizing: border-box;
    display: inline-flex;
    width: auto;
    margin-top: 33px;
    padding: 0 40px;
}

a.button:hover {
    color: #000000;
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
}

a.button:hover,
a.button:focus {
    background-color: #FFBB00;
}

a.button.full-width {
    width: 100%;
}

.alert {
    border-radius: 16px;
    background: #FFE7DE;
    padding: 32px 32px 16px 32px;
    margin: 20px 0 40px 0;

}


/* SMALL ONLY */
@media only screen and (max-width: 40.063em) {
    h1 {
        font-size: 26px;
    }

    .main-content {
        padding: 24px;
    }

    a.button {
        width: 100%;
    }

    .pad32 {
        padding: 56px 24px;
    }
}

/* MEDIUM ONLY */
@media only screen and (min-width: 40.063em) and (max-width: 64.063em) {

    .main-content,
    .pad32 {
        padding: 56px 24px;
    }
}

/* LARGE ONLY */
@media only screen and (min-width: 64.063em) {}
