:root {
  --all-top-components-height: 120px;
  --body-margin-top: 120px;
  --basic-border-radius: 8px;
  --border-radius-basic: 7px;
  --border-radius-large: 15px;
  --border-radius-small: 4px;
  --table-border-radius: var(--border-radius-basic);
  --top-panel-height: 66px;
  --main-menu-width: 190px;
  --main-menu-height: 58px;
  --main-menu-item-padding: 0.85rem 1rem;
  --footer-height: 18.5px;
  --input-padding: 6px;
  --input-height: 25px;
  --input-height-line-height: 24px;
  --form-input-padding: 6px;
  --form-input-height: 30px;
  --input-radio-height: 12px;
  --input-border-radius: 6px;
  --form-entryForm-padding: 35px 35px 40px 35px;
  --div-entryForm-margin-top: 0px;
  --spacing: 10px;
  --table-spacing: 0 var(--spacing);
  --table-box-shadow: unset;
  --table-paginator-padding-top: 12px;
  --table-paginator-width-button: 40px;
  --table-paginator-input-padding: 10px;
  --table-thead-td-padding: 10px;
  --table-input-padding: 4px;
  --table-thead-td-margin-bottom: 15px;
  --table-tbody-td-padding: 6px;
  --table-tbody-td-height: 32px;
  --table-tbody-tr-shadow: 0 0 10px;
}
:root {
  --menu-show-hide-transition: 0.5s ease-out, opacity 0.5s ease-out, visibility 0s 0.5s, height 0s 0.5s;
}
/*
HTML Template
     <div class="hamburger-button">
          <div class="line"></div>
          <div class="line"></div>
          <div class="line"></div>
     </div>
*/
.hamburger-button {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 18px;
  cursor: pointer;
}
.hamburger-button .line {
  width: 20px;
  height: 2px;
  background-color: var(--gray-text-color);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger-button .line:first-child {
  transform-origin: top left;
}
.hamburger-button .line:last-child {
  transform-origin: bottom left;
}
.hamburger-button.active .line:first-child {
  transform: rotate(45deg) translate(0px, -5px);
}
.hamburger-button.active .line:nth-child(2) {
  opacity: 0;
}
.hamburger-button.active .line:last-child {
  transform: rotate(-45deg) translate(4px, 0px);
}
.hamburger-button:hover .line {
  height: 2.5px;
}
.btn-white {
  background: #ffffff;
  border-color: #0d86d9;
  color: #0d86d9;
}
.btn-white:hover {
  background: #0d86d9;
  border-color: #0d86d9;
  color: #ffffff;
}
.btn-white:active {
  color: #ffffff;
  background: #083d77;
  border-color: #083d77;
}
.btn-blue {
  background: #0d86d9;
  border-color: #0d86d9;
  color: #ffffff;
}
.btn-blue:hover {
  background: #ffffff;
  border-color: #0d86d9;
  color: #0d86d9;
}
.btn-blue:active {
  color: #ffffff;
  background: #083d77;
  border-color: #083d77;
}
button,
input[type="button"],
input[type="submit"] {
  color: var(--button-text-color);
  background: var(--button-background);
  border: 1px solid var(--button-border-color);
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--basic-border-radius);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, font-weight 0.15s ease-in-out;
}
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background: var(--button-hover-background);
  border: 1px solid var(--button-hover-border-color);
  color: var(--button-hover-color);
}
button.transparent,
input[type="button"].transparent,
input[type="submit"].transparent {
  background-color: var(--button-background-transparent-background);
  color: var(--button-background-transparent-color);
}
button.transparent:hover,
input[type="button"].transparent:hover,
input[type="submit"].transparent:hover {
  color: var(--button-background-transparent-color-hover);
}
button.no-background,
input[type="button"].no-background,
input[type="submit"].no-background {
  background: transparent;
  color: var(--button-background-transparent-color);
}
button.no-background:hover,
input[type="button"].no-background:hover,
input[type="submit"].no-background:hover {
  background: transparent !important;
  color: var(--button-background-transparent-color-hover) !important;
}
button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled {
  filter: grayscale(1);
  cursor: not-allowed;
  opacity: 0.6;
}
button.btn,
input[type="button"].btn,
input[type="submit"].btn {
  border-radius: 0.5rem;
  border-style: solid;
  border-width: 0.0625rem;
  padding: 0.625rem 1rem 0.625rem 1rem;
  box-shadow: 0 0.0625rem 0.125rem 0 rgba(10, 13, 18, 0.05);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
}
button.primary,
input[type="button"].primary,
input[type="submit"].primary {
  background: #0d86d9;
  border-color: #0d86d9;
  color: #ffffff;
}
button.primary:hover,
input[type="button"].primary:hover,
input[type="submit"].primary:hover {
  background: #ffffff;
  border-color: #0d86d9;
  color: #0d86d9;
}
button.primary:active,
input[type="button"].primary:active,
input[type="submit"].primary:active {
  color: #ffffff;
  background: #083d77;
  border-color: #0d86d9;
}
button.cancel-btn,
input[type="button"].cancel-btn,
input[type="submit"].cancel-btn {
  background: #ffffff;
  border-color: #0d86d9;
  color: #0d86d9;
}
button.cancel-btn:hover,
input[type="button"].cancel-btn:hover,
input[type="submit"].cancel-btn:hover {
  background: #0d86d9;
  border-color: #0d86d9;
  color: #ffffff;
}
button.cancel-btn:active,
input[type="button"].cancel-btn:active,
input[type="submit"].cancel-btn:active {
  color: #ffffff;
  background: #083d77;
  border-color: #083d77;
}
.dropdown {
  position: relative;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: "Montserrat-SemiBold", "Montserrat-Regular", sans-serif;
}
.dropdown:not(.active) .dropdown-content {
  display: none;
}
.dropdown > button {
  border-radius: 10px;
  border: solid 1px #0d86d9;
  padding-right: 25px;
  font-weight: 500;
}
.dropdown > button:after {
  content: "\f078";
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  position: absolute;
  right: 7px;
}
.dropdown.active > button,
.dropdown.hovered > button {
  background: transparent !important;
  color: #0B86D9;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-color: #0B86D9 !important;
  border-bottom: 1px solid black !important;
}
.dropdown.active > button:after,
.dropdown.hovered > button:after {
  content: "\f077";
}
.dropdown.active .dropdown-content,
.dropdown.hovered .dropdown-content {
  display: block;
}
.dropdown.hovered > button {
  background: #0B86D9 !important;
  color: white !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.dropdown .dropdown-content {
  position: absolute;
  z-index: 1;
  top: 100%;
  background-color: var(--background-color);
  min-width: 160px;
  padding: 12px 16px;
  overflow: auto;
  max-height: 200px;
  width: 100%;
  border: solid 1px #0d86d9;
  border-radius: 0 0 10px 10px;
  border-top: 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  font-size: 14px;
}
.dropdown .dropdown-content.no-padding {
  padding: 0;
}
.dropdown .dropdown-content .dropdown-item {
  display: block;
  padding: 10px 20px 10px 12px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  text-align: left;
  text-decoration: none;
  font-family: "Montserrat-Regular", sans-serif;
  font-weight: 500;
}
.dropdown .dropdown-content .dropdown-item:hover {
  color: var(--primary-color);
  background-color: var(--dropdown-item-background-hover);
}
.dropdown.user-select {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.dropdown.user-select .dropdown-btn {
  min-width: 120px !important;
  max-width: fit-content !important;
  width: 100% !important;
  background-color: transparent !important;
  color: #0d86d9 !important;
  border: none !important;
  border-bottom: none !important;
  font-weight: 500;
  padding-right: 32px;
}
.dropdown.user-select .dropdown-content {
  border: none;
}
.dropdown.user-select .dropdown-content .dropdown-item {
  border-top: none !important;
  font-weight: 500;
}
.settings-add-merchant {
  color: #0d86d9;
  text-decoration: none;
}
.settings-add-merchant:hover {
  color: #fff;
}
.dropdown-content {
  left: 0;
  right: auto;
}
.dropdown-content:before {
  content: '';
  position: absolute;
  left: 0;
  top: -8px;
  border: 8px solid transparent;
  border-bottom-color: #fff;
}
@media (min-width: 768px) {
  .dropdown-content {
    left: auto;
    right: 0;
  }
  .dropdown-content:before {
    left: auto;
    right: 0;
  }
}
#component-login {
  position: fixed;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 750px;
  min-width: 400px;
  display: flex;
  flex-direction: row;
}
#component-login .formName {
  color: var(--text-color) !important;
  font-weight: initial;
  text-align: left;
  font-size: 2rem;
}
#component-login div.entryTableValidityError {
  display: none;
}
#component-login > div {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  text-align: left;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--background-color);
  background-clip: border-box;
  border: 1px solid var(--border-color);
  flex: 1 0 0;
  margin-bottom: 0;
  padding: 50px 40px;
}
#component-login > div:first-child {
  border-radius: 0.25rem 0 0 0.25rem;
  padding-bottom: 25px;
  padding-top: 40px;
}
#component-login > div:nth-child(2) {
  background-color: var(--primary-color);
  border-radius: 0 0.25rem 0.25rem 0;
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  align-items: center;
  display: flex;
  justify-content: center;
}
#component-login > div:nth-child(2) > div {
  display: flex;
  flex-direction: column;
}
#component-login > div:nth-child(2) > div > span {
  color: var(--text-inv-color);
  font-size: 0.9rem;
  margin-bottom: 15px;
}
#component-login > div:nth-child(2) > div > a {
  width: fit-content;
  margin: auto;
}
#component-login > div:nth-child(2) > div > a > button {
  width: fit-content;
  margin: auto;
  background-color: var(--button-darker-background) !important;
  border-color: var(--button-darker-border) !important;
  font-size: 0.9rem;
}
#component-login > div:nth-child(2) > div > a > button:hover {
  background-color: var(--button-darker-background-hover) !important;
  border-color: var(--button-darker-border-hover) !important;
}
#component-login .entryForm {
  background-color: white;
  width: 100%;
  box-shadow: 0 4px 16px #32383f17 !important;
  border: 1px solid var(--border-color);
}
#component-login .entryForm form {
  background: transparent !important;
  box-shadow: none;
  padding: 0;
}
#component-login .entryForm form > span {
  color: var(--text-gray-secondary);
}
#component-login .entryForm form > table {
  padding: 0;
  margin-top: 10px;
}
#component-login .entryForm form > table input {
  background: transparent !important;
  border-color: var(--icon-input-border-color);
}
#component-login .entryForm form .form-button-bottom {
  justify-content: space-between;
  align-items: center;
}
#component-login .entryForm form .form-button-bottom > button {
  height: 33px;
  padding: 0 20px;
}
#component-login .entryForm .terms {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 30px;
}
#component-login .entryForm .terms > span,
#component-login .entryForm .terms a {
  font-size: 0.81rem;
}
#component-login .entryForm .terms > span {
  color: var(--text-gray-secondary);
}
#component-login .entryForm .terms > a {
  margin: auto;
}
#component-login .already-have-account {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 10px;
}
#register-form {
  max-width: 450px;
  margin: auto;
}
#register-form .form-button-bottom {
  justify-content: center !important;
}
#register-form .form-button-bottom > button {
  background-color: transparent !important;
  border: 1px solid var(--button-border-color);
  color: var(--button-border-color);
  opacity: 0.9;
  padding: 0 80px !important;
  border-radius: 0.25rem;
}
#register-form .form-button-bottom > button:hover {
  opacity: 1;
  border-color: var(--button-border-color-hover);
}
.icon-input-wrapper {
  box-shadow: 0 4px 16px #32383f1a;
  border-radius: 0.75rem;
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}
.icon-input-wrapper .icon {
  line-height: 1.5;
  word-wrap: break-word;
  box-sizing: border-box;
  display: flex;
  border-bottom-left-radius: 0.75rem;
  border-top-left-radius: 0.75rem;
  background-color: var(--icon-input-background);
  color: var(--icon-input-color);
  border: 1px solid var(--icon-input-border-color);
  padding: 0 10px;
  align-content: center;
  flex-wrap: wrap;
}
.icon-input-wrapper input {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  height: 34.4px !important;
}
.alert {
  margin-top: 20px;
  font-size: 0.8rem;
  padding: 10px 18px;
}
.alert.warning {
  background-color: var(--alert-warning-message-background);
  border: 1px solid var(--alert-warning-message-border-color);
  color: var(--alert-warning-message-color);
}
.cc-cell {
  display: flex;
  font-size: 1.1rem;
  align-items: center;
  margin-top: 10px;
}
.cc-cell > svg {
  margin-right: 5px;
}
#divStripePaymentForm {
  width: 50%;
  margin: 0 auto;
  background: var(--background-color);
  border: 1px solid var(--border-color);
  padding: 20px;
}
#divStripePaymentForm.loading {
  opacity: 0.5;
}
#divStripePaymentForm.loading * {
  pointer-events: none;
}
#stripePaymentForm {
  width: 80%;
  margin: 0 auto;
}
#stripePaymentForm button {
  margin-top: 10px;
}
.payment-icons {
  opacity: 0.5;
}
input {
  border-radius: 6px;
  margin-bottom: 6px;
  padding: 12px;
  border: 1px solid rgba(50, 50, 93, 0.1);
  height: 24px;
  font-size: 16px;
  width: 100%;
  background: var(--background-color);
}
.result-message {
  line-height: 22px;
  font-size: 16px;
}
.result-message a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}
.hidden {
  display: none;
}
#card-error {
  color: var(--text-gray-secondary);
  text-align: left;
  font-size: 13px;
  line-height: 17px;
  margin-top: 12px;
}
#card-element {
  border-radius: 4px 4px 0 0;
  padding: 12px;
  border: 1px solid rgba(50, 50, 93, 0.1);
  height: 16px;
  width: 100%;
  background: var(--background-color);
}
#payment-request-button {
  margin-bottom: 32px;
}
.payment-methods {
  max-width: 447px;
  min-width: 337px;
}
.payment-methods.loading {
  opacity: 0.5;
}
.payment-methods.loading * {
  pointer-events: none;
}
.payment-methods .add-card-button {
  font-weight: bold;
  text-align: right;
  transition: font-size 500ms, color 500ms;
  cursor: pointer;
  color: var(--button-background);
  font-size: 0.9rem;
  margin-top: 20px;
  margin-bottom: 5px;
}
.payment-methods .add-card-button:hover {
  font-size: 1rem;
  color: var(--button-hover-background);
}
.payment-methods .card-row {
  display: flex;
  flex-direction: row;
  padding: 0.8em;
  justify-content: space-between;
}
.payment-methods .card-row:not(:last-child) {
  border-bottom: 2px solid var(--border-color);
}
.payment-methods .card-row:not(.default) .card-flag.default {
  display: none;
}
.payment-methods .card-row .card-body {
  display: flex;
}
.payment-methods .card-row .card-body .brand-icon {
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  margin-right: 10px;
  font-size: 33px;
}
.payment-methods .card-row .card-body .header {
  font-weight: 500;
  text-transform: capitalize;
  font-size: 1.1rem;
}
.payment-methods .card-row .card-body .header > span {
  margin-right: 5px;
}
.payment-methods .card-row .card-body .expiration {
  text-align: left;
  color: var(--gray-text-color);
}
.payment-methods .card-row .card-body .card-flag {
  margin-left: 10px;
  height: fit-content;
  border-radius: 4px;
  padding: 1px 6px;
  color: var(--text-inv-color);
  cursor: pointer;
}
.payment-methods .card-row .card-body .card-flag.default {
  background: var(--primary-color);
}
.payment-methods .card-row .card-body .card-flag.expired {
  background: var(--gray-text-color);
}
.payment-methods .card-row .card-actions {
  display: inline-flex;
  align-content: center;
  flex-wrap: wrap;
}
.payment-methods .card-row .card-actions .star.default {
  padding: 0;
  border-right: 0;
  pointer-events: none;
}
.payment-methods .card-row .card-actions .star.default > i {
  display: none;
}
.payment-methods .card-row .card-actions > div {
  background-color: var(--background-color);
  border: 2px solid var(--border-color);
  border-right: 0;
  padding: 0 10px;
  height: 25px;
  cursor: pointer;
  line-height: 1.5;
}
.payment-methods .card-row .card-actions > div:hover {
  filter: contrast(0.8);
}
.payment-methods .card-row .card-actions > div:first-child {
  border-top-left-radius: var(--border-radius-basic);
  border-bottom-left-radius: var(--border-radius-basic);
}
.payment-methods .card-row .card-actions > div:last-child {
  border-top-right-radius: var(--border-radius-basic);
  border-bottom-right-radius: var(--border-radius-basic);
  border-right: 2px solid var(--border-color);
}
/* Buttons and links */
.payment-summary button {
  background: var(--button-background);
  color: var(--button-text-color);
  font-family: Arial, sans-serif;
  border-radius: 0 0 4px 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;
}
.payment-summary button:hover {
  filter: contrast(115%);
}
.payment-summary button:disabled {
  opacity: 0.5;
  cursor: default;
}
/* Spinner/processing state, errors */
.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}
.spinner {
  color: var(--text-inv-color);
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}
.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: var(--background-color);
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}
.spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: var(--background-color);
  border-radius: 50%;
  top: -0.1px;
  left: 10.1px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.success-message {
  color: var(--success);
}
.error-message {
  color: var(--failed);
}
#success-message {
  color: #2ecc71;
  font-size: 1rem;
  font-weight: bold;
  animation-name: zoomBounce;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
}
@keyframes zoomBounce {
  0% {
    transform: scale(0);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.swal2-container .swal2-confirm {
  background: var(--button-background) !important;
}
.swal2-container .swal2-confirm:hover {
  background: var(--button-darker-background-hover) !important;
}
.swal2-container .swal2-close {
  border: 0;
  box-shadow: none !important;
}
.swal2-container .swal2-close:hover {
  border: 0;
  color: var(--button-background);
  border: none;
  background: transparent !important;
}
.custom-select {
  position: relative;
  display: inline-block;
}
.custom-select:hover > .select-box,
.custom-select.active > .select-box {
  background: #0D86D9;
  color: white;
}
.custom-select .select-options {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid #0d86d9;
  border-top: 0;
  border-radius: 5px;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  text-align: left;
  color: #0d86d9;
}
.custom-select .select-options > div {
  padding: 8px 16px;
  cursor: pointer;
  color: #0d86d9;
}
.custom-select .select-options > div:hover,
.custom-select .select-options > div.active {
  background-color: #e9ecef;
}
.custom-select.active .select-options {
  display: block;
}
.paginator-wrapper {
  display: flex;
}
.paginator-wrapper .paginator {
  color: var(--paginator-text-color);
  background: var(--paginator-background);
  white-space: nowrap;
  padding: 0.5rem 1.25rem;
  margin: 5px auto;
  font-weight: 500;
  font-size: 0.9rem;
  border: var(--paginator-border);
}
.paginator-wrapper .paginator > a {
  text-decoration: none;
  color: var(--button-text-color);
  background: var(--button-background);
  height: calc(var(--form-input-height) - 2px);
  padding: var(--form-input-padding);
  border: 1px solid var(--button-text-color);
  border-radius: var(--border-radius-basic);
  margin: 0 3px;
  width: var(--table-paginator-width-button);
  text-align: center;
  display: inline-block;
  position: relative;
  padding-bottom: 25px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.paginator-wrapper .paginator > a:hover {
  color: var(--button-hover-color);
  background: var(--button-hover-background);
  border: 1px solid var(--button-hover-color);
}
.paginator-wrapper .paginator > a:first-child,
.paginator-wrapper .paginator > a:nth-child(2) {
  margin-left: 0;
}
.paginator-wrapper .paginator .tooltip-info {
  font-size: 14px;
  display: none;
}
.paginator-wrapper .paginator .disabledlink {
  opacity: 0.3;
  cursor: auto;
}
.paginator-wrapper .paginator .page {
  display: none;
}
.paginator-wrapper .paginator .ofpage {
  margin-right: 20px;
}
.paginator-wrapper .paginator input,
.paginator-wrapper .paginator select {
  width: 42px;
  padding: var(--form-input-padding);
  height: var(--form-input-height);
  min-width: 82px;
  background: var(--input-background);
  color: var(--text-color);
  border-color: var(--border-color);
  border-radius: 6px;
  color: #000;
  text-align: left;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.979px;
  /* 141.494% */
}
.paginator-wrapper .paginator span {
  color: #000;
  text-align: center;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16.979px;
  /* 141.494% */
}
.table-holder {
  margin: 0 20px 0 20px;
  display: inline-block;
  padding: 0.5px;
  border-radius: 8px;
  padding-bottom: 20px;
}
.table-holder .engine-grid {
  width: unset;
  margin: 0;
  display: inline-block;
  border: 0.5px solid #000 !important;
  border-radius: 8px;
  padding: 0.5px;
  margin-top: 0.5px;
}
.table-holder > .paginator-wrapper {
  border: none !important;
  border-radius: hidden;
  display: flex;
  position: sticky;
  justify-content: unset;
  background: var(--body-background-color);
  z-index: 10;
  padding: var(--table-paginator-padding-top) 0 var(--table-paginator-padding-top) 20px;
  margin-top: 4px;
}
.table-holder .space {
  display: none;
}
.entryForm {
  margin-bottom: 40px;
  width: 100%;
  max-width: 1024px;
  margin-top: var(--div-entryForm-margin-top);
}
.entryForm h3 {
  margin: 0 0 15px 5px;
  font-weight: 600;
  font-size: 22px;
}
.entryForm form {
  width: 100%;
  max-width: 1024px;
  box-shadow: 0 0 40px var(--default-box-shadow);
  border-radius: var(--border-radius-basic);
  padding: var(--form-entryForm-padding);
  background: var(--form-background-color) !important;
  font-size: 14px;
}
.entryForm table {
  width: 100%;
  background-color: transparent !important;
  text-align: left !important;
  border: 0;
}
.entryForm table tr td {
  padding: 5px;
  width: inherit !important;
  text-align: left !important;
}
.entryForm table tr td.entryTableCaption {
  font-weight: 500;
}
.entryForm table tr td input:not([type="file"]):not(#attachmentName43):not([type="checkbox"]):not([type="radio"]) {
  width: 100% !important;
}
.entryForm table tr td input[type="checkbox"].formInputCheckbox {
  min-width: 13px;
  width: 13px !important;
  margin: 0;
}
.entryForm table tr td input {
  height: var(--input-height);
  min-width: 82px;
  background: var(--input-background-color);
  color: var(--input-color);
  border-radius: var(--input-border-radius);
}
.entryForm table tr td input:disabled,
.entryForm table tr td input[readonly] {
  background: var(--input-disabled-background);
  color: var(--input-disabled-color);
}
.entryForm table tr td input.hasDatepicker {
  background: var(--input-background-color) !important;
  color: var(--input-color);
}
.entryForm table tr td input[type="file"] {
  border: none;
}
.entryForm table tr td input[type='checkbox'] {
  min-width: 24px;
  width: 24px;
  height: var(--input-radio-height);
}
.entryForm table tr td textarea {
  background: var(--input-background-color);
  color: var(--input-color);
  border-radius: var(--input-border-radius);
  padding: var(--form-input-padding);
}
.entryForm table tr td .chzn-container {
  width: 100% !important;
}
.entryForm table tr td .chzn-container > a {
  height: var(--input-height);
  min-width: 82px;
  background: var(--input-background-color);
  color: var(--input-color);
  border-radius: var(--input-border-radius);
}
.entryForm table tr td .chzn-container > a:disabled,
.entryForm table tr td .chzn-container > a[readonly] {
  background: var(--input-disabled-background);
  color: var(--input-disabled-color);
}
.entryForm table tr td .chzn-container > a.hasDatepicker {
  background: var(--input-background-color) !important;
  color: var(--input-color);
}
.entryForm table tr td .chzn-container .chzn-drop {
  margin: 0 -20px 0 0;
  background: var(--input-background-color);
}
.entryForm table tr td .chzn-container .chzn-results {
  max-height: 70vh !important;
}
.entryForm table tr td .chzn-container .chzn-results li.highlighted {
  background: var(--primary-color) !important;
}
.entryForm table tr td .chzn-container .chzn-single-plus {
  height: 21px;
}
.entryForm table tr td .chzn-container .chzn-single-plus,
.entryForm table tr td .chzn-container .chzn-default {
  background: var(--table-input-background-color) !important;
  border-color: var(--table-border-color);
}
.entryForm .form-button-bottom {
  display: flex !important;
  justify-content: end;
}
body .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  background-color: var(--top-panel-background-color);
  height: var(--top-panel-height);
  box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.12);
  font-family: 'Montserrat', sans-serif;
  z-index: 13;
  flex: 1;
}
body .navbar .initials {
  display: none;
  text-transform: capitalize;
  color: #0d86d9;
  font-family: "Montserrat-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
body .navbar .navbar-logo {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
body .navbar .left-section {
  display: inline-flex;
  align-items: center;
}
body .navbar .left-section > button {
  margin-left: 25px;
  display: flex;
  flex-wrap: nowrap;
}
body .navbar .right-section {
  font-family: 'Montserrat', sans-serif;
}
body .navbar .right-section .dropdown.settings {
  margin-left: auto;
  right: 13px;
}
body .navbar .right-section .dropdown.settings > button {
  font-family: 'Montserrat', sans-serif;
  min-width: 250px;
  text-align: left;
}
body .navbar .right-section .dropdown.settings .dropdown-content {
  max-height: calc(100vh - 80px);
}
body .navbar .right-section .dropdown.settings .dropdown-content .logout-action {
  border-top: 1px solid silver;
}
body .navbar .right-section .dropdown.settings .dropdown-item {
  font-family: 'Montserrat', sans-serif;
}
@media (max-width: 414px) {
  body .navbar {
    flex-wrap: nowrap !important;
  }
}
body #menu {
  position: fixed;
  left: 0;
  top: var(--top-panel-height);
  width: 100%;
  height: var(--main-menu-height);
  display: flex;
  flex-direction: row;
  background-color: var(--main-menu-background-color);
  transition: transform var(--menu-show-hide-transition);
  justify-content: left;
  z-index: 12;
  padding: 10px 34px 10px 34px;
  box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.12);
  font-family: Montserrat-Regular, sans-serif;
}
body #menu .item {
  font-family: 'Montserrat', sans-serif;
  padding: var(--main-menu-item-padding);
  text-decoration: none;
  display: inline-block;
  position: relative;
  text-align: left;
  color: var(--primary-color);
  font-size: 1rem;
}
body #menu .item:nth-last-child(2) {
  margin-left: auto;
}
body #menu .item.active,
body #menu .item:hover {
  color: #0A3E78;
}
body #menu .item.active {
  color: #0A3E78;
}
@media screen and (max-width: 945px) {
  body .navbar {
    padding: 0 16px !important;
  }
  body .navbar .dropdown {
    right: 0  !important;
  }
  body .navbar .dropdown > button {
    min-width: unset !important;
  }
  body .navbar .dropdown > button .name {
    display: none;
  }
  body .navbar .dropdown > button:before {
    font-family: 'Font Awesome 5 Pro';
    content: "\f54f";
    font-weight: 800;
  }
  body .navbar .dropdown.active > button span,
  body .navbar .dropdown.hovered > button span {
    display: block;
  }
  body .navbar .dropdown.active > button:before,
  body .navbar .dropdown.hovered > button:before,
  body .navbar .dropdown.active > button:after,
  body .navbar .dropdown.hovered > button:after {
    display: none;
  }
  body #menu {
    justify-content: space-between;
  }
  body #menu .item > i {
    display: none;
  }
  body #menu .item:nth-last-child(2) {
    margin: initial;
  }
}
@media screen and (max-width: 795px) {
  body .navbar {
    padding: 0 16px !important;
  }
  body .navbar .initials {
    display: block;
  }
  body .navbar .settings {
    display: inline-flex;
    align-items: baseline;
    column-gap: 10px;
    padding-left: 10px;
    right: 0  !important;
  }
  body .navbar .transparent::after {
    right: 32px;
  }
  body #menu .item {
    overflow: hidden;
    font-size: 0;
  }
  body #menu .item > i {
    display: block;
    font-size: 1.2rem;
  }
  body .navbar-logo > font {
    position: absolute;
    padding-left: 0 !important;
    top: 45px;
    left: 85px;
    font-size: 1rem;
  }
  body .right-section .dropdown-btn {
    display: none;
  }
}
body {
  /*
  thead div:has(.formInputEdit) {
    position: relative;
    
    &::before {
      content: '\f002';
      font-family: 'FontAwesome';
      position: absolute;
      top: 50%;
      left: 0.5rem;
      transform: translateY(-50%);
      font-size: 0.7rem;
      color: black;
      pointer-events: none;
    }
    
    .formInputEdit{
      padding-left: 20px !important;
    }
  }
  */
}
body table.sortable {
  position: relative;
}
body table.sortable thead th {
  cursor: grab;
  position: relative;
}
body table.sortable thead th[draggable="true"] {
  cursor: grabbing;
}
body table .column-right {
  text-align: right;
}
body table.engine-grid {
  border-bottom: 0.5px solid #000;
  margin: auto;
  border-radius: 0;
  width: max-content;
  margin: 0 20px 0 20px;
  display: inline-block;
  border: 0.5px solid #000;
  border-radius: 8px;
  font-weight: 400;
  border-spacing: var(--table-spacing);
  font-size: 16px;
}
body table.engine-grid.theme-size-compact {
  border-spacing: 0;
}
body table.engine-grid.theme-size-compact tr th,
body table.engine-grid.theme-size-compact tr td {
  padding: 13px !important;
  font-size: 14px;
  min-width: 50px;
}
body table.engine-grid.theme-size-compact > thead tr th {
  border-bottom: 1px solid var(--table-border-color);
}
body table.engine-grid.theme-size-compact > tbody tr {
  box-shadow: none !important;
}
body table.engine-grid.theme-size-compact > tbody tr td {
  border-bottom: 1px solid var(--table-border-color);
  border-radius: 0 !important;
}
body table.engine-grid.theme-size-compact.small-padding tr th,
body table.engine-grid.theme-size-compact.small-padding td {
  padding: 9px !important;
}
body table.engine-grid .advancedFilter {
  position: relative;
}
body table.engine-grid .advancedFilter > span {
  position: absolute;
  top: 6px;
  left: 10px;
}
body table.engine-grid .advancedFilter > input {
  padding-left: 40px;
}
body table.engine-grid .advanced-filter-input + br,
body table.engine-grid .advancedFilter + br {
  display: none;
}
body table.engine-grid .advanced-filter-input + br + .advanced-filter-input,
body table.engine-grid .advanced-filter-input + br + .advancedFilter,
body table.engine-grid .advancedFilter + br + .advanced-filter-input,
body table.engine-grid .advancedFilter + br + .advancedFilter {
  margin-top: 5px;
}
body table.engine-grid.responsiveTable {
  width: 100%;
  table-layout: fixed;
  max-width: inherit;
}
body table.engine-grid.no-fullscreen {
  min-width: unset !important;
}
body table.engine-grid.no-fullscreen > thead tr:not(.gridCellRow) th {
  top: unset;
}
body table.engine-grid.loading {
  opacity: 0.5;
  position: relative;
}
body table.engine-grid.loading * {
  pointer-events: none;
}
body table.engine-grid.loading:before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f1ce";
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
  font-size: 60px;
  position: absolute;
  top: 10px;
  left: calc(50% - 30px);
  z-index: 2;
}
body table.engine-grid td.rightBorder,
body table.engine-grid th.rightBorder {
  border-right: var(--table-border-color);
}
body table.engine-grid td.expandedRow {
  max-width: fit-content !important;
}
body table.engine-grid th {
  max-width: 80px;
}
body table.engine-grid .gridAjaxEditMessage span {
  display: none;
}
body table.engine-grid.engine-grid-max-width > tbody td,
body table.engine-grid.engine-grid-max-width > thead th {
  max-width: 130px;
}
body table.engine-grid > tbody td,
body table.engine-grid > thead th,
body table.engine-grid > tfoot td {
  padding: var(--table-tbody-td-padding);
  vertical-align: top;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body table.engine-grid > tbody td button:not(.classic-button),
body table.engine-grid > thead th button:not(.classic-button),
body table.engine-grid > tfoot td button:not(.classic-button) {
  letter-spacing: 0;
}
body table.engine-grid > tbody td button:not(.classic-button):hover,
body table.engine-grid > thead th button:not(.classic-button):hover,
body table.engine-grid > tfoot td button:not(.classic-button):hover {
  color: var(--button-hover-color);
  background-color: var(--button-hover-background);
  border: 1px solid var(--button-hover-border-color);
}
body table.engine-grid > tbody td button:not(.classic-button).button-disabled,
body table.engine-grid > thead th button:not(.classic-button).button-disabled,
body table.engine-grid > tfoot td button:not(.classic-button).button-disabled {
  filter: contrast(0.3);
  cursor: unset;
}
body table.engine-grid > tbody td.gridNumber,
body table.engine-grid > thead th.gridNumber,
body table.engine-grid > tfoot td.gridNumber {
  text-align: right;
}
body table.engine-grid > tbody td.gridNumber input,
body table.engine-grid > thead th.gridNumber input,
body table.engine-grid > tfoot td.gridNumber input {
  text-align: right;
}
body table.engine-grid > tbody td.gridCellButtons,
body table.engine-grid > thead th.gridCellButtons,
body table.engine-grid > tfoot td.gridCellButtons {
  white-space: nowrap;
  outline: none;
  max-width: none;
  padding: 0 5px;
  text-align: left !important;
}
body table.engine-grid > tbody td .gridActionButton:not(.classic-button):hover,
body table.engine-grid > thead th .gridActionButton:not(.classic-button):hover,
body table.engine-grid > tfoot td .gridActionButton:not(.classic-button):hover {
  color: var(--href-hover-color);
}
body table.engine-grid > tbody td .gridActionButton .icon,
body table.engine-grid > thead th .gridActionButton .icon,
body table.engine-grid > tfoot td .gridActionButton .icon {
  margin-top: 1px;
  vertical-align: top;
  font-size: 16px;
}
body table.engine-grid > tbody td .gridActionButton:active .icon,
body table.engine-grid > thead th .gridActionButton:active .icon,
body table.engine-grid > tfoot td .gridActionButton:active .icon {
  margin-top: 3px;
  margin-bottom: -2px;
}
body table.engine-grid > thead > tr > th {
  padding-top: 15px;
}
body table.engine-grid > thead tr:not(.gridCellRow) th,
body table.engine-grid > tfoot tr:not(.gridCellRow) th {
  position: sticky;
  z-index: 2;
  padding: var(--table-thead-td-padding);
  font-size: 16px;
  color: var(--table-header-color);
  font-family: Montserrat;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
body table.engine-grid > thead tr:not(.gridCellRow) th:first-child,
body table.engine-grid > tfoot tr:not(.gridCellRow) th:first-child {
  z-index: 3;
}
body table.engine-grid > thead tr:not(.gridCellRow) th.centered,
body table.engine-grid > tfoot tr:not(.gridCellRow) th.centered {
  text-align: center;
}
body table.engine-grid > thead tr:not(.gridCellRow) th.gridNumber,
body table.engine-grid > tfoot tr:not(.gridCellRow) th.gridNumber {
  text-align: left;
}
body table.engine-grid > thead tr:not(.gridCellRow) th.focused,
body table.engine-grid > tfoot tr:not(.gridCellRow) th.focused {
  z-index: 4;
}
body table.engine-grid > thead tr.gridCellRow th.gridCellSummary,
body table.engine-grid > tfoot tr.gridCellRow th.gridCellSummary {
  z-index: 1;
  color: #767676;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-top: 0.5px solid #000;
  border-bottom: 0.5px solid #000;
}
body table.engine-grid > thead tr.gridCellRow th.gridCellSummary:first-child,
body table.engine-grid > tfoot tr.gridCellRow th.gridCellSummary:first-child {
  color: #535862;
  text-align: right;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
body table.engine-grid > thead tr th,
body table.engine-grid > tfoot tr th {
  position: relative;
  text-align: left;
  padding: var(--table-thead-td-padding);
  vertical-align: bottom;
  font-weight: normal;
  top: 0;
  background-color: var(--table-header-background);
  border: 0;
  border-right: 1px solid var(--table-border-color);
  min-width: 110px;
}
body table.engine-grid > thead tr th.sortcol .header-title-text,
body table.engine-grid > tfoot tr th.sortcol .header-title-text {
  max-width: calc(100% - 15px);
}
body table.engine-grid > thead tr th .chzn-container,
body table.engine-grid > tfoot tr th .chzn-container {
  width: 100% !important;
  background: var(--table-input-background-color) !important;
  border-radius: var(--basic-border-radius);
}
body table.engine-grid > thead tr th .chzn-container > a,
body table.engine-grid > tfoot tr th .chzn-container > a {
  background: var(--table-input-background-color) !important;
  border: 0;
}
body table.engine-grid > thead tr th .chzn-container .chzn-drop,
body table.engine-grid > tfoot tr th .chzn-container .chzn-drop {
  max-width: fit-content;
  margin: 0 -20px 0 0;
  background: var(--table-input-background-color) !important;
}
body table.engine-grid > thead tr th .chzn-container .chzn-choices,
body table.engine-grid > tfoot tr th .chzn-container .chzn-choices {
  background: var(--table-input-background-color) !important;
}
body table.engine-grid > thead tr th .chzn-container .chzn-choices li,
body table.engine-grid > tfoot tr th .chzn-container .chzn-choices li {
  width: 100% !important;
}
body table.engine-grid > thead tr th .chzn-container .chzn-results,
body table.engine-grid > tfoot tr th .chzn-container .chzn-results {
  max-height: 70vh !important;
}
body table.engine-grid > thead tr th .chzn-container .chzn-single-plus,
body table.engine-grid > tfoot tr th .chzn-container .chzn-single-plus {
  height: 21px;
}
body table.engine-grid > thead tr th .chzn-container .chzn-single-plus,
body table.engine-grid > tfoot tr th .chzn-container .chzn-single-plus,
body table.engine-grid > thead tr th .chzn-container .chzn-default,
body table.engine-grid > tfoot tr th .chzn-container .chzn-default {
  background: var(--table-input-background-color) !important;
  border-color: var(--table-border-color);
}
body table.engine-grid > thead tr th input,
body table.engine-grid > tfoot tr th input,
body table.engine-grid > thead tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select),
body table.engine-grid > tfoot tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select) {
  min-width: 50px;
  width: calc(100% - .20rem) !important;
  background-color: var(--table-input-background-color);
  color: var(--table-input-color);
  border: 0 solid var(--body-background-color);
  border-radius: 7px;
  padding: var(--table-input-padding);
  display: block;
  border-radius: 5px;
  border: 0.5px solid var(--TF-Dark-Grey, #A4A7AE);
  background: rgba(233, 234, 235, 0.4);
  position: relative;
  padding-left: 6px;
}
body table.engine-grid > thead tr th input:nth-child(2),
body table.engine-grid > tfoot tr th input:nth-child(2),
body table.engine-grid > thead tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select):nth-child(2),
body table.engine-grid > tfoot tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select):nth-child(2),
body table.engine-grid > thead tr th div.react-select:nth-child(2),
body table.engine-grid > tfoot tr th div.react-select:nth-child(2),
body table.engine-grid > thead tr th input:nth-child(4),
body table.engine-grid > tfoot tr th input:nth-child(4),
body table.engine-grid > thead tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select):nth-child(4),
body table.engine-grid > tfoot tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select):nth-child(4),
body table.engine-grid > thead tr th div.react-select:nth-child(4),
body table.engine-grid > tfoot tr th div.react-select:nth-child(4),
body table.engine-grid > thead tr th input:nth-of-type(2),
body table.engine-grid > tfoot tr th input:nth-of-type(2),
body table.engine-grid > thead tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select):nth-of-type(2),
body table.engine-grid > tfoot tr th select:not(.react-datepicker__month-select):not(.react-datepicker__year-select):nth-of-type(2),
body table.engine-grid > thead tr th div.react-select:nth-of-type(2),
body table.engine-grid > tfoot tr th div.react-select:nth-of-type(2) {
  margin-top: 5px;
}
body table.engine-grid > thead tr th input[type=checkbox],
body table.engine-grid > tfoot tr th input[type=checkbox] {
  display: inline-block;
  min-width: 10px;
  width: auto !important;
}
body table.engine-grid > thead tr th input[type=checkbox]:hover,
body table.engine-grid > tfoot tr th input[type=checkbox]:hover {
  cursor: pointer;
}
body table.engine-grid > thead tr th .header-title,
body table.engine-grid > tfoot tr th .header-title {
  margin-bottom: var(--table-thead-td-margin-bottom);
}
body table.engine-grid > thead tr th .header-title .header-title-text,
body table.engine-grid > tfoot tr th .header-title .header-title-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-height: 1rem;
}
body table.engine-grid > thead tr th .header-title .react-datepicker-wrapper,
body table.engine-grid > tfoot tr th .header-title .react-datepicker-wrapper {
  display: block;
}
body table.engine-grid > thead tr th .header-title .header-sort-button,
body table.engine-grid > tfoot tr th .header-title .header-sort-button {
  width: 15px;
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  padding: 0 2px;
  color: var(--table-sort-button-color);
  display: none;
}
body table.engine-grid > thead tr th .header-title .header-sort-button.header-sort-button.header-sort-button-high,
body table.engine-grid > tfoot tr th .header-title .header-sort-button.header-sort-button.header-sort-button-high {
  position: absolute;
  right: 7px;
  top: 5px;
  display: inline-block;
}
body table.engine-grid > thead tr th .header-title .header-sort-button:hover,
body table.engine-grid > tfoot tr th .header-title .header-sort-button:hover {
  color: var(--link-color);
  cursor: pointer;
}
body table.engine-grid > thead tr th .header-title .header-sort-button.header-sort-button-az:before,
body table.engine-grid > tfoot tr th .header-title .header-sort-button.header-sort-button-az:before {
  content: "\f077";
}
body table.engine-grid > thead tr th .header-title .header-sort-button.header-sort-button-za:before,
body table.engine-grid > tfoot tr th .header-title .header-sort-button.header-sort-button-za:before {
  content: "\f078";
}
body table.engine-grid > thead tr th .header-title .header-sort-button.header-sort-button-asc:before,
body table.engine-grid > tfoot tr th .header-title .header-sort-button.header-sort-button-asc:before {
  content: "\f077";
}
body table.engine-grid > thead tr th .header-title .header-sort-button.header-sort-button-desc:before,
body table.engine-grid > tfoot tr th .header-title .header-sort-button.header-sort-button-desc:before {
  content: "\f078";
}
body table.engine-grid > thead tr th .header-title .header-sort-button.header-sort-button-high,
body table.engine-grid > tfoot tr th .header-title .header-sort-button.header-sort-button-high {
  color: var(--link-color);
}
body table.engine-grid > thead tr th:hover .header-title .header-sort-button,
body table.engine-grid > tfoot tr th:hover .header-title .header-sort-button {
  display: inline-block;
  position: absolute;
  right: 7px;
  top: 5px;
}
body table.engine-grid > thead > tr:first-child th:first-child {
  box-shadow: 0 0 0.5px #000;
}
body table.engine-grid > thead > tr:first-child th:last-child {
  box-shadow: 0 0 0.5px #000;
}
body table.engine-grid > tfoot > tr:first-child th:first-child {
  border-bottom-left-radius: var(--border-radius-basic);
  box-shadow: -30px 0 0 var(--body-background-color);
}
body table.engine-grid > tfoot > tr:first-child th:last-child {
  border-bottom-right-radius: var(--border-radius-basic);
  box-shadow: 30px 0 0 var(--body-background-color);
}
body table.engine-grid.scrolling thead tr:last-child th:after {
  background: none;
  position: absolute;
  top: 100%;
  bottom: -2px;
  left: 0;
  width: 100%;
  content: ' ';
  height: 4px;
}
body table.engine-grid > tbody tr[ondblclick*="("] {
  cursor: pointer;
}
body table.engine-grid > tbody tr {
  position: relative;
  box-shadow: var(--table-tbody-tr-shadow) var(--default-box-shadow);
  border-radius: var(--border-radius-basic);
  background: var(--table-background);
}
body table.engine-grid > tbody tr > td:first-child {
  padding-left: 15px;
}
body table.engine-grid > tbody tr:hover:not(.empty-row),
body table.engine-grid > tbody tr:hover:nth-child(odd):not(.empty-row) {
  box-shadow: 0 0 20px var(--default-box-shadow);
  background: var(--table-hover-background);
}
body table.engine-grid > tbody tr:hover:not(.empty-row) > td:first-child:not(.no-rows):before,
body table.engine-grid > tbody tr:hover:nth-child(odd):not(.empty-row) > td:first-child:not(.no-rows):before {
  content: "";
  background: var(--primary-color);
  width: 6px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: var(--border-radius-basic);
  border-bottom-left-radius: var(--border-radius-basic);
}
body table.engine-grid > tbody tr.evented {
  cursor: pointer;
}
body table.engine-grid > tbody tr a:not(.href-button) {
  text-decoration: none;
  color: var(--href-color);
}
body table.engine-grid > tbody tr a:not(.href-button):hover {
  color: var(--href-hover-color);
}
body table.engine-grid > tbody tr a:not(.href-button):active {
  color: var(--href-hover-color);
}
body table.engine-grid > tbody tr td {
  overflow: hidden;
  vertical-align: middle;
  height: var(--table-tbody-td-height);
  line-height: 1em;
  color: var(--text-color-table);
  border: 0;
}
body table.engine-grid > tbody tr td input {
  background: var(--body-background-color);
}
body table.engine-grid > tbody tr td button {
  margin-bottom: 0;
}
body table.engine-grid > tbody tr td:first-child {
  border-top-left-radius: var(--table-border-radius);
  border-bottom-left-radius: var(--table-border-radius);
}
body table.engine-grid > tbody tr td:last-child {
  border-top-right-radius: var(--table-border-radius);
  border-bottom-right-radius: var(--table-border-radius);
  border-right: 0 !important;
}
body table.engine-grid > tbody tr td.sortcol,
body table.engine-grid > tbody tr td.isFilteredCell,
body table.engine-grid > tbody tr td.hoveredCell {
  max-width: none !important;
}
body table.engine-grid > tbody tr td.overflowed {
  cursor: copy;
}
body table.engine-grid > tbody tr td.gridCellSummary {
  background-color: var(--table-summary-cell-background);
  border: 0;
  border-top: 1px solid var(--table-summary-cell-border-color);
}
body table.engine-grid > fthfoot {
  visibility: visible !important;
}
body table.engine-grid.engine-grid-no-width > tbody td,
body table.engine-grid.engine-grid-no-width > thead th {
  max-width: none;
}
body.theme-size-compact table.engine-grid {
  border-spacing: 0;
  box-shadow: 0 0 22px var(--default-box-shadow);
}
body.theme-size-compact table.engine-grid tr th,
body.theme-size-compact table.engine-grid tr td {
  font-size: 14px;
  min-width: 50px;
}
body.theme-size-compact table.engine-grid > thead tr th {
  border-bottom: 1px solid var(--table-border-color);
}
body.theme-size-compact table.engine-grid > tbody tr {
  box-shadow: none !important;
}
body.theme-size-compact table.engine-grid > tbody tr td {
  border-bottom: 1px solid var(--table-border-color);
}
body.theme-size-compact table.engine-grid {
  margin-top: 20px;
  margin-bottom: 20px;
}
body.theme-size-compact table.engine-grid > thead tr:first-child th:first-child {
  border-top-left-radius: var(--border-radius-basic);
  box-shadow: unset;
}
body.theme-size-compact table.engine-grid > thead tr:first-child th:last-child {
  border-top-right-radius: var(--border-radius-basic);
  box-shadow: unset;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuOKfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuDyYMZg.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-.ttf) format('truetype');
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
img {
  vertical-align: middle;
  border-style: none;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  color: var(--primary-color) !important;
}
body input:active,
body input:focus {
  outline: none !important;
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 2px var(--primary-color);
}
body input:disabled {
  outline: none;
}
body a {
  color: var(--button-hover-border-color);
}
body a:not(:hover) {
  text-decoration: none;
  color: var(--button-background);
}
.opacityLoading {
  position: relative;
  pointer-events: none;
  user-select: none;
}
.opacityLoading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 100;
}
.opacityLoading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 101;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.opacityLoading .loading-text {
  position: absolute;
  top: calc(50% + 30px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
  color: #3498db;
  font-weight: bold;
}
.opacityLoading .loading-text::after {
  content: ".";
  animation: loading-dots 1.5s infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loading-dots {
  0%,
  20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60% {
    content: "...";
  }
  80%,
  100% {
    content: "";
  }
}
@media (max-width: 1000px) {
  body #guideBtn {
    display: none !important;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#component-pm {
  padding-bottom: 12px;
  position: relative;
  bottom: 20px;
}
#component-pm .pageHeaderTable table {
  margin-left: auto !important;
  padding-right: 140px;
  margin-right: 0 !important;
}
#component-pm .pageHeaderTable table .pageHeaderMenu {
  width: 195px;
  text-decoration: none;
  text-align: right;
}
#component-pm .pageHeaderTable table .pageHeaderMenu a {
  text-decoration: none;
  color: #0D86D9;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
