/* Rhodecar cookie consent */
:root {
  --rh-cookie-navy: #001731;
  --rh-cookie-blue: #1a56db;
  --rh-cookie-blue-dark: #1446b4;
  --rh-cookie-orange: #f1672f;
  --rh-cookie-orange-dark: #d95420;
  --rh-cookie-text: #172033;
  --rh-cookie-muted: #667085;
  --rh-cookie-border: #d9e2ec;
  --rh-cookie-surface: #f6f8fb;
  --rh-cookie-white: #ffffff;
  --rh-cookie-shadow: 0 -12px 36px rgba(0, 23, 49, 0.14);
  --rh-cookie-panel-shadow: -24px 0 54px rgba(0, 23, 49, 0.20);
  --rh-cookie-z: 99999;
}

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

.rh-cookie {
  position: fixed;
  inset: 0;
  z-index: var(--rh-cookie-z);
  pointer-events: none;
  font-family: inherit;
  color: var(--rh-cookie-text);
}

.rh-cookie[hidden],
.rh-cookie__bar[hidden],
.rh-cookie__preferences[hidden] {
  display: none !important;
}

.rh-cookie__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 23, 49, 0.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

.rh-cookie.is-preferences-open .rh-cookie__backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.rh-cookie__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.985);
  border-top: 1px solid var(--rh-cookie-border);
  box-shadow: var(--rh-cookie-shadow);
  pointer-events: auto;
  transform: translateY(105%);
  opacity: 0;
  transition: transform .24s ease, opacity .2s ease;
}

.rh-cookie.is-bar-visible .rh-cookie__bar {
  transform: translateY(0);
  opacity: 1;
}

.rh-cookie__bar-inner {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 18px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.rh-cookie__copy {
  min-width: 0;
}

.rh-cookie__title,
.rh-cookie__preferences-title {
  color: var(--rh-cookie-navy);
  margin: 0;
  letter-spacing: -0.025em;
}

.rh-cookie__title {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.rh-cookie__description {
  margin: 5px 0 0;
  max-width: 820px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--rh-cookie-muted);
}

.rh-cookie__policy-links,
.rh-cookie__preferences-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.rh-cookie__policy-links {
  margin-top: 7px;
}

.rh-cookie__policy-links a,
.rh-cookie__preferences-links a {
  color: var(--rh-cookie-blue);
  font-size: 12.5px;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
}

.rh-cookie__policy-links a:hover,
.rh-cookie__preferences-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.rh-cookie__bar-actions,
.rh-cookie__preferences-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rh-cookie__button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 10px;
  min-height: 44px;
  padding: 11px 17px;
  font: inherit;
  font-size: 13.5px;
  line-height: 1.15;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.rh-cookie__button:hover {
  transform: translateY(-1px);
}

.rh-cookie__button:focus-visible,
.rh-cookie__close:focus-visible,
.rh-cookie__switch input:focus-visible + span {
  outline: 3px solid rgba(26, 86, 219, .25);
  outline-offset: 2px;
}

.rh-cookie__button--essential {
  color: var(--rh-cookie-white);
  background: var(--rh-cookie-navy);
  border-color: var(--rh-cookie-navy);
}

.rh-cookie__button--essential:hover {
  background: #00254f;
  border-color: #00254f;
}

.rh-cookie__button--manage,
.rh-cookie__button--save {
  color: var(--rh-cookie-blue);
  background: #eef4ff;
  border-color: #c9d8ff;
}

.rh-cookie__button--manage:hover,
.rh-cookie__button--save:hover {
  background: #e1ebff;
  border-color: #aebfff;
}

.rh-cookie__button--accept {
  color: var(--rh-cookie-white);
  background: var(--rh-cookie-orange);
  border-color: var(--rh-cookie-orange);
}

.rh-cookie__button--accept:hover {
  background: var(--rh-cookie-orange-dark);
  border-color: var(--rh-cookie-orange-dark);
}

.rh-cookie__preferences {
  position: absolute;
  top: 0;
  right: 0;
  width: min(520px, 92vw);
  height: 100%;
  overflow-y: auto;
  background: var(--rh-cookie-white);
  box-shadow: var(--rh-cookie-panel-shadow);
  padding: 28px;
  pointer-events: auto;
  transform: translateX(105%);
  transition: transform .24s ease;
}

.rh-cookie.is-preferences-open .rh-cookie__preferences {
  transform: translateX(0);
}

.rh-cookie__preferences-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rh-cookie-border);
}

