:root {
  --color-black: #1E1E1E;
  --color-white: #FFF;
  --color-charcoal: #333;
  --color-gray: #C3C7CB;
  --color-gray-light: #CDCFD1;
  --color-gray-dark: #696B6C;
  --color-blue: #0A4976;
  --color-blue-medium: #4F7D9D;
  --color-blue-light: #E6EDF1;
  --color-blue-xlight: #F4F6F8;
  --color-red: #963C3A;
  --color-red-dark: #8E1D1C;
  --color-bg-body: var(--color-white);
  --color-text: var(--color-charcoal);
  --color-anchors: var(--color-red);
  --color-heading: var(--color-blue);
  --color-lists: var(--color-charcoal);
  --color-button-bg: var(--color-orange);
  --color-button-color: var(--color-white);
  --color-input-bg: var(--color-blue-light);
  --color-input-border: var(--color-black);
  --color-toggle: var(--color-blue);
}

.color-black {
  --color-heading: var(--color-black);
  color: var(--color-black);
}

.color-white {
  --color-heading: var(--color-white);
  color: var(--color-white);
}

.color-gray-dark {
  --color-heading: var(--color-gray-dark);
  color: var(--color-gray-dark);
}

.color-charcoal {
  --color-heading: var(--color-charcoal);
  color: var(--color-charcoal);
}

.color-blue {
  --color-heading: var(--color-blue);
  color: var(--color-blue);
}

