body {
  background-color: var(--bs-light);
}

main {
  padding: 20px;
}

a {
  text-decoration: none;
}

.h1-actions-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.login-card {
  max-width: 500px;
  margin: 50px auto auto auto;
}

@media screen and (max-width: 500px) {
  .login-card {
    height: 100vh;
    margin: 0;
  }
}
#sidebar {
  width: 200px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  flex-shrink: 0;
  position: fixed;
  height: 100%;
}
#sidebar a, #sidebar .a {
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}
#sidebar a:hover, #sidebar .a:hover {
  color: white;
}
#sidebar #sidebar-content {
  padding: 10px 0 10px 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
#sidebar #sidebar-content ul {
  margin: 8px 0 8px 0;
  padding: 0;
}
#sidebar #sidebar-content ul li {
  list-style-type: none;
  padding: 8px 20px 8px 20px;
  margin: 0;
  font-size: 20px;
}
#sidebar #sidebar-content ul li a {
  padding: 8px 0 8px 0;
}
#sidebar #sidebar-content ul li.active {
  background-color: var(--bs-primary);
}
#sidebar #sidebar-content ul li.active a {
  color: white;
}
#sidebar #sidebar-content .rolldown {
  padding: 0;
}
#sidebar #sidebar-content .rolldown div {
  padding: 8px 20px 8px 20px;
}
#sidebar #sidebar-content .rolldown li {
  padding: 8px 20px 8px 40px;
}
#sidebar #sidebar-content .rolldown .closed {
  display: none;
}
#sidebar #sidebar-content .sidebar-end {
  text-align: center;
}
#sidebar .overlay {
  display: none;
  min-height: 500px;
}
#sidebar #hamburger-input {
  display: none !important;
}

@media screen and (min-width: 501px) {
  main {
    margin-left: 200px;
  }
  #hamburger-input-label {
    display: none;
  }
  #sidebar {
    min-height: 100vh;
    background-color: var(--bs-dark);
  }
  #sidebar #sidebar-content {
    display: flex;
    min-height: calc(100vh - 20px);
  }
}
@media screen and (max-width: 500px) {
  main {
    padding-top: 77px;
  }
  #hamburger-input-label {
    z-index: 9;
    margin-left: 20px;
    margin-top: 10px;
  }
  #sidebar {
    max-width: 200px;
    position: absolute;
  }
  #sidebar-content {
    display: none;
    min-height: calc(100vh - 66px);
  }
  #hamburger-input:checked ~ #sidebar-content {
    display: flex;
    z-index: 5;
  }
  #hamburger-input:checked ~ .overlay {
    width: 200px;
    height: 100vh;
    background-color: var(--bs-dark);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
}
#hamburger-wrapper {
  position: relative;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

#hamburger-icon {
  position: absolute;
  top: 0;
  right: 0.2rem;
  left: 0.2rem;
  width: auto;
  height: 100%;
}

/* MENU ICON */
.hamburger-lines,
.hamburger-lines:before,
.hamburger-lines:after {
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  background: #FFFFFF;
  transition: 0.3s;
}

.hamburger-lines {
  height: 3px;
  margin-top: -2px;
  top: 50%;
}

.hamburger-lines:before,
.hamburger-lines:after {
  content: "";
  height: 100%;
  /* Try different values here: .25rem, .5rem, .2rem, 5rem, 10rem... */
  transform-origin: 5rem center;
}

.hamburger-lines:before {
  top: 8px;
}

.hamburger-lines:after {
  top: -8px;
}

/* CLOSE ICON */
#hamburger-input:checked ~ label .hamburger-lines {
  background: transparent;
}

#hamburger-input:checked ~ label .hamburger-lines:before,
#hamburger-input:checked ~ label .hamburger-lines:after {
  top: 0;
  transform-origin: 50% 50%;
}

#hamburger-input:checked ~ label .hamburger-lines:before {
  transform: rotate3d(0, 0, 1, 45deg);
}

