@charset "UTF-8";
*, *::after, *::before {
  box-sizing: border-box; }

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent; }

body {
  margin: 0;
  font-family: sans-serif;
  font-size: 1.6em;
  font-weight: 300;
  letter-spacing: .01em;
  line-height: 1.6;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }

iframe {
  border: 0; }

main {
  display: block; }

ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0; }

li {
  display: block; }

dl {
  margin-top: 0;
  margin-bottom: 0; }

dd {
  margin-left: 0; }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: inherit; }

blockquote {
  margin: 0;
  padding: 0; }

p {
  margin-top: 0;
  margin-bottom: 0; }

sup {
  position: relative;
  top: -.5em;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0; }

strong {
  font-weight: bold; }

figure {
  margin: 0; }

img {
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle; }

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

button {
  border: 0;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-transform: inherit;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
  overflow: visible; }

::-moz-focus-inner {
  border: 0;
  padding: 0; }

:focus {
  outline: 0; }

svg:not(:root) {
  overflow: hidden; }

hr {
  box-sizing: content-box;
  height: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

hr {
  margin: 2.33em 0;
  background: #ddd;
  border: none;
  height: 1px; }

ol {
  list-style: decimal outside;
  margin: 1em 2em; }

ul {
  list-style: disc outside;
  margin: 1em 2em; }

ol > li, ul > li {
  display: list-item; }

.is-left {
  text-align: left; }

.is-centered {
  text-align: center; }

.is-right {
  text-align: right; }

.is-justified {
  text-align: justify; }

.is-uppercase {
  text-transform: uppercase; }

.is-lowercase {
  text-transform: lowercase; }

[disabled],
.is-disabled {
  cursor: disabled; }

.is-default {
  color: #506162; }

.is-primary {
  color: #15CA8F; }

.is-info {
  color: #5bc0de; }

.is-success {
  color: #15CA8F; }

.is-warning {
  color: #f0ad4e; }

.is-danger {
  color: #E02B5D; }

.is-light {
  color: #fff; }

.is-muted {
  color: #9c9c9c; }

.is-fixed {
  position: fixed; }

.is-fixed + .container {
  margin-top: 80px; }

@-webkit-keyframes spin-around {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes spin-around {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

.loader,
.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none; }
  .loader:after,
  .is-loading:after {
    -webkit-animation: spin-around 600ms infinite linear;
    animation: spin-around 600ms infinite linear;
    border: 1px solid #9c9c9c;
    border-width: 2px 0 2px 2px;
    border-color: transparent transparent #9c9c9c #9c9c9c;
    border-radius: 100%;
    content: "";
    display: block;
    height: 2rem;
    width: 2rem;
    left: 50%;
    top: 50%;
    margin-left: -8px;
    margin-top: -9px;
    position: absolute; }

.button {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  border: 0.2rem solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 3px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: transparent;
  border-color: white;
  color: #9caeaf; }
  .button + .button {
    margin-left: 5px; }
  .button:focus, .button:active:focus {
    outline: thin dotted;
    outline: 0px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
  .button:hover, .button:focus {
    border-color: #d5dcdc;
    color: #9caeaf;
    text-decoration: none; }
  .button:active {
    outline: 0; }
  .button.is-outlined {
    background: transparent !important;
    border-color: #f1f3f3;
    color: #506162; }
    .button.is-outlined:hover, .button.is-outlined:focus {
      border-color: #9caeaf;
      color: #506162; }
    .button.is-outlined.is-loading:after {
      border-color: transparent transparent white white !important; }
  .button.is-primary {
    background: #15CA8F;
    border-color: transparent;
    color: white; }
    .button.is-primary:hover, .button.is-primary:focus {
      background: #109c6e;
      border-color: transparent;
      color: white; }
    .button.is-primary:active {
      border-color: transparent; }
    .button.is-primary.is-outlined {
      border-color: #15CA8F;
      color: #15CA8F; }
      .button.is-primary.is-outlined:hover, .button.is-primary.is-outlined:focus {
        border-color: #109c6e;
        color: #109c6e; }
    .button.is-primary.is-loading:after {
      border-color: transparent transparent white white !important; }
  .button.is-info {
    background: #5bc0de;
    border-color: transparent;
    color: white; }
    .button.is-info:hover, .button.is-info:focus {
      background: #31b0d5;
      border-color: transparent;
      color: white; }
    .button.is-info:active {
      border-color: transparent; }
    .button.is-info.is-outlined {
      border-color: #5bc0de;
      color: #5bc0de; }
      .button.is-info.is-outlined:hover, .button.is-info.is-outlined:focus {
        border-color: #31b0d5;
        color: #31b0d5; }
    .button.is-info.is-loading:after {
      border-color: transparent transparent white white !important; }
  .button.is-success {
    background: #15CA8F;
    border-color: transparent;
    color: white; }
    .button.is-success:hover, .button.is-success:focus {
      background: #109c6e;
      border-color: transparent;
      color: white; }
    .button.is-success:active {
      border-color: transparent; }
    .button.is-success.is-outlined {
      border-color: #15CA8F;
      color: #15CA8F; }
      .button.is-success.is-outlined:hover, .button.is-success.is-outlined:focus {
        border-color: #109c6e;
        color: #109c6e; }
    .button.is-success.is-loading:after {
      border-color: transparent transparent white white !important; }
  .button.is-warning {
    background: #f0ad4e;
    border-color: transparent;
    color: white; }
    .button.is-warning:hover, .button.is-warning:focus {
      background: #ec971f;
      border-color: transparent;
      color: white; }
    .button.is-warning:active {
      border-color: transparent; }
    .button.is-warning.is-outlined {
      border-color: #f0ad4e;
      color: #f0ad4e; }
      .button.is-warning.is-outlined:hover, .button.is-warning.is-outlined:focus {
        border-color: #ec971f;
        color: #ec971f; }
    .button.is-warning.is-loading:after {
      border-color: transparent transparent white white !important; }
  .button.is-danger {
    background: #E02B5D;
    border-color: transparent;
    color: white; }
    .button.is-danger:hover, .button.is-danger:focus {
      background: #bc1c48;
      border-color: transparent;
      color: white; }
    .button.is-danger:active {
      border-color: transparent; }
    .button.is-danger.is-outlined {
      border-color: #E02B5D;
      color: #E02B5D; }
      .button.is-danger.is-outlined:hover, .button.is-danger.is-outlined:focus {
        border-color: #bc1c48;
        color: #bc1c48; }
    .button.is-danger.is-loading:after {
      border-color: transparent transparent white white !important; }
  .button.is-light {
    background: #fff;
    border-color: transparent;
    color: #fff; }
    .button.is-light:hover, .button.is-light:focus {
      background: #e6e6e6;
      border-color: transparent;
      color: #fff; }
    .button.is-light:active {
      border-color: transparent; }
    .button.is-light.is-outlined {
      border-color: #fff;
      color: #fff; }
      .button.is-light.is-outlined:hover, .button.is-light.is-outlined:focus {
        border-color: #e6e6e6;
        color: #e6e6e6; }
    .button.is-light.is-loading:after {
      border-color: transparent transparent #fff #fff !important; }
  .button.is-large {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 4px; }
  .button.is-small {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px; }
  .button.is-block {
    display: block;
    width: 100%; }
  .button.disabled, .button[disabled] {
    cursor: not-allowed;
    opacity: 0.5; }

.alert {
  padding: 1.6rem 2rem;
  font-size: 1.4rem;
  line-height: 1.5;
  border-radius: 3px;
  font-weight: normal;
  margin-bottom: 2rem;
  color: #5f5f5f;
  background-color: #f6f6f6; }
  .alert .title, .alert h1, .alert h2, .alert h3 {
    font-size: 2rem;
    margin: 0 0 1rem; }

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: #f3f3f3;
  color: #5f5f5f;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4rem;
  border-radius: 0.2rem;
  text-align: center;
  vertical-align: middle; }
  .badge + .badge {
    margin-left: 5px; }
  .badge .is-close {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 1.4rem;
    display: inline-block;
    font-size: 1.8rem;
    line-height: 1.2rem;
    float: right;
    margin: 0 -5px 0 5px;
    background: rgba(0, 0, 0, 0.1); }
    .badge .is-close:after {
      content: "×"; }

.alert.is-primary,
.badge.is-primary {
  color: white;
  background-color: #15CA8F; }

.alert.is-info,
.badge.is-info {
  color: white;
  background-color: #5bc0de; }

.alert.is-success,
.badge.is-success {
  color: white;
  background-color: #15CA8F; }

.alert.is-warning,
.badge.is-warning {
  color: white;
  background-color: #f0ad4e; }

.alert.is-danger,
.badge.is-danger {
  color: white;
  background-color: #E02B5D; }

.alert.is-light,
.badge.is-light {
  color: #fff;
  background-color: #fff; }

html, body {
  height: 100%; }

body {
  font-weight: 400;
  font-family: 'Lato'; }

h1 {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 200;
  text-align: left; }

h2.form-group-title {
  margin: -5px;
  font-size: 1.3em;
  margin-bottom: 20px;
  padding: 10px;
  text-align: center;
  color: #fff; }

.alert h1, .alert h2, .alert h3 {
  margin: 0 0 10px; }

.navbar-header {
  float: left; }

.navbar-right {
  float: right;
  margin: 0 -15px; }
  .navbar-right li {
    float: left; }
  .navbar-right .navbar-text {
    margin: 15px 5px; }
  .navbar-right > li > a {
    padding: 15px; }

.navbar {
  border-radius: 0 !important; }

.row.zero {
  margin: 0; }

td .btn {
  margin-right: 5px; }

.nav-sub {
  margin-bottom: 10px; }

.nav-sub li {
  color: #333;
  font-size: 12px; }

.nav-sub li a {
  padding: 5px 15px;
  color: #848484; }

iframe#modal-frame {
  width: 100% !important;
  height: 100%;
  border: none;
  min-height: 800px;
  min-width: 600px; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 700px; } }

.table thead th {
  cursor: pointer; }

tr {
  position: relative; }

tr input[type="checkbox"] {
  position: relative;
  width: auto; }

.row.well .form-group {
  margin-bottom: 0 !important; }

.filter-presets {
  margin: 5px 0; }

.row.well {
  margin: 0 0 15px;
  border: none; }

table a {
  font-weight: 400; }

.container.box-card {
  letter-spacing: 0.02em; }

hr {
  background: #f3f3f3 !important;
  border: none;
  height: 1px; }

.button {
  font-weight: 600 !important;
  letter-spacing: 0.02em; }

.table > tbody > tr > td.rel {
  vertical-align: middle; }
  .table > tbody > tr > td.rel .checkbox {
    position: relative;
    vertical-align: middle; }
    .table > tbody > tr > td.rel .checkbox input[type=checkbox] {
      margin-left: 0; }

.vmiddle {
  vertical-align: middle !important; }

.nav > li > a {
  font-weight: 400; }

.label + .label {
  margin: 2px;
  display: inline-block; }

.import-status span {
  display: inline-block;
  padding: .4em .8em; }

.import-status {
  margin-top: 5px; }

a.details-toggle {
  font-size: 110%; }

.import-list {
  margin-top: 10px; }

.report-lists ul {
  padding: 10px;
  margin: 10px 0;
  font-size: 90%;
  font-weight: 400;
  overflow-y: scroll;
  height: 200px; }

.report-lists ul li {
  padding: 2px 0; }

.nav.nav-stacked > li > a {
  font-weight: 400;
  border-left: 3px solid transparent; }
  .nav.nav-stacked > li > a:focus, .nav.nav-stacked > li > a:hover {
    text-decoration: none;
    background-color: transparent;
    border-left-color: #04b38c; }

.form-control {
  border: 2px solid #ccc;
  font-weight: 600; }

.form {
  margin-bottom: 20px; }

button,
input[type="submit"],
input[type="button"] {
  width: auto;
  min-width: 120px; }

.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
  margin-left: 0; }

.reports-card {
  background: #f4f4f4;
  padding: 2px;
  margin-bottom: 30px; }
  .reports-card > a {
    color: inherit;
    padding: 10px 15px;
    display: block; }
    .reports-card > a:hover, .reports-card > a:focus {
      text-decoration: none; }
    .reports-card > a h3 {
      margin: 0;
      line-height: 1; }
  .reports-card table {
    margin: 0; }
    .reports-card table > td {
      vertical-align: middle !important; }
  .reports-card .table td {
    vertical-align: middle;
    border: none; }

.is-lowercase {
  text-transform: lowercase; }

.text-muted {
  color: #aaa; }

.balance {
  padding: 10px 20px;
  background: #04b38c;
  margin: 12px 0 0;
  color: #fff;
  border-radius: 3px;
  text-align: right;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.22); }
  .balance p {
    font-weight: 400;
    font-size: 1.4em;
    margin: 0; }
  .balance h3 {
    font-weight: 600;
    margin: 0;
    font-size: 2.4em;
    line-height: 1.3; }
  .balance small {
    font-weight: 400; }

.headings {
  padding: 0 15px; }

.tab-content .tab-pane > .row {
  margin-bottom: 20px; }

a.is-close {
  font-size: 3em;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: inline-block;
  float: right;
  text-align: center;
  color: inherit; }
  a.is-close:hover, a.is-close:focus {
    text-decoration: none; }

a:hover {
  text-decoration: none !important; }

input[type="file"] {
  display: block;
  border: 2px dashed #ccc;
  padding: 15px;
  -webkit-appearance: initial;
  color: #4d5d70;
  line-height: 1; }

.reports-card table a {
  color: inherit; }

.mce-btn button {
  min-height: 0;
  min-width: 0; }

.input-group.search {
  margin-top: -6px;
  display: block;
  position: relative; }

.input-group.search input {
  width: 100%;
  float: none;
  display: block;
  padding-right: 60px; }

.input-group.search .button {
  width: auto;
  min-width: 0;
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 2;
  border: none;
  min-height: 42px;
  height: 42px; }

.filter.badge:hover, .filter.badge:focus {
  color: #888; }

.filter.badge.is-success:hover {
  color: #fff; }

.reports-card-header {
  padding: 10px; }
  .reports-card-header a:last-child {
    float: right;
    display: inline-block; }
  .reports-card-header h3 {
    margin: 0; }
  .reports-card-header a:first-child {
    display: inline-block;
    width: 75%; }

/*# sourceMappingURL=app.css.map */
