/*!
 * jQuery Accordion 0.0.1
 * (c) 2014 Victor Fernandez <victor@vctrfrnndz.com>
 * MIT Licensed.
 */

/* Requirements */

[data-accordion] [data-content] {
    overflow: hidden;
    max-height: 0;
}

/* Basic Theme */

[data-accordion] {
    line-height: 1;
}

[data-control]{
     background-color: #d7d7d7;
    border:none;
    width: 100%;
    text-align: left;
    line-height: 60px;
    height: 60px;
    text-indent: 20px;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 5px;
}
[data-content]{
    border:none; 
    background-color: #fefefe;  
}

[data-content] article{
    padding: 25px;
    font-size: 19px;
    line-height: 25px;
    color: #555555;
    text-align: left;
}

[data-content] [data-accordion] {
    border: 0;
    padding: 0;
}

[data-accordion] [data-control] {
    position: relative;
    padding-right: 40px;
}

[data-accordion] > [data-control]:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 25px;
    font-size: 25px;
    font-weight: 200;
    color: #444;
    height: 15px;
    width: 24px;
    background: url('../images/down.png') center center no-repeat;
    background-size: 65%;
}

[data-accordion].open > [data-control]{
    background-color: #135b8f;
    color: #ffffff;
}

[data-accordion].open > [data-control]:after {
    background: url('../images/up.png') center center no-repeat;
     background-size: 65%;

}

@media only screen and (max-width:479px) {
    [data-control] {
        background-color: #d7d7d7;
        border: none;
        width: 100%;
        max-width: 100%;
        text-align: left;
        line-height: 26px;
        height: auto;
        padding: 20px 25px;
        text-indent: 0;
        font-weight: 300;
        font-size: 20px;
        margin-bottom: 5px;
    }
}