:root {
  --color-lotion: #FAFAFA;
  --color-cetacean-blue: #070D41;
  --color-chinese-black: #0F1518;
  --color-pumpkin: #ff750f;
  --color-metallic-orange: #e5690d;
  --color-royal-orange: #ff903e;
  --color-royal-orange-rgb: 255, 144, 62;
  --color-philippine-orange: #F77003;
  --color-gainsboro: #D1E0E6;
  --color-anti-flash-white: #EEF1F4;
  --color-dim-gray: #6B6B6B;
  --color-jordy-blue: #86b7fe;
  --color-spanish-gray: #93979A;
  --color-american-silver: #d1d1d1;
  --color-tiffany-blue: #15CAB8;
  --color-golden-poppy: #FEC600;
  --color-picton-blue: #44A6E9;
  --color-alice-blue: #F1F7FF;
  --bs-primary: var(--color-philippine-orange);
  --bs-primary-rgb: 247, 112, 3;
  --bs-btn-border-color: var(--color-metallic-orange);
  --bs-body-color: var(--color-cetacean-blue);
  --bs-body-color-rgb: 7, 13, 65;
  --bs-heading-color: var(--bs-body-color);
  --bs-btn-color: var(--color-pumpkin);
  --bs-border-color: var(--color-gainsboro);
  --bs-table-hover-bg: rgba(var(--bs-primary), .075);
  --bs-table-color-state: var(--color-philippine-orange);
  --bs-table-bg-state: var(--color-royal-orange);
  --bs-emphasis-color-rgb: rgba(var(--bs-primary-rgb), .075);
  --bs-success: #F4FFFF;
  --bs-success-rgb: 244, 255, 255;
  --bs-warning: #FFFBF0;
  --bs-warning-rgb: 255, 251, 240;
  --isla-bg-color-secondaire: var(--color-anti-flash-white);
  --isla-placeholder-color: var(--color-dim-gray);
  --isla-primary-font-family: "Manrope", sans-serif ;
}

a:hover {
  --bs-link-color-rgb: rgba(var(--color-royal-orange-rgb), .1);
}

.form-check-input:checked {
  background-color: var(--color-royal-orange);
  border-color: var(--color-royal-orange);
}
.form-check-input:focus {
  border-color: var(--color-royal-orange);
  outline: 0;
  -webkit-box-shadow: initial;
  -moz-box-shadow: initial;
  box-shadow: initial;
}

.dropdown button {
  height: 30px;
  width: 25px;
  padding: initial;
  margin: initial;
  border: 1px solid var(--color-gainsboro);
  border-radius: 7px;
}
.dropdown button.row-actions {
  background-color: var(--color-lotion);
}

