@charset "UTF-8";
.dt-container {
  margin-block: 3rem;
}

table.dataTable thead > tr:hover {
  outline-offset: initial;
}

.dt-buttons .dt-button {
  background: rgba(12, 11, 11, 0.04) !important;
  color: rgb(12, 11, 11) !important;
  border-radius: 6px !important;
  border: none !important;
  padding: 0.25rem 0.5rem !important;
}
.dt-buttons .dt-button:hover {
  background: rgba(12, 11, 11, 0.1) !important;
}
.dt-buttons div[role=menu] .dt-button {
  border-radius: unset !important;
  box-sizing: border-box;
}
.dt-buttons div[role=menu] .dt-button:hover {
  background: rgba(12, 11, 11, 0.08) !important;
}
.dt-buttons div[role=menu] .dt-button:not(:hover) {
  background: unset !important;
  color: unset !important;
  border: none !important;
}

.dt-search {
  display: flex !important;
  justify-content: flex-end !important;
  gap: 0.5rem !important;
}
.dt-search input:focus-visible {
  outline: 1px solid rgb(12, 11, 11);
}

.dt-info[role=status] {
  color: #aaa !important;
  font-size: 14px !important;
}

.dt-paging .dt-paging-button {
  background: transparent !important;
  font-size: 14px !important;
}

.dt-empty {
  color: #919191 !important;
}

.calentim-header .calentim-header-start-day, .calentim-header .calentim-header-end-day {
  color: rgb(217, 209, 195) !important;
}
.calentim-header .calentim-header-start-date, .calentim-header .calentim-header-end-date {
  color: rgb(12, 11, 11) !important;
  letter-spacing: 1px !important;
}

.calentim-ranges .calentim-range {
  color: rgb(217, 209, 195) !important;
}

.files-section.on-drag-over .drop-zone {
  display: flex !important;
}
.files-section.on-drag-over .files-list:empty:after {
  content: "" !important;
}
.files-section .header-wrapper {
  display: flex;
  justify-content: space-between;
}
.files-section .btn {
  float: unset;
}
.files-section #file-upload-input {
  display: none;
}
.files-section .breadcrumb-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem;
  background: #fff;
  border-radius: 6px;
}
.files-section .breadcrumb-wrapper .node-link {
  display: flex;
  gap: 0.5rem;
  width: fit-content;
  align-items: center;
}
.files-section .breadcrumb-wrapper .node-link.on-drag-over .directory-name {
  background: rgba(59, 82, 104, 0.1019607843);
}
.files-section .breadcrumb-wrapper .node-link .directory-name {
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  color: rgb(59, 82, 104);
  font-weight: 600;
  cursor: pointer;
}
.files-section .breadcrumb-wrapper .node-link .directory-name:hover {
  background: rgba(59, 82, 104, 0.1019607843);
}
.files-section .breadcrumb-wrapper .node-link .node-link-separator {
  font-size: 12px;
  color: #aaa;
}
.files-section .folder-file-content {
  min-height: 100px;
  position: relative;
}
.files-section .folder-file-content .drop-zone {
  position: absolute;
  background: #fff;
  height: 100%;
  width: 100%;
  z-index: 2;
  opacity: 0.8;
  border: 1px dashed rgb(217, 209, 195);
  border-radius: 4px;
  display: none;
}
.files-section .folder-file-content .drop-zone:after {
  content: "Drag/Drop files here";
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  font-weight: 600;
  font-size: 16pt;
  background: rgba(217, 209, 195, 0.3);
  cursor: pointer;
}
.files-section .folder-file-content .directories-wrapper {
  display: flex;
  padding: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.files-section .folder-file-content .directories-wrapper .directory {
  text-align: center;
  cursor: pointer;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  transition: background 0.15s ease-in-out;
  width: 150px;
  height: fit-content;
}
.files-section .folder-file-content .directories-wrapper .directory.on-drag-over {
  background: rgba(87, 199, 208, 0.1215686275);
}
.files-section .folder-file-content .directories-wrapper .directory:hover {
  background: rgba(87, 199, 208, 0.1215686275);
}
.files-section .folder-file-content .directories-wrapper .directory .icon .fas {
  color: #ff8300;
  font-size: 60px;
}
.files-section .folder-file-content .directories-wrapper .directory .name {
  font-size: 12px;
}
.files-section .folder-file-content .files-wrapper {
  position: relative;
  min-height: 100px;
}
.files-section .folder-file-content .files-wrapper .files-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.files-section .folder-file-content .files-wrapper .files-list:empty:after {
  content: "No files...";
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aaa;
  letter-spacing: 2px;
}
.files-section .folder-file-content .files-wrapper .files-list .file-holder {
  max-width: 200px;
  cursor: pointer;
  text-align: center;
  font-size: 10pt;
  transition-duration: 0.1s;
  padding: 5px;
  border-radius: 20px;
  text-decoration: none;
}
.files-section .folder-file-content .files-wrapper .files-list .file-holder .icon-holder {
  margin-bottom: 5px;
}
.files-section .folder-file-content .files-wrapper .files-list .file-holder .icon-holder .fas {
  font-size: 36pt;
}
.files-section .folder-file-content .files-wrapper .files-list .file-holder .icon-holder .fas.fa-file-pdf {
  color: red;
}
.files-section .folder-file-content .files-wrapper .files-list .file-holder .icon-holder .fas.fa-file-word {
  color: blue;
}
.files-section .folder-file-content .files-wrapper .files-list .file-holder .file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.files-section .folder-file-content .files-wrapper .files-list .file-holder:hover {
  background: rgba(185, 185, 185, 0.15);
}

.projects-container {
  margin-top: 2rem;
  position: relative;
  display: flex;
  align-items: center;
}
.projects-container .trigger-calendar-filter-modal-button {
  height: fit-content;
  position: absolute;
  left: 0;
}
.projects-container .controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}
.projects-container .calendar-placeholder {
  min-height: 400px;
}

