.skip-link {
  position: absolute;
  top: -40px;
}

.skip-link:focus, .skip-link:active {
  top: 16px;
  left: 14px;
  background: var(--blue-500);
  color: white;
  padding: 8px 16px;
  z-index: 1000;
  outline: none;
}

.header-wrapper {
  display: flex;
  height: 48px;
  align-items: center;
  padding: 0px 0px 0px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;

  @media screen and (max-width: 768px) {
    padding: 0px 0px 0px 36px;
  }
}

.header {
  position: relative;
  flex: 1;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--headings-font-family);
  font-weight: 400;
  color: var(--white-1000);
  font-size: var(--headings-4-5xl-font-size);
  letter-spacing: var(--headings-4-5xl-letter-spacing);
  line-height: var(--headings-4-5xl-line-height);
  font-style: var(--headings-4-5xl-font-style);

  @media screen and (max-width: 768px) {
    font-size: var(--headings-3xl-font-size);
    letter-spacing: var(--headings-3xl-letter-spacing);
    line-height: var(--headings-3xl-line-height);
  }
}

.text-wrapper {
  position: absolute;
  width: 12px;
  height: 12px;
  top: -1px;
  left: 0;
  font-weight: 400;
  color: var(--white-1000);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.content-body {
  display: flex;
  width: 100%;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

/* Homepage */

.home .content {
  margin-top: -100px;
  flex-direction: column;
  @media screen and (max-width: 768px) {
    margin-top: -130px;
  }
  @media screen and (max-width: 480px) {
        margin-top: -90px;
  }
}

.home .frame-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 80px;
  padding: 0px 48px 0px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;

  @media screen and (max-width: 768px) {
    padding: 0px 48px 0px 48px;
  }

  @media screen and (max-width: 480px) {
    padding: 0px 16px 0px 16px;
  }
}

.home .vector {
  position: absolute;
  width: 1143px;
  height: 304px;
  top: 0;
  left: 0;
}

.hello-title {
  position: relative;
  align-self: stretch;
  height: 24px;
  color: var(--white-1000);
  font-family: var(--body-copy-font-family);
  font-weight: var(--body-copy-lg-body-font-weight);
  font-size: var(--body-copy-lg-body-font-size);
  letter-spacing: var(--body-copy-lg-body-letter-spacing);
  line-height: var(--body-copy-lg-body-line-height);
  font-style: var(--body-copy-lg-body-font-style);

  @media screen and (max-width: 768px) {
    font-size: var(--body-copy-md-body-font-size);
    letter-spacing: var(--body-copy-md-body-letter-spacing);
    line-height: var(--body-copy-md-body-line-height);
    font-style: var(--body-copy-md-body-font-style);
  }
}

.welcome-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.welcome {
  position: relative;
  align-self: stretch;
  height: 96px;
  font-family: var(--headings-medium-font-family);
  font-weight: var(--headings-4-5xl-font-weight);
  color: var(--white-1000);
  font-size: var(--headings-4-5xl-font-size);
  letter-spacing: var(--headings-4-5xl-letter-spacing);
  line-height: var(--headings-4-5xl-line-height);
  font-style: var(--headings-4-5xl-font-style);

  @media screen and (max-width: 768px) {
    height: 48px;
    font-size: var(--headings-3xl-font-size);
    letter-spacing: var(--headings-3xl-letter-spacing);
    line-height: var(--headings-3xl-line-height);
    font-style: var(--headings-3xl-font-style);
  }
}

.info-card {
  display: flex;
  flex-direction: column;
  width: auto;
  height: auto;
  min-height: 211px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 24px;
  position: relative;
  background-color: var(--white-1000);
  border-radius: 8px;
  box-shadow: var(--sm-dropshadow-primary);
  gap: 16px;
  align-self: stretch;
}

.info-card-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-card-text h2 {
  padding-top: 0;
}

.content {
  width: 100%;
  max-width: var(--max-content-width);
  display: flex;
  flex-direction: row;
  gap: 48px;
  padding: 48px;
  padding-bottom: 48px;
  justify-self: center;

  @media screen and (max-width: 1200px) {
    flex-direction: column;
    width: 100%;
  }

  @media screen and (max-width: 768px) {
    flex-direction: column;
    width: 100%;
  }

  @media screen and (max-width: 480px) {
    flex-direction: column;
    width: 100%;
    padding: 0;
    padding-bottom: 96px;
  }
}

.content-body.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex: 2;
  position: relative;
  flex-wrap: wrap;

  @media screen and (max-width: 1200px) {
    grid-template-columns: 1fr 1fr;
  }

  @media screen and (max-width: 768px) {
    grid-template-columns: 1fr;
  }

  @media screen and (max-width: 480px) {
    grid-template-columns: 1fr;
  }
}

