body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
}

input[type="file"] {
  display: none;
}

.file-label {
  margin: 0;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.flex-2 {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.flex-0 {
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
}

.no-wrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.hot-spot {
  cursor: pointer;
}

.no-pointers {
  pointer-events: none;
}

.restore-pointers {
  pointer-events: all;
}

.btn.no-padding {
  padding: 0;
}

.btn.btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #ffc107;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.shadow, .main-container sidebar {
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.3);
}

#main-loader {
  display: none;
  background-image: url("loader.gif");
  background-repeat: no-repeat;
  background-position: center;
}

#login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
}

#login #code-area {
  height: 50px;
}

#login #code-area .code {
  height: 3px;
  width: 50px;
  background-color: lightgray;
}

#login #code-area .code.active {
  height: 50px;
  border-radius: 50%;
  background-color: #ffc107;
}

#keyboard .keyboard-key {
  background-color: lightgray;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  color: black;
}

.main-container {
  background: lightgray;
  color: black;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 1fr;
      grid-template-columns: 25% 1fr;
  -ms-grid-rows: 40px 1fr;
      grid-template-rows: 40px 1fr;
}

.main-container.hidden {
  display: none !important;
}

.main-container header {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1 / 2;
  grid-column: 1 / -1;
  background-color: #f8f9fa;
  z-index: 2;
}

.main-container header .left {
  min-width: 25%;
}

.main-container sidebar {
  grid-row: 2 / -1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  background: white;
  border-right: 1px solid #cacaca;
  z-index: 1;
}

.main-container sidebar ul {
  height: calc(100vh - 40px);
  overflow: scroll;
  padding: 0;
  list-style: none;
}

.main-container sidebar ul li {
  height: 90px;
  background-color: white;
  padding: 20px;
  border-radius: 2px;
  border-bottom: 1px solid lightgray;
}

.main-container sidebar ul li .account {
  font-size: 0.8rem;
}

.main-container sidebar ul li.active {
  background-color: #d5d5d5;
}

.main-container sidebar ul li.ghost .labels {
  opacity: .5;
}

.main-container sidebar ul li.generator {
  border-left: 10px solid #ffc107;
  background-color: #ffc107;
  height: 40px;
}

.main-container main {
  grid-row: 2 / -1;
  grid-column: 2 / -1;
  background-color: white;
  height: calc(100vh - 40px);
  overflow: scroll;
}

.main-container main .data-row {
  cursor: pointer;
  background-color: white;
  border-bottom: 1px solid lightgray;
}

.main-container main .note {
  border-left: 1px solid gray;
}

.main-container main .info-row {
  background-color: white;
  border-bottom: 2px solid lightgray;
}

.main-container main .header-row {
  background-color: white;
  height: 20px;
  border-bottom: 4px solid lightgray;
}

.main-container main .generate {
  background: transparent;
  border: 0;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.main-container main .generate .plus {
  background-color: #ffc107;
  border-radius: 25px;
  width: 50px;
  height: 50px;
}

.main-container .popup {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.main-container .popup .popup-content {
  border: 2px solid lightgray;
  width: 800px;
  background-color: #f8f9fa;
}

.main-container .popup .popup-content input {
  background-color: #f8f9fa;
  outline: none;
  border: none;
  border-bottom: 1px solid gray;
}

.main-container .popup .description {
  color: gray;
}

@media (max-width: 800px) {
  .main-container {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    -ms-grid-rows: 40px 1fr;
        grid-template-rows: 40px 1fr;
  }
  #main-area {
    display: none;
  }
}
/*# sourceMappingURL=style7.css.map */