.clearfix::after {
  content: "";
  clear: both;
  display: block; }

a {
  color: #17a2b8; }
  a:hover {
    color: #17a2b8; }

.nav-link.dropdown-toggle:after {
  vertical-align: middle; }

.btn {
  border-radius: 3px;
  border-color: rgba(0, 0, 0, 0.2); }
  .btn.btn-success {
    background-color: #58d678; }
    .btn.btn-success:hover {
      background-color: #58d678;
      box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.25); }
  .btn.btn-info:hover {
    background-color: #17a2b8;
    box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.25); }
  .btn.btn-warning {
    background-color: #ffd070; }
    .btn.btn-warning:hover {
      background-color: #ffd070;
      box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.25); }
  .btn.btn-danger {
    background-color: #e9635f; }
    .btn.btn-danger:hover {
      background-color: #e9635f;
      box-shadow: inset 0 0 3px 0 rgba(0, 0, 0, 0.25); }
  .btn:focus {
    box-shadow: none; }
  .btn:hover {
    border-color: rgba(0, 0, 0, 0.3); }

.badge.badge-success {
  background-color: #58d678; }
.badge.badge-warning {
  color: white;
  background-color: #ffd070; }
.badge.badge-danger {
  background-color: #e9635f; }
.badge.badge-danger-warning {
  background-color: darkorange;
  color: white; }

.bg-success {
  background-color: #58d678; }

.bg-info {
  background-color: #17a2b8; }

.bg-warning {
  background-color: #ffd070; }

.bg-danger {
  background-color: #e9635f; }

.dropdown-item:active {
  background-color: #17a2b8; }

.nav-tabs .nav-link {
  color: #1e1e1e; }
  .nav-tabs .nav-link.active {
    background-color: inherit;
    border-color: #dee2e6;
    box-shadow: inset 0 0 10px 0 rgba(0, 0, 0, 0.1);
    font-weight: 500; }

.pagination .page-item .page-link {
  color: #17a2b8; }
  .pagination .page-item .page-link:focus {
    box-shadow: none; }
.pagination .page-item.active .page-link {
  color: white;
  background-color: #17a2b8;
  border-color: #17a2b8;
  box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.25); }
.pagination .page-item.disabled .page-link {
  color: #6c757d; }

.text-warning {
  color: #ffd070 !important; }

table th.money, table td.money {
  text-align: right;
  white-space: nowrap; }
table td.actions {
  white-space: nowrap;
  width: 1%;
  padding: 0.75rem 0.25rem; }
  table td.actions a {
    text-decoration: none;
    vertical-align: middle; }

form label {
  display: block; }
form textarea {
  min-height: 200px; }
form ul.errors {
  list-style: none;
  padding: 0;
  color: #e9635f;
  display: none; }
  form ul.errors li:not(:last-child) {
    margin-bottom: 1rem; }
form .additional-fields .heading {
  cursor: pointer; }
  form .additional-fields .heading:after {
    content: '\f13a';
    font-family: 'Font Awesome 5 Free', sans-serif;
    margin-left: .5rem;
    vertical-align: middle; }
form .additional-fields .fields {
  display: none; }
form .additional-fields.collapsed .heading:after {
  content: '\f138'; }
form .form-check label {
  display: inline-block; }
form .form-check input.form-check-input {
  position: relative; }
form .select2-container {
  max-width: none; }

/*.select2 {
	display: block;
}*/
.select2-container {
  max-width: 350px; }
  .select2-container .select2-results .select2-results__options {
    max-height: 300px;
    overflow-y: auto; }
  .select2-container .select2-selection--single .select2-selection__clear {
    padding: 0;
    text-align: center;
    margin: .5rem;
    line-height: 1em; }

.note-editor {
  width: 100%; }
  .note-editor .note-editing-area .note-editable {
    min-height: 200px; }

@media print {
  @page {
    size: auto; } }
@media print {
  header {
    display: none; } }

.red {
  color: #be2626; }

#screen-message {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1rem;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.25);
  color: white;
  display: none; }
  #screen-message p {
    margin: 0; }
  #screen-message.info {
    color: #17a2b8; }
  #screen-message.warning {
    color: #ffd070; }
  #screen-message.success {
    color: #58d678; }
  #screen-message.danger {
    color: #e9635f; }
  #screen-message.top {
    left: 50%;
    top: 3rem;
    transform: translate(-50%, 0); }
  #screen-message.bottom {
    left: 50%;
    bottom: 3rem;
    transform: translate(-50%, 0); }
  #screen-message.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }
  #screen-message.right {
    top: 50%;
    right: 3rem;
    transform: translate(0, -50%); }
  #screen-message.left {
    top: 50%;
    left: 3rem;
    transform: translate(0, -50%); }

#content {
  padding: 1rem; }
  #content .status-badges {
    float: right;
    clear: right; }
    #content .status-badges .badge {
      cursor: pointer; }
      #content .status-badges .badge.badge-secondary.active:before {
        border-top-color: #6c757d; }
      #content .status-badges .badge.badge-success.active:before {
        border-top-color: #58d678; }
      #content .status-badges .badge.badge-info.active:before {
        border-top-color: #17a2b8; }
      #content .status-badges .badge.badge-warning.active:before {
        border-top-color: #ffd070; }
      #content .status-badges .badge.badge-danger.active:before {
        border-top-color: #e9635f; }
      #content .status-badges .badge.badge-danger-warning.active:before {
        border-top-color: darkorange; }
      #content .status-badges .badge.active {
        position: relative; }
        #content .status-badges .badge.active:before {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translate(-50%, 100%);
          width: 0;
          height: 0;
          border-left: 7px solid transparent;
          border-right: 7px solid transparent;
          border-top: 7px solid #17a2b8; }
  #content #document-details table td .description {
    font-size: 10pt;
    margin: 0; }
  #content #document-details table td .sort-action {
    display: inline-block; }
  #content #invoice-details table td .description {
    font-size: 10pt;
    margin: 0; }
  #content #invoice-details table td .sort-action {
    display: inline-block;
    position: relative;
    height: 20px;
    width: 20px; }
    #content #invoice-details table td .sort-action a {
      position: absolute;
      height: 10px;
      left: 0;
      top: 8px; }
    #content #invoice-details table td .sort-action a:first-child {
      top: 0; }
  #content #invoices .pagination-container tr.canceled {
    text-decoration: line-through; }
  @media print {
    #content #pending .customer h5 {
      margin-bottom: .5rem; } }
  #content #pending .customer:not(:last-child) {
    margin-bottom: 3rem; }
  #content #payments table tr.expensed, #content #delcredere table tr.expensed {
    opacity: .5; }
  #content #customers #customer-details {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem; }
    #content #customers #customer-details .block {
      padding: 1rem; }
      #content #customers #customer-details .block table.info {
        width: 100%; }
        #content #customers #customer-details .block table.info th, #content #customers #customer-details .block table.info td {
          padding: .25rem 0; }
        #content #customers #customer-details .block table.info th {
          padding-right: 1rem; }
        #content #customers #customer-details .block table.info td p {
          margin: 0; }
  #content .dashboard-wrapper {
    margin-bottom: 20px; }
  #content .dashboard-logo {
    float: right; }
    #content .dashboard-logo img {
      max-width: 620px; }
  #content .panel {
    background-color: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 10px -5px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    padding: 1rem;
    margin: 0 auto; }
    #content .panel .header {
      position: relative;
      display: flex;
      padding-bottom: 1rem;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      margin-bottom: 1rem; }
      #content .panel .header h1, #content .panel .header h2, #content .panel .header h3, #content .panel .header h4, #content .panel .header h5, #content .panel .header h6 {
        margin: 0; }
      @media print {
        #content .panel .header {
          display: none; } }
      #content .panel .header .right {
        display: flex;
        margin-left: auto;
        align-items: center; }
      #content .panel .header + .sub-header {
        margin-top: -1rem;
        margin-bottom: 1rem; }
    #content .panel .sub-header {
      display: flex;
      font-size: 10pt;
      margin-bottom: 1rem; }
      #content .panel .sub-header .right {
        margin-left: auto; }
    #content .panel.panel-md {
      max-width: 800px; }
    #content .panel.panel-sm {
      max-width: 600px; }

/*# sourceMappingURL=style.css.map */
