.login-form {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.login-form .login-content {
  padding: 20px;
  text-align: center;
}
.login-form .login-content form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.login-form button {
  margin-top: 20px;
}
.login-form .error {
  color: #c91212 !important;
}

.links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 80%;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .links-list {
    width: auto;
  }
}
.links-list li {
  display: flex;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.links-list li .link-name {
  align-items: center;
}
.links-list li .link-name p {
  margin: 0;
}
.links-list li .link-name .used {
  display: inline-block;
  padding: 5px;
  font-size: 14px;
  color: #1dad00;
  border: 1px solid #1dad00;
  border-radius: 4px;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .links-list li .link-name .used {
    margin-top: 10px;
    margin-left: 0px;
  }
}
.links-list li .link-name .details {
  margin-top: 10px;
}
.links-list li .link-name .details span {
  padding-left: 10px;
  padding-right: 10px;
  border-left: 1px solid #d6d6d6;
}
.links-list li .link-name div {
  display: flex;
}
@media (max-width: 768px) {
  .links-list li .link-name {
    display: block;
    font-size: 15px;
  }
}
.links-list li .list-btn {
  display: flex;
  margin-left: auto;
  cursor: pointer;
}
.links-list li .list-btn .sbtn {
  transition: all 0.3s ease;
  margin-right: 10px;
}
.links-list li .list-btn .copy:hover {
  color: #0f41e4;
}
.links-list li .list-btn .share:hover {
  color: #11b302;
}
.links-list li .list-btn .remove {
  margin-right: 0px;
}
.links-list li .list-btn .remove:hover {
  color: #e60000;
}
.links-list li:last-child {
  border: none;
}

.admin-buttons {
  display: flex;
}
.admin-buttons .logout {
  margin-left: 20px;
  background-color: #faadad;
}

.admin {
  width: 90%;
  margin: 0 auto;
  padding: 10px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(3, 3, 3, 0.137254902);
  animation: fadeIn 0.4s forwards;
  z-index: 2;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .modal-content {
  width: 550px;
  padding: 15px;
  box-sizing: border-box;
  background-color: white;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2588235294);
  user-select: auto;
}
@media (max-width: 768px) {
  .modal .modal-content {
    width: 100vw;
  }
}
.modal .modal-content .modal-header {
  display: flex;
  align-items: center;
}
.modal .modal-content .modal-close {
  margin-left: auto;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: black;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: none;
}
.modal .modal-content .modal-close svg {
  margin: 0;
}
.modal .modal-content .modal-close:hover {
  background-color: #f1f1f1;
}
.modal header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.modal header h2 {
  margin: 0;
}
.modal .modal-close {
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  padding: 0px;
  box-shadow: none;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: white;
}
.modal .modal-close svg {
  margin: 0;
}
.modal .modal-close:hover {
  background-color: #f1f1f1;
}
.modal .payment-modal {
  width: 1100px !important;
}
.modal .payment-modal .np-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
}
.modal .payment-modal .py-row {
  display: grid;
  grid-template-columns: 2fr 4fr;
}
.modal .payment-modal .invoice-choose .pay-inv {
  max-height: 300px;
  overflow: auto;
  list-style: none;
  padding: 0;
}
.modal .payment-modal .invoice-choose .pay-inv li {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 7px 10px;
  border-bottom: 1px solid #e9e8e8;
  transition: all 0.5s ease;
}
.modal .payment-modal .invoice-choose .pay-inv li .title {
  font-size: 16px;
  font-weight: bold;
}
.modal .payment-modal .invoice-choose .pay-inv li .due {
  font-size: 14px;
}
.modal .payment-modal .invoice-choose .pay-inv li .amount {
  font-size: 15px;
  font-weight: bold;
  margin-left: auto;
}
.modal .payment-modal .invoice-choose .pay-inv li .body {
  padding-left: 10px;
}
.modal .payment-modal .invoice-choose .pay-inv li:last-child {
  border: none;
}
.modal .payment-modal .invoice-choose .pay-inv li:hover {
  background-color: #f1f1f1;
}
.modal .payment-modal .invoice-choose .invoices-to-add {
  display: flex;
}
.modal .payment-modal .invoice-choose .invoices-to-add p {
  margin: 0px;
}
.modal .payment-info-modal {
  width: 850px !important;
}
.modal .payment-info-modal .invoices-info {
  overflow: auto;
  max-height: 500px;
}
.modal .add-pay-modal {
  width: 350px !important;
}
.modal .add-pay-modal .content {
  display: flex;
  flex-direction: column;
  justify-content: right;
}
.modal .invoice-modal {
  width: 700px !important;
}
.modal .set-reserve-modal {
  width: 600px !important;
}
.modal .set-reserve-modal .content {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.modal .set-reserve-modal .content .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 10px;
}
.modal .set-reserve-modal .content .row p {
  margin: 0;
}
.modal .set-reserve-modal .content .row .title {
  font-size: 16px;
  color: #363636;
}
.modal .set-reserve-modal .content .row .value {
  font-size: 20px;
  font-weight: bold;
}
.modal .reserve-modal {
  width: 950px !important;
}
.modal .reserve-modal .toolbar {
  display: flex;
  align-items: center;
}
.modal .aging-modal {
  width: 600px !important;
}
.modal .aging-modal .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
}