.dropdown-menu.show {
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  -moz-box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  border: initial;
}
.dropdown-menu.show .dropdown-item {
  font-size: 0.75em;
  font-weight: 500;
  color: var(--color-cetacean-blue);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.dropdown-menu.show .dropdown-item:focus, .dropdown-menu.show .dropdown-item:hover {
  color: var(--color-philippine-orange);
  background-color: rgba(var(--color-royal-orange-rgb), 0.075);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.form-select:focus {
  border-color: var(--color-philippine-orange);
  box-shadow: initial;
}

.badge {
  padding: 0.5em 1em;
}

.bg-success {
  border: 1px solid var(--color-tiffany-blue);
  color: var(--color-tiffany-blue) !important;
}

.bg-warning {
  border: 1px solid var(--color-golden-poppy);
  color: var(--color-golden-poppy);
}

.badge-primary {
  background-color: var(--color-alice-blue);
  color: var(--color-picton-blue) !important;
  border: 1px solid var(--color-picton-blue);
}

.form-label {
  font-size: 0.75em;
  font-weight: 400;
  color: var(--color-dim-gray);
  margin-bottom: initial;
}

.form-group label, .form-group .form-label {
  font-size: 0.75em;
  color: var(--color-cetacean-blue);
  font-weight: 400;
  margin-bottom: initial;
}
.form-group label.disabled, .form-group .form-label.disabled {
  background-color: transparent;
  color: var(--color-spanish-gray);
  border-color: var(--color-gainsboro);
}

.form-control {
  font-size: 0.9em;
  border-radius: 0.3em;
  color: var(--bs-body-color);
  background-color: var(--color-lotion);
  border: 1px solid var(--color-gainsboro);
}
.form-control:not(textarea) {
  height: 42px;
  padding: 0 0.7rem;
}
.form-control:not(textarea).form-control-sm {
  height: 36px;
  font-size: 0.8em;
}
.form-control:focus {
  border-color: var(--color-jordy-blue);
  outline: 0;
  box-shadow: initial;
}

.form-check-input[type=checkbox]:indeterminate {
  background-color: var(--color-philippine-orange);
  border-color: var(--color-philippine-orange);
}

.required {
  position: relative;
}
.required:after {
  content: "*";
  position: absolute;
  right: -0.7em;
  color: red;
}

input::placeholder {
  color: var(--isla-placeholder-color);
  font-size: 0.875em;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid var(--color-gainsboro);
  outline: 0;
}
.select2-container--default .select2-selection--single, .select2-container--default .select2-selection--multiple {
  height: 42px;
  display: flex;
  align-items: center;
  background-color: var(--color-lotion);
  border: 1px solid var(--bs-border-color);
  border-radius: 0.3em;
  color: var(--color-cetacean-blue);
}
.select2-container--default .select2-selection--single .select2-selection__arrow, .select2-container--default .select2-selection--multiple .select2-selection__arrow {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b, .select2-container--default .select2-selection--multiple .select2-selection__arrow b {
  background-image: url("../plugins/fa6/svgs/light/chevron-down.svg");
  background-repeat: no-repeat;
  border: none !important;
  height: 12px !important;
  width: 12px !important;
  top: 50%;
  -webkit-transform: translate(-6px, -30%);
  -moz-transform: translate(-6px, -30%);
  -ms-transform: translate(-6px, -30%);
  -o-transform: translate(-6px, -30%);
  transform: translate(-6px, -30%);
}
.select2-container--default .select2-selection--single .select2-selection__placeholder, .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: var(--isla-placeholder-color);
  font-size: 0.875em;
}
.select2-container--default .select2-selection--single .select2-selection__rendered, .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding: 0 0.7rem;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  display: flex;
  gap: 0.25em;
  overflow-x: scroll;
  scrollbar-width: none !important;
}
.select2-container--default .select2-selection--multiple {
  background-color: var(--color-lotion);
  border: 1px solid var(--color-gainsboro);
  min-height: 42px;
  border-radius: 0.4em;
  display: flex;
  align-items: center;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: initial;
  background-color: transparent;
  border: 1px solid var(--color-gainsboro);
  font-size: 0.8em;
  font-weight: 500;
  color: var(--color-cetacean-blue);
  position: relative;
  padding: 0.5em 2em 0.5em 1em;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  position: absolute;
  margin-right: initial;
  line-height: initial;
  right: 0;
  top: 50%;
  font-size: 1.3em;
  color: var(--color-metallic-orange);
  font-weight: 300;
  -webkit-transform: translate(-0.3em, -50%);
  -moz-transform: translate(-0.3em, -50%);
  -ms-transform: translate(-0.3em, -50%);
  -o-transform: translate(-0.3em, -50%);
  transform: translate(-0.3em, -50%);
}
.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: rgba(var(--color-royal-orange-rgb), 0.1);
  color: initial;
  font-weight: 500;
}
.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: rgba(var(--color-royal-orange-rgb), 0.1);
}

.select2-results__option {
  font-size: 0.8em;
  font-weight: 500;
}

.select2-sm .select2-container--default .select2-selection--single, .select2-sm .select2-container--default .select2-selection--multiple {
  height: 36px;
  min-height: 36px;
}
.select2-sm .select2-results__option[aria-selected] {
  font-size: 0.8em;
  font-weight: 500;
}

.select2-container {
  width: 100% !important;
  z-index: 1000;
  padding: 0;
}
.select2-container.select2-container--open {
  z-index: 10000;
}
.select2-container .select2-search--inline .select2-search__field {
  margin-top: initial;
}
.select2-container .select2-results__option[id$="--1"] {
  color: var(--isla-placeholder-color);
}

.is-invalid .select2-selection {
  border-color: var(--bs-form-invalid-border-color) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.is-valid .select2-selection {
  border-color: var(--bs-form-valid-border-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.tag-container {
  border: 1px solid var(--color-gainsboro);
  padding: 0 0.7em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--color-lotion);
  border-radius: 0.3em;
  height: 42px;
}
.tag-container .tag {
  margin-right: 5px;
  background-color: transparent;
  padding: 4px;
  border-radius: 0.3em;
  cursor: pointer;
  border: 1px solid var(--color-gainsboro);
  font-size: 0.8125em;
}
.tag-container .tag .close-btn {
  margin-left: 5px;
  cursor: pointer;
  color: var(--color-royal-orange);
}
.tag-container .tag-input {
  height: 42px;
  font-size: 0.9em;
  background-color: transparent;
  flex: 1;
  margin-left: 5px;
  border: none;
  outline: none;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 0.3em;
}
.btn.btn-sm {
  height: 34px;
}
.btn i {
  font-size: 0.8em;
}
.btn.active {
  border-color: var(--color-gainsboro);
}
.btn.show {
  border-color: var(--color-gainsboro);
}
.btn:first-child:active {
  border-color: var(--color-gainsboro);
}
.btn:hover {
  border-color: var(--color-gainsboro);
}

.btn-light {
  border: 1px solid var(--color-gainsboro);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--color-royal-orange);
  --bs-btn-hover-border-color: var(--color-metallic-orange);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--color-metallic-orange);
  --bs-btn-active-border-color: var(--color-metallic-orange);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-outline-primary {
  --bs-btn-color: #F77003;
  --bs-btn-border-color: #F77003;
  --bs-btn-hover-bg: #F77003;
  --bs-btn-hover-border-color: #F77003;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-bg: #F77003;
  --bs-btn-active-border-color: #F77003;
  --bs-btn-disabled-color: #F77003;
  --bs-btn-disabled-border-color: #F77003;
}

table.table {
  margin-bottom: initial;
  /*border-collapse: separate;*/
  border-radius: 7px;
}
table.table.list-crud > thead > tr {
  height: 2.8125em;
  vertical-align: middle;
}
table.table.list-crud > thead > tr th {
  font-size: 0.6875em;
  font-weight: 400;
  color: var(--color-dim-gray);
  text-transform: uppercase;
}
table.table.list-crud > tbody > tr {
  height: 3.75em;
  vertical-align: middle;
  cursor: pointer;
}
table.table.list-crud > tbody > tr td {
  font-size: 0.8em;
  font-weight: 600;
  color: var(--color-chinese-black);
}
table.table.list-crud > tbody > tr td label {
  color: var(--color-chinese-black);
}
table.table.list-crud > tbody > tr td span.secondaire {
  color: var(--color-spanish-gray);
  font-weight: 400;
}
table.table.list-crud > tbody > tr td span.profile {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  overflow: hidden;
  border: 1px solid #b7b4b4;
  margin-right: 0.7em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
table.table.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--color-philippine-orange);
  --bs-table-bg-state: rgba(var(--color-royal-orange-rgb), .08);
}
table.table > :not(caption):not(thead):last-child:not(button) > * {
  background-color: transparent;
  border-bottom-width: 0;
}