.calendar-placeholder {
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  border-radius: 6px;
  margin-top: 10px;
  margin-inline: 1px;
}
.calendar-placeholder .divider {
  background: #e3e3e3;
  margin-left: 1rem;
  margin-right: 1rem;
  width: unset;
}
.calendar-placeholder .calendar-loader {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  pointer-events: none;
}
.calendar-placeholder .calendar-wrapper {
  overflow-x: hidden;
}
.calendar-placeholder .calendar-wrapper .calendar-legend {
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
@media (max-width: 400px) {
  .calendar-placeholder .calendar-wrapper .calendar-legend .vertical-divider {
    display: none;
  }
}
.calendar-placeholder .calendar-wrapper .calendar-legend .legend-item {
  color: #fff;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  font-size: 10pt;
  border-radius: 6px;
  cursor: pointer;
  height: fit-content;
  align-self: center;
}
.calendar-placeholder .calendar-wrapper .calendar-legend .legend-item.disabled {
  background: #aaa !important;
  opacity: 0.4;
}
.calendar-placeholder .calendar-wrapper .calendar-legend .legend-item-toggle-all.soft-disabled {
  -webkit-filter: grayscale(1);
  opacity: 0.4;
}
.calendar-placeholder .calendar-wrapper .calendar-content {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #fff;
  overflow-x: auto;
  border-radius: 6px;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day {
  padding: 0.75rem;
  min-width: 90px;
  border-bottom: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day:nth-child(7n) {
  border-right: none;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day:nth-last-child(-n+7) {
  border-bottom: none;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day.header {
  font-size: 11pt;
  letter-spacing: 1px;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day.header .text {
  border-radius: 4px;
  padding: 5px;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day.header .text.today {
  background: #d9d1c3;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day:not(.header) {
  height: 120px;
  overflow-y: hidden;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day:not(.header) .day-number {
  font-size: 8pt;
  padding: 0.35rem;
  width: fit-content;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day:not(.header) .day-number.today {
  border-radius: 100%;
  background: rgb(217, 209, 195);
  width: 0.75rem;
  height: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  margin: 0.15rem;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day:not(.header).other-month .day-number {
  color: #ccc;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day:not(.header).other-month .items-wrapper .item {
  opacity: 0.2;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day .items-wrapper {
  overflow-y: auto;
  height: calc(100% - 20px);
}
.calendar-placeholder .calendar-wrapper .calendar-content .day .items-wrapper .items {
  display: grid;
  gap: 0.1rem;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day .items-wrapper .items .item {
  position: relative;
  overflow-x: hidden;
  white-space: nowrap;
  font-size: 10pt;
  text-decoration: none;
  padding: 0.15rem 0.5rem;
  border-radius: 0 3px 3px 0;
  background: #c3c6c3;
  color: rgb(12, 11, 11);
  position: relative;
  transition: all 0.2s ease-in-out;
  text-overflow: ellipsis;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day .items-wrapper .items .item.in-progress {
  background: #9fd3a0;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day .items-wrapper .items .item.complete, .calendar-placeholder .calendar-wrapper .calendar-content .day .items-wrapper .items .item.completed {
  background: #88b852;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day .items-wrapper .items .item:hover {
  background: rgb(217, 209, 195);
}
.calendar-placeholder .calendar-wrapper .calendar-content .day .items-wrapper .items .item.soft-toggle {
  opacity: 0.2;
}
.calendar-placeholder .calendar-wrapper .calendar-content .day .items-wrapper .items .item .client-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
}

.table-picker-section {
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.table-picker-section .picker-item {
  color: #fff;
  padding: 0.35rem 0.5rem;
  font-size: 9pt;
  border-radius: 6px;
  cursor: pointer;
  height: fit-content;
  align-self: center;
  background: grey;
  transition-duration: 0.2s;
  user-select: none;
}
.table-picker-section .picker-item.disabled {
  opacity: 0.5;
}

* {
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1000px) {
  p { /* Prevent 'show simplified version' prompt */
    display: table;
  }
}
.animate-on-view {
  opacity: 0;
}

html {
  font-family: sans-serif;
  scroll-behavior: smooth;
  background: white;
  color: #212B36;
  overflow-x: hidden;
  background: #F0F3F5;
  overflow: unset;
}

h1, h2, h3 {
  color: rgb(12, 11, 11);
  font-weight: 500;
}

h1 {
  font-size: 28px;
}

.body-header-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.body-header-wrapper h1 {
  letter-spacing: 3px;
}

a, a:visited, a:hover, a:active {
  color: inherit;
}

table select.datatable-filter-select {
  border: solid 1px rgba(228, 228, 228, 0.4509803922);
  padding: 2px;
  border-radius: 2px;
  bottom: 5px;
  width: 100%;
  position: absolute;
  left: 0;
  box-sizing: border-box;
  width: 91%;
  margin: 0 auto;
  left: 6px;
}
table select.datatable-filter-select.filtered {
  background: rgba(106, 255, 108, 0.168627451) !important;
}

.tab-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  padding: 10px 0;
  max-width: 100%;
  overflow-y: auto;
}
@media (max-width: 800px) {
  .tab-container {
    justify-content: unset;
  }
}
.tab-container .tab-button {
  padding: 10px;
  cursor: pointer;
  border-bottom: solid 2px transparent;
  position: relative;
  font-weight: 600;
  white-space: nowrap;
}
.tab-container .tab-button:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #13bdf1;
  transform-origin: bottom center;
  transition: 0.3s;
}
.tab-container .tab-button:hover:after {
  transition: transform 0.25s ease-out;
  transform: scaleX(1);
  transform-origin: bottom left;
}
.tab-container .tab-button.selected {
  color: #13bdf1;
}
.tab-container .tab-button.selected:after {
  transition: transform 0.25s ease-out;
  transform: scaleX(1);
  transform-origin: bottom left;
}

.hide-other-on-click {
  cursor: pointer;
  transition-duration: 0.4s;
}
.hide-other-on-click.icon-holder .fas {
  transition-duration: 0.1s;
}
.hide-other-on-click.icon-holder.clicked .fas {
  transform: rotate(180deg);
}
.hide-other-on-click:not(.hide-other-on-click.icon-holder):after {
  transition-duration: 0.1s;
  display: inline-block;
  content: "^";
  transform: rotate(180deg);
  margin: 0 5px;
  font-size: 10pt;
}
.hide-other-on-click:not(.hide-other-on-click.icon-holder).clicked:after {
  transform: rotate(0deg);
}

body {
  font-family: "Poppins", "Georgia font-size: 15px line-height: 1.65 word-spacing: 2px letter-spacing: 0.35px font-weight: 200 visibility: visible color: black", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow: unset;
}
body.no-scroll {
  overflow: hidden;
  overflow-y: hidden;
  height: 100vh;
}

body {
  font-family: Poppins, Arial, sans-serif;
  margin: 0;
}

.date-picker label {
  cursor: pointer;
  position: relative !important;
  padding-inline: 0.5rem;
  width: fit-content;
  border-radius: 4px;
}
.date-picker label:hover {
  background: rgba(217, 209, 195, 0.12);
}
.date-picker input {
  visibility: hidden;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  position: absolute;
}

header {
  display: none;
  height: 100px;
  position: relative;
}
header img.hero-header-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 10% 48%;
}
@media (max-width: 1000px) {
  header {
    display: none;
  }
}
header .header-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  box-shadow: 0px 4px 6px 3px rgba(0, 0, 0, 0.0784313725);
  z-index: 2;
}

body.short header {
  height: 50px;
}

main {
  overflow: auto;
  overflow: unset;
}
main .side-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  background: #4e4a4b;
  height: 100%;
  overflow-x: hidden;
  transition: 0.2s;
  width: 230px;
  z-index: 20;
  position: fixed;
  padding: 20px 0;
  box-shadow: 6px 4px 11px 6px rgba(0, 0, 0, 0.1);
  top: 0px;
}
@media (max-width: 1000px) {
  main .side-nav {
    box-shadow: none;
  }
}
main .side-nav .menu-split {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 95%;
}
main .side-nav .menu-split .divider {
  width: 85%;
  margin: 5px auto;
  background: rgba(255, 255, 255, 0.431372549);
}
main .side-nav .logo-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  align-items: center;
}
main .side-nav .logo-section img {
  height: auto;
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
  min-height: 80px;
}
main .side-nav .logo-section .smile-img {
  position: absolute;
  height: 100px;
  object-fit: cover;
}
main .side-nav .menu {
  width: 100%;
  padding: 20px 0;
  padding-top: 0;
  color: white;
}
main .side-nav .menu a {
  padding: 12px 0;
  padding-left: 50px;
  position: relative;
  margin: 0 20px;
  border-radius: 8px;
}
main .side-nav .menu a .icon-holder {
  position: absolute;
  left: 20px;
  top: calc(50% - 10px);
}
main .side-nav .menu a .icon-holder img, main .side-nav .menu a .icon-holder svg, main .side-nav .menu a .icon-holder path {
  height: 20px;
  stroke: white;
}
main .side-nav .menu a.active {
  background: rgb(217, 209, 195);
  color: #102d42;
}
main .side-nav .menu a.active .icon-holder svg, main .side-nav .menu a.active .icon-holder path {
  stroke: #3e3e3e;
}
main .side-nav .menu details {
  margin: initial;
  box-shadow: none;
  padding: 0 20px;
  box-sizing: border-box;
  border-radius: 8px;
}
main .side-nav .menu details[open] summary {
  background: rgba(217, 209, 195, 0.4);
}
main .side-nav .menu details summary {
  border-radius: 8px;
  padding: 0.5rem 1rem;
  padding-left: 1.25rem;
}
main .side-nav .menu details summary .menu-item-header-wrapper {
  display: flex;
  gap: 1rem;
}
main .side-nav .menu details summary .menu-item-header-wrapper .header {
  order: 1;
}
main .side-nav .menu details summary:hover {
  background: rgba(2, 2, 80, 0.1411764706);
}
main .side-nav .menu details .content {
  padding: 0;
  padding-top: 0.5rem;
  padding-left: 1rem;
  color: #000;
  gap: 0;
}
main .side-nav .menu details .content .expandable-menu-item {
  padding-left: 1rem;
  display: flex;
  gap: 1rem;
  margin: 0;
}
main .side-nav .menu details .content .expandable-menu-item .menu-item-content {
  order: 1;
}
main .side-nav .menu details .content .expandable-menu-item .icon-holder {
  position: initial;
}
main .container {
  padding: 20px 60px;
}
@media (max-width: 1000px) {
  main .container {
    padding: 20px 10px;
  }
}
main .container.logged-in {
  margin-left: 230px;
}
main #close-mobile-slideout-nav, main #mobile-menu-button {
  display: none;
  min-width: unset;
}
main #minimize-sidenav-button {
  position: absolute;
  top: -110px;
  right: -2px;
  zoom: 0.6;
  height: 50px;
  border-radius: 20px 0px 0px 20px;
  display: none;
}
main.short #minimize-sidenav-button {
  top: -30px;
  height: 10px;
}
main.short #minimize-sidenav-button .icon-holder {
  transform: rotate(180deg);
}
@media (min-width: 1000px) {
  main.short {
    height: unset;
  }
  main.short .side-nav {
    width: 50px;
    border-radius: 0;
    left: 0;
    top: 0;
    height: 100%;
  }
  main.short .side-nav .logo-section, main.short .side-nav #sitewide-search-input-wrapper {
    visibility: hidden;
    display: none;
  }
  main.short .side-nav .menu a .icon-holder {
    left: 18px;
  }
  main.short .container {
    margin-left: 40px;
  }
}
@media (max-width: 1000px) {
  main {
    height: unset;
  }
  main #minimize-sidenav-button {
    display: none;
  }
  main #close-mobile-slideout-nav, main #mobile-menu-button {
    display: inline-flex;
  }
  main #close-mobile-slideout-nav {
    position: absolute;
    right: 0;
    color: white;
    min-width: unset;
    padding: 30px;
  }
  main .side-nav {
    width: 0;
    left: 0;
  }
  main .side-nav.shown {
    width: 100%;
  }
  main .container.logged-in {
    margin-left: unset;
  }
}