#component-pm .pageHeaderTable table .pageHeaderMenu a:hover {
  color: #083D77;
}
#component-pm .pageHeaderTable table .pageHeaderMenuSelected {
  width: 195px;
  text-decoration: none;
  text-align: right;
}
#component-pm .pageHeaderTable table .pageHeaderMenuSelected a {
  color: #083D77;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  text-decoration: none;
}
#component-pgi {
  max-width: 100vw;
  margin: 0 20px;
  padding-right: 0.5px;
}
#component-pgi .formName {
  display: none;
}
#component-pgi .table-holder {
  margin: 0;
  width: 100%;
}
#component-pgi .table-holder .paginator-wrapper .paginator {
  margin: 0 auto;
  padding: 0;
}
#component-pgi .table-holder .paginator-wrapper .paginator .ofrows {
  margin-right: 12px;
}
#component-pgi .table-holder #pgi-table {
  border-top: 0;
  width: 100%;
  border-collapse: collapse;
  padding-top: 4px;
}
#component-pgi .table-holder #pgi-table thead {
  width: 100%;
  max-height: 80px;
  border-bottom: 1px solid #000;
}
#component-pgi .table-holder #pgi-table thead tr {
  max-height: 80px;
  width: 100%;
}
#component-pgi .table-holder #pgi-table thead tr th:first-child {
  min-width: 300px;
}
#component-pgi .table-holder #pgi-table thead tr th:first-child div:not(.header-title) {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  position: relative;
}
#component-pgi .table-holder #pgi-table thead tr th:first-child div:not(.header-title) input {
  width: 50% !important;
  margin: 0;
}
#component-pgi .table-holder #pgi-table thead tr th:nth-child(2) {
  width: 100%;
}
#component-pgi .table-holder #pgi-table thead tr th:nth-child(3) {
  min-width: 130px;
}
#component-pgi .table-holder #pgi-table thead tr th:nth-child(3) div:not(.header-title) {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  margin-bottom: 6px;
}
#component-pgi .table-holder #pgi-table thead tr th:nth-child(3) div:not(.header-title) input {
  margin: 0;
}
#component-pgi .table-holder #pgi-table thead tr th:nth-child(4) {
  min-width: 160px;
}
#component-pgi .table-holder #pgi-table thead tr th:nth-child(4) input {
  margin: 0 auto;
  margin-bottom: 6px;
}
#component-pgi .table-holder #pgi-table tbody {
  width: 100%;
}
#component-pgi .table-holder #pgi-table tbody tr {
  width: 100%;
}
#component-pgi .table-holder #pgi-table tbody tr td {
  color: #000;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
