:root {
  --header-height: 45px;
  --sidebar-width: 250px;
  --sidebar-closed-width: 50px;
  --bg-color-body: #e8e9ef;
  --bg-color-header: #16448c;
  /*--bg-color-sidebar: #1d2333;*/
  --bg-color-sidebar: rgb(33, 37, 41);
  --bg-color-sidebar-active: #007bff;
  --bg-alertModal: #e35d6a;
  --bg-successModal: #53b96a;
  --bg-notificationModal: #e8e9ef;
  --font-family-body: system-ui, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-size: 16px;
  --color-blue: #0070dc;
  --color-grey: #7a7a7a;
  --color-front-circle: #ffa516;
  --color-trail: #ffa516;
  --length-trail: 30%;
  --color-front-circle: #16448c;
  --color-trail: #16448c;
  --length-trail: 30%;
}

/*
 * HEADER
 */
#header {
  background-color: var(--bg-color-header);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 5px solid #c0c2ce;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
}
#header .inner {
  display: flex;
  align-items: center;
  gap: 1em;
  padding-block: 4px;
}
#header .header-logo a {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
}
#header .header-logo a:hover {
  text-decoration: none;
}
#header #navbar {
  margin-left: auto;
}
#header #navbar ul {
  display: flex;
  list-style: none;
  gap: 1em;
  margin: 0;
  padding: 0;
}

/*
 * SIDEBAR
 */
.sidebar {
  display: none;
}
@media (min-width: 768px) {
  .sidebar {
    max-width: var(--sidebar-width);
    position: fixed;
    top: var(--header-height) !important;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--bg-color-sidebar) !important;
    box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.1), 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
  }
}
.sidebar .logo_container {
  padding: 0.5em 0.5em;
  display: flex;
  justify-content: center;
  display: none;
  border: none;
  outline: none;
}
.sidebar .logo_container img {
  width: 100%;
}
.sidebar .org_container {
  padding: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  background: black;
}
.sidebar .org_container img {
  width: 90px;
  height: auto;
}
.sidebar .sidebar-inner {
  padding: 20px 10px;
}
.sidebar .sidebar-inner ul.nav-pills li.nav-item {
  width: 100%;
}
.sidebar .sidebar-inner ul.nav-pills li.nav-item a.nav-link {
  transition: 0.2s ease all;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  text-decoration: none;
}
.sidebar .sidebar-inner ul.nav-pills li.nav-item a.nav-link.active {
  color: #fff;
  background-color: var(--bg-color-sidebar-active);
}
.sidebar .sidebar-inner ul.nav-pills li.nav-item a.nav-link.active .sidebar-logo-container i {
  color: var(--bg-color-sidebar-active);
}
.sidebar .sidebar-inner ul.nav-pills li.nav-item a.nav-link .sidebar-logo-container {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.sidebar .sidebar-inner ul.nav-pills li.nav-item a.nav-link .sidebar-logo-container i {
  color: var(--bg-color-sidebar);
  margin: 0;
  margin-right: 0 !important;
  font-size: 1rem;
}
.sidebar .sidebar-inner ul.nav-pills li.nav-item a.nav-link .sidebar-label {
  display: inline-block;
  color: white;
  font-size: 15px;
}
.sidebar .sidebar-inner ul.nav-pills li.nav-item a.active {
  background-color: #428bca;
}

.disabled-link {
  opacity: 0.5;
  position: relative;
}
.disabled-link:hover {
  opacity: 1;
}
.disabled-link:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.7;
  border-radius: 0.25rem;
}
.disabled-link:hover::after {
  content: "PRO Version";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  width: 100%;
  text-align: center;
}

.menu-toggle {
  position: fixed;
  bottom: 0;
  margin: 20px 10px;
  left: calc(var(--sidebar-width) - 25px);
  transform: rotate(180deg);
  outline: 2px solid var(--bg-color-sidebar);
  border: none;
  border-radius: 50%;
}
.menu-toggle:active, .menu-toggle:focus, .menu-toggle:focus-visible {
  border: none !important;
  outline: 2px solid var(--bg-color-sidebar) !important;
}

