/*!
 * 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;
    border-bottom: 1px solid #898989;
}

[data-control],
[data-content] > * {
    /*border-bottom: 1px solid #888;
    padding: 10px;*/
}

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

[data-accordion] [data-control] {
    position: relative;
    padding: 27px 25px;
    cursor: pointer;
    
}
[data-accordion] [data-control]:hover {
    color: #135f13;
    /*border-top: 1px solid #135f13;*/
}

[data-accordion] > [data-control]:after {
    content: "";
    position: absolute;
    right: 23px;
    top: 26px;
    font-size: 25px;
    font-weight: 200;
    color: #444;
    height: 17px;
    width: 20px;
    background: url('../../img/item/plus_icon.png') center center no-repeat;
   /* background-size: 50%;*/
}

[data-accordion].open > [data-control]:after {
    /*-webkit-transform: rotate(-180deg); 
    -ms-transform: rotate(-180deg); 
    transform: rotate(-180deg); */
    background: url('../../img/item/min_icon.png') center center no-repeat;
}