/* faq */
.panel-body.faq-container {
    padding: 0px;
}

.faq-container {
    width: 100%;
}

.faq-container .faq-item {
    width: 100%;
    padding: 10px 15px;
    border-bottom: 1px solid #F5F5F5;
    height: auto;
}

.faq-container .faq-item .faq-title {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
    width: 100%;
    cursor: pointer;
    position: relative;
    padding-left: 45px;
}

.faq-container .faq-item .faq-title .fa {
    color: #656d78;
    width: 30px;
    height: 30px;
    border: 1px solid #656d78;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-right: 15px;
    line-height: inherit;
    text-align: center;
    position: absolute;
    left: 0px;
    top: 0px;
}

.faq-container .faq-item .faq-text {
    font-size: inherit;
    color: #656d78;
    line-height: inherit;
    width: 100%;
    padding: 0px 20px;
    max-height: 0px;
    height: 0px;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
    overflow: hidden;
}

.faq-container .faq-item .faq-text h5 {
    font-weight: inherit;
    font-size: inherit;
}

.faq-container .faq-item.active {
    padding-bottom: 0px;
    border-bottom: 1px solid #FFF;
}

.faq-container .faq-item.active .faq-title .fa {
    line-height: 28px;
}

.faq-container .faq-item.active .faq-text {
    max-height: 500px;
    height: auto;
    background: #F5F5F5;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 15px 20px;
    margin-top: 10px;
}

.faq-container .faq-item:first-child {
    -moz-border-radius: 5px 5px 0px 0px;
    -webkit-border-radius: 5px 5px 0px 0px;
    border-radius: 5px 5px 0px 0px;
    border-top: 1px solid #F5F5F5;
}

.faq-container .faq-item:last-child {
    -moz-border-radius: 0px 0px 5px 5px;
    -webkit-border-radius: 0px 0px 5px 5px;
    border-radius: 0px 0px 5px 5px;
    padding-bottom: 15px;
}

.faq-text p.last-modified {
    font-size: small;
}

/* clear fix */
.faq-isotope:after {
    content: '';
    display: block;
    clear: both;
}

div#faq-filters {
    margin-bottom: 20px;
}
/* eof faq */