@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;700&display=swap");
:root {
  --primary: #003046;
  --secondary: #efebe1;
  --secondary-dark: #e2ddcb;
  --secondary-darker: #beb7a5;
  --tertiary: #666a67;
  --text-dark: #343a40;
  --checkbox: #7fc31d;
  --font-main: 16px/1.35 "Work Sans", "Arial", "Helvetica Neue", "Helvetica",
  sans-serif;
  --fs-xs: .5rem;
  --fs-sm: .75rem;
  --fs-md: 1rem;
  --fs-lg: 1.5rem;
  --fs-xl: 2rem;
  --sp-xs: .5rem;
  --sp-sm: .75rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

test {
  color: green;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--primary);
  background: #fff;
  font: var(--font-main);
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

img {
  width: 100%;
  height: auto;
}

h1,
strong {
  font-weight: 500;
}

h1 {
  font-size: 30px;
  color: var(--primary);
}

h2 {
  font-size: 23px;
  font-weight: 300;
}

h3 {
  font-size: 20px;
}

section,
footer {
  padding: 30px 20px;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

input,
input:active,
input:focus {
  border: none;
  outline: none;
}

input[type=date] {
  position: relative;
  overflow: hidden;
}
input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
}

button,
button:focus,
button:active {
  border: none;
  background-color: #fff;
}

.no-print, .no-print * {
  display: none !important;
}

@media print {
  ul, p, table, h1, h2, h3, h4, i, li, span, .article__tip {
    break-inside: avoid;
  }
  .cover-page img {
    max-width: 750px;
  }
}
.bg--primary {
  background: var(--primary) !important;
}

.bg--secondary {
  background: var(--secondary) !important;
}

.bg--secondary-dark {
  background: var(--secondary-dark) !important;
}

.bg--tertiary {
  background: var(--tertiary) !important;
}

.text--primary {
  color: var(--primary) !important;
}

.text--secondary {
  color: var(--secondary) !important;
}

.text--tertiary {
  color: var(--tertiary) !important;
}

.border--primary {
  border: solid 1px var(--primary);
}

.border--secondary {
  border: solid 1px var(--secondary-darker);
}

.border-top--secondary {
  border-top: solid 2px var(--secondary-darker);
}

.border-bottom--secondary {
  border-bottom: solid 2px var(--secondary-darker);
}

.header {
  background-color: var(--secondary);
  position: fixed;
  width: 100%;
  z-index: 10000;
}
.header--empty {
  position: relative;
}

.footer {
  background-color: var(--tertiary);
  color: var(--secondary-dark);
}
.footer__logo-container {
  margin-bottom: 40px;
  width: 120px;
}
.footer__legal {
  color: var(--secondary-dark);
  font-size: 14px;
  border-top: solid 1px var(--secondary-dark);
  padding-top: 20px;
}
.footer__legal a {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--secondary-dark);
  text-decoration: underline;
}
.footer .contact {
  flex-shrink: 0;
  font-size: 14px;
  padding-bottom: 20px;
  color: var(--secondary-dark);
}
.footer .contact__location {
  font-weight: bold;
}
.footer .contact__number {
  color: var(--secondary-dark);
}

.btn {
  border-radius: 0;
  border: none;
  outline: none;
}

.btn-primary, .btn-primary-tiny, .btn-primary-half,
.btn-primary:active,
.btn-primary:focus,
.btn-secondary,
.btn-secondary:active,
.btn-secondary:focus,
.btn-tertiary,
.btn-tertiary:active,
.btn-tertiary:focus {
  color: #fff;
  font-weight: 500;
  position: relative;
  font-size: 20px;
  padding: 18px 15px;
  letter-spacing: 0.012em;
  min-width: 250px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: background ease 0.4s, color ease 0.2s;
}

.btn-rounded {
  border-radius: 16px;
}

.btn-primary, .btn-primary-tiny, .btn-primary-half,
.btn-primary:active,
.btn-primary:focus {
  background-color: var(--primary);
}
.btn-primary:hover, .btn-primary-tiny:hover, .btn-primary-half:hover, .btn-primary:focus-visible, .btn-primary-tiny:focus-visible, .btn-primary-half:focus-visible,
.btn-primary:active:hover,
.btn-primary:active:focus-visible,
.btn-primary:focus:hover,
.btn-primary:focus:focus-visible {
  background-color: var(--secondary-dark);
  color: var(--primary-dark) !important;
}

a.btn-primary.text--secondary:hover, a.text--secondary.btn-primary-tiny:hover, a.text--secondary.btn-primary-half:hover,
a.btn-primary.text--secondary:focus,
a.text--secondary.btn-primary-tiny:focus,
a.text--secondary.btn-primary-half:focus,
a.btn-primary.text--secondary:focus-visible,
a.text--secondary.btn-primary-tiny:focus-visible,
a.text--secondary.btn-primary-half:focus-visible {
  color: var(--primary-dark) !important;
}

.btn-secondary,
.btn-secondary:active,
.btn-secondary:focus {
  background-color: var(--secondary);
  color: var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus-visible,
.btn-secondary:active:hover,
.btn-secondary:active:focus-visible,
.btn-secondary:focus:hover,
.btn-secondary:focus:focus-visible {
  background-color: var(--primary);
}

.btn-tertiary,
.btn-tertiary:active,
.btn-tertiary:focus {
  background-color: var(--tertiary);
}
.btn-tertiary:hover, .btn-tertiary:focus-visible,
.btn-tertiary:active:hover,
.btn-tertiary:active:focus-visible,
.btn-tertiary:focus:hover,
.btn-tertiary:focus:focus-visible {
  background-color: var(--secondary);
  color: var(--primary);
}

.btn-breach,
.btn-breach:active,
.btn-breach:focus {
  background-color: var(--primary);
  color: #fff;
  font-weight: 500;
  position: relative;
  font-size: 18px;
  letter-spacing: 0.012em;
  min-width: 100px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: background ease 0.4s, color ease 0.2s;
}
.btn-breach:hover, .btn-breach:focus-visible,
.btn-breach:active:hover,
.btn-breach:active:focus-visible,
.btn-breach:focus:hover,
.btn-breach:focus:focus-visible {
  background-color: var(--secondary-dark);
  color: var(--primary);
}

.btn-feedback,
.btn-feedback:active,
.btn-feedback:focus {
  background-color: #fff;
  color: var(--primary);
  font-weight: 500;
  position: relative;
  font-size: 20px;
  padding: 18px 15px;
  letter-spacing: 0.012em;
  min-width: 250px;
  max-width: 250px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: background ease 0.4s, color ease 0.2s;
  border: 2px solid var(--primary);
}
.btn-feedback:hover, .btn-feedback:focus-visible,
.btn-feedback:active:hover,
.btn-feedback:active:focus-visible,
.btn-feedback:focus:hover,
.btn-feedback:focus:focus-visible {
  background-color: var(--secondary-dark);
  color: var(--primary);
}

.btn-primary-half {
  padding: 9px 7.5px; /* half of original padding */
}

.btn-primary-tiny {
  padding: 4px 2.5px;
  max-width: 150px;
  min-width: 80px;
  font-size: 13px;
  margin-bottom: 10px;
  margin-top: 5px;
  width: 100%;
  max-height: 30px;
}

.btn--secondary,
.btn--secondary:active,
.btn--secondary:focus {
  display: block;
  width: 100%;
  color: var(--primary);
  font-weight: 500;
  background-color: var(--secondary-dark);
  font-size: 20px;
  text-align: center;
  padding: 18px 15px;
  transition: background-color 0.4s ease;
}
.btn--secondary:hover, .btn--secondary:focus-visible,
.btn--secondary:active:hover,
.btn--secondary:active:focus-visible,
.btn--secondary:focus:hover,
.btn--secondary:focus:focus-visible {
  background-color: var(--secondary-darker);
}

.closed {
  opacity: 0.6;
  cursor: not-allowed;
}

@media only screen and (min-width: 1200px) {
  .btn-primary, .btn-primary-half, .btn-primary-tiny,
  .btn-secondary,
  .btn-tertiary {
    max-width: 300px;
  }
}
.event__header {
  padding: 1.2rem;
  color: var(--secondary);
  background-color: var(--tertiary);
  font-size: 1.5rem;
}
.event__body {
  padding: 1.2rem;
  background-color: var(--secondary);
}
.event__title {
  font-weight: 500;
  color: var(--primary);
  font-size: 1.8rem;
}
.event__details {
  margin-bottom: 1rem;
}
.event__detail {
  margin-right: 1.5rem;
}
.event__detail i {
  margin-right: 0.5rem;
  color: var(--tertiary);
}
.event__description a {
  text-decoration: underline;
}

.filter {
  margin-bottom: 50px;
}
.filter__input, .filter__input:active, .filter__input:focus {
  border-radius: 0;
  font-weight: 500;
  width: 100%;
  border: solid 2px var(--secondary-dark);
  color: var(--primary);
  padding: 12px;
  font-size: 16px;
}
.filter__input::placeholder, .filter__input:active::placeholder, .filter__input:focus::placeholder {
  color: var(--tertiary);
}
.filter__input--date {
  font-size: 12px;
}
.filter__clear {
  display: block;
  text-decoration: underline;
  color: var(--primary);
  padding: 5px;
  margin-bottom: 10px;
}
.filter .accordion-header {
  background-color: #fff;
  border: none;
}
.filter .accordion-button, .filter .accordion-item:first-of-type .accordion-button, .filter .accordion-item:last-of-type .accordion-button {
  font-size: 16px;
  color: var(--primary);
  border-radius: 0 !important;
  font-weight: 500;
  border-bottom: solid 1px var(--secondary) !important;
  outline: none;
  box-shadow: none;
  padding: 10px 5px;
}
.filter .accordion-button:hover, .filter .accordion-item:first-of-type .accordion-button:hover, .filter .accordion-item:last-of-type .accordion-button:hover {
  background-color: var(--secondary);
}
.filter .accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: var(--secondary);
}
.filter .accordion-item, .filter .accordion-item:first-of-type .accordion-button {
  border: none;
  border-radius: 0;
}
.filter .accordion-body {
  border: none;
}