.sub-header {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 12pt;
  padding-bottom: 4px;
}
.sub-header:after {
  position: relative;
  padding-top: 1px;
  width: 100px;
  border-bottom: solid 2px rgb(217, 209, 195);
  content: " ";
  display: block;
}
@media (max-width: 1000px) {
  .sub-header:after {
    width: 100%;
  }
}

.info-section {
  display: flex;
  justify-content: space-around;
  max-width: 1400px;
  margin: 60px auto;
  flex-wrap: wrap-reverse;
  padding: 20px;
  gap: 40px;
  align-items: center;
}
.info-section > * {
  flex: 0 0 40%;
}
.info-section.right-image {
  flex-wrap: wrap;
}
.info-section.right-image .image-section {
  order: 2;
}
.info-section .image-section {
  max-width: 600px;
}
.info-section .image-section img {
  width: 100%;
  height: auto;
}
.info-section .content-section {
  white-space: break-spaces;
  font-weight: 400;
}
.info-section .content-section > * {
  margin: 20px 0;
}
.info-section .content-section h1, .info-section .content-section h2, .info-section .content-section h3, .info-section .content-section h4, .info-section .content-section h5, .info-section .content-section h6,
.info-section .content-section .pseudo-h1, .info-section .content-section .pseudo-h2, .info-section .content-section .pseudo-h3, .info-section .content-section .pseudo-h4, .info-section .content-section .pseudo-h5, .info-section .content-section .pseudo-h6 {
  font-weight: 400;
  font-size: 38pt;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 1000px) {
  .info-section .content-section h1, .info-section .content-section h2, .info-section .content-section h3, .info-section .content-section h4, .info-section .content-section h5, .info-section .content-section h6,
  .info-section .content-section .pseudo-h1, .info-section .content-section .pseudo-h2, .info-section .content-section .pseudo-h3, .info-section .content-section .pseudo-h4, .info-section .content-section .pseudo-h5, .info-section .content-section .pseudo-h6 {
    font-size: 28pt;
  }
}
.info-section .content-section h1:after, .info-section .content-section h2:after, .info-section .content-section h3:after, .info-section .content-section h4:after, .info-section .content-section h5:after, .info-section .content-section h6:after,
.info-section .content-section .pseudo-h1:after, .info-section .content-section .pseudo-h2:after, .info-section .content-section .pseudo-h3:after, .info-section .content-section .pseudo-h4:after, .info-section .content-section .pseudo-h5:after, .info-section .content-section .pseudo-h6:after {
  width: 20%;
  background: #0ec6ff;
  height: 4px;
  content: "";
  position: absolute;
  left: -80px;
  bottom: -5px;
}
.info-section .content-section h1 .first-word, .info-section .content-section h2 .first-word, .info-section .content-section h3 .first-word, .info-section .content-section h4 .first-word, .info-section .content-section h5 .first-word, .info-section .content-section h6 .first-word,
.info-section .content-section .pseudo-h1 .first-word, .info-section .content-section .pseudo-h2 .first-word, .info-section .content-section .pseudo-h3 .first-word, .info-section .content-section .pseudo-h4 .first-word, .info-section .content-section .pseudo-h5 .first-word, .info-section .content-section .pseudo-h6 .first-word {
  order: -1;
  font-weight: 600;
  min-height: 76px;
}
@media (max-width: 1000px) {
  .info-section {
    margin: 20px auto;
  }
  .info-section > * {
    flex: 1 1 100%;
  }
}

#cc--main #c-p-bn,
#cc--main #s-all-bn {
  background-color: rgb(255, 199, 44);
  color: black;
}

#sitewide-search-input-wrapper {
  margin: 0 10px;
  margin-bottom: 10px;
  position: relative;
  width: unset;
  transition-duration: 0.3s;
}
@media (max-width: 1000px) {
  #sitewide-search-input-wrapper {
    width: 90%;
  }
}
#sitewide-search-input-wrapper .icon-holder {
  position: absolute;
  left: 15px;
  top: 28px;
  opacity: 0.5;
  transition-duration: 0.3s;
}
#sitewide-search-input-wrapper #sitewide-search-input {
  background: #b8b7b7;
  border: none;
  border-radius: 10px;
  padding-left: 40px;
  transition-duration: 0.3s;
  width: 100%;
  box-sizing: border-box;
  height: auto;
  color: rgb(12, 11, 11);
  caret-color: rgb(12, 11, 11);
}
#sitewide-search-input-wrapper #sitewide-search-input:focus, #sitewide-search-input-wrapper #sitewide-search-input:focus-visible {
  outline: 1px solid #aaa;
}
#sitewide-search-input-wrapper #sitewide-search-input::placeholder {
  color: rgb(12, 11, 11);
}
#sitewide-search-input-wrapper:hover .icon-holder {
  opacity: 0.9;
}
#sitewide-search-input-wrapper:hover #sitewide-search-input::placeholder {
  color: rgb(12, 11, 11);
  opacity: 0.5;
}