.home .content-body.grid {
  @media screen and (min-width: 1201px) {
    grid-template-columns: 1fr 1fr 1fr;
  }

  @media screen and (max-width: 480px) {
    grid-template-columns: 1fr;
    padding: 0 14px;
  }
}

.list-group {
  padding: 20px 0 12px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.list-group-item {
  display: flex;
  flex-direction: column;
  padding: 0;
  background-color: var(--white-1000);
  align-items: flex-start;
  border-radius: 8px;
  border: 1px solid var(--gray-100);
}

.list-group-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.list-group-header strong {
  align-self: center;
}

.list-group-values {
  display: flex;
  flex-direction: row;
  padding: 16px;
  width: 100%;
  justify-content: space-between;
}

.content-sidebar {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  min-width: 400px;

  @media screen and (max-width: 1200px) {
    max-width: 100%;
  }

  @media screen and (max-width: 768px) {
    max-width: 100%;
  }

  @media screen and (max-width: 480px) {
    max-width: 100%;
  }
}

.content-sidebar h3 {
  font-weight: var(--headings-md-550-font-weight);
}

.info-card.card-lg {
  min-height: 300px;
}

.row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.event-row {
  display: flex;
  gap: 12px;
  padding: 0px 0px 0px 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

#event-detail {
  width: 100%;
}

.event-content {
  margin-top: 48px;
  width: 100%;
}

.link-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0px 0px 0px 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.link-row-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.side-panel-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.decor-square-icon,
.decor-square-icon-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px;
  position: relative;
  flex: 0 0 auto;
  background-color: #a6d1f233;
  border-radius: 4px;
  width: 38px;
  height: 38px;
}

.decor-square-icon .fa-light,
.decor-square-icon-clear .fa-light {
  width: 20px;
  height: 20px;
  font-weight: 300;
  color: var(--blue-500);
  font-size: 20px;
  line-height: normal;
  white-space: nowrap;
  text-align: center;
}

.decor-square-icon-clear {
  background-color: transparent;
}

.decor-square-icon-clear .fa-light {
  color: var(--blue-700);
}

.icon-link-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-wrapper {
  color: var(--blue-500);
  font-weight: 300;  
}

.icon-wrapper-event {
  color: var(--hotBlue-300);
  font-weight: 300;
  font-size: 20px;
}

.info-card-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

.links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
  color: var(--blue-500);
}

.links:hover {
  text-decoration: underline;
}

.arrow-right {
  position: relative;
  left: 0;
  font-weight: 400;
  color: var(--blue-500);
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  width: 16px;
  height: 16px;
}

.side-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  position: relative;
  flex: 0 0 auto;
  background-color: var(--white-1000);
  border-radius: 8px;
  box-shadow: var(--sm-dropshadow-primary);
}

.side-panel .text-sm-450-heading {
  margin-left: 42px;
}

.row-details {
  margin-right: 48px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.section-accordions-wrapper,
.section-nested-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
  width: 100%;
}

.section-accordions,
.section-nested {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 32px;
  position: relative;
  flex: 0 0 auto;
  background-color: var(--white-1000);
  border-radius: 8px;
  box-shadow: var(--sm-dropshadow-primary);
  overflow: visible;

  @media screen and (max-width: 768px) {
    min-width: 100%;
    padding: 24px 16px;
  }
}

.standalone {
  background-color: transparent;
  box-shadow: inherit;
  padding: 0;
}

.standalone .accordion-wrapper,
.standalone .nested-wrapper {
  background-color: var(--white-1000);
  box-shadow: var(--sm-dropshadow-primary);
  border-radius: 8px;
}

.content-body-top-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 0;
  @media screen and (max-width: 768px) {
    padding: 16px 16px 0 16px;
  }
}

.accordion-wrapper,
.nested-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;

  @media screen and (max-width: 768px) {
    padding: 16px;
  }
}

.section-header,
.nested-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--white-1000);
}

.accordion-body,
.nested-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 8px;
  border: 1px solid;
  border-color: var(--gray-100);
}

.accordion-content,
.nested-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.accordion-items,
.nested-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  width: 100%;
}