.form-check {
  align-items: center;
  margin-bottom: 10px;
}
.form-check-input {
  border-color: var(--secondary-darker);
  margin-bottom: 2px;
}
.form-check-input:checked {
  border-color: var(--checkbox);
  background-color: var(--checkbox);
}
.form-check-label {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.hamburger__line {
  background-color: var(--primary);
  height: 2px;
  width: 30px;
  margin: 7px;
  transition: 0.2s ease-in-out;
  border-radius: 2px;
}
.hamburger.active .hamburger__line:nth-child(1) {
  transform: translatey(9px) rotate(45deg);
  background-color: var(--primary);
}
.hamburger.active .hamburger__line:nth-child(2) {
  background: rgba(0, 0, 0, 0);
}
.hamburger.active .hamburger__line:nth-child(3) {
  transform: translatey(-9px) rotate(-45deg);
  background-color: var(--primary);
}

.form__container {
  position: relative;
  width: 100%;
  max-width: 700px;
  padding: 0 20px;
}
.form__input, .form__input:active, .form__input:focus {
  border-radius: 0;
  font-weight: 500;
  width: 100%;
  border: solid 2px var(--secondary-dark);
  color: var(--primary);
  padding: 12px;
  font-size: 16px;
  display: block;
}
.form__input::placeholder, .form__input:active::placeholder, .form__input:focus::placeholder {
  color: var(--tertiary);
}
.form__label {
  font-weight: 500;
}
.form__alert {
  padding: 0 20px;
  z-index: 1000;
  position: absolute;
  width: 100%;
  max-width: 600px;
  top: 80px;
  margin: 0 auto;
}
.form select {
  width: 100%;
  padding: 10px;
}

#industry-checkboxes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: auto;
}
#industry-checkboxes ul li {
  padding: 5px;
}
#industry-checkboxes ul li input {
  border-color: var(--secondary-darker);
}
#industry-checkboxes ul li input:checked {
  border-color: var(--checkbox);
  background-color: var(--checkbox);
}

#communication-checkboxes ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  overflow: auto;
}
#communication-checkboxes ul li {
  padding: 5px;
}
#communication-checkboxes ul li input {
  border-color: var(--secondary-darker);
}
#communication-checkboxes ul li input:checked {
  border-color: var(--checkbox);
  background-color: var(--checkbox);
}

.link-primary,
.link-primary:hover {
  color: var(--primary) !important;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: underline;
}

.list, a {
  style: none;
  list-style: none;
  margin: 0;
  padding: 0;
  text-indent: 0;
}
.list__item, a__item {
  border-bottom: solid 1px var(--secondary-dark);
}
.list__item a,
.list__item a:hover, a__item a,
a__item a:hover {
  text-decoration: none;
  color: inherit;
}
.list__link, a__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5px;
  transition: ease background 0.4s;
}
.list__link:hover, a__link:hover {
  background-color: var(--secondary);
}
.list__title, a__title {
  color: var(--primary);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 0;
}
.list__title--large, a__title--large {
  font-size: 22px;
}
.list__body, .list p, a__body, a p {
  font-size: 14px;
  margin-bottom: 10px;
}
.list__date, a__date {
  font-weight: 400;
  font-size: 14px;
  color: var(--tertiary);
}
.list__badge, a__badge {
  background-color: var(--tertiary);
  white-space: nowrap;
  font-weight: 500;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  margin-left: 8px;
}

.video-list {
  style: none;
  list-style: none;
  margin: 0;
  padding: 0;
  text-indent: 0;
}
.video-list__img {
  width: 100px;
}
.video-list__title {
  font-size: 20px;
  margin-bottom: 0;
}
.video-list__item {
  padding: 20px 0;
  border-bottom: solid 1px var(--secondary-dark);
}

@keyframes fadeIn {
  from {
    transform: translate(-50%, -20px);
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}
.message {
  display: block;
  position: fixed;
  top: 10%;
  left: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: fadeIn 0.2s;
  animation-fill-mode: both;
  opacity: 0;
  z-index: 10;
}

.navbar {
  background-color: var(--secondary);
}
.navbar-brand {
  padding: 0;
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-brand img {
  width: 180px;
}

.nav {
  margin: 0;
  padding: 0;
  width: 100%;
}
.nav-item {
  background-color: var(--secondary);
}
.nav-item .dropdown-menu {
  margin: 0;
  padding: 0;
  background-color: var(--primary);
  border-radius: 0;
  border: 0;
}
.nav-item .dropdown-menu .dropdown-item {
  border: 0;
  padding: 15px 20px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--secondary);
  background-color: var(--tertiary);
}
.nav-item .dropdown-menu .dropdown-item:hover {
  background-color: var(--secondary-dark);
  color: var(--primary);
}
.nav-item .dropdown-toggle.show {
  background-color: var(--tertiary);
  color: var(--secondary);
}
.nav-link {
  white-space: nowrap;
  color: var(--primary);
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 100% !important;
  padding: 20px 15px !important;
}
.nav-link:hover {
  color: var(--primary);
  background-color: var(--secondary-dark);
}
.nav-link-icon {
  font-size: 18px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.navbar-toggler,
.navbar-toggler:focus {
  color: var(--primary);
  border-radius: 0;
  border: none;
  background-color: transparent;
  outline: none;
  box-shadow: none;
  padding: 12px;
}
.navbar-toggler:hover,
.navbar-toggler:focus:hover {
  background-color: var(--secondary-dark);
}

@media only screen and (min-width: 1200px) {
  .nav-link-icon {
    justify-content: center;
  }
}
.page-item:first-child .page-link, .page-item:last-child .page-link {
  border-radius: 0;
}
.page-link, .page-link:focus, .page-link:active {
  color: var(--primary);
  font: inherit;
  font-size: 18px;
  padding: 10px 15px;
  border: none;
  border-radius: 0;
}
.page-link:hover, .page-link:focus:hover, .page-link:active:hover {
  color: var(--primary);
  background-color: var(--secondary);
}
.page-link.active, .page-link:focus.active, .page-link:active.active {
  background-color: var(--primary);
  color: #fff;
}

.profile {
  display: flex;
  align-items: center;
}
.profile__img {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 1000px;
  margin-right: 10px;
}
.profile__name {
  font-weight: 500;
  font-size: 16px;
  color: var(--primary);
}
.profile__title {
  font-size: 14px;
  color: var(--tertiary);
}
.profile__more {
  font-size: 14px;
  color: var(--tertiary);
  margin-bottom: 0;
}

.search__btn {
  color: var(--primary);
  font-weight: 500;
  text-transform: uppercase;
  transition: background 0.3s ease;
  cursor: pointer;
  padding: 15px 20px;
  margin-right: 10px;
}
.search__btn:hover {
  color: var(--primary);
  background-color: var(--secondary-dark);
}

.search {
  top: 65px;
  position: absolute;
  z-index: 1000;
  background-color: var(--tertiary);
  padding: 60px 20px;
  width: 100%;
}
.search--active {
  display: block;
}
.search--hidden {
  display: none;
}
.search__input {
  padding: 15px 26px;
  color: var(--primary);
  background-color: var(--secondary);
  border: none;
  width: 100%;
}
.search__input:focus, .search__input:focus-visible {
  outline: none;
}
.search__submit {
  background-color: var(--primary);
  color: var(--secondary);
  border: none;
  outline: none;
  padding: 15px 26px;
}
.search__close-btn {
  color: var(--secondary);
  margin-left: auto;
  border: none;
  outline: none;
}

.spinner {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 48, 70, 0.1), rgba(0, 48, 70, 0.1));
  z-index: 9000;
}
.spinner--active {
  display: block;
}

