body {
  --main-color: #3490dc;
  --main-color-darker: #196fb5;
  --main-color-light: #b3e5fb;
  --main-color-lighter: #e5f6fd;
  --main-white: #fafafa;
  --validation-bg: #F8D6D9;
  --validation-color: #dc3545;
  --validation-color_bg: #f2b7bd;
  --white: #fff;
  --black: #212529;
  --red: #dc3545;
  --purple: #563d7c;
  --blue: #2F28FF;
  --red-bg: rgba(220, 53, 69, 0.4);
  --yellow: #fdc300;
  --orange: #FFA500;
  --orange-bg: rgba(255, 165, 0, 0.4);
  --background: #edf1f5;
  --button-border-color: #dee2e6;
  --button-hover-color: #e9ecef;
  --gray: #ebebeb;
  --border-color: #ced4da;
  --black-select: #212529;
  --bs-link-color: #3490dc;
  --datatable-row-odd: #f1f1f1;
  --datatable-row-even: #f5f5f5;
  --datatable-row-hover: rgba(179, 229, 251, 0.5);
  --datatable-row-selected: #b1faa5;
  --datatable-row-warning-green: lightgreen;
  --datatable-row-warning-orange: orange;
  --datatable-row-warning-red: orangered;
  --font-size-regular: 0.9375em;
  --font-weight-regular: 400;
  --font-weight-semibold: 500;
  background: var(--background);
  font-family: 'Poppins', sans-serif;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-regular);
  overflow-x: hidden;
  /*
    .container-fluid.has-fixed-cont-buttons #showWarningFormEdited{
        top: 80px;
    }
    */
  /*
    .btn.disabled, .btn:disabled, fieldset:disabled .btn {
        color: var(--white);
        background-color: var(--yellow);
        border-color: var(--yellow);
    }
    */
}
body hr {
  border-top: 1px dashed var(--main-color);
}
body .row {
  --bs-gutter-x: 1rem;
}
body .frup-ms-1 {
  margin-left: 2px;
}
body .frup-me-1 {
  margin-right: 2px;
}
body .note-editor .dropdown-toggle::after {
  display: none;
}
body input[type=text]:not('.error'):read-only {
  background-color: var(--gray);
}
body input[type=text]:not('.error'):read-only:focus {
  background-color: var(--gray);
}
body input[type="search"] {
  -webkit-appearance: searchfield;
}
body input[type="search"]::-webkit-search-cancel-button {
  /* Remove default */
  -webkit-appearance: none;
  /* Now your own custom styles */
  height: 14px;
  width: 14px;
  display: block;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAn0lEQVR42u3UMQrDMBBEUZ9WfQqDmm22EaTyjRMHAlM5K+Y7lb0wnUZPIKHlnutOa+25Z4D++MRBX98MD1V/trSppLKHqj9TTBWKcoUqffbUcbBBEhTjBOV4ja4l4OIAZThEOV6jHO8ARXD+gPPvKMABinGOrnu6gTNUawrcQKNCAQ7QeTxORzle3+sDfjJpPCqhJh7GixZq4rHcc9l5A9qZ+WeBhgEuAAAAAElFTkSuQmCC);
  /* setup all the background tweaks for our custom icon */
  background-repeat: no-repeat;
  /* icon size */
  background-size: 14px;
}
body .btn {
  font-size: 1em;
  min-width: 42px;
}
body .btn-light {
  background-color: var(--gray);
}
body .btn-info {
  color: var(--main-white);
  background-color: var(--main-color);
  border-color: var(--main-white);
}
body .btn-info:hover,
body .btn-info.btn:active {
  color: var(--main-color);
  background-color: var(--white);
  border-color: var(--white);
}
body .btn-info.focus,
body .btn-info:focus {
  box-shadow: none;
}
body .btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: none;
}
body .btn-link {
  --bs-btn-color: var(--main-color);
  text-decoration: none;
}
body .btn-link:hover {
  color: var(--main-color-darker);
  text-decoration: underline;
}
body .btn-primary {
  color: var(--white);
  background-color: var(--main-color);
  border-color: var(--main-color);
}
body .btn-primary:hover {
  background-color: var(--main-color-darker);
  border-color: var(--main-color-darker);
}
body .btn-primary-purple {
  color: var(--white);
  background-color: var(--purple);
  border-color: var(--purple);
}
body button {
  cursor: pointer;
}
body .float-right {
  float: right;
}
body .bootstrap-tagsinput .badge [data-role="remove"]:after {
  content: "x";
  padding: 4px 10px;
}
body a:hover {
  color: var(--main-color);
}
body :focus {
  outline: none;
}
body .form-select:focus {
  border-color: none;
  outline: 0;
  box-shadow: none;
}
body .width-100 {
  width: 100%;
}
body h5.color-blue,
body label.color-blue {
  color: var(--main-color);
}
body #preloader {
  width: 100%;
  height: 100%;
  top: 0;
  position: fixed;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}
