<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!
 * jQuery Accordion 0.0.1
 * (c) 2014 Victor Fernandez &lt;victor@vctrfrnndz.com&gt;
 * MIT Licensed.
 */

/* Requirements */

[data-accordion] [data-content] {
    overflow: hidden;
    max-height: 0;
    background-color:#efefef;
    
}

/* Basic Theme */

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

[data-control],
[data-content] &gt; * {
}

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

[data-accordion] [data-control] {
    position: relative;
}

#contact-offices [data-accordion] &gt; [data-control]:hover:after {
	font-family: "Font Awesome 5 Freee";
    content: "\f309";
    position: absolute;
    right: 30px;
    bottom: 40px;
    font-size: 25px;
    font-weight: 200;
    color: #fff;
    height: 15px;
    width: 24px;

    background-size: 50%;
}

#contact-offices [data-accordion].open &gt; [data-control]:after {
   font-family: "Font Awesome 5 Freee";
    content: "\f30c";
    position: absolute;
    right: 30px;
    bottom: 40px;
    font-size: 25px;
    font-weight: 200;
    color: #ff4c31;
    height: 15px;
    width: 24px;

    background-size: 50%;
}


</pre></body></html>