.contact-form {
  color: white;
  background: #585A8D;
  padding: 40px 80px;
  border-radius: 8px;
  background: linear-gradient(332deg, #585A8D, #696b9b);
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 12px 18px 42px rgba(255, 199, 44, 0.18);
}
.contact-form #brief-note-input {
  font-size: 18pt;
  padding-top: 20px;
  padding-bottom: 20px;
}
.contact-form .inner {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.contact-form .input-wrapper {
  margin: 20px 0;
}
@media (max-width: 1000px) {
  .contact-form {
    padding: 40px 30px;
  }
}

.scroller {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  overflow: visible !important;
}
.scroller .slide {
  flex: 1 1 30%;
}

.swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.swiper-wrapper .swiper-slide {
  flex: 1 1 30%;
}
@media (max-width: 1000px) {
  .swiper-wrapper .swiper-slide {
    flex: 1 1 100%;
  }
}

.card {
  background: #3f3f3f;
  border-radius: 18px 60px 18px 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  color: white;
  margin: 20px;
}
.card .header {
  font-weight: 500;
  font-size: 14pt;
  text-transform: uppercase;
}
.card .caption {
  opacity: 0.72;
  height: 100px;
  overflow-y: auto;
  padding: 0 10px;
  /* custom scrollbar */
}
.card .caption::-webkit-scrollbar {
  width: 20px;
  background: transparent;
}
.card .caption::-webkit-scrollbar-thumb {
  background-color: #ffc72c;
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}
.card .caption::-webkit-scrollbar-thumb:hover {
  background-color: #a8bbbf;
}

.card-component {
  padding: 2rem;
  border-radius: 4px;
  min-width: 200px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
  cursor: pointer;
  text-decoration: none;
  margin: 0;
}
.card-component .card-header {
  font-weight: 600;
  padding: 5px 0;
  font-size: 12pt;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.card-component .card-content-wrapper {
  display: flex;
}
.card-component .card-content-wrapper .card-content {
  flex: 1 1 40%;
  font-size: 24pt;
  font-weight: 600;
  position: relative;
}
.card-component .card-content-wrapper .card-chart-section {
  flex: 0 0 30%;
  max-width: 100px;
  min-width: 80px;
}
@media (max-width: 800px) {
  .card-component .card-content-wrapper {
    flex-wrap: wrap;
  }
  .card-component .card-content-wrapper .card-chart-section {
    min-width: 100px;
    flex: 0 0 45%;
    max-width: 200px;
  }
}
.card-component .fa-icon-holder {
  order: -1;
  background: #f1f5f9;
  text-align: center;
  display: flex;
  align-items: center;
  font-size: 28pt;
  padding: 10px;
  justify-content: center;
}
.card-component.with-icon {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
}
.card-component.with-icon .fa-icon-holder {
  flex: 0 0 20%;
}
.card-component.with-icon .card-content-wrapper {
  flex: 1 1 50%;
}
.card-component.with-icon .card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-component.with-icon .card-content .card-header {
  order: -1;
}
.card-component .card-action {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  font-weight: 600;
  font-size: 9pt;
  transition-duration: 0.3s;
  color: rgba(62, 63, 63, 0.2784313725);
}
.card-component .card-action > a {
  text-decoration: none;
  text-transform: capitalize;
}
.card-component .card-action > a:after {
  content: "  >";
}
.card-component:hover .card-action {
  color: rgba(62, 63, 63, 0.6784313725);
}

.card-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0;
}
.card-flex > * {
  flex: 1 1 25%;
  gap: 10px;
}
.card-flex .card-component {
  margin: unset;
}

td .status {
  padding: 0.35rem 0.5rem;
  width: fit-content;
  background: #c3c6c3;
  border-radius: 6px;
  color: #102e44;
  font-size: 9pt;
  min-width: fit-content;
  white-space: nowrap;
  height: fit-content;
  align-self: center;
}
td .status.complete, td .status.completed {
  background: #88b852;
}
td .status.in-progress {
  background: #9fd3a0;
}
td .status.cancelled, td .status.aborted {
  background: #ffb7b7;
}

.menu {
  display: flex;
  justify-content: left;
  position: relative;
  z-index: 99;
  color: rgb(12, 11, 11);
  font-size: 10pt;
  text-transform: capitalize;
}
.menu.vertical {
  flex-direction: column;
  display: inline-flex;
}
.menu a {
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.menu a:not(.with-img) {
  padding: 10px 0;
}
.menu a:not(.with-img):after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ff0;
  transform-origin: bottom center;
  transition: 1s;
}
.menu a:hover {
  background: rgba(2, 2, 80, 0.1411764706);
}
.menu a img {
  height: 25px;
}

table.vertical {
  display: flex;
  flex-wrap: nowrap;
  overflow-y: auto;
}
table.vertical thead, table.vertical tbody {
  display: flex;
  flex-direction: row;
}
table.vertical thead tr, table.vertical tbody tr {
  display: flex;
  flex-direction: column;
}
table.vertical thead tr th, table.vertical thead tr td, table.vertical tbody tr th, table.vertical tbody tr td {
  margin: 10px 0px;
  height: 40px;
  border-bottom: solid 1px #e9e9e9;
  font-weight: 600;
  text-transform: capitalize;
  white-space: nowrap;
}
table img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.input-wrapper {
  position: relative;
  padding-top: 8px;
}
.input-wrapper input:focus, .input-wrapper input:focus-visible {
  outline: 1px solid rgb(12, 11, 11);
}
.input-wrapper.checkbox:not(.yes-no) {
  padding-top: unset;
  cursor: pointer;
  align-items: center;
  display: flex;
  margin: 5px 0px;
}
.input-wrapper.checkbox:not(.yes-no) .label {
  font-weight: 600;
  font-size: 14px;
  position: absolute;
  top: 0px;
  left: 20px;
  top: 0px;
  padding: 0px 20px;
  cursor: pointer;
  text-transform: capitalize;
  color: rgb(12, 11, 11);
  text-align: center;
  border-radius: 0px;
  left: 26px;
  font-size: 10pt;
  align-items: center;
  justify-content: center;
  top: 0px;
}
.input-wrapper.checkbox:not(.yes-no) input {
  border: solid 1px #C5C7D0;
  border-radius: 3px;
  border-radius: 3px;
  color: #323338;
  width: 20px;
  margin: unset;
  font-weight: 400;
  /* outline: 2px solid lightblue; */
  /* outline: 2px solid #add8e654; */
  box-shadow: none;
  font-size: 2em;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  font-size: 14px;
  padding: unset;
  height: 20px;
  cursor: pointer;
}
.input-wrapper.checkbox:not(.yes-no) input:checked {
  background: rgb(12, 11, 11);
  border: 1px solid transparent;
}
.input-wrapper.checkbox:not(.yes-no) input:checked:after {
  content: "✓";
  color: white;
  font-size: 12pt;
  width: 20px;
  font-weight: 600;
  left: 4px;
  position: absolute;
  top: -2px;
  height: 20px;
}
.input-wrapper.checkbox.yes-no {
  display: flex;
  align-items: center;
}
.input-wrapper.checkbox.yes-no label {
  position: relative;
  cursor: pointer;
}
.input-wrapper.checkbox.yes-no .roller {
  display: inline-block;
  width: 48px;
  height: 20px;
  background: #262966;
  border-radius: 9999px;
  margin: 0 5px;
}
.input-wrapper.checkbox.yes-no input {
  display: none;
}
.input-wrapper.checkbox.yes-no input + .roller {
  transition: 0.3s ease all;
  position: relative;
  left: 0;
  top: 0;
  line-height: 20px;
}
.input-wrapper.checkbox.yes-no input + .roller:before {
  content: "NO";
  background-color: white;
  position: absolute;
  top: 5px;
  left: 7px;
  width: 10px;
  height: 10px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  color: white;
  border-radius: 50%;
  text-indent: 15px;
  transition: 0.4s cubic-bezier(0, 0.8, 0.58, 1) all;
}
.input-wrapper.checkbox.yes-no input:checked + .roller:before {
  content: "YES";
  background-color: #c2eff7;
  left: 30px;
  text-indent: -35px;
}
.input-wrapper.with-prefix .icon {
  position: absolute;
  left: 0px;
  height: 20px;
  width: 20px;
  margin: 0px 5px;
  top: calc(50% - 3px);
  font-weight: bolder;
  color: #333333;
  text-align: center;
}
.input-wrapper.with-prefix input {
  padding-left: 40px;
  width: calc(100% - 50px);
}
.input-wrapper .modal-select {
  margin-top: 12px;
  border: solid 1px #C5C7D0;
  border-radius: 3px;
  padding: 9px 10px;
  color: #323338;
  width: calc(100% - 42px);
  font-weight: 400;
  font-size: 14px;
  height: 20px;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  text-overflow: ellipsis;
  padding-right: 20px;
}
.input-wrapper .modal-select::after {
  content: "❯";
  position: absolute;
  font-weight: 500;
  color: #52d9f2;
  right: 15px;
}
.input-wrapper label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  position: absolute;
  top: -1px;
  font-size: 10pt;
  color: rgb(12, 11, 11);
}
.input-wrapper input, .input-wrapper textarea {
  margin-top: 12px;
  border: solid 1px #C5C7D0;
  border-radius: 3px;
  padding: 9px 10px;
  color: #333333;
  width: calc(100% - 22px);
  font-weight: 400;
  font-size: 14px;
  height: 20px;
}
.input-wrapper i.icon {
  position: absolute;
  right: calc(100% - 20px);
  height: 20px;
  width: 20px;
  color: dimgrey;
}
.input-wrapper select {
  margin-top: 12px;
  border: solid 1px #C5C7D0;
  border-radius: 100px;
  padding: 4px 10px;
  color: #262965;
  width: fit-content;
  padding-right: 50px;
  font-weight: 400;
  /* font-size: 10pt; */
  /* height: 30px; */
  font-size: 10pt;
  box-sizing: content-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: white;
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23102e44' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
}
.input-wrapper .error-message {
  display: none;
}
.input-wrapper.error input {
  border: 1px solid red;
}
.input-wrapper.error .error-message {
  display: block;
  position: relative;
  margin-top: 0.5em;
  color: #262965;
  font-size: 0.8em;
  font-style: italic;
}
.input-wrapper.radio-input-wrapper {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 10px 0;
  cursor: pointer;
}
.input-wrapper.radio-input-wrapper label {
  display: inline-block;
  position: relative;
  top: unset;
  flex: 0 0 20%;
  cursor: pointer;
}
.input-wrapper.radio-input-wrapper input {
  cursor: pointer;
  width: unset;
  padding: 0;
  margin: 0;
  padding: 0;
  margin: 0;
  flex: 0 0 10%;
  width: 0px;
}
.input-wrapper.with-international-code-prefix {
  position: relative;
}
.input-wrapper.with-international-code-prefix input {
  padding-left: 3rem;
  box-sizing: border-box;
  height: initial;
  width: 100%;
}
.input-wrapper.with-international-code-prefix .international-code-prefix {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.45rem;
  font-size: 14px;
  border-right: 1px solid #ccc;
  background: rgba(204, 204, 204, 0.2392156863);
  border-radius: 4px 0 0 4px;
  color: #aaa;
}

.highlight-word {
  color: #0ec6ff;
}

.quote-box {
  display: flex;
  flex-wrap: wrap-reverse;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  position: relative;
}
.quote-box > * {
  flex: 1 1 40%;
}
.quote-box .picture-section {
  min-width: 400px;
}
.quote-box .picture-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-box .quote-section {
  padding: 60px 30px;
  color: #333333;
  background: #F6F6F6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.quote-box .quote-section .quote-stars:after {
  font: var(--fa-font-solid);
  content: "\f005\f005\f005\f005\f005";
  color: #0ec6ff;
}
.quote-box .quote-section .quote-date {
  font-size: 10pt;
}
.quote-box .quote-section .quote-text {
  text-align: center;
  font-size: 13pt;
  white-space: break-spaces;
}
.quote-box .quote-section .quote-signature {
  font-family: "Water Brush";
  font-weight: 400;
  font-size: 38pt;
}
.quote-box .quote-section .quote-name {
  font-weight: 600;
  font-size: 18pt;
}
.quote-box .quote-section .quote-description {
  color: #0ec6ff;
  position: relative;
  top: -20px;
  font-weight: 700;
}
.quote-box .quote-section .company-logo {
  position: relative;
  top: -36px;
}
.quote-box .quote-section .company-logo img {
  width: 100px;
}
@media (max-width: 1000px) {
  .quote-box {
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .quote-box .quote-section {
    padding-bottom: 220px;
  }
  .quote-box .picture-section {
    position: absolute;
    text-align: center;
    margin: 0 auto;
    max-width: 200px;
    bottom: 20px;
    min-width: unset;
  }
  .quote-box .picture-section img {
    max-width: 200px;
    border-radius: 999px;
  }
}

.header-and-caption-section {
  padding: 60px 10px;
  display: flex;
  flex-direction: column;
  max-width: 700px;
}
.header-and-caption-section .header {
  text-transform: uppercase;
  font-size: 34pt;
  font-weight: 500;
}
@media (max-width: 1000px) {
  .header-and-caption-section .header {
    font-size: 28pt;
  }
}
.header-and-caption-section .caption {
  font-size: 12pt;
}

.hero-header {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 600px;
}
.hero-header .hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 120px;
  max-width: 800px;
  color: white;
  transition-duration: 0.4s;
  text-shadow: 0 0.05rem 0.1rem rgba(0, 0, 0, 0.5);
}
@media (max-width: 1000px) {
  .hero-header .hero-content {
    padding: 60px;
  }
}
.hero-header .hero-content .hero-cta {
  margin: 20px 0;
}
.hero-header .hero-image {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  min-height: 600px;
}
.hero-header .hero-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  background: #333333;
}
.hero-header .hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 10.16%, rgba(0, 0, 0, 0) 77.66%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 1000px) {
  .hero-header .hero-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 10.16%, rgba(0, 0, 0, 0) 96.66%);
  }
}