.dataTables_wrapper .dataTables_filter {
  float: left !important;
  border-radius: 0.5em !important;
  position: absolute;
  top: -3.1875em;
}
.dataTables_wrapper .dataTables_filter input {
  border-radius: 0.5em;
  margin-left: 0;
}
.dataTables_wrapper .dataTables_paginate {
  margin-top: 0.625em;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  border: 1px solid var(--color-spanish-gray) !important;
  border-radius: 0.3125em !important;
  padding: 0;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  border: 1px solid var(--color-philippine-orange) !important;
  border-radius: 0.3125em !important;
  background: transparent !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  border: 1px solid var(--color-philippine-orange) !important;
  border-radius: 0.3125em !important;
  background: transparent !important;
}

table.dataTable.no-footer {
  border: 1px solid var(--color-american-silver) !important;
  border-radius: 0.5em !important;
}
table.dataTable thead th, table.dataTable thead td {
  border-bottom: 1px solid var(--color-american-silver);
}

.tab-links {
  -webkit-transform: translateY(0.7em);
  -moz-transform: translateY(0.7em);
  -ms-transform: translateY(0.7em);
  -o-transform: translateY(0.7em);
  transform: translateY(0.7em);
}
.tab-links li {
  min-width: 90px;
  position: relative;
  margin: 0 0.4em;
  padding: 0 1em;
  text-align: center;
}
.tab-links li:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: #D8D8D8;
  bottom: -0.3em;
  left: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.tab-links li.active:after {
  background-color: #F99543;
}
.tab-links li.active a {
  color: #070D41;
  font-weight: 600;
}
.tab-links li.active a:hover {
  color: #070D41;
  font-weight: 600;
}
.tab-links li a {
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  color: #D8D8D8;
  font-size: 0.8125em;
  font-weight: 400;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.tab-links li a small {
  margin-left: 1em;
}
.tab-links li a:hover {
  color: rgba(var(--bs-body-color-rgb), 0.5);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.steeps .steeps-header .nav-fill .nav-item {
  display: flex;
  justify-content: center;
}
.steeps .steeps-header .nav-fill .nav-item .nav-link {
  font-weight: 400;
  font-size: 0.9em;
  background: initial;
  color: #D1E0E6;
  border-bottom: 2px solid #D1E0E6;
  border-radius: initial;
  width: 95%;
}
.steeps .steeps-header .nav-fill .nav-item .nav-link.active {
  font-weight: 600;
  color: #070D41;
  border-color: var(--color-pumpkin);
}

small, .small {
  font-size: 0.8em;
}

.cursor-pointer {
  cursor: pointer;
}

.min-h-100 {
  min-height: 100%;
}

.w-20 {
  width: 20%;
}

.content-h {
  height: calc(100% - 2em);
  max-height: calc(100% - 2em);
}

.border-shadaw {
  background: white;
  padding: 1em;
  border-radius: 0.4375em;
}

.loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.09);
  display: none;
}
.loader span {
  height: 8px;
  aspect-ratio: 5;
  position: absolute;
  top: 50%;
  left: 50%;
  background: radial-gradient(closest-side at 37.5% 50%, black 94%, black) 0/26.6666666667% 100%;
  -webkit-animation: l47 0.75s infinite;
  -o-animation: l47 0.75s infinite;
  animation: l47 0.75s infinite;
  -webkit-transform: translate(0.6em, -0.6em);
  -moz-transform: translate(0.6em, -0.6em);
  -ms-transform: translate(0.6em, -0.6em);
  -o-transform: translate(0.6em, -0.6em);
  transform: translate(0.6em, -0.6em);
}