@media (min-width: 768px) {
  .menu-closed .sidebar {
    max-width: var(--sidebar-closed-width);
  }
}
.menu-closed .sidebar .sidebar-inner {
  padding: 20px 5px;
}
.menu-closed .sidebar .sidebar-inner ul.nav-pills li.nav-item a.nav-link {
  padding: 0.5rem 0.3rem;
}
.menu-closed .sidebar .menu-toggle {
  position: fixed;
  bottom: 0;
  margin: 20px 10px;
  left: 20px;
  transform: rotate(0);
}

.nav > li > a:focus, .nav > li > a:hover {
  background-color: #428bca;
}

body {
  background-color: var(--bg-color-body);
  color: #282726;
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: var(--font-size);
}

h1, h2, h3 {
  font-weight: bold;
}

h1 {
  font-size: 1.8rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.3rem;
}

.main {
  position: absolute;
  top: var(--header-height);
  left: 0;
  bottom: 0;
  right: 0;
  overflow-y: auto;
  padding-right: 5px;
  padding-left: 5px;
  padding-bottom: 4em;
}

@media (min-width: 768px) {
  .main {
    left: var(--sidebar-width);
    padding-right: 15px;
    padding-left: 15px;
  }
  .menu-closed .main {
    left: var(--sidebar-closed-width);
  }
}
.page-header {
  margin-top: 1rem;
}

.page-description {
  color: #606060;
  font-size: 0.9rem;
}

.module-box {
  padding: 12px;
  background: white;
  border-radius: 8px;
  margin-block: 1em;
  box-shadow: 0 0.5em 1.5em rgba(0, 0, 0, 0.1), 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
  overflow: auto;
}

.section-box {
  padding: 10px;
  background: #ddd;
  border-radius: 8px;
  margin-block: 1em;
}

.module-box-small {
  padding: 10px;
  background: white;
  border-radius: 8px;
  margin-block: 1em;
  overflow: auto;
}

.module-box-outline {
  padding: 5px;
  background: white;
  border-radius: 8px;
  margin-block: 1em;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  overflow: auto;
}

.module-box-small-outline {
  padding: 5px;
  background: white;
  border-radius: 8px;
  margin-block: 1em;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  overflow: auto;
}

@media (min-width: 768px) {
  .module-box {
    padding: 10px;
  }
  .module-box-small {
    padding: 0.5rem;
  }
  .module-box-outline {
    padding: 1rem 1rem;
  }
  .module-box-small-outline {
    padding: 0.5rem;
  }
}
.action-buttons {
  display: inline-flex;
  gap: 5px;
}

.required,
.mandatory {
  color: #de2121;
}

.white-space-nowrap {
  white-space: nowrap;
}

@media (min-width: 576px) {
  .modal .modal-dialog {
    max-width: 700px;
  }
  .modal .modal-dialog:not(.smallModal.modal .modal-dialog) {
    max-width: 80%;
  }
  .modal.globalNotification .modal-dialog:not(.smallModal.modal .modal-dialog) {
    max-width: 60%;
  }
}
.globalNotification.modal {
  z-index: 2000;
}

.globalNotification .modal-content {
  white-space: pre;
}

.alertModal .modal-content {
  background-color: var(--bg-alertModal);
}

.successModal .modal-content {
  background-color: var(--bg-successModal);
}

.notificationModal .modal-content {
  background-color: var(--bg-notificationModal);
}

.globalNotification .modal-title {
  font-weight: bold;
}

.globalNotification .modal-header {
  border-bottom: none;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 80%;
  }
}
.column-min-width {
  width: 1%;
}

.table .bank-logo {
  height: 3em;
}

.select2-dropdown {
  z-index: 9999;
}

.select2.select2-container {
  display: block;
}

.select2-selection.select2-selection--single {
  height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background-color: #ddeaff;
}
.select2-selection.select2-selection--single .select2-selection__arrow {
  position: relative;
}