body #preloader .cssload-speeding-wheel {
  position: absolute;
  top: calc(50% - 3.5px);
  left: calc(50% - 3.5px);
  width: 31px;
  height: 31px;
  margin: 0 auto;
  border: 2px solid var(--main-color);
  border-radius: 50%;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: cssload-spin 425ms infinite linear;
  -o-animation: cssload-spin 425ms infinite linear;
  -ms-animation: cssload-spin 425ms infinite linear;
  -webkit-animation: cssload-spin 425ms infinite linear;
  -moz-animation: cssload-spin 425ms infinite linear;
}
@keyframes cssload-spin {
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes cssload-spin {
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes cssload-spin {
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes cssload-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes cssload-spin {
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
body #showWarningFormEdited {
  display: none;
}
body .wrap-container {
  min-height: 100vh;
}
body .flex-1 {
  flex: 1;
}
body .table td,
body .table th {
  padding: 3px 5px;
}
body .table th {
  font-weight: var(--font-weight-semibold);
}
body #navbarDropdown {
  color: var(--white);
}
body .cont-logo {
  max-width: 100px;
}
body .credits {
  color: var(--main-color);
  font-size: 1em;
}
body .credits:hover {
  color: var(--main-color-darker);
}
body form .custom-file-button input[type=file] {
  margin-left: -2px !important;
}
body form .custom-file-button input[type=file]::-webkit-file-upload-button {
  display: none;
}
body form .custom-file-button input[type=file]::file-selector-button {
  display: none;
}
body form .custom-file-button:hover label {
  background-color: #dde0e3;
  cursor: pointer;
}
body .form-control {
  font-size: 1em;
  padding: 0.275rem 0.55rem;
}
body .form-control.datetimepicker-input {
  border-top-left-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}
body .form-control:focus {
  box-shadow: none;
}
body .form-control .dropdown-menu,
body .form-control .filter-option-inner-inner {
  font-size: 1em;
  color: var(--black-select);
}
body .form-control:read-only {
  background-color: var(--button-hover-color);
}
body .open-calendar,
body .cancel-date,
body .cancel-related-document {
  cursor: pointer;
}
body .dropdown .dropdown-toggle {
  border-color: var(--border-color);
}
body .dropdown .dropdown-toggle.show,
body .dropdown .dropdown-toggle:active,
body .dropdown .dropdown-toggle:hover {
  border-color: var(--border-color);
  color: var(--black);
  background-color: transparent;
}
body .dropdown .dropdown-item.active,
body .dropdown .dropdown-item:active {
  color: var(--main-color);
  background-color: var(--white);
}
body #form a.btn-primary.float-right,
body #form input[type="submit"],
body .DTE .btn-primary {
  font-family: 'Poppins', "Font Awesome 6 Free", sans-serif;
  width: 250px;
  max-width: 100%;
}
body p {
  font-size: 1em;
  line-height: 1.5em;
  margin-bottom: 0;
}
body p.small {
  font-size: 0.85em;
  line-height: 1.1em;
  font-style: italic;
  color: var(--black);
}
body a,
body a:hover,
body a:focus {
  text-decoration: none;
  transition: all 0.3s;
}
body ul ul a {
  font-size: 0.9em !important;
  padding-left: 20px !important;
}
body .frup-padding {
  padding-top: calc(var(--bs-gutter-x) * 0.5);
  padding-bottom: calc(var(--bs-gutter-x) * 0.5);
}
body .wrapper {
  display: flex;
  align-items: stretch;
}
body a[data-bs-toggle="collapse"] {
  position: relative;
}
body .badge-primary {
  background-color: var(--main-color);
  border-radius: 50%;
}
body .navbar {
  background-color: var(--main-color);
  color: var(--main-white);
}
body .navbar-toggler {
  color: var(--main-white);
}
body .header-logout {
  color: #fff;
}
body .header-logout:hover {
  font-weight: 600;
  color: #fff;
}
body .navbar,
body #sidebar .sidebar-header {
  min-height: 54px;
}
body #sidebar {
  display: flex;
  flex-direction: column;
  min-width: 280px;
  max-width: 280px;
  min-height: 100vh;
  color: #000;
  background: var(--gray);
  transition: all 0.3s;
}
body #sidebar.active {
  margin-left: -280px;
}
body #sidebar .sidebar-header {
  background: #0000150d;
}
body #sidebar .sidebar-header a {
  display: block;
  padding: 5px 10px;
}
body #sidebar .sidebar-header a img {
  display: block;
  width: 120px;
  max-width: 100%;
}
body #sidebar .sidebar-inner {
  flex-grow: 1;
}
body #sidebar .sidebar-bottom {
  margin-bottom: 10px;
}
body #sidebar .sidebar-bottom img {
  max-width: 100px;
}
body #sidebar ul.components {
  padding: 0;
}
body #sidebar ul p {
  color: #000;
  padding: 10px;
}
body #sidebar ul li a {
  color: #000;
  padding: 8px;
  font-size: 1em;
  display: block;
}
body #sidebar ul li a i.fas {
  width: 25px;
  height: 25px;
  text-align: center;
}
body #sidebar ul li.active > a {
  color: var(--main-color);
  border-left: 3px solid var(--main-color);
}
body #sidebar ul li > a:hover {
  color: var(--main-color-darker);
  border-left: 3px solid var(--main-color-darker);
}
body #sidebar ul li i {
  max-width: 100%;
}
body #sidebar ul li span {
  width: 20px;
}
body #sidebar .credits {
  padding: 10px;
}
body #sidebar .dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
body #content {
  width: calc(100% - 250px);
}
body #content.content-full {
  width: 100%;
}
body #content.sidebar-toggle {
  width: 100%;
}
body .btn-icon,
body .select_client {
  min-width: 40px;
  height: 35px;
  line-height: 35px;
  padding: 0;
  border: 0;
}
body table form {
  display: inline;
}
body table.dataTable {
  width: 100% !important;
}
body table.dataTable > tbody > tr.child span.dtr-title {
  width: 30%;
  font-weight: 500;
}
body table.dataTable > tbody > tr.child ul.dtr-details > li {
  overflow: hidden;
}
body table.dataTable > tbody > tr.child span.dtr-data {
  width: 67%;
  float: right;
  text-align: right;
  word-break: break-word;
}
body table.dataTable tbody > tr.selected,
body table.dataTable tbody > tr > .selected {
  color: var(--bs-table-striped-color);
  background-color: var(--datatable-row-selected);
}
body table.dataTable tbody > tr.selected a,
body table.dataTable tbody > tr > .selected a {
  color: var(--white);
}
body table.dataTable tbody > tr.selected-print,
body table.dataTable tbody > tr > .selected-print {
  color: var(--bs-table-striped-color);
  background-color: var(--datatable-row-selected);
}
body table.dataTable tbody > tr.selected-offer,
body table.dataTable tbody > tr > .selected-offer {
  color: var(--bs-table-striped-color);
  background-color: var(--datatable-row-selected);
}
body table.dataTable.table-striped a {
  text-decoration: underline;
}
body table.dataTable.table-striped tr[data-color="warning_green"] {
  background-color: var(--datatable-row-warning-green);
}
body table.dataTable.table-striped tr[data-color="warning_orange"] {
  background-color: var(--datatable-row-warning-orange);
}
body table.dataTable.table-striped tr[data-color="warning_red"] {
  background-color: var(--datatable-row-warning-red);
}
body table.dataTable.table-striped tr[data-color="warning_red"] td {
  color: var(--white);
}
body table.dataTable.table-striped tr[data-color="warning_red"] td a {
  color: var(--white);
}
body .table-striped thead th {
  vertical-align: middle;
  white-space: nowrap;
  border: 1px solid var(--main-color-light) !important;
}
body .table-striped tbody tr:nth-of-type(odd) {
  background-color: var(--datatable-row-odd);
}
body .table-striped tbody tr:nth-of-type(even) {
  background-color: var(--datatable-row-even);
}
body .table-hover tbody tr:hover {
  background-color: var(--datatable-row-hover);
}
body table.dataTable thead th,
body table.dataTable thead td {
  padding: 5px;
}
body .dataTables_wrapper .dataTables_paginate .paginate_button.current,
body .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #000 !important;
  border: 1px solid var(--main-color);
  background-color: white;
  background: inherit !important;
}
body .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid var(--main-color) !important;
  background: var(--main-color) !important;
}
body .table-bordered {
  border: 1px solid #f4f4f4;
}
body .table-bordered > thead > tr > th,
body .table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
body .table-bordered > thead > tr > th,
body .table-bordered > tbody > tr > th,
body .table-bordered > tfoot > tr > th,
body .table-bordered > thead > tr > td,
body .table-bordered > tbody > tr > td,
body .table-bordered > tfoot > tr > td {
  border: 1px solid #f4f4f4;
}
body table.dataTable thead .sorting:before,
body table.dataTable thead .sorting:after,
body table.dataTable thead .sorting_asc:before,
body table.dataTable thead .sorting_asc:after,
body table.dataTable thead .sorting_desc:before,
body table.dataTable thead .sorting_desc:after,
body table.dataTable thead .sorting_asc_disabled:before,
body table.dataTable thead .sorting_asc_disabled:after,
body table.dataTable thead .sorting_desc_disabled:before,
body table.dataTable thead .sorting_desc_disabled:after {
  top: 50%;
  bottom: initial;
  transform: translate(0, -50%);
}
body table.dataTable.table td,
body table.dataTable.table th {
  vertical-align: middle;
  text-align: center;
  border: 1px solid transparent;
}
body table.dataTable.table td.child {
  text-align: left;
}
body .dataTables_wrapper .dt-buttons.btn-group {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (min-width: 576px) {
  body .dataTables_wrapper .dt-buttons.btn-group {
    margin-top: 0;
    float: right!important;
    text-align: right;
    width: auto;
  }
}
@media (min-width: 576px) {
  body div.dataTables_wrapper div.dataTables_length {
    float: left;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  body div.dataTables_wrapper div.dataTables_length {
    text-align: left;
  }
}
body .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  border: 0!important;
  background: none!important;
}
body table.dataTable tbody td.select-checkbox:before,
body table.dataTable tbody th.select-checkbox:before {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: initial;
  margin-left: initial;
  background-color: #eee;
  border: 1px solid #ced4da;
}
body table.dataTable tr.selected td.select-checkbox:after,
body table.dataTable tr.selected th.select-checkbox:after {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: initial;
  margin-left: initial;
  text-shadow: none;
}
body table.dataTable tbody tr.selected td.select-checkbox:after,
body table.dataTable tbody tr.selected th.select-checkbox:after,
body table.dataTable tbody tr.selected.print td.select-checkbox.print:after,
body table.dataTable tbody tr.selected.print th.select-checkbox.print:after,
body table.dataTable tbody tr.selected.offer td.select-checkbox.offer:after,
body table.dataTable tbody tr.selected.offer th.select-checkbox.offer:after {
  background-color: #2196F3;
}
body table.dataTable tr td.select-checkbox.print:after,
body table.dataTable tr th.select-checkbox.print:after,
body table.dataTable tr td.select-checkbox.offer:after,
body table.dataTable tr th.select-checkbox.offer:after {
  background-color: #eee;
  display: none !important;
}
body table.dataTable tr.selected.print td.select-checkbox.print:after,
body table.dataTable tr.selected.print th.select-checkbox.print:after,
body table.dataTable tr.selected.offer td.select-checkbox.offer:after,
body table.dataTable tr.selected.offer th.select-checkbox.offer:after {
  display: block !important;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: initial;
  margin-left: initial;
  text-shadow: none;
}
body .custom-select-sm {
  font-size: 100%;
  padding-top: 0.2rem;
}
body .button-plus {
  width: 100%;
}
body #filters .form-row {
  align-items: center;
}
body ul.validation-error {
  width: 100%;
  background: var(--validation-bg);
  color: var(--validation-color);
  margin-bottom: 0;
}
body div[data-acc-content] {
  display: none;
}
body .autocomplete-suggestions {
  background: var(--main-white);
  overflow-y: scroll;
  border: 1px solid var(--black);
}
body .autocomplete-suggestions .autocomplete-suggestion {
  padding: 10px 10px;
}
body .select-wrapper {
  background: var(--white) url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg…2M4.33%208.5L0%201L8.66%201z%22%20fill%3D%22%2300AEA9%22%2F%3E%3C%2Fsvg%3E) right 13px center no-repeat;
}
body .select-wrapper select {
  border: 1px solid var(--main-color);
  border-radius: 2px;
  padding: 8px 20px 8px 20px;
  font-size: 18px;
  line-height: 18px;
  width: 100%;
  box-shadow: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: ellipsis;
}
body .datepicker.dropdown-menu {
  z-index: 99999 !important;
}
body .modal {
  background: rgba(0, 0, 0, 0.7);
}
body .modal .modal-body table.dataTable tr {
  cursor: pointer;
}
body .modal-dialog.modal-xl,
body .DTED .modal-dialog {
  max-width: 90%;
  margin: 1rem auto;
}
body .modal-dialog.modal-xl .modal-content,
body .DTED .modal-dialog .modal-content {
  max-height: 93vh;
  overflow-y: scroll;
}
body .modal-dialog.modal-xl.height-xl .modal-content {
  height: 93vh;
}
body .modal-dialog.modal-xl.height-xl .modal-content .bootstrap-select .dropdown-menu {
  max-height: 68vh!important;
}
body .modal-dialog.modal-xl.height-xl .modal-content .bootstrap-select .dropdown-menu .inner {
  max-height: 60vh!important;
}
body .DTE .DTE_Field .col-form-label,
body .DTE .DTE_Field .col-lg-8,
body .DTE .DTE_Field .DTE_Processing_Indicator {
  flex: 100%;
  max-width: 100%;
}
body .acc-step-number {
  margin-right: 0.5rem !important;
  min-width: 26px;
}
body .btn.focus,
body .btn:focus {
  box-shadow: none!important;
}
body .fa {
  min-width: 15px;
}
body .widget_select {
  display: flex;
  align-items: center;
}
body .widget_select .mr5 {
  margin-right: 5px;
}
body .widget_select .cont-input {
  width: 100%;
}
body .widget_select .cont-input button.btn-link {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
body .widget_select .cont-input button.btn-link i {
  color: var(--black);
}
body .widget_select .cont-input button.btn-link:hover i {
  color: var(--main-color);
}
body .widget_select .cont-input button.btn-link.show {
  display: inline-block;
}
body .mb5 {
  margin-bottom: 5px;
}
body .modal-content #client-list tbody tr {
  cursor: pointer;
}
body .container-checkbox {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
body .container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
body .container-checkbox-form {
  margin-bottom: 0.5rem;
}
body .checkmark {
  display: block;
  position: relative;
  height: 20px;
  width: 20px;
  background-color: #eee;
  border: 1px solid #ced4da;
  margin-right: 10px;
}
body .checkmark.checkmark-dt {
  margin: 3px !important;
}
body .container-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}
body .container-checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
}
body .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
body .container-checkbox input:checked ~ .checkmark:after {
  display: block;
}
body .container-checkbox .checkmark:after {
  left: 7px;
  top: 0;
  width: 7px;
  height: 13px;
  border: solid white;
  border-width: 0 3px 4px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
body .bootstrap-select > .dropdown-toggle {
  border: 1px solid var(--border-color);
  white-space: pre-line;
}
body .bootstrap-select.error button.dropdown-toggle,
body select.error,
body input.error,
body textarea.init_summernote.error + .note-editor .note-editable.card-block {
  border: 1px solid var(--validation-color);
  background-color: var(--validation-color_bg) !important;
}
body .bootstrap-select .dropdown-toggle:focus,
body .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: none!important;
}
body .bootstrap-select .dropdown-menu {
  max-width: 100%;
}
body .bootstrap-select .dropdown-menu .dropdown-item {
  overflow-x: auto;
  white-space: normal;
}
body .bootstrap-tagsinput {
  position: relative;
}
body .bootstrap-tagsinput .twitter-typeahead {
  position: initial !important;
}
body .bootstrap-tagsinput .twitter-typeahead .tt-hint {
  display: none !important;
}
body .bootstrap-tagsinput .twitter-typeahead .tt-menu {
  width: calc(100% + 4px);
  left: -2px !important;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
}
body .bootstrap-tagsinput .twitter-typeahead .tt-menu .tt-dataset {
  border: 1px solid var(--main-color-light);
  border-radius: 4px;
}
body .bootstrap-tagsinput .twitter-typeahead .tt-menu .tt-dataset .tt-selectable {
  border-bottom: 1px solid var(--main-color-light);
}
body .btn-square {
  width: 50px;
  height: 50px;
}
body .modal-footer .DTE_Form_Buttons > :not(:last-child) {
  margin-right: 0.25rem;
}
body table.dataTable td.editable {
  cursor: pointer;
}
body table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child,
body table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child {
  padding-left: 45px;
}
body table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before,
body table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > th:first-child:before {
  height: 25px;
  width: 25px;
  line-height: 25px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body table.dataTable > tbody > tr.child ul.dtr-details {
  width: 100%;
}
body table.dataTable > tbody > tr.child ul.dtr-details button {
  height: 40px;
  width: 40px;
}
body table.dataTable > tbody > tr.child ul.dtr-details span.dtr-data div {
  display: inline-block !important;
}
body div.dataTables_wrapper div.dataTables_processing {
  display: none !important;
}
body div.dataTables_wrapper div.dataTables_info {
  font-size: 0.9rem;
}
body .fc-toolbar.fc-header-toolbar {
  margin-bottom: 1rem;
}
body .fc-slats tr {
  font-size: 14px;
  height: 20px;
}
body .fc-slats tr.fc-minor,
body .fc-slats tr.fc-minor td {
  height: 20px;
}
body .fc-event {
  font-size: 1em;
}
body .fc-content {
  color: #000;
}
body .box-white {
  display: flex;
  align-items: center;
  min-height: 90px;
  background: var(--main-white);
  width: 100%;
  border-radius: 2px;
  margin-bottom: 15px;
}
body .info-box-icon {
  border-top-left-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 2px;
  display: block;
  height: 90px;
  width: 90px;
  text-align: center;
  font-size: 45px;
  line-height: 90px;
  color: var(--main-white);
  background: var(--main-color);
}
body .box-white h4 {
  color: var(--main-color);
  padding: 5px 10px;
}
body .fc-button-primary {
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--button-border-color);
}
body .fc-button-primary:hover,
body .fc-button-primary:not(:disabled).fc-button-active,
body .fc-button-primary:not(:disabled):active {
  color: var(--main-color);
  background-color: var(--button-hover-color);
  border-color: var(--button-border-color);
}
body .fc-button-primary:focus,
body .fc-button-primary:not(:disabled).fc-button-active:focus,
body .fc-button-primary:not(:disabled):active:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
body .fc-today-button:disabled {
  display: none;
}
body .fc-event,
body .fc-event-dot {
  background-color: var(--main-color-light);
}
body .fc-event {
  border: 1px solid var(--button-border-color);
}
body .fc-unthemed td.fc-today {
  background: var(--background);
}
body .datepicker .table-sm td,
body .datepicker .table-sm th {
  padding: 0.3rem;
}
body .init-datepicker label,
body .init-datepicker-year label,
body .init-datetimepicker label,
body .init-datetimepicker-meeting label {
  width: 100%;
}
body .init-datepicker .input-group-append {
  display: flex;
}
body .init-datepicker .input-group-append .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
body .list-group-item:hover {
  z-index: unset;
}
body .dropdown-menu.document_category.show,
body .dropdown-menu.filter_document_category.show {
  max-height: 300px;
  overflow-y: auto;
}
body .page-link {
  color: var(--main-color);
  border: 1px solid var(--button-border-color);
}
body .page-link:hover {
  color: var(--main-color);
}
body .page-link:focus {
  box-shadow: none;
}
body .page-item.active .page-link {
  background-color: var(--main-color);
  border-color: var(--button-border-color);
}
body .page-item.active .page-link:hover {
  color: var(--white);
}
@media (max-width: 1280px) {
  body #sidebar {
    margin-left: -280px;
  }
  body #sidebar.active {
    margin-left: 0;
  }
  body #content {
    width: 100%;
  }
  body #content.sidebar-toggle {
    width: calc(100% - 250px);
  }
}
@media (max-width: 768px) {
  body div.dataTables_wrapper div.dataTables_info,
  body div.dataTables_wrapper div.dataTables_paginate {
    white-space: normal;
  }
  body div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    margin-top: 1rem;
  }
  body div.dataTables_wrapper li.paginate_button.previous,
  body div.dataTables_wrapper li.paginate_button.next {
    display: inline-block;
    width: 50%;
  }
  body div.dataTables_wrapper li.paginate_button {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
  body .cont-buttons .col-xl-2 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  body .cont-buttons .offset-xl-10 {
    margin-left: 75%;
  }
  body .cont-buttons .offset-xl-8 {
    margin-left: 50%;
  }
  body .cont-buttons .offset-xl-6 {
    margin-left: 25%;
  }
  body .cont-buttons .offset-xl-4,
  body .cont-buttons .offset-xl-2 {
    margin-left: 0;
  }
}
body .cont-buttons div.hide-in-normal-bar {
  display: none;
}
body .cont-buttons.fixed-cont-buttons {
  background-color: var(--main-color-darker);
  position: fixed;
  z-index: 999;
  width: calc(100% + 12px);
  top: 0;
  left: 0;
  padding: 15px 15px 0px 15px;
}
body .cont-buttons.fixed-cont-buttons div.hide-in-fixed-bar {
  display: none;
}
body .cont-buttons.fixed-cont-buttons div.hide-in-normal-bar {
  display: block;
}
body .cont-buttons-fixed-placeholder {
  height: 50px;
}
body .list-group-item h5.align-items-center {
  cursor: pointer;
  color: var(--main-color);
  font-size: 1.23em;
}
@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
body .spinner-border {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  text-indent: -999em;
  vertical-align: text-bottom;
  border: 0.25em solid;
  border-color: currentColor transparent currentColor currentColor;
  border-radius: 50%;
  animation-name: spinner-border;
  animation-duration: 0.75s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
body .spinner-border-reverse {
  border-color: transparent currentColor transparent transparent;
}
body .spinner-border-reverse::after {
  position: absolute;
  top: -0.25em;
  right: -0.25em;
  bottom: -0.25em;
  left: -0.25em;
  display: inline-block;
  content: "";
  border: 0.25em solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
body .spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}
body .spinner-border-sm.spinner-border-reverse::after {
  border-width: 0.2em;
}
@keyframes spinner-grow {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
body .spinner-grow {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  text-indent: -999em;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  animation-name: spinner-grow;
  animation-duration: 0.75s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
body .spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}
@media (max-width: 1400px) {
  body .fc-toolbar h2 {
    font-size: 1.25em;
  }
  body .fc-button {
    padding: 5px;
  }
  body .fc-left,
  body .fc-center,
  body .fc-right {
    text-align: center;
  }
  body .fc-left {
    width: 20%;
  }
  body .fc-center {
    width: 40%;
  }
  body .fc-right {
    width: 40%;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  body #sidebar {
    margin-left: -80%;
    min-width: 80%;
    max-width: 80%;
  }
  body #content {
    position: absolute;
    left: 0%;
    transition: all 0.3s;
  }
  body #content.sidebar-toggle {
    position: absolute;
    width: 100% !important;
    overflow-x: hidden;
    left: 80%;
  }
  body .fc-toolbar {
    flex-direction: column;
  }
  body .fc-left,
  body .fc-center,
  body .fc-right {
    width: 100%;
  }
  body .fc-center {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  body .modal-footer {
    padding-bottom: 50px;
  }
}
body .bg-sidebar-grey {
  background-color: #ebebeb;
}
body .bg-sidebar-blue {
  background-color: #cfebf7;
}
body .bg-sidebar-green {
  background-color: #d2f8d2;
}
body .bg-sidebar-orange {
  background-color: #ffdb99;
}
body [data-bs-toggle="collapse"]:after {
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  content: "\f078";
  font-weight: 900;
  transform: rotate(180deg) !important;
  transition: all linear 0.25s;
  float: right;
  margin-top: 5px;
}
body [data-bs-toggle="collapse"].collapsed:after {
  transform: rotate(0deg) !important;
}
body .frequency-selector {
  width: 100%;
}
body .frequency-selector select {
  width: 70%;
  margin-right: 10%;
  display: inline-block;
}
body .frequency-selector span {
  width: 10%;
}
body td span.warning,
body tr.warning {
  color: var(--orange);
}
body td span.alarm,
body tr.alarm {
  color: var(--red);
}
body strong.warning,
body li.warning {
  color: var(--red);
  font-weight: 900;
}
body .copy-btn {
  cursor: pointer;
}
@media (max-width: 767px) {
  body .full-btn-mobile {
    flex-direction: column;
  }
  body .full-btn-mobile button {
    width: 100% !important;
    margin: 5px 0 !important;
  }
}
body div.dt-button-collection {
  transform: translateX(-20px);
}
body div.dt-button-collection .dt-button {
  padding: 0.5em 1.5em 0.5em 0.5em;
}
body div.dt-button-collection .dt-button-active:after {
  right: 0.5em;
}
