html,
body {
    height: 100%;
    margin: 0;
}

body {
    color: #979B9C;
    background: #181E21;
    }

html *
{
   font-family: sans-serif;
/*   font-size: 1em;*/
   font-size: 16px;
   text-shadow: 1px 1px 2px #000000;
}

A {
    color: #FFFFFF;
    text-decoration: none;
    }

A:hover {
    text-shadow: none;
    text-decoration: underline;
    text-decoration-color: #ffb663;
    text-underline-offset: 2px;
    }

input,select {
/*    display:block;*/
    box-sizing: border-box;
    text-decoration:none;
/*    padding: 5px 8px 5px 8px;*/
    padding: 5px;
    margin: 5px;
    color: #000000;
    background-color: #979B9C;
    border: 0px;
    border-radius: 4px;
    outline: 0;
    text-shadow: none;
/*    width: 200px;*/
}

textarea {
/*    display:block;*/
/*    display: inline-block;*/
    border-radius: 4px;
    border: 0px;
    padding: 5px;
    margin: 5px;
    background-color: #979B9C;
    outline: 0;
    text-shadow: none;
    height: 50px;
/*    line-height: 1.5;*/
    resize: none; /* disable resizing */
}

/*** Button ***/

input[type="submit"],input[type="button"] {
/*    box-sizing: border-box;*/
    text-decoration:none;
    padding: 0px 10px 0px 10px;
    height: 35px;
/*    display:block;*/
    border: 1px;
    border-radius: 4px;
    border-style: solid;
    border-color: #FFFFFF;
    outline: 0;
    color: #FFFFFF;
    background-color: #181E21;
}

/*input[type="button"]:hover {*/
/*    color: #181E21;*/
/*    border-color: #181E21;*/
/*    background-color: #FFFFFF;*/
/*}*/

/*.button:active {*/
input[type="submit"]:active,input[type="button"]:active {
     transform: scale(0.95); 
}

/*** Button end ***/

/*** Flex ***/

.flex-col {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100%;
    width: 100%;
}


.flex-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.flex-grow {
    flex-grow: 1; /* as a flex child */
    width: 100%;
    display: flex;
    flex-direction: column;
}

.vhcenter {
    justify-content: center;
    align-items: center;
/*    text-align: center;*/
}

.vcenter {
    justify-content: center;
}

.hcenter {
    align-items: center;
}

/*** Custom ***/

#footer {
    color: #979B9C;
    background: #1E2629;
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    box-shadow: 0px 0px 10px 0px rgba(30,38,41,0.75);
}

.box-light {
    padding: 5px;
    margin: 10px;
    text-align: center;
    box-shadow: 0px 0px 8px 2px rgba(24,30,33,0.75);
    border-radius: 8px;    
    text-shadow: 1px 1px 2px #181E21;
    background-color: #1E2629;
}

.box-dark {
    padding: 10px;
    margin: 10px;
    text-align: center;
    box-shadow: 0px 0px 8px 2px rgba(24,30,33,0.75);
    border-radius: 8px;    
    text-shadow: 1px 1px 2px #181E21;
    background-color: #181E21;
}

.font-big {
    font-family: Arial;
    font-size: 22vh;
}

.font-medium {
/*    font-size: 2vh;*/
    font-size: 24px;
}

.font-monospace {
    font-family: monospace;
}

.padding5 {
    padding: 5px;
}

.padding10 {
    padding: 10px;
}

.margin5 {
    margin: 5px;
}

.width100pct {
    width: 100%;
}

.width200px {
    width: 200px;
}

.width300px {
    width: 300px;
    min-width: 300px;
}

.height100pct {
    height: 100%;
}

.hidevscroll {
    overflow-y: hidden;
}

.hidehscroll {
    overflow-x: hidden;
}

/*** align text above form inputs (template05, nfdump) ***/
.left-label {
    text-align: left;
    padding: 10px 0px 0px 35px;
}

/*** for debugging ***/
.red {
    background: red;
}

