/*------------------------------------*\
    #GLOBAL
\*------------------------------------*/

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

 

 
a:hover,
a:focus {
    text-decoration: none;
}

/**
*
*/
.main {
    max-width: 40em;
    margin: 0 auto;
}



/*------------------------------------*\
    #KOALAPSE
\*------------------------------------*/

/**
* Default styles
*/
.koalapse__title {
    margin-bottom: 0;
    position: relative;
}
.koalapse__title:after {
    content: "+";
    color: #fff;
   
    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-weight: 700;
    text-transform: uppercase;
    text-align: left;
    color: #fff;
    border: 0;
    border-top: 1px solid #fff;
    background-color: #2BADC3;
    padding: 1em;
    display: block;
    width: 100%;
    cursor: pointer;
}
.koalapse__title:hover,
.koalapse__title:focus {
    background-color:seagreen;
}
.koalapse__content {
    background-color: #eee;
    padding: 0.25em 1em;
}
.koalapse__content + .koalapse__title {
    margin-top: 0;
}
