p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
    color: #484848;
}
a {
    text-decoration:none;
}
/* Accordion */
.accordion{
    padding-top: 40px;
}
.accordion, .accordion * {
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
}

.accordion {
    overflow:hidden;
    /*box-shadow:0 1px 3px rgba(0,0,0,0.25);*/
    border-radius:3px;
    /*background:#f6f6f6;*/
}
.accordion .section {
    margin-bottom: 5px;
    padding: 5px;
    /*border-radius: 10px;*/
}
.accordion .section a.section-title,
.accordion .section a.section-title:hover{
    color: #fff;
    /*font-size: 18px;*/
    text-decoration:none;
}
.accordion .section .fa{
    color: #fff;
    font-size: 23px;
    font-weight: normal;
    text-decoration: none;
    /*padding: 0 15px 0 0;*/
    line-height: 26px;
    float: left;
}
.fa:before{

}
.accordion .section div.vraag,
.accordion .section div.vraag h3{
    font-weight: normal;
    color: #ffffff!important;
    padding: 0;
    font-size: 18px;
    line-height: 26px;
    float: left;
}

/* Section Title */
.section-title {
    background:#a1a1a1;
    display:inline-block;
    border-bottom:1px solid #888888;
    border-radius: 10px;
    width:100%;
    padding:10px 15px;
    transition:all linear 0.15s;
    color:#fff;
    font-size:18px;
    text-shadow:0px 1px 0px #464646;
}

.section-title.active,
.section-title:hover {
    background:#35aab1;
}
.section-title.active{
    background:#35aab1;
    border-radius: 10px 10px 0 0;
}

.section:last-child .section-title {
    border-bottom:none;
}

/*.section-title:after {*/
    /* Unicode character for "plus" sign (+) */
    /*content: '\02795';*/
    /*font-size: 13px;*/
    /*color: #FFF;*/
    /*float: right;*/
    /*margin-left: 5px;*/
/*}*/

/*.section-title.active:after {*/
    /* Unicode character for "minus" sign (-) */
    /*content: "\2796";*/
/*}*/

.section-title span{
    pointer-events: none;
    font-size: 22px;
    padding: 0 10px;
}
/* Section Content */
.section-content {
    display:none;
    width: 100%;
    padding:20px;
    border-radius: 0 0 10px 10px;
    /*background:#f6f6f6;*/
    float: left;
}
@media only screen and (max-width: 800px) {
    .accordion {
        padding-top: 10px;
    }
}

.hrf-title.open-faq span {
    width: 30px;
    height: 30px;
    display: inline-block;
    position: relative;
    left: 0;
    top: 8px;
    margin-right: 12px;
    margin-left: -42px;
    background: #f47621 url(../images/close.png) no-repeat center center;
}
.hrf-title.close-faq span {
    width: 30px;
    height: 30px;
    display: inline-block;
    position: relative;
    left: 0;
    top: 8px;
    margin-right: 12px;
    margin-left: -42px;
    background: #f47621 url(../images/open.png) no-repeat center center;
}
.hrf-title.close-faq,
.hrf-title.open-faq {
    cursor: pointer;
}
h3.hrf-title {
    background: #ffffff;
    padding: 10px 10px 10px 50px;
    margin: 0;
    font-size: 1.1em;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline-style: none;
}
.hrf-content{
    /*padding: 20px;*/
    overflow-y: hidden;
    max-height: 500px; /* approximate max height */
    transition-property: all;
    transition-duration: 0.5s;
    /*transition-timing-function: cubic-bezier(0, 1, 0.5, 1);*/
}
.hrf-content p{
    padding: 20px;
}
.open-content {
    /*display: block;*/
}
.close-content{
    /*display: none;*/
    max-height: 0;
}