.color-red {
  --color-heading: var(--color-red);
  color: var(--color-red);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-blue-xlight {
  background-color: var(--color-blue-xlight);
}

.bg-blue {
  --color-heading: var(--color-white);
  --color-text: var(--color-white);
  --color-anchors: var(--color-white);
  --color-lists: var(--color-white);
  background-color: var(--color-blue);
}

:root {
  --container-max-width: 1650px;
  --container-padding: clamp(2rem, 6.0606060606vw, 10rem);
  --grid-gap: clamp(2rem, 1.8181818182vw, 3rem);
  --grid-columns: 12;
  --grid-column: calc((100% - ((var(--grid-columns) - 1) * var(--grid-gap))) / var(--grid-columns));
  --grid-align-y: flex-start;
  --grid-gap-nav: clamp(1rem, 1.5vw, 4rem);
  --spacing-1: 2rem;
  --spacing-2: clamp(2.5rem, 1.8181818182vw, 3rem);
  --spacing-3: clamp(3rem, 3.0303030303vw, 5rem);
  --spacing-4: clamp(3rem, 4.5454545455vw, 7.5rem);
  --spacing-5: clamp(5rem, 6.0606060606vw, 10rem);
  --spacing-6: clamp(5rem, 7.5757575758vw, 12.5rem);
  --spacing-7: clamp(8rem, 9.0909090909vw, 15rem);
  --spacing-8: clamp(5rem, 10.6060606061vw, 17.5rem);
  --spacing-9: clamp(5rem, 12.1212121212vw, 20rem);
  --spacing-10: clamp(5rem, 15.1515151515vw, 25rem);
  --header-height: clamp(10rem, 9.3939393939vw, 15.5rem);
  --line-height-tight: 1.1;
  --line-height-normal: 1.6;
  --line-height-loose: 2;
  --font-family-flex: "mundial-narrow-variable", "Arial Narrow", Arial, sans-serif;
  --font-weight-regular: "wght" 400;
  --font-weight-medium: "wght" 490;
  --font-weight-semibold: "wght" 580;
  --font-weight-bold: "wght" 670;
  --font-size-base: 1.8rem;
  --font-size-medium: 1.6rem;
  --font-size-small: 1.4rem;
  --font-size-large: clamp(2.1rem, 1.4545454545vw, 2.4rem);
  --font-size-h1: clamp(3.6rem, 6.6666666667vw, 11rem);
  --font-size-h2: clamp(3.6rem, 4.3636363636vw, 7.2rem);
  --font-size-h3: clamp(2.6rem, 2.9090909091vw, 4.8rem);
  --font-size-h4: clamp(2.2rem, 2.1818181818vw, 3.6rem);
  --font-size-h5: clamp(2.2rem, 1.4545454545vw, 2.4rem);
  --font-size-h6: 1.8rem;
  --font-size-micro: clamp(1.9rem, 1.2121212121vw, 2rem);
  --transition: 0.3s;
  --btn-row-margin: 2.5rem 0;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background: var(--color-bg-body);
  color: var(--color-text);
  font-family: var(--font-family-flex);
  font-size: var(--font-size-base);
  font-style: normal;
  font-weight: normal;
  line-height: var(--line-height-base);
  margin: 0;
  text-align: left;
}
body::after {
  background: rgba(51, 51, 51, 0.4);
  content: "";
  display: block;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity var(--transition);
  visibility: hidden;
  z-index: 100;
}
body.modal-open {
  overflow: hidden;
}
body.sidebar-expanded::after {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
body.has-overlay::after {
  opacity: 1;
  visibility: visible;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
ul > li,
ol > li,
p {
  margin: 0;
  padding: 0;
}

strong {
  font-weight: normal;
}

img {
  height: auto;
}

address,
figure {
  font-style: normal;
  margin: 0;
}

figcaption a {
  text-decoration: underline;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
img,
menu,
picture,
nav,
section {
  display: block;
}

input,
button,
textarea,
select {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

abbr {
  text-decoration: none;
}

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.visually-hidden-focusable:not(:focus, :focus-within) {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.d-none {
  display: none;
}

.d-block {
  display: block;
}

.justified-start {
  justify-content: flex-start;
}

.justified-center {
  justify-content: center;
}

.justified-end {
  justify-content: flex-end;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

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

.text-small {
  font-size: var(--font-size-small);
}

p {
  color: var(--color-text);
  font-variation-settings: var(--font-weight-regular);
  font-weight: normal;
  line-height: var(--line-height-normal);
}
p:not(:last-of-type):not(.heading-micro) {
  margin-bottom: 3rem;
}
p strong {
  font-weight: var(--font-weight-bold);
}
p a {
  color: var(--color-red);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
p a:hover {
  text-decoration: underline;
}

small {
  color: var(--color-gray-dark);
  display: block;
  font-size: var(--font-size-small);
  font-variation-settings: var(--font-weight-regular);
  line-height: 1.3;
}

ul,
ol {
  color: var(--color-lists);
}

.link-tel {
  color: inherit;
}

.link-underline {
  text-decoration: underline;
}

.text-uppercase {
  text-transform: uppercase;
}

.btn {
  align-items: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  line-height: normal;
  padding: 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all var(--transition);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  vertical-align: middle;
}
.btn:hover, .btn:focus {
  border: none;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.btn-primary {
  background: var(--color-button-bg);
  border-radius: 5rem;
  color: var(--color-button-color);
  font-size: var(--font-size-medium);
  font-variation-settings: var(--font-weight-bold);
  gap: 0.7rem;
  height: 5rem;
  letter-spacing: 0.05em;
  padding: 0.2rem clamp(2rem, 1.25vw, 2.5rem) 0;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .btn-primary {
    width: 100%;
  }
}
.btn-primary:hover {
  background: var(--color-button-bg-hover);
}
.btn-primary.btn-white {
  --color-button-bg: var(--color-white);
  --color-button-color: var(--color-blue);
}
.btn-primary.btn-white:hover {
  --color-button-bg-hover: #072C47;
  --color-button-color: var(--color-white);
}
.btn-primary.btn-blue {
  --color-button-bg: var(--color-blue);
  --color-button-color: var(--color-white);
}
.btn-primary.btn-blue:hover {
  --color-button-bg-hover: #072C47;
}
.btn-primary.btn-blue-light {
  --color-button-bg: rgba(10, 73, 118, 0.5);
  --color-button-color: var(--color-white);
}
.btn-primary.btn-blue-light:hover {
  --color-button-bg-hover: #072C47;
}
.btn-primary.btn-red {
  --color-button-bg: var(--color-red);
  --color-button-color: var(--color-white);
}
.btn-primary.btn-red:hover {
  --color-button-bg-hover: #924443;
}

.btn-secondary {
  align-items: center;
  background: transparent;
  border: none;
  color: var(--color-button-color);
  display: inline-flex;
  font-size: var(--font-size-medium);
  font-variation-settings: var(--font-weight-bold);
  gap: 0.5rem;
  letter-spacing: 0.05em;
  margin-block: 1rem;
  padding: 0;
  text-align: left;
  text-transform: uppercase;
}
.btn-secondary svg {
  transform: translateY(-0.2rem);
}
.btn-secondary.btn-white {
  --color-button-color: var(--color-white);
}
.btn-secondary.btn-blue {
  --color-button-color: var(--color-blue);
}
.btn-secondary.btn-red {
  --color-button-color: var(--color-red);
}
.btn-secondary:hover {
  text-decoration: underline;
}

.btn-edit {
  background: transparent;
  border: none;
  color: var(--color-red-dark);
  font-size: var(--font-size-small);
  font-variation-settings: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  padding: 0;
  text-transform: uppercase;
}
.btn-edit:hover {
  text-decoration: underline;
}

.btn-sort {
  background: transparent;
  border: none;
  display: flex;
  font-size: var(--font-size-small);
  font-variation-settings: var(--font-weight-regular);
  gap: 0.5rem;
  letter-spacing: 0.05em;
  padding: 0;
  text-transform: uppercase;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-block: var(--btn-row-margin);
}

.btn-icon {
  height: 1.7rem;
  width: 1.7rem;
}
.btn-icon svg {
  height: 100%;
}

.btn-back,
.btn-next {
  align-items: center;
  border-radius: 50%;
  border: solid 0.2rem var(--color-blue);
  color: var(--color-blue);
  display: flex;
  height: clamp(3rem, 2.5vw, 5rem);
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: clamp(3rem, 2.5vw, 5rem);
}
.btn-back svg,
.btn-next svg {
  transition: var(--transition);
  width: clamp(1.3rem, 1vw, 2rem);
}
.btn-back::after,
.btn-next::after {
  background: var(--color-blue);
  clip-path: path("M10.124.286a1.054 1.054 0 0 0-1.445 0L.3 8.31a.949.949 0 0 0 0 1.383l8.38 8.022a1.054 1.054 0 0 0 1.445 0 .949.949 0 0 0 0-1.383L3.488 9.978h15.49C19.544 9.978 20 9.54 20 9s-.457-.978-1.021-.978H3.488l6.636-6.353a.949.949 0 0 0 0-1.383Z");
  content: "";
  display: block;
  height: 1.8rem;
  left: 100%;
  max-width: clamp(1.3rem, 1vw, 2rem);
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: var(--transition);
  width: 2rem;
}
.btn-back:hover,
.btn-next:hover {
  border: solid 0.2rem var(--color-blue);
}
.btn-back:hover svg,
.btn-next:hover svg {
  transform: translateX(-200%);
}
.btn-back:hover::after,
.btn-next:hover::after {
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn-back:focus,
.btn-next:focus {
  border: solid 0.2rem var(--color-blue);
}

.btn-next {
  transform: rotate(180deg);
}

.dropdown {
  position: relative;
}

.js-dropdown-trigger {
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.dropdown-menu {
  background: var(--color-white);
  border-radius: 2rem;
  box-shadow: 0px 36px 80px rgba(0, 0, 0, 0.13), 0px 15px 33px rgba(0, 0, 0, 0.09), 0px 8px 18px rgba(0, 0, 0, 0.08), 0px 5px 10px rgba(0, 0, 0, 0.07), 0px 2px 5px rgba(0, 0, 0, 0.05), 0px 1px 2px rgba(0, 0, 0, 0.04);
  left: 50%;
  list-style: none;
  margin: 0;
  opacity: 0;
  padding: 3rem;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
  visibility: hidden;
  z-index: 10;
}
@media (min-width: 992px) {
  .dropdown-menu {
    left: auto;
    position: absolute;
    top: 100%;
    transform: none;
  }
}
.dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
}

hr {
  background: var(--color-gray);
  border: none;
  height: 1px;
  margin: 0;
  width: 100%;
}

.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--color-input-bg);
  border-radius: 0.2rem;
  border: solid 0.2rem transparent;
  color: var(--color-charcoal);
  display: block;
  font-family: var(--font-family-flex);
  font-size: var(--font-size-medium);
  font-variation-settings: var(--font-weight-regular);
  line-height: 1;
  outline: none;
  padding: 1.2rem 2rem 1rem;
  transition: background-color var(--transition), border-color var(--transition);
  width: 100%;
}
.form-control:not(textarea) {
  height: 4rem;
}
.form-control:focus {
  background-color: #dce4e9;
  outline: none;
}
.form-control::-moz-placeholder {
  color: var(--color-charcoal);
}
.form-control::placeholder {
  color: var(--color-charcoal);
}
.form-control:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

select.form-control {
  cursor: pointer;
  background: var(--color-input-bg) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="8" fill="none"><path fill="%230A4976" stroke="%230A4976" stroke-width=".5" d="M5.485 7a.78.78 0 0 1-.636-.32L1.144 2.23c-.224-.32-.187-.802.113-1.042.299-.24.71-.24.935.08L5.41 5.196c.037.04.075.04.15 0l3.217-3.928c.262-.32.674-.361.973-.08.3.28.337.721.075 1.042l-.038.04-3.666 4.45a.944.944 0 0 1-.636.28Z"/></svg>') right 1.5rem center/1.1rem 0.8rem no-repeat;
  padding-right: 3.5rem;
}

textarea.form-control {
  min-height: 10rem;
  resize: vertical;
}

.control-search {
  background: var(--color-input-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none'%3E%3Cpath fill='%23333' fill-rule='evenodd' d='M7.102.313a7.042 7.042 0 0 1 5.701 11.263l4.03 4.03a1 1 0 0 1-1.415 1.414l-4.03-4.03a7.038 7.038 0 0 1-6.856.895A7.041 7.041 0 0 1 7.102.313Zm3.652 10.585a1.137 1.137 0 0 0-.044.044 5.043 5.043 0 0 1-8.183-1.615l-.85.361.85-.361a5.042 5.042 0 0 1 9.28-3.945l.89-.378-.89.378a5.042 5.042 0 0 1-1.042 5.505l-.01.01Z' clip-rule='evenodd'/%3E%3C/svg%3E") 1.5rem center/1.7rem 1.7rem no-repeat;
  padding-left: 4rem;
}

.control-date {
  background: var(--color-input-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='16' fill='none'%3E%3Cpath fill='%230A4976' d='M13.696 2h-1.794a.161.161 0 0 1-.115-.049.168.168 0 0 1-.048-.118V.667a.674.674 0 0 0-.19-.472.645.645 0 0 0-.923 0 .674.674 0 0 0-.191.472v3.166c0 .133-.052.26-.144.354a.484.484 0 0 1-.691 0 .506.506 0 0 1-.143-.354v-1.5a.337.337 0 0 0-.096-.235.323.323 0 0 0-.23-.098H5.053a.161.161 0 0 1-.115-.049.169.169 0 0 1-.048-.118V.667a.674.674 0 0 0-.19-.472.645.645 0 0 0-.923 0 .674.674 0 0 0-.191.472v3.166c0 .133-.052.26-.143.354a.484.484 0 0 1-.692 0 .506.506 0 0 1-.143-.354v-1.5a.337.337 0 0 0-.096-.235.323.323 0 0 0-.23-.098h-.979c-.346 0-.677.14-.922.39S0 2.98 0 3.334v11.334c0 .353.137.692.382.943.245.25.576.39.922.39h12.392c.346 0 .677-.14.922-.39s.382-.59.382-.943V3.333c0-.353-.137-.692-.382-.942A1.29 1.29 0 0 0 13.696 2Zm-.326 12.667H1.63a.323.323 0 0 1-.23-.098.337.337 0 0 1-.096-.236v-8c0-.088.035-.173.096-.235A.323.323 0 0 1 1.63 6h11.74c.086 0 .169.035.23.098a.337.337 0 0 1 .096.235v8a.337.337 0 0 1-.096.236.323.323 0 0 1-.23.098Z'/%3E%3C/svg%3E") right 1rem center/1.5rem 1.5rem no-repeat;
  padding-right: 3rem;
}

.checkbox-group {
  display: grid;
  gap: 1rem;
}

.input-control {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  gap: 10px;
  justify-content: center;
  line-height: 1.2;
  text-align: left;
}
.input-control input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border-radius: 0.2rem;
  border: 1px solid var(--color-input-border);
  cursor: pointer;
  height: 1.5rem;
  position: relative;
  transition: background-color var(--transition), border-color var(--transition);
  width: 1.5rem;
}
.input-control input[type=checkbox]::after {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSI5IiBmaWxsPSJub25lIj48cGF0aCBmaWxsPSIjMzMzIiBkPSJNOS43MTMuODk5YS43OC43OCAwIDAgMC0xLjA4OC4xNjlsLTMuOSA1LjMwNi0yLjUtMS45OTRhLjc5My43OTMgMCAwIDAtLjk3NSAxLjI1bDMuMTI1IDIuNWMuMTQ4LjA5OC4zMjUuMTQuNS4xMTlhLjc5Ljc5IDAgMCAwIC42MjUtLjMxM0w5Ljg3NSAyYS43OC43OCAwIDAgMC0uMTYyLTEuMSIvPjwvc3ZnPg==") center/contain no-repeat;
  content: "";
  height: 0.8rem;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity var(--transition);
  width: 1.1rem;
}
.input-control input[type=checkbox]:focus {
  outline: none;
}
.input-control input[type=checkbox]:checked::after {
  opacity: 1;
}
.input-control input[type=checkbox]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.input-control label {
  cursor: pointer;
}

fieldset {
  border: none;
  margin-inline: 0;
  padding: 0;
}

.form-group {
  margin-block: 3rem;
}

.form-label {
  display: block;
  font-size: var(--font-size-medium);
  font-variation-settings: var(--font-weight-regular);
  margin-bottom: 0.5rem;
}

.form-general {
  text-align: center;
}

[class*=heading-] {
  color: var(--color-heading);
  font-family: var(--font-family-flex);
  font-style: normal;
  font-weight: normal;
  margin-block: var(--heading-margin);
  text-wrap: balance;
  transition: color var(--transition);
}

.heading-1 {
  font-size: var(--font-size-h1);
  font-variation-settings: var(--font-weight-bold);
  letter-spacing: -0.04em;
  line-height: var(--line-height-tight);
}

.heading-2 {
  font-size: var(--font-size-h2);
  font-variation-settings: var(--font-weight-bold);
  letter-spacing: -0.04em;
  line-height: var(--line-height-tight);
}

.heading-3 {
  --heading-margin: 0 1.5rem;
  font-size: var(--font-size-h3);
  font-variation-settings: var(--font-weight-bold);
  line-height: var(--line-height-tight);
}

.heading-4 {
  font-size: var(--font-size-h4);
  font-variation-settings: var(--font-weight-bold);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.heading-5 {
  --heading-margin: 0 1.5rem;
  font-size: var(--font-size-h5);
  font-variation-settings: var(--font-weight-bold);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.heading-6 {
  --heading-margin: 0 1rem;
  --color-heading: var(--color-charcoal);
  align-items: center;
  display: flex;
  font-size: var(--font-size-h6);
  font-variation-settings: var(--font-weight-bold);
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-transform: uppercase;
}

.heading-micro {
  font-size: var(--font-size-micro);
  font-variation-settings: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  line-height: var(--line-height-tight);
  text-transform: uppercase;
}

figure {
  position: relative;
}

.img-responsive {
  height: auto;
  width: 100%;
}

.img-fluid {
  height: auto;
  max-width: 100%;
}

.img-rounded {
  border-radius: 50%;
  overflow: hidden;
}

.img-cover {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.table-wrapper {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  position: relative;
  width: 100%;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}
table thead td,
table thead th,
table tbody td,
table tbody th {
  font-variation-settings: var(--font-weight-regular);
  font-weight: normal;
  white-space: nowrap;
}
table thead .js-dropdown-trigger,
table tbody .js-dropdown-trigger {
  font-size: var(--font-size-small);
  font-variation-settings: var(--font-weight-regular);
  font-weight: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
table thead .dropdown-menu,
table tbody .dropdown-menu {
  z-index: 100;
}
@media (min-width: 992px) {
  table thead .dropdown-menu,
  table tbody .dropdown-menu {
    min-width: 35rem;
  }
}
table thead th {
  background: var(--color-white);
  color: var(--color-gray-dark);
  font-size: var(--font-size-small);
  letter-spacing: 0.05em;
  padding: 1rem;
  text-transform: uppercase;
  white-space: nowrap;
}
table thead th[data-sort=asc] .sort-icon .arrow-up {
  fill: var(--color-gray);
}
table thead th[data-sort=desc] .sort-icon .arrow-down {
  fill: var(--color-black);
}
table thead th.th-pinned {
  z-index: 10;
}
@media (min-width: 992px) {
  table thead .dropdown-last .dropdown-menu {
    left: auto;
    right: 0;
  }
}
table tbody th,
table tbody td {
  font-size: var(--font-size-medium);
  padding: 1.2rem 2rem;
}
@media (min-width: 992px) {
  table tbody th,
  table tbody td {
    padding: 1.2rem 0;
  }
}
table tfoot td {
  color: var(--color-charcoal);
  font-size: var(--font-size-small);
  font-variation-settings: var(--font-weight-regular);
  letter-spacing: 0.05em;
  padding: 1.5rem 2rem;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  table tfoot td {
    padding: 1.5rem 0;
  }
}
table [class^=heading-] {
  --heading-margin: 0;
}
table .th-pinned {
  left: 0;
  position: sticky;
}
table.striped tbody tr {
  isolation: isolate;
  position: relative;
}
table.striped tbody tr:nth-of-type(odd) th,
table.striped tbody tr:nth-of-type(odd) td {
  --row-bg: var(--color-blue-xlight);
  background: var(--color-blue-xlight);
}
table.striped tbody tr:nth-of-type(even) th,
table.striped tbody tr:nth-of-type(even) td {
  --row-bg: var(--color-white);
  background: var(--color-white);
}

.table-footer {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: var(--grid-gap);
  justify-content: space-between;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .table-footer {
    flex-direction: row;
  }
}

.pagination {
  align-items: center;
  display: flex;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination .item {
  align-items: center;
  border-radius: 50%;
  display: flex;
  font-size: 1.6rem;
  font-variation-settings: var(--font-weight-regular);
  font-weight: normal;
  height: 2.5rem;
  justify-content: center;
  padding: 0.2rem 0 0;
  width: 2.5rem;
}
.pagination .current {
  background: var(--color-blue);
  color: var(--color-white);
}

@media (max-width: 1199px) {
  .table-schedule {
    --container-padding: 0;
  }
}
.table-schedule th,
.table-schedule td {
  font-size: 1.4rem;
  line-height: 1.4;
  padding: 1rem;
}
.table-schedule th.shareholder, .table-schedule th.trucker,
.table-schedule td.shareholder,
.table-schedule td.trucker {
  max-width: 18rem;
  white-space: normal;
}
.table-schedule tbody:nth-of-type(odd) {
  background: var(--color-blue-xlight);
}
.table-schedule tbody .details-toggle {
  padding: 0;
  position: relative;
}
.table-schedule .row-expand {
  background: transparent;
  border: none;
  inset: 0;
  position: absolute;
  z-index: 1;
}
@media (min-width: 768px) {
  .table-schedule .row-expand::before {
    background: currentColor;
    content: "";
    height: 1rem;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 6 10%22%3E%3Cpath d=%22M1 9l4-4-4-4%22 stroke=%22%23000%22 stroke-width=%222%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 fill=%22none%22/%3E%3C/svg%3E") center/contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 6 10%22%3E%3Cpath d=%22M1 9l4-4-4-4%22 stroke=%22%23000%22 stroke-width=%222%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 fill=%22none%22/%3E%3C/svg%3E") center/contain no-repeat;
    position: absolute;
    right: calc(100% + clamp(1rem, 1.2121212121vw, 2rem));
    top: 50%;
    transform-origin: top;
    transform: translateY(-50%);
    transition: transform var(--transition);
    width: 0.8rem;
  }
  .table-schedule .row-expand.expanded::before {
    transform: rotate(90deg) translateY(-50%);
  }
}
.table-schedule .row-details {
  background: var(--color-white);
  position: relative;
}
.table-schedule .row-details td {
  padding: 0;
}
.table-schedule .details-panel {
  overflow: hidden;
  padding: 2rem;
}
@media (min-width: 1200px) {
  .table-schedule .details-panel {
    padding: 2rem 0;
  }
}

.row-details[hidden] {
  display: none;
}

.row-details-cell {
  opacity: 0;
  padding-block: 0;
}

.rowgroup.expanded .row-details-cell {
  opacity: 1;
}

.nested-schedule {
  background: var(--color-blue-light);
  border-radius: 2rem;
  margin-bottom: 1rem;
  max-width: 50%;
  padding: 2rem;
}
.nested-schedule thead tr:nth-of-type(odd) th,
.nested-schedule thead tr:nth-of-type(odd) td, .nested-schedule thead tr:nth-of-type(even) th,
.nested-schedule thead tr:nth-of-type(even) td,
.nested-schedule tbody tr:nth-of-type(odd) th,
.nested-schedule tbody tr:nth-of-type(odd) td,
.nested-schedule tbody tr:nth-of-type(even) th,
.nested-schedule tbody tr:nth-of-type(even) td {
  --row-bg: var(--color-blue-light);
  background: var(--color-blue-light);
  padding: 0.5rem 2rem;
}
.nested-schedule thead th:not(:first-child) {
  text-align: center;
}
.nested-schedule tbody th {
  color: var(--color-blue);
  font-variation-settings: var(--font-weight-semibold);
}
.nested-schedule tbody td {
  font-variation-settings: var(--font-weight-regular);
  text-align: center;
}

@media (max-width: 1199px) {
  .table-dashboard {
    --container-padding: 0;
  }
}
.table-dashboard tbody {
  vertical-align: bottom;
}
.table-dashboard tbody th {
  color: var(--color-blue);
  font-size: clamp(1.6rem, 1.0909090909vw, 1.8rem);
  font-variation-settings: var(--font-weight-semibold);
  padding-left: 2rem;
}
.table-dashboard tbody td {
  font-size: clamp(1.4rem, 0.9696969697vw, 1.6rem);
  padding: 1.2rem 1rem;
}
@media (min-width: 992px) {
  .table-dashboard tbody td:last-child {
    position: relative;
  }
  .table-dashboard tbody td:last-child::after {
    background: currentColor;
    content: "";
    height: 1rem;
    right: 2rem;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 6 10%22%3E%3Cpath d=%22M1 9l4-4-4-4%22 stroke=%22%23000%22 stroke-width=%222%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 fill=%22none%22/%3E%3C/svg%3E") center/contain no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 6 10%22%3E%3Cpath d=%22M1 9l4-4-4-4%22 stroke=%22%23000%22 stroke-width=%222%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 fill=%22none%22/%3E%3C/svg%3E") center/contain no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: transform var(--transition);
    width: 0.8rem;
  }
}
.table-dashboard tfoot th {
  font-size: clamp(1.6rem, 1.0909090909vw, 1.8rem);
  font-variation-settings: var(--font-weight-semibold);
  font-weight: normal;
  padding: 1.2rem 1rem 1.2rem 2rem;
}
.table-dashboard tfoot td {
  font-size: clamp(1.4rem, 0.9696969697vw, 1.6rem);
  font-weight: normal;
  padding: 1.2rem 1rem;
}

@media (max-width: 1199px) {
  .table-documents {
    --container-padding: 0;
  }
}
@media (max-width: 991px) {
  .table-documents thead {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
}
.table-documents thead th {
  padding-left: 2rem;
}
.table-documents thead th:first-child {
  width: 50%;
}
.table-documents thead th:nth-child(2) {
  width: 30%;
}
.table-documents thead th:nth-child(3) {
  width: 20%;
}
.table-documents tbody td {
  padding-left: 2rem;
}
.table-documents .table-row {
  display: flex;
}
@media (min-width: 768px) {
  .table-documents .table-row {
    flex-wrap: wrap;
  }
}
.table-documents .table-row span {
  align-items: center;
  display: flex;
  padding-inline: 2rem;
}
.table-documents .table-row span:first-child {
  padding-inline: 0;
  transition: color var(--transition);
  width: 50%;
}
@media (max-width: 991px) {
  .table-documents .table-row span:first-child {
    color: var(--color-blue);
    font-size: 1.6rem;
    font-variation-settings: var(--font-weight-semibold);
  }
}
.table-documents .table-row span:nth-child(2) {
  width: 30%;
}
.table-documents .table-row span:nth-child(3) {
  width: 20%;
}
@media (max-width: 991px) {
  .table-documents .table-row span:not(:first-child) {
    display: none;
  }
}
.table-documents .table-row.expanded span:first-child {
  color: var(--color-red);
}
.table-documents .child-row {
  flex-direction: column;
}
.table-documents .nested-row {
  display: none;
  padding-block: 1rem;
  row-gap: 1.5rem;
  width: 100%;
}
@media (min-width: 992px) {
  .table-documents .nested-row[data-depth="1"] span:first-child {
    padding-left: clamp(2rem, 1.8181818182vw, 3rem);
  }
  .table-documents .nested-row[data-depth="2"] span:first-child {
    padding-left: clamp(2rem, 3.6363636364vw, 6rem);
  }
  .table-documents .nested-row[data-depth="3"] span:first-child {
    padding-left: clamp(2rem, 5.4545454545vw, 9rem);
  }
  .table-documents .nested-row[data-depth="4"] span:first-child {
    padding-left: clamp(2rem, 7.2727272727vw, 12rem);
  }
}
.table-documents .nested-row .table-row {
  flex-wrap: wrap;
  padding-block: 0.5rem;
}
.table-documents .sub-row {
  display: flex;
  padding-top: 1rem;
  gap: 1rem;
  width: 100%;
}
.table-documents .sub-row span:first-child {
  padding-left: clamp(2rem, 1.8181818182vw, 3rem);
}
@media (min-width: 992px) {
  .table-documents [data-folder] {
    cursor: pointer;
  }
  .table-documents [data-folder] > span:first-child::before {
    background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2219%22%20height%3D%2216%22%20fill%3D%22none%22%3E%3Cpath%20fill%3D%22%230A4976%22%20fill-rule%3D%22evenodd%22%20d%3D%22M4.879.25A2.25%202.25%200%200%201%206.47.908l.84.842H16A2.25%202.25%200%200%201%2018.25%204v9A2.25%202.25%200%200%201%2016%2015.25H2.5A2.25%202.25%200%200%201%20.25%2013V2.5A2.25%202.25%200%200%201%202.5.25h2.379Zm.287%201.557a.75.75%200%200%200-.287-.057H2.5a.75.75%200%200%200-.75.75V13a.75.75%200%200%200%20.75.75H16a.75.75%200%200%200%20.75-.75V4a.75.75%200%200%200-.75-.75H7a.75.75%200%200%201-.53-.22L5.41%201.97a.75.75%200%200%200-.244-.163Z%22%20clip-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E") center center/contain no-repeat;
    content: "";
    display: inline-block;
    height: 1.5rem;
    margin-right: 1rem;
    min-width: 1.8rem;
    transform: translateY(-0.2rem);
    transition: var(--transition);
    vertical-align: middle;
    width: 1.8rem;
  }
  .table-documents [data-folder].expanded > span:first-child::before {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIxNyIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iIzBBNDk3NiIgZD0iTTE5LjY4MyA2LjQxOGExLjI3MiAxLjI3MiAwIDAgMC0uOTgzLS40NjhIOC42NDdhLjQyMy40MjMgMCAwIDEtLjQxNi0uMzQwbC0uMjM3LTEuMTgyQTEuMjg0IDEuMjg0IDAgMCAwIDYuNzQ4IDMuNEgxLjI3MmExLjI1MiAxLjI1MiAwIDAgMC0uOTgzLjQ2OCAxLjI1IDEuMjUgMCAwIDAtLjI2MyAxLjA1NGwyLjIwNCAxMS4wNUExLjI4NCAxLjI4NCAwIDAgMCAzLjQ3NiAxN0gxNy4wNGExLjI3NyAxLjI3NyAwIDAgMCAxLjI0Ni0xLjAyOGwxLjY5NS04LjVjLjA2My0uMzM3LS4wMzctLjcwNi0uMjk3LTEuMDU0WiIvPjxwYXRoIGZpbGw9IiMwQTQ5NzYiIGQ9Ik0yLjU0NCAyLjU1YS44NDYuODQ2IDAgMCAwIC44NDctLjY2My4yMjEuMjIxIDAgMCAxIC4xODctLjE4N0gxNi41M2EuNDIzLjQyMyAwIDAgMSAuNDI0LjQyNVY0LjI1YS44NTEuODUxIDAgMCAwIC44NDguODUuODQ3Ljg0NyAwIDAgMCAuODQ3LS44NVYxLjdhMS42OTMgMS42OTMgMCAwIDAtMS42OTQtMS43SDMuMzkxYy40NSAwIC44OC4xOC0xLjE5OS41MThBMS43MDIgMS43MDIgMCAwIDAgMS42OTYgMS43YS44NTEuODUxIDAgMCAwIC44NDguODVaIi8+PC9zdmc+");
    height: 1.5rem;
    min-width: 1.8rem;
    width: 1.8rem;
  }
}

.is-download {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}
.is-download::before {
  background: center center/contain no-repeat;
  content: "";
  display: block;
  height: 1.8rem;
  transform: translateY(-2px);
  width: 1.8rem;
}
.is-download:hover {
  text-decoration: underline;
}

.is-ppt::before {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2218%22%20height%3D%2218%22%20viewBox%3D%220%200%2018%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_2944_1543)%22%3E%3Cpath%20d%3D%22M3.9375%2017.436H1.6875C1.38913%2017.436%201.10298%2017.3174%200.892005%2017.1065C0.681026%2016.8955%200.5625%2016.6093%200.5625%2016.311V1.68597C0.5625%201.38761%200.681026%201.10146%200.892005%200.890479C1.10298%200.679501%201.38913%200.560974%201.6875%200.560974H9.65925C9.80701%200.560907%209.95334%200.58995%2010.0899%200.646443C10.2264%200.702937%2010.3505%200.785774%2010.455%200.890224L14.8582%205.29422C15.069%205.50512%2015.1874%205.79106%2015.1875%206.08922V9.56097%22%20stroke%3D%22%238E1D1C%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M15.1875%206.18597H10.6875C10.3891%206.18597%2010.103%206.06745%209.89201%205.85647C9.68103%205.64549%209.5625%205.35934%209.5625%205.06097V0.560974%22%20stroke%3D%22%238E1D1C%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M6.1875%2017.436V11.811%22%20stroke%3D%22%238E1D1C%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M6.1875%2011.811H6.75075C7.1983%2011.811%207.62753%2011.9888%207.94399%2012.3052C8.26046%2012.6217%208.43825%2013.0509%208.43825%2013.4985C8.43825%2013.946%208.26046%2014.3752%207.94399%2014.6917C7.62753%2015.0082%207.1983%2015.186%206.75075%2015.186H6.18825%22%20stroke%3D%22%238E1D1C%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M10.6875%2017.436V11.811%22%20stroke%3D%22%238E1D1C%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M10.6875%2011.811H11.2508C11.6983%2011.811%2012.1275%2011.9888%2012.444%2012.3052C12.7605%2012.6217%2012.9383%2013.0509%2012.9383%2013.4985C12.9383%2013.946%2012.7605%2014.3752%2012.444%2014.6917C12.1275%2015.0082%2011.6983%2015.186%2011.2508%2015.186H10.6883%22%20stroke%3D%22%238E1D1C%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M16.3125%2017.436V11.811%22%20stroke%3D%22%238E1D1C%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M15.1875%2011.811H17.4375%22%20stroke%3D%22%238E1D1C%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_2944_1543%22%3E%3Crect%20width%3D%2218%22%20height%3D%2218%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}

.is-xls::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20fill%3D%22none%22%3E%3Cg%20stroke%3D%22%238E1D1C%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%20clip-path%3D%22url(%23a)%22%3E%3Cpath%20d%3D%22M3.938%2017.436h-2.25a1.125%201.125%200%200%201-1.125-1.125V1.686A1.125%201.125%200%200%201%201.688.561h7.971c.298%200%20.584.118.795.33l4.404%204.403c.211.211.33.497.33.795v3.472%22%2F%3E%3Cpath%20d%3D%22M15.188%206.186h-4.5a1.125%201.125%200%200%201-1.126-1.125v-4.5%22%2F%3E%3Cpath%20d%3D%22m6.188%2011.811%202.25%205.625%22%2F%3E%3Cpath%20d%3D%22m8.438%2011.811-2.25%205.625%22%2F%3E%3Cpath%20d%3D%22M10.688%2011.811v4.5a1.125%201.125%200%200%200%201.124%201.125h1.126%22%2F%3E%3Cpath%20d%3D%22M17.438%2011.811h-1.125a1.125%201.125%200%200%200-1.125%201.125c0%201.688%202.25%201.688%202.25%203.375a1.125%201.125%200%200%201-1.125%201.125h-1.125%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h18v18H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}

.is-pdf::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20fill%3D%22none%22%3E%3Cg%20stroke%3D%22%238E1D1C%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%20clip-path%3D%22url(%23a)%22%3E%3Cpath%20d%3D%22M3.934%2017.436h-2.25a1.125%201.125%200%200%201-1.125-1.125V1.686A1.125%201.125%200%200%201%201.684.561h7.971a1.125%201.125%200%200%201%20.796.33l4.403%204.403a1.124%201.124%200%200%201%20.33.796v3.471%22%2F%3E%3Cpath%20d%3D%22M15.184%206.186h-4.5a1.125%201.125%200%200%201-1.125-1.125v-4.5%22%2F%3E%3Cpath%20d%3D%22M6.184%2017.436v-5.625%22%2F%3E%3Cpath%20d%3D%22M6.184%2011.811h.565a1.688%201.688%200%200%201%200%203.375h-.562%22%2F%3E%3Cpath%20d%3D%22M10.684%2017.436a2.25%202.25%200%200%200%202.25-2.25v-1.125a2.25%202.25%200%200%200-2.25-2.25v5.625Z%22%2F%3E%3Cpath%20d%3D%22M15.184%2017.436v-4.5a1.125%201.125%200%200%201%201.125-1.125h1.125%22%2F%3E%3Cpath%20d%3D%22M15.184%2015.186h1.687%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h18v18H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}

.is-zip::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20fill%3D%22none%22%3E%3Cg%20stroke%3D%22%238E1D1C%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%20clip-path%3D%22url(%23a)%22%3E%3Cpath%20d%3D%22M8.438%2011.811h1.418a.562.562%200%200%201%20.526.772l-1.636%204.082a.562.562%200%200%200%20.525.771h1.419%22%2F%3E%3Cpath%20d%3D%22M12.938%2017.436v-5.625%22%2F%3E%3Cpath%20d%3D%22M15.188%2017.436v-5.625%22%2F%3E%3Cpath%20d%3D%22M15.188%2011.811h.563a1.688%201.688%200%200%201%200%203.375h-.563%22%2F%3E%3Cpath%20d%3D%22M6.188%2017.436h-4.5a1.125%201.125%200%200%201-1.125-1.125V1.686A1.125%201.125%200%200%201%201.688.561h7.97a1.125%201.125%200%200%201%20.796.33l4.403%204.403c.212.211.33.497.33.795v3.472%22%2F%3E%3Cpath%20d%3D%22M15.188%206.186h-4.5a1.125%201.125%200%200%201-1.126-1.125v-4.5%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h18v18H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}

.is-jpg::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20fill%3D%22none%22%3E%3Cg%20stroke%3D%22%238E1D1C%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%20clip-path%3D%22url(%23a)%22%3E%3Cpath%20d%3D%22M3.938%2017.438h-2.25a1.125%201.125%200%200%201-1.125-1.125V1.688A1.125%201.125%200%200%201%201.688.563h7.971c.298%200%20.584.118.795.329l4.404%204.404c.211.21.33.497.33.795v3.471%22%2F%3E%3Cpath%20d%3D%22M15.188%206.188h-4.5a1.125%201.125%200%200%201-1.126-1.125v-4.5%22%2F%3E%3Cpath%20d%3D%22M8.438%2011.813v4.5a1.125%201.125%200%200%201-1.126%201.125H6.188%22%2F%3E%3Cpath%20d%3D%22M10.688%2017.438v-5.625%22%2F%3E%3Cpath%20d%3D%22M10.688%2011.813h.562a1.687%201.687%200%201%201%200%203.374h-.563%22%2F%3E%3Cpath%20d%3D%22M16.875%2015.188h.563v1.124a1.125%201.125%200%201%201-2.25%200v-3.375a1.125%201.125%200%200%201%201.124-1.124h1.125%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h18v18H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}

.is-txt::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20fill%3D%22none%22%3E%3Cg%20stroke%3D%22%238E1D1C%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%20clip-path%3D%22url(%23a)%22%3E%3Cpath%20d%3D%22M3.934%2017.436h-2.25a1.125%201.125%200%200%201-1.125-1.125V1.686A1.125%201.125%200%200%201%201.684.561h7.971c.299%200%20.584.118.795.33l4.404%204.403c.211.211.33.497.33.795v3.472%22%2F%3E%3Cpath%20d%3D%22M15.184%206.186h-4.5a1.125%201.125%200%200%201-1.125-1.125v-4.5%22%2F%3E%3Cpath%20d%3D%22M16.309%2017.436v-5.625%22%2F%3E%3Cpath%20d%3D%22M15.184%2011.811h2.25%22%2F%3E%3Cpath%20d%3D%22M7.309%2017.436v-5.625%22%2F%3E%3Cpath%20d%3D%22M6.184%2011.811h2.25%22%2F%3E%3Cpath%20d%3D%22m10.684%2011.811%202.25%205.625%22%2F%3E%3Cpath%20d%3D%22m12.934%2011.811-2.25%205.625%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h18v18H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}

.is-doc::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2218%22%20fill%3D%22none%22%3E%3Cg%20stroke%3D%22%238E1D1C%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221.5%22%20clip-path%3D%22url(%23a)%22%3E%3Cpath%20d%3D%22M3.934%2017.436h-2.25a1.125%201.125%200%200%201-1.125-1.125V1.686A1.125%201.125%200%200%201%201.684.561h7.971a1.125%201.125%200%200%201%20.796.33l4.403%204.403c.211.211.33.497.33.795v3.472%22%2F%3E%3Cpath%20d%3D%22M15.184%206.186h-4.5a1.125%201.125%200%200%201-1.125-1.125v-4.5%22%2F%3E%3Cpath%20d%3D%22M6.184%2017.436a2.25%202.25%200%200%200%202.25-2.25v-1.125a2.25%202.25%200%200%200-2.25-2.25v5.625Z%22%2F%3E%3Cpath%20d%3D%22M11.809%2011.811a1.125%201.125%200%200%200-1.125%201.125v3.375a1.125%201.125%200%200%200%202.25%200v-3.375a1.125%201.125%200%200%200-1.125-1.125Z%22%2F%3E%3Cpath%20d%3D%22M17.434%2011.811a2.25%202.25%200%200%200-2.25%202.25v1.125a2.25%202.25%200%200%200%202.25%202.25%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M0%200h18v18H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}

.is-report::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNSIgZmlsbD0ibm9uZSI+PHBhdGggZmlsbD0iIzBhNDk3NiIgZmlsbC1ydWxlPSJldmVub2RkIiBkPSJNLjc1IDBBLjc1Ljc1IDAgMCAwIDAgLjc1djEzLjVhLjc1Ljc1IDAgMCAwIC43NS43NWgxMC41YS43NS43NSAwIDAgMCAuNzUtLjc1VjQuNWEuNzUuNzUgMCAwIDAtLjIxOS0uNTMxTDguMDMxLjIxOUEuNzUuNzUgMCAwIDAgNy41IDB6IiBjbGlwLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=");
}

.js-tooltip-trigger {
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.js-tooltip-trigger svg {
  margin-top: -0.3rem;
  pointer-events: none;
}

.tooltip {
  background: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 40px 33px rgba(0, 0, 0, 0.05), 0px 22px 18px rgba(0, 0, 0, 0.05), 0px 12px 10px rgba(0, 0, 0, 0.035), 0px 6px 5px rgba(0, 0, 0, 0.03), 0px 2px 2px rgba(0, 0, 0, 0.02);
  color: var(--color-black);
  font-size: var(--font-size-small);
  max-width: 280px;
  padding: 1rem;
  z-index: 1000;
}

.list-reset {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.list-split {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.modal {
  align-items: center;
  background: rgba(51, 51, 51, 0.4);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  overflow: auto;
  padding: 2rem;
  pointer-events: none;
  position: fixed;
  transition: var(--transition);
  visibility: hidden;
  z-index: 1000;
}
.modal.show {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.modal-content {
  background: var(--color-white);
  border-radius: 2rem;
  box-shadow: 0px 36px 80px rgba(0, 0, 0, 0.13), 0px 15px 33px rgba(0, 0, 0, 0.09), 0px 8px 18px rgba(0, 0, 0, 0.08), 0px 5px 10px rgba(0, 0, 0, 0.07), 0px 2px 5px rgba(0, 0, 0, 0.05), 0px 1px 2px rgba(0, 0, 0, 0.04);
  max-height: 95vh;
  max-width: 52rem;
  overflow-y: auto;
  padding: var(--spacing-3);
  position: relative;
  width: 100%;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--color-charcoal);
  cursor: pointer;
  position: absolute;
  right: 2rem;
  top: 2rem;
  transition: var(--transition);
}
.modal-close:hover {
  color: var(--color-red);
}

.js-modal-click,
.js-modal-hover {
  cursor: pointer;
}

.modal-general {
  --heading-margin: 0 1.5rem;
  text-align: center;
}
.modal-general .btn {
  margin-top: 1rem;
}

.modal-video {
  max-width: 1300px;
  overflow: hidden;
  padding: 0;
}

.dashboard-customer {
  margin-block: var(--spacing-4);
  position: relative;
}
.dashboard-customer .block-footer {
  align-items: center;
  background: var(--color-blue-light);
  -moz-column-gap: var(--grid-gap);
       column-gap: var(--grid-gap);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .dashboard-customer .block-footer {
    background: var(--color-white);
    justify-content: flex-end;
  }
}
.dashboard-customer .block-footer .block-title {
  color: var(--color-black);
  font-size: clamp(1.6rem, 1.4545454545vw, 2.4rem);
  font-variation-settings: var(--font-weight-bold);
  margin: 0;
}
@media (max-width: 767px) {
  .dashboard-customer .block-footer .block-title {
    text-align: center;
    width: 100%;
  }
}
.dashboard-customer .stats-header {
  display: flex;
  gap: clamp(1rem, 1.2121212121vw, 2rem);
  justify-content: space-between;
  margin-inline: calc(var(--container-padding) * -1);
  padding-inline: 2rem;
}
@media (min-width: 768px) {
  .dashboard-customer .stats-header {
    display: none;
  }
}
.dashboard-customer .stats-header span {
  color: var(--color-gray-dark);
  font-size: 1.4rem;
  font-variation-settings: var(--font-weight-regular);
  margin-bottom: 0.8rem;
  text-align: center;
  text-transform: uppercase;
}
.dashboard-customer .stat-title {
  color: var(--color-blue);
  font-size: 1.6rem;
  font-variation-settings: var(--font-weight-semibold);
  font-weight: var(--font-weight-semibold);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .dashboard-customer .stat-title {
    font-size: var(--font-size-h4);
    font-variation-settings: var(--font-weight-bold);
  }
}

.dashboard-cards {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: grid;
  margin-inline: calc(var(--container-padding) * -1);
}
@media (min-width: 768px) {
  .dashboard-cards {
    gap: var(--grid-gap);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: 0;
  }
}
@media (min-width: 992px) {
  .dashboard-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.dashboard-cards li {
  padding: 1rem 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .dashboard-cards li:nth-child(odd) {
    background: var(--color-blue-xlight);
  }
  .dashboard-cards li:nth-child(even) {
    background: var(--color-white);
  }
}
@media (min-width: 768px) {
  .dashboard-cards li {
    background: var(--color-blue-light);
    border-radius: 2rem;
    margin-top: 0.5rem;
    padding: 3rem 2rem;
  }
}
@media (min-width: 768px) {
  .dashboard-cards .dashboard-stats {
    border-top: solid 0.1rem var(--color-gray);
    margin-top: 0.5rem;
    padding-top: 2rem;
  }
}

.dashboard-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-block: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .dashboard-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }
}
.dashboard-stats dt {
  color: var(--color-gray-dark);
  font-size: 1.4rem;
  font-variation-settings: var(--font-weight-regular);
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .dashboard-stats dt {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
  }
}
.dashboard-stats dd {
  font-size: 1.4rem;
  font-variation-settings: var(--font-weight-regular);
  margin: 0.3rem 0 0;
}
@media (min-width: 768px) {
  .dashboard-stats dd {
    font-size: 1.8rem;
  }
}

.dashboard-admin {
  margin-block: var(--spacing-4);
  position: relative;
}
.dashboard-admin .header-btn {
  padding-inline: 2rem;
}
@media (min-width: 1200px) {
  .dashboard-admin .header-btn {
    margin-inline: auto;
    max-width: var(--container-max-width);
    padding-inline: var(--container-padding);
    width: 100%;
    inset-inline: 0;
    justify-content: flex-end;
  }
}

.documents-block {
  padding-block: var(--spacing-4);
  position: relative;
}
.documents-block .block-header {
  gap: 1rem 2rem;
}

.block-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: clamp(1rem, 0.9090909091vw, 1.5rem);
  position: relative;
}
@media (min-width: 1200px) {
  .block-header {
    align-items: flex-end;
    flex-direction: row;
    min-height: 5rem;
  }
}
.block-header .heading-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem 2rem;
}
@media (min-width: 1200px) {
  .block-header .heading-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.block-header .heading-wrap [class*=heading-] {
  --heading-margin: 0;
  line-height: normal;
}
.block-header .form-control {
  flex: 0 0 auto;
  width: auto;
}
.block-header .date-range {
  flex-basis: 100%;
  font-size: var(--font-size-small);
}

.header-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
  pointer-events: none;
}
@media (min-width: 1200px) {
  .header-btn {
    margin: 0;
    padding-inline: 0;
    position: absolute;
    right: var(--container-padding);
    top: 0;
  }
}
.header-btn .btn {
  pointer-events: all;
}

.media-block {
  overflow: hidden;
  padding-block: var(--spacing-4);
  position: relative;
}
.media-block:not(.media-grid):nth-of-type(even) {
  background: var(--color-blue-xlight);
}
.media-block:not(.media-grid):nth-of-type(odd) {
  background: var(--color-white);
}
.media-block .block-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.media-block .block-header [class*=heading] {
  --heading-margin: 0;
}
.media-block .block-body {
  --grid-columns: 1;
  align-items: var(--grid-align-y);
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(var(--grid-columns, 12), 1fr);
  list-style: none;
}
@media (min-width: 576px) {
  .media-block .block-body {
    --grid-columns: 2;
  }
}
@media (min-width: 992px) {
  .media-block .block-body {
    --grid-columns: 3;
  }
}
.media-block .item-title {
  color: var(--color-blue);
  font-size: clamp(1.6rem, 1.4545454545vw, 2.4rem);
  font-variation-settings: var(--font-weight-bold);
  font-weight: normal;
  margin-bottom: clamp(0.2rem, 0.303030303vw, 0.5rem);
}
.media-block p {
  font-size: clamp(1.6rem, 1.0909090909vw, 1.8rem);
}
.media-block figure {
  border-radius: 2.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
.media-block .play-button {
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
  inset: 0;
  position: absolute;
}
.media-block .play-button svg {
  transition: var(--transition);
}
.media-block .play-button:hover svg {
  transform: scale(1.1);
}

.media-slider {
  overflow: hidden;
  padding-block: var(--spacing-4);
  position: relative;
}
.media-slider:nth-of-type(even) {
  background: var(--color-blue-xlight);
}
.media-slider:nth-of-type(odd) {
  background: var(--color-white);
}
.media-slider .block-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.media-slider .block-header [class*=heading] {
  --heading-margin: 0;
}
.media-slider .slide-title {
  color: var(--color-blue);
  font-size: clamp(1.6rem, 1.4545454545vw, 2.4rem);
  font-variation-settings: var(--font-weight-bold);
  font-weight: normal;
  margin-bottom: clamp(0.2rem, 0.303030303vw, 0.5rem);
}
.media-slider p {
  font-size: clamp(1.6rem, 1.0909090909vw, 1.8rem);
}
.media-slider .navigation {
  gap: 1rem;
  display: flex;
  position: relative;
}
.media-slider .swiper-button-prev,
.media-slider .swiper-button-next {
  background: transparent;
  border: none;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  right: auto;
  top: auto;
  width: auto;
}
.media-slider .swiper-button-prev svg,
.media-slider .swiper-button-next svg {
  width: 2rem;
}
.media-slider .swiper-button-next {
  transform: rotate(180deg);
}
.media-slider figure {
  border-radius: 2.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
}
.media-slider .play-button {
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
  inset: 0;
  position: absolute;
}
.media-slider .play-button svg {
  transition: var(--transition);
}
.media-slider .play-button:hover svg {
  transform: scale(1.1);
}
.media-slider .swiper-wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
}
.media-slider .slider-media {
  margin-inline: auto;
  max-width: var(--container-max-width);
  overflow: visible;
  padding-inline: var(--container-padding) 2rem;
  width: 100%;
}
.media-slider .header-btn {
  justify-content: flex-start !important;
  padding-inline: var(--container-padding);
}
@media (min-width: 992px) {
  .media-slider .header-btn {
    display: flex;
    inset-inline: 0;
    justify-content: flex-end !important;
    margin-inline: auto;
    max-width: var(--container-max-width);
    top: var(--spacing-4);
  }
}

.slider-media {
  width: 100%;
  overflow: hidden;
}

.slider-media .swiper-wrapper {
  display: flex;
}

.slider-media .swiper-slide {
  flex-shrink: 0;
}

.team-block {
  margin-block: var(--spacing-1);
}
.team-block .block-header [class*=heading-] {
  --heading-margin: 0;
}
@media (max-width: 767px) {
  .team-block .block-header [class*=heading-] {
    text-align: center;
  }
}
.team-block .accordion-item {
  --color-heading: var(--color-blue);
  --toggle-transform: 0;
  transition: padding-top var(--transition);
}
.team-block .accordion-item:nth-child(odd) {
  background: var(--color-blue-xlight);
}
.team-block .accordion-item:nth-child(even) {
  background: var(--color-white);
}
.team-block .accordion-item.show {
  --color-heading: var(--color-red);
  --toggle-transform: 90deg;
  padding-top: 0.5rem;
}
.team-block .accordion-item.show .accordion-toggle {
  font-variation-settings: var(--font-weight-bold);
}
.team-block .accordion-toggle {
  margin-inline: auto;
  max-width: var(--container-max-width);
  padding-inline: var(--container-padding);
  width: 100%;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--color-heading);
  display: flex;
  font-size: clamp(1.6rem, 1.0909090909vw, 1.8rem);
  font-variation-settings: var(--font-weight-semibold);
  line-height: normal;
  padding-block: 1.1rem;
  position: relative;
}
.team-block .accordion-toggle::before {
  background: currentColor;
  content: "";
  height: 1rem;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 6 10%22%3E%3Cpath d=%22M1 9l4-4-4-4%22 stroke=%22%23000%22 stroke-width=%222%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 fill=%22none%22/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 6 10%22%3E%3Cpath d=%22M1 9l4-4-4-4%22 stroke=%22%23000%22 stroke-width=%222%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22 fill=%22none%22/%3E%3C/svg%3E") center/contain no-repeat;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(var(--toggle-transform));
  transition: transform var(--transition);
  width: 0.8rem;
}
@media (min-width: 768px) {
  .team-block .accordion-toggle::before {
    left: calc(var(--container-padding) - 3rem);
    right: auto;
  }
}
.team-block .accordion-body {
  margin-inline: auto;
  max-width: var(--container-max-width);
  padding-inline: var(--container-padding);
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 300ms ease;
}
@media (prefers-reduced-motion: reduce) {
  .team-block .accordion-body {
    transition: none;
  }
}
.team-block .accordion-body p {
  font-size: clamp(1.6rem, 1.0909090909vw, 1.8rem);
  margin-bottom: 2rem;
}
.team-block .accordion-body p a {
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
.team-block .accordion-body dl {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  margin-block: 2rem;
  padding: 0;
}
@media (min-width: 576px) {
  .team-block .accordion-body dl {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .team-block .accordion-body dl {
    grid-template-columns: repeat(6, 1fr);
  }
}
.team-block .accordion-body dt {
  color: var(--color-blue-medium);
  font-size: 1.4rem;
  font-variation-settings: var(--font-weight-regular);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.team-block .accordion-body dd {
  font-size: clamp(1.6rem, 1.0909090909vw, 1.8rem);
  font-variation-settings: var(--font-weight-regular);
  line-height: 1.3;
  margin: 0;
}
.team-block .accordion-body dd a {
  display: block;
  text-decoration: underline;
}

.schedule-block {
  margin-block: var(--spacing-4);
}
.schedule-block .block-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}
.schedule-block .block-header [class*=heading-] {
  line-height: normal;
}
@media (min-width: 992px) {
  .schedule-block .block-header [class*=heading-] {
    --heading-margin: 0;
  }
}
@media (max-width: 991px) {
  .schedule-block .header-admin {
    padding-top: 8rem;
  }
}
.schedule-block .heading-wrap {
  align-items: center;
}
@media (max-width: 991px) {
  .schedule-block .edit-header {
    display: flex;
    inset-inline: 0;
    justify-content: center;
    padding-inline: 2rem;
    position: absolute;
    top: 0;
  }
}
.schedule-block .details-toggle,
.schedule-block .row-expand {
  padding: 0;
}
.schedule-block .details-toggle {
  max-width: 1px;
  text-align: center;
}

@media (max-width: 991px) {
  .hide-mobile {
    display: none;
  }
}
@media (min-width: 992px) {
  .mobile-only {
    display: none;
  }
}
.container {
  margin-inline: auto;
  max-width: var(--container-max-width);
  padding-inline: var(--container-padding);
  width: 100%;
}

.grid {
  align-items: var(--grid-align-y);
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: repeat(var(--grid-columns, 12), 1fr);
}

.site-footer {
  --color-text: var(--color-white);
  background: var(--color-blue);
  margin-top: auto;
  padding-block: clamp(3rem, 3.0303030303vw, 5rem);
  width: 100%;
}
.site-footer a {
  color: var(--color-white);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--color-gray);
  text-decoration: none;
}

.footer-body {
  margin-inline: auto;
  max-width: var(--container-max-width);
  padding-inline: var(--container-padding);
  width: 100%;
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: var(--grid-gap);
  justify-content: space-between;
}
@media (min-width: 992px) {
  .footer-body {
    flex-direction: row;
  }
}

.footer-logo {
  display: block;
  font-size: 2.4rem;
  font-variation-settings: var(--font-weight-bold);
}
@media (min-width: 992px) {
  .footer-logo {
    flex: 1;
  }
}

.footer-social {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1rem 2rem;
}
@media (min-width: 992px) {
  .footer-social {
    flex-direction: row;
    flex: 1;
    justify-content: flex-end;
  }
}
.footer-social strong {
  color: var(--color-white);
  font-size: 1.6rem;
  font-variation-settings: var(--font-weight-bold);
  line-height: 1.4;
}
.footer-social ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  align-items: center;
  display: flex;
  gap: 2rem;
}
.footer-social a {
  display: flex;
}
.footer-social svg {
  width: 2rem;
}

.footer-details {
  align-items: center;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  font-size: 1rem;
  font-variation-settings: var(--font-weight-regular);
  gap: 2rem;
  line-height: 1.6;
  text-align: center;
}

.footer-copyright {
  font-size: 1rem;
  text-align: center;
  width: 100%;
}

.site-header {
  position: relative;
  z-index: 1000;
}
.site-header .header-body {
  margin-inline: auto;
  max-width: var(--container-max-width);
  padding-inline: var(--container-padding);
  width: 100%;
  align-items: center;
  -moz-column-gap: var(--grid-gap);
       column-gap: var(--grid-gap);
  display: flex;
  height: 10rem;
  justify-content: space-between;
  padding-block: 3rem;
  position: relative;
}
@media (min-width: 991px) {
  .site-header .header-body {
    height: auto;
    margin-bottom: var(--spacing-3);
    padding-block: 0.5rem 0;
  }
}
.site-header .dropdown-menu {
  display: block;
  left: auto;
  margin-top: 2.5rem;
  min-width: 33rem;
  right: 2rem;
  top: auto;
  transform: none;
}
.site-header .dropdown-menu::before {
  background-color: white;
  bottom: calc(100% - 0.3rem);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  content: "";
  display: block;
  height: 2.5rem;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='75' height='24' fill='none'%3E%3Cpath fill='%23fff' d='M15.411 16.103C10.48 19.871 8.733 20.813 0 22.907V24h75v-1.094c-4.931 0-12.329-4.535-15.411-6.803L40.069.925c-2.055-1.675-4.281-.698-5.138 0-4.451 3.489-14.588 11.41-19.52 15.178Z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='75' height='24' fill='none'%3E%3Cpath fill='%23fff' d='M15.411 16.103C10.48 19.871 8.733 20.813 0 22.907V24h75v-1.094c-4.931 0-12.329-4.535-15.411-6.803L40.069.925c-2.055-1.675-4.281-.698-5.138 0-4.451 3.489-14.588 11.41-19.52 15.178Z'/%3E%3C/svg%3E");
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  position: absolute;
  right: 3rem;
  width: 7.5rem;
}
.site-header .dropdown-menu .menu-sub {
  border-bottom: solid 1px var(--color-gray-light);
  margin-top: 2.5rem;
}
.site-header .dropdown-menu .menu-sub > li {
  border-top: solid 1px var(--color-gray-light);
}
.site-header .dropdown-menu .menu-sub > li > a {
  display: flex;
  font-size: 1.6rem;
  font-variation-settings: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  line-height: var(--line-height-tight);
  padding-block: 2.25rem 2rem;
  text-transform: uppercase;
}
.site-header .dropdown-menu .menu-sub > li > a:not(.color-red) {
  color: var(--color-blue);
}
.site-header .dropdown-menu .menu-sub > li > a:hover {
  color: var(--color-red);
}
.site-header .dropdown-menu .menu-sub > li > strong {
  color: var(--color-charcoal);
  display: flex;
  font-size: 1.6rem;
  font-variation-settings: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  line-height: var(--line-height-tight);
  padding-block: 2.25rem 2rem;
  text-transform: uppercase;
}
.site-header .dropdown-menu .menu-sub ul {
  margin-top: -1rem;
  padding-bottom: 2rem;
}
.site-header .dropdown-menu .menu-sub ul a {
  color: var(--color-blue);
  text-transform: none;
  font-variation-settings: "wght" 400;
  font-size: 1.6rem;
}
.site-header .dropdown-menu .menu-sub ul a:hover {
  color: var(--color-red);
}

.header-brand {
  margin-inline: auto;
  max-width: var(--container-max-width);
  padding-inline: var(--container-padding);
  width: 100%;
  align-items: center;
  display: flex;
  height: clamp(8rem, 9.0909090909vw, 15rem);
  justify-content: flex-end;
  position: relative;
}
@media (min-width: 767px) {
  .header-brand {
    justify-content: space-between;
  }
}
.header-brand .account-btn {
  align-items: center;
  color: var(--color-blue);
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  font-variation-settings: var(--font-weight-semibold);
  gap: 0.6rem;
}

.site-logo {
  align-self: flex-end;
  color: var(--color-logo);
  display: block;
  max-width: clamp(17.5rem, 15.1515151515vw, 25rem);
  width: 100%;
  z-index: 1;
}
.site-logo svg {
  display: block;
}

.secondary-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  transition: none;
  z-index: 10;
}
@media (max-width: 992px) {
  .secondary-navigation {
    background: linear-gradient(to bottom, #D8D8D8 0, #FFFFFF 20%);
    flex-direction: column;
    inset-block: var(--header-height) 0;
    inset-inline: 0;
    opacity: 0;
    overflow: auto;
    padding-inline: var(--container-padding);
    position: fixed;
    visibility: hidden;
  }
  .secondary-navigation.show {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 992px) {
  .secondary-navigation {
    justify-content: flex-end;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .secondary-navigation {
    justify-content: flex-end;
    margin-top: 0;
    width: auto;
  }
}

.site-navigation {
  background: var(--color-blue);
  position: relative;
}
.site-navigation .edit-btn {
  margin-inline: auto;
  max-width: var(--container-max-width);
  padding-inline: var(--container-padding);
  width: 100%;
  background: var(--color-white);
  align-items: center;
  display: flex;
  justify-content: center;
  padding-top: 3rem;
  z-index: 1;
}
@media (min-width: 992px) {
  .site-navigation .edit-btn {
    background: transparent;
    inset: 0;
    justify-content: flex-end;
    padding-block: 0;
    pointer-events: none;
    position: absolute;
  }
}
.site-navigation .btn-primary {
  pointer-events: all;
}

.management-nav {
  align-items: center;
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 auto;
  max-width: var(--container-max-width);
  padding-inline: 1rem;
  width: 100%;
}
@media (min-width: 576px) {
  .management-nav {
    -moz-column-gap: clamp(1rem, -95px + 10.5263vw, 5rem);
         column-gap: clamp(1rem, -95px + 10.5263vw, 5rem);
    padding-inline: var(--container-padding);
  }
}
.management-nav .nav-item {
  flex: 1;
  max-width: 9rem;
}
@media (min-width: 992px) {
  .management-nav .nav-item {
    position: relative;
  }
}
.management-nav .nav-link {
  align-items: center;
  background: transparent;
  border: none;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  font-variation-settings: var(--font-weight-semibold);
  gap: 0.9rem;
  height: 100%;
  padding: 1.3rem clamp(1rem, 1.2121212121vw, 2rem);
  transition: background var(--transition);
  width: 100%;
}
.management-nav .nav-link.current:not(.sub-expanded) {
  background: rgba(243, 246, 248, 0.2);
}
.management-nav .nav-link:hover {
  background: rgba(243, 246, 248, 0.2);
}
.management-nav ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.primary-nav {
  align-items: flex-start;
  border-top: solid 1px var(--color-gray);
  display: flex;
  flex-direction: column;
  -moz-column-gap: var(--grid-gap-nav);
       column-gap: var(--grid-gap-nav);
  list-style: none;
  margin-bottom: 2rem;
  pointer-events: none;
}
@media (min-width: 992px) {
  .primary-nav {
    align-items: center;
    border-top: none;
    bottom: 0;
    display: flex;
    flex-direction: row;
    inset-inline: 0;
    justify-content: center;
    margin-bottom: 0;
    position: absolute;
  }
}
.primary-nav .nav-item {
  border-bottom: solid 1px var(--color-gray);
  pointer-events: all;
  position: relative;
  width: 100%;
}
@media (min-width: 992px) {
  .primary-nav .nav-item {
    border: none;
    width: auto;
  }
}
.primary-nav .nav-link {
  align-items: center;
  background: transparent;
  border: none;
  color: var(--color-nav);
  cursor: pointer;
  display: flex;
  font-family: var(--font-family-slab);
  font-size: var(--font-size-medium);
  font-variation-settings: var(--font-weight-semibold);
  justify-content: space-between;
  letter-spacing: 0.05em;
  padding: 2rem 0;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}
@media (min-width: 992px) {
  .primary-nav .nav-link {
    font-size: clamp(1.4rem, 0.9696969697vw, 1.6rem);
    justify-content: flex-start;
    padding: 1rem 0;
  }
}
@media (min-width: 992px) {
  .primary-nav .nav-link.current::after {
    background: var(--color-red);
    bottom: 1rem;
    content: "";
    display: block;
    height: 0.2rem;
    inset-inline: 0;
    position: absolute;
  }
}
.primary-nav .nav-link:hover {
  color: var(--color-red);
}
.primary-nav .sub-toggle {
  gap: 0.5rem;
}
.primary-nav .sub-toggle::after {
  background: var(--color-orange);
  clip-path: path("M.293.293a1 1 0 0 1 1.414 0L5 3.586 8.293.293a1 1 0 0 1 1.414 1.414l-4 4a1 1 0 0 1-1.414 0l-4-4a1 1 0 0 1 0-1.414Z");
  content: "";
  display: block;
  height: 0.6rem;
  width: 1rem;
}
@media (min-width: 992px) {
  .primary-nav .sub-toggle::after {
    background: var(--color-dropdown);
  }
}
@media (max-width: 991px) {
  .primary-nav .dropdown-menu {
    background: linear-gradient(to bottom, #D8D8D8 0, #FFFFFF 20%);
    border-radius: 0;
    box-shadow: none;
    inset: 0;
    margin: 0;
    padding: 2rem var(--container-padding) 2rem var(--container-padding);
    position: fixed;
    transform: translateX(100%);
    z-index: 15;
  }
  .primary-nav .dropdown-menu.show {
    transform: none;
  }
  .primary-nav .dropdown-menu li {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 992px) {
  .primary-nav .dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
  }
}
.primary-nav .dropdown-menu::before {
  display: none;
}
@media (min-width: 992px) {
  .primary-nav .dropdown-menu::before {
    display: block;
    left: 50%;
    transform: translateX(-50%);
  }
}
.primary-nav .back-btn {
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213%22%20height%3D%2222%22%20fill%3D%22none%22%3E%3Cpath%20stroke%3D%22%23333%22%20stroke-width%3D%221.5%22%20d%3D%22m12%2020.982-10-10%2010-10%22%20opacity%3D%22.7%22%2F%3E%3C%2Fsvg%3E") center center/contain no-repeat;
  border: none;
  cursor: pointer;
  display: block;
  height: 2rem;
  transform: translateY(0.5rem);
  width: 1rem;
}
@media (min-width: 992px) {
  .primary-nav .back-btn {
    display: none;
  }
}
.primary-nav .sub-heading {
  color: var(--color-gray-dark);
  font-family: var(--font-family-flex);
  font-size: 1.6rem;
  font-style: normal;
  font-variation-settings: var(--font-weight-semibold);
  letter-spacing: 0.05em;
  line-height: 1.6%;
  margin-left: auto;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .primary-nav .sub-heading {
    color: var(--color-blue);
    font-size: var(--font-size-h4);
    font-variation-settings: var(--font-weight-bold);
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin-left: 0;
    text-transform: none;
  }
}

.secondary-nav {
  align-items: center;
  display: flex;
  gap: var(--grid-gap);
  justify-content: flex-end;
  list-style: none;
  padding-top: 2rem;
  width: 100%;
}
@media (min-width: 992px) {
  .secondary-nav {
    padding-top: 0;
  }
}
.secondary-nav li {
  position: relative;
}
.secondary-nav .dropdown .nav-link {
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
}
.secondary-nav .dropdown .nav-link::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='5' fill='none'%3E%3Cpath fill='%23333' d='M3.88 4.031a.52.52 0 0 1-.424-.214L.986.851C.838.637.863.317 1.063.156c.2-.16.474-.16.623.054L3.83 2.829c.025.026.05.026.1 0L6.075.209c.175-.213.45-.24.649-.053.2.187.224.481.05.695l-.025.027-2.445 2.966a.63.63 0 0 1-.424.187Z' opacity='.9'/%3E%3C/svg%3E") center center/contain no-repeat;
  content: "";
  display: block;
  height: 0.8rem;
  width: 0.8rem;
}
.secondary-nav .nav-link {
  color: var(--color-black);
  font-size: var(--font-size-small);
  font-variation-settings: var(--font-weight-medium);
  padding-block: 1rem;
  transition: var(--transition);
}
.secondary-nav .nav-link.current {
  color: var(--color-red);
}

.page-nav {
  align-items: center;
  background: #E6EDF1;
  -moz-column-gap: clamp(1rem, 1.2121212121vw, 2rem);
       column-gap: clamp(1rem, 1.2121212121vw, 2rem);
  display: flex;
  justify-content: center;
}
.page-nav ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  -moz-column-gap: clamp(1rem, 1.2121212121vw, 2rem);
       column-gap: clamp(1rem, 1.2121212121vw, 2rem);
  display: flex;
  justify-content: center;
}
.page-nav .nav-title {
  font-size: 1.6rem;
  font-variation-settings: var(--font-weight-regular);
  padding: 2rem 1rem 1rem;
}
.page-nav .nav-link {
  display: block;
  font-size: 1.6rem;
  font-variation-settings: var(--font-weight-regular);
  padding: 2.4rem 1rem 1.6rem;
  position: relative;
}
.page-nav .nav-link::after {
  background: var(--color-blue);
  bottom: 0;
  content: "";
  display: block;
  height: 0.5rem;
  inset-inline: 0;
  opacity: 0;
  position: absolute;
  transition: opacity var(--transition);
  visibility: hidden;
}
.page-nav .nav-link.current {
  color: var(--color-blue);
  font-variation-settings: var(--font-weight-semibold);
}
.page-nav .nav-link.current::after {
  opacity: 1;
  visibility: visible;
}

.sub-nav {
  background: var(--color-white);
  border-radius: 0 0 2.5rem 2.5rem;
  box-shadow: 0px 100px 80px rgba(0, 0, 0, 0.07), 0px 40px 33px rgba(0, 0, 0, 0.05), 0px 22px 18px rgba(0, 0, 0, 0.05), 0px 12px 10px rgba(0, 0, 0, 0.035), 0px 6px 5px rgba(0, 0, 0, 0.03), 0px 2px 2px rgba(0, 0, 0, 0.02);
  inset-inline: 0;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 3rem;
  position: absolute;
  top: 100%;
  transition: opacity var(--transition);
  visibility: hidden;
  z-index: 10;
}
@media (min-width: 768px) {
  .sub-nav {
    inset-inline: var(--container-padding);
  }
}
@media (min-width: 992px) {
  .sub-nav {
    left: 50%;
    transform: translateX(-50%);
    width: 375px;
  }
}
.sub-nav.show {
  opacity: 1;
  visibility: visible;
}
.sub-nav > ul {
  list-style: none;
}
.sub-nav > ul > li:nth-child(odd) {
  background: #F3F6F8;
}
.sub-nav .sub-header {
  padding: 2rem;
  position: relative;
  text-align: center;
}
.sub-nav .sub-title {
  color: var(--color-blue);
  font-size: 2.4rem;
  font-variation-settings: var(--font-weight-bold);
}
.sub-nav .sub-back,
.sub-nav .sub-close {
  background: transparent;
  border: none;
  display: flex;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .sub-nav .sub-back,
  .sub-nav .sub-close {
    display: none;
  }
}
.sub-nav .sub-back svg,
.sub-nav .sub-close svg {
  height: auto;
  max-width: 100%;
}
.sub-nav .sub-back {
  height: 2rem;
  left: 2rem;
  width: 2rem;
}
.sub-nav .sub-close {
  height: 1.7rem;
  right: 2rem;
  width: 1.7rem;
}
.sub-nav .sub-link {
  align-items: center;
  background: transparent;
  border: none;
  color: var(--color-blue);
  display: flex;
  font-size: 1.6rem;
  font-variation-settings: var(--font-weight-semibold);
  justify-content: space-between;
  line-height: 1;
  padding: 0.8rem 2rem;
  text-decoration: none;
  width: 100%;
}
.sub-nav button.sub-link::after {
  background: currentColor;
  content: "";
  height: 0.8rem;
  -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAxMCA2Ij48cGF0aCBmaWxsPSIjMGE0OTc2IiBkPSJNOC4yMzQuMjM0YS44LjggMCAxIDEgMS4xMzEgMS4xMzFsLTQgNGEuOC44IDAgMCAxLTEuMTMgMGwtNC00YS44LjggMCAxIDEgMS4xMy0xLjEzTDQuOCAzLjY2OHoiLz48L3N2Zz4=") center/contain no-repeat;
          mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAxMCA2Ij48cGF0aCBmaWxsPSIjMGE0OTc2IiBkPSJNOC4yMzQuMjM0YS44LjggMCAxIDEgMS4xMzEgMS4xMzFsLTQgNGEuOC44IDAgMCAxLTEuMTMgMGwtNC00YS44LjggMCAxIDEgMS4xMy0xLjEzTDQuOCAzLjY2OHoiLz48L3N2Zz4=") center/contain no-repeat;
  transition: transform var(--transition);
  width: 1rem;
}
.sub-nav .sub-panel {
  background: var(--color-white);
  display: none;
}
.sub-nav .sub-panel.show {
  display: block;
}
.sub-nav .sub-panel ul {
  list-style: none;
  margin: 0;
  padding: 0 0 1rem 2rem;
}

.admin-banner {
  --color-text: var(--color-white);
  position: relative;
}
@media (min-width: 992px) {
  .admin-banner[data-customer=true] {
    background: var(--color-blue);
  }
  .admin-banner[data-admin=true] {
    background: linear-gradient(to right, var(--color-blue) 0%, var(--color-blue) 50%, var(--color-red) 50%, var(--color-red) 100%);
  }
}
.admin-banner .banner-body {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  max-width: var(--container-max-width);
  padding-inline: 0;
  width: 100%;
}
@media (min-width: 992px) {
  .admin-banner .banner-body {
    flex-direction: row;
    padding-inline: var(--container-padding);
  }
}
.admin-banner p {
  font-size: 1.6rem;
  line-height: 1;
  margin: 0;
  z-index: 15;
}
.admin-banner a {
  color: var(--color-white);
}
.admin-banner .alert-btn {
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 1.6rem;
  font-variation-settings: var(--font-weight-regular);
  font-weight: var(--font-weight-bold);
  line-height: 1;
  margin: 0;
  padding: 0;
}
.admin-banner .close-btn {
  background: transparent;
  border: none;
  color: var(--color-white);
  display: flex;
  height: 1.4rem;
  padding: 0;
  width: 1.4rem;
}
.admin-banner .admin-menu {
  height: 100%;
  z-index: 15;
}
@media (min-width: 992px) {
  .admin-banner .admin-menu {
    position: relative;
  }
}
.admin-banner .admin-edit {
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 1.4rem;
  font-variation-settings: var(--font-weight-semibold);
  height: 100%;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0.2rem;
  position: relative;
  text-transform: uppercase;
  transition: background var(--transition);
}
@media (min-width: 992px) {
  .admin-banner .admin-edit {
    padding: 0.2rem 1rem 0;
  }
}
.admin-banner .admin-edit::after {
  background: var(--color-red);
  content: "";
  display: block;
  height: 0.5rem;
  inset-inline: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  transition: opacity var(--transition);
  visibility: hidden;
  z-index: 100;
}
.admin-banner .admin-edit.show {
  background: rgba(255, 255, 255, 0.2);
}
.admin-banner .admin-edit.show::after {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 992px) {
  .admin-banner .sub-nav {
    left: auto;
    right: 0;
    transform: none;
  }
}

.banner-bar {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: space-between;
  min-height: 3.5rem;
}
.banner-bar.is-alert {
  background: var(--color-blue);
  padding-inline: 2rem;
}
@media (min-width: 992px) {
  .banner-bar.is-alert {
    padding-inline: 0 2rem;
  }
}
.banner-bar.is-admin {
  background: var(--color-red);
  padding-inline: 2rem;
}
@media (min-width: 992px) {
  .banner-bar.is-admin {
    padding-inline: 2rem 0;
  }
}

.navbar-toggle {
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  margin-left: auto;
  opacity: 1;
  padding: 0;
  position: relative;
  transition: var(--transition);
  visibility: visible;
  z-index: 9;
}
@media (min-width: 992px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-toggle.show .toggle-icons {
  border-color: transparent;
}
.navbar-toggle.show .toggle-icons:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.navbar-toggle.show .toggle-icons:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.toggle-icons {
  background: transparent;
  border-bottom: 2px solid var(--color-charcoal);
  border-top: 2px solid var(--color-charcoal);
  color: var(--color-charcoal);
  display: block;
  font-size: 0;
  height: 1.4rem;
  margin: 0 auto;
  position: relative;
  transition: var(--transition);
  width: 2rem;
}
.toggle-icons:before, .toggle-icons:after {
  background: var(--color-charcoal);
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
  width: 100%;
}
