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

/* Requirements */

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

/* Basic Theme */

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

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

[data-content] ol, [data-content] ul {
    padding-left: 20px;
}

[data-accordion] [data-control] {
    position: relative;
    cursor: pointer;
    max-width: 97%;
}

[data-accordion] > [data-control]:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 21px;
    width: 40px;
    background: url('../images/plus.svg') center center no-repeat;
}

[data-accordion].open > [data-control]:after {
    background: url('../images/minus.svg') center center no-repeat;
}

@media(max-width: 767px) {
    [data-accordion] > [data-control]:after {
        height: 14px;
        width: 15px;
    }
}