.smallTextStyle {
  color: #606060;
  font-size: 0.9rem;
}

.tooltip-div {
  border: 1px;
  background: #0d6efd;
  padding: 6px;
  display: flex;
  border-radius: 100%;
  align-content: center;
  justify-content: center;
  width: 23px;
  height: 23px;
}
.tooltip-div i {
  color: white;
  font-size: 0.8em;
}

.dt-container {
  max-height: 72vh;
}

.fixedHeader thead > tr {
  position: sticky;
  top: 0;
}

input[readonly] {
  background-color: #e9ecef;
  color: #495057;
  cursor: not-allowed;
}

.btn-light {
  border-color: #cecece;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  margin-bottom: 0;
}

.checkbox input {
  height: 20px;
  width: 20px;
  margin-top: 0;
  border-width: 2px;
}
.checkbox label {
  margin-right: 10px;
}

#loginForm input[type=submit] {
  width: 100%;
}

table.table.dataTable > tbody > tr.selected > * {
  --dt-row-selected: 158, 207, 255;
  --dt-row-selected-text: 0,0,0;
}

th, td {
  white-space: nowrap;
}

.striped-columns > :not(caption) > tr > :nth-child(2n+3) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

#currentMonth {
  font-size: 1.5rem;
  min-width: 180px;
  text-align: center;
}

.selected-row td {
  background-color: #a6d6ff !important;
  border: 1px solid white;
  transition: background-color 0.3s ease;
}

table.dataTable thead th,
table.dataTable tbody td {
  white-space: nowrap;
}

table.dataTable thead th:first-child,
table.dataTable tbody td:first-child {
  position: sticky;
  left: 0;
  background: white;
  z-index: 2;
}

table.dataTable thead th:first-child {
  z-index: 3;
}

table .vermittler {
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#polizzenTable th.col-vn, #polizzenTable td.col-vn {
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#polizzenTable th.col-vu, #polizzenTable td.col-vu {
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#polizzenTable th.col-vm, #polizzenTable td.col-vm {
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*
 * Loading screen
 */
.loader-overlay {
  display: grid;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  z-index: 999999;
}
.loader-overlay .loader-bg {
  background: rgb(255, 255, 255);
  padding: 2em 3em;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.loader-overlay .loader-bg .loader-container .loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, var(--color-front-circle) 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat, conic-gradient(rgba(0, 0, 0, 0) var(--length-trail), var(--color-trail));
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
.loader-overlay .loader-bg #long-wait-message {
  margin-top: 2em;
}

footer {
  font-size: 0.8rem;
  margin-top: 2em;
  text-align: center;
}

.sticky-footer-actions {
  position: fixed;
  bottom: 0;
  right: 0;
  background: #f3f3f5;
  display: flex;
  justify-content: end;
  box-shadow: 0px 4px 7px rgb(0, 0, 0);
  box-shadow: 0 -0.5em 1.5em rgba(0, 0, 0, 0.1), 0 -0.175em 0.5em rgba(0, 0, 0, 0.15);
  padding: 0.5em 2em;
  z-index: 99;
  left: 0;
  padding-right: 15px;
  padding-left: 15px;
}

.sticky-footer-actions .footer-actions .btn.btn-primary {
  padding: 0.4em 1.5em;
}

@media (min-width: 768px) {
  .sticky-footer-actions {
    left: var(--sidebar-width);
    padding-right: 15px;
    padding-left: 15px;
  }
}
.sticky-footer-actions .footer-actions {
  display: flex;
  align-items: end;
  gap: 1em;
}

.sticky-footer-actions .footer-actions .checkbox label {
  margin: 0;
  border: 1px solid gray;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
  cursor: pointer;
  background: white;
}

.sticky-footer-actions .footer-actions .checkbox label:hover {
  background: #ddd;
}

@media (min-width: 768px) {
  .menu-closed .sticky-footer-actions {
    left: var(--sidebar-closed-width);
  }
}

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