html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
  font-size: 1em;
  letter-spacing: normal;
}
html,
body {
  font-family: Arial, Helvetica, sans-serif;
  color: hsl(0, 0%, 36%);
  background-color: hsl(200, 10%, 96%);
}
input,
button {
  color: hsl(0, 0%, 36%);
  font-size: 1em;
}
input:focus,
button:focus {
  outline: none;
}
button {
  background: transparent;
  border: 0;
  border-radius: 0.5em;
}
button:hover {
  cursor: pointer;
}
form {
  padding: 1px 0;
}
/*******************************************************************************
Login Formular
    login + formular
*******************************************************************************/
.login {
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: center;
}
.login-formular {
  flex: 0 1 auto;
  max-width: 320px;
  margin: 2em 1em;
  padding: 2em 2em;
  background: hsl(200, 10%, 98%);
  border-radius: 3px;
  box-shadow: 2px 3px 3px 1px hsla(0, 0%, 0%, 0.075), 0 0 1px 1px hsla(0, 0%, 0%, 0.1);
}
.login-formular .formular-head {
  margin-bottom: 4em;
  width: 100%;
  height: 100px;
  background-image: url('/web/img/gevekom.png');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  .login {
    align-items: center;
  }
  .login-formular {
    min-width: 300px;
    margin-top: 0;
  }
}
/*******************************************************************************
    Inputfield
*******************************************************************************/
.inputfield {
  position: relative;
  flex: 1 0 auto;
  margin-top: 2em;
}
.inputfield input:not([type="checkbox"]) {
  width: 100%;
  padding: 6px 8px;
  border: 0;
  color: #263238;
  border-bottom: 1px solid hsl(0, 0%, 72%);
  background: transparent;
}
.inputfield input:not([type="checkbox"]):disabled,
.inputfield input:not([type="checkbox"])[disabled] {
  border-bottom-color: transparent;
}
.inputfield .placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: #263238;
  pointer-events: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: translate(8px, 6px);
  transform-origin: 0% 0%;
  transition: all 0.2s ease;
}
.inputfield .bar {
  position: relative;
  display: block;
  width: 100%;
}
.inputfield .bar:before,
.inputfield .bar:after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 0;
  background: hsl(200, 50%, 50%);
  z-index: 6;
  transition: width 0.2s ease;
}
.inputfield .bar:before {
  left: 50%;
}
.inputfield .bar:after {
  right: 50%;
}
.inputfield input.used ~ .placeholder,
.inputfield input:focus ~ .placeholder {
  font-weight: bold;
  transform: scale(0.8) translate(0, -24px);
}
.inputfield input.used ~ .placeholder {
  color: #37474F;
}
.inputfield input:focus ~ .placeholder {
  color: hsl(200, 50%, 50%);
}
.inputfield input:focus ~ .bar:before,
.inputfield input:focus ~ .bar:after {
  width: 50%;
}
.inputfield.checkbox {
  margin-top: 1em;
}
.inputfield input[type="checkbox"] {
  visibility: hidden;
  position: absolute;
}
.inputfield .checkbox-label {
  display: block;
  padding: 6px 8px;
  cursor: pointer;
}
.inputfield .checkbox-label span {
  display: inline-block;
  margin-left: 1.25em;
}
.inputfield .explain {
  display: block;
  margin-left: 2.6em;
  font-size: 70%;
}
.inputfield .checked,
.inputfield .unchecked {
  position: absolute;
  top: 0.4em;
  left: 0.25em;
}
.inputfield .checked {
  display: none;
}
.inputfield input[type="checkbox"]:checked ~ .checked {
  display: block;
}
.inputfield input[type="checkbox"]:checked ~ .unchecked {
  display: none;
}
/*******************************************************************************
btn group
    Loginformular
*******************************************************************************/
.btn-group {
  margin-top: 1.5em;
}
.content-toolbar .btn-group {
  margin-top: 0;
}
.btn-group button {
  margin: 0.5em 0.5em 0 0;
  padding: 0.5em 0.75em;
}
.btn-group button i {
  padding-right: 0.5em;
}
.btn-group button:last-child {
  margin-right: 0;
}
.btn-group.btn-group-right {
  text-align: right;
}
.btn-login {
  margin-right: 0.5em;
  color: white;
  background: hsl(200, 81%, 54%);
  border-bottom: 3px solid hsl(200, 72%, 45%);
}
.btn-login:hover {
  background: hsl(200, 81%, 47%);
  border-bottom: 3px solid hsl(200, 72%, 38%);
}
.btn-login:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-error {
  margin-right: 0.5em;
  color: white;
  background: #E53935;
  border-bottom: 3px solid #D32F2F;
}
.btn-error:hover {
  background: #da201c;
  border-bottom: 3px solid #b72727;
}
.btn-error:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-login-google {
  background: hsl(0, 0%, 97%);
  border-bottom: 3px solid hsl(0, 0%, 92%);
}
.btn-login-google:hover {
  background: hsl(0, 0%, 90%);
  border-bottom: 3px solid hsl(0, 0%, 85%);
}
.btn-default {
  color: #263238;
  background-color: white;
  border-bottom: 3px solid #B0BEC5;
}
.btn-default:hover {
  color: hsl(200, 81%, 54%);
}
.btn-default:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-success {
  margin-right: 0.5em;
  color: white;
  background: #4CAF50;
  border-bottom: 3px solid #388E3C;
}
.btn-success:hover {
  background: #419645;
  border-bottom: 3px solid #2e7431;
}
.btn-success:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
/*******************************************************************************
Adminpanel
    Liste
*******************************************************************************/
.adminpanel,
.userpanel {
  height: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: center;
  overflow-y: scroll;
}
.list {
  position: relative;
  flex: 0 1 auto;
  width: 100%;
  margin: 4em auto 1em;
  padding: 0;
  background: hsl(200, 10%, 98%);
  border-radius: 3px;
  box-shadow: 2px 3px 3px 1px hsla(0, 0%, 0%, 0.075), 0 0 1px 1px hsla(0, 0%, 0%, 0.1);
  list-style: none;
}
.list .list-item {
  border-top: 1px solid hsl(0, 0%, 100%);
  border-bottom: 1px solid hsl(0, 0%, 87%);
  border-left: none;
  border-right: none;
}
.list .list-item .list-item-head {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.5em 0;
  cursor: pointer;
}
.list .list-item .list-item-head span {
  margin: 0 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list .list-item .list-item-head i {
  display: none;
  margin-right: 0.25em;
}
.adminpanel .list .list-item:hover,
.adminpanel .list .list-item.active {
  background-color: #ECEFF1;
}
.adminpanel .list .list-item:hover .list-item-head,
.adminpanel .list .list-item.active .list-item-head {
  background-color: #ECEFF1;
}
.adminpanel .list .list-item:hover .list-item-head i,
.adminpanel .list .list-item.active .list-item-head i {
  display: inline-block;
}
.adminpanel .list .list-item.active {
  color: black;
  border-top-color: white;
  transition: all 0.175s ease;
}
.adminpanel .list .list-item.active .list-item-head {
  position: sticky;
  top: 50px;
  background-color: #CFD8DC;
  cursor: auto;
  z-index: 3;
}
.row {
  flex: 1 0 auto;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
@media only screen and (min-width: 768px) {
  .row .inputfield {
    flex: 1 0 50%;
    margin: 2.25em 0.5em 0 0;
  }
  .row .inputfield:last-child {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .list {
    width: 96%;
  }
}
.label {
  padding: 0.25em 0.5em;
}
.company-label {
  border-radius: 0.5em;
}
.add-label,
.user-label {
  position: relative;
  display: inline-block;
  padding: 0.25em 0.5em;
  border-radius: 0.5em;
  background-color: white;
  cursor: pointer;
  box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.3);
}
.user-label {
  margin-right: 0.5em;
}
.user-label .fa-folder {
  display: inline-block;
}
.user-label .fa-trash {
  display: none;
}
.user-label:hover .fa-trash {
  display: inline-block;
  color: #E53935;
}
.user-label:hover .fa-folder {
  display: none;
}
.add-label:hover button i {
  color: #4CAF50;
}
.dropdown {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  max-height: 300px;
  margin: 0;
  padding: 0;
  list-stlye: none;
  background-color: white;
  border-radius: 0.5em;
  overflow-y: auto;
  box-shadow: 0 3px 6px hsla(0, 0%, 0%, 0.3);
}
.dropdown li {
  padding: 0.25em 0.5em;
}
.dropdown li:first-child {
  position: sticky;
  top: 0;
  background-color: white;
}
.dropdown li .inputfield {
  margin-top: 0;
}
.dropdown li .inputfield input {
  padding-right: 2em;
}
.dropdown li .inputfield .fa-absolute {
  position: absolute;
  top: 0.25em;
  right: 0.25em;
}
.dropdown li:hover:not(:first-child) {
  background-color: #F1F8E9;
  color: #7CB342;
}
.dropdown li .fa-folder {
  display: inline-block;
}
.dropdown li .fa-plus {
  display: none;
}
.dropdown li:hover .fa-plus,
.dropdown li:active .fa-plus,
.dropdown li:focus .fa-plus {
  display: inline-block;
}
.dropdown li:hover .fa-folder,
.dropdown li:active .fa-folder,
.dropdown li:focus .fa-folder {
  display: none;
}
.dropdown.open {
  display: block;
}
.content-toolbar {
  position: sticky;
  top: 90px;
  padding: 0.5em 0;
  text-align: right;
  background-color: #CFD8DC;
  border-bottom: 1px solid #B0BEC5;
  z-index: 3;
}
.content-toolbar button {
  padding: 0.25em 0.5em;
}
.content {
  padding: 0 1em;
}
/*******************************************************************************
Adminpanel
    filter
*******************************************************************************/
.toolbar {
  position: fixed;
  height: 50px;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  background-color: white;
  box-shadow: 0 3px 3px 1px hsla(0, 0%, 0%, 0.175);
  z-index: 5;
}
.search-group {
  position: relative;
  width: 98%;
  margin: 0 1em;
}
.search-group input {
  width: 100%;
  border: 1px solid hsl(0, 0%, 72%);
  border-radius: 3px;
  padding: 0.5em 4em 0.5em 0.5em;
}
.search-group button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 1em;
}
.search-group button:hover {
  color: hsl(0, 0%, 0%);
}
@media only screen and (min-width: 560px) {
  .search-group {
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .search-group {
    width: 96%;
    margin-left: 0;
  }
}
/*******************************************************************************
Error message
*******************************************************************************/
.alert {
  margin: 0.5em 0;
  padding: 0 0.75em;
  font-size: 0.8em;
  border-radius: 3px;
}
.alert.alert-warning {
  color: #FF6F00;
  border: 1px solid #FFD54F;
  background-color: #FFECB3;
}
.alert i {
  margin-right: 0.3em;
}
.error {
  position: fixed;
  bottom: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: baseline;
  min-width: 320px;
  max-width: 560px;
  border-radius: 3px;
  z-index: 1;
}
.error.error-danger {
  color: #FFEBEE;
  border: 1px solid #C62828;
  background-color: #D32F2F;
}
.error div {
  flex: 1 1 auto;
  padding: 1em 0.25em 1em 1em;
  word-break: break-word;
}
.error button {
  flex: 0 0 auto;
  padding: 1em;
  color: white;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.error button:hover {
  color: #EF9A9A;
}
@media only screen and (min-width: 768px) {
  .error {
    bottom: 0.5em;
  }
}
/*******************************************************************************
Loader
*******************************************************************************/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.8);
  z-index: 7;
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -35px;
  margin-left: -35px;
}
.loader.loader-inline {
  position: relative;
  top: auto;
  margin-top: 0;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.circular {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
}
.path {
  stroke: hsl(0, 0%, 44%);
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
}