.side-modal {
  justify-content: left;
}
.side-modal .modal-content {
  height: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.data-table {
  width: calc(100% - 30px);
  font-size: 14px;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.data-table .row-value {
  cursor: pointer;
  padding: 10px 10px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.231372549);
  margin-bottom: 3px;
}
.data-table .row-value:hover {
  background-color: #f8f8f8;
}
.data-table .data-row {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px 10px;
}
.data-table .data-row .txt-center {
  text-align: center;
}
.data-table .table-values {
  flex: 1;
}
.data-table .table-values-inv {
  flex: 1;
  padding-bottom: 70px;
}
.data-table .data-header {
  display: inline-block;
  width: 14%;
  font-weight: bold;
  text-align: right;
}
.data-table .data-value {
  display: inline-block;
  vertical-align: top;
  width: 15%;
  text-align: right;
}
.data-table .table-header-fixed {
  position: sticky;
  top: 0px;
  background: white;
}

.invoices-unpaid-table .invid {
  text-align: left;
  width: 6%;
}
.invoices-unpaid-table .customer {
  text-align: left;
  width: 15%;
}
.invoices-unpaid-table .status {
  width: 7%;
}
.invoices-unpaid-table .schedule {
  text-align: center;
  width: 5%;
}
.invoices-unpaid-table .date {
  width: 10%;
}
.invoices-unpaid-table .amount {
  width: 10%;
}
.invoices-unpaid-table .rate {
  text-align: center;
  width: 6%;
}

.invoices-partial-table .invid {
  text-align: left;
  width: 6%;
}
.invoices-partial-table .customer {
  text-align: left;
  width: 15%;
}
.invoices-partial-table .status {
  width: 7%;
}
.invoices-partial-table .schedule {
  text-align: center;
  width: 5%;
}
.invoices-partial-table .date {
  text-align: center;
  width: 12%;
}
.invoices-partial-table .payments {
  text-align: left;
  width: 25%;
}
.invoices-partial-table .amount {
  width: 10%;
}

.invoices-paid-table .invid {
  text-align: left;
  width: 6%;
}
.invoices-paid-table .customer {
  text-align: left;
  width: 15%;
}
.invoices-paid-table .status {
  width: 7%;
}
.invoices-paid-table .schedule {
  text-align: center;
  width: 5%;
}
.invoices-paid-table .date {
  text-align: center;
  width: 12%;
}
.invoices-paid-table .payments {
  text-align: left;
  width: calc(25% - 20px);
  margin-left: 20px;
}
.invoices-paid-table .amount {
  width: 10%;
}
.invoices-paid-table .tools {
  width: 10%;
}

.tables-totals {
  position: fixed;
  font-weight: bold;
  font-size: 17px;
  box-sizing: border-box;
  bottom: 0px;
  background-color: white;
}

.payments-table .payid {
  text-align: left;
  width: 10%;
}
.payments-table .date {
  text-align: center;
  width: 15%;
}
.payments-table .acc-number {
  text-align: center;
  width: 15%;
}
.payments-table .debit-fee {
  width: 10%;
}
.payments-table .amount {
  width: 20%;
}
.payments-table .invoices {
  text-align: center;
  width: 10%;
}
.payments-table .actions {
  text-align: left;
  width: 20%;
  display: inline-flex;
  align-items: center;
}

.invoices-reserve-table {
  width: auto;
  display: block;
}
.invoices-reserve-table .table-values {
  height: 350px;
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
}
.invoices-reserve-table .totals {
  font-weight: bold;
}
.invoices-reserve-table .invid {
  text-align: left;
  width: 8%;
}
.invoices-reserve-table .schedule {
  text-align: center;
  width: 6%;
}
.invoices-reserve-table .date {
  text-align: center;
  width: 15%;
}
.invoices-reserve-table .payments {
  text-align: left;
  width: calc(23% - 20px);
  margin-left: 20px;
}
.invoices-reserve-table .amount {
  width: 13%;
}
.invoices-reserve-table .remove-btn {
  width: 5%;
  transition: all 0.4s ease;
}
.invoices-reserve-table .remove-btn svg {
  width: 25px;
  height: 25px;
}
.invoices-reserve-table .remove-btn:hover {
  color: red;
}

.btn-export:hover {
  color: #003ce1;
}

.btn-remove {
  margin-left: 20px;
}
.btn-remove:hover {
  color: #ff0404;
}

.inv-pay-table {
  width: auto;
  font-size: 13px;
}
.inv-pay-table .data-row {
  box-sizing: border-box;
}
.inv-pay-table .table-values {
  max-height: 300px;
  overflow: auto;
}
.inv-pay-table .invid {
  width: 8%;
  text-align: left;
}
.inv-pay-table .customer {
  width: 20%;
  text-align: left;
}
.inv-pay-table .date {
  text-align: center;
  width: 20%;
}
.inv-pay-table .amount {
  width: 15%;
}
.inv-pay-table .remove-btn {
  width: 7%;
  transition: all 0.4s ease;
}
.inv-pay-table .remove-btn svg {
  width: 25px;
  height: 25px;
}
.inv-pay-table .remove-btn:hover {
  color: red;
}

.invoices-py-table .payid {
  text-align: left;
  width: 20%;
}
.invoices-py-table .date {
  text-align: center;
  width: 30%;
}
.invoices-py-table .adjustment {
  width: 25%;
}
.invoices-py-table .amount {
  width: 25%;
}

.payment-iv-table .invid {
  text-align: left;
  width: 15%;
}
.payment-iv-table .customer {
  text-align: left;
  width: 40%;
}
.payment-iv-table .pay-amount {
  width: 20%;
}
.payment-iv-table .inv-current {
  width: 20%;
}

button {
  padding: 10px 20px;
  border-radius: 8px;
  outline: none;
  border: none;
  background-color: white;
  transition: all 0.4s ease;
  font-size: 17px;
  box-shadow: 0 4px 8px 0 rgba(15, 15, 15, 0.1764705882);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
button svg {
  margin-right: 10px;
}
button:hover {
  background-color: #f7f7f7;
}

.dropdown-container {
  position: relative;
  display: inline-block;
  width: 250px;
  font-size: 15px;
  margin-bottom: 15px;
}
.dropdown-container .dropdown-list {
  position: absolute;
  width: 100%;
  padding: 0;
  margin-top: 0px;
  list-style: none;
  z-index: 999;
  animation-name: HideList;
  animation-duration: 0.6s;
  animation-delay: 0.4s;
  animation-fill-mode: forwards;
  animation-timing-function: step-start;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.231372549);
  max-height: 12rem;
  transition: ease-in all 0.3s;
  overflow-y: scroll;
  overflow-x: hidden;
  opacity: 0;
}
.dropdown-container .dropdown-option {
  width: 100%;
  display: block;
  padding: 10px;
  transition: all ease 0.3s;
  background-color: #ffffff;
  color: #6b6b6b;
}
.dropdown-container .dropdown-option:hover, .dropdown-container .dropdown-option:focus {
  color: #318825;
}
.dropdown-container .dropdown-active {
  background-color: #f3f3f3 !important;
  color: #1dad00;
}
.dropdown-container .dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  border-top: 4px dashed;
  border-top: 4px solid \9 ;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transition: all ease-in 0.2s;
}
.dropdown-container .dropdown-value {
  display: flex;
}
.dropdown-container .dropdown-input {
  display: none !important;
}
.dropdown-container .dropdown-input:checked + .dropdown-value-text {
  display: block;
}
.dropdown-container .dropdown-current {
  position: relative;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.1098039216);
  cursor: pointer;
  border-radius: 8px;
  outline: none;
}
.dropdown-container .dropdown-current:focus + .dropdown-list {
  opacity: 1;
  animation-name: none;
  pointer-events: all;
}
.dropdown-container .dropdown-current:focus + .dropdown-list .dropdown-option {
  cursor: pointer;
}
.dropdown-container .dropdown-current:focus .dropdown-caret {
  transform: translateY(-50%) rotate(180deg);
}
.dropdown-container .dropdown-value-text {
  display: none;
  width: 100%;
  margin: 0;
  padding: 10px;
}