.scroller {
  overflow: hidden;
  overflow-y: scroll;
}
.scroller::-webkit-scrollbar {
  width: 0.1875em;
}
.scroller::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: transparent;
}
.scroller::-webkit-scrollbar-track:hover {
  background-color: transparent;
}
.scroller::-webkit-scrollbar-track:active {
  background-color: transparent;
}
.scroller::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: var(--color-philippine-orange);
}
.scroller::-webkit-scrollbar-thumb :hover {
  background-color: var(--color-philippine-orange);
}
.scroller::-webkit-scrollbar-thumb :active {
  background-color: var(--color-philippine-orange);
}

.horizontal-scroller {
  overflow: hidden;
  overflow-x: scroll;
}
.horizontal-scroller::-webkit-scrollbar {
  height: 0.1875em;
}
.horizontal-scroller::-webkit-scrollbar-track {
  border-radius: 0;
  background-color: transparent;
}
.horizontal-scroller::-webkit-scrollbar-track:hover {
  background-color: transparent;
}
.horizontal-scroller::-webkit-scrollbar-track:active {
  background-color: transparent;
}
.horizontal-scroller::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: var(--color-philippine-orange);
}
.horizontal-scroller::-webkit-scrollbar-thumb :hover {
  background-color: var(--color-philippine-orange);
}
.horizontal-scroller::-webkit-scrollbar-thumb :active {
  background-color: var(--color-philippine-orange);
}

#main {
  height: 100vh;
  display: flex;
  /* nav */
}
#main nav {
  width: 18%;
  max-width: 260px;
  padding: 0.7em 0 0.7em 0.7em;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#main nav #sidebar-menu {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  border-radius: 0.375em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 3px 5px;
  -moz-box-shadow: rgba(0, 0, 0, 0.04) 0 3px 5px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 3px 5px;
}
#main nav #sidebar-menu .sidebar-menu-header {
  display: flex;
  height: 5em;
  justify-content: center;
  align-items: center;
}
#main nav #sidebar-menu .sidebar-menu-header .logo {
  display: flex;
  height: 35px;
  width: 80%;
  background-image: url("/storage/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#main nav #sidebar-menu .sidebar-menu-body {
  flex: 1;
  overflow-y: scroll;
  overflow-x: hidden;
}
#main nav #sidebar-menu .sidebar-menu-body ul li {
  display: block;
  width: 100%;
  margin-bottom: 0.4em;
  position: relative;
}
#main nav #sidebar-menu .sidebar-menu-body ul li.menu-title {
  padding: 0.3em 1em;
  letter-spacing: 0.05em;
  pointer-events: none;
  cursor: default;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(var(--bs-body-color-rgb), 0.5);
  font-weight: 800;
}
#main nav #sidebar-menu .sidebar-menu-body ul li ul {
  display: none;
}
#main nav #sidebar-menu .sidebar-menu-body ul li.open-submenu ul {
  display: initial;
}
#main nav #sidebar-menu .sidebar-menu-body ul li.open-submenu ul li {
  padding-left: 2em;
}
#main nav #sidebar-menu .sidebar-menu-body ul li.active a:after {
  width: 100%;
}
#main nav #sidebar-menu .sidebar-menu-body ul li.active a:before {
  width: 0.3125em;
}
#main nav #sidebar-menu .sidebar-menu-body ul li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 35px;
  padding: 0 1.8em;
  color: var(--bs-body-color);
  font-size: 0.8em;
  font-weight: 500;
  text-decoration: none !important;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
#main nav #sidebar-menu .sidebar-menu-body ul li a:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 0;
  left: 0;
  background-color: rgba(var(--color-royal-orange-rgb), 0.1);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
#main nav #sidebar-menu .sidebar-menu-body ul li a:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0;
  left: 0;
  background-color: var(--color-philippine-orange);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
#main nav #sidebar-menu .sidebar-menu-body ul li a:hover {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
#main nav #sidebar-menu .sidebar-menu-body ul li a:hover:after {
  width: 100%;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
#main nav #sidebar-menu .sidebar-menu-body ul li a:hover:before {
  width: 5px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
#main nav #sidebar-menu .sidebar-menu-body ul li a span {
  padding-left: 2.3em;
}
#main nav #sidebar-menu .sidebar-menu-body ul li a i {
  font-size: 1.4em;
  color: var(--bs-primary);
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(1.2em, -50%);
  -moz-transform: translate(1.2em, -50%);
  -ms-transform: translate(1.2em, -50%);
  -o-transform: translate(1.2em, -50%);
  transform: translate(1.2em, -50%);
}
#main nav #sidebar-menu .sidebar-menu-body ul li span.badge {
  background-color: var(--color-pumpkin);
  position: absolute;
  right: 1em;
}
#main nav #sidebar-menu .sidebar-menu-footer ul li {
  display: block;
  width: 100%;
  margin-bottom: 0.4em;
}
#main nav #sidebar-menu .sidebar-menu-footer ul li.menu-title {
  padding: 0.3em 1em;
  letter-spacing: 0.05em;
  pointer-events: none;
  cursor: default;
  font-size: 11px;
  text-transform: uppercase;
  color: rgba(var(--bs-body-color-rgb), 0.5);
  font-weight: 800;
}
#main nav #sidebar-menu .sidebar-menu-footer ul li.active a:before {
  width: 0.3125em;
}
#main nav #sidebar-menu .sidebar-menu-footer ul li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 35px;
  padding: 0 1.8em;
  color: var(--bs-body-color);
  font-size: 0.8em;
  font-weight: 500;
  text-decoration: none !important;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