.spinner__icon {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.table {
  width: 100%;
  margin: 1rem 0;
  border: solid 1px var(--secondary-darker);
}
.table th {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.2rem;
}
.table th, .table td {
  padding: 0.5rem;
  border: solid 1px var(--secondary-darker);
}

.table--article {
  width: 100%;
  margin: 1rem 0;
  border: solid 1px var(--secondary-darker);
}
.table--article th {
  color: var(--primary);
  font-weight: 500;
  font-size: 1.2rem;
}
.table--article th, .table--article td {
  padding: 0.5rem;
  border: solid 1px var(--secondary-darker);
}

.table--certificates {
  width: 100%;
  margin: 1rem 0;
  border: solid 1px var(--secondary-darker);
}
.table--certificates th {
  background-color: var(--secondary);
}
.table--certificates th, .table--certificates td {
  padding: 0.5rem;
  border-top: solid 1px var(--secondary-darker);
}

.webinar {
  display: flex;
  flex-direction: column;
  flex-basis: 350px;
  min-height: 400px;
  border: solid 1px var(--secondary-darker);
  padding: 25px;
  margin: 20px;
}
.webinar__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  text-indent: 0;
}
.webinar__img {
  width: 100%;
}
.webinar__title {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 5px;
}
.webinar__title:hover {
  text-decoration: underline;
}
.webinar__date {
  color: var(--secondary-darker);
}
.webinar__category {
  display: block;
  font-style: italic;
  color: var(--text-dark);
}

.checkout-summary {
  width: 100%;
  padding: 10px;
  background-color: var(--secondary);
  border-collapse: separate !important;
}
.checkout-summary td, .checkout-summary th {
  padding: 10px;
}

.remove-from-cart {
  font-weight: bold;
  color: darkred;
  cursor: pointer;
  float: right;
}

.form-control {
  border-radius: 0;
}

.discount-btn {
  background-color: var(--primary);
  color: white;
  font-weight: 500;
}

.discount-btn:hover {
  background-color: var(--secondary-dark);
  color: black;
}

.cart-hr {
  opacity: 1;
  color: var(--secondary-darker);
  border-top: 2px solid;
}

.alert {
  border: 0;
  border-radius: 0;
}

/* Custom styles for Bootstrap 5 tooltips */
.tooltip .tooltip-inner {
  background-color: white;
  color: #000;
  border: 1px solid #ddd;
  max-width: 300px; /* Increase maximum width */
  width: max-content; /* Allow content to determine width up to max-width */
  padding: 10px; /* Optional: Increase padding for better readability */
  text-align: left;
}

.tooltip .tooltip-arrow::before {
  border-top-color: white;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: white;
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: white;
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: white;
}

/* Ensure all HTML links have underlines */
.tooltip .tooltip-inner a {
  text-decoration: underline;
}

/* Optional: Style for visited links */
.tooltip .tooltip-inner a:visited {
  text-decoration: underline;
}

/* Optional: Style for hover state */
.tooltip .tooltip-inner a:hover {
  text-decoration: underline;
  /* You can add other hover styles here if desired */
}

.email-field {
  width: 400px;
}

.preference-field {
  width: 200px;
}

.detail-info p {
  margin: 0 !important;
}

.detail {
  font-size: large;
  font-weight: 450;
  color: var(--primary);
}
.detail__link {
  text-decoration: underline;
  font-weight: 500;
  text-align: right;
}
.detail__wrapup__link {
  text-decoration: underline;
  font-weight: 500;
  text-align: left;
}
.detail__wrapup__button {
  border: none;
  background-color: transparent;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
}
.detail__wrapup__button--registered {
  color: green;
  border: 1px solid green;
  padding: 4px 8px;
  margin-top: 10px;
}
.detail__wrapup__button--not-registered {
  color: red;
  border: 1px solid red;
  padding: 4px 8px;
  margin-top: 10px;
}

.accordion-button:not(.collapsed) {
  background-color: var(--secondary);
  color: var(--primary);
}

.accordion-body {
  color: var(--primary);
}

.accordion {
  border: none;
}

.accordion-item {
  border: none;
}

.accordion-header {
  border: none;
}

.accordion-button {
  border: none;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.company-error {
  padding-bottom: 10px;
  color: red;
}

.about {
  /* ----- PRICING (moved in) ----- */
}
.about .cta-banner__background {
  background-color: #305769;
}
.about .hero__image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 500px;
  background-image: linear-gradient(to bottom, rgba(0, 48, 70, 0.7), rgba(0, 48, 70, 0.5)), url("/static/images/hnhub-banner.jpeg");
}
.about .hero__background {
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: cover, cover;
}
.about .hero__text {
  top: 30%;
}
.about .hero--medium .container {
  padding: 3rem !important;
}
.about .hero--large .container {
  padding: 6rem !important;
}
.about .hero__button, .about .hero__button:active, .about .hero__button:focus {
  background-color: var(--secondary-dark);
  color: var(--primary);
}
.about .hero__button:hover {
  background-color: #129DC0;
  color: white;
}
.about .hero__link:hover {
  color: #129DC0;
}
.about .pricing {
  /* Make inner content grow naturally, pushing button to the bottom */
}
.about .pricing__card-container {
  position: relative;
  min-height: 100px;
  align-items: stretch; /* ensures .col children match height */
}
.about .pricing__card-wrapper {
  width: 100%;
  max-width: 320px; /* Set your desired width */
}
.about .pricing__card {
  border: solid 1px var(--primary);
  background-color: var(--secondary);
  border-radius: 0;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* ensures footer/button stays at bottom */
  height: 100%; /* makes card fill its column height */
  padding: 1.5rem;
}
.about .pricing__card.selected {
  border: solid 4px limegreen;
}
@media only screen {
  .about .pricing__card {
    min-height: 600px; /* maintain consistent height if needed */
  }
}
.about .pricing__card > *:not(:last-child) {
  margin-bottom: auto;
}
.about .pricing__radio-button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  border: solid 1px var(--primary);
  transition: all 0.2s ease-in-out;
}
.about .pricing__radio-button:checked {
  background-color: green;
  border-color: green;
}
.about .pricing__radio-label {
  cursor: pointer;
}
.about .pricing__enquire {
  font-weight: bold;
  font-size: 1.2em;
  padding-bottom: 20px;
  padding-top: 20px;
}
.about .pricing__button {
  background-color: var(--primary);
  color: white;
  padding: 20px;
  font-size: 1.2rem;
  width: 100%;
  margin-top: auto; /* pushes to bottom inside flex layout */
}
.about .pricing__button:hover {
  background-color: var(--secondary-darker);
  color: var(--primary);
}
.about .pricing .feature__list {
  list-style: none;
}
.about .pricing .feature__item {
  /* add item styles if needed */
}
.about .img-container img {
  width: auto;
}
.about .card-container {
  position: relative;
  width: 100%;
  height: 300px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.about .card-front,
.about .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.about .card-front {
  z-index: 2;
  transform: rotateY(0deg);
  overflow: hidden; /* Hide overflowing content */
}
.about .card-back {
  transform: rotateY(180deg);
}
.about .card-container.flipped {
  transform: rotateY(180deg);
}
.about .card-back .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  height: 100%; /* Ensure the card body takes up the full height of the card */
}
.about .split-image {
  width: 400px;
  height: 300px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .split-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.about .bg-with-triangles {
  position: relative;
  background-color: #ffffff; /* Set background color */
}
.about .carousel-background {
  background: none !important;
}
.about .quote {
  height: 100px;
}
@media only screen and (min-width: 1200px) {
  .about .hero__image {
    min-height: 800px;
  }
  .about .hero__background {
    min-height: 700px;
  }
  .about .hero__background-gradient {
    background-repeat: no-repeat;
    background-size: cover;
    background: linear-gradient(to bottom, rgb(0, 48, 70), rgba(0, 48, 70, 0.8));
  }
  .about .hero__text {
    max-width: 60%;
    min-width: 600px;
  }
  .about .bg-with-triangles::before,
  .about .bg-with-triangles::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    border: 50px solid transparent; /* Adjust the border size to change the size of the triangles */
  }
  .about .bg-with-triangles::before {
    right: 0;
    border-right-color: var(--secondary); /* Set the color of the triangles */
  }
  .about .bg-with-triangles::after {
    left: 0;
    border-left-color: var(--secondary); /* Set the color of the triangles */
  }
}