@keyframes HideList {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}
.input-field {
  margin-top: 20px;
  text-align: left;
}
.input-field label {
  font-weight: bold;
}
.input-field input {
  padding: 8px 10px;
  box-shadow: 0 3px 4px 0 rgba(61, 61, 61, 0.1725490196);
  border: none;
  outline: none;
  font-size: 17px;
  width: 100%;
  margin-bottom: 10px;
}

.autocomplete-field {
  position: relative;
}
.autocomplete-field .autocomplete-list {
  position: absolute;
  left: 0px;
  bottom: 0px;
  transform-origin: top left;
  transform: translate(0px, 100%);
  padding: 0;
  margin: 0;
  width: 100%;
  z-index: 999;
  list-style: none;
  max-height: 140px;
  overflow-y: scroll;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3019607843);
}
.autocomplete-field .autocomplete-list li {
  display: flex;
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  transition: all 0.3s ease;
}
.autocomplete-field .autocomplete-list li:last-child {
  border: none;
}
.autocomplete-field .autocomplete-list li:hover {
  background-color: #f3f3f3;
}

.custom-scroll {
  scrollbar-width: 8px; /* Firefox */
  -ms-overflow-style: none;
}
.custom-scroll::-webkit-scrollbar {
  background: transparent; /* Chrome/Safari/Webkit */
  width: 8px;
  height: 8px;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(71, 71, 71, 0.8901960784);
  border-radius: 5px;
}

