/* Style the button that is used to open and close the collapsible content */
.collapsible {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    margin-top: 10px
}
.collapsible2 {
    background-color: #f8cead;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    margin-top: 10px
}
.collapsible3 {
    background-color: #f8cead;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 30px;
    height: 30px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    margin-top: 10px
}
.collapsible-notreally {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    margin-top: 10px
}


/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.collapsible:hover  {
    background-color: #ccc;

}
.collapsible2:hover  {
    background-color: #f3be95;
}
.collapsible3:hover  {
    background-color: #f3be95;

}
.collapsible-notreally:hover   {
    background-color: #ccc;

}

/* Style the collapsible content. Note: hidden by default */
.content_collapse {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;

}
.content_collapse2 {
    padding: 0 18px;
    display: none;
    overflow: hidden;
    background-color: #f1f1f1;
    width: 100%;
    height: 100%;

}
.content_collapse a {
    color: black;
}

.collapsible:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: white;
    float: right;
    margin-left: 5px;
}


/*.active:after {*/
/*    content: "\2796"; !* Unicode character for "minus" sign (-) *!*/
/*}*/


