html {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  height: 100%; }

* {
  font-family: 'Calibre';
  box-sizing: border-box;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  *:focus {
    outline: none; }

ul:not(.raw) {
  list-style: none;
  margin: 0;
  padding: 0; }

input {
  border: none; }

h1, h2, h3, h4, h5, h6 {
  margin: 0; }

a {
  text-decoration: none;
  color: inherit; }

a.fill {
  display: inline-block;
  width: 100%;
  height: 100%; }

body {
  height: 100%;
  background-color: #FFFFFF;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  min-width: 320px; }

#app {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.button {
  cursor: pointer; }

/* * * * * * * * * * * * * * * * * * * * * * *
 * Device screen size
 * Usage: @include responsive(mobile) { ... }
 *        @include responsive(transition){ ... }
 *        @include responsive(desktop) { ... }
 * * * * * * * * * * * * * * * * * * * * * * */
/* * * * * * * * * * * * * * * * * * * * * * *
 * Helpers / Functions
 * Usage:
 *        @include responsive(mobile){ ... }
 * * * * * * * * * * * * * * * * * * * * * * */
body.no-scroll {
  overflow-y: hidden; }

.left-menu.open .overlay {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms; }

.left-menu.open .menu-container {
  -webkit-transform: translateX(0%);
          transform: translateX(0%); }

.left-menu .overlay {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  -webkit-transform: translate(100%, 0px);
          transform: translate(100%, 0px);
  -webkit-transition: opacity 300ms, -webkit-transform 0s 0.3s;
  transition: opacity 300ms, -webkit-transform 0s 0.3s;
  transition: opacity 300ms, transform 0s 0.3s;
  transition: opacity 300ms, transform 0s 0.3s, -webkit-transform 0s 0.3s;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0; }

.left-menu .menu-container {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 270px;
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
  -webkit-transform: translateX(-105%);
          transform: translateX(-105%);
  background-color: #FFFFFF;
  height: 100vh;
  overflow-y: auto; }

.left-menu .menu {
  padding: 10px 21px 10px 25px; }

.left-menu .item {
  position: relative; }
  .left-menu .item a {
    padding: 10px 0; }
    .left-menu .item a.current-link {
      color: #8C64A0; }
.left-menu-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }
  .left-menu-container > .content-container {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }

.left-menu {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 300px;
  background-color: #343D50;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #9FA8BA; }
  .left-menu > .header {
    padding: 0px 18px;
    height: 40px;
    line-height: 40px;
    background-color: #407BFF;
    color: #ffffff;
    letter-spacing: 1.1px; }
  .left-menu .section {
    padding: 20px 0px; }
  .left-menu .section-header {
    color: #95989A;
    font-size: 10px;
    padding: 4px 18px;
    font-weight: bold;
    text-transform: uppercase; }
  .left-menu .section-link {
    padding: 12px 18px;
    cursor: pointer; }
    .left-menu .section-link:hover {
      background-color: #475066;
      color: #ffffff; }
.checkbox {
  width: 20px;
  height: 20px;
  margin: auto;
  position: relative; }
  .checkbox label {
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    border-radius: 4px;
    border: 1px solid #C9D3D9; }
    .checkbox label:after {
      content: '';
      width: 8px;
      height: 4px;
      position: absolute;
      top: 5px;
      left: 5px;
      border: 1px solid #0093FF;
      border-top: none;
      border-right: none;
      background: transparent;
      opacity: 0;
      -webkit-transform: rotate(-45deg) scale(1.3);
              transform: rotate(-45deg) scale(1.3); }
    .checkbox label:hover::after {
      opacity: 0.3; }
  .checkbox input[type=checkbox] {
    visibility: hidden; }
    .checkbox input[type=checkbox]:checked + label:after {
      opacity: 1; }
.list-table {
  width: 100%;
  display: table;
  border-radius: 5px;
  background-color: #ffffff;
  border: 1px solid #D5D5D5; }
  .list-table .row {
    display: table-row; }
    .list-table .row:hover, .list-table .row.selected {
      cursor: pointer;
      background-color: #EFF6FA; }
    .list-table .row .item {
      padding: 16px 5px;
      display: table-cell;
      border-bottom: 0.5px solid #D5D5D5; }
      .list-table .row .item .checkbox {
        width: 20px;
        height: 20px;
        margin: auto;
        position: relative;
        margin-left: 15px; }
        .list-table .row .item .checkbox label {
          top: 0;
          left: 0;
          width: 20px;
          height: 20px;
          cursor: pointer;
          position: absolute;
          border-radius: 4px;
          border: 1px solid #C9D3D9; }
          .list-table .row .item .checkbox label:after {
            content: '';
            width: 8px;
            height: 4px;
            position: absolute;
            top: 5px;
            left: 5px;
            border: 1px solid #0093FF;
            border-top: none;
            border-right: none;
            background: transparent;
            opacity: 0;
            -webkit-transform: rotate(-45deg) scale(1.3);
                    transform: rotate(-45deg) scale(1.3); }
          .list-table .row .item .checkbox label:hover::after {
            opacity: 0.3; }
        .list-table .row .item .checkbox input[type=checkbox] {
          visibility: hidden; }
          .list-table .row .item .checkbox input[type=checkbox]:checked + label:after {
            opacity: 1; }
    .list-table .row.header:hover {
      background-color: transparent; }
    .list-table .row.header .item {
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
      font-weight: bold;
      text-transform: capitalize; }
    .list-table .row.header .sort {
      cursor: pointer;
      position: relative; }
      .list-table .row.header .sort:after {
        width: 0;
        height: 0;
        content: ' ';
        top: calc(50% - 2px);
        position: absolute;
        margin-left: 5px;
        border-radius: 10px;
        border-top: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid #95989A; }
      .list-table .row.header .sort.descending:after {
        border-bottom: 0;
        border-top: 5px solid #95989A; }
/*# sourceMappingURL=bundle.css.map*/