#hamburger-input:checked ~ label .hamburger-lines:after {
  transform: rotate3d(0, 0, 1, -45deg);
}

.list-card-body {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
}

.checkbox-col {
  width: 20px;
  flex-grow: 0;
  flex-shrink: 0;
}

.list-rows-container {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  min-width: 0;
}

.list-card-flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  min-width: 0;
}
.list-card-flex-row > a, .list-card-flex-row > div {
  flex-grow: 0;
  flex-shrink: 1;
  min-width: 0;
}

.list-link {
  color: inherit;
  font-weight: 700;
}
.list-link:hover {
  color: var(--bs-primary);
}

.select-all-delete-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.list-card-action-group {
  text-align: right;
}

.list-invoices-number, .list-invoices-dates, .list-invoices-total, .list-invoices-in-fakturoid, .list-invoices-status {
  flex-basis: calc(20% - 27px);
}

.list-invoices-action-group {
  width: 110px;
}

.list-card-invoice-overdue {
  background: var(--bs-danger-bg-subtle);
}

.list-display-40 {
  width: 40%;
}

.list-display-30 {
  width: 30%;
}

.list-display-25 {
  width: 25%;
}

.list-display-20 {
  width: 20%;
}

.list-display-15 {
  width: 15%;
}

.list-client-action-group, .list-service-action-group, .list-transaction-action-group, .list-client-service-action-group {
  width: 70px;
}

.list-service-name, .list-service-automatic-transactions, .list-service-tags {
  width: calc(33% - 30px);
}

.list-transaction2-date, .list-transaction2-currency, .list-transaction2-client-service, .list-transaction2-in-invoice {
  width: 18%;
}

.list-country-action-group {
  width: 250px;
}

.list-add-transaction-action-group {
  width: 250px;
}

.pagination-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pagination-wrapper .disabled .page-link {
  background-color: white;
}

.detail-label-value {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.detail-label-value:last-child {
  margin-bottom: 0;
}

.detail-label {
  color: var(--bs-gray);
  width: 15em;
  flex-grow: 0;
  flex-shrink: 0;
}

.detail-value {
  flex-grow: 1;
  flex-shrink: 0;
  min-width: 10em;
}

.detail-tabs .nav-link.active {
  background-color: var(--bs-light);
  border-bottom-color: var(--bs-light);
}

.select2 {
  width: 100% !important;
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-image: var(--bs-form-select-bg-img) !important;
  background-repeat: no-repeat;
  background-size: 12px 16px;
  background-position-x: calc(100% - 14px);
  background-position-y: 50%;
}
.select2 .select2-selection {
  border: var(--bs-border-width) solid var(--bs-border-color) !important;
  width: 100% !important;
  height: 38px !important;
  border-radius: 6px !important;
  padding-left: 4px !important;
  padding-top: 4px !important;
  padding-right: 13px !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.select2 .select2-selection:focus {
  border-color: rgb(134, 183, 254) !important;
  outline: 0 !important;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25) !important;
}
.select2 .select2-selection__arrow {
  display: none;
}

.select2-search__field {
  border: var(--bs-border-width) solid var(--bs-border-color) !important;
  padding: 6px !important;
}
.select2-search__field:focus-visible {
  border-color: rgb(134, 183, 254) !important;
  outline: 0 !important;
}

.delete-checkbox {
  visibility: hidden;
}

.delete-checkbox + .delete-label .unchecked {
  display: block;
}
.delete-checkbox + .delete-label .checked {
  display: none;
}

.delete-checkbox:checked + .delete-label .unchecked {
  display: none;
}
.delete-checkbox:checked + .delete-label .checked {
  display: block;
}

.deleted-completely {
  display: none;
}

.aligned-submit-button {
  margin-top: 2rem !important;
}

.client-service-tag {
  background-color: #0befa3;
}

.service-tag {
  background-color: #FFDF64;
}

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