.accordion-items-report {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.accordion-subheader {
  cursor: pointer;
}

.accordion-subheader,
.nested-subheader {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  flex: 0 0 auto;
  gap: 4px;
}

.accordion-subheader h2,
.accordion-subheader h3 {
  font-size: 16px;
  padding-top: 0;
}

.frame-30 {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.frame-32 {
  display: inline-flex;
  flex-direction: column;
}

.calendar-item {
  color: var(--blue-500);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px;
  flex: 1;
  flex-grow: 1;
  background-color: #a6d1f233;
  border-radius: 4px;
}

.calendar-item .text-xs-body {
  color: var(--blue-500);
}

.deadlines {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.deadlines>.frame-col {
  min-width: 36px;
  align-items: center;
}

.card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: var(--white-1000);
  border-left: 8px solid var(--hotBlue-300);
}

.card {
  display: flex;
  width: 100%;
  max-width: 1128px;
  min-width: 350px;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--sm-dropshadow-primary);
}
ul.nav-tabs {
  padding: 0 0 12px 0;
  align-items: flex-end;
  gap: 21px;
  display: flex;
  position: relative;
  flex: 0 0 auto;
  overflow-x: auto;
  flex-wrap: nowrap;
  min-width: 0;
  width: 100%;
  list-style: none;
  margin: revert;

  @media screen and (max-width: 768px) {
    gap: 10px;
    max-width: 100vw;
  }
}

.nav-tabs li {
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  display: flex;
  position: relative;
  flex: 0 0 auto;
  border-bottom: 2px solid transparent;
}

.nav-tabs a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 14px 8px 14px;
  position: relative;
  flex: 0 0 auto;
  margin-bottom: -12px;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-weight: 500;
  transition-duration: 150ms;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, translate, transform;
}

.nav-tabs a:focus-visible {
  outline-offset: 0;
  outline: 2px solid var(--blue-500);
  border-radius: 0;
}

.nav-tabs .active a {
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-color: var(--blue-500);
  color: var(--blue-500);
}

.nav-tabs a:hover  {
  background:color(srgb 0.129412 0.321569 0.811765 / 0.2);
  border-color: var(--blue-500);
  text-decoration: none;
}

.card address {
  padding-left: 54px;
}

button.toggle-button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: inline-block;
  justify-content: unset;
  gap: unset;
  color: var(--blue-500);
  font-size: 20px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  min-width: 0;
}

button.toggle-button .toggle-icon {
  font-weight: 400;
}

button.toggle-button:focus-visible {
    outline-offset: 0;
}

.section-header>.toggle-button {
  font-size: 20px;
}

.field-dropdown,
.dt-length .dt-input {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  width: 100%;
  align-items: flex-start;
  gap: 8px;
}

.dt-length {
  display: inline-flex;
  gap: 8px;
  height: 32px;
  align-items: center;
}

.dt-length label {
  white-space: nowrap;
}

.supporting-text,
.supporting-text-header {
  position: relative;
  align-self: stretch;
  color: var(--gray-800);
  z-index: 1;
}

.supporting-text-header {
  margin-top: -20px;
}

.value {
  position: relative;
  color: #171717;
  font-family: var(--body-copy-font-family);
  font-weight: var(--body-copy-sm-body-font-weight);
  font-size: var(--body-copy-sm-body-font-size);
  letter-spacing: var(--body-copy-sm-body-letter-spacing);
  line-height: var(--body-copy-sm-body-line-height);
  font-style: var(--body-copy-sm-body-font-style);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  background: none;
  border: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.text-sm-medium {
  width: fit-content;
  font-weight: var(--body-copy-sm-medium-font-weight);
  font-size: var(--body-copy-sm-medium-font-size);
  line-height: var(--body-copy-sm-medium-line-height);
  letter-spacing: var(--body-copy-sm-medium-letter-spacing);
  font-style: var(--body-copy-sm-medium-font-style);
  color: #171717;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 0;
  line-clamp: 0;
  -webkit-box-orient: vertical;
  position: relative;
}

.active .text-sm-medium {
  border-color: var(--blue-500);
  color: var(--blue-500);
}

.active a:hover .text-sm-medium {
  background-color: rgba(27, 117, 186, 0.1);
}

.table-body-simple {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--white-1000);
}

.table-body-simple-wrapper {
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  position: relative;
}

.text {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--body-copy-font-family);
  font-weight: var(--body-copy-sm-bold-font-weight);
  color: #171717;
  font-size: var(--body-copy-sm-bold-font-size);
  letter-spacing: var(--body-copy-sm-bold-letter-spacing);
  line-height: var(--body-copy-sm-bold-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  font-style: var(--body-copy-sm-bold-font-style);
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 30px;
  height: 30px;
  margin-top: -7px;
  margin-left: -8px;
  position: absolute;
}

.checkbox-wrapper {
  cursor: pointer;
}

