/*------------------------------------*\
    #GLOBAL
\*------------------------------------*/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}



/*------------------------------------*\
    #KOALAPSE
\*------------------------------------*/

/**
* Default styles
*/
.koalapse__title {
    margin-bottom: 0;
    position: relative;
}
.koalapse__title:after {
    content: "+";
    color: #fff;
    font-size: 1.5em;
    line-height: 1;
    position: absolute;
    right: 1rem;
    top: 0.75rem;
}
.koalapse__title[aria-expanded="true"]:after {
    content:'-';
}
.koalapse__title:first-child {
    border-top: 0;
}
.koalapse__title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: left;
    color: #fff;
    border: 0;
    border-top: 1px solid #fc0;
    background-color: #333;
    padding: 1em;
    display: block;
    width: 100%;
    cursor: pointer;
}
.koalapse__title:hover,
.koalapse__title:focus {
    background-color: #FC0;
}
.koalapse__content {
    background-color: #eee;
	color:#333;
    padding: 0.25em 1em;
}
.koalapse__content + .koalapse__title {
    margin-top: 0;
}
