.flex_content .dropdowns_layout .dropdown_item_wrapper{
    background-color: #fff;
    border-radius: 10px;
}

.flex_content .dropdowns_layout .dropdown_item_wrapper button{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 18px 30px;
    font-size: 18px;
    line-height: 1.3;
    color: var(--sdv-blauw);
    background-color: transparent;
    outline: none;
    border: none;
}

.flex_content .dropdowns_layout .dropdown_item_wrapper button svg{
    transition: rotate .3s ease-in-out;
    transform-origin: center;
}
.flex_content .dropdowns_layout .dropdown_item_wrapper button.open svg{
    rotate: -180deg;
}

.flex_content .dropdowns_layout .dropdown_item_wrapper:not(:last-child){
    margin-bottom: 10px;
}


.flex_content .dropdowns_layout .dropdown_content_wrapper{
    transition: 
        grid-template-rows .3s ease-in-out,
        padding .3s ease-in-out;
    display: grid;
    grid-template-rows: 0fr;
    padding: 0 30px;
}
.flex_content .dropdowns_layout .dropdown_content_wrapper > div{
    overflow: hidden;
}

.flex_content .dropdowns_layout .dropdown_content_wrapper > div *{
    color: var(--sdv-blauw);
}

.flex_content .dropdowns_layout button.open + .dropdown_content_wrapper{
    grid-template-rows: 1fr;
    padding-bottom: 12px;
}


@media screen and (max-width: 767px){
    .flex_content .dropdowns_layout .dropdown_item_wrapper button,
    .flex_content .dropdowns_layout .dropdown_content_wrapper{
        padding-left: 20px;
        padding-right: 20px;;
    }
}