.terminalBlock {
    border: 1px solid #FFF9F2;
    display: block;
    position:absolute;
    height:auto;
    bottom:0;
    top:0;
    left:0;
    right:0;
    padding: calc(2vmin + 23px) 2vmin 2vmin 2vmin;
    margin: 5vmin;
    overflow: scroll;
    -ms-overflow-style: none; /* for Internet Explorer, Edge */
    scrollbar-width: none; /* for Firefox */

}
.terminalBlock::-webkit-scrollbar {
    display: none; /* for Chrome, Safari, and Opera */
}

#terminal, #terminalLabel, #terminalLabel2{
    position: absolute;
    padding: 0;
    font-size: 16px;

}




#terminal{
    left:calc(2vmin + 1em);
    color: #FFF9F2;
    background-color: #232326;
    font-family: "IBM Courier", monospace;
    height: 1.5em;
    bottom: 2vmin;
    resize: none;
    width: 85%;
    max-width: calc(1200px + 4vmin);

    border: none;
    border-radius: 0;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#terminalLabel{
    left:2vmin;

    bottom: calc(2vmin + 1.5em);
    color: #232326;
    background-color: #FFF9F2;
}

.errorText{
    color:#EF5252
}

#terminalLabel2{
    height:1.5em;
    padding-right: 1em;
    bottom: 2vmin;
    background-color: #232326;
    color: #FFF9F2;
}



.toolbar{

    position: absolute;
    margin-bottom: 20px;
    top: 0;
    left: 0;
    width: 100%;
    padding-bottom: 2px;
    padding-top:1px
}

.toolbar,.tools{
    display: flex;
    justify-content: space-between;
}
.tools{
    width: 100%;
}
#close{
    margin-right: 1px;
    background-color: #232326;
    color: #FFF9F2;
    width: 1.3em;
    text-align: center;
    height: 1.3em;
}

#toolApp{
    padding-left: 1vw;
}
#toolTime{
    padding-right: 1vw;
}



@media screen and (max-width: 500px) {

    .tools{
        justify-content: flex-start;
    }
    #toolTime{
        display: none;
    }

}