#component-pgi .table-holder #pgi-table tbody tr td:first-child {
  min-width: 300px;
}
#component-pgi .table-holder #pgi-table tbody tr td:nth-child(2) {
  width: 100%;
}
#component-pgi .table-holder #pgi-table tbody tr td:nth-child(3) {
  min-width: 130px;
}
#component-pgi .table-holder #pgi-table tbody tr td:nth-child(4) {
  min-width: 160px;
}
@media (max-width: 1500px) {
  #component-pgi .paginator-wrapper .paginator a {
    display: none;
  }
  #component-pgi .paginator-wrapper .paginator .page {
    display: none;
  }
  #component-pgi .paginator-wrapper .paginator input {
    display: none;
  }
  #component-pgi .paginator-wrapper .paginator .ofpage {
    display: none;
  }
}
@media (max-width: 834px) {
  #component-pm {
    display: none;
  }
  .submenu-mobile {
    display: flex !important;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 12px 12px 0 12px;
  }
  .submenu-mobile .btn-dark {
    background-color: #083D77;
    border-color: #083D77;
    color: #ffffff;
  }
  .submenu-mobile a {
    width: 100%;
  }
  .submenu-mobile button {
    width: 100%;
  }
  #component-pgi .paginator-wrapper {
    display: none;
  }
  #component-pgi .table-holder #pgi-table thead tr th {
    top: 124px !important;
  }
  #component-pgi .table-holder #pgi-table thead tr th:first-child {
    min-width: 130px;
  }
  #component-pgi .table-holder #pgi-table thead tr th:nth-child(2) {
    display: none;
  }
  #component-pgi .table-holder #pgi-table thead tr th:nth-child(3) {
    width: 100%;
    min-width: 100px;
  }
  #component-pgi .table-holder #pgi-table thead tr th:nth-child(4) {
    min-width: 150px;
    max-width: 150px;
  }
  #component-pgi .table-holder #pgi-table thead tr th div:has(input) {
    display: none !important;
  }
  #component-pgi .table-holder #pgi-table tbody tr td:first-child {
    min-width: 130px;
  }
  #component-pgi .table-holder #pgi-table tbody tr td:nth-child(2) {
    display: none;
  }
  #component-pgi .table-holder #pgi-table tbody tr td:nth-child(3) {
    width: 100%;
    min-width: 100px;
  }
  #component-pgi .table-holder #pgi-table tbody tr td:nth-child(4) {
    min-width: 150px;
    max-width: 150px;
  }
  .invoice-interval-modal {
    grid-row: 1 !important;
  }
  .invoice-interval-modal .swal2-html-container {
    margin-top: 0 !important;
  }
}
.invoice-button.loading {
  position: relative;
}
.invoice-button.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border: 2px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.invoice-button.disabled {
  pointer-events: none;
  filter: grayscale(100%);
}
#card-element {
  height: 40px !important;
}
.payments-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(50% - 20px), 1fr));
  padding-left: 150px;
  padding-right: 150px;
  gap: 20px;
  justify-items: flex-start;
  align-items: stretch;
}
.payments-container .item {
  align-self: stretch;
  vertical-align: top;
  background: white;
  padding: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  text-align: left;
  width: 100%;
  transition: width 0.3s;
  /* Added transition */
}
.payments-container .item > h5 {
  font-size: 0.9rem;
  color: #161540 !important;
  margin: 0 0 10px;
}
.payments-container .item.tiers table {
  margin: 0;
  border-collapse: separate;
  border-spacing: 0 5px;
  width: 100%;
}
.payments-container .item.tiers table td,
.payments-container .item.tiers table th {
  text-align: center;
}
.payments-container .item.current {
  position: relative;
}
.payments-container .item.current .container .section:not(:last-child) {
  margin-bottom: 20px;
}
.payments-container .item.current .container .section h5 {
  font-size: 0.9rem;
  color: #161540 !important;
  margin: 0 0 10px;
}
.payments-container .item.current .container .section .data {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.payments-container .item.current .actions {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.invoice-interval-modal {
  height: 65%;
}
.invoice-interval-modal .swal2-validation-message.info:before {
  display: none !important;
}
.invoice-interval-modal .swal2-title {
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 600;
  color: #0D86D9 !important;
  padding-top: 24px;
}
.invoice-interval-modal .swal2-close:hover {
  background: transparent !important;
  color: black;
}
.invoice-interval-modal .swal2-close:focus {
  box-shadow: none;
}
.invoice-interval-modal .swal2-html-container .date-range-container {
  display: flex !important;
  gap: 8px;
  padding: 22px 48px 40px 48px;
  align-items: center;
}
.invoice-interval-modal .swal2-html-container .date-range-container .input-wrapper {
  position: relative;
}
.invoice-interval-modal .swal2-html-container .date-range-container .input-wrapper input {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 600;
  border: 0.5px solid #D9D9D9;
  border-radius: 8px;
  margin: 0;
}
.invoice-interval-modal .swal2-html-container .date-range-container .input-wrapper .date-input-toggle {
  position: absolute;
  right: 10px;
  top: 30%;
}
.invoice-interval-modal .swal2-html-container .date-range-container span {
  font-size: 32px;
  margin-bottom: 6px;
}
.invoice-interval-modal .swal2-html-container .date-range-button-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
}
.invoice-interval-modal .swal2-html-container .date-range-button-container button {
  border-radius: 8px;
  padding: 10px 16px;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  max-width: 120px;
  height: 40px;
}
.invoice-interval-modal .swal2-validation-message {
  background: #FBEBCD;
  border: 0.5px solid #000;
  border-radius: 10px;
  margin: 0 20px;
}
.invoice-interval-modal.loading {
  position: relative;
  filter: brightness(0.8);
  pointer-events: none;
}
.invoice-interval-modal.loading::before {
  position: absolute;
  content: '';
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3498db;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin-loading 2s linear infinite;
  top: 20%;
  z-index: 2;
  left: 38%;
}
.daterangepicker .drp-calendar .calendar-table .table-condensed thead tr th .header-display {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.daterangepicker .drp-calendar .calendar-table .table-condensed thead tr th .header-display .month-year-container {
  margin-left: 7px;
}
.daterangepicker .drp-calendar .calendar-table .table-condensed thead tr th .header-display .month-year-container .month-year-display {
  color: #2D3748;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.daterangepicker .drp-calendar .calendar-table .table-condensed thead tr th .prev {
  padding: 6px;
}
.daterangepicker .drp-calendar .calendar-table .table-condensed thead tr th .next {
  padding: 6px;
}
.daterangepicker .drp-calendar .dropdown-month-year {
  border: 1px solid #0D86D9 !important;
  border-radius: 10px;
}
.daterangepicker .drp-calendar .dropdown-month-year .month-select {
  border-color: #0D86D9;
  border-radius: 3px;
  color: #2D3748;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.daterangepicker .drp-calendar .dropdown-month-year .year-select {
  border-color: #0D86D9;
  border-radius: 3px;
  color: #2D3748;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 1200px) {
  .payments-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 1280px) {
  .payments-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1038px) {
  .payments-container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 978px) {
  .payments-container {
    padding-left: 10px;
    padding-right: 10px;
    justify-items: flex-start;
    grid-template-columns: 1fr;
    /* Update to one column */
  }
  .payments-container .item {
    max-width: none;
    flex-basis: 100%;
  }
}
