/* CSS Document */

.accordion {
    box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
    border-radius: 3px;
    background: #f7f7f7
}

.accordion p a {
    color: #999;
    text-decoration: underline
}

.accordion,
.accordion * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.accordion-section-title {
    background: #ddd;
    border-bottom: 1px solid #ccc;
    color: #000!important;
    display: inline-block;
    font-family:  'Montserrat', Roboto, sans-serif;
    font-size: 1em;
    padding: 10px;
    transition: all .15s linear 0s;
    width: 100%
}

.accordion-section-title.active,
.accordion-section-title:hover {
    background: #ccc;
    text-decoration: none
}

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

.accordion-section-content {
    padding: 15px;
    display: none
}