button {
  all: unset;
}

.btn, button {
  text-decoration: none;
  font-size: 8pt;
  padding: 12px 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 2px 2px;
  background: #e2e2e2;
  font-weight: 600;
  color: #F6F6F6;
  border-radius: 4px;
  text-shadow: none;
  position: relative;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition-duration: 0.2s;
}
.btn i, button i {
  margin: 0 10px;
}
.btn .icon-holder, button .icon-holder {
  position: absolute;
  left: 15px;
  top: 5px;
}
.btn .icon-holder img, button .icon-holder img {
  height: 25px;
  margin: 0 5px;
}
.btn.large, button.large {
  padding: 20px 30px;
  margin: 15px;
}
.btn.primary, button.primary {
  background: rgb(217, 209, 195);
  background: rgb(16, 46, 68);
  border-radius: 8px;
  text-transform: uppercase;
  color: white;
  font-size: 9pt;
  padding: 10px 25px;
}
.btn.primary:hover, button.primary:hover {
  opacity: 0.75;
}
.btn.primary.rounded, button.primary.rounded {
  border-radius: 888px;
  padding: 10px 25px;
}
.btn.primary.faded, button.primary.faded {
  font-size: 10pt;
  background: #cccccc;
  color: #ffffff;
}
.btn.primary.flat, button.primary.flat {
  background: unset;
  border: solid 1px #C5C7D0;
  border-radius: 3px;
  padding: 10px;
  color: #222222;
}
.btn.primary.flat.no-border, button.primary.flat.no-border {
  border: none;
}
.btn.secondary, button.secondary {
  border-radius: 6px;
  background: rgba(12, 11, 11, 0.1);
  color: rgb(12, 11, 11);
  text-transform: capitalize;
  min-width: 80px;
  font-size: 11pt;
}
.btn.secondary:hover, button.secondary:hover {
  background: rgba(12, 11, 11, 0.2);
}
.btn.secondary.faded, button.secondary.faded {
  font-size: 10pt;
  background: #cccccc;
  color: #ffffff;
}
.btn.secondary.rounded, button.secondary.rounded {
  background: transparent;
  border-radius: 100px;
  border: solid 2px #262965;
  font-size: 12pt;
  font-family: "Inter";
  font-weight: 700;
  color: #262965;
}
.btn.secondary.rounded:hover, button.secondary.rounded:hover {
  background: rgba(229, 229, 229, 0.5803921569);
}
.btn.secondary.flat, button.secondary.flat {
  background: unset;
  border: solid 1px #C5C7D0;
  border-radius: 3px;
  padding: 10px;
}
.btn.secondary.flat.no-border, button.secondary.flat.no-border {
  border: none;
  transition-duration: 0.2s;
}
.btn.secondary.flat.no-border:hover, button.secondary.flat.no-border:hover {
  text-decoration: underline;
}
.btn.secondary.icon, button.secondary.icon {
  min-width: unset;
}
.btn.secondary.icon .icon-holder, button.secondary.icon .icon-holder {
  position: unset;
}
.btn.secondary.floating-right, button.secondary.floating-right {
  padding: 0;
  float: right;
  width: 20px;
  height: 20px;
  min-width: unset;
  border-radius: 100px;
  font-size: 10pt;
  top: 5px;
}
.btn.secondary.floating-right .icon-holder, button.secondary.floating-right .icon-holder {
  left: unset;
  top: unset;
}
.btn.secondary.floating-right .icon-holder .fas, button.secondary.floating-right .icon-holder .fas {
  font-size: 9pt;
  color: rgb(85, 147, 0);
}
.btn.secondary.floating-right:after, button.secondary.floating-right:after {
  clear: both;
}
.btn.secondary.floating-left, button.secondary.floating-left {
  padding: 0;
  float: left;
  width: 20px;
  height: 20px;
  min-width: unset;
  border-radius: 100px;
  font-size: 10pt;
  top: 5px;
}
.btn.secondary.floating-left .icon-holder, button.secondary.floating-left .icon-holder {
  left: unset;
  top: unset;
}
.btn.secondary.floating-left .icon-holder .fas, button.secondary.floating-left .icon-holder .fas {
  font-size: 9pt;
  color: rgb(85, 147, 0);
}
.btn.secondary.floating-left:after, button.secondary.floating-left:after {
  clear: both;
}
.btn.tertiary, button.tertiary {
  background: none;
  text-transform: uppercase;
  transition: background 0.1s ease-in-out;
  text-transform: capitalize;
  font-size: 11pt;
  color: rgb(12, 11, 11);
}
.btn.tertiary:hover, button.tertiary:hover {
  background: rgba(12, 11, 11, 0.1);
}
.btn.tertiary.icon, button.tertiary.icon {
  min-width: unset;
}
.btn.tertiary.icon .icon-holder, button.tertiary.icon .icon-holder {
  position: unset;
}
.btn.hero, button.hero {
  padding: 30px 40px;
  font-size: 16pt;
  position: relative;
  padding-right: 120px;
  display: inline-block;
}
.btn.hero i, .btn.hero img, button.hero i, button.hero img {
  position: absolute;
  top: calc(50% - 10px);
  right: 30px;
  font-size: 20px;
}
.btn.hero label, button.hero label {
  display: block;
  font-size: 9pt;
  font-weight: 300;
  margin-top: 2px;
}
.btn.disabled, button.disabled {
  pointer-events: none !important;
  background: rgba(143, 143, 143, 0.6509803922) !important;
}

