/* console */
.console.open {   
    top: 0px!important;
} 
.console.open ~ .container {
    margin-top: 50%;
}
.console {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #181818;
    opacity: 0.90;
    color: #FFF;
    position: fixed;
    top: -50%;
    left: 0;
    width: 100%;
    height: 50%;
    transition: top 300ms cubic-bezier(0.17, 0.04, 0.03, 0.94);  
    box-sizing: border-box;
}
.console-messages {   
    font-family: monospace;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 0 0 10px;
    overflow: hidden;
    overflow-y: scroll;
    color: #cfcfcf;
    line-height: 1.4;
} 
.console-messages::-webkit-scrollbar-thumb {	
	background-color: rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 0 1px rgba(255,255,255,0.5);
}
.console-messages::-webkit-scrollbar {
    width: 10px; height: 3px;
}
.console-command {
    font-family: monospace;
    padding: 10px 10px;
    margin-top: 5px;
    border-top: 1px solid #cecece;
    background-color: #292929;
    outline: unset;
} 