/*!
 * 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],
[data-content] > * {
    border-bottom: 1px solid #FFF;
    padding: 10px;
}

[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: 0px;
    top: 18px;
    /*font-size: 25px;*/
    /*font-weight: 200;*/
    /*color: #444;*/
    height: 20px;
    width: 20px;
    /*background-size: 24px 15px;*/
    background-size: 20px 20px;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:a='http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/' x='0px' y='0px' width='19.1px' height='19.1px' viewBox='0 0 19.1 19.1' style='enable-background:new 0 0 19.1 19.1;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bclip-path:url(%23SVGID_2_);fill:none;stroke:%23FFFFFF;stroke-width:1;%7D .st1%7Bclip-path:url(https://www.nimbusrooftop.com.au/wp-content/themes/nimbus/css/%23SVGID_4_);fill:none;stroke:%23FFFFFF;stroke-width:1;%7D%0A%3C/style%3E%3Cdefs%3E%3C/defs%3E%3Cg%3E%3Cdefs%3E%3Crect id='SVGID_1_' x='0' width='19.1' height='19.1'/%3E%3C/defs%3E%3CclipPath id='SVGID_2_'%3E%3Cuse xlink:href='%23SVGID_1_' style='overflow:visible;'/%3E%3C/clipPath%3E%3Cline class='st0' x1='9.6' y1='0' x2='9.6' y2='19.1'/%3E%3Cline class='st0' x1='19.1' y1='9.6' x2='0' y2='9.6'/%3E%3C/g%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}

[data-accordion].open > [data-control]:after {
    /*-webkit-transform: rotate(-180deg); 
    -ms-transform: rotate(-180deg); 
    transform: rotate(-180deg);*/
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:a='http://ns.adobe.com/AdobeSVGViewerExtensions/3.0/' x='0px' y='0px' width='19.1px' height='1px' viewBox='0 0 19.1 1' style='enable-background:new 0 0 19.1 1;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bclip-path:url(%23SVGID_2_);fill:none;stroke:%23FFFFFF;stroke-width:1;%7D .st1%7Bclip-path:url(https://www.nimbusrooftop.com.au/wp-content/themes/nimbus/css/%23SVGID_4_);fill:none;stroke:%23FFFFFF;stroke-width:1;%7D%0A%3C/style%3E%3Cdefs%3E%3C/defs%3E%3Cg%3E%3Cdefs%3E%3Crect id='SVGID_1_' x='0' width='19.1' height='1'/%3E%3C/defs%3E%3CclipPath id='SVGID_2_'%3E%3Cuse xlink:href='%23SVGID_1_' style='overflow:visible;'/%3E%3C/clipPath%3E%3Cline class='st0' x1='19.1' y1='0.2' x2='0' y2='0.2'/%3E%3C/g%3E%3C/svg%3E");
}