﻿@charset "UTF-8";
/* #region Common */
h1 {
  font-size: 22px;
}

a {
  color: #000;
}
a:hover {
  color: #000;
}

table {
  width: 100%;
}
table td {
  padding: 10px;
}

.bottom-border {
  border-bottom: 1px solid #000;
}

.black {
  color: #000 !important;
}

.grey {
  color: #232121 !important;
}

.white {
  color: #FFF !important;
}

.milky {
  color: #DEECFE !important;
}

.lightgrey {
  color: #ddd !important;
}

input {
  width: 300px;
  border-radius: 0px !important;
  padding: 0.5rem !important;
}

.right-align {
  text-align: right !important;
}

.center-align {
  text-align: center;
}

.red {
  color: #e91c1c;
}

.green {
  color: #3eb532;
}

.amber {
  color: #db5510;
}

.bk-milky {
  background-color: #DEECFE;
}

.bk-white {
  background-color: #FFF;
}

.btn {
  background-color: #1056b2;
  color: white;
  font-size: inherit;
}
.btn:focus {
  background-color: #1056b2;
  color: white;
  border: none;
  box-shadow: none;
}

.btn:not(.btn-lg) {
  padding: 6px 15px;
  border-radius: 0px;
  height: 36.8px;
}

.form-select {
  font-size: inherit;
  border-radius: 0px;
}
.form-select:focus {
  box-shadow: none;
}

.form-control {
  max-width: 300px;
  font-size: inherit;
  border-radius: 0px;
  padding: 0.5rem !important;
}
.form-control:focus {
  box-shadow: none;
}
.form-control.invalid {
  outline: 1px solid #e91c1c;
}

.form-control:focus {
  box-shadow: none;
  border-color: #1056b2;
}

.validation-errors {
  color: #e91c1c;
}

.bold {
  font-weight: bold;
}

.bolder {
  font-weight: bolder;
}