.hero__image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 500px;
  background-image: linear-gradient(to bottom, rgba(0, 48, 70, 0.7), rgba(0, 48, 70, 0.5)), url("/static/images/hnhub-banner.jpeg");
}
.hero__text {
  top: 30%;
}

.pricing {
  /* -----------------------------
     SELECT + PREVIEW SECTION
  ----------------------------- */
  /* Preview card container */
}
.pricing__card-container {
  position: relative;
  min-height: 100px;
}
.pricing__card-wrapper {
  width: 100%;
  max-width: 320px;
}
.pricing__card {
  border: solid 1px var(--primary);
  background-color: var(--secondary);
  border-radius: 0;
  color: var(--primary);
  transition: all 0.2s ease-in-out;
}
.pricing__card.selected {
  border: solid 4px limegreen;
}
@media only screen {
  .pricing__card {
    height: 600px;
  }
}
.pricing__selector-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.pricing__selector-control {
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
}
.pricing__selector-hint {
  font-size: 0.9rem;
  color: var(--primary);
  opacity: 0.7;
  margin-top: 0.3rem;
}
.pricing__preview-card {
  display: none; /* hidden by default */
  border: solid 1px var(--primary);
  background-color: var(--secondary);
  color: var(--primary);
  padding: 2rem;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  min-height: 600px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pricing__preview-card.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: fadeIn 0.4s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pricing__preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pricing__preview-badge {
  background-color: var(--primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}
.pricing__price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.4rem;
}
.pricing__price-value {
  font-size: 2rem;
  font-weight: bold;
}
.pricing__price-per {
  font-size: 1rem;
}
.pricing__price-taxnote {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: -0.4rem;
}
.pricing__preview-cta {
  border-top: 1px solid var(--primary);
  margin-top: 1rem;
  padding-top: 1rem;
}
.pricing__radio-button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
  border: solid 1px var(--primary);
  transition: all 0.2s ease-in-out;
}
.pricing__radio-button:checked {
  background-color: green;
  border-color: green;
}
.pricing__radio-label {
  cursor: pointer;
}
.pricing__enquire {
  font-weight: bold;
  font-size: 1.2em;
  padding-bottom: 20px;
  padding-top: 20px;
}
.pricing__button {
  background-color: var(--primary);
  color: white;
  padding: 20px;
  font-size: 1.2rem;
  width: 100%;
}
.pricing__button:hover {
  background-color: var(--secondary-darker);
  color: var(--primary);
}
.pricing .feature__list {
  list-style: none;
  padding-left: 0;
}
.pricing .feature__item {
  margin-bottom: 0.5rem;
}

.subscribe {
  background-color: var(--secondary);
  padding: 20px;
  max-width: 400px;
}
.subscribe__heading {
  font-size: 20px;
  font-weight: 400;
}
.subscribe__text {
  font-size: 12px;
}
.subscribe__icon {
  height: 30px;
  width: auto;
}
.subscribe__btn {
  background-color: var(--primary);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  padding: 16px 8px;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.subscribe__btn:hover, .subscribe__btn:active:hover, .subscribe__btn:focus:hover {
  background-color: var(--secondary-darker);
  color: var(--primary);
}
.subscribe__btn:focus {
  background-color: var(--primary);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  padding: 16px 8px;
}
.subscribe__btn__small {
  background-color: var(--primary);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  width: 40%;
  padding: 16px 8px;
}
.subscribe__btn__small:hover, .subscribe__btn__small:active:hover, .subscribe__btn__small:focus:hover {
  background-color: var(--secondary-darker);
  color: var(--primary);
}

.document__item {
  padding: 10px;
  border-bottom: solid 1px var(--secondary-dark);
}
.document__item--manual {
  background: var(--secondary);
  border: solid 2px var(--secondary-dark);
  margin-bottom: 10px;
}
.document__category {
  color: var(--tertiary);
}
.document__link {
  display: flex;
  font-weight: 500;
  font-size: 22px;
}
.document__link:hover {
  text-decoration: underline;
}
.document__description a {
  text-decoration: underline;
}
.document__btn {
  display: block;
  font-size: 14px;
  padding: 5px 8px;
  white-space: nowrap;
  font-weight: 500;
  color: #fff;
  background-color: var(--tertiary);
  width: 120px;
}
.document__btn:hover {
  background-color: var(--primary);
}
.document__btn--generate {
  background-color: var(--secondary);
  color: var(--primary);
}
.document__btn--generate:hover {
  background-color: var(--secondary-dark);
}
.document__collapse-btn, .document__collapse-btn:active, .document__collapse-btn:focus {
  color: var(--tertiary);
  background: none;
  font-size: 14px;
}
.document__collapse-btn:hover, .document__collapse-btn:active:hover, .document__collapse-btn:focus:hover {
  color: var(--primary);
}
.document .accordion {
  border: none;
  border-radius: 0;
}
.document .accordion-header {
  font-weight: 500;
  border: none;
  font-size: 20px;
  border-radius: 0;
  padding-bottom: 10px;
}
.document .accordion-button, .document .accordion-item:first-of-type .accordion-button, .document .accordion-item:last-of-type .accordion-button {
  font-size: 20px;
  color: var(--primary);
  border-radius: 0;
  font-weight: 500;
  border: none;
  border-bottom: 2px solid var(--primary) !important;
}
.document .accordion-button:hover, .document .accordion-item:first-of-type .accordion-button:hover, .document .accordion-item:last-of-type .accordion-button:hover {
  background-color: var(--secondary);
}
.document .accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: var(--secondary);
}
.document .accordion-item, .document .accordion-item:first-of-type, .document .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
  border: none;
  color: inherit;
}
.document .accordion-body {
  border: none;
  border-radius: 0;
}

.document-table {
  font-size: 10px;
  color: var(--primary);
  border: 1px solid var(--secondary);
}
.document-table th {
  font-weight: 500;
  background-color: var(--secondary);
}
.document-table th,
.document-table tr,
.document-table td {
  font-size: 15px;
  color: var(--primary);
}

.manual {
  background-color: var(--secondary);
  color: inherit;
  padding: 40px;
  border-radius: 15px;
}
.manual__title {
  font-weight: 500;
}
.manual__download-btn {
  padding: 10px;
  color: var(--primary);
  background-color: transparent;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
}
.manual__download-btn span {
  padding-bottom: 2px;
}

.event--page .event__header {
  background-color: var(--primary);
  padding: 30px;
  color: var(--secondary);
}
.event--page .event__detail {
  color: var(--secondary);
}
.event--page .event__detail i {
  color: var(--secondary-darker);
}
.event--page .event__detail a {
  text-decoration: underline;
}

.event--page .event__header {
  background-color: var(--primary);
  padding: 30px;
  color: var(--primary);
}
.event--page .event__header h1 {
  color: var(--secondary);
}
.event--page .event__header img {
  max-height: 150px;
  max-width: 200px;
  height: auto;
  width: auto;
  object-fit: contain;
}
.event--page .event__header img:only-child {
  max-height: 75%;
  max-width: none;
  display: block;
  margin: 0;
}
.event--page .event-group-events {
  background-color: var(--primary);
  padding: 20px;
  color: var(--secondary);
}
.event--page .event-group-events .limited-stripe {
  background-color: #c59368;
  border: 1px solid #000000;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2px;
  margin: -20px -20px 16px;
  padding: 12px 20px;
  border-radius: 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06) inset, 0 2px 10px rgba(0, 0, 0, 0.05);
}
.event--page .event-group-events h2 {
  color: var(--secondary);
}
.event--page .event-group-events select.form-select {
  color: var(--primary);
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 1rem;
}
.event--page .event-group-events .event-detail-box {
  background-color: var(--secondary);
  color: var(--primary);
  border-radius: 6px;
}
.event--page .event-group-events .event-detail-box p, .event--page .event-group-events .event-detail-box strong, .event--page .event-group-events .event-detail-box span {
  color: var(--primary);
}
.event--page .event-group-events .event-detail-box i {
  color: var(--primary);
}
.event--page .event__description {
  color: var(--primary);
}
.event--page .event__description h2, .event--page .event__description p, .event--page .event__description strong, .event--page .event__description span {
  color: var(--primary);
}