.modal {
  position: fixed;
  left: 0;
  width: fit-content;
  max-width: 85%;
  right: 0;
  z-index: 999;
  will-change: top, opacity;
  margin: 0 auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 0 1px 1px #a2a2a2;
  padding: 25px 25px;
  opacity: 0;
  min-height: 300px;
  display: none;
  top: 10%;
  min-width: 400px;
  transition-duration: 0.3s;
  box-shadow: 1px -2px 11px 1000px rgba(0, 0, 0, 0.168627451), 0 0 1px 1px #a2a2a2;
  padding-bottom: 95px;
  min-height: fit-content;
}
.modal .modal-header {
  font-size: 22px;
  letter-spacing: 1px;
  color: rgb(12, 11, 11);
}
.modal table td, .modal table th {
  padding: 10px;
  text-align: left;
}
.modal .input-wrapper {
  margin: 10px 0px;
}
.modal h4, .modal .pseudo-h4 {
  color: #262965;
  padding: 10px 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.modal > p { /* Any explanation text */
  white-space: break-spaces;
  font-size: 11pt;
  margin-bottom: 10px;
  margin-top: 0;
  color: #868686;
}
@media (max-width: 1000px) {
  .modal {
    min-width: unset;
    padding: 25px 25px;
    max-width: 95%;
    width: calc(95% - 50px);
    padding-bottom: 95px;
  }
}
.modal .close-modal-button:not(.finance-select) {
  width: 30px;
  height: 30px;
  font-size: 22px;
  position: absolute;
  top: 0px;
  cursor: pointer;
  right: 0;
  z-index: 5;
  background: transparent;
}
.modal .modal-content {
  position: relative;
  overflow-y: auto;
  max-height: 60vh;
  padding: 0px 5px;
  z-index: 1;
  display: grid;
}
.modal .modal-content::-webkit-scrollbar {
  width: 10px;
  background-color: rgba(215, 215, 215, 0.99);
  border-radius: 8px;
}
.modal .modal-content::-webkit-scrollbar-thumb {
  background-color: #b9b9b9;
  border-radius: 8px;
}
.modal .modal-content h4, .modal .modal-content .pseudo-h4 { /* header */
  font-size: 24pt;
  text-transform: capitalize;
  margin: 0;
}
.modal .modal-content p {
  margin: 20px 0px;
}
.modal .modal-footer {
  position: absolute;
  box-sizing: border-box;
  bottom: 0;
  width: 100%;
  left: 0;
  padding: 10px;
  padding-left: 10px;
  box-shadow: 1px -4px 7px rgba(222, 222, 222, 0.3411764706);
  z-index: 2;
  text-align: end;
}
.modal .modal-footer:empty {
  box-shadow: none;
}
.modal.shown {
  display: block;
  transform: scaleX(1) scaleY(1);
}
.modal.fullscreen {
  background: rgba(0, 0, 0, 0.7803921569);
  top: 0;
  width: calc(100% - 80px);
  padding: 40px;
  margin: 0;
  max-width: unset;
  /* right: 10px; */
  border-radius: 0;
  height: calc(100% - 80px);
}
.modal.fullscreen .close-modal-button {
  width: 20px;
  height: 20px;
  font-size: 22px;
  position: absolute;
  top: 3px;
  cursor: pointer;
  right: 10px;
  z-index: 999;
  color: white;
  border-radius: 999px;
  background: rgba(80, 80, 80, 0.2901960784);
}
.modal.fullscreen .modal-content {
  max-height: unset;
}
.modal select {
  border-radius: 3px;
  height: 40px;
  width: 100%;
  box-sizing: border-box;
}

iframe {
  width: 100%;
  height: 100%;
}

.switch-body {
  display: none;
}
.switch-body.shown {
  display: block;
}
.switch-body.shown.is-flex {
  display: flex;
}

.hidden {
  display: none !important;
}

@media (max-width: 1000px) {
  .only-show-on-desktop {
    display: none;
  }
}
@media (min-width: 1000px) {
  .only-show-on-mobile {
    display: none;
  }
}
header .menu {
  color: black;
}

#mobile-top-menu {
  display: none;
  padding: 15px;
  margin-bottom: 1px;
  box-shadow: 0px -18px 80px rgba(0, 0, 0, 0.04), 0px -8.32195px 36.9864px rgba(0, 0, 0, 0.029667), 0px -4.76163px 21.1628px rgba(0, 0, 0, 0.0250712), 0px -2.89027px 12.8457px rgba(0, 0, 0, 0.0215979), 0px -1.74152px 7.74008px rgba(0, 0, 0, 0.0184021), 0px -0.969789px 4.31018px rgba(0, 0, 0, 0.0149288), 0px -0.4171px 1.85378px rgba(0, 0, 0, 0.010333);
  border-top: solid 3px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  #mobile-top-menu {
    display: flex;
    padding-left: 0;
  }
}
#mobile-top-menu .logo {
  height: 55px;
  width: auto;
  margin: 0 10px;
}
#mobile-top-menu .btn.secondary.flat.no-border {
  font-size: 10pt !important;
  padding-top: 30px;
  position: absolute;
  right: 100px;
  top: 10px;
}
#mobile-top-menu .btn.secondary.flat.no-border.unloved {
  display: none;
}
#mobile-top-menu .btn.secondary.flat.no-border.unloved .icon-holder {
  background-image: url("/statics/images/icons/unloved-fixed.svg");
  background-size: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
#mobile-top-menu .btn.secondary.flat.no-border.unloved .icon-holder img {
  opacity: 0;
}
#mobile-top-menu .btn.secondary.flat.no-border.love .icon-holder {
  background-image: url("/statics/images/icons/love-fixed.svg");
  background-size: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
#mobile-top-menu .btn.secondary.flat.no-border.love .icon-holder img {
  opacity: 0;
}
#mobile-top-menu .btn.secondary.flat.no-border .icon-holder {
  position: absolute;
  left: calc(50% - 15px);
  top: 5px;
}
#mobile-top-menu img {
  height: 20px;
}
#mobile-top-menu .badge {
  position: absolute;
  top: -3px;
  left: 28px;
  background: #262965;
  color: white;
  padding: 2px;
  width: 12px;
  height: 12px;
  font-size: 8pt;
  line-height: 14px;
  border-radius: 99px;
}
#mobile-top-menu #mobile-menu-button {
  background: none;
  padding: 10px;
  margin: 0;
  transition-duration: 0.1s;
}
#mobile-top-menu #mobile-menu-button:hover {
  background: rgba(120, 120, 120, 0.0705882353);
}
#mobile-top-menu #mobile-phone-menu-button {
  position: absolute;
  right: 70px;
  background: none;
  top: 10px;
  padding: 10px;
  margin: 0;
  transition-duration: 0.1s;
}
#mobile-top-menu #mobile-phone-menu-button:hover {
  background: rgba(120, 120, 120, 0.0705882353);
}

#mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: rgba(47, 47, 47, 0.75);
  z-index: 98;
  opacity: 0;
  transition: 0.2s;
}

#mega-menu {
  width: calc(100% - 210px);
  top: 0;
  align-items: center;
  padding: 15px 105px;
  box-shadow: 0px -18px 80px rgba(0, 0, 0, 0.04), 0px -8.32195px 36.9864px rgba(0, 0, 0, 0.029667), 0px -4.76163px 21.1628px rgba(0, 0, 0, 0.0250712), 0px -2.89027px 12.8457px rgba(0, 0, 0, 0.0215979), 0px -1.74152px 7.74008px rgba(0, 0, 0, 0.0184021), 0px -0.969789px 4.31018px rgba(0, 0, 0, 0.0149288), 0px -0.4171px 1.85378px rgba(0, 0, 0, 0.010333);
  height: 40px;
  justify-content: flex-end;
  position: relative;
}
#mega-menu a {
  font-size: 11pt;
  font-weight: 700;
  margin: 0px 15px;
}
#mega-menu > a:first-child {
  position: absolute;
  left: 10px;
  margin-left: 55px;
}
#mega-menu img {
  margin-right: 25px;
  height: 56px;
  width: 94px;
}
@media (max-width: 1330px) {
  #mega-menu {
    padding: 15px 20px;
    width: calc(100% - 40px);
  }
  #mega-menu img {
    /*height: 20px;*/
  }
  #mega-menu a {
    font-size: 9pt;
    margin: 0px 5px;
  }
}
@media (max-width: 1000px) {
  #mega-menu {
    display: none;
  }
}
#mega-menu .right-menu {
  position: absolute;
  right: 105px;
  top: 10px;
  width: 220px;
  display: flex;
}
@media (max-width: 1330px) {
  #mega-menu .right-menu {
    right: 0px;
  }
}
#mega-menu .right-menu .btn.secondary.flat.no-border {
  font-size: 10pt !important;
  padding-top: 30px;
  color: #262966;
  transition-duration: 0.2s;
}
#mega-menu .right-menu .btn.secondary.flat.no-border.unloved .icon-holder {
  background-image: url("/statics/images/icons/unloved-fixed.svg");
  background-size: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
#mega-menu .right-menu .btn.secondary.flat.no-border.unloved .icon-holder img {
  opacity: 0;
}
#mega-menu .right-menu .btn.secondary.flat.no-border.love .icon-holder {
  background-image: url("/statics/images/icons/love-fixed.svg");
  background-size: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
#mega-menu .right-menu .btn.secondary.flat.no-border.love .icon-holder img {
  opacity: 0;
}
#mega-menu .right-menu .btn.secondary.flat.no-border .icon-holder {
  position: absolute;
  left: calc(50% - 10px);
  top: 5px;
}
#mega-menu .right-menu img {
  height: 20px;
  margin: 0;
}
#mega-menu .right-menu .badge {
  position: absolute;
  top: -3px;
  left: 28px;
  background: #262965;
  color: white;
  padding: 2px;
  width: 12px;
  height: 12px;
  font-size: 8pt;
  line-height: 14px;
  border-radius: 99px;
}

#modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: rgba(47, 47, 47, 0.3215686275);
  z-index: 100;
  opacity: 0;
  transition: 0.2s;
}

table.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  border-collapse: collapse;
  box-sizing: border-box;
}
table.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
table.table td, table.table th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.inner-div-stage-switch {
  display: flex;
}
.inner-div-stage-switch #stage-switch {
  margin: auto;
  width: 1100px;
}

