/* Expand CSS -----------------------------------*/

body.expanded {
    overflow: hidden;
}
body.expanded .expandable {
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}
body.expanded .expandable #expandable--toggle {
    position: fixed;
    top: 15px;
    right: 30px;
}
body.expanded .expandable > div {
    padding: 25px 15px;
}

.expandable {
    padding: 0;
    position: relative;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
.expandable #expandable--toggle {
    height: auto;
    padding: 5px 10px;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9;
}
.expandable #expandable--toggle.ongoing {
    top: 50px;
}