h3 {
    text-align: center;
    text-transform: lowercase;
    font-family: Museo-700;
    /*font-size: 26px;*/
}

#faq_wrapper {
    position: relative;
    margin: 0 0 80px 0;
}

#shuffle_header_top_margin {
    height: 70px;
}

#faq_comp_img {

}

#faq_menu {
    display: table;

    width: 100%;

    background-color: #eeeeee;

    -webkit-border-top-left-radius: 30px;
    -webkit-border-bottom-right-radius: 30px;
    -moz-border-radius-topleft: 30px;
    -moz-border-radius-bottomright: 30px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.faq_menu_title {
    padding: 5px 20px 10px 20px;
    font-family: Museo-700;
}

.faq_menu_item_wrapper {
    position: relative;
    height: 100%;
    width: 49%;
    display: table-cell;
}

.faq_menu_item {

    position: absolute;
    display: inline-block;
    width: 65%;
    max-width: 150px;
    background-color: #ffffff;
    padding: 12px 25px;
    color: black;
    text-align: center;
    font-family: Museo-700;
}

.faq_menu_item_selected {
    background-color: #aeb0b3;
}

#faq_content {
    background-color: #ffffff;

    padding: 20px 0px 50px 30px;
}

.faq_item {
    margin-bottom: 15px;
}

.faq_item_question {

    font-family: Museo-700;
    margin-bottom: 5px;
    font-size: 18px;

    cursor: pointer;
}

.faq_item_question img, span {
    vertical-align: middle;

    padding: 0 10px;

    -webkit-transition: transform 0.2s;
    -moz-transition: transform 0.2s;
    -ms-transition: transform 0.2s;
    -o-transition: transform 0.2s;
    transition: transform 0.2s;
}

.img_expanded {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.faq_item_answer {
    font-family: MuseoSans-300;
    font-size: 16px;

    display: block;

    visibility: hidden;
    overflow: hidden;
    max-height: 0;

    margin-bottom: 20px;
    margin-left: 30px;

    -webkit-transition: visibility .5s, max-height .5s;
    -moz-transition: visibility .5s, max-height .5s;
    -ms-transition: visibility .5s, max-height .5s;
    -o-transition: visibility .5s, max-height .5s;
    transition: visibility .5s, max-height .5s;
}

.expanded {
    visibility: visible;
    max-height: 100vh;
}