#main nav #sidebar-menu .sidebar-menu-footer ul li a:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0;
  left: 0;
  background-color: var(--color-philippine-orange);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
#main nav #sidebar-menu .sidebar-menu-footer ul li a:hover {
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
#main nav #sidebar-menu .sidebar-menu-footer ul li a:hover:before {
  width: 5px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
#main nav #sidebar-menu .sidebar-menu-footer ul li a span {
  margin-left: 0.5em;
}
#main nav.closed {
  width: 5.625em;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#main nav.closed #sidebar-menu .sidebar-menu-header .logo {
  background-image: url("/storage/logo-s.png");
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
#main nav.closed #sidebar-menu .sidebar-menu-body ul li, #main nav.closed #sidebar-menu .sidebar-menu-footer ul li {
  display: block;
  width: 100%;
}
#main nav.closed #sidebar-menu .sidebar-menu-body ul li a.has-arrow::after, #main nav.closed #sidebar-menu .sidebar-menu-footer ul li a.has-arrow::after {
  display: none;
}
#main nav.closed #sidebar-menu .sidebar-menu-body ul li a:before, #main nav.closed #sidebar-menu .sidebar-menu-footer ul li a:before {
  content: "";
  display: none;
}
#main nav.closed #sidebar-menu .sidebar-menu-body ul li a span, #main nav.closed #sidebar-menu .sidebar-menu-footer ul li a span {
  display: none;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transition-delay: 100ms;
  -moz-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  transition-delay: 100ms;
}
#main nav.closed #sidebar-menu .sidebar-menu-body ul.sub-menu, #main nav.closed #sidebar-menu .sidebar-menu-footer ul.sub-menu {
  display: none !important;
}
#main main {
  flex: 1;
  overflow-y: auto;
  padding: 1em 0;
}
#main main > section {
  height: 100%;
}
#main main > section #content {
  height: calc(100% - 60px);
  overflow: hidden;
  overflow-y: scroll;
  padding-top: 2em;
  border-radius: 0.5em;
}
#main main > section #content #breadcrumb li {
  position: relative;
  margin-right: 1.2em;
}
#main main > section #content #breadcrumb li:not(:last-child):after {
  content: "\f105";
  position: absolute;
  right: -0.625em;
  font-family: "Font Awesome 6 Pro", sans-serif;
  color: var(--color-spanish-gray);
  font-size: 0.6em;
  font-weight: 300;
  -webkit-transform: translate(6px, 6px);
  -moz-transform: translate(6px, 6px);
  -ms-transform: translate(6px, 6px);
  -o-transform: translate(6px, 6px);
  transform: translate(6px, 6px);
}
#main main > section #content #breadcrumb li a, #main main > section #content #breadcrumb li span {
  text-decoration: none;
  font-size: 0.9375em;
  font-weight: 400;
  color: var(--color-spanish-gray);
}
#main main > section #content .nav-secondaire ul li {
  padding-left: 1.5em;
  margin: 0.4em 0;
}
#main main > section #content .nav-secondaire ul li.menu-title {
  padding: 0.3em 1em 0.3em 0;
  letter-spacing: 0.05em;
  pointer-events: none;
  cursor: default;
  font-size: 0.6875em;
  text-transform: uppercase;
  color: rgba(var(--bs-body-color-rgb), 0.5);
  font-weight: 800;
}
#main main > section #content .nav-secondaire ul li a {
  font-size: 0.9em;
  font-weight: 500;
  color: var(--color-cetacean-blue);
}
#main .filter {
  position: relative;
}
#main .filter input {
  padding-left: 2em;
}
#main .filter i.fa-magnifying-glass {
  position: absolute;
  top: 50%;
  font-size: 0.9em;
  -webkit-transform: translate(1em, -50%);
  -moz-transform: translate(1em, -50%);
  -ms-transform: translate(1em, -50%);
  -o-transform: translate(1em, -50%);
  transform: translate(1em, -50%);
}

.paginat span, .paginat a {
  min-width: 30px;
  height: 33px;
  padding: 0 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875em;
  border: 1px solid var(--color-philippine-orange);
  border-radius: 7px;
  margin: 0 4px;
  text-decoration: none;
  color: var(--color-philippine-orange);
}
.paginat span.disabled {
  background-color: transparent;
  color: var(--color-spanish-gray);
  border-color: var(--color-gainsboro);
}
.paginat span.current {
  background-color: var(--color-philippine-orange);
  color: white;
}

.modal-area {
  border: 1px solid var(--color-gainsboro);
  padding: 2em 1.5em;
  background-color: var(--color-lotion);
  border-radius: 7px;
  min-height: 300px;
}
.modal-area input {
  background-color: white;
}
.modal-area textarea {
  background-color: white;
}
.modal-area .select2-container--default .select2-selection--multiple, .modal-area .select2-container--default .select2-selection--single {
  background-color: white;
}

