html, body {
  height: 100%;
  margin: 0px;
}

#appcontainer {
  height: calc(100%-50px);
}

.appOverlay{
  width: 100%;
  height: 100%;
  position: fixed;/*was absolute*/
  top: 0;
  left: 0;
  background-color: rgba(238, 233, 233, 0.8);
  z-index: 1;
}

.appLogin{
  width: 400px;
  height: 500px;
  position: absolute;
  top: calc(50% - 250px);
  left: calc(50% - 200px);
}

input[type='date']{
  padding-left : 0pt;
  padding-right : 0pt;
}

input,select,textarea{
  font-weight: bold;
}

/* DRAG & DROP */
.drag {
  display: inline-block;
  width:100%;
}
.dropholder {/*<--- with spectre css this seems not to be necessary... */
  position: relative;
}

/* DRAG & DROP FILE */
.drop-file-area {
  border: 2px dashed rgb(12, 47, 199);
  border-radius: 20px;
  min-height: 200px;
  position: relative;
  background-color: lightgray;
}
.drop-file-area-small {
  border: 2px dashed rgb(12, 47, 199);
  border-radius: 20px;
  min-height: 100px;
  position: relative;
  background-color: lightgray;
}
/*
.drop-file-area > span {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
*/
/* DROPDOWN MENU */
.dropdown {
  position: absolute;
  border: 1px solid gray;
  display: none;
  z-index: 1;
  background: white;
}

input:focus + .dropdown {
  display: block;
}

.hidden {
  display: none;
}


.btn-right-bottom{
  position: fixed;
  display: block;
  right: 0;
  bottom: 0;
  margin-right: 40px;
  margin-bottom: 40px;
  z-index: 900;
}

.pointer:hover
{
    cursor: pointer;
}

/* font icon rendering see google site -> https://material.io/tools/icons/ */
@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url(/fonts/MaterialIcons-Regular.woff2) format('woff2'),
    url(/fonts/MaterialIcons-Regular.woff) format('woff'),
    url(/fonts/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}