.event-logo {
  max-height: 150px;
  max-width: 200px;
  height: auto;
  width: auto;
  object-fit: contain;
  display: inline-block;
}

.faq__answer {
  background-color: var(--secondary);
  color: inherit;
  padding: 40px;
}
.faq__answer p, .faq__answer li {
  font-family: Arial;
  color: var(--text-dark);
}
.faq__category {
  font-weight: 400;
  color: var(--text-dark);
}
.faq .accordion {
  border: none;
  border-radius: 0;
}
.faq .accordion-header {
  font-weight: 500;
  border: none;
  font-size: 20px;
  border-radius: 0;
  padding-bottom: 10px;
}
.faq .accordion-button, .faq .accordion-item:first-of-type .accordion-button, .faq .accordion-item:last-of-type .accordion-button {
  padding-bottom: 30px;
  font-size: 20px;
  color: var(--primary);
  border-radius: 0;
  font-weight: 500;
  border: none;
  border-bottom: 1px solid var(--secondary-dark) !important;
}
.faq .accordion-button:hover, .faq .accordion-item:first-of-type .accordion-button:hover, .faq .accordion-item:last-of-type .accordion-button:hover {
  background-color: var(--secondary);
}
.faq .accordion-button:not(.collapsed) {
  color: var(--primary);
  background-color: var(--secondary);
}
.faq .accordion-item, .faq .accordion-item:first-of-type, .faq .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
  border: none;
  color: inherit;
}
.faq .accordion-body {
  border: none;
  border-radius: 0;
}
.faq a,
.faq a:hover {
  text-decoration: underline;
  color: inherit;
}

.reg-update-article__body p, .reg-update-article__body li {
  color: var(--text-dark);
  font-family: Arial;
  text-align: justify;
  line-height: 1.5;
}
.reg-update-article__body a,
.reg-update-article__body a:hover {
  text-decoration: underline;
  color: inherit;
}

.reg-update__list {
  style: none;
  list-style: none;
  margin: 0;
  padding: 0;
  text-indent: 0;
}
.reg-update__item {
  border-bottom: solid 1px var(--secondary-dark);
  padding: 1rem 0;
}
.reg-update__date {
  font-weight: 400;
  font-size: 14px;
  color: var(--tertiary);
}
.reg-update__badge {
  background-color: var(--tertiary);
  white-space: nowrap;
  font-weight: 500;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  margin-left: 8px;
}
.reg-update__title {
  color: var(--primary);
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 0.5rem;
}
.reg-update__tip-title {
  color: var(--primary);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 0.5rem;
}
.reg-update__preview p, .reg-update__preview li {
  color: var(--text-dark);
  font-family: Arial;
  font-size: 14px;
}
.reg-update__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5px;
  transition: ease background 0.4s;
}
.reg-update__link:hover {
  background-color: var(--secondary);
}

.quiz__question {
  border: solid 1px var(--secondary-darker);
}
.quiz__question--answered {
  background: var(--secondary);
  border: solid 1px var(--secondary-darker);
}
.quiz__question--not-answered {
  border: solid 1px #BB2D3B;
}
.quiz__radio:checked {
  border: solid 1px var(--primary);
}

.printable {
  max-width: 900px !important;
}
@media screen and (max-width: 900px) {
  .printable {
    max-width: 100% !important;
  }
}

