html {
  height: 100%;
}
    html body {
        font-family: Arial;
        background: #FFFFFE;
        color: #000000;
    }
html body #main_header {
  background: #3e464f;
  width: 100%;
  height: 50px;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
html body #main_header #menu_trigger {
  display: inline-block;
  background: url("../img/menu.png") center no-repeat;
  width: 25px;
  height: 100%;
  padding: 10px 30px;
  cursor: pointer;
}
html body #main_header #menu_trigger.open {
  background-color: #2C2C2C;
}
html body #main_header #header_logo {
  display: inline-block;
  background-size: contain;
  width: 100px;
  height: 100%;
  position: absolute;
  margin-left: 10px;
  top: 60%;
  transform: translateY(-50%);
}
html body #main_header #web_version {
  display: inline-block;
  position: absolute;
  left: 180px;
  bottom: 10px;
  font-size: 12px;
}
html body #main_header #profile_info {
  display: inline-block;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}
html body #menu {
  background: #2C2C2C;
  width: 250px;
  position: absolute;
  left: -250px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: 0 2px 14px 0 #46464680;
  -moz-box-shadow: 0 2px 14px 0 #46464680;
  box-shadow: 0 2px 14px 0 #46464680;
  color: #FFFFFF;
  z-index: 11;
  overflow: auto;
}
html body #menu.visible {
  left: 0px;
}
html body #menu .menu-item:hover {
  cursor: pointer;
  color: #8D8A89;
}
html body #menu .fa-sign-out-alt {
  font-size: 20px;
}
html body #back_decorator {
  background: #2C2C2C;
  position: absolute;
  width: 100%;
  height: 150px;
  z-index: -1;
  -webkit-box-shadow: 0 2px 4px 0 #3e464f;
  -moz-box-shadow: 0 2px 4px 0 #3e464f;
  box-shadow: 0 2px 4px 0 #3e464f;
}
html body #back_decorator.blue {
  background: #4a90e2;
  -webkit-box-shadow: 0 2px 4px 0 #000000;
  -moz-box-shadow: 0 2px 4px 0 #000000;
  box-shadow: 0 2px 4px 0 #000000;
}
html body #back_decorator.transparent {
  background: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
html body #main_container {
  height: -webkit-calc(100vh - 50px) !important;
  height: -moz-calc(100vh - 50px) !important;
  height: -ms-calc(100vh - 50px) !important;
  height: -o-calc(100vh - 50px) !important;
  height: calc(100vh - 50px) !important;
  overflow: auto;
  padding: 0 10%;
  background: #FFFFFE;
}
html body #main_container.with-footer {
  height: -webkit-calc(100vh - 50px - 150px) !important;
  height: -moz-calc(100vh - 50px - 150px) !important;
  height: -ms-calc(100vh - 50px - 150px) !important;
  height: -o-calc(100vh - 50px - 150px) !important;
  height: calc(100vh - 50px - 150px) !important;
}
    html body #main_container .header-title {
        display: inline-block;
        font-size: 32px;
        color: black;
    }
    html body #main_container .header-subtitle {
        font-size: 24px;
        color: black;
    }
html body #transparent_header {
  color: #FFFFFF;
  padding: 20px 0;
}
html body #transparent_header .header-row {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(158, 178, 196, 0.2);
}
html body #transparent_header .header-row .small {
  color: #000000;
}
html body .footer {
  position: fixed;
  bottom: 0px;
  height: 150px;
  width: 100%;
  background: #3e464f;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}

.dropzone {
  background: #56606a;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -khtml-border-radius: 3px;
  border-radius: 3px;
  border: 1px dashed #000000;
  color: #FFFFFF;
}

/*# sourceMappingURL=base.css.map */