.mega-menu-modal {
  display: none;
  position: absolute;
  height: 100px;
  width: 500px;
  z-index: 99;
  max-width: 95%;
}
.mega-menu-modal.show {
  display: block;
}
.mega-menu-modal .content {
  position: absolute;
  background: #ffffff;
  min-width: 400px;
  min-height: 100px;
  z-index: 99;
  padding: 20px;
  border-radius: 2px;
  left: -180px;
  top: 0px;
  max-width: 900px;
  overflow: hidden;
  margin: 0px 10px;
  word-break: break-word;
  padding-bottom: 20px;
}
.mega-menu-modal .content > .flex.cols-3 {
  justify-content: left;
}
.mega-menu-modal .content > .flex.cols-3 > a {
  border-bottom: solid 1px rgba(128, 128, 128, 0.1098039216);
  padding: 10px;
  border-radius: 4px;
  flex: 0 1 30%;
  transition-duration: 0.1s;
  cursor: pointer;
  text-decoration: none;
  margin: 10px 2px;
  position: relative;
}
.mega-menu-modal .content > .flex.cols-3 > a:hover {
  background: rgba(245, 245, 245, 0.5803921569);
}
.mega-menu-modal .content > .flex.cols-3 > a:hover:after {
  content: "➔";
  position: absolute;
  bottom: 0px;
  right: 10px;
  font-size: 14pt;
  color: rgba(38, 41, 101, 0.2705882353);
}
.mega-menu-modal .content .explanation {
  font-size: 10pt;
  margin: 8px 1px;
}
.mega-menu-modal .content h3, .mega-menu-modal .content .pseudo-h3 {
  margin: 6px 0;
  font-size: 13pt;
  font-weight: 600;
}
.mega-menu-modal .content .btn.secondary.rounded {
  padding: 8px 30px;
  border: none;
  box-shadow: inset 0 0 0px 1px rgba(183, 183, 183, 0.3215686275);
  margin: 10px 0px;
  font-size: 12px;
  display: flex;
  width: fit-content;
  text-transform: capitalize;
  padding-top: 10px;
  align-items: center;
}
.mega-menu-modal#browse .btn.secondary {
  padding: 5px 15px;
  font-size: 9pt;
}
.mega-menu-modal#browse .btn.primary {
  border-radius: 88px;
  padding: 12px 45px;
}
.mega-menu-modal#browse .divider {
  flex-basis: 100%;
  border-top: solid 1px #E6E9EF;
  margin: 10px 0;
}
.mega-menu-modal#browse .btn.secondary.flat.no-border {
  padding: 10px 15px;
  font-size: 9pt;
}
.mega-menu-modal#browse .btn.secondary.flat.no-border:hover {
  color: #262965;
  background: rgba(128, 128, 128, 0.0509803922);
}
.mega-menu-modal#browse .make-model-section div:first-child {
  flex-basis: 20%;
}
.mega-menu-modal#browse .make-model-section .flex .btn {
  justify-content: start;
  text-align: left;
}
.mega-menu-modal#browse .make-model-section .model-flex .btn.secondary.flat.no-border {
  padding: 5px 15px;
  font-size: 9pt;
  text-align: left;
  font-weight: 500;
  flex-basis: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mega-menu-modal#browse .guide-section {
  flex-basis: 30%;
  border-left: solid 1px #E6E9EF;
  padding: 0px 20px;
}
.mega-menu-modal#browse .guide-section > img {
  position: relative;
  height: 120px;
  width: 100%;
  object-fit: cover;
  flex: 0 0 100px;
  border-radius: 4px;
}
.mega-menu-modal#browse .guide-section .link-holder .btn {
  justify-content: left;
}

#mobile-slideout-nav {
  padding: 10px;
  right: -2000px;
  position: fixed;
  top: 0px;
  height: calc(100% - 20px);
  width: calc(100% - 20px);
  transition-duration: 0.2s;
  z-index: 99;
  background: white;
  display: none;
  overflow-y: auto;
  padding-bottom: 200px;
}
@media (max-width: 1000px) {
  #mobile-slideout-nav {
    display: block;
  }
}
#mobile-slideout-nav .btn.InfinityNumber {
  width: calc(100% - 80px);
}
#mobile-slideout-nav .menu {
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#mobile-slideout-nav .menu-footer {
  margin-top: 40px;
  bottom: 0;
  left: 0;
  background: #333333;
  position: relative;
  padding: 20px;
}
#mobile-slideout-nav .menu-footer .logo-section {
  flex: 0 0 30%;
  padding: 0 60px;
  background: url(/statics/images/logogrey.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#mobile-slideout-nav .menu-footer .logo-section .logo {
  width: 40%;
  margin: 0 auto;
}
#mobile-slideout-nav .menu-footer .logo-section .logo img {
  width: 100%;
  height: auto;
}
#mobile-slideout-nav.shown {
  right: 0px;
}
#mobile-slideout-nav .header {
  display: flex;
  padding: 5px 20px;
  text-transform: capitalize;
}
#mobile-slideout-nav .header img {
  height: 55px;
  width: auto;
}
#mobile-slideout-nav .header .btn {
  height: 50px;
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  min-width: unset;
}
#mobile-slideout-nav .body .btn.no-border {
  background: #f9f9f9;
  width: calc(100% - 60px);
  color: #262965;
  padding: 20px;
  text-align: left;
  align-self: stretch;
  border-radius: 4px;
  font-size: 11pt;
  margin: 5px 0px;
  /* left: 0px; */
  justify-content: flex-start;
  padding: 20px 30px;
}
#mobile-slideout-nav .body .btn.no-border:hover {
  background: rgba(201, 200, 200, 0.5803921569);
}
#mobile-slideout-nav .body .btn.no-border::after {
  content: ">";
  font-size: 8pt;
  color: #52d9f2;
  margin-left: 4px;
  font-family: ui-monospace;
  font-weight: bold;
  bottom: 0px;
  position: relative;
}
#mobile-slideout-nav .body .flex {
  display: block;
}
#mobile-slideout-nav .body .flex > a {
  border-bottom: solid 1px rgba(128, 128, 128, 0.1098039216);
  padding: 10px;
  border-radius: 4px;
  flex: 0 1 30%;
  transition-duration: 0.1s;
  cursor: pointer;
  text-decoration: none;
  margin: 10px 2px;
  position: relative;
  display: block;
  background: #fbfbfb;
  border-radius: 4px;
  /* border-bottom: solid 1px black; */
  padding: 10px 20px;
}
#mobile-slideout-nav .body .flex > a:hover {
  background: rgba(201, 200, 200, 0.5803921569);
}
#mobile-slideout-nav .body .flex > a:hover:after {
  content: "➔";
  position: absolute;
  bottom: 0px;
  right: 10px;
  font-size: 14pt;
  color: rgba(38, 41, 101, 0.2705882353);
}
#mobile-slideout-nav .body .flex > a.news-section > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
#mobile-slideout-nav .accordion-wrapper .accordion-option {
  -webkit-tap-highlight-color: transparent;
  border: none;
  border-bottom: solid 1px #E4EBED;
  box-shadow: unset;
  -webkit-tap-highlight-color: transparent;
  border: none;
  border-bottom: solid 1px #E4EBED;
  box-shadow: unset;
  padding: 10px 10px;
  /* padding: 2px 0px; */
  border-radius: 0;
}
#mobile-slideout-nav .accordion-wrapper .accordion-option .header:before {
  right: 0;
  left: unset;
}

.footer-overlap {
  position: absolute;
  top: -29px;
  width: 100%;
  /* margin-top: 60px; */
  background: transparent;
  transition: transform 0.55s;
}
.footer-overlap .top-bar {
  width: 50%;
  height: 19px;
  background: #333333;
  transform: translateX(-200px);
  transition: 0.5s;
}
.footer-overlap .bottom-bar {
  width: 55%;
  background: #0ec6ff;
  height: 20px;
  transform: translateX(-200px);
  transition: 0.8s;
}
.footer-overlap.viewed .top-bar {
  transition: transform 1.25s;
  transform: translateX(0px);
  transform-origin: left;
}
.footer-overlap.viewed .bottom-bar {
  transition: transform 0.75s;
  transform: translateX(0px);
}
.footer-overlap.bottom {
  bottom: -26px;
  top: unset;
  transform: scaleY(-1);
}
.footer-overlap.white .top-bar {
  background: white;
}