.monthly-trex .cover-page {
  background-color: #003146;
  height: 100%;
}
.monthly-trex .cover-page h1 {
  font-size: 180px;
  color: white;
  padding-left: 40px;
  font-family: "WorkSans-Bold", sans-serif;
  font-weight: bolder;
  text-transform: uppercase;
}
.monthly-trex .cover-page h2 {
  font-size: 40px;
  padding-left: 40px;
  color: white;
  font-family: "WorkSans-Light", sans-serif;
  font-weight: bold;
}
.monthly-trex .cover-page h3 {
  font-size: 30px;
  padding-left: 40px;
  color: white;
  font-family: "WorkSans-Regular", sans-serif;
}
.monthly-trex .cover-page .trex-logo {
  min-width: 800px;
  max-width: 900px;
}
.monthly-trex .cover-page .hn-logo {
  max-width: 400px;
}
.monthly-trex .cover-page hr {
  border: none;
  height: 5px;
  padding: 0;
  margin: 0;
  opacity: initial;
  width: 100%;
}
.monthly-trex .cover-page p {
  color: white;
  font-family: "WorkSans-Light", sans-serif;
  font-weight: bold;
  font-size: 12px;
}
@media screen and (max-width: 900px) {
  .monthly-trex .cover-page .trex-logo {
    min-width: auto;
    max-width: 800px;
  }
  .monthly-trex .cover-page h1 {
    font-size: 16vw;
  }
  .monthly-trex .cover-page h2 {
    font-size: 4vw;
  }
  .monthly-trex .cover-page h3 {
    font-size: 3vw;
  }
  .monthly-trex .cover-page p {
    font-size: 1.5vw;
  }
}
.monthly-trex .article {
  margin: 10px;
}
.monthly-trex .article hr {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.monthly-trex .article__divider hr {
  border-top: 2px solid;
  opacity: initial;
  color: #129dc0 !important;
  margin: 10px;
}
.monthly-trex .article__tip {
  background-color: #ebe8dd;
}
.monthly-trex .article__tip img {
  min-width: 20px;
  max-width: 100px;
}
.monthly-trex .article__tip h2 {
  font-size: 30px;
  color: #a5725b;
  font-family: "WorkSans-Bold", sans-serif;
  font-weight: bolder;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.monthly-trex .article__tip p {
  font-family: "WorkSans-Medium", sans-serif;
  font-size: large;
}
.monthly-trex .article__header {
  background-color: var(--tertiary);
  padding: 25px;
  color: var(--secondary);
  margin-bottom: 40px;
}
.monthly-trex .article__title {
  font-size: 25px;
  color: #129dc0;
  font-family: "WorkSans-Bold", sans-serif;
  font-weight: bold;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.monthly-trex .article__tip_title {
  font-size: 20px;
  color: #a5725b;
  font-family: "WorkSans-Bold", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
.monthly-trex .article__body {
  text-align: justify;
  font-family: "WorkSans-Medium", sans-serif;
  font-size: large;
  color: #313638;
  line-height: 1.2;
}
.monthly-trex .article__body a, .monthly-trex .article__body a:hover {
  text-decoration: underline;
  color: var(--primary);
}
.monthly-trex .article__body ul {
  list-style: none; /* Remove default bullets */
}
.monthly-trex .article__body ul li::before {
  content: "•"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #129dc0; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}
.monthly-trex .article__body ol li::before {
  content: counter(li) ". ";
  color: #129dc0;
}
.monthly-trex .article__body ol {
  counter-reset: li;
  list-style-type: none;
}
.monthly-trex .article__body ol li {
  counter-increment: li;
}
.monthly-trex .article__footer {
  padding-top: 20px;
  border-bottom: solid var(--secondary-darker) 2px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  font-size: 16px;
  font-style: italic;
}
.monthly-trex .article p {
  margin-bottom: 15px;
  page-break-inside: avoid;
}
.monthly-trex__margin {
  border-right: 4px dotted #c59679;
}
.monthly-trex__sticky {
  position: sticky;
  z-index: 999;
  top: 70px;
  background-color: white;
  padding: 10px;
}
.monthly-trex__column-heading h2 {
  font-size: 20px;
  font-family: "WorkSans-Bold", sans-serif;
  font-weight: bold;
  background-image: linear-gradient(to right, #723628, #dcb492, #733629);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  word-wrap: break-word;
}
.monthly-trex__column-heading .category-link {
  text-decoration: none;
}
.monthly-trex__column-heading .category-link:not(.current-category) {
  background-image: none;
  color: #333;
}
.monthly-trex__column-heading .category-link.current-category {
  font-size: 30px;
}
@media screen and (max-width: 870px) {
  .monthly-trex__column-heading {
    display: none !important;
  }
}
@media screen and (max-width: 870px) {
  .monthly-trex__column-body {
    width: 100%;
  }
}
.monthly-trex__footer {
  border-top: solid var(--secondary-darker) 2px;
  padding: 20px 0;
}

.category-section {
  scroll-margin-top: 5rem;
}
@media screen and (max-width: 870px) {
  .category-section {
    padding-top: 0;
  }
}

.head-page {
  page-break-before: always;
  page-break-inside: avoid;
}

.trex-heading {
  background-color: #003146;
}
.trex-heading hr {
  border: none;
  height: 5px;
  padding: 0;
  margin: 0;
  opacity: initial;
  width: 100%;
}
.trex-heading__trex {
  font-size: 80px;
  color: white;
  font-family: "WorkSans-Bold", sans-serif;
  font-weight: bold;
}
@media screen and (max-width: 870px) {
  .trex-heading__trex {
    font-size: 60px;
  }
}
.trex-heading__body {
  font-size: 25px;
  color: white;
  font-family: "WorkSans-Regular", sans-serif;
}
@media screen and (max-width: 870px) {
  .trex-heading__body {
    font-size: 3vw;
  }
}
.trex-heading__logo img {
  min-width: 200px;
  max-width: 400px;
}

@font-face {
  font-family: "WorkSans-Bold";
  src: url("/static/fonts/WorkSans-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "WorkSans-Light";
  src: url("/static/fonts/WorkSans-Light.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "WorkSans-Regular";
  src: url("/static/fonts/WorkSans-Regular.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "WorkSans-Medium";
  src: url("/static/fonts/WorkSans-Medium.ttf") format("truetype");
  font-style: normal;
}
.webinar__detail {
  color: var(--secondary);
}
.webinar__article p, .webinar__article li {
  font-family: Arial;
  color: var(--text-dark);
}
.webinar__article a {
  text-decoration: underline;
}

.terms-and-conditions__body p, .terms-and-conditions__body li {
  color: var(--text-dark);
  font-family: Arial;
  text-align: justify;
  line-height: 1.5;
}
.terms-and-conditions__body a,
.terms-and-conditions__body a:hover {
  text-decoration: underline;
  color: inherit;
}
.terms-and-conditions__body img {
  max-width: 700px;
}

.row {
  align-items: flex-start; /* Prevent columns from stretching to match height */
}

.compliance {
  /* Style the active button separately */
}
.compliance__cal {
  display: inline-block;
  background-color: #FFF;
  width: 100%; /* Set the width to 100% to fit within the parent container */
  max-width: 75px; /* Optionally, set a maximum width for the calendar */
  max-height: 85px; /* Optionally, set a maximum width for the calendar */
  min-width: 75px;
  min-height: 85px;
  text-align: center;
}
.compliance__cal .month {
  max-height: 50px;
  font-size: 1rem;
  text-transform: uppercase;
  background-color: var(--primary);
  color: #FFF;
}
.compliance__cal .date {
  background-color: var(--secondary);
  font-size: 2rem;
  height: 60px;
  color: #585858;
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
}
.compliance__secondary {
  background-color: var(--secondary);
}
.compliance__center-cell {
  justify-content: center;
  display: flex;
  align-items: center;
}
.compliance__no_bottom_border {
  border-bottom: none;
}
.compliance--nav-item {
  margin: 0;
  padding-bottom: 10px;
  font-weight: 500;
}
.compliance--nav-link {
  background-color: white;
  padding: 10px 30px;
  border: 0.5px solid var(--secondary);
  color: #003046; /* Text color for the active button */
}
.compliance--nav-link.active {
  background-color: #003046;
  color: white; /* Text color for both active and non-active buttons */
}

.pill-registered {
  background-color: #35c932 !important;
  font-size: small;
  min-width: 100px;
}

.badge-new {
  background-color: #35c932 !important;
  font-size: small;
  min-width: 45px;
  padding-left: 0;
  padding-right: 0;
}

.badge-beta {
  background-color: orange !important;
  font-size: small;
  min-width: 45px;
  padding-left: 0;
  padding-right: 0;
}

.pill-complete {
  background-color: #35c932 !important;
  font-size: small;
  font-weight: 800;
  min-width: 100px;
}

.pill-incomplete {
  background-color: white !important;
  border: 1px solid var(--primary);
  font-size: small;
  font-weight: 800;
  color: var(--primary);
  min-width: 100px;
}

.pill-overdue {
  background-color: red !important;
  font-size: small;
  font-weight: 800;
  min-width: 100px;
}

.overdue {
  color: red !important;
  font-weight: bold;
  max-width: 100px;
}

.pill-new {
  background-color: #35c932 !important;
  font-size: small;
  font-weight: 800;
  min-width: 80px;
}

.pill-decommissioned {
  background-color: #808080 !important;
  font-size: small;
  font-weight: 800;
  min-width: 80px;
}

.pill-major {
  background-color: red !important;
  font-size: small;
  font-weight: 800;
  min-width: 80px;
}

.pill-minor {
  background-color: orange !important;
  font-size: small;
  font-weight: 800;
  min-width: 80px;
}

.diary-notification {
  color: orange !important;
}

.diary-add-button {
  color: #7fc31d !important;
  font-size: 20px;
}

.added-check {
  color: #7fc31d !important;
}

.resource-list {
  max-height: 170px;
  overflow-y: auto;
}

.fixed-component--centered {
  min-height: 320px;
  overflow-y: auto; /* Vertical scroll only if needed */
  overflow-x: hidden; /* Prevent horizontal scroll */
  max-width: 100%; /* Ensure content doesn't exceed container width */
  box-sizing: border-box; /* Include padding/borders in width calculations */
  display: flex;
  justify-content: center;
  align-items: center;
  word-wrap: break-word; /* Break long words to prevent overflow */
  background: #ffffff; /* Clean white background */
  border-radius: 10px; /* Rounded corners for card effect */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Subtle shadow for depth */
  padding: 20px; /* Consistent padding */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transitions */
  border: 1px solid #e5e7eb; /* Light border for definition */
  flex: 0 0 auto; /* Prevent growing/shrinking, use content height */
}

/* Styling for fixed-component containers */
.fixed-component {
  min-height: 320px;
  overflow-y: auto; /* Vertical scroll only if needed */
  overflow-x: hidden; /* Prevent horizontal scroll */
  max-width: 100%; /* Ensure content doesn't exceed container width */
  box-sizing: border-box; /* Include padding/borders in width calculations */
  word-wrap: break-word; /* Break long words to prevent overflow */
  background: #ffffff; /* Clean white background */
  border-radius: 10px; /* Rounded corners for card effect */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Subtle shadow for depth */
  padding: 20px; /* Consistent padding */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transitions */
  border: 1px solid #e5e7eb; /* Light border for definition */
  flex: 0 0 auto; /* Prevent growing/shrinking, use content height */
}

/* Ensure the flex container aligns items at the top */
.d-flex.flex-column.gap-4 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align items at the top, no stretching */
  gap: 1rem; /* Maintain gap between cards */
}

/* Hover effect for all card components */
.fixed-component:hover {
  transform: translateY(-3px); /* Slight lift on hover */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12); /* Enhanced shadow */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .fixed-component, .fixed-component--centered {
    padding: 16px; /* Slightly less padding on smaller screens */
    border-radius: 8px; /* Slightly smaller corners */
  }
}
@media (max-width: 576px) {
  .fixed-component, .fixed-component--centered {
    padding: 12px;
  }
}
.diary-table {
  font-size: 10px;
  color: var(--primary);
  border: 1px solid var(--secondary);
  max-height: 800px; /* Set your desired fixed height */
  overflow-y: auto; /* Enable vertical scroll if the content exceeds the height */
  display: block;
  /* Existing width classes */
  /* Specific column adjustments */
}
.diary-table__head {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 1;
}
.diary-table__head th {
  text-align: left !important;
  border: none;
}
.diary-table__head tr {
  vertical-align: middle !important;
}
.diary-table a,
.diary-table a:hover {
  text-decoration: underline;
  color: inherit;
}
.diary-table td {
  width: auto;
  padding: 8px; /* Added for better spacing */
}
.diary-table td.min {
  width: 1%;
  white-space: nowrap;
}
.diary-table .sm-column {
  width: 20% !important;
}
.diary-table .xs-column {
  width: 10% !important;
}
.diary-table .xxs-column {
  width: 5% !important;
}
.diary-table .detail-column {
  width: 40%;
}
.diary-table th[data-column=description],
.diary-table td:nth-child(4) { /* Description column */
  width: 30% !important; /* Widen to 30% */
}
.diary-table th[data-column=obligation_met],
.diary-table td:nth-child(7) { /* How We Meet Our Obligation column */
  width: 10% !important; /* Reduce to 10% */
}
.diary-table .overdue {
  color: red;
}
.diary-table .alpha-list ol {
  list-style-type: decimal;
}
.diary-table .alpha-list ol > li > ol {
  list-style-type: lower-alpha;
}
.diary-table .alpha-list ol > li > ol > li > ol {
  list-style-type: lower-roman;
}
.diary-table .sortable-column {
  cursor: pointer;
  position: relative;
  padding-right: 20px;
}
.diary-table .sortable-column::after {
  content: " ";
  position: absolute;
  right: 5px;
  opacity: 0;
  transition: opacity 0.2s;
}
.diary-table .sortable-column:hover::after {
  content: "▲▼";
  opacity: 0.5;
}
.diary-table .sortable-column.sorting-asc::after {
  content: "▲";
  opacity: 1;
}
.diary-table .sortable-column.sorting-desc::after {
  content: "▼";
  opacity: 1;
}

.two-factor__image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 60%;
}

.input-group-addon i {
  margin-left: -30px;
  cursor: pointer;
  z-index: 200;
  position: absolute;
  font-size: large;
  color: #6c757d;
}

#addCustomEntryModal {
  --bs-modal-margin: 4rem;
}
#addCustomEntryModal .accordion-button,
#addCustomEntryModal .accordion-body {
  background-color: #fff;
  color: var(--primary);
  font: var(--font-main);
  padding-left: 0;
  padding-right: 0;
}

/* --------------------------------------------------------------------
   TABLE & STICKY HEADER
   -------------------------------------------------------------------- */
.obligation-register-table {
  display: block;
  max-height: 600px;
  overflow-y: auto;
  table-layout: fixed;
  width: 100%;
  border: 1px solid var(--secondary);
  font-size: 14px;
  color: var(--primary);
}

/* Raise header above any row‑level icons */
.obligation-register-table__head {
  position: sticky;
  top: 0;
  z-index: 10; /* ← bump this above the pencil icons */
  background-color: var(--secondary);
}

/* Header cell styling */
.obligation-register-table__head th {
  padding: 12px;
  font-size: 15px;
  font-weight: 500;
  text-align: left !important;
  vertical-align: middle !important;
  border: none;
}

/* Default cell styling (also creates the positioning context) */
.obligation-register-table th,
.obligation-register-table td {
  position: relative;
  vertical-align: top;
  padding: 10px;
  width: 7.14%;
}

/* Make one column wide */
.obligation-register-table .wide-column {
  width: 50% !important;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Highlight un‑reviewed rows */
.obligation-register-table .not-reviewed {
  background-color: #FFFFE0;
}

/* --------------------------------------------------------------------
   PENCIL ICONS
   -------------------------------------------------------------------- */
.edit-pencil-container {
  /* sits inside a position-relative <td> */
  z-index: 2; /* below the header (z‑index:10) */
  pointer-events: auto;
}

.edit-pencil {
  font-size: 0.875rem;
  line-height: 1;
}

/* reused class for any “pin to top‑right” pencil */
.edit-pencil-absolute {
  position: absolute !important;
  top: 0.25rem;
  right: 0.25rem;
}

/* push the obligation text down so it never overlaps the icon */
.obligation-text {
  display: block;
  margin-top: 1.5rem;
}

/* --------------------------------------------------------------------
   LINKS, LISTS, SORTING ICONS
   -------------------------------------------------------------------- */
.obligation-register-table a,
.obligation-register-table a:hover {
  text-decoration: underline;
  color: inherit;
}

.obligation-register-table .alpha-list ol {
  margin: 0;
  padding-left: 20px;
}

.obligation-register-table .alpha-list ol > li > ol {
  list-style-type: lower-alpha;
}

.obligation-register-table .alpha-list ol > li > ol > li > ol {
  list-style-type: lower-roman;
}

.sortable-column {
  cursor: pointer;
  position: relative;
  padding-right: 25px;
}

.sortable-column::after {
  content: "";
  position: absolute;
  right: 8px;
  opacity: 0;
  transition: opacity 0.2s;
}

.sortable-column:hover::after {
  content: "▲▼";
  opacity: 0.5;
}

.sortable-column.sorting-asc::after {
  content: "▲";
  opacity: 1;
}

.sortable-column.sorting-desc::after {
  content: "▼";
  opacity: 1;
}

/* --------------------------------------------------------------------
   PAGINATION & FOOTER
   -------------------------------------------------------------------- */
.table-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-count {
  text-align: right;
}

/* =====================================
   AML – Six Squares (Fixed ~340px cards + Underlined Links)
   + Pricing (scoped under .aml) — aligned footers & equal-height buttons
   ===================================== */
/* never smaller than this */
/* target width in full view */
.aml {
  /* === Base backgrounds === */
  /* Text contrast helper */
  /* === Six Squares Section === */
  /* === Logo Styles === */
  /* === Palette === */
  /* === Utilities === */
  /* =====================================
    AML – Pricing (no-scroll, equal-height row)
    ===================================== */
  --pricing-header-min: 150px; /* adjust for tallest title+price block */
  --pricing-gap: 1rem;
  /* Optional: tweak header min-height per breakpoint */
}
.aml .bg-default {
  background-color: #fff !important;
}
.aml .bg-primary {
  background-color: var(--primary, #0d6efd) !important;
}
.aml .bg-secondary, .aml .pricing.pricing--secondary {
  background-color: var(--secondary, #6c757d) !important;
}
.aml .text--secondary {
  color: var(--on-primary, #fff) !important;
}
.aml .text--secondary a {
  color: inherit;
}
.aml .text--secondary .muted, .aml .text--secondary .text-muted {
  color: rgba(255, 255, 255, 0.85) !important;
}
.aml p a {
  text-decoration: underline !important;
  text-underline-offset: 2px;
  text-decoration-thickness: from-font;
}
.aml .aml-six-squares {
  /* Responsive grid (leave Bootstrap to handle gutters & widths) */
  /* === Flip Card === */
  /* Keep grid centered on big screens */
}
.aml .aml-six-squares .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}
.aml .aml-six-squares .section-header {
  margin-bottom: 1.25rem;
}
.aml .aml-six-squares .section-header h2 {
  margin-bottom: 0.5rem;
}
.aml .aml-six-squares .section-header .section-description {
  color: #444;
}
.aml .aml-six-squares .section-header.text--secondary .section-description {
  color: rgba(255, 255, 255, 0.9);
}
.aml .aml-six-squares .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}
.aml .aml-six-squares .row > [class*=col-] {
  flex: 0 1 340px; /* limit each card width */
  min-width: 260px; /* stop shrinking below safe size */
  max-width: 340px;
  display: flex;
  justify-content: center;
}
.aml .aml-six-squares .ratio.ratio-1x1 {
  min-width: 260px;
  max-width: 340px;
  min-height: 260px;
  max-height: 340px;
  flex: 1 1 auto;
}
.aml .aml-six-squares .card {
  display: flex;
  flex-direction: column;
  background-color: var(--aml-card-bg, #fff);
  color: var(--aml-card-ink, #101828);
  border-radius: 16px;
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
  padding: 20px;
  min-height: 320px;
  transition: box-shadow 0.2s ease;
  position: relative;
}
.aml .aml-six-squares .card:hover {
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
}
.aml .aml-six-squares .card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 2.5rem; /* room for arrow */
  /* ✅ Underlined links in card body */
}
.aml .aml-six-squares .card .card-body a {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
  transition: text-decoration-color 0.2s ease, opacity 0.2s ease;
}
.aml .aml-six-squares .card .card-body a:hover, .aml .aml-six-squares .card .card-body a:focus {
  text-decoration-color: transparent;
  opacity: 0.85;
}
.aml .aml-six-squares .card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: inherit;
  /* ensure both link and non-link titles look identical */
}
.aml .aml-six-squares .card .card-title a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.aml .aml-six-squares .card .card-title a:hover, .aml .aml-six-squares .card .card-title a:focus {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
}
.aml .aml-six-squares .card .card-text p:last-child {
  margin-bottom: 0;
}
.aml .aml-six-squares .flip-card {
  perspective: 1000px;
  position: relative;
  width: 100%;
  height: 100%;
  /* Flip arrow */
}
.aml .aml-six-squares .flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.aml .aml-six-squares .flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}
.aml .aml-six-squares .flip-card-face {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.aml .aml-six-squares .flip-card-face .card, .aml .aml-six-squares .flip-card-face .card-body, .aml .aml-six-squares .flip-card-face a, .aml .aml-six-squares .flip-card-face svg {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.aml .aml-six-squares .flip-card-back {
  transform: rotateY(180deg);
}
.aml .aml-six-squares .flip-card .flip-toggle {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: currentColor;
  transition: opacity 0.2s ease;
}
.aml .aml-six-squares .flip-card .flip-toggle:hover, .aml .aml-six-squares .flip-card .flip-toggle:focus {
  opacity: 0.75;
}
.aml .aml-six-squares .flip-card .flip-toggle svg {
  width: 20px;
  height: 20px;
}
.aml .aml-six-squares .flip-card.flipped .flip-card-front .flip-toggle {
  visibility: hidden;
  pointer-events: none;
}
.aml .aml-six-squares .flip-card:not(.flipped) .flip-card-back .flip-toggle {
  visibility: hidden;
  pointer-events: none;
}
@media (min-width: 1400px) {
  .aml .aml-six-squares .row {
    justify-content: center;
  }
}
.aml .logo-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  overflow: hidden;
}
.aml .logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.aml .bg-ocean {
  --aml-card-bg: #003146;
  --aml-card-ink: #fff;
}
.aml .bg-stone {
  --aml-card-bg: #666A67;
  --aml-card-ink: #fff;
}
.aml .bg-silt {
  --aml-card-bg: #BEB7A6;
  --aml-card-ink: #101828;
}
.aml .bg-cotton {
  --aml-card-bg: #E2DDCB;
  --aml-card-ink: #101828;
}
.aml .bg-bronze {
  --aml-card-bg: #C59368;
  --aml-card-ink: #101828;
}
.aml .bg-moss {
  --aml-card-bg: #4F7E3F;
  --aml-card-ink: #fff;
}
.aml .bg-pine {
  --aml-card-bg: #006E72;
  --aml-card-ink: #fff;
}
.aml .bg-fern {
  --aml-card-bg: #BFD59F;
  --aml-card-ink: #101828;
}
.aml .bg-mint {
  --aml-card-bg: #99D6CE;
  --aml-card-ink: #101828;
}
.aml .bg-sapphire {
  --aml-card-bg: #0055BB;
  --aml-card-ink: #fff;
}
.aml .bg-lake {
  --aml-card-bg: #129DC0;
  --aml-card-ink: #101828;
}
.aml .bg-sky {
  --aml-card-bg: #96BCDE;
  --aml-card-ink: #101828;
}
.aml .bg-crystal {
  --aml-card-bg: #75C6DE;
  --aml-card-ink: #101828;
}
.aml .bg-amber {
  --aml-card-bg: #E99251;
  --aml-card-ink: #101828;
}
.aml .bg-sand {
  --aml-card-bg: #E4C589;
  --aml-card-ink: #101828;
}
.aml .text-success {
  color: var(--success, #198754) !important;
}
.aml .pricing {
  /* ---------- CSS custom props (scoped) ---------- */
  /* Defaults (overridden by modifiers below) */
  --pricing-header-min: 150px;
  --pricing-gap: 1rem;
  /* Section + color tokens (defaults for --default) */
  --pricing-bg: transparent; /* section background */
  --pricing-ink: inherit; /* section text color */
  --pricing-card-bg: var(--secondary); /* card bg */
  --pricing-card-ink: var(--primary); /* card text */
  --pricing-accent: var(--primary); /* borders + CTAs */
  background: var(--pricing-bg);
  color: var(--pricing-ink);
  /* === Background modifiers from Wagtail === */
  /* Let Bootstrap do gutters/widths; just ensure stretch */
  /* Card uses FLEX COLUMN: header | body (flex) | footer */
  /* Price: make "from" smaller without shrinking the whole price */
  /* Anchor styled as the button */
  /* =========================================================
  Allow Six-Squares palette classes (bg-ocean/bg-moss/etc)
  to theme Pricing cards too.
  Those palette classes set --aml-card-bg / --aml-card-ink,
  so we map them onto the pricing card styling here.
  ========================================================= */
  /* If a themed card is used, don't let Bootstrap's .text-muted clash */
}
.aml .pricing.pricing--default {
  /* already set by defaults above */
}
.aml .pricing.pricing--primary {
  --pricing-bg: var(--primary, #0d6efd);
  --pricing-ink: var(--on-primary, #fff);
  /* readable cards on dark background */
  --pricing-card-bg: #fff;
  --pricing-card-ink: #101828;
  --pricing-accent: var(--primary, #0d6efd);
}
.aml .pricing.pricing--secondary {
  color: #101828;
}
.aml .pricing.pricing--secondary .pricing__card {
  background: #fff;
  color: #101828;
}
.aml .pricing.pricing--secondary .pricing__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 1;
  width: 100%;
  min-height: 64px;
  padding: 1.1rem 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border: 0;
  border-radius: 16px;
  background: var(--primary, #0d6efd);
  color: #fff;
  transition: filter 0.2s ease, background-color 0.2s ease;
}
.aml .pricing.pricing--secondary .pricing__button:hover, .aml .pricing.pricing--secondary .pricing__button:focus {
  filter: brightness(85%);
  color: #fff;
  text-decoration: none;
}
.aml .pricing__card-container {
  align-items: stretch !important;
}
.aml .pricing__card {
  border: 0;
  background-color: var(--pricing-card-bg);
  color: var(--pricing-card-ink);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--pricing-gap);
  width: 100%;
  flex: 1 1 auto;
  box-sizing: border-box;
  overflow: hidden;
}
.aml .pricing__card-header {
  text-align: center;
  display: grid;
  row-gap: 0.5rem;
  min-height: var(--pricing-header-min);
}
.aml .pricing .pricing__title {
  margin: 0;
  line-height: 1.2;
}
.aml .pricing .pricing__price {
  display: grid;
  place-items: center;
  row-gap: 0.25rem;
}
.aml .pricing__card-body {
  flex: 1 1 auto;
  text-align: center;
  min-height: auto;
  overflow: visible;
}
.aml .pricing .pricing__price-amount {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}
.aml .pricing .pricing__price-prefix {
  font-size: 0.45em;
  line-height: 1;
  opacity: 0.85;
}
.aml .pricing .pricing__blurb {
  margin-bottom: 1rem;
}
.aml .pricing .pricing__blurb p:first-child {
  margin-top: 0;
}
.aml .pricing .pricing__blurb p:last-child {
  margin-bottom: 0;
}
.aml .pricing .feature__list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  text-align: left;
}
.aml .pricing .feature__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
}
.aml .pricing .pricing__cta-disclaimer {
  grid-row: 2;
  width: 100%;
  font-size: 0.8rem;
  line-height: 1.2;
  opacity: 0.8;
  text-align: center;
}
.aml .pricing__card-footer {
  margin-top: auto;
  display: grid; /* ✅ two rows: button + disclaimer */
  grid-template-rows: auto 2.4em; /* ✅ fixed space for disclaimer */
  row-gap: 0.5rem;
  align-items: end;
  padding-top: 0.75rem;
}
.aml .pricing__card .pricing__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 64px;
  padding: 1.1rem 1rem;
  background-color: var(--pricing-accent);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border: 0;
  border-radius: 16px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.aml .pricing__card .pricing__button:hover {
  background-color: color-mix(in srgb, var(--pricing-accent), #000 12%);
  color: #fff;
  text-decoration: none;
}
.aml .pricing__card[class*=bg-] {
  background-color: var(--aml-card-bg, var(--pricing-card-bg)) !important;
  color: var(--aml-card-ink, var(--pricing-card-ink)) !important;
}
.aml .pricing__card[class*=bg-] .text-muted, .aml .pricing__card[class*=bg-] .muted {
  color: inherit !important;
  opacity: 0.85;
}
@media (min-width: 576px) {
  .aml .pricing {
    --pricing-header-min: 160px;
  }
}
@media (min-width: 992px) {
  .aml .pricing {
    --pricing-header-min: 180px;
  }
}

.form-page-shell {
  position: relative;
  padding-top: 0.5rem;
}

.form-page-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.form-sticky-header {
  position: sticky;
  top: 65px;
  z-index: 1050;
  background-color: #fff;
  padding: 0.75rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.form-sticky-header h1 {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 0.25rem 0;
}
.form-sticky-header #form-sticky-header-progress .progress {
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
}
.form-sticky-header #form-sticky-header-progress .progress-bar {
  transition: width 0.2s ease-out;
}
.form-sticky-header #form-sticky-header-progress .small {
  font-size: 12px;
}

@media (max-width: 768px) {
  .form-sticky-header {
    top: 72px;
    padding: 0.5rem 0;
  }
  .form-sticky-header h1 {
    font-size: 18px;
  }
}
.form-section.card {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  overflow: hidden;
}

.form-section .card-header {
  background-color: #f5f5f5;
  padding: 6px 14px;
  margin: 0;
  border-bottom: 1px solid #e0e0e0;
}

.form-section .card-header h2,
.form-section .card-header h3 {
  margin: 0;
  line-height: 1.2;
  font-weight: 600;
}

.form-section .card-body {
  padding: 12px 14px 6px 14px;
}

.form-section .card-body .mb-3:last-child {
  margin-bottom: 0 !important;
}

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