/* less for index.html */
@font-face {
  font-family: "Fjalla One";
  src: url("fonts/FjallaOne-Regular.ttf") format("opentype");
}
@font-face {
  font-family: "Roboto Slab";
  src: url("fonts/RobotoSlab-Regular.ttf") format("opentype");
}
@font-face {
  font-family: "Roboto Slab-Bold";
  font-weight: bold;
  src: url("fonts/RobotoSlab-Bold.ttf") format("opentype");
}
@font-face {
  font-family: "Roboto Slab-Thin";
  src: url(fonts/RobotoSlab-Thin.ttf) format("opentype");
}
@font-face {
  font-family: "MyriadPro-Regular";
  src: url("fonts/MyriadPro-Regular.otf") format("embedded-opentype");
}
@font-face {
  font-family: "MyriadPro-Bold";
  font-weight: bold;
  src: url("fonts/MyriadPro-Bold.otf") format("embedded-opentype");
}
body {
  background-color: darkgray;
  font-family: "Roboto Slab";
}
input {
  background-color: white;
  font-family: "Roboto Slab";
  font-size: 12pt;
}
h1 {
  font-size: 30pt;
  font-weight: 100;
}
button {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}
.version {
  float: right;
  color: gray;
  margin-right: 20px;
}
.top-area {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  opacity: 0.95;
  padding-top: 8px;
  padding-left: 10px;
  background-color: darkgray;
}
.top-area .rightmost {
  float: right;
  margin-right: 20px;
  color: white;
}
.top-area .rightmost svg {
  cursor: pointer;
  margin-left: auto !important;
  margin-right: 0 !important;
}
.logo {
  display: inline-block;
  position: relative;
  top: -8px;
  left: 4px;
  font-family: "Fjalla One";
  font-size: 40px;
  color: #BBFF27;
}
.klickonom-icon {
  display: inline-block;
  padding-left: 4px;
  width: 50px;
  height: 50px;
}
.top-menu {
  position: fixed;
  z-index: 2;
  top: 70px;
  left: 0;
  height: 23px;
  /*border-top: solid #555 1px;*/
  border-bottom: solid gray 1px;
  background-color: #a2a2a2;
  width: 100%;
}
.top-menu .top-menu-area {
  display: inline-block;
  font-weight: 300;
  position: absolute;
  left: 180px;
}
.top-menu .top-menu-area div {
  cursor: pointer;
  display: inline-block;
  padding-left: 8px;
  padding-right: 8px;
  border-right: solid black 1px;
  border-left: solid black 1px;
  margin-left: -1px;
  white-space: nowrap;
  vertical-align: middle;
}
.top-menu .top-menu-area div:hover {
  background-color: #bfbfbf;
}
.top-menu .top-menu-area .selected {
  background-color: #bfbfbf;
}
.left-menus {
  position: fixed;
  top: 100px;
}
.menu-button {
  background-color: #FF8600;
  height: 42px;
  width: 160px;
  border-radius: 5px;
  margin: 4px;
  cursor: pointer;
  overflow: hidden;
  animation-duration: 0.5s;
  animation-name: unshrinkmenubar;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: unshrinkmenubar;
}
.menu-button svg {
  position: relative;
  top: 8px;
  left: 10px;
  display: inline-block;
}
.menu-button .icon {
  width: 32px;
  display: inline-block;
  height: 40px;
}
.menu-button .text {
  position: relative;
  display: inline-block;
  top: -4px;
  left: 16px;
  color: white;
  font-family: "Fjalla One";
  font-size: 12pt;
  line-height: 48px;
  white-space: nowrap;
}
.menu-button.minimized {
  width: 50px;
  animation-duration: 0.5s;
  animation-name: shrinkmenubar;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: shrinkmenubar;
}
.menu-button.selected {
  background-color: #ff9e33;
}
.menu-button:hover {
  background-color: #ff9e33;
}
@keyframes shrinkmenubar {
  from {
    width: 160px;
  }
  to {
    width: 50px;
  }
}
@-webkit-keyframes shrinkmenubar {
  from {
    width: 160px;
  }
  to {
    width: 50px;
  }
}
@keyframes unshrinkmenubar {
  from {
    width: 50px;
  }
  to {
    width: 160px;
  }
}
@-webkit-keyframes unshrinkmenubar {
  from {
    width: 50px;
  }
  to {
    width: 160px;
  }
}
.control .column {
  display: inline-block;
  width: 270px;
  vertical-align: top;
}
.control label {
  display: block;
}
.control .box {
  margin-left: 8px;
}
.board-template {
  position: absolute;
  top: 80px;
  left: 200px;
  right: 20px;
  bottom: 20px;
  min-height: 500px;
  background-color: none;
  border-radius: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.board-template h1 {
  margin-top: 0;
  margin-bottom: 30px;
}
.board-template button {
  background-color: #FFD30D;
  height: 42px;
  width: 160px;
  border-radius: 5px;
  border: none;
  margin: 4px;
  cursor: pointer;
  color: white;
  font-family: "Fjalla One";
  font-size: 12pt;
  outline: none;
}
.unexpand-left {
  left: 200px;
  animation-duration: 0.5s;
  animation-name: unexpandleft;
}
.expand-left {
  left: 80px !important;
  animation-duration: 0.5s;
  animation-name: expandleft;
}
@keyframes expandleft {
  to {
    left: 80px;
  }
  from {
    left: 200px;
  }
}
@keyframes unexpandleft {
  from {
    left: 80px;
  }
  to {
    left: 200px;
  }
}
select {
  font-family: "Roboto Slab";
  font-weight: 400;
  background: white;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 12pt;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url(images/arrowdown.png);
  background-repeat: no-repeat;
  background-position: right;
}
option {
  font-family: "Roboto Slab";
  font-weight: 400;
  font-size: 12pt;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}
.company-select {
  position: absolute;
  top: 22px;
  left: 320px;
  min-width: 280px;
}
.box {
  width: 9px;
  height: 9px;
  line-height: 9px;
  border: solid silver 2px;
  display: inline-block;
  margin-right: 4px;
  cursor: pointer;
  font-size: 18pt;
  color: white;
  background-color: white;
  vertical-align: bottom;
}
.box.checked:before {
  position: relative;
  top: -1px;
  left: -3px;
  content: "\2713";
  color: green;
  font-size: 18pt;
}
.work-board {
  position: absolute;
  top: 80px;
  left: 200px;
  right: 20px;
  bottom: 20px;
  min-height: 500px;
  background-color: none;
  border-radius: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.work-board h1 {
  margin-top: 0;
  margin-bottom: 30px;
}
.work-board button {
  background-color: #FFD30D;
  height: 42px;
  width: 160px;
  border-radius: 5px;
  border: none;
  margin: 4px;
  cursor: pointer;
  color: white;
  font-family: "Fjalla One";
  font-size: 12pt;
  outline: none;
}
.work-board .table-row .head-cell {
  min-width: 40px;
  height: 20px;
  display: inline-block;
}
.work-board .table-row .head-cell:nth-child(1) {
  width: 140px;
  padding-left: 4px;
  padding-right: 4px;
}
.work-board .table-row .cell {
  display: inline-block;
  line-height: 20px;
  background-color: white;
  border: solid black 1px;
  padding-left: 4px;
  padding-right: 4px;
  vertical-align: top;
}
.work-board .table-row .cell:nth-child(1) {
  width: 130px;
}
.work-board .table-row .cell:nth-child(2) {
  width: 40px;
  text-align: right;
}
.work-board .table-row .cell:nth-child(3) {
  width: 600px;
}
.work-board .table-row .cell:nth-child(4) {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
}
.salary-board {
  position: absolute;
  top: 80px;
  left: 200px;
  right: 20px;
  bottom: 20px;
  min-height: 500px;
  background-color: none;
  border-radius: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.salary-board h1 {
  margin-top: 0;
  margin-bottom: 30px;
}
.salary-board button {
  background-color: #FFD30D;
  height: 42px;
  width: 160px;
  border-radius: 5px;
  border: none;
  margin: 4px;
  cursor: pointer;
  color: white;
  font-family: "Fjalla One";
  font-size: 12pt;
  outline: none;
}
.accounting-board {
  position: absolute;
  top: 80px;
  left: 200px;
  right: 20px;
  bottom: 20px;
  min-height: 500px;
  background-color: none;
  border-radius: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.accounting-board h1 {
  margin-top: 0;
  margin-bottom: 30px;
}
.accounting-board button {
  background-color: #FFD30D;
  height: 42px;
  width: 160px;
  border-radius: 5px;
  border: none;
  margin: 4px;
  cursor: pointer;
  color: white;
  font-family: "Fjalla One";
  font-size: 12pt;
  outline: none;
}
.taxing-board {
  position: absolute;
  top: 80px;
  left: 200px;
  right: 20px;
  bottom: 20px;
  min-height: 500px;
  background-color: none;
  border-radius: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.taxing-board h1 {
  margin-top: 0;
  margin-bottom: 30px;
}
.taxing-board button {
  background-color: #FFD30D;
  height: 42px;
  width: 160px;
  border-radius: 5px;
  border: none;
  margin: 4px;
  cursor: pointer;
  color: white;
  font-family: "Fjalla One";
  font-size: 12pt;
  outline: none;
}
.budget-board {
  position: absolute;
  top: 80px;
  left: 200px;
  right: 20px;
  bottom: 20px;
  min-height: 500px;
  background-color: none;
  border-radius: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.budget-board h1 {
  margin-top: 0;
  margin-bottom: 30px;
}
.budget-board button {
  background-color: #FFD30D;
  height: 42px;
  width: 160px;
  border-radius: 5px;
  border: none;
  margin: 4px;
  cursor: pointer;
  color: white;
  font-family: "Fjalla One";
  font-size: 12pt;
  outline: none;
}
.mileage-board {
  position: absolute;
  top: 80px;
  left: 200px;
  right: 20px;
  bottom: 20px;
  min-height: 500px;
  background-color: none;
  border-radius: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mileage-board h1 {
  margin-top: 0;
  margin-bottom: 30px;
}
.mileage-board button {
  background-color: #FFD30D;
  height: 42px;
  width: 160px;
  border-radius: 5px;
  border: none;
  margin: 4px;
  cursor: pointer;
  color: white;
  font-family: "Fjalla One";
  font-size: 12pt;
  outline: none;
}
.company-board {
  position: absolute;
  top: 80px;
  left: 200px;
  right: 20px;
  bottom: 20px;
  min-height: 500px;
  background-color: none;
  border-radius: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.company-board h1 {
  margin-top: 0;
  margin-bottom: 30px;
}
.company-board button {
  background-color: #FFD30D;
  height: 42px;
  width: 160px;
  border-radius: 5px;
  border: none;
  margin: 4px;
  cursor: pointer;
  color: white;
  font-family: "Fjalla One";
  font-size: 12pt;
  outline: none;
}
.company-board h2 {
  font-weight: 300;
  margin-bottom: 5px;
}
.company-board .label {
  display: inline-block;
  font-weight: bold;
  margin-right: 10px;
}
.company-board .field {
  display: inline-block;
}
.login-backdrop {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background-color: #011;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.login-backdrop .login-form {
  position: relative;
  opacity: 1.0;
  top: 150px;
  width: 280px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  padding: 50px;
  border: solid black 5px;
  border-radius: 8px;
}
.login-backdrop .label {
  font-family: sans-serif;
  font-size: 16px;
  display: inline-block;
  width: 120px;
}
.login-backdrop input {
  width: 150px;
  border: solid black 1px;
  border-radius: 4px;
  font-size: 16px;
}
.login-backdrop button {
  margin: 12px;
  border-radius: 5px;
  font-size: 13px;
  background-color: #bcd;
  float: right;
}
.invoicing-board {
  position: absolute;
  top: 80px;
  left: 200px;
  right: 20px;
  bottom: 20px;
  min-height: 500px;
  background-color: none;
  border-radius: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.invoicing-board h1 {
  margin-top: 0;
  margin-bottom: 30px;
}
.invoicing-board button {
  background-color: #FFD30D;
  height: 42px;
  width: 160px;
  border-radius: 5px;
  border: none;
  margin: 4px;
  cursor: pointer;
  color: white;
  font-family: "Fjalla One";
  font-size: 12pt;
  outline: none;
}
.useradmin-board {
  position: absolute;
  top: 80px;
  left: 200px;
  right: 20px;
  bottom: 20px;
  min-height: 500px;
  background-color: none;
  border-radius: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: "Roboto Slab";
  font-weight: 100;
  font-size: 12pt;
}
.useradmin-board h1 {
  margin-top: 0;
  margin-bottom: 30px;
}
.useradmin-board button {
  background-color: #FFD30D;
  height: 42px;
  width: 160px;
  border-radius: 5px;
  border: none;
  margin: 4px;
  cursor: pointer;
  color: white;
  font-family: "Fjalla One";
  font-size: 12pt;
  outline: none;
}
.useradmin-board .portrait {
  width: 60px;
  border-radius: 30px;
  position: relative;
  top: 68px;
}
.useradmin-board .full-name {
  font-size: 24pt;
  font-weight: 100;
  position: relative;
  left: 80px;
}
.useradmin-board .username {
  position: relative;
  left: 80px;
}
.useradmin-board .modules {
  margin-top: 8px;
}
.useradmin-board .label {
  font-weight: bold;
  margin-top: 8px;
}
.useradmin-board .companies {
  font-weight: 100;
}
.setup-board {
  position: absolute;
  top: 80px;
  left: 200px;
  right: 20px;
  bottom: 20px;
  min-height: 500px;
  background-color: none;
  border-radius: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.setup-board h1 {
  margin-top: 0;
  margin-bottom: 30px;
}
.setup-board button {
  background-color: #FFD30D;
  height: 42px;
  width: 160px;
  border-radius: 5px;
  border: none;
  margin: 4px;
  cursor: pointer;
  color: white;
  font-family: "Fjalla One";
  font-size: 12pt;
  outline: none;
}
.moms-report {
  display: inline-block;
  font-size: 12px;
  position: relative;
  top: 10px;
}
.moms-report .moms-outerblock {
  margin: 0;
  background-color: #d0d0d0;
  padding: 4px;
}
.moms-report .moms-block {
  margin: 2px;
  display: inline-block;
  width: 400px;
  margin-left: 20px;
  vertical-align: top;
}
.moms-report .moms-subhead {
  background-color: lightblue;
  font-weight: bold;
  margin-top: 5px;
}
.moms-report .moms-row {
  display: block;
  margin-left: 10px;
}
.moms-report .moms-cell {
  display: inline-block;
  width: 220px;
  vertical-align: top;
  margin-top: 5px;
}
.moms-report .moms-numcell {
  display: inline-block;
  vertical-align: top;
  margin-top: 5px;
  min-width: 30px;
  margin-left: 20px;
  text-align: right;
}
.moms-report .moms-icell {
  vertical-align: top;
  display: inline-block;
  border: solid grey 1px;
  height: 14px;
  width: 80px;
  margin-left: 20px;
  margin-top: 5px;
  padding: 1px;
  text-align: right;
  background-color: white;
}
.collection-board {
  position: absolute;
  top: 80px;
  left: 200px;
  right: 20px;
  bottom: 20px;
  min-height: 500px;
  background-color: none;
  border-radius: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.collection-board h1 {
  margin-top: 0;
  margin-bottom: 30px;
}
.collection-board button {
  background-color: #FFD30D;
  height: 42px;
  width: 160px;
  border-radius: 5px;
  border: none;
  margin: 4px;
  cursor: pointer;
  color: white;
  font-family: "Fjalla One";
  font-size: 12pt;
  outline: none;
}
.collection-board .control {
  height: 200px;
}
.collection-board th:nth-child(1) {
  width: 230px;
}
fieldset {
  border: solid white 1px;
  border-radius: 5px;
}
fieldset ledger {
  color: white;
}