.flex-grow {
  flex-grow: 1;
}

.sort-wrapper {
  all: unset;
  margin-bottom: -5px;
  padding: 0 6px;
}

.sort-descending {
  position: absolute;
  top: -1px;
  left: 0;
  font-weight: 400;
  color: var(--blue-1000);
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
  white-space: nowrap;
  width: 12px;
  height: 12px;
}

.table-head {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--white-1000);
}

.table-cells {
  height: 40px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: var(--white-1000);
  border-top-width: 1px;
  border-top-style: solid;
  border-color: var(--gray-100);
}

.table-full-layout {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 8px;
  border: 1px solid;
  border-color: var(--gray-100);
}

.table-headers {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 8px 8px 0px 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-color: var(--gray-100);
  display: flex;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--white-1000);
}

.search-bar,
.dt-search {
  display: flex;
  width: 320px;
  align-items: center;
  padding: 12px;
  position: relative;
  border-radius: 100px;
  border: 1px solid;
  border-color: var(--gray-200);
  background-image: url(../images/search.svg);
  background-repeat: no-repeat;
  background-position: 13px 12px;
}

.search, 
.dt-search input.dt-input {
    position: relative;
    height: 16px;
    border: none !important;
    background: none;
    font-weight: 300;
    color: var(--gray-600);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
    white-space: nowrap;
    padding: 0;
    padding-left: 0;
    width: 100%;
    margin-left: 20px !important;
}

.dt-search .dt-input:focus-visible {
  outline: none;
}

.dt-search>label {
  display: none;
}

.table-footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--white-1000);
  border-radius: 0px 0px 8px 8px;
  overflow: scroll;
}

.table-footer-wrapper::-webkit-scrollbar {
  width: 0;
  display: none;
}

.table-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 16px 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-top-width: 1px;
  border-top-style: solid;
  border-color: var(--gray-100);
}

div.dt-container div.dt-layout-row {
  margin: 0 !important;
  padding: 0;
}

.dt-layout-row.dt-layout-table {
  padding-top: 0;
  padding-bottom: 0;
}

div.dt-container>div:first-child,
div.dt-container>div:nth-last-of-type(2) {
  padding: 16px 24px;
}

div.dt-container>div:nth-last-of-type(2) {
  border-top: 1px solid var(--gray-100);
}

.table-footer .field-dropdown {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px;
  position: relative;
  flex: 0 0 auto;
  background-color: var(--white-1000);
  border-radius: 4px;
  border: 1px solid;
  border-color: var(--gray-200);
}

.table-footer>.frame-row {
  width: fit-content;
  gap: 12px;
}

.button-pagination,
html body div.dt-container .dt-paging .dt-paging-button,
html body div.dt-container .dt-paging .dt-paging-button.current,
html body div.dt-container .dt-paging .dt-paging-button.current:hover {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid;
  padding: 0;
  border-color: transparent;
}
html body div.dt-container .dt-paging .dt-paging-button.current,
html body div.dt-container .dt-paging .dt-paging-button.current:hover {
  color: #ffffff !important;
  background-color: var(--blue-500);
  border-color: var(--blue-500);
}

div.dt-container .dt-paging .dt-paging-button:hover:not(.disabled) {
  border: 1px solid var(--blue-500) !important;
  background-color: var(--blue-500) !important;
}

.sort-wrapper:hover,
.caret-wrapper:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.frame-row .div-wrapper {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 4px;
}

.frame-row .div-wrapper:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.frame-row .div-wrapper:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

table {
  width: 100%;
  margin: 16px 0;
}

td {
  padding: 16px;
  margin: 0;
}

table.dataTable th.dt-type-numeric,
table.dataTable th.dt-type-date,
table.dataTable td.dt-type-numeric,
table.dataTable td.dt-type-date {
  text-align: left !important;
}

table.dataTable td.dt-nowrap {
  white-space: nowrap;
  width: 1%;
  text-align: center;
  @media screen and (max-width: 768px) {
    white-space: normal !important;
    width: auto;
  }
}

.dt-container {
  width: 100%;
}

table.dataTable thead>tr>th div.dt-column-header,
table.dataTable thead>tr>th div.dt-column-footer,
table.dataTable thead>tr>td div.dt-column-header,
table.dataTable thead>tr>td div.dt-column-footer,
table.dataTable tfoot>tr>th div.dt-column-header,
table.dataTable tfoot>tr>th div.dt-column-footer,
table.dataTable tfoot>tr>td div.dt-column-header,
table.dataTable tfoot>tr>td div.dt-column-footer {
  flex-direction: row !important;
  justify-content: flex-start !important;
}

