


/* Default container for all questions */
#container {
    width: 1280px; 
    margin:auto;
}

/* Question styles */
.question {
    transition: all 0.5s ease;
    margin-bottom: 15px;
    font-size: 14px; cursor:pointer;
}


.question.open {

}

.question .faqAnswer { 
    display: none; 
    padding: 20px 10px;
    line-height: 28px;
    color: rgba(0,0,0,0.6);
    font-size: 17px;
}

.question h4 {
    border-radius: 6px;
    margin: 0px;
    padding: 10px;
    color: black;
    font-weight: 400;
    font-size: 20px;
    cursor: pointer;
}

.question h4.open {
    border-radius: 6px;
    margin: 0px;
    color: white;
    cursor: pointer;
}