/* #endregion Common */
body {
  padding: 0px;
  margin: 0px;
  font-size: 0.8rem;
  height: 100vh;
  overflow: hidden;
  /* Focus and hover styling */
  /*footer {
      background-color: $white;
  }*/
}
body .form input.form-control {
  max-width: 100%;
  padding: 1.5rem 0.75rem 1rem 0.8rem !important;
}
body a {
  text-decoration: none;
}
body a.navbar-brand img {
  width: 180px;
}
body .sr-only {
  position: absolute;
  top: -30em;
}
body table.sortable td,
body table.sortable th {
  padding: 0.125em 0.25em;
  width: 8em;
}
body table.sortable th {
  font-weight: bold;
  border-bottom: thin solid #888;
  position: relative;
}
body table.sortable th.no-sort {
  padding-top: 0.35em;
}
body table.sortable th:nth-child(5) {
  width: 10em;
}
body table.sortable th button {
  padding: 4px;
  margin: 1px;
  font-size: 100%;
  font-weight: bold;
  background: transparent;
  border: none;
  display: inline;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  text-align: left;
  outline: none;
  cursor: pointer;
}
body table.sortable th button span {
  position: absolute;
  right: 4px;
}
body table.sortable th[aria-sort=descending] span::after {
  content: "▼";
  color: currentcolor;
  font-size: 100%;
  top: 0;
}
body table.sortable th[aria-sort=ascending] span::after {
  content: "▲";
  color: currentcolor;
  font-size: 100%;
  top: 0;
}
body table.show-unsorted-icon th:not([aria-sort]) button span::after {
  content: "♢";
  color: currentcolor;
  font-size: 100%;
  position: relative;
  top: -3px;
  left: -4px;
}
body table.sortable td.num {
  text-align: right;
}
body table.sortable tbody tr:nth-child(odd) {
  background-color: #ddd;
}
body table.sortable th button:focus,
body table.sortable th button:hover {
  padding: 2px;
  border: 2px solid currentcolor;
  background-color: #e5f4ff;
}
body table.sortable th button:focus span,
body table.sortable th button:hover span {
  right: 2px;
}
body table.sortable th:not([aria-sort]) button:focus span::after,
body table.sortable th:not([aria-sort]) button:hover span::after {
  content: "▼";
  color: currentcolor;
  font-size: 100%;
  top: 0;
}
body header {
  /*background-color: $lightgrey;*/
}
body header nav .nav-item .btn.nav-link {
  background-color: transparent;
}
body header nav .nav-item i.fa {
  font-size: 22px;
}
body > div.body-container {
  /*height: calc(100% - 180px);*/
  height: 100%;
  padding: 0px;
}
body > div.body-container.home {
  height: calc(100vh - 60px);
  align-items: center;
  display: grid;
}
body > div.body-container.home main {
  height: auto;
}
body > div.body-container main {
  height: 100%;
}
body > div.body-container main div {
  /*@media screen and (max-width: 575px) {
      &.nav-col {
          max-width: 110px;
      }
  }*/
}
body > div.body-container main div.row.prim {
  margin: 0px;
  height: 100%;
}
body > div.body-container main div.nav-col {
  background-color: #1056b2;
  height: 100%;
  position: relative;
  color: #DEECFE;
}
body > div.body-container main div.nav-col #actionmenu {
  display: none;
}
@media screen and (max-width: 575px) {
  body > div.body-container main div.nav-col {
    max-width: 150px !important;
    position: absolute;
    z-index: 1;
    width: fit-content;
  }
  body > div.body-container main div.nav-col #actionmenu {
    display: block;
  }
  body > div.body-container main div.nav-col.show {
    display: block;
  }
  body > div.body-container main div.nav-col.show ul {
    display: block;
  }
  body > div.body-container main div.nav-col.show div.footer {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  body > div.body-container main div.nav-col ul {
    display: none;
  }
}
body > div.body-container main div.nav-col ul li {
  margin-bottom: 10px;
}
body > div.body-container main div.nav-col div.footer {
  position: sticky;
  top: calc(100% - 60px);
  font-size: 90%;
  margin-bottom: 10px;
  left: 5px;
}
@media screen and (max-width: 575px) {
  body > div.body-container main div.nav-col div.footer {
    display: none;
  }
}
body > div.body-container main div.nav-col a {
  color: #FFF;
  position: relative;
  z-index: 1;
}
body > div.body-container main div.nav-col a:before {
  z-index: -1;
  content: "";
  display: block;
  background-color: #ffff33;
  width: 100%;
  height: 0px;
  position: absolute;
  left: 0;
  bottom: -3px;
}
body > div.body-container main div.nav-col a:hover:before {
  height: 3px;
}
body > div.body-container main div.nav-col a.active:before {
  height: 3px;
}
body > div.body-container main div.contents {
  background-color: #EEE;
  min-height: 600px;
  padding-right: 0px;
}
@media screen and (max-width: 575px) {
  body > div.body-container main div.contents {
    padding-left: 50px !important;
  }
}
body > div.body-container main div.contents .action.row {
  border-bottom: 2px solid #C34DCC;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
body > div.body-container main div.contents .action.row .search-box .form-control {
  display: inline;
}
body > div.body-container main div.contents .container-fluid {
  background-color: #FFF;
  max-height: calc(100vh - 125px);
  padding: 0px;
  overflow: hidden;
  overflow-y: scroll;
  padding: 10px;
  scrollbar-width: thin;
  height: 100%;
}
body > div.body-container main div.contents .container-fluid.homepage {
  background-color: transparent;
}
body > div.body-container main div.contents .invoice-list div.row .invoice-container {
  padding: 0px 14px 20px 13px;
  overflow-y: auto;
  max-height: calc(100vh - 125px);
  scrollbar-width: thin;
}
body > div.body-container main div.contents .invoice-list div.row .invoice-container > div {
  box-shadow: #000 0px 0px 2px;
  padding: 20px;
}
body > div.body-container main div.contents .invoice-list div.row .invoice-container > div:first-child {
  padding: 10px;
}
body > div.body-container main div.contents .invoice-list div.row .invoice-container .invoice-actions {
  border: 1px solid #000;
}
body > div.body-container main div.contents .invoice-list div.row .invoice-container .invoice-actions .btn {
  background-color: transparent;
  color: black;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
}
body > div.body-container main div.contents .invoice-list div.row .invoice-container .invoice-actions .btn.dropdown-toggle {
  border-color: black;
  border: 1px solid black;
  width: fit-content;
}
body > div.body-container main div.contents .invoice-list div.row .invoice-container .invoice-actions .btn:hover {
  background-color: #ddd;
}
body > div.body-container main div.contents .invoice-list div.row .invoice-container .invoice-actions .btn:focus {
  outline: none;
  background-color: #ddd;
}
body > div.body-container main div.contents .invoice-list div.row .invoice-container .invoice-actions .dropdown-menu {
  border-radius: 0px;
  left: 0px !important;
  background-color: #fefff7;
  width: max-content;
}
body > div.body-container main div.contents .invoice-list div.row .summary {
  background-color: #EEE;
  font-weight: bold;
  text-align: left;
  box-shadow: #000 0px 0px 2px;
}
body > div.body-container main div.contents .invoice-list div.row .summary table tr {
  border-bottom: 1px solid #232121;
}
body > div.body-container main div.contents .invoice-list div.row .summary table td {
  padding: 5px 10px;
}
body > div.body-container main div.contents .statements-list .actions .btn:not(.active) {
  background-color: #4b99ff;
}
body > div.body-container main div.contents .statements-list .list table thead {
  font-weight: bold;
  background-color: #232121;
  color: #FFF;
}
body > div.body-container main div.contents .statements-list .list table tbody tr:nth-child(even) {
  background-color: #EEE;
}
body > div.body-container main div.contents .statements-list .filters .btn {
  padding: 0.5rem !important;
  margin-bottom: 4px;
}
@media screen and (max-width: 575px) {
  body > div.body-container main div.showNew {
    overflow-x: auto;
  }
}
body > div.body-container main div.showNew table.new-client tr td {
  padding: 10px;
}
body > div.body-container main div.showNew .new-invoice tr td table tr {
  border: none;
  background-color: #FFF;
}
body > div.body-container main div.showNew .new-invoice tr td table tr:nth-child(even) {
  background-color: #EEE;
}
body > div.body-container main div.showNew .new-invoice tr td table tr:first-child {
  background-color: #000;
  color: #FFF;
}
body > div.body-container main div.showNew .new-invoice tr td table tr:first-child td {
  padding: 5px 10px;
}
body > div.body-container main div.showNew .new-invoice tr td table td {
  border: 1px solid #232121;
  padding: 0px;
  width: 150px;
}
body > div.body-container main div.showNew .new-invoice tr td table td:first-child {
  width: auto;
}
body > div.body-container main div.showNew .new-invoice tr td table td input {
  max-width: 100%;
  width: 100%;
  border-radius: 0px;
  background-color: transparent;
}
body > div.body-container main div.showNew .new-invoice tr td table td button:focus {
  box-shadow: 0px 0px 5px #e91c1c;
}
body > div.body-container main .manage-account .row > div {
  padding: 10px 20px;
  background-color: #FFF;
  margin-bottom: 10px;
}

.invoice-list .row div:first-child h5 {
  padding: 8px 0px;
}
.invoice-list .row div:first-child > div {
  /*border-top: 1px solid $lightgrey;*/
  /*button {
      border: none;
      border-radius: 0px;
      padding: 3px 10px;
      border-bottom: 1px solid $lightgrey;
      display: block;
      width: 100%;
      text-align: left;
      font-size: $fontSize;
      background-color: $lightergrey;
      color: $black;

      &:hover {
          background-color: $lightgrey;
      }

      &:focus {
          box-shadow: none;
      }

      strong {
          display: block;
          width: 100%;
      }

      div {
          text-transform: uppercase;
          font-size: 90%;
      }
  }*/
}
.invoice-list .row div.list {
  max-height: calc(100vh - 230px);
  overflow-y: auto;
  scrollbar-width: thin;
  border: 1px groove #C34DCC;
  padding: 10px;
}
@media screen and (max-width: 575px) {
  .invoice-list .row div.list {
    max-height: 300px;
  }
}
.invoice-list .row div.list button {
  text-align: left;
  font-size: 0.8rem;
  background-color: transparent;
  color: #000;
  border-radius: 0px;
  border-bottom: 1px solid #ddd;
  width: 100%;
  height: auto;
}
.invoice-list .row div.list button:hover {
  background-color: #ddd;
}
.invoice-list .row div.list button.bk-milky {
  background-color: #DEECFE;
}
.invoice-list .row div.list button:focus {
  box-shadow: none;
}
.invoice-list .row div.list button strong {
  display: block;
  width: 100%;
}
.invoice-list .row div.list button div {
  text-transform: uppercase;
  font-size: 90%;
}
.invoice-list .row div .actions {
  border-top: 1px solid #000;
  padding: 10px;
}
.invoice-list .filters {
  border: none;
  padding: 10px;
  text-align: center;
}
.invoice-list .filters label {
  margin: 0px 5px;
}
.invoice-list .filters label input {
  width: auto;
}

.payment-form table {
  width: auto;
}
.payment-form table tr:hover {
  background-color: #ddd;
}

.invoice-preview {
  display: block;
}
.invoice-preview div {
  border: none !important;
  font-size: 12px;
}
.invoice-preview .irow {
  font-size: 0;
  display: flex;
  margin-bottom: 30px;
}
.invoice-preview .irow > div {
  width: 50%;
  display: inline-block;
}
.invoice-preview .irow > div img {
  width: 200px;
  margin-bottom: 20px;
}
.invoice-preview .irow div p {
  margin: 0px;
}
.invoice-preview .irow div .name {
  font-weight: bold;
}
.invoice-preview .irow table {
  font-size: 10px;
}
.invoice-preview .irow table td, .invoice-preview .irow table th {
  padding: 10px;
}
.invoice-preview .irow table thead {
  background-color: #232121;
  color: #FFF;
}
.invoice-preview .irow table tr {
  border-bottom: 1px solid #232121;
}
.invoice-preview .irow table tr.noborder {
  border: 0px;
}
.invoice-preview .frow {
  width: 300px;
}
.invoice-preview .frow td {
  padding: 0px;
}
.invoice-preview .bk-light-grey {
  background-color: #ddd;
}
.invoice-preview .bold {
  font-weight: bold;
}
.invoice-preview .right {
  text-align: right;
}
.invoice-preview .x2 {
  font-size: 200%;
}
.invoice-preview .block {
  display: block;
}

.kpi-row {
  /*ul {
      width: 100%;
  }*/
}
.kpi-row div div {
  text-align: center;
  padding: 20px;
  position: relative;
  /*border: 1px solid $grey;*/
}
.kpi-row div div i {
  position: absolute;
  margin: auto;
  font-size: 1.5rem;
  top: 0;
  bottom: 0;
  display: block;
  height: fit-content;
  margin-left: 20px;
  color: #1056b2;
}
.kpi-row div div div {
  padding: 20px;
  background-color: #FFF;
}
.kpi-row h2 {
  font-size: 14px;
}
div.notifyjs-corner {
  margin: 0px;
  border-radius: 0px;
  width: 100%;
}
div.notifyjs-corner div {
  margin: 0px;
  background-image: none;
  padding: 0px;
  text-align: center;
  color: #000;
  background-color: #3eb532;
}
div.notifyjs-corner div span {
  padding: 10px;
  display: block;
}

div.editor-container .toolbar {
  background-color: #EEE;
}
div.editor-container .toolbar button {
  margin: 0px;
  border-radius: 0px;
  background-color: #EEE;
  color: #000;
}
div.editor-container .editor {
  min-height: 200px;
  border: 2px solid #232121;
  border-style: inset;
  padding: 5px;
}

.email-form .preview {
  background-color: #f8f9af;
}

.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 7px 10px;
  border: none;
  cursor: pointer;
}
.dropbtn:hover {
  background-color: #3e8e41;
}
.dropbtn:focus {
  background-color: #3e8e41;
}

#searchClient {
  box-sizing: border-box;
  background-position: 14px 12px;
  background-repeat: no-repeat;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
}
#searchClient:focus {
  outline: 3px solid #ddd;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f6f6f6;
  min-width: 230px;
  border: 1px solid #ddd;
  z-index: 1;
}
.dropdown-content span {
  text-align: left;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.dropdown-content span:hover {
  background-color: #f1f1f1;
}

.show {
  display: block;
}
