.faq_block {
    background: #fff;
    border-radius: 10px;
}

.him-faq-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    position: relative;

    .vraag {
        font-size: 16px !important;
        cursor: pointer;
        font-weight: bold;
        margin: 0;
    }

    .antwoord {
        display: none;
        padding: 10px 0;
        
        p {
            margin: 0;
        }
    }
    
    &.active {

        .antwoord {
            display: block;
        }

        &:after{
            transform: rotate(-180deg);
        }
    }

    &:after {
        content: "";
        position: absolute;;
        top: 18px;
        right: 5px;
        display: inline-block;
        border: 5px solid transparent;
        border-top: 6px solid #000;
        border-radius: 1px;
        border-bottom: 0 none;
        transition: all .3s ease-out;
    }

    &:last-child {
        border-bottom: none;
    }
}