.tab {
  cursor: pointer;
}
.tab span {
  transition: all 0.4s ease;
  padding: 8px 10px;
  border-bottom: 2px solid white;
}
.tab span:hover {
  color: #0f6eeb;
  border-color: #0f6eeb;
}
.tab .selected {
  color: #0f41e4;
  border-color: #003ad8;
}

.btn {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.btn:hover {
  background-color: #f7f7f7;
  color: #0f6eeb;
}

.tooltip {
  position: relative;
  cursor: pointer;
}
.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  font-size: 13px;
  background-color: rgba(43, 43, 43, 0.5254901961);
  color: white;
  width: auto;
  max-width: 200px;
  bottom: -50%;
  transform: translate(0%, 0%);
  box-shadow: 0 2px 4px 0 rgba(36, 36, 36, 0.1019607843);
  transform-origin: center;
  text-align: center;
  border-radius: 5px;
  pointer-events: none;
  user-select: none;
  padding: 5px;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: 1;
}
.tooltip:hover::after {
  transform: translate(0%, 50%);
  opacity: 1;
}

.btn-add-selection {
  padding: 5px 10px;
  margin-left: auto;
}

.btn-action {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-action svg {
  width: 25px;
  height: 25px;
}
.btn-action .reveal {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.4s ease, opacity 0.7s ease;
}
.btn-action:hover .reveal {
  max-width: 200px;
  opacity: 1;
}

.btn-trigger {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 10px;
  transition: all 0.4s ease;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1098039216);
}
.btn-trigger svg {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.btn-trigger:hover {
  background-color: rgba(122, 122, 122, 0.1098039216);
}

.btn-export-res {
  margin-left: 10px;
}

.btn-reserve {
  margin-left: auto;
}
.btn-reserve:hover {
  color: #0c35a8;
}

.btn-reserve-date {
  cursor: pointer;
  margin-left: 10px;
  transition: all 0.4s ease;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1px solid rgba(230, 230, 230, 0.1098039216);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.231372549);
}
.btn-reserve-date.disabled {
  background-color: #b3f6ff;
  box-shadow: 0 4px 6px 0 rgba(0, 181, 226, 0.5764705882);
}
.btn-reserve-date:hover {
  background-color: rgba(238, 238, 238, 0.4196078431);
}

body {
  margin: 0;
}

.container {
  height: 100vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.mulish {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.hidden {
  display: none;
}

.page-close {
  margin-left: auto;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: black;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: none;
}
.page-close svg {
  margin: 0;
}
.page-close:hover {
  background-color: #f1f1f1;
}

.payment-footer {
  display: flex;
  align-items: center;
  justify-content: right;
}
.payment-footer .errors {
  color: #dc0d0d;
  margin-right: 20px;
}

.payment-totals {
  font-weight: bold;
  text-align: right;
}

.invoices-block {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fixed_filters {
  display: inline-block;
  position: sticky;
  top: 0px;
  margin-bottom: 10px;
  margin-left: 10px;
}
.fixed_filters .input-field {
  display: inline-block;
  margin-left: 10px;
}

.invoices-info .delay-card {
  padding: 10px;
  background-color: #ffeded;
  border-radius: 10px;
  font-weight: bold;
  color: #eb0000;
}
.invoices-info .good-card {
  padding: 10px;
  background-color: #ecfde7;
  border-radius: 10px;
  font-weight: bold;
  color: #47c30a;
}
.invoices-info .title {
  display: block;
  font-size: 18px;
  color: #5a5a5a;
}
.invoices-info .value {
  display: block;
  font-weight: bold;
  font-size: 21px;
}
.invoices-info .i-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.invoices-info .i-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.invoices-info .i-row-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.paid-color {
  color: #11c301;
}

.partial-color {
  color: #0111c3;
}

.unpaid-color {
  color: #de0303;
}

.addi-row {
  display: grid;
  grid-template-columns: 2fr 4fr;
  gap: 4px;
}

.err-text {
  color: #dc0d0d;
}

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