.rh-cookie__eyebrow {
  margin: 0 0 5px;
  color: var(--rh-cookie-orange);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.rh-cookie__preferences-title {
  font-size: 25px;
  line-height: 1.15;
  font-weight: 850;
}

.rh-cookie__close {
  appearance: none;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rh-cookie-border);
  border-radius: 50%;
  color: var(--rh-cookie-navy);
  background: var(--rh-cookie-white);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.rh-cookie__close:hover {
  background: var(--rh-cookie-surface);
}

.rh-cookie__preferences-intro {
  margin: 18px 0;
  color: var(--rh-cookie-muted);
  font-size: 14px;
  line-height: 1.65;
}

.rh-cookie__categories {
  display: grid;
  gap: 10px;
}

.rh-cookie__category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 17px;
  border: 1px solid var(--rh-cookie-border);
  border-radius: 14px;
  background: var(--rh-cookie-white);
}

.rh-cookie__category--required {
  background: #f7f9fc;
}

.rh-cookie__category-copy h3 {
  margin: 0;
  color: var(--rh-cookie-navy);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 850;
}

.rh-cookie__category-copy p {
  margin: 5px 0 0;
  color: var(--rh-cookie-muted);
  font-size: 12.75px;
  line-height: 1.55;
}

.rh-cookie__always {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eaf7ee;
  color: #237a41;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.rh-cookie__switch {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

.rh-cookie__switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rh-cookie__switch span {
  position: relative;
  display: block;
  width: 48px;
  height: 28px;
  border: 1px solid #c5d0db;
  border-radius: 999px;
  background: #d8e0e8;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease;
}

.rh-cookie__switch span::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rh-cookie-white);
  box-shadow: 0 1px 4px rgba(0, 23, 49, .2);
  transition: transform .18s ease;
}

.rh-cookie__switch input:checked + span {
  background: var(--rh-cookie-blue);
  border-color: var(--rh-cookie-blue);
}

.rh-cookie__switch input:checked + span::after {
  transform: translateX(20px);
}

.rh-cookie__preferences-links {
  margin-top: 18px;
}

.rh-cookie__preferences-actions {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--rh-cookie-border);
}

.rh-cookie__preferences-actions .rh-cookie__button {
  flex: 1 1 0;
  min-width: 0;
  padding-left: 10px;
  padding-right: 10px;
}

html.rh-cookie-panel-open,
body.rh-cookie-panel-open {
  overflow: hidden !important;
}

@media (max-width: 980px) {
  .rh-cookie__bar-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 17px 22px;
  }

  .rh-cookie__bar-actions {
    width: 100%;
  }

  .rh-cookie__bar-actions .rh-cookie__button {
    flex: 1 1 0;
  }
}

@media (max-width: 640px) {
  .rh-cookie__bar {
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--rh-cookie-border);
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    overflow: hidden;
  }

  .rh-cookie__bar-inner {
    padding: 17px;
    gap: 15px;
  }

  .rh-cookie__title {
    font-size: 17px;
  }

  .rh-cookie__description {
    font-size: 13px;
    line-height: 1.5;
  }

  .rh-cookie__policy-links {
    margin-top: 8px;
  }

  .rh-cookie__bar-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .rh-cookie__bar-actions .rh-cookie__button--manage {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .rh-cookie__bar-actions .rh-cookie__button {
    min-height: 43px;
    padding: 10px 8px;
    font-size: 13px;
  }

  .rh-cookie__preferences {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    max-height: min(86vh, 760px);
    padding: 21px 18px 18px;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -24px 54px rgba(0, 23, 49, .22);
    transform: translateY(105%);
  }

  .rh-cookie.is-preferences-open .rh-cookie__preferences {
    transform: translateY(0);
  }

  .rh-cookie__preferences-title {
    font-size: 21px;
  }

  .rh-cookie__preferences-intro {
    font-size: 13px;
    margin: 15px 0;
  }

  .rh-cookie__category {
    padding: 14px;
    gap: 12px;
  }

  .rh-cookie__category-copy p {
    font-size: 12.25px;
  }

  .rh-cookie__preferences-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .rh-cookie__preferences-actions .rh-cookie__button--save {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rh-cookie__bar,
  .rh-cookie__preferences,
  .rh-cookie__backdrop,
  .rh-cookie__button,
  .rh-cookie__switch span,
  .rh-cookie__switch span::after {
    transition: none !important;
  }
}