footer {
  background: #333333;
  min-height: 400px;
  padding: 30px 0;
  position: relative;
  background: #333333;
  min-height: 400px;
  padding: 30px 0;
  padding-bottom: 0;
  position: relative;
  margin-top: 60px;
  padding-bottom: 70px;
}
footer .footer-body {
  color: white;
  padding: 30px 60px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  footer .footer-body {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    flex-direction: row;
    margin-bottom: 50px;
  }
}
footer .footer-body .logo-section {
  flex: 0 0 30%;
  max-width: 300px;
  padding: 0 60px;
  background: url(/statics/images/logogrey.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  min-height: 300px;
}
footer .footer-body .logo-section .logo {
  width: 60%;
}
footer .footer-body .logo-section .logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 1000px) {
  footer .footer-body .logo-section {
    padding: 0px;
    flex-basis: 100%;
  }
  footer .footer-body .logo-section .logo {
    width: 100%;
  }
}
footer .footer-body .links-section {
  display: flex;
  gap: 120px;
  padding: 0 30px;
}
footer .footer-body .links-section .menu {
  gap: 30px;
  text-transform: uppercase;
}
@media (max-width: 1000px) {
  footer .footer-body .links-section {
    padding: 0;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 60px 0;
    padding-top: 0;
    text-align: center;
    align-items: center;
    justify-items: center;
  }
}
footer .footer-body .socials-section {
  padding-left: 80px;
}
@media (max-width: 1000px) {
  footer .footer-body .socials-section {
    order: 0;
    flex-basis: 100%;
    padding: 0;
    align-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    text-align: center;
  }
  footer .footer-body .socials-section h3, footer .footer-body .socials-section .pseudo-h3 {
    display: none;
  }
  footer .footer-body .socials-section img {
    overflow: hidden;
  }
}
@media (max-width: 1000px) and (max-width: 325px) {
  footer .footer-body .socials-section .menu {
    display: flex;
    flex-wrap: wrap;
  }
  footer .footer-body .socials-section .menu a {
    flex-basis: 100%;
  }
}
footer .footer-body .socials-section .menu a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  border: solid 1px white;
  border-radius: 100%;
}
footer .footer-body .socials-section .menu a.highlight, footer .footer-body .socials-section .menu a:hover {
  transition-duration: 0.3s;
  background: #0ec6ff;
  border: solid 1px #0ec6ff;
  box-shadow: 0 0 black;
  box-shadow: 12px 18px 42px rgba(255, 199, 44, 0.18);
}
footer .footer-bottom {
  border-top: solid 2px grey;
  margin: 0 auto;
  justify-content: space-between;
  background: #4d4d4d;
  color: white;
  position: absolute;
  width: 100%;
  bottom: 0;
}
footer .footer-bottom .footer-bottom-wrapper {
  max-width: 1400px;
  padding: 10px;
  justify-content: space-between;
  display: flex;
  margin: 0 auto;
  font-size: 10pt;
  font-weight: 200;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  footer .footer-bottom .footer-bottom-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    flex-direction: row;
  }
}
footer .footer-bottom .footer-bottom-wrapper .explanation {
  flex: 1 1 100%;
  text-align: center;
}
footer .footer-bottom .footer-bottom-wrapper .links {
  font-size: 10pt;
}
footer .footer-bottom .footer-bottom-wrapper .links > * {
  font-weight: 200;
  padding: 0 5px;
  font-size: 10pt;
}
footer .footer-bottom .footer-bottom-wrapper .links > *:not(:first-child):before {
  content: "|";
  padding-right: 10px;
}
footer .footer-bottom .footer-bottom-wrapper .links a {
  text-decoration: none;
}

.explanation {
  font-size: 10pt;
  color: #635959;
  max-width: 1200px;
  margin: 0;
  padding: 0;
  padding-bottom: 5px;
  border-radius: 4px;
  border-bottom: solid 3px rgba(217, 209, 195, 0.1490196078);
}

.fas.fa-edit {
  color: #003082;
  font-size: 16px;
  background: none;
}

.fa.fa-remove {
  color: red;
  font-size: 16px;
  background: none;
}

.atreon {
  text-transform: uppercase;
  color: #0ec6ff;
  font-weight: 600;
}

.table-wrapper {
  overflow-x: auto;
  border: solid 1px #e3e3e3;
  border-radius: 2px;
  padding: 10px;
  background: white;
  width: 100%;
  box-sizing: border-box;
}

table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  overflow: scroll;
}
table thead {
  background: white;
  border-bottom: solid 1px #e3e3e3;
}
table tbody {
  background: white;
}
table th {
  text-transform: capitalize;
}
table tr {
  border-bottom: solid 1px #ebebeb;
}
table tr:last-child {
  border-bottom: none;
}
table th, table td {
  padding: 5px 10px;
}

.dataTables_wrapper {
  max-width: 100vw;
  overflow-x: auto;
}

.tasks-table-wrapper {
  overflow: auto;
}
.tasks-table-wrapper #tasks-table tbody tr.completed {
  background: #ededed;
  opacity: 0.3;
}
.tasks-table-wrapper #tasks-table tbody tr.outstanding {
  background: rgba(255, 61, 0, 0.2392156863);
}

td *.outstanding {
  border-radius: 50%;
  background: #ffb0b0;
  width: 25px;
  height: 25px;
  color: white;
  text-align: center;
  margin: 0 auto;
}

.tooltip {
  position: relative;
}
.tooltip .tooltip-text {
  visibility: hidden;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 10pt;
  padding-inline: 0.5rem;
  font-weight: 400;
  text-transform: initial;
  white-space: nowrap;
}
.tooltip .tooltip-text:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.divider {
  height: 1px;
  width: 100%;
  background: #d8d8d8;
}

.vertical-divider {
  width: 1px;
  background: #d8d8d8;
}

.text-divider {
  display: grid;
  place-items: center;
  position: relative;
}
.text-divider:before {
  content: "";
  height: 1px;
  width: 100%;
  position: absolute;
  background: #aaa;
  left: 0;
}
.text-divider .divider-content {
  text-transform: uppercase;
  background: #fff;
  border-radius: 50%;
  padding: 0.25rem;
  height: 1.5rem;
  width: 1.5rem;
  z-index: 2;
  color: #aaa;
}
.text-divider .divider-content.uppercase {
  text-transform: uppercase;
}

.error-section {
  display: flex;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(255, 0, 0, 0.0705882353);
  color: #c41212;
}

.controls-wrapper .controls {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  max-width: 1680px;
  margin: 0 auto;
}
@media (max-width: 450px) {
  .controls-wrapper .controls {
    display: grid;
  }
  .controls-wrapper .controls .vertical-divider {
    display: none;
  }
}
.controls-wrapper .controls .controls-wrapper {
  font-size: 10pt;
  font-weight: bold;
  padding: 0;
  width: fit-content;
  display: flex;
  gap: 0.25rem;
  border: 0;
}
.controls-wrapper .controls .controls-wrapper input {
  opacity: 0;
  position: absolute;
}
.controls-wrapper .controls .controls-wrapper input:checked + label {
  background: rgba(32, 116, 182, 0.12);
  color: rgb(32, 116, 182);
  -moz-transition: all 0.2s ease-in 0s;
  -o-transition: all 0.2s ease-in 0s;
  transition: all 0.2s ease-in 0s;
  -webkit-transition: all 0.2s ease-in 0s;
}
.controls-wrapper .controls .controls-wrapper label {
  color: #d2d2d2;
  cursor: pointer;
  z-index: 2;
  padding: 0.25rem 0.5rem;
  white-space: nowrap;
  border-radius: 8px;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-size: 16px;
}
.controls-wrapper .input-wrapper {
  max-width: 1680px;
  margin: 2rem auto;
}

.notification-wrapper {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  margin-block: 1rem;
}
.notification-wrapper.success {
  color: #127712;
  background: rgba(10, 151, 10, 0.1098039216);
}
.notification-wrapper.info {
  color: #1588ec;
  background: rgba(114, 186, 249, 0.1098039216);
}
.notification-wrapper.warning {
  color: #d08a09;
  background: rgba(255, 165, 0, 0.1098039216);
}
.notification-wrapper.error {
  background: rgba(255, 0, 0, 0.0901960784);
  color: #c61717;
}

details {
  width: 100%;
  margin: 0.5rem auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
details summary {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  cursor: pointer;
  color: #333;
  transition: background 0.3s;
}
details summary:hover {
  background: #f5f5f5;
}
details summary::after {
  content: "⌵";
  font-size: 1.2em;
  transform: rotate(0);
  transition: transform 0.3s;
}
details .content {
  padding: 1rem;
  color: #666;
  display: grid;
  gap: 1rem;
  position: relative;
}
details .content .checkboxes-wrapper {
  display: flex;
  gap: 1rem;
}
details .content .checkboxes-wrapper .input-wrapper {
  flex: 1;
}
@media (max-width: 550px) {
  details .content .checkboxes-wrapper {
    display: block;
  }
}

details[open] summary {
  background: #f5f5f5;
}

details[open] summary::after {
  transform: rotate(180deg);
}

.page-breadcrumbs-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem;
  margin-block: 1rem;
  background: #fff;
  border-radius: 4px;
}
.page-breadcrumbs-wrapper .breadcrumb {
  display: flex;
  gap: 0.5rem;
  width: fit-content;
  align-items: center;
}
.page-breadcrumbs-wrapper .breadcrumb .breadcrumb-name {
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  color: rgb(59, 82, 104);
  font-weight: 500;
  cursor: pointer;
}
.page-breadcrumbs-wrapper .breadcrumb .breadcrumb-name:hover {
  background: rgba(59, 82, 104, 0.1019607843);
}
.page-breadcrumbs-wrapper .breadcrumb .breadcrumb-name.current {
  pointer-events: none;
  cursor: initial;
  color: #acacac;
}
.page-breadcrumbs-wrapper .breadcrumb .link-separator {
  font-size: 12px;
  font-weight: 200;
  color: #aaa;
}

.autoComplete_wrapper {
  width: 100%;
  box-sizing: border-box;
}
.autoComplete_wrapper input {
  width: 100% !important;
  box-sizing: border-box;
  height: 2.5rem !important;
}
.autoComplete_wrapper mark {
  color: rgb(217, 209, 195) !important;
}