/* top navbar */
.navbar-top {
  height: 3.75em;
}
.navbar-top h1 {
  color: var(--bs-body-color);
  font-size: 1.25em;
  font-weight: 600;
  margin: initial;
}
.navbar-top button.btn-collapse {
  border: initial;
}
.navbar-top button.btn-collapse i {
  font-size: 1.2em;
}
.navbar-top button#page-header-notifications-dropdown {
  font-size: 1.2em;
  position: relative;
}
.navbar-top button#page-header-notifications-dropdown.has-notifs {
  -webkit-animation: tada 1.5s ease infinite;
  -o-animation: tada 1.5s ease infinite;
  animation: tada 1.5s ease infinite;
}
.navbar-top button#page-header-notifications-dropdown.has-notifs:before {
  content: "";
  display: flex;
  width: 0.5em;
  height: 0.5em;
  background-color: var(--color-philippine-orange);
  position: absolute;
  border-radius: 50%;
  right: 50%;
  top: 50%;
  -webkit-transform: translate(0.6em, -0.6em);
  -moz-transform: translate(0.6em, -0.6em);
  -ms-transform: translate(0.6em, -0.6em);
  -o-transform: translate(0.6em, -0.6em);
  transform: translate(0.6em, -0.6em);
}
.navbar-top button#page-header-notifications-dropdown i {
  font-size: 1.2em;
}
.navbar-top button#page-header-search-dropdown i {
  font-size: 1.2em;
}
.navbar-top a#page-header-user-dropdown .header-profile-user {
  height: 3.125em;
  width: 3.125em;
  background-color: var(--color-pumpkin);
  padding: 0.0625em;
}
.navbar-top a#page-header-user-dropdown ul li {
  color: var(--color-cetacean-blue);
  font-weight: 300;
  font-size: 0.85em;
  text-align: left;
  text-transform: capitalize;
}
.navbar-top a#page-header-user-dropdown ul li.name {
  font-weight: 600;
  text-transform: uppercase;
}
.navbar-top a#page-header-user-dropdown i.fa-chevron-down {
  font-size: 0.8em;
}
.navbar-top .separator {
  display: block;
  border-top: 1px solid #ddd;
  margin-top: 0.5em;
}
.navbar-top #notifs-detail {
  width: 21.875em;
  border: initial;
  --bs-dropdown-zindex: 1001;
  -webkit-box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 1px 3px 1px;
  -moz-box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 1px 3px 1px;
  box-shadow: rgba(60, 64, 67, 0.3) 0 1px 2px 0, rgba(60, 64, 67, 0.15) 0 1px 3px 1px;
}
.navbar-top #notifs-detail .list-notifs {
  max-height: 230px;
}
.navbar-top #notifs-detail .list-notifs > div {
  border-bottom: 1px solid var(--color-gainsboro);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.navbar-top #notifs-detail .list-notifs > div:hover {
  background-color: rgba(var(--bs-body-color-rgb), 0.05);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.navbar-top #notifs-detail .list-notifs > div .avatar {
  height: 2.5rem;
  width: 2.5rem;
  line-height: 2.5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgb(243, 244, 246);
}
.navbar-top #notifs-detail .list-notifs > div .notif-message span {
  color: var(--bs-body-color);
  font-weight: 200;
  font-size: 0.85em;
}
.navbar-top #notifs-detail .list-notifs > div .notif-message span.name {
  font-weight: 600;
}
.navbar-top #notifs-detail .list-notifs > div span.notif-time {
  font-weight: 300;
  font-size: 0.75em;
}
.navbar-top #search_area {
  width: 300px;
}

.rating {
  color: white;
  -webkit-transition: color 300ms ease;
  -moz-transition: color 300ms ease;
  -ms-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  transition: color 300ms ease;
}
.rating i.selected, .rating i:hover, .rating i:hover ~ i {
  color: var(--bs-primary);
  -webkit-transition: color 300ms ease;
  -moz-transition: color 300ms ease;
  -ms-transition: color 300ms ease;
  -o-transition: color 300ms ease;
  transition: color 300ms ease;
}

/* CTA */
.pointer tbody tr {
  cursor: pointer;
}