table.dataTable thead>tr>th div.dt-column-header span.dt-column-title,
table.dataTable thead>tr>th div.dt-column-footer span.dt-column-title,
table.dataTable thead>tr>td div.dt-column-header span.dt-column-title,
table.dataTable thead>tr>td div.dt-column-footer span.dt-column-title,
table.dataTable tfoot>tr>th div.dt-column-header span.dt-column-title,
table.dataTable tfoot>tr>th div.dt-column-footer span.dt-column-title,
table.dataTable tfoot>tr>td div.dt-column-header span.dt-column-title,
table.dataTable tfoot>tr>td div.dt-column-footer span.dt-column-title {
  flex-grow: 0 !important;
}

table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:after {
  opacity: 1 !important;
  transform: scaleY(0.6);
  margin-bottom: -2px;
}

table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:after {
  opacity: 0.1 !important;
}

table.dataTable.row-border > tbody > tr > * {
  border-top: 1px solid var(--gray-100);
}

table.dataTable > thead > tr > th,
table.dataTable > tbody > tr > td {
  border-bottom: 1px solid var(--gray-100) !important;
  border-top: 1px solid var(--gray-100) !important;
}

div.dt-container.dt-empty-footer tbody > tr:last-child > * {
  border-bottom: none !important;
}

.table-body-simple-wrapper table.dataTable > thead > tr > th,
.table-body-simple-wrapper table.dataTable > tbody > tr > td {
  padding: 10px 16px;

   @media screen and (max-width: 480px) {
    padding: 10px;
  }
}

.jurisdiction-select {
  width: 100%;
}

.select-wrapper {
  padding: 16px;
  background-color: var(--white-1000);
  border-radius: 4px;
  border: 1px solid;
  border-color: var(--gray-600);
  height: 24px;
  cursor: pointer;
}

.custom-select-menu {
  display: flex;
  position: absolute;
  margin-top: 15px;
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 800px;
  left: 0;
  flex-direction: column;
  max-height: 300px;
  overflow-y: auto;
  background-color: var(--white-1000);
  border-radius: 4px;
  box-shadow: var(--sm-dropshadow-primary);
  z-index: 10;
  border-color: #00000022;
  cursor: pointer;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-500) white;

}
.custom-select-display {
  font-family: var(--body-copy-font-family)
}
 .custom-select-item {
  font-family: var(--body-copy-font-family);
  padding: 12px 16px;
  cursor: pointer;
  width: 100%;
}
.custom-select-item:focus-visible {
  background-color: var(--gray-200);
  outline: none;
}
.custom-select-item:hover {
  background-color: var(--blue-50);
}

.count-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 0;
  position: relative;
  flex: 0 0 auto;
}

.count {
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  background-color: var(--blue-25);
  color: var(--blue-500);
  height: 24px;
  width: 24px;
  border-radius: 60px;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  font-feature-settings: 'liga' off;
}

.heading-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  width: 100%;
}

.heading-wrapper h2 {
  padding-top: 0;
}

.status { 
  display: inline-block;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 2px;
  background-color: var(--blue-25);
  border-radius: 60px;
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 600;
}

.spinner {
  width: 100%;
  text-align: center;
}

.panel-body {
  width: 100%;
}

.panel-body > *:first-child {
  margin-top: 0;
}

.panel-body > *:last-child {
  margin-bottom: 0;
}

.dataTables-wrapper  {
  width: 100%;
}

.col-sm-12 {
  width: 100%;
}

/* Coming Soon Modal */
.coming-soon-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.coming-soon-header {
  width: 100%;
  text-align: right;
  padding-bottom: 8px;
}

.coming-soon-footer {
  width: 100%;
  padding-top: 32px;
  text-align: center;
}

.coming-soon-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  width: 100%;
  padding-bottom: 16px;
  font-size: 16px;
}

.close-button {
  background: transparent;
  border: none;
  margin: 0;
  min-width: auto;
  font-size: 16px;
  border-radius: 4px;
  width: 32px;
  height: 32px;
}

.close-button span {
  font-weight: 400;
}

.close-button:hover {
  background-color: var(--blue-50);
}

.coming-soon-content h2 {
  padding-top: 8px;
} 

.fa-calendar-clock {
  color: var(--blue-500);
  font-size: 43px;
}

.coming-soon-overlay.active {
  display: flex;
}

.coming-soon-card {
  background: var(--white-1000);
  border-radius:6px;
  padding: 32px;
  max-width: 624px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
  animation: coming-soon-fade-in 0.2s ease;
}

@keyframes coming-soon-fade-in {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