.cta_contact_infos li {
  font-weight: 300;
}
.cta_contact_infos li h6 {
  margin: initial;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.drop-zone {
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  padding: 0;
  cursor: pointer;
  background-color: white;
  border: 1px solid #D1E0E6;
  border-radius: 7px;
}
.drop-zone .drop-zone__prompt {
  font-size: 12px;
  color: #93979A;
}
.drop-zone .image_bg {
  width: 40px;
  -ms-filter: invert(100%) sepia(52%) saturate(1066%) hue-rotate(171deg) brightness(94%) contrast(91%);
  filter: invert(100%) sepia(52%) saturate(1066%) hue-rotate(171deg) brightness(94%) contrast(91%);
}

.list-images {
  height: 80px;
}
.list-images li {
  width: 65px;
  height: 80px;
  border: 1px solid #D1E0E6;
  border-radius: 7px;
  background-color: #FAFAFA;
  background-size: 90%;
  background-position: center;
  background-repeat: no-repeat;
}
.list-images li a {
  cursor: pointer;
  -webkit-transform: translate(6px, -8px);
  -moz-transform: translate(6px, -8px);
  -ms-transform: translate(6px, -8px);
  -o-transform: translate(6px, -8px);
  transform: translate(6px, -8px);
}

* {
  font-family: var(--isla-primary-font-family);
}

body {
  background-color: var(--color-anti-flash-white);
}

h4.title {
  font-size: 1em;
  font-weight: 600;
}

.bg-islahate {
  --bs-bg-opacity: 1;
  background-color: transparent;
  color: #f77002 !important;
  border: 1px solid #f77002;
  line-height: initial;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.bg-blocked {
  --bs-bg-opacity: 1;
  background-color: transparent;
  color: #e2362f !important;
  border: 1px solid #E2362F;
  line-height: initial;
  font-weight: 600;
  letter-spacing: 0.7px;
}

/*      1- login         */
.body-secondaire {
  background-color: var(--isla-bg-color-secondaire);
}

.login-form {
  background-color: white;
  width: 450px;
  max-width: 450px;
  padding: 4em 2.5em 5em;
  border-radius: 0.625em;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: rgba(0, 0, 0, 0.04) 0 3px 5px;
  -moz-box-shadow: rgba(0, 0, 0, 0.04) 0 3px 5px;
  box-shadow: rgba(0, 0, 0, 0.04) 0 3px 5px;
}

.auth-logo a img {
  max-height: 2.8125em;
}

.auth-pass-inputgroup button {
  position: absolute !important;
  border: initial;
  right: 0;
  top: 50%;
  height: 40px;
  -webkit-transform: translate(-2px, -50%);
  -moz-transform: translate(-2px, -50%);
  -ms-transform: translate(-2px, -50%);
  -o-transform: translate(-2px, -50%);
  transform: translate(-2px, -50%);
}
.auth-pass-inputgroup button:hover {
  background-color: initial;
}

.detail {
  border: 1px solid #D1E0E6;
  background-color: #FAFAFA;
  border-radius: 7px;
  padding: 1em;
}
.detail .detail-head .profil_image_container {
  height: 150px;
  width: 150px;
  border: 1px solid var(--bs-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}
.detail .detail-head .profil_image_container img {
  max-width: 70%;
  max-height: 70%;
}
.detail .detail-head .profil_image_container img.full {
  max-width: initial;
  max-height: initial;
  width: 100%;
}
.detail .detail-body ul li {
  padding: 1em 0;
}
.detail .detail-body ul li:not(:last-child) {
  border-bottom: 1px solid var(--color-gainsboro);
}
.detail .detail-body ul li span {
  font-size: 13px;
  font-weight: 600;
  color: #6B6B6B;
}
.detail .detail-body ul li span:last-child {
  color: #070D41;
  text-transform: uppercase;
}

.upload_profile {
  position: absolute;
  display: flex;
  width: 35px;
  height: 35px;
  background: #ff750f;
  color: white;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  right: calc(50% - 75px);
  bottom: calc(50% - 75px);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

/* CTA */
.ticket-counter li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #15CAB8;
  background-color: #F4FFFF;
  color: #15CAB8;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

span.cta_logo {
  display: flex;
  width: 40px;
  height: 40px;
  border: 1px solid var(--bs-border-color);
  border-radius: 50%;
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
  background-color: white;
}
span.cta_logo.full {
  background-size: contain;
}

/* ERRORS */
.error_500, .under_construction {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  background-color: rgba(0, 0, 0, 0.05);
}
.error_500 h6, .under_construction h6 {
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.3);
  font-weight: 100;
  margin: initial;
}
.error_500 h6 i, .under_construction h6 i {
  font-size: 2em;
}

.toast-custom {
  background-color: purple;
  color: black;
}

/* mobile styles here */
@media (max-width: 575.98px) {
  * {
    scrollbar-width: none; /* Firefox */
  }
  *::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  *::-webkit-scrollbar-track {
    display: none; /* Chrome/Safari */
  }
  *::-webkit-scrollbar-thumb {
    display: none; /* Chrome/Safari */
  }
  .login-form {
    width: 95%;
    padding-inline: 1em;
  }
  #main nav {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0px !important;
  }
  #main nav.closed {
    width: 0px !important;
  }
  #main nav.closed .sidebar-menu-header button.btn-collapse {
    display: none !important;
  }
  #main nav .sidebar-menu-header a.logo {
    position: relative;
    left: -20px;
  }
  #main main {
    padding: 0px !important;
  }
  #main main section {
    padding-inline: 0px !important;
  }
  #main main section .navbar-top {
    background-color: white;
    width: 100%;
    left: 0;
    top: 0;
    height: 75px;
  }
  #main main section .navbar-top button.btn-collapse {
    padding: 0.8rem !important;
    background: none;
  }
  #main main section .navbar-top button.btn-collapse i {
    color: var(--color-philippine-orange);
    font-size: 1.3em;
    font-weight: 550;
  }
  #main main section .navbar-top a.mobile-logo {
    display: block !important;
    align-content: center;
  }
  #main main section .navbar-top a.mobile-logo img {
    height: 25px;
    margin-bottom: 5px;
  }
  #main main section .navbar-top h1 {
    display: none !important;
  }
  #main main section .navbar-top button#page-header-search-dropdown i {
    font-size: 1em;
  }
  #main main section .navbar-top button#page-header-notifications-dropdown {
    font-size: 1em;
  }
  #main main section .navbar-top a#page-header-user-dropdown .header-profile-user {
    height: 2.125em;
    width: 2.125em;
  }
  #main main section .navbar-top a#page-header-user-dropdown ul {
    display: none;
  }
  #main main section .navbar-top a#page-header-user-dropdown ul li {
    font-size: 12px;
  }
  #main main section .navbar-top a#page-header-user-dropdown ul li.name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #main main section #content {
    height: auto;
    padding-inline: 0.7em;
    padding-top: 1em;
  }
  #main main section #content .mobile-page-title {
    display: block !important;
    font-size: 18px;
    margin-bottom: 0px !important;
  }
  #main main section #content #breadcrumb {
    flex-wrap: wrap;
  }
  #main main section #content #ticketFilter {
    border-color: var(--color-philippine-orange);
  }
  #main main section #content #ticket_text_filter {
    display: none;
  }
  #main main section #content #ticket_text_filter i.fa-magnifying-glass {
    display: none;
  }
  #main main section #content #filters #clear_filters {
    margin: auto;
  }
  #main main section #content .tab-selector {
    display: block !important;
  }
  #main main section #content #ticket_detail_section .ticket-detail-header {
    display: none !important;
    background-color: transparent !important;
  }
  #main main section #content #ticket_detail_section .border-shadaw .div_detail_contant {
    margin-top: 30px !important;
  }
  #main main section #content #ticket_detail_section .div_detail_contant .border-shadaw {
    padding-top: 50px !important;
  }
  #main main section #content #ticket_detail_section #div_activite .contenu {
    width: 100%;
  }
  #main main section #content #ticket_detail_section .comment {
    flex-direction: column;
  }
  #main main section #content #ticket_detail_section .comment .comment-head .row.col-6 {
    padding-right: 0px !important;
  }
  #main main section #content #ticket_detail_section .comment .comment-head .form-group.col-6 {
    width: 100% !important;
    margin-bottom: 5px;
    padding-right: 0px !important;
  }
  #main main section #content #ticket_detail_section .comment .comment-head .dropdown-submenu .dropdown-menu {
    display: none;
  }
  #main main section #content #ticket_detail_section .comment .comment-head button#mainDropdown span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #main main section #content #ticket_detail_section .comment button#sendComment {
    display: none !important;
  }
  #main main section #content #ticket_detail_section .comment button#mobile_sendComment {
    display: block !important;
  }
  #main main section #content #ticket_infos {
    width: 100% !important;
    left: 0px;
    top: initial !important;
    padding-top: 0px !important;
    position: absolute;
  }
  #main main section #content #ticket_infos .ticket-header:first-child {
    padding-top: 50px;
  }
  .dash .border-shadaw {
    padding-inline: 0px !important;
    padding-bottom: 5px;
  }
  .dash .border-shadaw #clear_filters_btn {
    margin: auto;
  }
  .dash .border-shadaw h6#title {
    width: 98%;
    margin: 0 auto;
  }
  .dash .border-shadaw .chart_title {
    width: 98%;
    margin-inline: auto !important;
  }
  .dash .border-shadaw .graph-container {
    margin-top: 0px !important;
  }
  .dash .border-shadaw .horizontal-scroller {
    display: none !important;
  }
  .dash #filters {
    margin: 0px !important;
    padding: 0px !important;
    border: none !important;
  }
  .mobile-swiper .swiper-wrapper {
    flex-wrap: nowrap !important;
    margin: 0px;
  }
  .mobile-swiper .swiper-wrapper .swiper-slide {
    opacity: 0; /* hide all slides */
    pointer-events: none; /* prevent clicks */
    transition: opacity 0.3s;
  }
  .mobile-swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
    opacity: 1; /* show only active */
    pointer-events: auto;
  }
  .mobile-swiper .swiper-wrapper .slider-field {
    padding-right: 5px;
  }
  .mobile-swiper .swiper-wrapper .slider-field input {
    background-color: var(--color-anti-flash-white) !important;
  }
  .mobile-swiper .swiper-wrapper .swiper-slide.card {
    width: 100% !important;
    margin: 0px !important;
    padding-inline: 20%;
    background-color: transparent !important;
  }
  .mobile-swiper .swiper-wrapper .swiper-slide.card .card-text {
    font-size: 1.2em;
  }
  .mobile-swiper .swiper-pagination {
    position: relative !important;
    bottom: 0px !important;
    padding-top: 5px;
  }
  .mobile-swiper .swiper-pagination .swiper-pagination-bullet {
    height: 10px;
    width: 10px;
  }
  .mobile-swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-philippine-orange) !important;
  }
}
/* extra */
#filters .swiper-wrapper {
  z-index: 0 !important;
}

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