:root {
  --ss-primary-color: #5897fb;
  --ss-bg-color: #fff;
  --ss-font-color: #4d4d4d;
  --ss-font-placeholder-color: #8d8d8d;
  --ss-disabled-color: #dcdee2;
  --ss-border-color: #dcdee2;
  --ss-highlight-color: #fffb8c;
  --ss-success-color: #00b755;
  --ss-error-color: #dc3545;
  --ss-focus-color: #5897fb;
  --ss-main-height: 30px;
  --ss-content-height: 300px;
  --ss-spacing-l: 7px;
  --ss-spacing-m: 5px;
  --ss-spacing-s: 3px;
  --ss-animation-timing: .2s;
  --ss-border-radius: 4px;
}

@keyframes ss-valueIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ss-valueOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0);
  }
}

.ss-hide {
  display: none !important;
}

.ss-main {
  user-select: none;
  color: var(--ss-font-color);
  min-height: var(--ss-main-height);
  width: 100%;
  padding: var(--ss-spacing-s);
  cursor: pointer;
  border: 1px solid var(--ss-border-color);
  border-radius: var(--ss-border-radius);
  background-color: var(--ss-bg-color);
  box-sizing: border-box;
  transition: background-color var(--ss-animation-timing);
  outline: 0;
  flex-direction: row;
  display: flex;
  position: relative;
  overflow: hidden;
}

.ss-main:focus {
  box-shadow: 0 0 5px var(--ss-focus-color);
}

.ss-main.ss-disabled {
  background-color: var(--ss-disabled-color);
  cursor: not-allowed;
}

.ss-main.ss-disabled .ss-values .ss-disabled {
  color: var(--ss-font-color);
}

.ss-main.ss-disabled .ss-values .ss-value .ss-value-delete {
  cursor: not-allowed;
}

.ss-main.ss-open-above {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.ss-main.ss-open-below {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.ss-main .ss-values {
  gap: var(--ss-spacing-m);
  flex-wrap: wrap;
  flex: 100%;
  display: inline-flex;
}

.ss-main .ss-values .ss-placeholder {
  padding: var(--ss-spacing-s) var(--ss-spacing-m) var(--ss-spacing-s) var(--ss-spacing-m);
  width: 100%;
  color: var(--ss-font-placeholder-color);
  text-overflow: ellipsis;
  white-space: nowrap;
  align-items: center;
  margin: auto 0;
  line-height: 1em;
  display: flex;
  overflow: hidden;
}

.ss-main .ss-values .ss-max {
  user-select: none;
  width: fit-content;
  color: var(--ss-bg-color);
  padding: var(--ss-spacing-s) var(--ss-spacing-m);
  background-color: var(--ss-primary-color);
  border-radius: var(--ss-border-radius);
  align-items: center;
  font-size: 12px;
  line-height: 1;
  display: flex;
}

.ss-main .ss-values .ss-single {
  margin: auto 0px auto var(--ss-spacing-s);
  display: flex;
}

.ss-main .ss-values .ss-value {
  user-select: none;
  background-color: var(--ss-primary-color);
  border-radius: var(--ss-border-radius);
  width: fit-content;
  animation-name: ss-valueIn;
  animation-duration: var(--ss-animation-timing);
  align-items: center;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
  display: flex;
}

.ss-main .ss-values .ss-value.ss-value-out {
  animation-name: ss-valueOut;
  animation-duration: var(--ss-animation-timing);
  animation-timing-function: ease-out;
}

.ss-main .ss-values .ss-value .ss-value-text {
  color: var(--ss-bg-color);
  padding: var(--ss-spacing-s) var(--ss-spacing-m);
  font-size: 12px;
  line-height: 1;
}

.ss-main .ss-values .ss-value .ss-value-delete {
  height: var(--ss-spacing-l);
  width: var(--ss-spacing-l);
  padding: var(--ss-spacing-s) var(--ss-spacing-m);
  cursor: pointer;
  border-left: solid 1px var(--ss-bg-color);
  box-sizing: content-box;
  align-items: center;
  display: flex;
}

.ss-main .ss-values .ss-value .ss-value-delete svg {
  height: var(--ss-spacing-l);
  width: var(--ss-spacing-l);
}

.ss-main .ss-values .ss-value .ss-value-delete svg path {
  fill: none;
  stroke: var(--ss-bg-color);
  stroke-width: 18px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-main .ss-deselect {
  width: fit-content;
  height: auto;
  padding: 0 var(--ss-spacing-m) 0 var(--ss-spacing-m);
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  display: flex;
}

.ss-main .ss-deselect svg {
  width: 8px;
  height: 8px;
}

.ss-main .ss-deselect svg path {
  fill: none;
  stroke: var(--ss-font-color);
  stroke-width: 20px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-main .ss-arrow {
  width: 12px;
  height: 12px;
  margin: auto var(--ss-spacing-m) auto var(--ss-spacing-m);
  flex: 0 auto;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.ss-main .ss-arrow path {
  fill: none;
  stroke: var(--ss-font-color);
  stroke-width: 18px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition-timing-function: ease-out;
  transition: var(--ss-animation-timing);
}

.ss-content {
  width: auto;
  height: auto;
  max-height: var(--ss-content-height);
  box-sizing: border-box;
  border: solid 1px var(--ss-border-color);
  background-color: var(--ss-bg-color);
  transition: transform var(--ss-animation-timing), opacity var(--ss-animation-timing);
  opacity: 0;
  transform-origin: top;
  z-index: 10000;
  flex-direction: column;
  display: flex;
  position: absolute;
  overflow: hidden;
  transform: scaleY(0);
}

.ss-content.ss-relative {
  height: 100%;
  position: relative;
}

.ss-content.ss-fixed {
  position: fixed;
}

.ss-content.ss-open-above {
  opacity: 1;
  transform-origin: bottom;
  border-top-left-radius: var(--ss-border-radius);
  border-top-right-radius: var(--ss-border-radius);
  flex-direction: column-reverse;
  transform: scaleY(1);
}

.ss-content.ss-open-below {
  opacity: 1;
  transform-origin: top;
  border-bottom-left-radius: var(--ss-border-radius);
  border-bottom-right-radius: var(--ss-border-radius);
  transform: scaleY(1);
}

.ss-content .ss-search {
  padding: var(--ss-spacing-l) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l);
  flex-direction: row;
  flex: 0 auto;
  display: flex;
}

.ss-content .ss-search input {
  font-size: inherit;
  line-height: inherit;
  width: 100%;
  min-width: 0;
  padding: var(--ss-spacing-m) var(--ss-spacing-l);
  border: 1px solid var(--ss-border-color);
  border-radius: var(--ss-border-radius);
  background-color: var(--ss-bg-color);
  text-align: left;
  box-sizing: border-box;
  outline: 0;
  flex: auto;
  margin: 0;
  display: inline-flex;
}

.ss-content .ss-search input::placeholder {
  color: var(--ss-font-placeholder-color);
  vertical-align: middle;
}

.ss-content .ss-search input:focus {
  box-shadow: 0 0 5px var(--ss-focus-color);
}

.ss-content .ss-search .ss-addable {
  cursor: pointer;
  height: auto;
  margin: 0 0 0 var(--ss-spacing-m);
  border: 1px solid var(--ss-border-color);
  border-radius: var(--ss-border-radius);
  flex: none;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.ss-content .ss-search .ss-addable svg {
  width: 12px;
  height: 12px;
  margin: auto var(--ss-spacing-m) auto var(--ss-spacing-m);
  flex: 0 auto;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.ss-content .ss-search .ss-addable svg path {
  fill: none;
  stroke: var(--ss-font-color);
  stroke-width: 18px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-content .ss-list {
  flex: auto;
  height: auto;
  overflow: hidden auto;
}

.ss-content .ss-list .ss-error {
  color: var(--ss-error-color);
  padding: var(--ss-spacing-l);
}

.ss-content .ss-list .ss-searching {
  color: var(--ss-font-color);
  padding: var(--ss-spacing-l);
}

.ss-content .ss-list .ss-optgroup.ss-close .ss-option {
  display: none !important;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label {
  padding: var(--ss-spacing-m) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-label-text {
  color: var(--ss-font-color);
  flex: auto;
  font-weight: bold;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label:has(.ss-arrow) {
  cursor: pointer;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions {
  justify-content: center;
  align-items: center;
  gap: var(--ss-spacing-m);
  flex-direction: row;
  flex: 0 auto;
  display: flex;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall {
  cursor: pointer;
  flex-direction: row;
  flex: none;
  display: flex;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall:hover {
  opacity: .5;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall.ss-selected svg path {
  stroke: var(--ss-error-color);
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall span {
  text-align: center;
  padding: 0 var(--ss-spacing-s) 0 0;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  font-size: 60%;
  display: flex;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg {
  flex: 0 auto;
  width: 13px;
  height: 13px;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg path {
  fill: none;
  stroke: var(--ss-success-color);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:first-child {
  stroke-width: 5px;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-selectall svg:last-child {
  stroke-width: 11px;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable {
  cursor: pointer;
  flex-direction: row;
  flex: 0 auto;
  display: flex;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow {
  flex: auto;
  width: 10px;
  height: 10px;
}

.ss-content .ss-list .ss-optgroup .ss-optgroup-label .ss-optgroup-actions .ss-closable .ss-arrow path {
  fill: none;
  stroke: var(--ss-font-color);
  stroke-width: 18px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition-timing-function: ease-out;
  transition: var(--ss-animation-timing);
}

.ss-content .ss-list .ss-optgroup .ss-option {
  padding: var(--ss-spacing-s) var(--ss-spacing-s) var(--ss-spacing-s) calc(var(--ss-spacing-l) * 3);
}

.ss-content .ss-list .ss-option {
  padding: var(--ss-spacing-m) var(--ss-spacing-l) var(--ss-spacing-m) var(--ss-spacing-l);
  white-space: normal;
  color: var(--ss-font-color);
  cursor: pointer;
  user-select: none;
  display: block;
}

.ss-content .ss-list .ss-option:hover, .ss-content .ss-list .ss-option.ss-highlighted, .ss-content .ss-list .ss-option:not(.ss-disabled).ss-selected {
  color: var(--ss-bg-color);
  background-color: var(--ss-primary-color);
}

.ss-content .ss-list .ss-option.ss-disabled {
  cursor: not-allowed;
  background-color: var(--ss-disabled-color);
}

.ss-content .ss-list .ss-option.ss-disabled:hover {
  color: var(--ss-font-color);
}

.ss-content .ss-list .ss-option .ss-search-highlight {
  background-color: var(--ss-highlight-color);
  display: inline-block;
}

@keyframes plyr-progress {
  to {
    background-position: 25px 0;
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}

@keyframes plyr-popup {
  0% {
    opacity: .5;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes plyr-fade-in {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: inherit;
  font-family: var(--plyr-font-family, inherit);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  line-height: 1.7;
  line-height: var(--plyr-line-height, 1.7);
  min-width: 200px;
  max-width: 100%;
  text-shadow: none;
  z-index: 0;
  direction: ltr;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .3s;
  display: flex;
  position: relative;
}

.plyr audio, .plyr iframe, .plyr video {
  width: 100%;
  height: 100%;
  display: block;
}

.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}

.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  box-sizing: border-box;
}

.plyr--full-ui *, .plyr--full-ui :after, .plyr--full-ui :before {
  box-sizing: inherit;
}

.plyr--full-ui a, .plyr--full-ui button, .plyr--full-ui input, .plyr--full-ui label {
  touch-action: manipulation;
}

.plyr__badge {
  background: #4a5464;
  background: var(--plyr-badge-background, #4a5464);
  border-radius: 2px;
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: var(--plyr-badge-text-color, #fff);
  font-size: 9px;
  font-size: var(--plyr-font-size-badge, 9px);
  padding: 3px 4px;
  line-height: 1;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  font-size: 13px;
  font-size: var(--plyr-font-size-small, 13px);
  padding: 10px;
  padding: var(--plyr-control-spacing, 10px);
  text-align: center;
  width: 100%;
  transition: transform .4s ease-in-out;
  animation: .3s plyr-fade-in;
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
}

.plyr__captions span:empty {
  display: none;
}

@media (width >= 480px) {
  .plyr__captions {
    font-size: 15px;
    font-size: var(--plyr-font-size-base, 15px);
    padding: 20px;
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}

@media (width >= 768px) {
  .plyr__captions {
    font-size: 18px;
    font-size: var(--plyr-font-size-large, 18px);
  }
}

.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(-40px);
  transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}

.plyr__caption {
  background: #000c;
  background: var(--plyr-captions-background, #000c);
  box-decoration-break: clone;
  color: var(--plyr-captions-text-color, #fff);
  white-space: pre-wrap;
  border-radius: 2px;
  padding: .2em .5em;
  line-height: 185%;
}

.plyr__caption div {
  display: inline;
}

.plyr__control {
  border-radius: 4px;
  border-radius: var(--plyr-control-radius, 4px);
  color: inherit;
  cursor: pointer;
  padding: 7px;
  padding: calc(var(--plyr-control-spacing, 10px) * .7);
  background: none;
  border: 0;
  flex-shrink: 0;
  transition: all .1s ease-in-out;
  position: relative;
  overflow: visible;
}

.plyr__control svg {
  fill: currentColor;
  height: 18px;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: 18px;
  width: var(--plyr-control-icon-size, 18px);
  display: block;
}

.plyr__control:focus {
  outline: 0;
}

.plyr__control:focus-visible {
  outline: 2px dashed #00b2ff;
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  outline-offset: 2px;
}

a.plyr__control {
  text-decoration: none;
}

.plyr__control.plyr__control--pressed .icon--not-pressed, .plyr__control.plyr__control--pressed .label--not-pressed, .plyr__control:not(.plyr__control--pressed) .icon--pressed, .plyr__control:not(.plyr__control--pressed) .label--pressed, a.plyr__control:after, a.plyr__control:before {
  display: none;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  text-align: center;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.plyr__controls .plyr__progress__container {
  flex: 1;
  min-width: 0;
}

.plyr__controls .plyr__controls__item {
  margin-left: 2.5px;
  margin-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: 2.5px;
  padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 5px;
  padding: 0 calc(var(--plyr-control-spacing, 10px) / 2);
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time, .plyr__controls .plyr__controls__item.plyr__time:first-child {
  padding-left: 0;
}

.plyr [data-plyr="airplay"], .plyr [data-plyr="captions"], .plyr [data-plyr="fullscreen"], .plyr [data-plyr="pip"], .plyr__controls:empty {
  display: none;
}

.plyr--airplay-supported [data-plyr="airplay"], .plyr--captions-enabled [data-plyr="captions"], .plyr--fullscreen-enabled [data-plyr="fullscreen"], .plyr--pip-supported [data-plyr="pip"] {
  display: inline-block;
}

.plyr__menu {
  display: flex;
  position: relative;
}

.plyr__menu .plyr__control svg {
  transition: transform .3s;
}

.plyr__menu .plyr__control[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded="true"] .plyr__tooltip {
  display: none;
}

.plyr__menu__container {
  background: #ffffffe6;
  background: var(--plyr-menu-background, #ffffffe6);
  border-radius: 8px;
  border-radius: var(--plyr-menu-radius, 8px);
  box-shadow: 0 1px 2px #00000026;
  box-shadow: var(--plyr-menu-shadow, 0 1px 2px #00000026);
  color: var(--plyr-menu-color, #4a5464);
  font-size: 15px;
  font-size: var(--plyr-font-size-base, 15px);
  text-align: left;
  white-space: nowrap;
  z-index: 3;
  margin-bottom: 10px;
  animation: .2s plyr-popup;
  position: absolute;
  bottom: 100%;
  right: -3px;
}

.plyr__menu__container > div {
  transition: height .35s cubic-bezier(.4, 0, .2, 1), width .35s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.plyr__menu__container:after {
  border: 4px solid #0000;
  border-top-color: #ffffffe6;
  border: var(--plyr-menu-arrow-size, 4px) solid #0000;
  border-top-color: var(--plyr-menu-background, #ffffffe6);
  content: "";
  height: 0;
  right: 14px;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * .7 - var(--plyr-menu-arrow-size, 4px) / 2);
  width: 0;
  position: absolute;
  top: 100%;
}

.plyr__menu__container [role="menu"] {
  padding: 7px;
  padding: calc(var(--plyr-control-spacing, 10px) * .7);
}

.plyr__menu__container [role="menuitem"], .plyr__menu__container [role="menuitemradio"] {
  margin-top: 2px;
}

.plyr__menu__container [role="menuitem"]:first-child, .plyr__menu__container [role="menuitemradio"]:first-child {
  margin-top: 0;
}

.plyr__menu__container .plyr__control {
  color: var(--plyr-menu-color, #4a5464);
  font-size: 13px;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding: 4.66667px 10.5px;
  padding: calc(var(--plyr-control-spacing, 10px) * .7 / 1.5) calc(var(--plyr-control-spacing, 10px) * .7 * 1.5);
  user-select: none;
  align-items: center;
  width: 100%;
  display: flex;
}

.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  width: 100%;
  display: flex;
}

.plyr__menu__container .plyr__control:after {
  border: 4px solid #0000;
  border: var(--plyr-menu-item-arrow-size, 4px) solid #0000;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.plyr__menu__container .plyr__control--forward {
  padding-right: 28px;
  padding-right: calc(var(--plyr-control-spacing, 10px) * .7 * 4);
}

.plyr__menu__container .plyr__control--forward:after {
  border-left-color: #728197;
  border-left-color: var(--plyr-menu-arrow-color, #728197);
  right: 6.5px;
  right: calc(var(--plyr-control-spacing, 10px) * .7 * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}

.plyr__menu__container .plyr__control--forward:focus-visible:after, .plyr__menu__container .plyr__control--forward:hover:after {
  border-left-color: initial;
}

.plyr__menu__container .plyr__control--back {
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  margin: 7px;
  margin: calc(var(--plyr-control-spacing, 10px) * .7);
  margin-bottom: 3.5px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) * .7 / 2);
  padding-left: 28px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * .7 * 4);
  width: calc(100% - 14px);
  width: calc(100% - var(--plyr-control-spacing, 10px) * .7 * 2);
  position: relative;
}

.plyr__menu__container .plyr__control--back:after {
  border-right-color: #728197;
  border-right-color: var(--plyr-menu-arrow-color, #728197);
  left: 6.5px;
  left: calc(var(--plyr-control-spacing, 10px) * .7 * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}

.plyr__menu__container .plyr__control--back:before {
  background: #dcdfe5;
  background: var(--plyr-menu-back-border-color, #dcdfe5);
  box-shadow: 0 1px #fff;
  box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  margin-top: 3.5px;
  margin-top: calc(var(--plyr-control-spacing, 10px) * .7 / 2);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.plyr__menu__container .plyr__control--back:focus-visible:after, .plyr__menu__container .plyr__control--back:hover:after {
  border-right-color: initial;
}

.plyr__menu__container .plyr__control[role="menuitemradio"] {
  padding-left: 7px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * .7);
}

.plyr__menu__container .plyr__control[role="menuitemradio"]:after, .plyr__menu__container .plyr__control[role="menuitemradio"]:before {
  border-radius: 100%;
}

.plyr__menu__container .plyr__control[role="menuitemradio"]:before {
  content: "";
  height: 16px;
  margin-right: 10px;
  margin-right: var(--plyr-control-spacing, 10px);
  background: #0000001a;
  flex-shrink: 0;
  width: 16px;
  transition: all .3s;
  display: block;
}

.plyr__menu__container .plyr__control[role="menuitemradio"]:after {
  opacity: 0;
  background: #fff;
  border: 0;
  width: 6px;
  height: 6px;
  transition: transform .3s, opacity .3s;
  top: 50%;
  left: 12px;
  transform: translateY(-50%)scale(0);
}

.plyr__menu__container .plyr__control[role="menuitemradio"][aria-checked="true"]:before {
  background: #00b2ff;
  background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
}

.plyr__menu__container .plyr__control[role="menuitemradio"][aria-checked="true"]:after {
  opacity: 1;
  transform: translateY(-50%)scale(1);
}

.plyr__menu__container .plyr__control[role="menuitemradio"]:focus-visible:before, .plyr__menu__container .plyr__control[role="menuitemradio"]:hover:before {
  background: #23282f1a;
}

.plyr__menu__container .plyr__menu__value {
  margin-left: auto;
  margin-right: -5px;
  margin-right: calc(var(--plyr-control-spacing, 10px) * .7 * -1 - -2px);
  padding-left: 24.5px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * .7 * 3.5);
  pointer-events: none;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.plyr--full-ui input[type="range"] {
  appearance: none;
  border-radius: 26px;
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  color: var(--plyr-range-fill-background, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  height: 19px;
  height: calc(var(--plyr-range-thumb-active-shadow-width, 3px) * 2 + var(--plyr-range-thumb-height, 13px));
  background: none;
  border: 0;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  transition: box-shadow .3s;
  display: block;
}

.plyr--full-ui input[type="range"]::-webkit-slider-runnable-track {
  background: linear-gradient(90deg, currentColor 0, #0000 0);
  background-image: linear-gradient(to right, currentColor var(--value, 0), #0000 var(--value, 0));
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  user-select: none;
  border: 0;
  transition: box-shadow .3s;
}

.plyr--full-ui input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  box-shadow: 0 1px 1px #23282f26, 0 0 0 1px #23282f33;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px #23282f26, 0 0 0 1px #23282f33);
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  margin-top: -4px;
  margin-top: calc((var(--plyr-range-thumb-height, 13px)  - var(--plyr-range-track-height, 5px)) / 2 * -1);
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
  border: 0;
  border-radius: 100%;
  transition: all .2s;
  position: relative;
}

.plyr--full-ui input[type="range"]::-moz-range-track {
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  user-select: none;
  background: none;
  border: 0;
  transition: box-shadow .3s;
}

.plyr--full-ui input[type="range"]::-moz-range-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  box-shadow: 0 1px 1px #23282f26, 0 0 0 1px #23282f33;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px #23282f26, 0 0 0 1px #23282f33);
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
  border: 0;
  border-radius: 100%;
  transition: all .2s;
  position: relative;
}

.plyr--full-ui input[type="range"]::-moz-range-progress {
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  background: currentColor;
}

.plyr--full-ui input[type="range"]::-ms-track {
  color: #0000;
}

.plyr--full-ui input[type="range"]::-ms-fill-upper {
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  user-select: none;
  background: none;
  border: 0;
  transition: box-shadow .3s;
}

.plyr--full-ui input[type="range"]::-ms-track {
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  user-select: none;
  background: none;
  border: 0;
  transition: box-shadow .3s;
}

.plyr--full-ui input[type="range"]::-ms-fill-lower {
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  user-select: none;
  background: currentColor;
  border: 0;
  transition: box-shadow .3s;
}

.plyr--full-ui input[type="range"]::-ms-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  box-shadow: 0 1px 1px #23282f26, 0 0 0 1px #23282f33;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px #23282f26, 0 0 0 1px #23282f33);
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
  border: 0;
  border-radius: 100%;
  margin-top: 0;
  transition: all .2s;
  position: relative;
}

.plyr--full-ui input[type="range"]::-ms-tooltip {
  display: none;
}

.plyr--full-ui input[type="range"]::-moz-focus-outer {
  border: 0;
}

.plyr--full-ui input[type="range"]:focus {
  outline: 0;
}

.plyr--full-ui input[type="range"]:focus-visible::-webkit-slider-runnable-track {
  outline: 2px dashed #00b2ff;
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  outline-offset: 2px;
}

.plyr--full-ui input[type="range"]:focus-visible::-moz-range-track {
  outline: 2px dashed #00b2ff;
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  outline-offset: 2px;
}

.plyr--full-ui input[type="range"]:focus-visible::-ms-track {
  outline: 2px dashed #00b2ff;
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  outline-offset: 2px;
}

.plyr__poster {
  background-color: #000;
  background-color: var(--plyr-video-background, var(--plyr-video-background, #000));
  opacity: 0;
  z-index: 1;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  transition: opacity .2s;
  position: absolute;
  top: 0;
  left: 0;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster {
  display: none;
}

.plyr__time {
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__time + .plyr__time:before {
  content: "⁄";
  margin-right: 10px;
  margin-right: var(--plyr-control-spacing, 10px);
}

@media (width <= 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}

.plyr__tooltip {
  background: #fff;
  background: var(--plyr-tooltip-background, #fff);
  border-radius: 5px;
  border-radius: var(--plyr-tooltip-radius, 5px);
  box-shadow: 0 1px 2px #00000026;
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px #00000026);
  color: var(--plyr-tooltip-color, #4a5464);
  font-size: 13px;
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  margin-bottom: 10px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: 5px 7.5px;
  padding: calc(var(--plyr-control-spacing, 10px) / 2) calc(var(--plyr-control-spacing, 10px) / 2 * 1.5);
  pointer-events: none;
  transform-origin: 50% 100%;
  white-space: nowrap;
  z-index: 2;
  line-height: 1.3;
  transition: transform .2s .1s, opacity .2s .1s;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 10px)scale(.8);
}

.plyr__tooltip:before {
  border-left: 4px solid #0000;
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid #0000;
  border-right: 4px solid #0000;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid #0000;
  border-top: 4px solid #fff;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, #fff);
  bottom: -4px;
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  z-index: 2;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.plyr .plyr__control:focus-visible .plyr__tooltip, .plyr .plyr__control:hover .plyr__tooltip, .plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%)scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  transform-origin: 0 100%;
  left: 0;
  transform: translateY(10px)scale(.8);
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip:before, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip:before {
  left: 16px;
  left: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * .7);
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  transform-origin: 100% 100%;
  left: auto;
  right: 0;
  transform: translateY(10px)scale(.8);
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip:before {
  left: auto;
  right: 16px;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * .7);
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control:focus-visible .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child:focus-visible .plyr__tooltip, .plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:last-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:last-child:focus-visible .plyr__tooltip, .plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  transform: translate(0)scale(1);
}

.plyr__progress {
  left: 6.5px;
  left: calc(var(--plyr-range-thumb-height, 13px) * .5);
  margin-right: 13px;
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}

.plyr__progress input[type="range"], .plyr__progress__buffer {
  margin-left: -6.5px;
  margin-left: calc(var(--plyr-range-thumb-height, 13px) * -.5);
  margin-right: -6.5px;
  margin-right: calc(var(--plyr-range-thumb-height, 13px) * -.5);
  width: calc(100% + 13px);
  width: calc(100% + var(--plyr-range-thumb-height, 13px));
}

.plyr__progress input[type="range"] {
  z-index: 2;
  position: relative;
}

.plyr__progress .plyr__tooltip {
  overflow-wrap: break-word;
  max-width: 120px;
  left: 0;
}

.plyr__progress__buffer {
  -webkit-appearance: none;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  margin-top: -2.5px;
  margin-top: calc(var(--plyr-range-track-height, 5px) / 2 * -1);
  background: none;
  border: 0;
  border-radius: 100px;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 0;
}

.plyr__progress__buffer::-webkit-progress-bar {
  background: none;
}

.plyr__progress__buffer::-webkit-progress-value {
  min-width: 5px;
  min-width: var(--plyr-range-track-height, 5px);
  background: currentColor;
  border-radius: 100px;
  transition: width .2s;
}

.plyr__progress__buffer::-moz-progress-bar {
  min-width: 5px;
  min-width: var(--plyr-range-track-height, 5px);
  background: currentColor;
  border-radius: 100px;
  transition: width .2s;
}

.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  transition: width .2s;
}

.plyr--loading .plyr__progress__buffer {
  background-image: linear-gradient(-45deg, #23282f99 25%, #0000 0 50%, #23282f99 0 75%, #0000 0, #0000);
  background-image: linear-gradient(-45deg, var(--plyr-progress-loading-background, #23282f99) 25%, #0000 25%, #0000 50%, var(--plyr-progress-loading-background, #23282f99) 50%, var(--plyr-progress-loading-background, #23282f99) 75%, #0000 75%, #0000);
  background-repeat: repeat-x;
  background-size: 25px 25px;
  background-size: var(--plyr-progress-loading-size, 25px) var(--plyr-progress-loading-size, 25px);
  color: #0000;
  animation: 1s linear infinite plyr-progress;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: #ffffff40;
  background-color: var(--plyr-video-progress-buffered-background, #ffffff40);
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: #c1c8d199;
  background-color: var(--plyr-audio-progress-buffered-background, #c1c8d199);
}

.plyr__progress__marker {
  background-color: #fff;
  background-color: var(--plyr-progress-marker-background, #fff);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  width: 3px;
  width: var(--plyr-progress-marker-width, 3px);
  z-index: 3;
  border-radius: 1px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.plyr__volume {
  align-items: center;
  display: flex;
  position: relative;
}

.plyr__volume input[type="range"] {
  margin-left: 5px;
  margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
  margin-right: 5px;
  margin-right: calc(var(--plyr-control-spacing, 10px) / 2);
  z-index: 2;
  min-width: 60px;
  max-width: 90px;
  position: relative;
}

.plyr--audio {
  display: block;
}

.plyr--audio .plyr__controls {
  background: #fff;
  background: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: var(--plyr-audio-control-color, #4a5464);
  padding: 10px;
  padding: var(--plyr-control-spacing, 10px);
}

.plyr--audio .plyr__control:focus-visible, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded="true"] {
  background: #00b2ff;
  background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  color: var(--plyr-audio-control-color-hover, #fff);
}

.plyr--full-ui.plyr--audio input[type="range"]::-webkit-slider-runnable-track {
  background-color: #c1c8d199;
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, #c1c8d199));
}

.plyr--full-ui.plyr--audio input[type="range"]::-moz-range-track {
  background-color: #c1c8d199;
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, #c1c8d199));
}

.plyr--full-ui.plyr--audio input[type="range"]::-ms-track {
  background-color: #c1c8d199;
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, #c1c8d199));
}

.plyr--full-ui.plyr--audio input[type="range"]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px #23282f26, 0 0 0 1px #23282f33, 0 0 0 3px #23282f1a;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px #23282f26, 0 0 0 1px #23282f33), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, #23282f1a);
}

.plyr--full-ui.plyr--audio input[type="range"]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px #23282f26, 0 0 0 1px #23282f33, 0 0 0 3px #23282f1a;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px #23282f26, 0 0 0 1px #23282f33), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, #23282f1a);
}

.plyr--full-ui.plyr--audio input[type="range"]:active::-ms-thumb {
  box-shadow: 0 1px 1px #23282f26, 0 0 0 1px #23282f33, 0 0 0 3px #23282f1a;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px #23282f26, 0 0 0 1px #23282f33), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, #23282f1a);
}

.plyr--audio .plyr__progress__buffer {
  color: var(--plyr-audio-progress-buffered-background, #c1c8d199);
}

.plyr--video {
  overflow: hidden;
}

.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: #000;
  background: var(--plyr-video-background, var(--plyr-video-background, #000));
  border-radius: inherit;
  width: 100%;
  height: 100%;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.plyr__video-embed, .plyr__video-wrapper--fixed-ratio {
  aspect-ratio: 16 / 9;
}

@supports not (aspect-ratio: 16/9) {
  .plyr__video-embed, .plyr__video-wrapper--fixed-ratio {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
}

.plyr__video-embed iframe, .plyr__video-wrapper--fixed-ratio video {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.2813%);
}

.plyr--video .plyr__controls {
  background: linear-gradient(#0000, #000000bf);
  background: var(--plyr-video-controls-background, linear-gradient(#0000, #000000bf));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  color: var(--plyr-video-control-color, #fff);
  padding: 5px;
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: 20px;
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  z-index: 3;
  transition: opacity .4s ease-in-out, transform .4s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

@media (width >= 480px) {
  .plyr--video .plyr__controls {
    padding: 10px;
    padding: var(--plyr-control-spacing, 10px);
    padding-top: 35px;
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}

.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr--video .plyr__control:focus-visible, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded="true"] {
  background: #00b2ff;
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  color: var(--plyr-video-control-color-hover, #fff);
}

.plyr__control--overlaid {
  background: #00b2ff;
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  color: var(--plyr-video-control-color, #fff);
  opacity: .9;
  padding: 15px;
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  z-index: 2;
  border: 0;
  border-radius: 100%;
  transition: all .3s;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.plyr__control--overlaid svg {
  position: relative;
  left: 2px;
}

.plyr__control--overlaid:focus, .plyr__control--overlaid:hover {
  opacity: 1;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui.plyr--video input[type="range"]::-webkit-slider-runnable-track {
  background-color: #ffffff40;
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, #ffffff40));
}

.plyr--full-ui.plyr--video input[type="range"]::-moz-range-track {
  background-color: #ffffff40;
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, #ffffff40));
}

.plyr--full-ui.plyr--video input[type="range"]::-ms-track {
  background-color: #ffffff40;
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, #ffffff40));
}

.plyr--full-ui.plyr--video input[type="range"]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px #23282f26, 0 0 0 1px #23282f33, 0 0 0 3px #ffffff80;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px #23282f26, 0 0 0 1px #23282f33), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, #ffffff80);
}

.plyr--full-ui.plyr--video input[type="range"]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px #23282f26, 0 0 0 1px #23282f33, 0 0 0 3px #ffffff80;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px #23282f26, 0 0 0 1px #23282f33), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, #ffffff80);
}

.plyr--full-ui.plyr--video input[type="range"]:active::-ms-thumb {
  box-shadow: 0 1px 1px #23282f26, 0 0 0 1px #23282f33, 0 0 0 3px #ffffff80;
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px #23282f26, 0 0 0 1px #23282f33), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, #ffffff80);
}

.plyr--video .plyr__progress__buffer {
  color: var(--plyr-video-progress-buffered-background, #ffffff40);
}

.plyr:fullscreen {
  background: #000;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0 !important;
}

.plyr:fullscreen video {
  height: 100%;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (width >= 1024px) {
  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}

.plyr--fullscreen-fallback {
  z-index: 10000000;
  background: #000;
  width: 100%;
  height: 100%;
  margin: 0;
  position: fixed;
  inset: 0;
  border-radius: 0 !important;
}

.plyr--fullscreen-fallback video {
  height: 100%;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}

@media (width >= 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}

.plyr__ads {
  border-radius: inherit;
  cursor: pointer;
  z-index: -1;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.plyr__ads > div, .plyr__ads > div iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.plyr__ads:after {
  bottom: 10px;
  bottom: var(--plyr-control-spacing, 10px);
  color: #fff;
  content: attr(data-badge-text);
  pointer-events: none;
  right: 10px;
  right: var(--plyr-control-spacing, 10px);
  z-index: 3;
  background: #23282f;
  border-radius: 2px;
  padding: 2px 6px;
  font-size: 11px;
  position: absolute;
}

.plyr__ads:empty:after {
  display: none;
}

.plyr__cues {
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  opacity: .8;
  z-index: 3;
  background: currentColor;
  width: 3px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.plyr__preview-thumb {
  background-color: #fff;
  background-color: var(--plyr-tooltip-background, #fff);
  border-radius: 8px;
  border-radius: var(--plyr-menu-radius, 8px);
  box-shadow: 0 1px 2px #00000026;
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px #00000026);
  margin-bottom: 10px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  pointer-events: none;
  transform-origin: 50% 100%;
  z-index: 2;
  padding: 3px;
  transition: transform .2s .1s, opacity .2s .1s;
  position: absolute;
  bottom: 100%;
  transform: translateY(10px)scale(.8);
}

.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0)scale(1);
}

.plyr__preview-thumb:before {
  border-left: 4px solid #0000;
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid #0000;
  border-right: 4px solid #0000;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid #0000;
  border-top: 4px solid #fff;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, #fff);
  bottom: -4px;
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: calc(50% + var(--preview-arrow-offset));
  z-index: 2;
  width: 0;
  position: absolute;
  transform: translateX(-50%);
}

.plyr__preview-thumb__image-container {
  border-radius: 7px;
  border-radius: calc(var(--plyr-menu-radius, 8px)  - 1px);
  z-index: 0;
  background: #c1c8d1;
  position: relative;
  overflow: hidden;
}

.plyr__preview-thumb__image-container img, .plyr__preview-thumb__image-container:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.plyr__preview-thumb__image-container:after {
  border-radius: inherit;
  content: "";
  pointer-events: none;
  box-shadow: inset 0 0 0 1px #00000026;
}

.plyr__preview-thumb__image-container img {
  max-width: none;
  max-height: none;
}

.plyr__preview-thumb__time-container {
  background: linear-gradient(#0000, #000000bf);
  background: var(--plyr-video-controls-background, linear-gradient(#0000, #000000bf));
  border-bottom-left-radius: 7px;
  border-bottom-left-radius: calc(var(--plyr-menu-radius, 8px)  - 1px);
  border-bottom-right-radius: 7px;
  border-bottom-right-radius: calc(var(--plyr-menu-radius, 8px)  - 1px);
  z-index: 3;
  padding: 20px 6px 6px;
  line-height: 1.1;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.plyr__preview-thumb__time-container span {
  color: #fff;
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__preview-scrubbing {
  filter: blur(1px);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: auto;
  transition: opacity .3s;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}

.plyr__preview-scrubbing img {
  object-fit: contain;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  position: absolute;
  top: 0;
  left: 0;
}

.plyr--no-transition {
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
}

.plyr [hidden] {
  display: none !important;
}

:root, [data-bs-theme="light"] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-primary-text-emphasis: #052c65;
  --bs-secondary-text-emphasis: #2b2f32;
  --bs-success-text-emphasis: #0a3622;
  --bs-info-text-emphasis: #055160;
  --bs-warning-text-emphasis: #664d03;
  --bs-danger-text-emphasis: #58151c;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #cfe2ff;
  --bs-secondary-bg-subtle: #e2e3e5;
  --bs-success-bg-subtle: #d1e7dd;
  --bs-info-bg-subtle: #cff4fc;
  --bs-warning-bg-subtle: #fff3cd;
  --bs-danger-bg-subtle: #f8d7da;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #9ec5fe;
  --bs-secondary-border-subtle: #c4c8cb;
  --bs-success-border-subtle: #a3cfbb;
  --bs-info-border-subtle: #9eeaf9;
  --bs-warning-border-subtle: #ffe69c;
  --bs-danger-border-subtle: #f1aeb5;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, #ffffff26, #fff0);
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: #212529bf;
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: #21252980;
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #0a58ca;
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: #fff3cd;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: #0000002d;
  --bs-border-radius: .375rem;
  --bs-border-radius-sm: .25rem;
  --bs-border-radius-lg: .5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 .5rem 1rem #00000026;
  --bs-box-shadow-sm: 0 .125rem .25rem #00000013;
  --bs-box-shadow-lg: 0 1rem 3rem #0000002d;
  --bs-box-shadow-inset: inset 0 1px 2px #00000013;
  --bs-focus-ring-width: .25rem;
  --bs-focus-ring-opacity: .25;
  --bs-focus-ring-color: #0d6efd40;
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}

[data-bs-theme="dark"] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: #dee2e6bf;
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: #dee2e680;
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #6ea8fe;
  --bs-secondary-text-emphasis: #a7acb1;
  --bs-success-text-emphasis: #75b798;
  --bs-info-text-emphasis: #6edff6;
  --bs-warning-text-emphasis: #ffda6a;
  --bs-danger-text-emphasis: #ea868f;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #031633;
  --bs-secondary-bg-subtle: #161719;
  --bs-success-bg-subtle: #051b11;
  --bs-info-bg-subtle: #032830;
  --bs-warning-bg-subtle: #332701;
  --bs-danger-bg-subtle: #2c0b0e;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #084298;
  --bs-secondary-border-subtle: #41464b;
  --bs-success-border-subtle: #0f5132;
  --bs-info-border-subtle: #087990;
  --bs-warning-border-subtle: #997404;
  --bs-danger-border-subtle: #842029;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6ea8fe;
  --bs-link-hover-color: #8bb9fe;
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: #664d03;
  --bs-border-color: #495057;
  --bs-border-color-translucent: #ffffff26;
  --bs-form-valid-color: #75b798;
  --bs-form-valid-border-color: #75b798;
  --bs-form-invalid-color: #ea868f;
  --bs-form-invalid-border-color: #ea868f;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: #0000;
  margin: 0;
}

hr {
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: .25;
  margin: 1rem 0;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  color: var(--bs-heading-color);
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (width >= 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + .9vw);
}

@media (width >= 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + .6vw);
}

@media (width >= 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + .3vw);
}

@media (width >= 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  cursor: help;
  text-decoration-skip-ink: none;
  text-decoration: underline dotted;
}

address {
  font-style: normal;
  line-height: inherit;
  margin-bottom: 1rem;
}

ol, ul {
  padding-left: 2rem;
}

ol, ul, dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol, ul ul, ol ul, ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b, strong {
  font-weight: bolder;
}

small, .small {
  font-size: .875em;
}

mark, .mark {
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
  padding: .1875em;
}

sub, sup {
  vertical-align: baseline;
  font-size: .75em;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}

a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre, code, kbd, samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .875em;
  display: block;
  overflow: auto;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  color: var(--bs-code-color);
  word-wrap: break-word;
  font-size: .875em;
}

a > code {
  color: inherit;
}

kbd {
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: .25rem;
  padding: .1875rem .375rem;
  font-size: .875em;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img, svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  color: var(--bs-secondary-color);
  text-align: left;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead, tbody, tfoot, tr, td, th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

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

button, select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

textarea {
  resize: vertical;
}

fieldset {
  border: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
}

legend {
  float: left;
  width: 100%;
  line-height: inherit;
  margin-bottom: .5rem;
  padding: 0;
  font-size: calc(1.275rem + .3vw);
}

@media (width >= 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-datetime-edit-text {
  padding: 0;
}

::-webkit-datetime-edit-minute {
  padding: 0;
}

::-webkit-datetime-edit-hour-field {
  padding: 0;
}

::-webkit-datetime-edit-day-field {
  padding: 0;
}

::-webkit-datetime-edit-month-field {
  padding: 0;
}

::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button {
  cursor: pointer;
  filter: grayscale();
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  cursor: pointer;
  display: list-item;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (width >= 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (width >= 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (width >= 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (width >= 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (width >= 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (width >= 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled, .list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: .5rem;
}

.initialism {
  text-transform: uppercase;
  font-size: .875em;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  color: #6c757d;
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: .875em;
}

.blockquote-footer:before {
  content: "— ";
}

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

.img-thumbnail {
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  height: auto;
  padding: .25rem;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: .5rem;
  line-height: 1;
}

.figure-caption {
  color: var(--bs-secondary-color);
  font-size: .875em;
}

.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-left: auto;
  margin-right: auto;
}

@media (width >= 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}

@media (width >= 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}

@media (width >= 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}

@media (width >= 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}

@media (width >= 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}

:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
  flex-wrap: wrap;
  display: flex;
}

.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  flex-shrink: 0;
}

.col {
  flex: 1 0 0;
}

.row-cols-auto > * {
  flex: none;
  width: auto;
}

.row-cols-1 > * {
  flex: none;
  width: 100%;
}

.row-cols-2 > * {
  flex: none;
  width: 50%;
}

.row-cols-3 > * {
  flex: none;
  width: 33.3333%;
}

.row-cols-4 > * {
  flex: none;
  width: 25%;
}

.row-cols-5 > * {
  flex: none;
  width: 20%;
}

.row-cols-6 > * {
  flex: none;
  width: 16.6667%;
}

.col-auto {
  flex: none;
  width: auto;
}

.col-1 {
  flex: none;
  width: 8.33333%;
}

.col-2 {
  flex: none;
  width: 16.6667%;
}

.col-3 {
  flex: none;
  width: 25%;
}

.col-4 {
  flex: none;
  width: 33.3333%;
}

.col-5 {
  flex: none;
  width: 41.6667%;
}

.col-6 {
  flex: none;
  width: 50%;
}

.col-7 {
  flex: none;
  width: 58.3333%;
}

.col-8 {
  flex: none;
  width: 66.6667%;
}

.col-9 {
  flex: none;
  width: 75%;
}

.col-10 {
  flex: none;
  width: 83.3333%;
}

.col-11 {
  flex: none;
  width: 91.6667%;
}

.col-12 {
  flex: none;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.6667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333%;
}

.offset-5 {
  margin-left: 41.6667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333%;
}

.offset-8 {
  margin-left: 66.6667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333%;
}

.offset-11 {
  margin-left: 91.6667%;
}

.g-0, .gx-0 {
  --bs-gutter-x: 0;
}

.g-0, .gy-0 {
  --bs-gutter-y: 0;
}

.g-1, .gx-1 {
  --bs-gutter-x: .25rem;
}

.g-1, .gy-1 {
  --bs-gutter-y: .25rem;
}

.g-2, .gx-2 {
  --bs-gutter-x: .5rem;
}

.g-2, .gy-2 {
  --bs-gutter-y: .5rem;
}

.g-3, .gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3, .gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4, .gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4, .gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5, .gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5, .gy-5 {
  --bs-gutter-y: 3rem;
}

@media (width >= 576px) {
  .col-sm {
    flex: 1 0 0;
  }

  .row-cols-sm-auto > * {
    flex: none;
    width: auto;
  }

  .row-cols-sm-1 > * {
    flex: none;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: none;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: none;
    width: 33.3333%;
  }

  .row-cols-sm-4 > * {
    flex: none;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: none;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: none;
    width: 16.6667%;
  }

  .col-sm-auto {
    flex: none;
    width: auto;
  }

  .col-sm-1 {
    flex: none;
    width: 8.33333%;
  }

  .col-sm-2 {
    flex: none;
    width: 16.6667%;
  }

  .col-sm-3 {
    flex: none;
    width: 25%;
  }

  .col-sm-4 {
    flex: none;
    width: 33.3333%;
  }

  .col-sm-5 {
    flex: none;
    width: 41.6667%;
  }

  .col-sm-6 {
    flex: none;
    width: 50%;
  }

  .col-sm-7 {
    flex: none;
    width: 58.3333%;
  }

  .col-sm-8 {
    flex: none;
    width: 66.6667%;
  }

  .col-sm-9 {
    flex: none;
    width: 75%;
  }

  .col-sm-10 {
    flex: none;
    width: 83.3333%;
  }

  .col-sm-11 {
    flex: none;
    width: 91.6667%;
  }

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

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.6667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333%;
  }

  .offset-sm-5 {
    margin-left: 41.6667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333%;
  }

  .offset-sm-8 {
    margin-left: 66.6667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333%;
  }

  .offset-sm-11 {
    margin-left: 91.6667%;
  }

  .g-sm-0, .gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0, .gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1, .gx-sm-1 {
    --bs-gutter-x: .25rem;
  }

  .g-sm-1, .gy-sm-1 {
    --bs-gutter-y: .25rem;
  }

  .g-sm-2, .gx-sm-2 {
    --bs-gutter-x: .5rem;
  }

  .g-sm-2, .gy-sm-2 {
    --bs-gutter-y: .5rem;
  }

  .g-sm-3, .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3, .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4, .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4, .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5, .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5, .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (width >= 768px) {
  .col-md {
    flex: 1 0 0;
  }

  .row-cols-md-auto > * {
    flex: none;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: none;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: none;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: none;
    width: 33.3333%;
  }

  .row-cols-md-4 > * {
    flex: none;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: none;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: none;
    width: 16.6667%;
  }

  .col-md-auto {
    flex: none;
    width: auto;
  }

  .col-md-1 {
    flex: none;
    width: 8.33333%;
  }

  .col-md-2 {
    flex: none;
    width: 16.6667%;
  }

  .col-md-3 {
    flex: none;
    width: 25%;
  }

  .col-md-4 {
    flex: none;
    width: 33.3333%;
  }

  .col-md-5 {
    flex: none;
    width: 41.6667%;
  }

  .col-md-6 {
    flex: none;
    width: 50%;
  }

  .col-md-7 {
    flex: none;
    width: 58.3333%;
  }

  .col-md-8 {
    flex: none;
    width: 66.6667%;
  }

  .col-md-9 {
    flex: none;
    width: 75%;
  }

  .col-md-10 {
    flex: none;
    width: 83.3333%;
  }

  .col-md-11 {
    flex: none;
    width: 91.6667%;
  }

  .col-md-12 {
    flex: none;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.6667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333%;
  }

  .offset-md-5 {
    margin-left: 41.6667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333%;
  }

  .offset-md-8 {
    margin-left: 66.6667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333%;
  }

  .offset-md-11 {
    margin-left: 91.6667%;
  }

  .g-md-0, .gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0, .gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1, .gx-md-1 {
    --bs-gutter-x: .25rem;
  }

  .g-md-1, .gy-md-1 {
    --bs-gutter-y: .25rem;
  }

  .g-md-2, .gx-md-2 {
    --bs-gutter-x: .5rem;
  }

  .g-md-2, .gy-md-2 {
    --bs-gutter-y: .5rem;
  }

  .g-md-3, .gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3, .gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4, .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4, .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5, .gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5, .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (width >= 992px) {
  .col-lg {
    flex: 1 0 0;
  }

  .row-cols-lg-auto > * {
    flex: none;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: none;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: none;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: none;
    width: 33.3333%;
  }

  .row-cols-lg-4 > * {
    flex: none;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: none;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: none;
    width: 16.6667%;
  }

  .col-lg-auto {
    flex: none;
    width: auto;
  }

  .col-lg-1 {
    flex: none;
    width: 8.33333%;
  }

  .col-lg-2 {
    flex: none;
    width: 16.6667%;
  }

  .col-lg-3 {
    flex: none;
    width: 25%;
  }

  .col-lg-4 {
    flex: none;
    width: 33.3333%;
  }

  .col-lg-5 {
    flex: none;
    width: 41.6667%;
  }

  .col-lg-6 {
    flex: none;
    width: 50%;
  }

  .col-lg-7 {
    flex: none;
    width: 58.3333%;
  }

  .col-lg-8 {
    flex: none;
    width: 66.6667%;
  }

  .col-lg-9 {
    flex: none;
    width: 75%;
  }

  .col-lg-10 {
    flex: none;
    width: 83.3333%;
  }

  .col-lg-11 {
    flex: none;
    width: 91.6667%;
  }

  .col-lg-12 {
    flex: none;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.6667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333%;
  }

  .offset-lg-5 {
    margin-left: 41.6667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333%;
  }

  .offset-lg-8 {
    margin-left: 66.6667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333%;
  }

  .offset-lg-11 {
    margin-left: 91.6667%;
  }

  .g-lg-0, .gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0, .gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1, .gx-lg-1 {
    --bs-gutter-x: .25rem;
  }

  .g-lg-1, .gy-lg-1 {
    --bs-gutter-y: .25rem;
  }

  .g-lg-2, .gx-lg-2 {
    --bs-gutter-x: .5rem;
  }

  .g-lg-2, .gy-lg-2 {
    --bs-gutter-y: .5rem;
  }

  .g-lg-3, .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3, .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4, .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4, .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5, .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5, .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (width >= 1200px) {
  .col-xl {
    flex: 1 0 0;
  }

  .row-cols-xl-auto > * {
    flex: none;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: none;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: none;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: none;
    width: 33.3333%;
  }

  .row-cols-xl-4 > * {
    flex: none;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: none;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: none;
    width: 16.6667%;
  }

  .col-xl-auto {
    flex: none;
    width: auto;
  }

  .col-xl-1 {
    flex: none;
    width: 8.33333%;
  }

  .col-xl-2 {
    flex: none;
    width: 16.6667%;
  }

  .col-xl-3 {
    flex: none;
    width: 25%;
  }

  .col-xl-4 {
    flex: none;
    width: 33.3333%;
  }

  .col-xl-5 {
    flex: none;
    width: 41.6667%;
  }

  .col-xl-6 {
    flex: none;
    width: 50%;
  }

  .col-xl-7 {
    flex: none;
    width: 58.3333%;
  }

  .col-xl-8 {
    flex: none;
    width: 66.6667%;
  }

  .col-xl-9 {
    flex: none;
    width: 75%;
  }

  .col-xl-10 {
    flex: none;
    width: 83.3333%;
  }

  .col-xl-11 {
    flex: none;
    width: 91.6667%;
  }

  .col-xl-12 {
    flex: none;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.6667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333%;
  }

  .offset-xl-5 {
    margin-left: 41.6667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333%;
  }

  .offset-xl-8 {
    margin-left: 66.6667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333%;
  }

  .offset-xl-11 {
    margin-left: 91.6667%;
  }

  .g-xl-0, .gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0, .gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1, .gx-xl-1 {
    --bs-gutter-x: .25rem;
  }

  .g-xl-1, .gy-xl-1 {
    --bs-gutter-y: .25rem;
  }

  .g-xl-2, .gx-xl-2 {
    --bs-gutter-x: .5rem;
  }

  .g-xl-2, .gy-xl-2 {
    --bs-gutter-y: .5rem;
  }

  .g-xl-3, .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3, .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4, .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4, .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5, .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5, .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (width >= 1400px) {
  .col-xxl {
    flex: 1 0 0;
  }

  .row-cols-xxl-auto > * {
    flex: none;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    flex: none;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: none;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: none;
    width: 33.3333%;
  }

  .row-cols-xxl-4 > * {
    flex: none;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: none;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: none;
    width: 16.6667%;
  }

  .col-xxl-auto {
    flex: none;
    width: auto;
  }

  .col-xxl-1 {
    flex: none;
    width: 8.33333%;
  }

  .col-xxl-2 {
    flex: none;
    width: 16.6667%;
  }

  .col-xxl-3 {
    flex: none;
    width: 25%;
  }

  .col-xxl-4 {
    flex: none;
    width: 33.3333%;
  }

  .col-xxl-5 {
    flex: none;
    width: 41.6667%;
  }

  .col-xxl-6 {
    flex: none;
    width: 50%;
  }

  .col-xxl-7 {
    flex: none;
    width: 58.3333%;
  }

  .col-xxl-8 {
    flex: none;
    width: 66.6667%;
  }

  .col-xxl-9 {
    flex: none;
    width: 75%;
  }

  .col-xxl-10 {
    flex: none;
    width: 83.3333%;
  }

  .col-xxl-11 {
    flex: none;
    width: 91.6667%;
  }

  .col-xxl-12 {
    flex: none;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.3333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.3333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.3333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6667%;
  }

  .g-xxl-0, .gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0, .gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1, .gx-xxl-1 {
    --bs-gutter-x: .25rem;
  }

  .g-xxl-1, .gy-xxl-1 {
    --bs-gutter-y: .25rem;
  }

  .g-xxl-2, .gx-xxl-2 {
    --bs-gutter-x: .5rem;
  }

  .g-xxl-2, .gy-xxl-2 {
    --bs-gutter-y: .5rem;
  }

  .g-xxl-3, .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3, .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4, .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4, .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5, .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5, .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-emphasis-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), .05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), .1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), .075);
  vertical-align: top;
  border-color: var(--bs-table-border-color);
  width: 100%;
  margin-bottom: 1rem;
}

.table > :not(caption) > * > * {
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
  padding: .5rem;
}

.table > tbody {
  vertical-align: inherit;
}

.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: .25rem;
}

.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}

.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > *, .table-striped-columns > :not(caption) > tr > :nth-child(2n) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #cfe2ff;
  --bs-table-border-color: #a5b5cc;
  --bs-table-striped-bg: #c4d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe5;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #e2e3e5;
  --bs-table-border-color: #b4b6b7;
  --bs-table-striped-bg: #d6d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbcdce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #d1e7dd;
  --bs-table-border-color: #a7b9b1;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #cff4fc;
  --bs-table-border-color: #a5c4ca;
  --bs-table-striped-bg: #c4e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fff3cd;
  --bs-table-border-color: #ccc2a4;
  --bs-table-striped-bg: #f2e6c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dab9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece0be;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #f8d7da;
  --bs-table-border-color: #c6acae;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc1c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7c9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #c6c7c8;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: #4d5154;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

@media (width <= 575.98px) {
  .table-responsive-sm {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
}

@media (width <= 767.98px) {
  .table-responsive-md {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
}

@media (width <= 991.98px) {
  .table-responsive-lg {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
}

@media (width <= 1199.98px) {
  .table-responsive-xl {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
}

@media (width <= 1399.98px) {
  .table-responsive-xxl {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
}

.form-label {
  margin-bottom: .5rem;
}

.col-form-label {
  padding-top: calc(.375rem + var(--bs-border-width));
  padding-bottom: calc(.375rem + var(--bs-border-width));
  font-size: inherit;
  margin-bottom: 0;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(.5rem + var(--bs-border-width));
  padding-bottom: calc(.5rem + var(--bs-border-width));
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(.25rem + var(--bs-border-width));
  padding-bottom: calc(.25rem + var(--bs-border-width));
  font-size: .875rem;
}

.form-text {
  color: var(--bs-secondary-color);
  margin-top: .25rem;
  font-size: .875em;
}

.form-control {
  width: 100%;
  color: var(--bs-body-color);
  appearance: none;
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  background-clip: padding-box;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control[type="file"] {
  overflow: hidden;
}

.form-control[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem #0d6efd40;
}

.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0;
}

.form-control::-webkit-datetime-edit {
  padding: 0;
  display: block;
}

.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}

.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}

.form-control::file-selector-button {
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  margin: -.375rem -.75rem;
  border-radius: 0;
  margin-inline-end: .75rem;
  padding: .375rem .75rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}

.form-control-plaintext {
  width: 100%;
  color: var(--bs-body-color);
  border: solid #0000;
  border-width: var(--bs-border-width) 0;
  background-color: #0000;
  margin-bottom: 0;
  padding: .375rem 0;
  line-height: 1.5;
  display: block;
}

.form-control-plaintext:focus {
  outline: 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-left: 0;
  padding-right: 0;
}

.form-control-sm {
  min-height: calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));
  border-radius: var(--bs-border-radius-sm);
  padding: .25rem .5rem;
  font-size: .875rem;
}

.form-control-sm::file-selector-button {
  margin: -.25rem -.5rem;
  margin-inline-end: .5rem;
  padding: .25rem .5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  border-radius: var(--bs-border-radius-lg);
  padding: .5rem 1rem;
  font-size: 1.25rem;
}

.form-control-lg::file-selector-button {
  margin: -.5rem -1rem;
  margin-inline-end: 1rem;
  padding: .5rem 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));
}

textarea.form-control-sm {
  min-height: calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));
}

textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-control-color {
  width: 3rem;
  height: calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));
  padding: .375rem;
}

.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control-color::-moz-color-swatch {
  border-radius: var(--bs-border-radius);
  border: 0 !important;
}

.form-control-color::-webkit-color-swatch {
  border-radius: var(--bs-border-radius);
  border: 0 !important;
}

.form-control-color.form-control-sm {
  height: calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));
}

.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  width: 100%;
  color: var(--bs-body-color);
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  background-position: right .75rem center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  padding: .375rem 2.25rem .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}

.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem #0d6efd40;
}

.form-select[multiple], .form-select[size]:not([size="1"]) {
  background-image: none;
  padding-right: .75rem;
}

.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}

.form-select:-moz-focusring {
  color: #0000;
  text-shadow: 0 0 0 var(--bs-body-color);
}

.form-select-sm {
  border-radius: var(--bs-border-radius-sm);
  padding-top: .25rem;
  padding-bottom: .25rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.form-select-lg {
  border-radius: var(--bs-border-radius-lg);
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

[data-bs-theme="dark"] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-check {
  min-height: 1.5rem;
  margin-bottom: .125rem;
  padding-left: 1.5em;
  display: block;
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  text-align: right;
  padding-left: 0;
  padding-right: 1.5em;
}

.form-check-reverse .form-check-input {
  float: right;
  margin-left: 0;
  margin-right: -1.5em;
}

.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  vertical-align: top;
  appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  border: var(--bs-border-width) solid var(--bs-border-color);
  print-color-adjust: exact;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: .25em;
}

.form-check-input[type="checkbox"] {
  border-radius: .25em;
}

.form-check-input[type="radio"] {
  border-radius: 50%;
}

.form-check-input:active {
  filter: brightness(90%);
}

.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem #0d6efd40;
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.form-check-input:checked[type="checkbox"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type="radio"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input[type="checkbox"]:indeterminate {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: .5;
}

.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  cursor: default;
  opacity: .5;
}

.form-switch {
  padding-left: 2.5em;
}

.form-switch .form-check-input {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-image: var(--bs-form-switch-bg);
  background-position: 0;
  border-radius: 2em;
  width: 2em;
  margin-left: -2.5em;
  transition: background-position .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}

.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  background-position: 100%;
}

.form-switch.form-check-reverse {
  padding-left: 0;
  padding-right: 2.5em;
}

.form-switch.form-check-reverse .form-check-input {
  margin-left: 0;
  margin-right: -2.5em;
}

.form-check-inline {
  margin-right: 1rem;
  display: inline-block;
}

.btn-check {
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
  position: absolute;
}

.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: .65;
}

[data-bs-theme="dark"] .form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
}

.form-range {
  appearance: none;
  background-color: #0000;
  width: 100%;
  height: 1.5rem;
  padding: 0;
}

.form-range:focus {
  outline: 0;
}

.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem #0d6efd40;
}

.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem #0d6efd40;
}

.form-range::-moz-focus-outer {
  border: 0;
}

.form-range::-webkit-slider-thumb {
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  width: 1rem;
  height: 1rem;
  margin-top: -.25rem;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}

.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-webkit-slider-runnable-track {
  color: #0000;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: #0000;
  border-radius: 1rem;
  width: 100%;
  height: .5rem;
}

.form-range::-moz-range-thumb {
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  width: 1rem;
  height: 1rem;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}

.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-moz-range-track {
  color: #0000;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: #0000;
  border-radius: 1rem;
  width: 100%;
  height: .5rem;
}

.form-range:disabled {
  pointer-events: none;
}

.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}

.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}

.form-floating {
  position: relative;
}

.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  line-height: 1.25;
}

.form-floating > label {
  z-index: 2;
  max-width: 100%;
  height: 100%;
  color: rgba(var(--bs-body-color-rgb), .65);
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
  padding: 1rem .75rem;
  transition: opacity .1s ease-in-out, transform .1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}

.form-floating > .form-control, .form-floating > .form-control-plaintext {
  padding: 1rem .75rem;
}

.form-floating > .form-control::placeholder, .form-floating > .form-control-plaintext::placeholder {
  color: #0000;
}

.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown), .form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown), :-webkit-any(.form-floating > .form-control:-webkit-autofill, .form-floating > .form-control-plaintext:-webkit-autofill) {
  padding-top: 1.625rem;
  padding-bottom: .625rem;
}

.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown), .form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown), :is(.form-floating > .form-control:autofill, .form-floating > .form-control-plaintext:autofill) {
  padding-top: 1.625rem;
  padding-bottom: .625rem;
}

.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: .625rem;
  padding-left: .75rem;
}

.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-control-plaintext ~ label, .form-floating > .form-select ~ label {
  transform: scale(.85)translateY(-.5rem)translateX(.15rem);
}

.form-floating > .form-control:-webkit-autofill ~ label {
  transform: scale(.85)translateY(-.5rem)translateX(.15rem);
}

.form-floating > textarea:focus ~ label:after, .form-floating > textarea:not(:placeholder-shown) ~ label:after {
  z-index: -1;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
  height: 1.5em;
  position: absolute;
  inset: 1rem .375rem;
}

.form-floating > textarea:disabled ~ label:after {
  background-color: var(--bs-secondary-bg);
}

.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}

.form-floating > :disabled ~ label, .form-floating > .form-control:disabled ~ label {
  color: #6c757d;
}

.input-group {
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.input-group > .form-control, .input-group > .form-select, .input-group > .form-floating {
  flex: auto;
  width: 1%;
  min-width: 0;
  position: relative;
}

.input-group > .form-control:focus, .input-group > .form-select:focus, .input-group > .form-floating:focus-within {
  z-index: 5;
}

.input-group .btn {
  z-index: 2;
  position: relative;
}

.input-group .btn:focus {
  z-index: 5;
}

.input-group-text {
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  align-items: center;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
}

.input-group-lg > .form-control, .input-group-lg > .form-select, .input-group-lg > .input-group-text, .input-group-lg > .btn {
  border-radius: var(--bs-border-radius-lg);
  padding: .5rem 1rem;
  font-size: 1.25rem;
}

.input-group-sm > .form-control, .input-group-sm > .form-select, .input-group-sm > .input-group-text, .input-group-sm > .btn {
  border-radius: var(--bs-border-radius-sm);
  padding: .25rem .5rem;
  font-size: .875rem;
}

.input-group-lg > .form-select, .input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control, .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select, .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4), .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control, .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(-1 * var(--bs-border-width));
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .form-floating:not(:first-child) > .form-control, .input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  width: 100%;
  color: var(--bs-form-valid-color);
  margin-top: .25rem;
  font-size: .875em;
  display: none;
}

.valid-tooltip {
  z-index: 5;
  color: #fff;
  background-color: var(--bs-success);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  margin-top: .1rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  display: none;
  position: absolute;
  top: 100%;
}

.was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip, .is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: var(--bs-form-valid-border-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
  background-position: right calc(.375em + .1875rem) center;
  background-repeat: no-repeat;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
  padding-right: calc(1.5em + .75rem);
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), .25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  background-position: right calc(.375em + .1875rem) top calc(.375em + .1875rem);
  padding-right: calc(1.5em + .75rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: var(--bs-form-valid-border-color);
}

.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");
  background-position: right .75rem center, right 2.25rem center;
  background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem);
  padding-right: 4.125rem;
}

.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), .25);
}

.was-validated .form-control-color:valid, .form-control-color.is-valid {
  width: calc(1.5em + 3.75rem);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: var(--bs-form-valid-border-color);
}

.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: var(--bs-form-valid-color);
}

.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), .25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: var(--bs-form-valid-color);
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: .5em;
}

.was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid, .was-validated .input-group > .form-select:not(:focus):valid, .input-group > .form-select:not(:focus).is-valid, .was-validated .input-group > .form-floating:not(:focus-within):valid, .input-group > .form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.invalid-feedback {
  width: 100%;
  color: var(--bs-form-invalid-color);
  margin-top: .25rem;
  font-size: .875em;
  display: none;
}

.invalid-tooltip {
  z-index: 5;
  color: #fff;
  background-color: var(--bs-danger);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  margin-top: .1rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  display: none;
  position: absolute;
  top: 100%;
}

.was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip, .is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right calc(.375em + .1875rem) center;
  background-repeat: no-repeat;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
  padding-right: calc(1.5em + .75rem);
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  background-position: right calc(.375em + .1875rem) top calc(.375em + .1875rem);
  padding-right: calc(1.5em + .75rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}

.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right .75rem center, right 2.25rem center;
  background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem);
  padding-right: 4.125rem;
}

.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25);
}

.was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  width: calc(1.5em + 3.75rem);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: var(--bs-form-invalid-border-color);
}

.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: var(--bs-form-invalid-color);
}

.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: var(--bs-form-invalid-color);
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: .5em;
}

.was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid, .was-validated .input-group > .form-select:not(:focus):invalid, .input-group > .form-select:not(:focus).is-invalid, .was-validated .input-group > .form-floating:not(:focus-within):invalid, .input-group > .form-floating:not(:focus-within).is-invalid {
  z-index: 4;
}

.btn {
  --bs-btn-padding-x: .75rem;
  --bs-btn-padding-y: .375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 #ffffff26, 0 1px 1px #00000013;
  --bs-btn-disabled-opacity: .65;
  --bs-btn-focus-box-shadow: 0 0 0 .25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}

.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  box-shadow: var(--bs-btn-focus-box-shadow);
  outline: 0;
}

.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  box-shadow: var(--bs-btn-focus-box-shadow);
  outline: 0;
}

.btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}

.btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn-check:checked:focus-visible + .btn {
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #31d2f2;
  --bs-btn-hover-border-color: #25cff2;
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #3dd5f3;
  --bs-btn-active-border-color: #25cff2;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #424649;
  --bs-btn-hover-border-color: #373b3e;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4d5154;
  --bs-btn-active-border-color: #373b3e;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #198754;
  --bs-btn-hover-border-color: #198754;
  --bs-btn-focus-shadow-rgb: 25, 135, 84;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #198754;
  --bs-btn-active-border-color: #198754;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #198754;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #198754;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #0dcaf0;
  --bs-btn-hover-border-color: #0dcaf0;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #0dcaf0;
  --bs-btn-active-border-color: #0dcaf0;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #0dcaf0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0dcaf0;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

.btn-outline-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}

.btn-link:focus-visible {
  color: var(--bs-btn-color);
}

.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-lg, .btn-group-lg > .btn {
  --bs-btn-padding-y: .5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.btn-sm, .btn-group-sm > .btn {
  --bs-btn-padding-y: .25rem;
  --bs-btn-padding-x: .5rem;
  --bs-btn-font-size: .875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.fade {
  transition: opacity .15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  transition: height .35s;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width .35s;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup, .dropend, .dropdown, .dropstart, .dropup-center, .dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle:after {
  vertical-align: .255em;
  content: "";
  border: .3em solid #0000;
  border-top-color: currentColor;
  border-bottom: 0;
  margin-left: .255em;
  display: inline-block;
}

.dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: .5rem;
  --bs-dropdown-spacer: .125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius)  - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: .5rem;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: .25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: .5rem;
  z-index: var(--bs-dropdown-zindex);
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  background-color: var(--bs-dropdown-bg);
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
  background-clip: padding-box;
  margin: 0;
  list-style: none;
  display: none;
  position: absolute;
}

.dropdown-menu[data-bs-popper] {
  margin-top: var(--bs-dropdown-spacer);
  top: 100%;
  left: 0;
}

.dropdown-menu-start {
  --bs-position: start;
}

.dropdown-menu-start[data-bs-popper] {
  left: 0;
  right: auto;
}

.dropdown-menu-end {
  --bs-position: end;
}

.dropdown-menu-end[data-bs-popper] {
  left: auto;
  right: 0;
}

@media (width >= 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }

  .dropdown-menu-sm-start[data-bs-popper] {
    left: 0;
    right: auto;
  }

  .dropdown-menu-sm-end {
    --bs-position: end;
  }

  .dropdown-menu-sm-end[data-bs-popper] {
    left: auto;
    right: 0;
  }
}

@media (width >= 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }

  .dropdown-menu-md-start[data-bs-popper] {
    left: 0;
    right: auto;
  }

  .dropdown-menu-md-end {
    --bs-position: end;
  }

  .dropdown-menu-md-end[data-bs-popper] {
    left: auto;
    right: 0;
  }
}

@media (width >= 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }

  .dropdown-menu-lg-start[data-bs-popper] {
    left: 0;
    right: auto;
  }

  .dropdown-menu-lg-end {
    --bs-position: end;
  }

  .dropdown-menu-lg-end[data-bs-popper] {
    left: auto;
    right: 0;
  }
}

@media (width >= 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }

  .dropdown-menu-xl-start[data-bs-popper] {
    left: 0;
    right: auto;
  }

  .dropdown-menu-xl-end {
    --bs-position: end;
  }

  .dropdown-menu-xl-end[data-bs-popper] {
    left: auto;
    right: 0;
  }
}

@media (width >= 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }

  .dropdown-menu-xxl-start[data-bs-popper] {
    left: 0;
    right: auto;
  }

  .dropdown-menu-xxl-end {
    --bs-position: end;
  }

  .dropdown-menu-xxl-end[data-bs-popper] {
    left: auto;
    right: 0;
  }
}

.dropup .dropdown-menu[data-bs-popper] {
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
  top: auto;
  bottom: 100%;
}

.dropup .dropdown-toggle:after {
  vertical-align: .255em;
  content: "";
  border: .3em solid #0000;
  border-top: 0;
  border-bottom-color: currentColor;
  margin-left: .255em;
  display: inline-block;
}

.dropup .dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
  top: 0;
  left: 100%;
  right: auto;
}

.dropend .dropdown-toggle:after {
  vertical-align: .255em;
  content: "";
  border: .3em solid #0000;
  border-left-color: currentColor;
  border-right: 0;
  margin-left: .255em;
  display: inline-block;
}

.dropend .dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropend .dropdown-toggle:after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
  top: 0;
  left: auto;
  right: 100%;
}

.dropstart .dropdown-toggle:after {
  vertical-align: .255em;
  content: "";
  margin-left: .255em;
  display: none;
}

.dropstart .dropdown-toggle:before {
  vertical-align: .255em;
  content: "";
  border-top: .3em solid #0000;
  border-bottom: .3em solid #0000;
  border-right: .3em solid;
  margin-right: .255em;
  display: inline-block;
}

.dropstart .dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropstart .dropdown-toggle:before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
  overflow: hidden;
}

.dropdown-item {
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  white-space: nowrap;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
  background-color: #0000;
  border: 0;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}

.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  background-color: var(--bs-dropdown-link-active-bg);
  text-decoration: none;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: #0000;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
  margin-bottom: 0;
  font-size: .875rem;
  display: block;
}

.dropdown-item-text {
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
  display: block;
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: #ffffff26;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.btn-group, .btn-group-vertical {
  vertical-align: middle;
  display: inline-flex;
  position: relative;
}

.btn-group > .btn, .btn-group-vertical > .btn {
  flex: auto;
  position: relative;
}

.btn-group > .btn-check:checked + .btn, .btn-group > .btn-check:focus + .btn, .btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn-check:checked + .btn, .btn-group-vertical > .btn-check:focus + .btn, .btn-group-vertical > .btn:hover, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group {
  border-radius: var(--bs-border-radius);
}

.btn-group > :not(.btn-check:first-child) + .btn, .btn-group > .btn-group:not(:first-child) {
  margin-left: calc(-1 * var(--bs-border-width));
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .btn.dropdown-toggle-split:first-child, .btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:nth-child(n+3), .btn-group > :not(.btn-check) + .btn, .btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-left: .5625rem;
  padding-right: .5625rem;
}

.dropdown-toggle-split:after, .dropup .dropdown-toggle-split:after, .dropend .dropdown-toggle-split:after {
  margin-left: 0;
}

.dropstart .dropdown-toggle-split:before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-left: .375rem;
  padding-right: .375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-left: .75rem;
  padding-right: .75rem;
}

.btn-group-vertical {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: calc(-1 * var(--bs-border-width));
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:nth-child(n+3), .btn-group-vertical > :not(.btn-check) + .btn, .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: .5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
}

.nav-link {
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  background: none;
  border: 0;
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}

.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}

.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 .25rem #0d6efd40;
}

.nav-link.disabled, .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}

.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0d6efd;
}

.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: .125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}

.nav-underline .nav-link {
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
  padding-left: 0;
  padding-right: 0;
}

.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  border-bottom-color: currentColor;
}

.nav-underline .nav-link.active, .nav-underline .show > .nav-link {
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentColor;
  font-weight: 700;
}

.nav-fill > .nav-link, .nav-fill .nav-item {
  text-align: center;
  flex: auto;
}

.nav-justified > .nav-link, .nav-justified .nav-item {
  text-align: center;
  flex-grow: 1;
  flex-basis: 0;
}

.nav-fill .nav-item .nav-link, .nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: .5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), .65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), .8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), .3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: .3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-nav-link-padding-x: .5rem;
  --bs-navbar-toggler-padding-y: .25rem;
  --bs-navbar-toggler-padding-x: .75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), .15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: .25rem;
  --bs-navbar-toggler-transition: box-shadow .15s ease-in-out;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar > .container, .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl, .navbar > .container-xxl {
  flex-wrap: inherit;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  white-space: nowrap;
  text-decoration: none;
}

.navbar-brand:hover, .navbar-brand:focus {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: .5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}

.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  color: var(--bs-navbar-color);
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.navbar-text a, .navbar-text a:hover, .navbar-text a:focus {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  color: var(--bs-navbar-color);
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
  background-color: #0000;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}

.navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
  outline: 0;
  text-decoration: none;
}

.navbar-toggler-icon {
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (width >= 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-sm .navbar-collapse {
    flex-basis: auto;
    display: flex !important;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }

  .navbar-expand-sm .offcanvas {
    z-index: auto;
    flex-grow: 1;
    transition: none;
    position: static;
    visibility: visible !important;
    background-color: #0000 !important;
    border: 0 !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
  }

  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-sm .offcanvas .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
  }
}

@media (width >= 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-md .navbar-collapse {
    flex-basis: auto;
    display: flex !important;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }

  .navbar-expand-md .offcanvas {
    z-index: auto;
    flex-grow: 1;
    transition: none;
    position: static;
    visibility: visible !important;
    background-color: #0000 !important;
    border: 0 !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
  }

  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-md .offcanvas .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
  }
}

@media (width >= 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-lg .navbar-collapse {
    flex-basis: auto;
    display: flex !important;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }

  .navbar-expand-lg .offcanvas {
    z-index: auto;
    flex-grow: 1;
    transition: none;
    position: static;
    visibility: visible !important;
    background-color: #0000 !important;
    border: 0 !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
  }

  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-lg .offcanvas .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
  }
}

@media (width >= 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-xl .navbar-collapse {
    flex-basis: auto;
    display: flex !important;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }

  .navbar-expand-xl .offcanvas {
    z-index: auto;
    flex-grow: 1;
    transition: none;
    position: static;
    visibility: visible !important;
    background-color: #0000 !important;
    border: 0 !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
  }

  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-xl .offcanvas .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
  }
}

@media (width >= 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-xxl .navbar-collapse {
    flex-basis: auto;
    display: flex !important;
  }

  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }

  .navbar-expand-xxl .offcanvas {
    z-index: auto;
    flex-grow: 1;
    transition: none;
    position: static;
    visibility: visible !important;
    background-color: #0000 !important;
    border: 0 !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
  }

  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-xxl .offcanvas .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
  }
}

.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  flex-basis: auto;
  display: flex !important;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-expand .offcanvas {
  z-index: auto;
  flex-grow: 1;
  transition: none;
  position: static;
  visibility: visible !important;
  background-color: #0000 !important;
  border: 0 !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
}

.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}

.navbar-expand .offcanvas .offcanvas-body {
  flex-grow: 0;
  padding: 0;
  display: flex;
  overflow-y: visible;
}

.navbar-dark, .navbar[data-bs-theme="dark"] {
  --bs-navbar-color: #ffffff8c;
  --bs-navbar-hover-color: #ffffffbf;
  --bs-navbar-disabled-color: #ffffff40;
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: #ffffff1a;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-bs-theme="dark"] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: .5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius)  - (var(--bs-border-width)));
  --bs-card-cap-padding-y: .5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), .03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: var(--bs-body-bg);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: .75rem;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
  background-clip: border-box;
  flex-direction: column;
  display: flex;
  position: relative;
}

.card > hr {
  margin-left: 0;
  margin-right: 0;
}

.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
  border-top-width: 0;
}

.card > .list-group:last-child {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
  border-bottom-width: 0;
}

.card > .card-header + .list-group, .card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
  flex: auto;
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}

.card-subtitle {
  margin-top: calc(-.5 * var(--bs-card-title-spacer-y));
  color: var(--bs-card-subtitle-color);
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
  margin-bottom: 0;
}

.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}

.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
  position: absolute;
  inset: 0;
}

.card-img, .card-img-top, .card-img-bottom {
  width: 100%;
}

.card-img, .card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img, .card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}

@media (width >= 576px) {
  .card-group {
    flex-flow: wrap;
    display: flex;
  }

  .card-group > .card {
    flex: 1 0 0;
    margin-bottom: 0;
  }

  .card-group > .card + .card {
    border-left: 0;
    margin-left: 0;
  }

  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:last-child) > .card-img-top, .card-group > .card:not(:last-child) > .card-header {
    border-top-right-radius: 0;
  }

  .card-group > .card:not(:last-child) > .card-img-bottom, .card-group > .card:not(:last-child) > .card-footer {
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .card-group > .card:not(:first-child) > .card-img-top, .card-group > .card:not(:first-child) > .card-header {
    border-top-left-radius: 0;
  }

  .card-group > .card:not(:first-child) > .card-img-bottom, .card-group > .card:not(:first-child) > .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius)  - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform .2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgb%285.2, 44, 101.2%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: 0 0 0 .25rem #0d6efd40;
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.accordion-button {
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
  border: 0;
  border-radius: 0;
  align-items: center;
  font-size: 1rem;
  display: flex;
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed):after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button:after {
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
  flex-shrink: 0;
  margin-left: auto;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button:after {
    transition: none;
  }
}

.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  outline: 0;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}

.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:not(:first-of-type) {
  border-top: 0;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:last-of-type > .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush > .accordion-item {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.accordion-flush > .accordion-item:first-child {
  border-top: 0;
}

.accordion-flush > .accordion-item:last-child {
  border-bottom: 0;
}

.accordion-flush > .accordion-item > .accordion-collapse, .accordion-flush > .accordion-item > .accordion-header .accordion-button, .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 0;
}

[data-bs-theme="dark"] .accordion-button:after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
}

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  --bs-breadcrumb-item-padding-x: .5rem;
  --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
  flex-wrap: wrap;
  list-style: none;
  display: flex;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}

.breadcrumb-item + .breadcrumb-item:before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

.pagination {
  --bs-pagination-padding-x: .75rem;
  --bs-pagination-padding-y: .375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 .25rem #0d6efd40;
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  padding-left: 0;
  list-style: none;
  display: flex;
}

.page-link {
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  display: block;
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}

.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}

.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  box-shadow: var(--bs-pagination-focus-box-shadow);
  outline: 0;
}

.page-link.active, .active > .page-link {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}

.page-link.disabled, .disabled > .page-link {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
  margin-left: calc(-1 * var(--bs-border-width));
}

.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}

.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: .75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: var(--bs-border-radius-lg);
}

.pagination-sm {
  --bs-pagination-padding-x: .5rem;
  --bs-pagination-padding-y: .25rem;
  --bs-pagination-font-size: .875rem;
  --bs-pagination-border-radius: var(--bs-border-radius-sm);
}

.badge {
  --bs-badge-padding-x: .65em;
  --bs-badge-padding-y: .35em;
  --bs-badge-font-size: .75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: var(--bs-border-radius);
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
  line-height: 1;
  display: inline-block;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  --bs-alert-border-radius: var(--bs-border-radius);
  --bs-alert-link-color: inherit;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
  position: relative;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  color: var(--bs-alert-link-color);
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}

.alert-dismissible .btn-close {
  z-index: 2;
  padding: 1.25rem 1rem;
  position: absolute;
  top: 0;
  right: 0;
}

.alert-primary {
  --bs-alert-color: var(--bs-primary-text-emphasis);
  --bs-alert-bg: var(--bs-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-border-subtle);
  --bs-alert-link-color: var(--bs-primary-text-emphasis);
}

.alert-secondary {
  --bs-alert-color: var(--bs-secondary-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-text-emphasis);
}

.alert-success {
  --bs-alert-color: var(--bs-success-text-emphasis);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text-emphasis);
}

.alert-info {
  --bs-alert-color: var(--bs-info-text-emphasis);
  --bs-alert-bg: var(--bs-info-bg-subtle);
  --bs-alert-border-color: var(--bs-info-border-subtle);
  --bs-alert-link-color: var(--bs-info-text-emphasis);
}

.alert-warning {
  --bs-alert-color: var(--bs-warning-text-emphasis);
  --bs-alert-bg: var(--bs-warning-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-border-subtle);
  --bs-alert-link-color: var(--bs-warning-text-emphasis);
}

.alert-danger {
  --bs-alert-color: var(--bs-danger-text-emphasis);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text-emphasis);
}

.alert-light {
  --bs-alert-color: var(--bs-light-text-emphasis);
  --bs-alert-bg: var(--bs-light-bg-subtle);
  --bs-alert-border-color: var(--bs-light-border-subtle);
  --bs-alert-link-color: var(--bs-light-text-emphasis);
}

.alert-dark {
  --bs-alert-color: var(--bs-dark-text-emphasis);
  --bs-alert-bg: var(--bs-dark-bg-subtle);
  --bs-alert-border-color: var(--bs-dark-border-subtle);
  --bs-alert-link-color: var(--bs-dark-text-emphasis);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: var(--bs-progress-height);
  }
}

.progress, .progress-stacked {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: .75rem;
  --bs-progress-bg: var(--bs-secondary-bg);
  --bs-progress-border-radius: var(--bs-border-radius);
  --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #0d6efd;
  --bs-progress-bar-transition: width .6s ease;
  height: var(--bs-progress-height);
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
  display: flex;
  overflow: hidden;
}

.progress-bar {
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition);
  flex-direction: column;
  justify-content: center;
  display: flex;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, #ffffff26 25%, #0000 25% 50%, #ffffff26 50% 75%, #0000 75%, #0000);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-stacked > .progress {
  overflow: visible;
}

.progress-stacked > .progress > .progress-bar {
  width: 100%;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  --bs-list-group-color: var(--bs-body-color);
  --bs-list-group-bg: var(--bs-body-bg);
  --bs-list-group-border-color: var(--bs-border-color);
  --bs-list-group-border-width: var(--bs-border-width);
  --bs-list-group-border-radius: var(--bs-border-radius);
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: .5rem;
  --bs-list-group-action-color: var(--bs-secondary-color);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  --bs-list-group-action-active-color: var(--bs-body-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  --bs-list-group-disabled-color: var(--bs-secondary-color);
  --bs-list-group-disabled-bg: var(--bs-body-bg);
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #0d6efd;
  --bs-list-group-active-border-color: #0d6efd;
  border-radius: var(--bs-list-group-border-radius);
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.list-group-numbered {
  counter-reset: section;
  list-style-type: none;
}

.list-group-numbered > .list-group-item:before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item {
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  text-decoration: none;
  display: block;
  position: relative;
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}

.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}

.list-group-item-action:not(.active):hover, .list-group-item-action:not(.active):focus {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  background-color: var(--bs-list-group-action-hover-bg);
  text-decoration: none;
}

.list-group-item-action:not(.active):active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

.list-group-horizontal {
  flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

@media (width >= 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }

  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }

  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }

  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (width >= 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }

  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }

  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }

  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (width >= 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }

  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }

  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }

  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (width >= 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }

  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }

  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (width >= 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }

  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }

  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

.list-group-flush {
  border-radius: 0;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  --bs-list-group-color: var(--bs-primary-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
}

.list-group-item-secondary {
  --bs-list-group-color: var(--bs-secondary-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
}

.list-group-item-success {
  --bs-list-group-color: var(--bs-success-text-emphasis);
  --bs-list-group-bg: var(--bs-success-bg-subtle);
  --bs-list-group-border-color: var(--bs-success-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  --bs-list-group-active-color: var(--bs-success-bg-subtle);
  --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
}

.list-group-item-info {
  --bs-list-group-color: var(--bs-info-text-emphasis);
  --bs-list-group-bg: var(--bs-info-bg-subtle);
  --bs-list-group-border-color: var(--bs-info-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  --bs-list-group-active-color: var(--bs-info-bg-subtle);
  --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
}

.list-group-item-warning {
  --bs-list-group-color: var(--bs-warning-text-emphasis);
  --bs-list-group-bg: var(--bs-warning-bg-subtle);
  --bs-list-group-border-color: var(--bs-warning-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
}

.list-group-item-danger {
  --bs-list-group-color: var(--bs-danger-text-emphasis);
  --bs-list-group-bg: var(--bs-danger-bg-subtle);
  --bs-list-group-border-color: var(--bs-danger-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
}

.list-group-item-light {
  --bs-list-group-color: var(--bs-light-text-emphasis);
  --bs-list-group-bg: var(--bs-light-bg-subtle);
  --bs-list-group-border-color: var(--bs-light-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  --bs-list-group-active-color: var(--bs-light-bg-subtle);
  --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
}

.list-group-item-dark {
  --bs-list-group-color: var(--bs-dark-text-emphasis);
  --bs-list-group-bg: var(--bs-dark-bg-subtle);
  --bs-list-group-border-color: var(--bs-dark-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
}

.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: .5;
  --bs-btn-close-hover-opacity: .75;
  --bs-btn-close-focus-shadow: 0 0 0 .25rem #0d6efd40;
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: .25;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center / 1em auto no-repeat;
  filter: var(--bs-btn-close-filter);
  opacity: var(--bs-btn-close-opacity);
  border: 0;
  border-radius: .375rem;
  padding: .25em;
}

.btn-close:hover {
  color: var(--bs-btn-close-color);
  opacity: var(--bs-btn-close-hover-opacity);
  text-decoration: none;
}

.btn-close:focus {
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
  outline: 0;
}

.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}

.btn-close-white {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

:root, [data-bs-theme="light"] {
  --bs-btn-close-filter: ;
}

[data-bs-theme="dark"] {
  --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: .75rem;
  --bs-toast-padding-y: .5rem;
  --bs-toast-spacing: 1.5rem;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: .875rem;
  --bs-toast-color: ;
  --bs-toast-bg: rgba(var(--bs-body-bg-rgb), .85);
  --bs-toast-border-width: var(--bs-border-width);
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: var(--bs-border-radius);
  --bs-toast-box-shadow: var(--bs-box-shadow);
  --bs-toast-header-color: var(--bs-secondary-color);
  --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), .85);
  --bs-toast-header-border-color: var(--bs-border-color-translucent);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
  background-clip: padding-box;
}

.toast.showing {
  opacity: 0;
}

.toast:not(.show) {
  display: none;
}

.toast-container {
  --bs-toast-zindex: 1090;
  z-index: var(--bs-toast-zindex);
  pointer-events: none;
  width: max-content;
  max-width: 100%;
  position: absolute;
}

.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}

.toast-header {
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius)  - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius)  - var(--bs-toast-border-width));
  background-clip: padding-box;
  align-items: center;
  display: flex;
}

.toast-header .btn-close {
  margin-right: calc(-.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}

.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: .5rem;
  --bs-modal-color: var(--bs-body-color);
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg)  - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: .5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  z-index: var(--bs-modal-zindex);
  outline: 0;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden auto;
}

.modal-dialog {
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
  position: relative;
}

.modal.fade .modal-dialog {
  transition: transform .3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  min-height: calc(100% - var(--bs-modal-margin) * 2);
  align-items: center;
  display: flex;
}

.modal-content {
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  background-clip: padding-box;
  outline: 0;
  flex-direction: column;
  display: flex;
  position: relative;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: .5;
  z-index: var(--bs-backdrop-zindex);
  background-color: var(--bs-backdrop-bg);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
  flex-shrink: 0;
  align-items: center;
  display: flex;
}

.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
  margin-top: calc(-.5 * var(--bs-modal-header-padding-y));
  margin-right: calc(-.5 * var(--bs-modal-header-padding-x));
  margin-bottom: calc(-.5 * var(--bs-modal-header-padding-y));
  margin-left: auto;
}

.modal-title {
  line-height: var(--bs-modal-title-line-height);
  margin-bottom: 0;
}

.modal-body {
  padding: var(--bs-modal-padding);
  flex: auto;
  position: relative;
}

.modal-footer {
  padding: calc(var(--bs-modal-padding)  - var(--bs-modal-footer-gap) * .5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
  flex-wrap: wrap;
  flex-shrink: 0;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * .5);
}

@media (width >= 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }

  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-left: auto;
    margin-right: auto;
  }

  .modal-sm {
    --bs-modal-width: 300px;
  }
}

@media (width >= 992px) {
  .modal-lg, .modal-xl {
    --bs-modal-width: 800px;
  }
}

@media (width >= 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  border: 0;
  border-radius: 0;
  height: 100%;
}

.modal-fullscreen .modal-header, .modal-fullscreen .modal-footer {
  border-radius: 0;
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (width <= 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-sm-down .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%;
  }

  .modal-fullscreen-sm-down .modal-header, .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }

  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}

@media (width <= 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-md-down .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%;
  }

  .modal-fullscreen-md-down .modal-header, .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }

  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}

@media (width <= 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-lg-down .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%;
  }

  .modal-fullscreen-lg-down .modal-header, .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }

  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}

@media (width <= 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-xl-down .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%;
  }

  .modal-fullscreen-xl-down .modal-header, .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }

  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}

@media (width <= 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-xxl-down .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%;
  }

  .modal-fullscreen-xxl-down .modal-header, .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }

  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}

.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: .5rem;
  --bs-tooltip-padding-y: .25rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: .875rem;
  --bs-tooltip-color: var(--bs-body-bg);
  --bs-tooltip-bg: var(--bs-emphasis-color);
  --bs-tooltip-border-radius: var(--bs-border-radius);
  --bs-tooltip-opacity: .9;
  --bs-tooltip-arrow-width: .8rem;
  --bs-tooltip-arrow-height: .4rem;
  z-index: var(--bs-tooltip-zindex);
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  text-align: left;
  text-align: start;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
  text-decoration: none;
  display: block;
}

.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}

.tooltip .tooltip-arrow {
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
  display: block;
}

.tooltip .tooltip-arrow:before {
  content: "";
  border-style: solid;
  border-color: #0000;
  position: absolute;
}

.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow {
  bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}

.bs-tooltip-top .tooltip-arrow:before, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow:before {
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;
  border-top-color: var(--bs-tooltip-bg);
  top: -1px;
}

.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow {
  left: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}

.bs-tooltip-end .tooltip-arrow:before, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow:before {
  border-width: calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;
  border-right-color: var(--bs-tooltip-bg);
  right: -1px;
}

.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow {
  top: calc(-1 * var(--bs-tooltip-arrow-height));
}

.bs-tooltip-bottom .tooltip-arrow:before, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow:before {
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);
  border-bottom-color: var(--bs-tooltip-bg);
  bottom: -1px;
}

.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow {
  right: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}

.bs-tooltip-start .tooltip-arrow:before, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow:before {
  border-width: calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);
  border-left-color: var(--bs-tooltip-bg);
  left: -1px;
}

.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}

.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: .875rem;
  --bs-popover-bg: var(--bs-body-bg);
  --bs-popover-border-width: var(--bs-border-width);
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: var(--bs-border-radius-lg);
  --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg)  - var(--bs-border-width));
  --bs-popover-box-shadow: var(--bs-box-shadow);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: .5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: inherit;
  --bs-popover-header-bg: var(--bs-secondary-bg);
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: var(--bs-body-color);
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: .5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  text-align: left;
  text-align: start;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
  background-clip: padding-box;
  text-decoration: none;
  display: block;
}

.popover .popover-arrow {
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
  display: block;
}

.popover .popover-arrow:before, .popover .popover-arrow:after {
  content: "";
  border: 0 solid #0000;
  display: block;
  position: absolute;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height))  - var(--bs-popover-border-width));
}

.bs-popover-top > .popover-arrow:before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow:before, .bs-popover-top > .popover-arrow:after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow:after {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0;
}

.bs-popover-top > .popover-arrow:before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow:before {
  border-top-color: var(--bs-popover-arrow-border);
  bottom: 0;
}

.bs-popover-top > .popover-arrow:after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow:after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height))  - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}

.bs-popover-end > .popover-arrow:before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow:before, .bs-popover-end > .popover-arrow:after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow:after {
  border-width: calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0;
}

.bs-popover-end > .popover-arrow:before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow:before {
  border-right-color: var(--bs-popover-arrow-border);
  left: 0;
}

.bs-popover-end > .popover-arrow:after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow:after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height))  - var(--bs-popover-border-width));
}

.bs-popover-bottom > .popover-arrow:before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow:before, .bs-popover-bottom > .popover-arrow:after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow:after {
  border-width: 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height);
}

.bs-popover-bottom > .popover-arrow:before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow:before {
  border-bottom-color: var(--bs-popover-arrow-border);
  top: 0;
}

.bs-popover-bottom > .popover-arrow:after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow:after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}

.bs-popover-bottom .popover-header:before, .bs-popover-auto[data-popper-placement^="bottom"] .popover-header:before {
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height))  - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}

.bs-popover-start > .popover-arrow:before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow:before, .bs-popover-start > .popover-arrow:after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow:after {
  border-width: calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height);
}

.bs-popover-start > .popover-arrow:before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow:before {
  border-left-color: var(--bs-popover-arrow-border);
  right: 0;
}

.bs-popover-start > .popover-arrow:after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow:after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
  margin-bottom: 0;
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-inner:after {
  clear: both;
  content: "";
  display: block;
}

.carousel-item {
  float: left;
  backface-visibility: hidden;
  width: 100%;
  margin-right: -100%;
  transition: transform .6s ease-in-out;
  display: none;
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active, .carousel-item-next, .carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start), .active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end), .active.carousel-item-start {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-start, .carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s .6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start, .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev, .carousel-control-next {
  z-index: 1;
  color: #fff;
  text-align: center;
  width: 15%;
  filter: var(--bs-carousel-control-icon-filter);
  opacity: .5;
  background: none;
  border: 0;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: opacity .15s;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev, .carousel-control-next {
    transition: none;
  }
}

.carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus {
  color: #fff;
  opacity: .9;
  outline: 0;
  text-decoration: none;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 2rem;
  height: 2rem;
  display: inline-block;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
}

.carousel-indicators {
  z-index: 2;
  justify-content: center;
  margin-bottom: 1rem;
  margin-left: 15%;
  margin-right: 15%;
  padding: 0;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--bs-carousel-indicator-active-bg);
  opacity: .5;
  background-clip: padding-box;
  border: 10px solid #0000;
  border-left: 0;
  border-right: 0;
  flex: 0 auto;
  width: 30px;
  height: 3px;
  margin-left: 3px;
  margin-right: 3px;
  padding: 0;
  transition: opacity .6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  color: var(--bs-carousel-caption-color);
  text-align: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  position: absolute;
  bottom: 1.25rem;
  left: 15%;
  right: 15%;
}

.carousel-dark {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

:root, [data-bs-theme="light"] {
  --bs-carousel-indicator-active-bg: #fff;
  --bs-carousel-caption-color: #fff;
  --bs-carousel-control-icon-filter: ;
}

[data-bs-theme="dark"] {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

.spinner-grow, .spinner-border {
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -.125em;
  --bs-spinner-border-width: .25em;
  --bs-spinner-animation-speed: .75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: #0000;
}

.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: .2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: none;
  }
}

.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -.125em;
  --bs-spinner-animation-speed: .75s;
  --bs-spinner-animation-name: spinner-grow;
  opacity: 0;
  background-color: currentColor;
}

.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border, .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}

.offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: var(--bs-body-color);
  --bs-offcanvas-bg: var(--bs-body-bg);
  --bs-offcanvas-border-width: var(--bs-border-width);
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
  --bs-offcanvas-transition: transform .3s ease-in-out;
  --bs-offcanvas-title-line-height: 1.5;
}

@media (width <= 575.98px) {
  .offcanvas-sm {
    z-index: var(--bs-offcanvas-zindex);
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    transition: var(--bs-offcanvas-transition);
    background-clip: padding-box;
    outline: 0;
    flex-direction: column;
    display: flex;
    position: fixed;
    bottom: 0;
  }
}

@media (width <= 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}

@media (width <= 575.98px) {
  .offcanvas-sm.offcanvas-start {
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }

  .offcanvas-sm.offcanvas-end {
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    right: 0;
    transform: translateX(100%);
  }

  .offcanvas-sm.offcanvas-top {
    height: var(--bs-offcanvas-height);
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
  }

  .offcanvas-sm.offcanvas-bottom {
    height: var(--bs-offcanvas-height);
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    left: 0;
    right: 0;
    transform: translateY(100%);
  }

  .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
    transform: none;
  }

  .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
    visibility: visible;
  }
}

@media (width >= 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: #0000 !important;
  }

  .offcanvas-sm .offcanvas-header {
    display: none;
  }

  .offcanvas-sm .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
    background-color: #0000 !important;
  }
}

@media (width <= 767.98px) {
  .offcanvas-md {
    z-index: var(--bs-offcanvas-zindex);
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    transition: var(--bs-offcanvas-transition);
    background-clip: padding-box;
    outline: 0;
    flex-direction: column;
    display: flex;
    position: fixed;
    bottom: 0;
  }
}

@media (width <= 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}

@media (width <= 767.98px) {
  .offcanvas-md.offcanvas-start {
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }

  .offcanvas-md.offcanvas-end {
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    right: 0;
    transform: translateX(100%);
  }

  .offcanvas-md.offcanvas-top {
    height: var(--bs-offcanvas-height);
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
  }

  .offcanvas-md.offcanvas-bottom {
    height: var(--bs-offcanvas-height);
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    left: 0;
    right: 0;
    transform: translateY(100%);
  }

  .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
    transform: none;
  }

  .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
    visibility: visible;
  }
}

@media (width >= 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: #0000 !important;
  }

  .offcanvas-md .offcanvas-header {
    display: none;
  }

  .offcanvas-md .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
    background-color: #0000 !important;
  }
}

@media (width <= 991.98px) {
  .offcanvas-lg {
    z-index: var(--bs-offcanvas-zindex);
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    transition: var(--bs-offcanvas-transition);
    background-clip: padding-box;
    outline: 0;
    flex-direction: column;
    display: flex;
    position: fixed;
    bottom: 0;
  }
}

@media (width <= 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}

@media (width <= 991.98px) {
  .offcanvas-lg.offcanvas-start {
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }

  .offcanvas-lg.offcanvas-end {
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    right: 0;
    transform: translateX(100%);
  }

  .offcanvas-lg.offcanvas-top {
    height: var(--bs-offcanvas-height);
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
  }

  .offcanvas-lg.offcanvas-bottom {
    height: var(--bs-offcanvas-height);
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    left: 0;
    right: 0;
    transform: translateY(100%);
  }

  .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
    transform: none;
  }

  .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
    visibility: visible;
  }
}

@media (width >= 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: #0000 !important;
  }

  .offcanvas-lg .offcanvas-header {
    display: none;
  }

  .offcanvas-lg .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
    background-color: #0000 !important;
  }
}

@media (width <= 1199.98px) {
  .offcanvas-xl {
    z-index: var(--bs-offcanvas-zindex);
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    transition: var(--bs-offcanvas-transition);
    background-clip: padding-box;
    outline: 0;
    flex-direction: column;
    display: flex;
    position: fixed;
    bottom: 0;
  }
}

@media (width <= 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}

@media (width <= 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }

  .offcanvas-xl.offcanvas-end {
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    right: 0;
    transform: translateX(100%);
  }

  .offcanvas-xl.offcanvas-top {
    height: var(--bs-offcanvas-height);
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
  }

  .offcanvas-xl.offcanvas-bottom {
    height: var(--bs-offcanvas-height);
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    left: 0;
    right: 0;
    transform: translateY(100%);
  }

  .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
    transform: none;
  }

  .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
    visibility: visible;
  }
}

@media (width >= 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: #0000 !important;
  }

  .offcanvas-xl .offcanvas-header {
    display: none;
  }

  .offcanvas-xl .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
    background-color: #0000 !important;
  }
}

@media (width <= 1399.98px) {
  .offcanvas-xxl {
    z-index: var(--bs-offcanvas-zindex);
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    transition: var(--bs-offcanvas-transition);
    background-clip: padding-box;
    outline: 0;
    flex-direction: column;
    display: flex;
    position: fixed;
    bottom: 0;
  }
}

@media (width <= 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}

@media (width <= 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }

  .offcanvas-xxl.offcanvas-end {
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    right: 0;
    transform: translateX(100%);
  }

  .offcanvas-xxl.offcanvas-top {
    height: var(--bs-offcanvas-height);
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
  }

  .offcanvas-xxl.offcanvas-bottom {
    height: var(--bs-offcanvas-height);
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    left: 0;
    right: 0;
    transform: translateY(100%);
  }

  .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
    transform: none;
  }

  .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
    visibility: visible;
  }
}

@media (width >= 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: #0000 !important;
  }

  .offcanvas-xxl .offcanvas-header {
    display: none;
  }

  .offcanvas-xxl .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
    background-color: #0000 !important;
  }
}

.offcanvas {
  z-index: var(--bs-offcanvas-zindex);
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  transition: var(--bs-offcanvas-transition);
  background-clip: padding-box;
  outline: 0;
  flex-direction: column;
  display: flex;
  position: fixed;
  bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}

.offcanvas.offcanvas-start {
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  top: 0;
  left: 0;
  transform: translateX(-100%);
}

.offcanvas.offcanvas-end {
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  top: 0;
  right: 0;
  transform: translateX(100%);
}

.offcanvas.offcanvas-top {
  height: var(--bs-offcanvas-height);
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  max-height: 100%;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
}

.offcanvas.offcanvas-bottom {
  height: var(--bs-offcanvas-height);
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  max-height: 100%;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

.offcanvas.showing, .offcanvas.show:not(.hiding) {
  transform: none;
}

.offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  visibility: visible;
}

.offcanvas-backdrop {
  z-index: 1040;
  background-color: #000;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.offcanvas-backdrop.fade {
  opacity: 0;
}

.offcanvas-backdrop.show {
  opacity: .5;
}

.offcanvas-header {
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  align-items: center;
  display: flex;
}

.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);
  margin-top: calc(-.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-.5 * var(--bs-offcanvas-padding-y));
  margin-left: auto;
}

.offcanvas-title {
  line-height: var(--bs-offcanvas-title-line-height);
  margin-bottom: 0;
}

.offcanvas-body {
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  flex-grow: 1;
  overflow-y: auto;
}

.placeholder {
  vertical-align: middle;
  cursor: wait;
  opacity: .5;
  background-color: currentColor;
  min-height: 1em;
  display: inline-block;
}

.placeholder.btn:before {
  content: "";
  display: inline-block;
}

.placeholder-xs {
  min-height: .6em;
}

.placeholder-sm {
  min-height: .8em;
}

.placeholder-lg {
  min-height: 1.2em;
}

.placeholder-glow .placeholder {
  animation: 2s ease-in-out infinite placeholder-glow;
}

@keyframes placeholder-glow {
  50% {
    opacity: .2;
  }
}

.placeholder-wave {
  animation: 2s linear infinite placeholder-wave;
  mask-image: linear-gradient(130deg, #000 55%, #000c 75%, #000 95%);
  mask-size: 200% 100%;
}

@keyframes placeholder-wave {
  100% {
    mask-position: -200% 0;
  }
}

.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-primary:hover, .link-primary:focus {
  color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary:hover, .link-secondary:focus {
  color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
}

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-success:hover, .link-success:focus {
  color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
}

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-info:hover, .link-info:focus {
  color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning:hover, .link-warning:focus {
  color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger:hover, .link-danger:focus {
  color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
}

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-light:hover, .link-light:focus {
  color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark:hover, .link-dark:focus {
  color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, .75)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, .75)) !important;
}

.focus-ring:focus {
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
  outline: 0;
}

.icon-link {
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, .5));
  text-underline-offset: .25em;
  backface-visibility: hidden;
  align-items: center;
  gap: .375rem;
  display: inline-flex;
}

.icon-link > .bi {
  fill: currentColor;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  transition: transform .2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}

.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  transform: var(--bs-icon-link-transform, translate3d(.25em, 0, 0));
}

.ratio {
  width: 100%;
  position: relative;
}

.ratio:before {
  padding-top: var(--bs-aspect-ratio);
  content: "";
  display: block;
}

.ratio > * {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571%;
}

.fixed-top {
  z-index: 1030;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.fixed-bottom {
  z-index: 1030;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.sticky-top {
  z-index: 1020;
  position: sticky;
  top: 0;
}

.sticky-bottom {
  z-index: 1020;
  position: sticky;
  bottom: 0;
}

@media (width >= 576px) {
  .sticky-sm-top {
    z-index: 1020;
    position: sticky;
    top: 0;
  }

  .sticky-sm-bottom {
    z-index: 1020;
    position: sticky;
    bottom: 0;
  }
}

@media (width >= 768px) {
  .sticky-md-top {
    z-index: 1020;
    position: sticky;
    top: 0;
  }

  .sticky-md-bottom {
    z-index: 1020;
    position: sticky;
    bottom: 0;
  }
}

@media (width >= 992px) {
  .sticky-lg-top {
    z-index: 1020;
    position: sticky;
    top: 0;
  }

  .sticky-lg-bottom {
    z-index: 1020;
    position: sticky;
    bottom: 0;
  }
}

@media (width >= 1200px) {
  .sticky-xl-top {
    z-index: 1020;
    position: sticky;
    top: 0;
  }

  .sticky-xl-bottom {
    z-index: 1020;
    position: sticky;
    bottom: 0;
  }
}

@media (width >= 1400px) {
  .sticky-xxl-top {
    z-index: 1020;
    position: sticky;
    top: 0;
  }

  .sticky-xxl-bottom {
    z-index: 1020;
    position: sticky;
    bottom: 0;
  }
}

.hstack {
  flex-direction: row;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.vstack {
  flex-direction: column;
  flex: auto;
  align-self: stretch;
  display: flex;
}

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

.visually-hidden:not(caption), .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

.visually-hidden *, .visually-hidden-focusable:not(:focus):not(:focus-within) * {
  overflow: hidden !important;
}

.stretched-link:after {
  z-index: 1;
  content: "";
  position: absolute;
  inset: 0;
}

.text-truncate {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.vr {
  width: var(--bs-border-width);
  opacity: .25;
  background-color: currentColor;
  align-self: stretch;
  min-height: 1em;
  display: inline-block;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.object-fit-contain {
  object-fit: contain !important;
}

.object-fit-cover {
  object-fit: cover !important;
}

.object-fit-fill {
  object-fit: fill !important;
}

.object-fit-scale {
  object-fit: scale-down !important;
}

.object-fit-none {
  object-fit: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: .25 !important;
}

.opacity-50 {
  opacity: .5 !important;
}

.opacity-75 {
  opacity: .75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.border-opacity-10 {
  --bs-border-opacity: .1;
}

.border-opacity-25 {
  --bs-border-opacity: .25;
}

.border-opacity-50 {
  --bs-border-opacity: .5;
}

.border-opacity-75 {
  --bs-border-opacity: .75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

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

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: .25rem !important;
}

.m-2 {
  margin: .5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-1 {
  margin-left: .25rem !important;
  margin-right: .25rem !important;
}

.mx-2 {
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: .25rem !important;
  margin-bottom: .25rem !important;
}

.my-2 {
  margin-top: .5rem !important;
  margin-bottom: .5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: .25rem !important;
}

.mt-2 {
  margin-top: .5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: .25rem !important;
}

.me-2 {
  margin-right: .5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: .25rem !important;
}

.mb-2 {
  margin-bottom: .5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: .25rem !important;
}

.ms-2 {
  margin-left: .5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: .25rem !important;
}

.p-2 {
  padding: .5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-1 {
  padding-left: .25rem !important;
  padding-right: .25rem !important;
}

.px-2 {
  padding-left: .5rem !important;
  padding-right: .5rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: .25rem !important;
  padding-bottom: .25rem !important;
}

.py-2 {
  padding-top: .5rem !important;
  padding-bottom: .5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: .25rem !important;
}

.pt-2 {
  padding-top: .5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: .25rem !important;
}

.pe-2 {
  padding-right: .5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: .25rem !important;
}

.pb-2 {
  padding-bottom: .5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: .25rem !important;
}

.ps-2 {
  padding-left: .5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: .25rem !important;
}

.gap-2 {
  gap: .5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: .25rem !important;
}

.row-gap-2 {
  row-gap: .5rem !important;
}

.row-gap-3 {
  row-gap: 1rem !important;
}

.row-gap-4 {
  row-gap: 1.5rem !important;
}

.row-gap-5 {
  row-gap: 3rem !important;
}

.column-gap-0 {
  column-gap: 0 !important;
}

.column-gap-1 {
  column-gap: .25rem !important;
}

.column-gap-2 {
  column-gap: .5rem !important;
}

.column-gap-3 {
  column-gap: 1rem !important;
}

.column-gap-4 {
  column-gap: 1.5rem !important;
}

.column-gap-5 {
  column-gap: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + .9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + .6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + .3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

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

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: #00000080 !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: #ffffff80 !important;
}

.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: .25;
}

.text-opacity-50 {
  --bs-text-opacity: .5;
}

.text-opacity-75 {
  --bs-text-opacity: .75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

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

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

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10, .link-opacity-10-hover:hover {
  --bs-link-opacity: .1;
}

.link-opacity-25, .link-opacity-25-hover:hover {
  --bs-link-opacity: .25;
}

.link-opacity-50, .link-opacity-50-hover:hover {
  --bs-link-opacity: .5;
}

.link-opacity-75, .link-opacity-75-hover:hover {
  --bs-link-opacity: .75;
}

.link-opacity-100, .link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1, .link-offset-1-hover:hover {
  text-underline-offset: .125em !important;
}

.link-offset-2, .link-offset-2-hover:hover {
  text-underline-offset: .25em !important;
}

.link-offset-3, .link-offset-3-hover:hover {
  text-underline-offset: .375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0, .link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10, .link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: .1;
}

.link-underline-opacity-25, .link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: .25;
}

.link-underline-opacity-50, .link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: .5;
}

.link-underline-opacity-75, .link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: .75;
}

.link-underline-opacity-100, .link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: #0000 !important;
}

.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: .1;
}

.bg-opacity-25 {
  --bs-bg-opacity: .25;
}

.bg-opacity-50 {
  --bs-bg-opacity: .5;
}

.bg-opacity-75 {
  --bs-bg-opacity: .75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

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

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-top-left-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (width >= 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .object-fit-sm-contain {
    object-fit: contain !important;
  }

  .object-fit-sm-cover {
    object-fit: cover !important;
  }

  .object-fit-sm-fill {
    object-fit: fill !important;
  }

  .object-fit-sm-scale {
    object-fit: scale-down !important;
  }

  .object-fit-sm-none {
    object-fit: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-inline-grid {
    display: inline-grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: .25rem !important;
  }

  .m-sm-2 {
    margin: .5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mx-sm-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
  }

  .mx-sm-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
  }

  .mx-sm-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mx-sm-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mx-sm-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
  }

  .my-sm-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: .25rem !important;
  }

  .mt-sm-2 {
    margin-top: .5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: .25rem !important;
  }

  .me-sm-2 {
    margin-right: .5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: .25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: .5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: .25rem !important;
  }

  .ms-sm-2 {
    margin-left: .5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: .25rem !important;
  }

  .p-sm-2 {
    padding: .5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-sm-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
  }

  .px-sm-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .px-sm-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-sm-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-sm-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
  }

  .py-sm-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: .25rem !important;
  }

  .pt-sm-2 {
    padding-top: .5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: .25rem !important;
  }

  .pe-sm-2 {
    padding-right: .5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: .25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: .5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: .25rem !important;
  }

  .ps-sm-2 {
    padding-left: .5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: .25rem !important;
  }

  .gap-sm-2 {
    gap: .5rem !important;
  }

  .gap-sm-3 {
    gap: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

  .row-gap-sm-0 {
    row-gap: 0 !important;
  }

  .row-gap-sm-1 {
    row-gap: .25rem !important;
  }

  .row-gap-sm-2 {
    row-gap: .5rem !important;
  }

  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }

  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }

  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }

  .column-gap-sm-0 {
    column-gap: 0 !important;
  }

  .column-gap-sm-1 {
    column-gap: .25rem !important;
  }

  .column-gap-sm-2 {
    column-gap: .5rem !important;
  }

  .column-gap-sm-3 {
    column-gap: 1rem !important;
  }

  .column-gap-sm-4 {
    column-gap: 1.5rem !important;
  }

  .column-gap-sm-5 {
    column-gap: 3rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (width >= 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .object-fit-md-contain {
    object-fit: contain !important;
  }

  .object-fit-md-cover {
    object-fit: cover !important;
  }

  .object-fit-md-fill {
    object-fit: fill !important;
  }

  .object-fit-md-scale {
    object-fit: scale-down !important;
  }

  .object-fit-md-none {
    object-fit: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-inline-grid {
    display: inline-grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: .25rem !important;
  }

  .m-md-2 {
    margin: .5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mx-md-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
  }

  .mx-md-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
  }

  .mx-md-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mx-md-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mx-md-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
  }

  .my-md-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: .25rem !important;
  }

  .mt-md-2 {
    margin-top: .5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: .25rem !important;
  }

  .me-md-2 {
    margin-right: .5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: .25rem !important;
  }

  .mb-md-2 {
    margin-bottom: .5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: .25rem !important;
  }

  .ms-md-2 {
    margin-left: .5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: .25rem !important;
  }

  .p-md-2 {
    padding: .5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-md-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
  }

  .px-md-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .px-md-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-md-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-md-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
  }

  .py-md-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: .25rem !important;
  }

  .pt-md-2 {
    padding-top: .5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: .25rem !important;
  }

  .pe-md-2 {
    padding-right: .5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: .25rem !important;
  }

  .pb-md-2 {
    padding-bottom: .5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: .25rem !important;
  }

  .ps-md-2 {
    padding-left: .5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: .25rem !important;
  }

  .gap-md-2 {
    gap: .5rem !important;
  }

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

  .row-gap-md-0 {
    row-gap: 0 !important;
  }

  .row-gap-md-1 {
    row-gap: .25rem !important;
  }

  .row-gap-md-2 {
    row-gap: .5rem !important;
  }

  .row-gap-md-3 {
    row-gap: 1rem !important;
  }

  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }

  .row-gap-md-5 {
    row-gap: 3rem !important;
  }

  .column-gap-md-0 {
    column-gap: 0 !important;
  }

  .column-gap-md-1 {
    column-gap: .25rem !important;
  }

  .column-gap-md-2 {
    column-gap: .5rem !important;
  }

  .column-gap-md-3 {
    column-gap: 1rem !important;
  }

  .column-gap-md-4 {
    column-gap: 1.5rem !important;
  }

  .column-gap-md-5 {
    column-gap: 3rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (width >= 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .object-fit-lg-contain {
    object-fit: contain !important;
  }

  .object-fit-lg-cover {
    object-fit: cover !important;
  }

  .object-fit-lg-fill {
    object-fit: fill !important;
  }

  .object-fit-lg-scale {
    object-fit: scale-down !important;
  }

  .object-fit-lg-none {
    object-fit: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-inline-grid {
    display: inline-grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: .25rem !important;
  }

  .m-lg-2 {
    margin: .5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mx-lg-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
  }

  .mx-lg-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
  }

  .mx-lg-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mx-lg-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mx-lg-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
  }

  .my-lg-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: .25rem !important;
  }

  .mt-lg-2 {
    margin-top: .5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: .25rem !important;
  }

  .me-lg-2 {
    margin-right: .5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: .25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: .5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: .25rem !important;
  }

  .ms-lg-2 {
    margin-left: .5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: .25rem !important;
  }

  .p-lg-2 {
    padding: .5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-lg-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
  }

  .px-lg-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .px-lg-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-lg-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-lg-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
  }

  .py-lg-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: .25rem !important;
  }

  .pt-lg-2 {
    padding-top: .5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: .25rem !important;
  }

  .pe-lg-2 {
    padding-right: .5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: .25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: .5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: .25rem !important;
  }

  .ps-lg-2 {
    padding-left: .5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: .25rem !important;
  }

  .gap-lg-2 {
    gap: .5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

  .row-gap-lg-0 {
    row-gap: 0 !important;
  }

  .row-gap-lg-1 {
    row-gap: .25rem !important;
  }

  .row-gap-lg-2 {
    row-gap: .5rem !important;
  }

  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }

  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }

  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }

  .column-gap-lg-0 {
    column-gap: 0 !important;
  }

  .column-gap-lg-1 {
    column-gap: .25rem !important;
  }

  .column-gap-lg-2 {
    column-gap: .5rem !important;
  }

  .column-gap-lg-3 {
    column-gap: 1rem !important;
  }

  .column-gap-lg-4 {
    column-gap: 1.5rem !important;
  }

  .column-gap-lg-5 {
    column-gap: 3rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (width >= 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .object-fit-xl-contain {
    object-fit: contain !important;
  }

  .object-fit-xl-cover {
    object-fit: cover !important;
  }

  .object-fit-xl-fill {
    object-fit: fill !important;
  }

  .object-fit-xl-scale {
    object-fit: scale-down !important;
  }

  .object-fit-xl-none {
    object-fit: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-inline-grid {
    display: inline-grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: .25rem !important;
  }

  .m-xl-2 {
    margin: .5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mx-xl-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
  }

  .mx-xl-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
  }

  .mx-xl-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mx-xl-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mx-xl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
  }

  .my-xl-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: .25rem !important;
  }

  .mt-xl-2 {
    margin-top: .5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: .25rem !important;
  }

  .me-xl-2 {
    margin-right: .5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: .25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: .5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: .25rem !important;
  }

  .ms-xl-2 {
    margin-left: .5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: .25rem !important;
  }

  .p-xl-2 {
    padding: .5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-xl-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
  }

  .px-xl-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .px-xl-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-xl-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-xl-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
  }

  .py-xl-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: .25rem !important;
  }

  .pt-xl-2 {
    padding-top: .5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: .25rem !important;
  }

  .pe-xl-2 {
    padding-right: .5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: .25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: .5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: .25rem !important;
  }

  .ps-xl-2 {
    padding-left: .5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: .25rem !important;
  }

  .gap-xl-2 {
    gap: .5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .row-gap-xl-0 {
    row-gap: 0 !important;
  }

  .row-gap-xl-1 {
    row-gap: .25rem !important;
  }

  .row-gap-xl-2 {
    row-gap: .5rem !important;
  }

  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }

  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }

  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }

  .column-gap-xl-0 {
    column-gap: 0 !important;
  }

  .column-gap-xl-1 {
    column-gap: .25rem !important;
  }

  .column-gap-xl-2 {
    column-gap: .5rem !important;
  }

  .column-gap-xl-3 {
    column-gap: 1rem !important;
  }

  .column-gap-xl-4 {
    column-gap: 1.5rem !important;
  }

  .column-gap-xl-5 {
    column-gap: 3rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

@media (width >= 1400px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .object-fit-xxl-contain {
    object-fit: contain !important;
  }

  .object-fit-xxl-cover {
    object-fit: cover !important;
  }

  .object-fit-xxl-fill {
    object-fit: fill !important;
  }

  .object-fit-xxl-scale {
    object-fit: scale-down !important;
  }

  .object-fit-xxl-none {
    object-fit: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-inline-grid {
    display: inline-grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: .25rem !important;
  }

  .m-xxl-2 {
    margin: .5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mx-xxl-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
  }

  .mx-xxl-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
  }

  .mx-xxl-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mx-xxl-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mx-xxl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
  }

  .my-xxl-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: .25rem !important;
  }

  .mt-xxl-2 {
    margin-top: .5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: .25rem !important;
  }

  .me-xxl-2 {
    margin-right: .5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: .25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: .5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: .25rem !important;
  }

  .ms-xxl-2 {
    margin-left: .5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: .25rem !important;
  }

  .p-xxl-2 {
    padding: .5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-xxl-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
  }

  .px-xxl-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .px-xxl-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-xxl-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
  }

  .py-xxl-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: .25rem !important;
  }

  .pt-xxl-2 {
    padding-top: .5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: .25rem !important;
  }

  .pe-xxl-2 {
    padding-right: .5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: .25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: .5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: .25rem !important;
  }

  .ps-xxl-2 {
    padding-left: .5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: .25rem !important;
  }

  .gap-xxl-2 {
    gap: .5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }

  .row-gap-xxl-1 {
    row-gap: .25rem !important;
  }

  .row-gap-xxl-2 {
    row-gap: .5rem !important;
  }

  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }

  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }

  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }

  .column-gap-xxl-0 {
    column-gap: 0 !important;
  }

  .column-gap-xxl-1 {
    column-gap: .25rem !important;
  }

  .column-gap-xxl-2 {
    column-gap: .5rem !important;
  }

  .column-gap-xxl-3 {
    column-gap: 1rem !important;
  }

  .column-gap-xxl-4 {
    column-gap: 1.5rem !important;
  }

  .column-gap-xxl-5 {
    column-gap: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}

@media (width >= 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }
}

@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-inline-grid {
    display: inline-grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: 0;
  margin: 0;
  padding: 0;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: CastledownBold;
  src: url("Castledown-Bold.2c7f3b0d.woff2") format("woff2"), url("Castledown-Bold.40e05e8f.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Castledown;
  src: url("Castledown-Regular.fde63317.woff2") format("woff2"), url("Castledown-Regular.aac7a1f6.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: CastledownHeavy;
  src: url("Castledown-Heavy.2403ce9b.woff2") format("woff2"), url("Castledown-Heavy.ec160271.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: PraterSans;
  src: url("PraterSansBold.047c4176.woff2") format("woff2"), url("PraterSansBold.0a85da97.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #339e35;
  --darkgreen: #055a32;
  --cream: #e3d8c7;
  --redorange: #f74f45;
  --asia: #34843f;
  --theamericas: #e8c046;
  --africa: #ea9f71;
  --discovery: #c8ae90;
  --eggshell: #f2f2f2;
  --titanium: #e0e0e0;
  --steel: #bdbdbd;
  --concrete: #828282;
  --shadow: #4f4f4f;
  --sky: #b4e3fa;
  --ticketsgreen: #83b441;
  --charcoalblack: #333;
  --smooth: cubic-bezier(.15, .9, .34, .95);
  --custom: cubic-bezier(.76, 0, .24, 1);
}

html {
  font-size: 10px;
}

html, body {
  scroll-behavior: auto !important;
}

body {
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Castledown, Arial, serif;
  font-size: 1.6rem;
  line-height: 1.5;
}

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

.rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5, .rich-text h6 {
  text-transform: uppercase;
  color: var(--darkgreen);
  margin-bottom: 3.2rem;
  font-family: PraterSans;
}

.rich-text h1 strong, .rich-text h2 strong, .rich-text h3 strong, .rich-text h4 strong, .rich-text h5 strong, .rich-text h6 strong {
  color: var(--green);
}

@media screen and (width <= 991px) {
  .rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5, .rich-text h6 {
    margin-bottom: 2.4rem;
  }
}

.rich-text h1, .rich-text .h1 {
  letter-spacing: -.05em;
  font-size: 8rem;
  line-height: 105%;
}

@media screen and (width <= 991px) {
  .rich-text h1, .rich-text .h1 {
    letter-spacing: -.04em;
    font-size: 6rem;
    line-height: 112%;
  }
}

.rich-text h2, .rich-text .h2 {
  letter-spacing: -.04em;
  font-size: 6rem;
  line-height: 112%;
}

@media screen and (width <= 1200px) {
  .rich-text h2, .rich-text .h2 {
    font-size: 5rem;
  }
}

@media screen and (width <= 991px) {
  .rich-text h2, .rich-text .h2 {
    letter-spacing: -.04em;
    font-size: 5rem;
    line-height: 100%;
  }
}

.rich-text h3, .rich-text .h3 {
  letter-spacing: -.04em;
  font-size: 5rem;
  line-height: 100%;
}

@media screen and (width <= 991px) {
  .rich-text h3, .rich-text .h3 {
    letter-spacing: -.02em;
    font-size: 3rem;
    line-height: 110%;
  }
}

.rich-text h4, .rich-text .h4 {
  letter-spacing: -.02em;
  font-size: 3rem;
  line-height: 110%;
}

@media screen and (width <= 991px) {
  .rich-text h4, .rich-text .h4 {
    letter-spacing: -.02em;
    font-size: 2.4rem;
    line-height: 2.5rem;
  }
}

.rich-text h5, .rich-text .h5 {
  letter-spacing: -.02em;
  font-size: 2.4rem;
  line-height: 2.5rem;
}

@media screen and (width <= 991px) {
  .rich-text h5, .rich-text .h5 {
    letter-spacing: -.03em;
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}

.rich-text h6, .rich-text .h6 {
  letter-spacing: -.03em;
  font-size: 1.6rem;
  line-height: 2.4rem;
}

@media screen and (width <= 991px) {
  .rich-text h6, .rich-text .h6 {
    font-family: Castledown;
    font-size: 1.8rem;
    line-height: 135%;
  }
}

.rich-text p {
  color: var(--darkgreen);
  margin-bottom: 3rem;
  font-size: 1.8rem;
  line-height: 135%;
}

@media screen and (width <= 991px) {
  .rich-text p {
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }
}

.rich-text p strong, .rich-text p b {
  font-family: CastledownHeavy;
}

@media screen and (width >= 992px) {
  .rich-text p:last-child {
    margin-bottom: 0;
  }
}

.rich-text ul, .rich-text ol {
  margin-bottom: 3rem;
  padding-left: 2.5rem;
}

@media screen and (width <= 991px) {
  .rich-text ul, .rich-text ol {
    margin-bottom: 2rem;
  }
}

.rich-text ul li, .rich-text ol li {
  color: var(--darkgreen);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  line-height: 135%;
}

@media screen and (width <= 991px) {
  .rich-text ul li, .rich-text ol li {
    font-size: 1.6rem;
  }
}

.rich-text ul li:last-child, .rich-text ol li:last-child {
  margin-bottom: 0;
}

.rich-text ul li::marker, .rich-text ol li::marker {
  color: var(--darkgreen);
  font-family: CastledownHeavy;
}

.rich-text ul li strong, .rich-text ul li b, .rich-text ol li strong, .rich-text ol li b {
  font-family: CastledownHeavy;
}

.rich-text ul {
  list-style: outside;
}

.rich-text ol {
  list-style: decimal;
}

.rich-text h1 a:not(.btn), .rich-text h2 a:not(.btn), .rich-text h3 a:not(.btn), .rich-text h4 a:not(.btn), .rich-text h5 a:not(.btn), .rich-text h6 a:not(.btn), .rich-text p a:not(.btn), .rich-text ul:not(.list) li a:not(.btn), .rich-text ol li a:not(.btn) {
  color: var(--darkgreen);
  position: relative;
}

.rich-text h1 a:not(.btn):after, .rich-text h1 a:not(.btn):before, .rich-text h2 a:not(.btn):after, .rich-text h2 a:not(.btn):before, .rich-text h3 a:not(.btn):after, .rich-text h3 a:not(.btn):before, .rich-text h4 a:not(.btn):after, .rich-text h4 a:not(.btn):before, .rich-text h5 a:not(.btn):after, .rich-text h5 a:not(.btn):before, .rich-text h6 a:not(.btn):after, .rich-text h6 a:not(.btn):before, .rich-text p a:not(.btn):after, .rich-text p a:not(.btn):before, .rich-text ul:not(.list) li a:not(.btn):after, .rich-text ul:not(.list) li a:not(.btn):before, .rich-text ol li a:not(.btn):after, .rich-text ol li a:not(.btn):before {
  content: "";
  width: 100%;
  height: 1px;
  transition: all .2s var(--smooth);
  will-change: transform;
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.rich-text h1 a:not(.btn):before, .rich-text h2 a:not(.btn):before, .rich-text h3 a:not(.btn):before, .rich-text h4 a:not(.btn):before, .rich-text h5 a:not(.btn):before, .rich-text h6 a:not(.btn):before, .rich-text p a:not(.btn):before, .rich-text ul:not(.list) li a:not(.btn):before, .rich-text ol li a:not(.btn):before {
  transform-origin: 0;
  transform: scaleX(0);
}

.rich-text h1 a:not(.btn):after, .rich-text h2 a:not(.btn):after, .rich-text h3 a:not(.btn):after, .rich-text h4 a:not(.btn):after, .rich-text h5 a:not(.btn):after, .rich-text h6 a:not(.btn):after, .rich-text p a:not(.btn):after, .rich-text ul:not(.list) li a:not(.btn):after, .rich-text ol li a:not(.btn):after {
  transform-origin: 100%;
  transition-delay: .2s;
}

.rich-text h1 a:not(.btn):hover:before, .rich-text h2 a:not(.btn):hover:before, .rich-text h3 a:not(.btn):hover:before, .rich-text h4 a:not(.btn):hover:before, .rich-text h5 a:not(.btn):hover:before, .rich-text h6 a:not(.btn):hover:before, .rich-text p a:not(.btn):hover:before, .rich-text ul:not(.list) li a:not(.btn):hover:before, .rich-text ol li a:not(.btn):hover:before {
  transition-delay: .4s;
  transform: scaleX(1);
}

.rich-text h1 a:not(.btn):hover:after, .rich-text h2 a:not(.btn):hover:after, .rich-text h3 a:not(.btn):hover:after, .rich-text h4 a:not(.btn):hover:after, .rich-text h5 a:not(.btn):hover:after, .rich-text h6 a:not(.btn):hover:after, .rich-text p a:not(.btn):hover:after, .rich-text ul:not(.list) li a:not(.btn):hover:after, .rich-text ol li a:not(.btn):hover:after {
  transform: scaleX(0);
}

.full {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}

.category {
  text-transform: uppercase;
  letter-spacing: -.12px;
  background: var(--theamericas);
  border-radius: 13px;
  align-items: center;
  height: 2rem;
  margin-bottom: 2.4rem;
  padding: 0 1rem;
  font-family: CastleDownHeavy;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-flex;
}

.rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h5, .title-anim, .ta-pending {
  opacity: 0;
}

.rich-text .ta-ready, .ta-ready {
  opacity: 1;
}

.ta-wrap {
  padding-right: .5rem;
}

.underline-link {
  position: relative;
}

@media screen and (width >= 992px) {
  .underline-link:after {
    content: "";
    will-change: transform;
    transform-origin: 100%;
    width: 100%;
    height: 1px;
    transition: transform .4s var(--smooth);
    background-color: currentColor;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0)translateZ(0);
  }

  .underline-link:hover:after {
    transform-origin: 0;
    transform: scaleX(1)translateZ(0);
  }
}

main > div {
  background-color: #fdf8ef;
}

.component.padS {
  padding-top: 4rem;
}

@media screen and (width <= 991px) {
  .component.padS {
    padding-top: 2rem;
  }
}

.component.padS.padBottom {
  padding-bottom: 4rem;
}

@media screen and (width <= 991px) {
  .component.padS.padBottom {
    padding-bottom: 2rem;
  }
}

.component.padM {
  padding-top: 8rem;
}

@media screen and (width <= 991px) {
  .component.padM {
    padding-top: 4rem;
  }
}

.component.padM.padBottom {
  padding-bottom: 8rem;
}

@media screen and (width <= 991px) {
  .component.padM.padBottom {
    padding-bottom: 4rem;
  }
}

.component.padL {
  padding-top: 14rem;
}

@media screen and (width <= 991px) {
  .component.padL {
    padding-top: 8rem;
  }
}

.component.padL.padBottom {
  padding-bottom: 14rem;
}

@media screen and (width <= 991px) {
  .component.padL.padBottom {
    padding-bottom: 8rem;
  }
}

#page-wipe {
  opacity: 0;
  z-index: 6;
  pointer-events: none;
  will-change: transform;
  position: fixed;
  inset: 0;
}

#page-wipe svg {
  width: 120%;
  height: 120vh;
  display: block;
  transform: translateX(-10vw)translateY(-20vh);
}

@media (prefers-reduced-motion: reduce) {
  #page-wipe {
    display: none !important;
  }
}

.btn {
  appearance: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  perspective: 400px;
  background: none;
  border: none;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 22rem;
  height: 6.5rem;
  padding: 0;
  text-decoration: none;
  display: inline-flex;
  position: relative;
}

.btn:before {
  content: "";
  will-change: transform;
  width: 100%;
  height: 100%;
  transition: transform 1s var(--smooth);
  background: url("btn.ffb9b0bc.svg") center / contain no-repeat;
  display: block;
  position: absolute;
  inset: 0;
}

.btn.btn--small {
  width: 18.5rem;
  height: 7.5rem;
}

.btn.btn--small:before {
  background-image: url("btn-small.7762b519.svg");
}

.btn.btn--big {
  width: 26.7rem;
  height: 7.5rem;
}

.btn.btn--big:before {
  background-image: url("btn-big.3b529ad7.svg");
}

.btn.btn--animal:after {
  content: "";
  background: url("animal.7c861d01.png") center / contain no-repeat;
  width: 7.3rem;
  height: 7.3rem;
  display: block;
  position: absolute;
  top: -1.4rem;
  left: -2rem;
}

.btn.btn--tickets {
  justify-content: flex-start;
  padding-left: 2rem;
}

.btn.btn--tickets:after {
  content: "";
  background: url("icon-tickets.54e8a253.svg") center / contain no-repeat;
  width: 5.2rem;
  height: 4.9rem;
  margin-left: 2.2rem;
  display: block;
  position: relative;
}

.btn.btn--map {
  justify-content: flex-start;
  padding-left: 2rem;
}

.btn.btn--map:after {
  content: "";
  background: url("map-inverse.b3491ff7.svg") center / contain no-repeat;
  width: 5.2rem;
  height: 4.9rem;
  margin-left: 2.2rem;
  display: block;
  position: relative;
}

.btn-wrap {
  padding: 1rem 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.btn__text {
  z-index: 2;
  letter-spacing: -.02em;
  color: var(--darkgreen);
  transition: all .8s var(--smooth);
  will-change: transform;
  font-family: CastledownHeavy;
  font-size: 2rem;
  line-height: 1;
  display: block;
  position: relative;
}

.btn__anim {
  letter-spacing: -.02em;
  color: var(--darkgreen);
  transition: all .8s var(--smooth);
  will-change: transform;
  opacity: 0;
  font-family: CastledownHeavy;
  font-size: 2rem;
  line-height: 1;
  display: block;
  position: absolute;
  top: 1rem;
  left: 0;
  transform: translateY(200%)translateZ(0);
}

.btn:hover:before {
  transform: scaleX(1.08)skewX(4deg)translateZ(0);
}

.btn:hover .btn__text {
  opacity: 0;
  transform: translateY(-200%)translateZ(0);
}

.btn:hover .btn__anim {
  opacity: 1;
  transform: translateY(0)translateZ(0);
}

.close-btn {
  appearance: none;
  background-color: var(--theamericas);
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 4.8rem;
  height: 4.8rem;
  padding: 0;
  display: flex;
}

.close-btn path {
  stroke: var(--darkgreen);
}

.nav-wrapper {
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  margin-top: 3.8rem;
  display: flex;
  position: relative;
}

.nav-wrapper .swiper-nav {
  position: relative;
}

.nav-wrapper .swiper-button-prev, .nav-wrapper .swiper-button-next {
  appearance: none;
  width: 6.4rem;
  height: 6.1rem;
  transition: all .4s var(--smooth);
  background: url("btn-arrow.2d35bdea.svg") center / contain no-repeat;
  border: none;
  margin: 0;
  padding: 0;
  inset: auto !important;
}

@media screen and (width >= 992px) {
  .nav-wrapper .swiper-button-prev:hover, .nav-wrapper .swiper-button-next:hover {
    transform: scaleX(1.06);
  }
}

.nav-wrapper .swiper-button-prev svg, .nav-wrapper .swiper-button-next svg {
  display: none;
}

.nav-wrapper .swiper-button-prev.swiper-button-disabled, .nav-wrapper .swiper-button-next.swiper-button-disabled {
  opacity: .4;
}

.nav-wrapper .btn {
  margin-left: 1.6rem;
}

.nav-wrapper .swiper-button-prev {
  transform: rotate(180deg);
}

@media screen and (width >= 992px) {
  .nav-wrapper .swiper-button-prev:hover {
    transform: scaleX(1.06)rotate(180deg);
  }
}

.breadcrumb {
  color: var(--darkgreen);
  letter-spacing: -.6px;
  text-transform: uppercase;
  margin-top: 2.4rem;
  margin-bottom: 2.8rem;
  font-family: CastledownHeavy;
  font-size: 1.2rem;
}

.breadcrumb-item, .breadcrumb-item.active, .breadcrumb a {
  color: var(--darkgreen);
}

.breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: .8rem;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  content: "";
  background: url("line-breadcrumb.09272a8a.svg") center / contain no-repeat;
  width: 1.2rem;
  height: 1.1rem;
  margin-right: .8rem;
  transform: translateY(3.5px);
}

.card-news {
  aspect-ratio: 367 / 451;
  width: 36.7rem;
  position: relative;
  mask-image: url("item-cards-news.024a8a0d.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.card-news.swiper-slide {
  aspect-ratio: 367 / 451;
  width: 36.7rem;
}

.card-news__img {
  height: 24rem;
}

.card-news__img img {
  transition: all 1s var(--smooth);
}

@media screen and (width >= 992px) and (width <= 1399px) {
  .card-news__img {
    height: 18rem;
  }
}

@media screen and (width >= 992px) and (width <= 1199px) {
  .card-news__img {
    height: 12rem;
  }
}

.card-news__content {
  background: #fff;
  height: calc(100% - 24rem);
  padding: 3rem 2rem;
  position: relative;
}

@media screen and (width >= 1200px) and (width <= 1399px) {
  .card-news__content {
    height: calc(100% - 18rem);
  }
}

@media screen and (width >= 992px) and (width <= 1199px) {
  .card-news__content {
    height: calc(100% - 12rem);
  }
}

@media screen and (width <= 991px) {
  .card-news__content {
    padding: 2rem 2rem 3rem;
  }
}

.card-news__content .category {
  color: #43311d;
  background-color: var(--theamericas);
  text-transform: uppercase;
  border-radius: 9px;
  align-items: center;
  height: 2rem;
  padding: 0 1rem;
  font-family: CastleDownHeavy;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  position: absolute;
  top: -1rem;
  left: 2rem;
}

.card-news__content .title {
  color: var(--darkgreen);
  margin-bottom: 1.2rem;
  font-size: 2rem;
  line-height: 2.2rem;
}

@media screen and (width <= 991px) {
  .card-news__content .title {
    margin-bottom: 4px;
    font-size: 1.8rem;
  }
}

.card-news__content .date {
  color: #339e35;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: CastleDownHeavy;
  font-size: 1.2rem;
  font-style: normal;
  display: block;
}

@media screen and (width <= 991px) {
  .card-news__content .date {
    margin-bottom: 2px;
  }
}

.card-news__content .excerpt {
  color: var(--darkgreen);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 4.4rem;
  font-family: Castledown;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.2rem;
  display: -webkit-box;
  overflow: hidden;
}

@media screen and (width >= 992px) {
  .card-news:hover .card-news__img img {
    transform: scale(1.1);
  }
}

.grid-wrap {
  padding-top: 3.6rem;
}

.grid {
  grid-template-columns: 1fr;
  gap: 20px;
  display: grid;
}

.grid.grid--4 {
  grid-template-columns: repeat(2, 1fr);
}

@media (width >= 992px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    padding: 0 2.4rem;
  }

  .grid.grid--4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0;
  }
}

.grid .card-news {
  width: 100%;
}

.load-more {
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 10rem;
  display: flex;
}

.related {
  margin: 7rem 0 6rem;
}

@media (width >= 992px) {
  .related__top {
    justify-content: space-between;
    align-items: center;
    padding: 0 2.4rem;
    display: flex;
  }

  .related__top h5 {
    margin-bottom: 0;
  }
}

@media screen and (width <= 991px) {
  .related h5 {
    text-align: center;
    margin-bottom: 0;
    font-size: 2.4rem;
    line-height: 2.5rem;
  }
}

.card {
  aspect-ratio: 251 / 349;
  background-color: #0000;
  border: none;
  padding: 0;
  position: relative;
  mask-image: url("item-cards-simple.5044e919.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.card:after {
  content: "";
  will-change: transform;
  pointer-events: none;
  width: 5.2rem;
  height: 4.9rem;
  transition: transform .6s var(--smooth);
  background: url("arrow-green.9d62aea9.svg") center / contain no-repeat;
  margin: auto;
  display: block;
  position: absolute;
  top: 5rem;
  left: 0;
  right: 0;
  transform: scale(0);
}

.card__img {
  width: 100%;
  height: 100%;
  position: relative;
}

.card__img:after {
  content: "";
  background: linear-gradient(186deg, #2d1c0b00 28.97%, #2d1c0be6 86.17%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.card__img img {
  transition: transform 1s var(--smooth);
  will-change: transform;
}

.card__link {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.card__content {
  color: #fff;
  width: calc(100% - 3.2rem);
  position: absolute;
  bottom: 4rem;
  left: 1.6rem;
}

.card__content h5 {
  color: #fff !important;
  margin-bottom: 0 !important;
}

@media screen and (width >= 992px) {
  .card:hover .card__img img {
    transform: scale(1.1);
  }

  .card:hover:after {
    transform: scale(1);
  }
}

.filters-inline {
  gap: 4rem;
  display: flex;
}

.filters-inline__item {
  color: var(--green);
  text-transform: uppercase;
  font-family: PraterSans;
  font-size: 2.4rem;
  line-height: 1;
  position: relative;
}

.filters-inline__item:after {
  content: "";
  will-change: transform;
  width: 100%;
  height: 4px;
  transition: transform .4s var(--smooth);
  transform-origin: 100%;
  background-color: currentColor;
  border-radius: 20px;
  display: block;
  position: absolute;
  bottom: -6px;
  left: 0;
  transform: scaleX(0);
}

.filters-inline__item.active {
  color: var(--darkgreen);
}

.filters-inline__item.active:after {
  transform: scaleX(1);
}

@media screen and (width >= 992px) {
  .filters-inline__item:hover:after {
    transform-origin: 0;
    transform: scaleX(1);
  }
}

@media screen and (width <= 991px) {
  .filters-inline {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100vw;
    margin-left: -2.4rem;
    padding-left: 2.4rem;
    padding-right: 6rem;
    overflow: auto hidden;
  }

  .filters-inline::-webkit-scrollbar {
    display: none;
  }

  .filters-inline__item {
    flex: none;
  }
}

.filters {
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 6rem 0 2rem;
  display: flex;
}

@media screen and (width <= 991px) {
  .filters {
    flex-wrap: wrap;
  }
}

.filters-form {
  align-items: center;
  gap: 2rem;
  padding: 4rem 0;
  display: flex;
}

@media screen and (width <= 991px) {
  .filters-form {
    flex-wrap: wrap;
  }
}

.filters-form .filters {
  padding: 0;
}

.filters-form__submit {
  appearance: none;
  color: var(--cream);
  background: url("bg-submit-green.90bccc47.svg") center / contain no-repeat;
  border: none;
  justify-content: center;
  align-items: center;
  width: 22.1rem;
  height: 6.5rem;
  padding: 0;
  font-family: CastledownBold;
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
}

@media screen and (width <= 991px) {
  .filters-form__submit {
    margin: 0 auto;
  }
}

div.ss-main {
  background-color: #fff;
  border: 1px solid #d7e7df;
  border-radius: 8px;
  flex: 1;
  max-width: 42rem;
  height: 6rem;
  padding: 18px 18px 18px 23px;
  position: relative;
}

@media screen and (width <= 991px) {
  div.ss-main {
    flex: initial;
    width: 100%;
  }
}

div.ss-main:after {
  content: "";
  will-change: transform;
  width: 2.4rem;
  height: 2.4rem;
  transition: transform 1s var(--smooth);
  background: url("arrow-select.5efa8cf2.svg") center / contain no-repeat;
  display: block;
}

div.ss-main:focus {
  box-shadow: none;
}

div.ss-main .ss-single {
  color: var(--darkgreen);
  margin: 0;
  font-family: CastledownBold;
  font-size: 1.6rem;
  line-height: 1;
}

div.ss-main .ss-arrow {
  display: none;
}

div.ss-main.ss-open-below:after {
  transform: rotate(180deg);
}

div.ss-content .ss-list .ss-option {
  color: var(--darkgreen);
  transition: all .4s var(--smooth);
  background-color: #fff;
  padding: 6px 3.6rem;
  font-size: 1.6rem;
}

div.ss-content .ss-list .ss-option:first-child {
  display: none;
}

div.ss-content .ss-list .ss-option.ss-selected {
  font-family: CastledownBold;
  color: var(--darkgreen) !important;
  background-color: #fff !important;
}

div.ss-content .ss-list .ss-option:hover {
  color: var(--darkgreen);
  background-color: #d9e7e0;
}

.ss-main .ss-deselect {
  display: none !important;
}

div.ss-content.ss-open-below {
  border: 1px solid #d7e7df;
  border-top: none;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-bottom: 3rem;
}

.share {
  align-items: center;
  gap: 1rem;
  display: inline-flex;
  position: relative;
}

.share .icon {
  display: block;
}

.share .icon--close, .share.is-open .icon--share {
  display: none;
}

.share.is-open .icon--close {
  display: block;
}

.share__toggle {
  appearance: none;
  cursor: pointer;
  background: none;
  border: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-grid;
}

.share__bar {
  border: 1px solid var(--darkgreen);
  visibility: hidden;
  white-space: nowrap;
  border-radius: 999px;
  align-items: center;
  gap: .6rem;
  width: 0;
  padding: .4rem;
  display: inline-flex;
  position: relative;
}

.share__btn {
  color: var(--darkgreen);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 999px;
  align-items: center;
  gap: .5rem;
  padding: .6rem .9rem;
  text-decoration: none;
  display: inline-flex;
}

.share__btn svg {
  flex: none;
}

.share__toast {
  background: var(--darkgreen);
  color: #fff;
  transform-origin: 100% 0;
  opacity: 0;
  pointer-events: none;
  border-radius: .6rem;
  padding: .35rem .6rem;
  font-size: 12px;
  position: absolute;
  top: -1.2rem;
  right: 4rem;
}

.share__toast[data-state="visible"] {
  opacity: 1;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  background-color: #fdf8ef;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

::selection {
  color: #fff;
  text-shadow: none;
  background: #000;
}

@media screen and (width <= 991px) {
  .container {
    padding: 0 2.4rem;
  }
}

:focus-visible {
  outline: 3px solid var(--darkgreen);
  outline-offset: 2px;
  border-radius: 2px;
}

button:focus-visible, .btn:focus-visible, [role="button"]:focus-visible {
  outline: 3px solid var(--darkgreen);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #055a3233;
}

a:focus-visible {
  outline: 3px solid var(--darkgreen);
  outline-offset: 2px;
  text-decoration: underline;
}

input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--darkgreen);
  outline-offset: 2px;
  border-color: var(--darkgreen);
  box-shadow: 0 0 0 3px #055a321a;
}

div.ss-main:focus-visible, div.ss-main:focus-within {
  outline: 3px solid var(--darkgreen);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #055a321a;
}

.nav-link:focus-visible, .mobile-nav-link:focus-visible {
  outline: 3px solid var(--darkgreen);
  outline-offset: 2px;
  background-color: #055a320d;
}

.close-btn:focus-visible, .player__close:focus-visible, .swiper-button-prev:focus-visible, .swiper-button-next:focus-visible {
  outline: 3px solid var(--darkgreen);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #055a3233;
}

.skip-to-content-link {
  z-index: 9999;
  background-color: var(--darkgreen);
  color: var(--cream);
  border-radius: 0 0 8px;
  padding: 1.5rem 2rem;
  font-family: CastledownBold, sans-serif;
  font-size: 1.6rem;
  text-decoration: none;
  transition: top .2s;
  position: absolute;
  top: -100px;
  left: 0;
  box-shadow: 0 4px 12px #0000004d;
}

.skip-to-content-link:focus, .skip-to-content-link:focus-visible {
  outline: 3px solid var(--theamericas);
  outline-offset: 3px;
  top: 0;
}

.sr-only, .aria-live-region, .screen-reader-text {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.sr-only:focus, .aria-live-region:focus, .screen-reader-text:focus {
  width: auto;
  height: auto;
  padding: inherit;
  margin: inherit;
  clip: auto;
  white-space: normal;
  position: static;
  overflow: visible;
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-gsap] {
    opacity: 1 !important;
    transform: none !important;
  }

  [data-parallax] {
    transform: none !important;
  }

  #page-wipe {
    display: none !important;
  }
}

@media (prefers-contrast: high) {
  :focus-visible {
    outline-offset: 3px;
    outline-width: 4px;
  }

  button:focus-visible, .btn:focus-visible, a:focus-visible {
    outline-width: 4px;
  }
}

.search-trigger:focus-within, .header-actions:focus-within, [tabindex="-1"]:focus {
  outline: none;
}

[tabindex="0"]:focus-visible, [role="button"]:focus-visible, [role="tab"]:focus-visible, [role="menuitem"]:focus-visible {
  outline: 3px solid var(--darkgreen);
  outline-offset: 2px;
}

input:invalid:focus-visible, select:invalid:focus-visible, textarea:invalid:focus-visible {
  outline-color: var(--redorange);
  border-color: var(--redorange);
}

input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] {
  border-color: var(--redorange);
  border-width: 2px;
}

[role="alert"] {
  color: var(--redorange);
  border-left: 4px solid var(--redorange);
  background-color: #f74f451a;
  margin-top: .5rem;
  padding: 1rem;
  font-weight: bold;
}

[aria-live="polite"], [aria-live="assertive"] {
  position: relative;
}

.modal-open {
  overflow: hidden;
}

.modal-open body > :not(.modal):not(.player) {
  pointer-events: none;
  user-select: none;
}

.text-muted, [class*="text-muted"] {
  color: #5a5f69;
}

.btn-pause-bg-video {
  z-index: 20;
  color: #fff;
  cursor: pointer;
  background: #0009;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: absolute;
  bottom: 30px;
  right: 45px;
}

.footer {
  color: #fff;
}

.footer__logos {
  justify-content: center;
  align-items: center;
  gap: 7.4rem;
  padding: 3.2rem 0 2.4rem;
  display: flex;
}

@media screen and (width <= 991px) {
  .footer__logos {
    gap: 2rem;
  }
}

.footer__logos__item img {
  object-fit: contain;
  width: auto;
  max-height: 6.8rem;
  display: block;
}

@media screen and (width <= 991px) {
  .footer__logos__item img {
    max-height: 3.5rem;
  }
}

.footer__top {
  background-color: var(--darkgreen);
  margin-top: 20vh;
  padding-top: 1rem;
  position: relative;
}

.footer__top:before {
  content: "";
  pointer-events: none;
  background: url("footerSafari.628ec992.png") bottom / cover no-repeat;
  width: 100%;
  padding-bottom: 15.5%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-99%);
}

@media screen and (width <= 580px) {
  .footer__top:before {
    background-image: url("footerSafariMobile.eefd4434.png");
    padding-bottom: 35%;
  }
}

@media screen and (width <= 991px) {
  .footer__top__logo {
    max-width: 13rem;
  }
}

.footer__partner {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
}

@media screen and (width <= 991px) {
  .footer__partner {
    order: 2;
    margin-top: 4rem;
  }
}

.footer__partner p {
  margin-bottom: 1.2rem;
}

.footer__social {
  align-items: center;
  gap: 2.8rem;
  padding-top: 4.8rem;
  display: flex;
}

.footer__social__link rect {
  transition: fill .3s var(--smooth);
}

.footer__social__link:hover rect {
  fill: var(--theamericas);
}

@media screen and (width <= 991px) {
  .footer__social {
    justify-content: flex-end;
    gap: 2rem;
    padding-top: 3.4rem;
  }

  .footer__social svg {
    max-height: 2.4rem;
  }
}

.footer__nav {
  padding-right: 10%;
  justify-content: space-between;
  padding-block: 7rem;
  display: flex;
}

.footer__nav__item p {
  margin-bottom: 2.4rem;
  font-family: CastleDownBold;
  font-size: 2rem;
  line-height: 3.2rem;
}

.footer__nav__item li {
  margin-bottom: 4px;
}

.footer__nav__item a {
  color: #fff;
  font-family: CastleDownBold;
  font-size: 1.4rem;
}

@media screen and (width <= 991px) {
  .footer__nav {
    flex-wrap: wrap;
    padding-top: 4.8rem;
    padding-bottom: 2.6rem;
    padding-right: 0;
  }

  .footer__nav__item {
    width: 50%;
    margin-bottom: 2rem;
    padding-left: 10%;
  }
}

.footer__newsletter {
  background-image: url("bg-newsletter.9d416ddf.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: -14rem;
  padding: 7.5rem 4.5rem 5.5rem;
  display: flow-root;
  position: relative;
}

@media screen and (width <= 991px) {
  .footer__newsletter {
    background-image: url("bg-newsletter-mobile.570f541c.svg");
    margin-top: 0;
    padding: 5.2rem 3.2rem 3.6rem;
  }

  .footer__newsletter__description {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}

.footer__newsletter__content {
  position: relative;
}

.footer__newsletter__title {
  text-transform: uppercase;
  letter-spacing: -.04em;
  margin-bottom: 1.6rem;
  font-family: PraterSans;
  font-size: 4rem;
  line-height: 2.7rem;
}

@media screen and (width <= 1400px) {
  .footer__newsletter__title {
    font-size: 3rem;
  }
}

@media screen and (width <= 991px) {
  .footer__newsletter__title {
    text-align: center;
    margin-bottom: 1rem;
  }
}

.footer__newsletter .gfield_validation_message {
  color: #b3e166 !important;
}

.footer__newsletter .gform_validation_errors {
  border-color: #b3e166 !important;
  margin: 16px 0 0 !important;
}

.footer__newsletter .gform_validation_errors .gform_submission_error, .footer__newsletter .gform_validation_errors .gform_submission_error span {
  color: #b3e166 !important;
}

.footer__newsletter form {
  padding-top: 2rem;
}

@media screen and (width <= 991px) {
  .footer__newsletter form {
    padding-top: 1rem;
  }

  .footer__newsletter form .gform_footer.top_label {
    margin-top: 0;
  }
}

.footer__newsletter form .gfield_required_text {
  color: #b3e166 !important;
}

.footer__newsletter form .gfield_label {
  color: #fff !important;
}

.footer__newsletter form .ginput_container_email input {
  appearance: none;
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 8px;
  align-items: center;
  height: 6rem;
  margin-bottom: 2rem;
  padding: 0 2.4rem;
  font-size: 1.6rem;
  display: flex;
  width: 100% !important;
}

.footer__newsletter form .ginput_container_email input::placeholder {
  color: #fff;
}

@media screen and (width <= 991px) {
  .footer__newsletter form .ginput_container_email input {
    height: 5rem;
    margin-bottom: 1rem;
  }
}

.footer__newsletter form .gform_fields {
  display: block;
}

.footer__newsletter form .ginput_container_consent, .footer__newsletter form .ginput_container_checkbox {
  cursor: pointer;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
}

@media screen and (width <= 991px) {
  .footer__newsletter form .ginput_container_consent, .footer__newsletter form .ginput_container_checkbox {
    justify-content: center;
    width: 100%;
  }
}

.footer__newsletter form .ginput_container_consent input, .footer__newsletter form .ginput_container_checkbox input {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.footer__newsletter form .ginput_container_consent input:checked + label:after, .footer__newsletter form .ginput_container_checkbox input:checked + label:after {
  opacity: 1;
}

.footer__newsletter form .ginput_container_consent label, .footer__newsletter form .ginput_container_checkbox label {
  color: #fff;
  align-items: center;
  position: relative;
}

@media screen and (width <= 1200px) {
  .footer__newsletter form .ginput_container_consent label, .footer__newsletter form .ginput_container_checkbox label {
    line-height: 1.2;
  }
}

.footer__newsletter form .ginput_container_consent label:before, .footer__newsletter form .ginput_container_checkbox label:before {
  content: "";
  border: 1px solid #fff;
  border-radius: 6px;
  width: 19px;
  height: 19px;
  margin-right: 1rem;
  display: inline-block;
  position: relative;
}

.footer__newsletter form .ginput_container_consent label:after, .footer__newsletter form .ginput_container_checkbox label:after {
  content: "";
  opacity: 0;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 6px;
  height: 12px;
  transition: opacity .12s;
  position: absolute;
  top: 2px;
  left: 7px;
  transform: rotate(45deg);
}

.footer__newsletter form .ginput_container_consent label a, .footer__newsletter form .ginput_container_checkbox label a {
  color: #fff;
  text-decoration: underline;
}

.footer__newsletter form .gform-footer input[type="submit"] {
  background: url("bg-submit.91631837.svg") center / contain no-repeat;
  appearance: none !important;
  color: var(--darkgreen) !important;
  letter-spacing: -.04em !important;
  text-transform: uppercase !important;
  background-color: #0000 !important;
  border: none !important;
  width: 21.5rem !important;
  height: 6.4rem !important;
  margin-top: 0 !important;
  padding: 0 !important;
  font-family: PraterSans !important;
  font-size: 2.4rem !important;
  display: table !important;
}

@media screen and (width <= 991px) {
  .footer__newsletter form .gform-footer input[type="submit"] {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.2rem !important;
  }
}

.footer__bottom {
  background-color: var(--darkgreen);
  padding-top: 8rem;
  padding-bottom: 4rem;
}

@media screen and (width <= 991px) {
  .footer__bottom {
    padding: 4.8rem 0 10rem;
  }

  .footer__bottom .info {
    text-align: center;
    margin-bottom: 4rem;
  }
}

.footer__bottom p {
  font-size: 1.4rem;
  line-height: 2.6rem;
}

@media screen and (width <= 991px) {
  .footer__bottom p {
    display: inline;
  }
}

.footer__bottom__info {
  justify-content: flex-end;
  gap: 4rem;
  display: flex;
}

.footer__bottom__info span {
  font-size: 1.4rem;
  line-height: 2.6rem;
  position: relative;
}

.footer__bottom__info span:after {
  content: "";
  background: url("line-green.75f7a432.svg") center / contain no-repeat;
  width: 1.7rem;
  height: 1.8rem;
  display: block;
  position: absolute;
  top: .4rem;
  right: -3rem;
}

.footer__bottom__info span:last-child:after {
  display: none;
}

@media screen and (width <= 991px) {
  .footer__bottom__info {
    gap: initial;
    display: block;
  }

  .footer__bottom__info span {
    text-align: center;
    margin: 0 auto;
    display: block;
  }

  .footer__bottom__info span:after {
    display: none;
  }
}

.footer__bottom .copyright {
  text-align: right;
  margin-top: 4px;
}

@media screen and (width <= 991px) {
  .footer__bottom .copyright {
    text-align: center;
    margin-top: 1rem;
    display: block;
  }
}

.text-block .row {
  margin-bottom: 8rem;
}

.text-block .row:last-child {
  margin-bottom: 0;
}

@media screen and (width <= 991px) {
  .text-block .row {
    margin-bottom: 2.4rem;
  }
}

.text-block iframe {
  max-width: 100%;
}

.text-block .col-lg-12 img {
  aspect-ratio: 1079 / 511;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: auto;
  display: block;
  mask-image: url("imageMask.b8d287f7.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.text-block .col-lg-5 {
  padding-right: 4%;
}

.single .text-block .col-lg-12 {
  color: var(--darkgreen);
  font-size: 1.8rem;
  line-height: 135%;
}

@media screen and (width <= 991px) {
  .single .text-block .col-lg-12 {
    font-size: 1.6rem;
  }
}

.single .text-block .col-lg-12 .row {
  margin-bottom: 2.4rem;
}

.single .text-block .col-lg-12 ul, .single .text-block .col-lg-12 ol {
  margin: 6rem 0;
}

.single .text-block .col-lg-12 a:not(.btn) {
  color: var(--darkgreen);
  position: relative;
}

.single .text-block .col-lg-12 a:not(.btn):after, .single .text-block .col-lg-12 a:not(.btn):before {
  content: "";
  width: 100%;
  height: 1px;
  transition: all .2s var(--smooth);
  will-change: transform;
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.single .text-block .col-lg-12 a:not(.btn):before {
  transform-origin: 0;
  transform: scaleX(0);
}

.single .text-block .col-lg-12 a:not(.btn):after {
  transform-origin: 100%;
  transition-delay: .2s;
}

.single .text-block .col-lg-12 a:not(.btn):hover:before {
  transition-delay: .4s;
  transform: scaleX(1);
}

.single .text-block .col-lg-12 a:not(.btn):hover:after {
  transform: scaleX(0);
}

.single .text-block .col-lg-12 blockquote {
  text-transform: uppercase;
  color: var(--darkgreen);
  margin: 4.8rem 0;
  font-family: PraterSans;
  font-size: 2rem;
  line-height: 135%;
}

.single .text-block .col-lg-12 img {
  margin: 6rem 0;
}

.feature-block .row {
  align-items: center;
}

.feature-block__images {
  height: 58rem;
}

@media screen and (width <= 991px) {
  .feature-block__content h3 {
    padding-right: 15%;
  }

  .feature-block__content {
    margin-bottom: 5rem;
  }

  .feature-block__images {
    height: auto;
  }
}

.feature-block:not(.two-images) .feature-block__images .img {
  position: relative;
}

.feature-block:not(.two-images) .feature-block__images img, .feature-block:not(.two-images) .feature-block__images video {
  aspect-ratio: 526 / 580;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
  mask-image: url("feature-big-mask.9e3700ad.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.feature-block.two-images .feature-block__images {
  height: 50rem;
  margin-bottom: 8rem;
  position: relative;
}

.feature-block.two-images .feature-block__images .img:first-child {
  width: calc(var(--container-width) / 12 * 3);
  will-change: transform;
  aspect-ratio: 305 / 309;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  height: 33rem;
  display: block;
  position: absolute;
  bottom: -8rem;
  left: 0;
  mask-image: url("feature-small-mask.c5630cad.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

@media screen and (width <= 991px) {
  .feature-block.two-images .feature-block__images .img:first-child {
    width: 17.2rem;
    height: 18.6rem;
    bottom: 4rem;
  }
}

.feature-block.two-images .feature-block__images .img:last-child {
  padding-left: calc(var(--container-width) / 12);
}

.feature-block.two-images .feature-block__images .img:last-child img, .feature-block.two-images .feature-block__images .img:last-child video {
  aspect-ratio: 435 / 501;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
  mask-image: url("feature-mask.8a00acb2.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

@media screen and (width >= 768px) and (width <= 991px) {
  .feature-block.two-images .feature-block__images .img:last-child img, .feature-block.two-images .feature-block__images .img:last-child video {
    aspect-ratio: 592 / 501;
  }
}

@media screen and (width >= 992px) {
  .feature-block.image-left .feature-block__content {
    order: 2;
  }

  .feature-block.image-left .feature-block__images {
    order: 1;
  }
}

.feature-block.two-images.image-left .feature-block__images .img:first-child {
  left: auto;
  right: 0;
}

.feature-block.two-images.image-left .feature-block__images .img:last-child {
  padding-left: 0;
  padding-right: calc(var(--container-width) / 12);
}

.feature-block.feature-block--hero {
  aspect-ratio: 1440 / 793;
  width: 100%;
  position: relative;
}

@media screen and (width <= 991px) {
  .feature-block.feature-block--hero {
    aspect-ratio: 414 / 793;
  }
}

.feature-block.feature-block--hero .container, .feature-block.feature-block--hero .row {
  height: 100%;
}

.feature-block.feature-block--hero .feature-block__image {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  overflow: hidden;
  mask-image: url("feature-hero-mask.a07c1f9f.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

@media screen and (width <= 991px) {
  .feature-block.feature-block--hero .feature-block__image {
    mask-image: url("feature-mobile.595a6f62.svg");
  }
}

.feature-block.feature-block--hero .feature-block__image img {
  will-change: transform;
}

.feature-block.feature-block--hero .feature-block__image:after {
  content: "";
  background: linear-gradient(270deg, #0000 0%, #000c 100%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

@media screen and (width <= 991px) {
  .feature-block.feature-block--hero .feature-block__image:after {
    background: linear-gradient(330deg, #0000 27.89%, #000c 81.22%);
  }
}

.feature-block.feature-block--hero .row {
  align-items: center;
}

@media screen and (width <= 991px) {
  .feature-block.feature-block--hero .row {
    align-items: flex-start;
  }
}

.feature-block.feature-block--hero .feature-block__content {
  z-index: 1;
  position: relative;
}

@media screen and (width <= 991px) {
  .feature-block.feature-block--hero .feature-block__content {
    padding-top: 11rem;
  }
}

.feature-block.feature-block--hero .feature-block__content h1, .feature-block.feature-block--hero .feature-block__content h2, .feature-block.feature-block--hero .feature-block__content h3, .feature-block.feature-block--hero .feature-block__content h4, .feature-block.feature-block--hero .feature-block__content h5, .feature-block.feature-block--hero .feature-block__content h6 {
  color: #fff;
}

.feature-block.feature-block--hero .feature-block__content strong {
  color: var(--theamericas);
}

.feature-block.feature-block--hero .feature-block__content p {
  color: var(--cream);
}

@media screen and (width <= 991px) {
  .feature-block.feature-block--hero .feature-block__content p {
    color: #fff;
  }
}

@media screen and (width >= 992px) {
  .feature-block.feature-block--hero.image-left .feature-block__image:after {
    background: linear-gradient(270.37deg, #000c 20.05%, #0000 105.4%);
  }
}

.logo-wall__title {
  color: var(--darkgreen);
  text-transform: uppercase;
  letter-spacing: -.03em;
  text-align: center;
  margin-bottom: 1rem;
  font-family: PraterSans;
  line-height: 2.4rem;
}

@media screen and (width <= 991px) {
  .logo-wall__title {
    font-size: 1.4rem;
  }
}

.logo-wall .items {
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem 7rem;
  display: flex;
}

.logo-wall .items .item img {
  max-height: 7rem;
}

@media (width <= 991px) {
  .logo-wall .items {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    display: flex;
  }

  .logo-wall .items::-webkit-scrollbar {
    display: none;
  }

  .logo-wall .items .item {
    flex: none;
  }

  .logo-wall .items .item img {
    width: auto;
    height: 4rem;
    display: block;
  }
}

.quote-block {
  position: relative;
}

.quote-block:before {
  content: "";
  background: url("leaf.79e2b581.svg") center / contain no-repeat;
  width: 19.8rem;
  height: 30.2rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (width <= 991px) {
  .quote-block:before {
    background-position: 0;
    width: 10rem;
    height: 14rem;
    top: 5rem;
    left: -2rem;
  }
}

.quote-block h2.quote-block__content {
  margin-top: 12rem;
  padding-top: 12rem;
  position: relative;
}

.quote-block h2.quote-block__content:before {
  content: "“";
  color: var(--green);
  font-family: PraterSans;
  font-size: 16rem;
  line-height: 1;
  display: block;
  position: absolute;
  top: 2rem;
  left: 0;
}

@media screen and (width <= 991px) {
  .quote-block h2.quote-block__content {
    margin-top: 0;
    padding-top: 8rem;
    padding-left: 4.8rem;
    font-size: 3rem;
    line-height: 97%;
  }

  .quote-block h2.quote-block__content:before {
    font-size: 12rem;
    left: 2.4rem;
  }
}

.stats-block .row:first-child {
  align-items: flex-end;
  margin-bottom: 6rem;
}

.stats-block .rich-text .stats-block__title {
  margin-bottom: 0;
}

.stats-block .rich-text .stats-block__title strong {
  color: var(--green);
}

@media screen and (width <= 991px) {
  .stats-block .rich-text .stats-block__title {
    margin-bottom: 3rem;
    font-size: 4rem;
    line-height: 110%;
  }

  .stats-block .rich-text .stats-block__title strong {
    display: block;
  }
}

.stats-block .rich-text .stats-block__description h5 {
  margin-bottom: 1.6rem;
}

@media screen and (width <= 991px) {
  .stats-block .rich-text .stats-block__description p {
    font-size: 1.8rem;
  }
}

.stats-block__media {
  aspect-ratio: 1;
  width: 110%;
  position: relative;
}

.stats-block__media:before {
  content: "";
  background: url("leaf02.459a8bfb.svg") center / contain no-repeat;
  width: 20.5rem;
  height: 28.1rem;
  display: block;
  position: absolute;
  top: 1rem;
  left: -12rem;
}

.stats-block__media img, .stats-block__media video {
  z-index: 1;
  position: relative;
  mask-image: url("mask-stat.d71d9ec7.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.stats-block__media:after {
  content: "";
  z-index: 2;
  background: url("certified.d76008ef.png") center / contain no-repeat;
  width: 17rem;
  height: 12.7rem;
  display: block;
  position: absolute;
  top: 8rem;
  left: -5rem;
}

@media screen and (width <= 991px) {
  .stats-block__media {
    width: 92%;
    margin-bottom: 4rem;
    margin-left: auto;
  }

  .stats-block__media:before {
    width: 13.5rem;
    height: 18.3rem;
    top: -2rem;
    left: -4rem;
  }

  .stats-block__media:after {
    width: 12.4rem;
    height: 9.2rem;
    top: 6rem;
    left: -3rem;
  }
}

.stats-block .btn {
  margin-top: 1.2rem;
}

@media screen and (width <= 991px) {
  .stats-block .btn {
    margin-left: auto;
    display: flex;
  }
}

.stats-block .swiper-pagination {
  justify-content: center;
  align-items: center;
  gap: 4px;
  height: 100%;
  display: flex;
  position: relative;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
}

.stats-block .swiper-pagination-bullet {
  background-color: var(--darkgreen);
  width: 1rem;
  height: 1rem;
  transition: all .4s var(--smooth);
  opacity: 1;
  border-radius: 50%;
  margin: 0 !important;
}

.stats-block .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--green);
  border-radius: 60px;
  width: 3.3rem;
}

.stats-block .stats {
  padding: 0 6%;
}

@media screen and (width <= 991px) {
  .stats-block .stats {
    width: calc(100% + 4.8rem);
    margin-bottom: 2.4rem;
    margin-left: -2.4rem;
    padding: 0 2.4rem;
  }
}

.stats-block .stats__item {
  align-items: center;
  margin-bottom: .5rem;
  padding: 1rem 4rem;
  display: flex;
  position: relative;
}

.stats-block .stats__item:before {
  content: "";
  background: url("stats-bg.db7edfeb.png") center / contain no-repeat;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.stats-block .stats__item__value {
  letter-spacing: -.02em;
  color: var(--green);
  width: 50%;
  font-family: PraterSans;
  font-size: 9rem;
  position: relative;
}

@media screen and (width >= 992px) and (width <= 1200px) {
  .stats-block .stats__item__value {
    font-size: 6rem;
  }
}

.stats-block .stats__item__info {
  width: 50%;
  position: relative;
}

.stats-block .stats__item__info p {
  color: var(--darkgreen);
  font-family: CastleDownBold;
}

@media screen and (width >= 992px) and (width <= 1200px) {
  .stats-block .stats__item__info p {
    font-size: 1.4rem;
  }
}

@media screen and (width <= 991px) {
  .stats-block .stats__item {
    width: 30.4rem;
    height: 21.5rem;
    padding: 3rem 2.4rem 0;
    display: block;
  }

  .stats-block .stats__item:before {
    background-image: url("stats-bg-mobile.a7931b4e.png");
  }

  .stats-block .stats__item__value {
    width: 100%;
    margin-bottom: 1rem;
    font-size: 6rem;
    line-height: 1;
  }

  .stats-block .stats__item__info {
    width: 100%;
  }

  .stats-block .stats__item__info p {
    line-height: 1.2;
  }
}

.accordion-block__content p {
  padding-right: 15%;
}

@media screen and (width <= 991px) {
  .accordion-block__content {
    margin-bottom: 3.2rem;
  }
}

.accordion-block .accordion-item {
  color: #fff;
  background: none;
  border: none;
  margin-bottom: 1rem;
}

.accordion-block .accordion-button {
  background: var(--darkgreen);
  box-shadow: none;
  letter-spacing: -.03em;
  color: #fff;
  border-radius: 23px;
  padding: 1.8rem 1.2rem 1.8rem 4.6rem;
  font-family: CastleDownBold;
  font-size: 1.8rem;
}

.accordion-block .accordion-button:after {
  background-image: url("accordion-arrow.1a38e8e8.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 4.8rem;
  height: 4.8rem;
  margin-left: auto;
  transform: none;
}

.accordion-block .accordion-button:not(.collapsed):after {
  background-image: url("accordion-arrow-active.29d5ed8f.svg");
  transform: none;
}

@media screen and (width <= 991px) {
  .accordion-block .accordion-button {
    padding: 1.6rem 2rem;
  }
}

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

.accordion-block .accordion-button:not(.collapsed) {
  background: var(--darkgreen);
  box-shadow: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion-block .accordion-collapse {
  border: none;
}

.accordion-block .accordion-body {
  background: var(--darkgreen);
  border-bottom-right-radius: 23px;
  border-bottom-left-radius: 23px;
  padding: 0 4.8rem 5.4rem;
}

@media screen and (width <= 991px) {
  .accordion-block .accordion-body {
    padding-left: 2rem;
  }
}

.accordion-block .accordion-body.rich-text p, .accordion-block .accordion-body.rich-text a, .accordion-block .accordion-body.rich-text ul li, .accordion-block .accordion-body.rich-text ol li {
  color: #fff;
}

.accordion-block .accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
}

.accordion-block .accordion-item:last-of-type > .accordion-header .accordion-button {
  border-bottom-right-radius: 23px;
  border-bottom-left-radius: 23px;
}

.accordion-block .accordion-item:last-of-type > .accordion-header .accordion-button:not(.collapsed) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.fun-facts {
  overflow: hidden;
}

@media screen and (width <= 991px) {
  .fun-facts .rich-text h2 {
    font-size: 4rem;
  }
}

.fun-facts .wrapper {
  position: relative;
}

.fun-facts .wrapper:before {
  content: "";
  background: url("leaf03.a098105b.svg") center / contain no-repeat;
  width: 16.7rem;
  height: 26.7rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.fun-facts .swiper {
  overflow: initial;
}

.fun-facts__item.swiper-slide {
  background: url("bg-card.94deaec8.svg") center / contain no-repeat;
  width: 30.3rem;
  height: 38.3rem;
  padding: 5rem 4rem 2rem 2rem;
}

.fun-facts__item.swiper-slide.rich-text h4 {
  margin-bottom: 1.2rem;
}

@media screen and (width <= 991px) {
  .fun-facts__item.swiper-slide.rich-text p {
    font-size: 1.8rem;
  }
}

.header {
  z-index: 20;
  width: 100%;
  height: 12.5rem;
  position: fixed;
  top: 0;
  left: 0;
}

@media screen and (width <= 1399px) {
  .header .btn--tickets {
    display: none;
  }
}

.header__tickets {
  opacity: 0;
  background: url("bg-menu-tickets.82db3bcb.svg") center / contain no-repeat;
  width: 24.1rem;
  height: 32.3rem;
  padding-top: 6rem;
  position: absolute;
  top: 8px;
  right: -8px;
}

@media screen and (width <= 991px) {
  .header__tickets {
    right: 16px;
  }
}

.header__tickets__close {
  appearance: none;
  background: url("icon-close.9dcfde7a.svg") center / contain no-repeat;
  border: none;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  position: absolute;
  top: 2rem;
  right: 3rem;
}

.header__tickets > a {
  text-transform: uppercase;
  text-align: center;
  color: var(--darkgreen);
  transition: color .4s var(--smooth);
  margin: 2rem auto 0;
  font-family: PraterSans;
  font-size: 2rem;
  display: table;
}

.header__tickets > a:hover {
  color: #4b2f2f;
}

.header__tickets ul li {
  padding: 0 2.6rem;
}

.header__tickets ul li a {
  color: var(--darkgreen);
  text-transform: uppercase;
  transition: color .4s var(--smooth);
  padding-left: 1rem;
  font-family: PraterSans;
  font-size: 1.6rem;
}

.header__tickets ul li a:hover {
  color: #4b2f2f;
}

.header__tickets ul li + li {
  margin-top: 1rem;
  position: relative;
}

.header__tickets ul li + li:before {
  content: "";
  background: url("separator.f119c7b8.svg") center / contain no-repeat;
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  top: -1rem;
  left: 0;
}

.header__tickets ul li + li:last-child:after {
  content: "";
  background: url("separator.f119c7b8.svg") center / contain no-repeat;
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  bottom: -.5rem;
  left: 0;
}

@media screen and (width <= 991px) {
  .header {
    height: 9.8rem;
  }
}

.header .tickets-mobile {
  appearance: none;
  background: none;
  border: none;
  height: 5.2rem;
  margin: 0 0 0 8px;
  padding: 0 0 0 8px;
  font-family: CastledownHeavy;
  display: none;
  position: relative;
}

.header .tickets-mobile:before {
  content: "";
  z-index: -1;
  background: url("btn-52.9cf64d8d.svg") center / 100% 100% no-repeat;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.header .tickets-mobile:after {
  content: "";
  background: url("icon-ticket.926656c1.svg") center / contain no-repeat;
  flex-shrink: 0;
  width: 3.8rem;
  height: 3.8rem;
  display: block;
}

@media screen and (width <= 1399px) {
  .header .tickets-mobile {
    color: var(--darkgreen);
    align-items: center;
    font-size: 1.2rem;
    display: inline-flex;
  }
}

@media screen and (width <= 991px) {
  .header .tickets-mobile {
    height: 4.2rem;
    margin-right: 8px;
  }

  .header .tickets-mobile:before {
    background-image: url("btn-42.24321c75.svg");
  }
}

.header:after {
  content: "";
  background: url("header-bg.9aaf0964.svg") top / contain repeat-x;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (width <= 1200px) {
  .header:after {
    background-size: cover;
  }
}

@media screen and (width <= 991px) {
  .header:after {
    background-image: url("header-bg-mobile.71e010fa.svg");
  }
}

.header .submenu-bg {
  will-change: transform;
  width: 100%;
  height: 473px;
  transition: height .3s var(--smooth);
  background: url("bg-submenu.4986320a.svg") bottom / cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-71%);
}

@media screen and (width <= 991px) {
  .header .submenu-bg {
    aspect-ratio: 414 / 775;
    background-image: url("submenu-mobile.97b3c621.svg");
    height: auto;
    top: 8rem;
    transform: translateY(-97%);
  }
}

.header .container {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

@media screen and (width >= 992px) and (width <= 1200px) {
  .header .container {
    max-width: 992px;
  }
}

@media screen and (width <= 991px) {
  .header .container {
    z-index: 3;
  }
}

.header__logo {
  width: 16.5rem;
  height: auto;
}

@media screen and (width <= 1399px) {
  .header__logo {
    width: 13rem;
  }
}

@media screen and (width <= 991px) {
  .header__logo {
    width: 11.1rem;
  }
}

.header__search__results {
  opacity: 0;
  visibility: hidden;
  overscroll-behavior: contain;
  background-color: #efefef;
  border-radius: 0 0 10px 10px;
  width: 58rem;
  max-height: 80vh;
  padding: 2.8rem 0 0;
  position: absolute;
  top: 4rem;
  left: 1rem;
  overflow-y: auto;
}

.header__search__results.show {
  opacity: 1;
  visibility: visible;
}

.header__search__results__title, .header__search__results__category {
  color: var(--darkgreen);
  font-family: CastledownBold;
  font-size: 1.8rem;
}

.header__search__results__title {
  padding-left: 2.8rem;
}

.header__search__results__category {
  margin: 2.2rem 0 1.6rem;
  padding-left: 3.4rem;
}

.header__search__results hr {
  border-color: #999;
  border-radius: 11px;
  margin: 2.4rem 3.4rem;
}

.header__search__results .item {
  margin-bottom: 1.6rem;
  padding-left: 3.4rem;
  padding-right: 4rem;
  position: relative;
}

.header__search__results .item__link {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.header__search__results .item p {
  color: var(--darkgreen);
  font-size: 1.8rem;
}

.header__search__results .item p strong {
  font-family: CastledownBold;
}

.header__search__results .item h6 {
  color: #43360d;
  font-size: 1.4rem;
}

.header__search__results .item h6 strong {
  font-family: CastledownBold;
}

.header__search__results__cta {
  background: var(--theamericas);
  height: 6.8rem;
  color: var(--darkgreen);
  border-radius: 0 0 10px 10px;
  align-items: center;
  gap: 8px;
  margin-top: 2.4rem;
  padding-left: 4rem;
  font-family: Castledown;
  font-size: 1.4rem;
  display: flex;
}

@media screen and (width <= 991px) {
  .header__search__results {
    z-index: 1;
    width: 100%;
    height: auto;
    max-height: 70vh;
    padding-top: 10rem;
    top: 10rem;
    left: 0;
  }
}

.header__content {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.header__content .input-wrapper {
  aspect-ratio: 622 / 58;
  z-index: 1;
  background: url("bg-search-desktop.7f45bc0c.svg") 0 / contain no-repeat;
  position: relative;
}

.header__content .form {
  opacity: 0;
  visibility: hidden;
  width: 60rem;
  position: absolute;
  right: 30rem;
}

@media screen and (width <= 1024px) {
  .header__content .form {
    right: 22rem;
  }
}

.header__content .form__search {
  appearance: none;
  width: 100%;
  height: 100%;
  color: var(--darkgreen);
  letter-spacing: -.4px;
  background-color: #0000;
  border: none;
  padding: 0 6rem 0 2.4rem;
  font-family: CastledownBold;
  font-size: 2rem;
  line-height: 1;
}

.header__content .form__search::placeholder {
  color: var(--darkgreen);
  font-family: CastledownBold;
  font-size: 2rem;
}

.header__content .form__submit {
  appearance: none;
  background: url("icon-search.0005913c.svg") center / contain no-repeat;
  border: none;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  font-size: 0;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
}

@media screen and (width <= 991px) {
  .header__nav {
    display: none;
  }
}

.header__nav__menu {
  align-items: center;
  column-gap: 3.2rem;
  display: flex;
}

@media screen and (width <= 1200px) {
  .header__nav__menu {
    column-gap: 1.2rem;
  }
}

.header__nav__menu .wrap {
  padding: 1rem 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.header__nav__menu .wrap span {
  transition: all .8s var(--smooth);
  display: block;
}

.header__nav__menu .wrap .hover {
  pointer-events: none;
  will-change: transform;
  opacity: 0;
  line-height: 1;
  display: block;
  position: absolute;
  top: 1rem;
  left: 0;
  transform: translateY(200%)translateZ(0);
}

.header__nav__menu .submenu {
  opacity: 0;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
  width: 100%;
  padding-top: 5rem;
  display: flex;
  position: absolute;
  top: 12.5rem;
  left: 0;
}

.header__nav__menu .submenu__menu.is-two-columns {
  grid-template-columns: repeat(2, 1fr);
  gap: .2rem 4rem;
  display: grid;
}

.header__nav__menu .submenu__menu__item {
  line-height: 1;
}

.header__nav__menu .submenu__menu__item__link {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.72px;
  font-family: PraterSans;
  font-size: 2.4rem;
}

.header__nav__menu .submenu__menu__item__link:hover .normal, .header__nav__menu .submenu__menu__item__link.active .normal {
  opacity: 0;
  transform: translateY(-200%)translateZ(0);
}

.header__nav__menu .submenu__menu__item__link:hover .hover, .header__nav__menu .submenu__menu__item__link.active .hover {
  opacity: 1;
  transform: translateY(0)translateZ(0);
}

.header__nav__menu__item__link {
  color: #fff;
  text-transform: uppercase;
  font-family: CastleDownHeavy;
  font-size: 1.4rem;
  line-height: 1;
  position: relative;
}

.header__nav__menu__item__link:before {
  content: "";
  opacity: 0;
  visibility: hidden;
  width: 130%;
  height: 4.8rem;
  transition: all .8s var(--smooth);
  pointer-events: none;
  background: url("menu-hover.f0550c3b.svg") center / contain no-repeat;
  display: block;
  position: absolute;
  top: -.6rem;
  left: 50%;
  transform: translate3d(-50%, 120%, 0);
}

@media screen and (width <= 1399px) {
  .header__nav__menu__item__link {
    font-size: 1.2rem;
  }
}

.header__nav__menu__item__link:hover .normal, .header__nav__menu__item__link.active .normal {
  opacity: 0;
  transform: translateY(-200%)translateZ(0);
}

.header__nav__menu__item__link:hover .hover, .header__nav__menu__item__link.active .hover {
  opacity: 1;
  transform: translateY(0)translateZ(0);
}

.header__nav__menu__item__link:hover:before, .header__nav__menu__item__link.active:before {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0);
}

.header__nav__menu__item.parent .header__nav__menu__item__link:before {
  top: 0;
  left: 45%;
}

.header__nav__menu__item.parent .header__nav__menu__item__link .normal, .header__nav__menu__item.parent .header__nav__menu__item__link .hover {
  align-items: center;
  column-gap: 6px;
  display: flex;
}

.header__nav__menu__item.parent .header__nav__menu__item__link .normal:after, .header__nav__menu__item.parent .header__nav__menu__item__link .hover:after {
  content: "";
  will-change: transform;
  width: 2.4rem;
  height: 2.4rem;
  transition: transform .4s var(--smooth);
  transform-origin: 30% 55%;
  background: url("arrow-down.c0f266f2.svg") center / contain no-repeat;
  display: block;
}

.header__nav__menu__item.parent .header__nav__menu__item__link.active .normal:after, .header__nav__menu__item.parent .header__nav__menu__item__link.active .hover:after {
  transform: rotate(180deg);
}

.header .submenu__featured {
  width: 52rem;
  height: 22rem;
  position: relative;
  mask-image: url("submenu-featured.50474aa4.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

@media screen and (width <= 767px) {
  .header .submenu__featured {
    width: 80%;
    height: 14.7rem;
    margin: 5rem auto 0;
  }
}

.header .submenu__featured__img {
  width: 100%;
  height: 100%;
  position: relative;
}

.header .submenu__featured__img:after {
  content: "";
  background: linear-gradient(260deg, #68513900 10.02%, #382c2099 90%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.header .submenu__featured__content {
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 0 0 2.8rem 3.8rem;
  display: flex;
  position: absolute;
  inset: 0;
}

.header .submenu__featured__content > div {
  max-width: 19rem;
}

.header .submenu__featured__content h4 {
  color: #fff;
  margin-bottom: 1.6rem;
}

.header .submenu__featured__content p {
  color: var(--theamericas);
  text-transform: uppercase;
  letter-spacing: -.8px;
  font-family: PraterSans;
  font-size: 2rem;
  line-height: 1;
}

@media screen and (width <= 991px) {
  .header .submenu__featured__content {
    padding: 0 0 0 2.4rem;
  }

  .header .submenu__featured__content p {
    letter-spacing: -.4px;
    font-size: 1.6rem;
  }
}

.header .submenu__featured__link {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.header__search {
  appearance: none;
  background: url("bg-search-btn.a3d15451.svg") center / contain no-repeat;
  border: none;
  width: 4.9rem;
  height: 5.2rem;
  margin-left: 5.2rem;
  padding: 0;
  position: relative;
}

@media screen and (width <= 1200px) {
  .header__search {
    margin-left: 2rem;
  }
}

.header__search:after {
  content: "";
  background: url("search.41637273.svg") center / contain no-repeat;
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header__map {
  background: url("map.663b9078.svg") center / contain no-repeat;
  width: 4.9rem;
  height: 5.2rem;
  margin-left: 1rem;
  margin-right: 1.2rem;
  display: block;
}

@media screen and (width <= 991px) {
  .header__map {
    width: 3.9rem;
    height: 4.2rem;
    margin-left: 0;
    margin-right: 8px;
  }
}

.header__toggle {
  appearance: none;
  background: url("bg-toggle.ad8e28ac.svg") center / contain no-repeat;
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 4.4rem;
  height: 4.2rem;
  padding: 0;
}

.header__toggle .bar {
  fill: var(--darkgreen);
  transform-box: fill-box;
  transform-origin: 50%;
  transition: transform .3s var(--smooth), opacity .2s;
  will-change: transform, opacity;
}

.header__toggle.is-open .bar--mid {
  opacity: 0;
  transform: scale(0);
}

.header__toggle.is-open .bar--top {
  transform: translateY(7px)rotate(45deg);
}

.header__toggle.is-open .bar--bottom {
  transform: translateY(-7px)rotate(-45deg);
}

.header .mobile-menu {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  padding-top: 11.3rem;
  position: absolute;
  top: 0;
  left: 0;
}

.header .mobile-menu__nav {
  padding-top: 3.6rem;
}

.header .mobile-menu__nav__menu__item {
  text-align: center;
  justify-content: center;
  display: flex;
}

.header .mobile-menu__nav__menu__item__link {
  color: #fff;
  text-transform: uppercase;
  font-family: PraterSans;
  font-size: 2.4rem;
  line-height: 170%;
}

.header .mobile-menu__nav__menu__item.parent {
  text-align: center;
  margin: 0 auto;
  display: table;
}

.header .mobile-menu__nav__menu__item.parent .mobile-menu__nav__menu__item__link {
  position: relative;
}

.header .mobile-menu__nav__menu__item.parent .mobile-menu__nav__menu__item__link:after {
  content: "";
  will-change: transform;
  width: 2.4rem;
  height: 2.4rem;
  transition: transform .2s var(--smooth);
  transform-origin: 30% 55%;
  background: url("arrow-down.c0f266f2.svg") center / contain no-repeat;
  display: block;
  position: absolute;
  top: .3rem;
  right: -3.8rem;
}

.header .mobile-menu__nav__menu__item.parent.is-open .mobile-menu__nav__menu__item__link:after {
  transform: rotate(180deg);
}

.header .mobile-menu .submenu {
  text-align: center;
  height: 0;
  position: relative;
  overflow: hidden;
}

.header .mobile-menu .submenu__item__link {
  text-transform: uppercase;
  color: #fff;
  font-family: PraterSans;
  font-size: 1.6rem;
}

.header .mobile-menu .input-wrapper {
  aspect-ratio: 368 / 63;
  z-index: 2;
  background: url("search-mobile.56389192.svg") 0 / contain no-repeat;
  position: relative;
}

.header .mobile-menu .form {
  padding: 0 2.4rem;
}

.header .mobile-menu .form__search {
  appearance: none;
  width: 100%;
  height: 100%;
  color: var(--darkgreen);
  letter-spacing: -.4px;
  background-color: #0000;
  border: none;
  padding: 0 6rem 0 2.4rem;
  font-family: CastledownBold;
  font-size: 2rem;
  line-height: 1;
}

.header .mobile-menu .form__search::placeholder {
  color: var(--darkgreen);
  font-family: CastledownBold;
  font-size: 2rem;
}

.header .mobile-menu .form__submit {
  appearance: none;
  background: url("icon-search.0005913c.svg") center / contain no-repeat;
  border: none;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  font-size: 0;
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
}

.cross-sell-block {
  --gap: 2rem;
}

.cross-sell-block .row {
  column-gap: var(--gap);
  margin-bottom: 4rem;
}

.cross-sell-block .row:last-child {
  margin-bottom: 0;
}

.cross-sell-block__item {
  flex: none;
}

@media screen and (width >= 992px) {
  .cross-sell-block__item:hover .btn:before {
    transform: scaleX(1.08)skewX(4deg)translateZ(0);
  }

  .cross-sell-block__item:hover .btn__text {
    opacity: 0;
    transform: translateY(-200%)translateZ(0);
  }

  .cross-sell-block__item:hover .btn__anim {
    opacity: 1;
    transform: translateY(0)translateZ(0);
  }
}

.cross-sell-block__item .wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.cross-sell-block__item__link {
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.cross-sell-block__item.is-image {
  aspect-ratio: 384 / 444;
  height: auto;
}

@media screen and (width >= 992px) {
  .cross-sell-block__item.is-image img {
    transition: transform 1s var(--smooth);
  }

  .cross-sell-block__item.is-image:hover img {
    transform: scale(1.1);
  }
}

.cross-sell-block__item.is-image .cross-sell-block__item__img {
  width: 100%;
  height: 100%;
  mask-image: url("cross-sell-mask-default.b9cc9b2f.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.cross-sell-block__item.is-image .cross-sell-block__item__img:after {
  content: "";
  background: linear-gradient(216deg, #2d1c0b00 6.4%, #2d1c0be6 91.27%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.cross-sell-block__item.is-image .cross-sell-block__item__content {
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 5rem;
  display: flex;
  position: absolute;
  inset: 0;
}

.cross-sell-block__item.is-image .cross-sell-block__item__content .content {
  width: 80%;
  padding-left: 10%;
}

@media screen and (width >= 992px) and (width <= 1024px) {
  .cross-sell-block__item.is-image .cross-sell-block__item__content .content p {
    margin-bottom: 1rem;
  }
}

.cross-sell-block__item.is-image .cross-sell-block__item__content .content h3 {
  margin-bottom: 9rem;
}

@media screen and (width >= 992px) and (width <= 1024px) {
  .cross-sell-block__item.is-image .cross-sell-block__item__content .content h3 {
    margin-bottom: 0;
  }
}

@media screen and (width <= 991px) {
  .cross-sell-block__item.is-image .cross-sell-block__item__content .content h3 {
    margin-bottom: 3rem;
    font-size: 3.6rem;
    line-height: 110%;
  }

  .cross-sell-block__item.is-image .cross-sell-block__item__content .content h2 {
    font-size: 4rem;
  }

  .cross-sell-block__item.is-image .cross-sell-block__item__content .content h4 {
    font-size: 3rem;
    line-height: 110%;
  }
}

.cross-sell-block__item.is-image .cross-sell-block__item__content .content > * {
  color: #fff;
}

.cross-sell-block__item.is-pattern {
  height: 30.2rem;
  margin-bottom: 4rem;
}

.cross-sell-block__item.is-pattern .wrap {
  background: url("cross-sell-pattern01.9343ab11.svg") 0 / contain no-repeat;
}

.cross-sell-block__item.is-pattern:nth-child(2) .wrap {
  background-image: url("cross-sell-pattern02.8a7b56ad.svg");
}

.cross-sell-block__item.is-pattern:nth-child(3) .wrap {
  background-image: url("cross-sell-pattern03.c0d5501a.svg");
}

.cross-sell-block__item.is-pattern .pattern-cta {
  z-index: 1;
  align-items: center;
  width: 25rem;
  display: flex;
  position: absolute;
  bottom: 4rem;
  left: 2.4rem;
}

.cross-sell-block__item.is-pattern .pattern-cta span {
  color: #fff;
  letter-spacing: -.6px;
  text-transform: uppercase;
  width: calc(100% - 8rem);
  padding-right: 1rem;
  font-family: PraterSans;
  font-size: 3rem;
  line-height: 110%;
}

.cross-sell-block__item.is-pattern .pattern-cta:after {
  content: "";
  width: 6.8rem;
  height: 6.5rem;
  transition: transform 1s var(--smooth);
  will-change: transform;
  background: url("arrow-cream.5ebc785e.svg") center / contain no-repeat;
  display: block;
}

@media screen and (width >= 992px) {
  .cross-sell-block__item.is-pattern:hover .pattern-cta:after {
    transform: scale(1.1)translateX(2rem);
  }
}

.cross-sell-block__item.is-pattern .cross-sell-block__item__img {
  width: 36rem;
  height: 36rem;
  position: absolute;
  right: -2rem;
}

@media screen and (width <= 1200px) and (width >= 992px) {
  .cross-sell-block__item.is-pattern .cross-sell-block__item__img {
    width: 26rem;
    height: 26rem;
  }
}

.cross-sell-block__item.is-pattern .cross-sell-block__item__img img {
  object-fit: contain;
}

.cross-sell-block .row:has(.cross-sell-block__item:first-child:last-child) .cross-sell-block__item {
  aspect-ratio: 1179 / 436;
  width: 100%;
  height: auto;
}

@media screen and (width <= 991px) {
  .cross-sell-block .row:has(.cross-sell-block__item:first-child:last-child) .cross-sell-block__item {
    aspect-ratio: 383 / 607;
  }
}

.cross-sell-block .row:has(.cross-sell-block__item:first-child:last-child) .cross-sell-block__item.is-image .cross-sell-block__item__img {
  mask-image: url("cross-sell-mask-single.66cecc69.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

@media screen and (width <= 991px) {
  .cross-sell-block .row:has(.cross-sell-block__item:first-child:last-child) .cross-sell-block__item.is-image .cross-sell-block__item__img {
    mask-image: url("cross-sell-mask-mobile.c768fd4a.svg");
    mask-position: 50%;
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
  }
}

@media screen and (width >= 992px) {
  .cross-sell-block .row:has(.cross-sell-block__item:first-child:last-child) .cross-sell-block__item.is-image .content {
    width: 55%;
  }

  .cross-sell-block .row:has(.cross-sell-block__item:nth-child(2):last-child) .cross-sell-block__item:first-child {
    width: calc((var(--container-width)) / 12 * 8 - var(--gap));
  }
}

.cross-sell-block .row:has(.cross-sell-block__item:nth-child(2):last-child) .cross-sell-block__item:first-child {
  aspect-ratio: 773 / 436;
  height: auto;
}

@media screen and (width <= 991px) {
  .cross-sell-block .row:has(.cross-sell-block__item:nth-child(2):last-child) .cross-sell-block__item:first-child {
    aspect-ratio: 383 / 607;
  }
}

.cross-sell-block .row:has(.cross-sell-block__item:nth-child(2):last-child) .cross-sell-block__item:first-child.is-image .cross-sell-block__item__img {
  mask-image: url("cross-sell-mask-two.ec45ec5a.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

@media screen and (width >= 992px) {
  .cross-sell-block .row:has(.cross-sell-block__item:nth-child(2):last-child) .cross-sell-block__item:first-child.is-image .cross-sell-block__item__img:after {
    background: linear-gradient(106deg, #2d1c0b00 32.78%, #2d1c0b 98.42%);
    transform: rotate(180deg);
  }
}

@media screen and (width <= 991px) {
  .cross-sell-block .row:has(.cross-sell-block__item:nth-child(2):last-child) .cross-sell-block__item:first-child.is-image .cross-sell-block__item__img {
    mask-image: url("cross-sell-mask-mobile.c768fd4a.svg");
    mask-position: 50%;
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
  }
}

@media screen and (width >= 992px) {
  .cross-sell-block .row:has(.cross-sell-block__item:nth-child(2):last-child) .cross-sell-block__item:last-child, .cross-sell-block .row:has(.cross-sell-block__item:nth-child(3)) .cross-sell-block__item {
    width: calc((var(--container-width)) / 12 * 4 - var(--gap));
  }
}

.cross-sell-block .row:has(.cross-sell-block__item:nth-child(3)) .cross-sell-block__item:nth-child(2).is-image .cross-sell-block__item__img {
  mask-image: url("cross-sell-mask-bis.138d528d.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.cross-sell-block .row:has(.cross-sell-block__item:nth-child(3)) {
  justify-content: space-between;
}

.video-block .wrap {
  background-color: var(--darkgreen);
  aspect-ratio: 1440 / 793;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding-top: 4.8rem;
  display: flex;
  mask-image: url("feature-hero-mask.a07c1f9f.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

@media screen and (width >= 768px) and (width <= 1024px) {
  .video-block .wrap {
    padding-top: 2rem;
  }
}

@media screen and (width <= 991px) {
  .video-block .wrap {
    aspect-ratio: 414 / 368;
    mask-image: url("video-mask-mobile.67abe579.svg");
  }
}

.video-block__content {
  text-align: center;
  margin-bottom: 3.2rem;
  position: relative;
}

@media screen and (width >= 768px) and (width <= 1024px) {
  .video-block__content h3 {
    font-size: 3rem;
  }
}

.video-block__content h1, .video-block__content h2, .video-block__content h3, .video-block__content h4, .video-block__content h5, .video-block__content h6, .video-block__content p {
  color: var(--cream);
}

.video-block .wrapper {
  aspect-ratio: 16 / 9;
}

.video-block .wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.video-block.is-pattern .wrap {
  background: var(--green);
  position: relative;
}

.video-block.is-pattern .wrap:before {
  content: "";
  mix-blend-mode: darken;
  background: url("pattern.60beec9b.png") center / cover no-repeat;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.video-block.is-pattern .wrap .container {
  z-index: 1;
  position: relative;
}

.video-block .video-container {
  border-radius: 37px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.video-block .video-container .media {
  width: 100%;
  height: 100%;
}

.video-block .video-container .video {
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.play-video {
  appearance: none;
  background: url("play.95ee35d3.svg") center / contain no-repeat;
  border: none;
  width: 9.3rem;
  height: 9rem;
  padding: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (width <= 991px) {
  .play-video {
    width: 6rem;
  }
}

.item-cards {
  overflow: hidden;
}

.item-cards .wrapper {
  position: relative;
}

.item-cards .events-tags {
  gap: 8px;
  display: flex;
}

.item-cards .card-news__content .events-tags {
  position: absolute;
  top: -1rem;
}

.item-cards .card-news__content .events-tags .category {
  position: relative;
  inset: auto;
}

.item-cards .special-event {
  color: #43311d;
  text-transform: uppercase;
  background: #e8c046;
  border-radius: 7px;
  align-items: center;
  height: 2rem;
  padding: 0 1rem 1px;
  font-family: CastledownBold;
  font-size: 1.2rem;
  display: flex;
  position: relative;
}

.item-cards .special-event:after {
  content: "";
  background: url("special-event.6c72b81b.svg") center / contain no-repeat;
  width: 4.6rem;
  height: 4.5rem;
  display: block;
  position: absolute;
  top: -3.2rem;
  right: -3.6rem;
}

.item-cards .swiper {
  overflow: initial;
  margin-top: 4.8rem;
}

@media screen and (width <= 991px) {
  .item-cards .swiper {
    margin-top: 2.4rem;
  }
}

.item-cards__top {
  align-items: flex-end;
}

@media screen and (width >= 992px) {
  .item-cards__top h1, .item-cards__top h2, .item-cards__top h3 {
    margin-bottom: 0;
  }
}

@media screen and (width <= 991px) {
  .item-cards__top h2 {
    font-size: 4rem;
  }
}

.item-cards__item {
  will-change: transform;
  position: relative;
  transform: translateZ(0);
}

.item-cards__item__img {
  width: 100%;
  height: 100%;
  position: relative;
}

.item-cards__item__img img {
  transition: transform 1s var(--smooth);
  will-change: transform;
}

.item-cards__item__img:after {
  content: "";
  background: linear-gradient(#0006 1.35%, #0000 91.3%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  transform: translateZ(0);
}

.item-cards__item__content {
  z-index: 1;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0;
}

.item-cards__item__content .description {
  line-clamp: 5;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  margin-bottom: 2.4rem;
  display: -webkit-box;
  overflow: hidden;
}

.item-cards__item__content .time {
  color: #322920;
  text-transform: uppercase;
  background: var(--theamericas);
  border-radius: 7px;
  justify-content: center;
  align-items: center;
  height: 2rem;
  margin-bottom: 1.8rem;
  padding: 0 5px;
  font-family: PraterSans;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
}

.item-cards__item__content.rich-text, .item-cards__item__content.rich-text h1, .item-cards__item__content.rich-text h2, .item-cards__item__content.rich-text h3, .item-cards__item__content.rich-text h4, .item-cards__item__content.rich-text h5, .item-cards__item__content.rich-text h6, .item-cards__item__content.rich-text p {
  color: #fff;
}

@media screen and (width <= 991px) {
  .item-cards__item__content.rich-text h5 {
    font-size: 2.4rem;
    line-height: 1;
  }
}

.item-cards__item__content.rich-text strong {
  color: var(--theamericas);
}

.item-cards__item__link {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

@media screen and (width >= 992px) {
  .item-cards__item:hover .item-cards__item__img img {
    transform: scale(1.1);
  }
}

.item-cards.is-events.is-mask .events-tags {
  margin-bottom: 1.6rem;
}

.item-cards.is-simple .item-cards__item {
  aspect-ratio: 251 / 349;
  width: 25.1rem;
  mask-image: url("item-cards-simple.5044e919.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.item-cards.is-simple .item-cards__item__content {
  padding: 4rem 2rem;
}

.item-cards.is-simple .item-cards__item__content h1, .item-cards.is-simple .item-cards__item__content h2, .item-cards.is-simple .item-cards__item__content h3, .item-cards.is-simple .item-cards__item__content h4, .item-cards.is-simple .item-cards__item__content h5, .item-cards.is-simple .item-cards__item__content h6 {
  margin-bottom: 0;
}

.item-cards.is-simple .item-cards__item.title-bottom .item-cards__item__content {
  align-items: flex-end;
}

.item-cards.is-simple .item-cards__item.title-bottom .item-cards__item__img:after {
  background: linear-gradient(190deg, #0000 8.23%, #0009 92.73%);
}

.item-cards.is-simple:not(.is-conservations, .is-events) .wrapper:before {
  content: "";
  background: url("leaf04.640c4f43.svg") center / contain no-repeat;
  width: 15.3rem;
  height: 25.2rem;
  display: block;
  position: absolute;
  top: 14%;
  right: 0;
}

@media screen and (width <= 991px) {
  .item-cards.is-simple:not(.is-conservations, .is-events) .wrapper:before {
    display: none;
  }
}

.item-cards.is-simple:not(.is-conservations, .is-events) .item-cards__item:nth-child(4n+1) .item-cards__item__content {
  text-align: center;
  justify-content: center;
  width: 80%;
  margin: 0 auto;
}

.item-cards.is-simple:not(.is-conservations, .is-events) .item-cards__item:nth-child(4n) .item-cards__item__content {
  text-align: right;
}

.item-cards.is-simple.is-events.no-infobox .wrapper:before {
  content: "";
  background: url("leaf06.790f7c36.svg") center / contain no-repeat;
  width: 16.1rem;
  height: 33.7rem;
  display: block;
  position: absolute;
  top: 14%;
  left: 0;
}

@media screen and (width <= 991px) {
  .item-cards.is-simple.is-events.no-infobox .wrapper:before {
    display: none;
  }
}

.item-cards.is-simple.is-conservations .item-cards__item__content, .item-cards.is-simple.is-events .item-cards__item__content {
  align-items: flex-end;
}

.item-cards.is-simple.is-conservations .item-cards__item__img:after, .item-cards.is-simple.is-events .item-cards__item__img:after {
  background: linear-gradient(186deg, #2d1c0b00 28.97%, #2d1c0be6 86.17%);
}

.item-cards.is-detailed .item-cards__item {
  aspect-ratio: 384 / 444;
  width: 38.4rem;
  mask-image: url("item-cards-detailed.46333c06.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

@media screen and (width <= 991px) {
  .item-cards.is-detailed .item-cards__item {
    width: 34rem;
  }
}

.item-cards.is-detailed .item-cards__item__img:after {
  background: linear-gradient(216deg, #2d1c0b00 6.4%, #2d1c0be6 91.27%);
}

.item-cards.is-detailed .item-cards__item__content {
  align-items: flex-end;
  padding: 0 4rem 4rem 3rem;
}

.item-cards.is-detailed .item-cards__item__content h4 {
  margin-bottom: 2.4rem;
}

@media screen and (width <= 991px) {
  .item-cards.is-detailed .item-cards__item__content h4 {
    font-size: 3rem;
    line-height: 110%;
  }
}

.item-cards.is-news .wrapper {
  background: var(--green);
  padding: 10rem 0 8rem;
  position: relative;
}

.item-cards.is-news .wrapper:after {
  content: "";
  background: url("top.40d7a4bd.svg") top / contain no-repeat;
  width: 100%;
  padding-bottom: 5%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (width <= 991px) {
  .item-cards.is-news .wrapper:after {
    background-image: url("top-mobile.6ba039ba.svg");
  }
}

.item-cards.is-news .wrapper:before {
  content: "";
  mix-blend-mode: darken;
  background: url("pattern.60beec9b.png") center / cover no-repeat;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.item-cards.is-news .item-cards__top h1, .item-cards.is-news .item-cards__top h2, .item-cards.is-news .item-cards__top h3, .item-cards.is-news .item-cards__top h4 {
  color: #fff;
}

.item-cards.is-news .item-cards__top h1 strong, .item-cards.is-news .item-cards__top h2 strong, .item-cards.is-news .item-cards__top h3 strong, .item-cards.is-news .item-cards__top h4 strong {
  color: var(--theamericas);
}

.item-cards.is-news .item-cards__top p {
  color: #fff;
}

.item-cards.is-news .nav-wrapper .swiper-button-prev, .item-cards.is-news .nav-wrapper .swiper-button-next {
  background-image: url("btn-arrow-darkgreen.a567ecdb.svg");
}

.item-cards.is-mask .wrapper {
  background-color: var(--darkgreen);
  padding: 10rem 0 8rem;
  position: relative;
}

.item-cards.is-mask .wrapper .top {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.item-cards.is-mask .wrapper .bottom {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.item-cards.is-mask .item-cards__top h1, .item-cards.is-mask .item-cards__top h2, .item-cards.is-mask .item-cards__top h3, .item-cards.is-mask .item-cards__top h4 {
  color: #fff;
  margin-bottom: 3rem;
}

.item-cards.is-mask .item-cards__top h1 strong, .item-cards.is-mask .item-cards__top h2 strong, .item-cards.is-mask .item-cards__top h3 strong, .item-cards.is-mask .item-cards__top h4 strong {
  color: #83b441;
}

.item-cards.is-mask .item-cards__top p {
  color: #fff;
}

.item-cards.is-mask .swiper {
  height: 656px;
  margin-top: 0;
}

@media screen and (width <= 991px) {
  .item-cards.is-mask .swiper {
    height: auto;
  }
}

.item-cards.is-mask .swiper-wrapper {
  align-items: flex-end;
  gap: 16px;
  margin-top: -27rem;
  display: flex;
}

@media screen and (width <= 991px) {
  .item-cards.is-mask .swiper-wrapper {
    align-items: initial;
    margin-top: 0;
  }
}

.item-cards.is-mask .item-cards__item {
  aspect-ratio: 314 / 337;
  height: 33.7rem;
  transition: opacity .4s var(--smooth);
  flex-basis: 31.4rem;
  mask-image: url("item-cards-mask-small.db19b705.svg");
  mask-size: 100% 100%;
}

@media screen and (width <= 991px) {
  .item-cards.is-mask .item-cards__item {
    aspect-ratio: 367 / 451;
    flex-basis: 30rem;
    width: 30rem;
    height: auto;
    transform: translate3d(0, 0, 0);
    mask-image: url("item-cards-news.024a8a0d.svg");
    mask-position: center;
    mask-size: 100% 100%;
  }
}

.item-cards.is-mask .item-cards__item__img:after {
  opacity: 0;
  will-change: opacity;
  transition: all .6s var(--smooth);
  background: linear-gradient(247deg, #2d1c0b00 54.08%, #2d1c0be6 96.29%);
}

@media screen and (width <= 991px) {
  .item-cards.is-mask .item-cards__item__img:after {
    opacity: 1;
  }
}

.item-cards.is-mask .item-cards__item__content {
  opacity: 0;
  transition: opacity .4s var(--smooth);
  will-change: opacity;
  align-items: flex-end;
  padding: 0 7.5rem 7rem 4rem;
}

@media screen and (width <= 991px) {
  .item-cards.is-mask .item-cards__item__content {
    opacity: 1;
    padding: 0 4rem 4rem 3rem;
  }
}

.item-cards.is-mask .item-cards__item__content .category {
  color: #43311d;
}

.item-cards.is-mask .item-cards__item__content > div {
  width: 100%;
}

.item-cards.is-mask .item-cards__item__content .wrap {
  padding-right: 30%;
  position: relative;
}

@media screen and (width <= 991px) {
  .item-cards.is-mask .item-cards__item__content .wrap {
    padding-right: 8rem;
  }
}

.item-cards.is-mask .item-cards__item__content .wrap:after {
  content: "";
  background: url("arrow-yellow.9a1315c0.svg") center / contain no-repeat;
  width: 6.8rem;
  height: 6.5rem;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.item-cards.is-mask .item-cards__item__content .wrap .date {
  align-items: center;
  gap: 14px;
  font-family: CastleDownBold;
  font-size: 1.8rem;
  display: flex;
}

.item-cards.is-mask .item-cards__item__content .wrap .date:before {
  content: "";
  background: url("calendar.edde4c74.svg") center / contain no-repeat;
  width: 2.4rem;
  height: 2.4rem;
  display: block;
}

@media screen and (width >= 992px) {
  .item-cards.is-mask .item-cards__item.swiper-slide-active {
    aspect-ratio: 598 / 656;
    flex-basis: 59.8rem;
    height: 65.6rem;
    transform: translateY(4rem);
    mask-image: url("item-cards-mask.539f9904.svg");
  }
}

@media screen and (width >= 1200px) and (width <= 1400px) {
  .item-cards.is-mask .item-cards__item.swiper-slide-active {
    flex-basis: 54rem;
    height: auto;
    mask-position: center;
    mask-size: 100% 100%;
  }
}

.item-cards.is-mask .item-cards__item.swiper-slide-active .item-cards__item__img:after {
  opacity: 1;
}

.item-cards.is-mask .item-cards__item.swiper-slide-active .item-cards__item__content {
  opacity: 1;
  transition-delay: .4s;
}

@media screen and (width <= 991px) {
  .item-cards.is-mask.is-events .item-cards__item__content .wrap {
    padding-right: 0;
  }

  .item-cards.is-mask.is-events .item-cards__item__content .wrap:after {
    display: none;
  }
}

.item-cards.is-events.is-simple:not(.no-infobox) {
  position: relative;
}

.item-cards.is-events.is-simple:not(.no-infobox):before {
  content: "";
  background: url("leaf07.3f3bce94.svg") center / contain no-repeat;
  width: 17.6rem;
  height: 30.1rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (width <= 991px) {
  .item-cards.is-events.is-simple:not(.no-infobox):before {
    display: none;
  }
}

.item-cards .swiper .item-cards__item.infobox {
  width: 38.5rem;
  aspect-ratio: initial;
  mask-image: initial;
  color: #fff;
  background: url("infobox.5a482c21.svg") center / contain no-repeat;
  height: 35.1rem;
  padding: 4rem 5rem 4rem 3rem;
  position: relative;
}

@media screen and (width <= 991px) {
  .item-cards .swiper .item-cards__item.infobox {
    background-image: url("infobox-mobile.9e6963fd.svg");
    width: 32.5rem;
    padding-right: 3rem;
  }
}

.item-cards .swiper .item-cards__item.infobox .rich-text p {
  color: #fff;
  margin-bottom: .4rem;
}

.item-cards .swiper .item-cards__item.infobox p {
  font-family: CastleDownBold;
}

.item-cards .swiper .item-cards__item.infobox .details {
  letter-spacing: -.28px;
  font-size: 1.4rem;
  line-height: 1.2;
  display: block;
}

@media screen and (width <= 991px) {
  .item-cards .swiper .item-cards__item.infobox .details {
    padding-right: 2rem;
  }
}

.item-cards .swiper .item-cards__item.infobox .icon {
  width: 2.2rem;
  height: 2.2rem;
  display: block;
  transform: translateY(2px);
}

.item-cards .swiper .item-cards__item.infobox .icon.clock {
  background: url("clock.02b0803b.svg") center / contain no-repeat;
}

.item-cards .swiper .item-cards__item.infobox .icon.info {
  background: url("info.bf1c718b.svg") center / contain no-repeat;
}

.item-cards .swiper .item-cards__item.infobox .infobox__row {
  column-gap: 12px;
  margin-bottom: 5rem;
  display: flex;
}

@media screen and (width <= 991px) {
  .item-cards .swiper .item-cards__item.infobox .infobox__row {
    margin-bottom: 3rem;
  }
}

.item-cards .swiper .item-cards__item.infobox .infobox__row:last-child {
  margin-bottom: 0;
  position: relative;
}

.item-cards .swiper .item-cards__item.infobox .infobox__row:last-child:before {
  content: "";
  background: url("infobox-separator.8afdc404.svg") center / contain no-repeat;
  width: 100%;
  height: 8px;
  display: block;
  position: absolute;
  top: -3rem;
  left: 0;
}

@media screen and (width <= 991px) {
  .item-cards .swiper .item-cards__item.infobox .infobox__row:last-child:before {
    top: -1.6rem;
  }
}

.item-cards .swiper .item-cards__item.infobox .infobox__row:last-child.rich-text p {
  margin-bottom: 1rem;
}

.item-cards .swiper .item-cards__item.infobox .infobox__row a {
  color: #fff;
  margin-top: 1rem;
  font-size: 1.4rem;
  text-decoration: underline;
  display: table;
}

.item-cards .swiper .item-cards__item.infobox .infobox__row a:hover {
  text-decoration: none;
}

.item-cards .swiper .item-cards__item.infobox .infobox__row__content {
  width: calc(100% - 3.4rem);
}

.item-cards .swiper .item-cards__item.infobox .infobox__row__content__details {
  align-items: center;
  column-gap: 3rem;
  display: flex;
}

@media screen and (width <= 991px) {
  .item-cards .swiper .item-cards__item.infobox .infobox__row__content__details {
    font-size: 1.4rem;
  }
}

.item-cards .swiper .item-cards__item.infobox .infobox__row__content__details .hours {
  position: relative;
}

.item-cards .swiper .item-cards__item.infobox .infobox__row__content__details .hours:after {
  content: "";
  background: url("infobox-line.0df3a8c6.svg") center / contain no-repeat;
  width: 1.7rem;
  height: 1.8rem;
  display: block;
  position: absolute;
  top: .4rem;
  right: -2.4rem;
}

.item-cards .swiper .item-cards__item.infobox:after {
  content: "";
  background: url("monkey.0ad386b5.png") center / contain no-repeat;
  width: 12.5rem;
  height: 12.7rem;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(20%, 30%);
}

.map-block .wrapper {
  background: url("bg-map.880b30b9.png") top / cover no-repeat;
  margin-top: 8rem;
}

@media screen and (width <= 991px) {
  .map-block .wrapper {
    margin-top: 4rem;
  }
}

.map-block__content {
  align-items: center;
  display: flex;
}

@media screen and (width >= 992px) {
  .map-block__content {
    min-height: 67rem;
  }
}

@media screen and (width <= 991px) {
  .map-block__content {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }
}

.map-block__content.rich-text h1, .map-block__content.rich-text h2, .map-block__content.rich-text h3, .map-block__content.rich-text h4, .map-block__content.rich-text h5, .map-block__content.rich-text h6 {
  color: #fff;
}

.map-block__content.rich-text h1 strong, .map-block__content.rich-text h2 strong, .map-block__content.rich-text h3 strong, .map-block__content.rich-text h4 strong, .map-block__content.rich-text h5 strong, .map-block__content.rich-text h6 strong {
  color: var(--theamericas);
}

.map-block__content.rich-text p {
  color: #fff;
}

@media screen and (width <= 991px) {
  .map-block__content.rich-text p {
    font-size: 1.8rem;
  }
}

@media screen and (width >= 992px) {
  .map-block .img-wrap {
    position: relative;
  }

  .map-block__img {
    aspect-ratio: 1;
    max-width: 60vw;
    height: calc(100% + 8rem);
    position: absolute;
    top: -8rem;
    right: 0;
  }

  .map-block__img img {
    object-fit: contain;
    object-position: bottom center;
  }
}

.tickets-block .wrapper {
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px 20px;
  display: flex;
}

.tickets-block .tickets__item {
  width: 25.6rem;
  height: 38.8rem;
  mask-image: url("bg-tickets.608c86dd.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.tickets-block .tickets__item__img {
  aspect-ratio: 239 / 141;
  width: calc(100% - 1.6rem);
  margin: 1rem auto 0;
  mask-image: url("tickets-mask.64da67ba.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.tickets-block .tickets__item__content {
  padding: 1.8rem 1.6rem 0;
}

.tickets-block .tickets__item__content__description {
  font-family: CastleDownHeavy;
}

.tickets-block .tickets__item__content .btn {
  justify-content: space-between;
  width: 17.1rem;
  height: 4.5rem;
  margin: 1.6rem auto 0;
  padding-right: 6px;
  display: flex;
}

.tickets-block .tickets__item__content .btn:before {
  background-color: #564d34;
  background-image: initial;
  mask-image: url("tickets-btn.7dd82fd5.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.tickets-block .tickets__item__content .btn__text, .tickets-block .tickets__item__content .btn__anim {
  letter-spacing: -.3px;
  font-family: CastleDownHeavy;
  font-size: 1.5rem;
}

.tickets-block .tickets__item__content .btn:after {
  display: none;
}

.tickets-block .tickets__item__content .btn .icon {
  z-index: 1;
  position: relative;
  transform: translateZ(0);
}

.tickets-block .tickets__item__content .btn .icon:after {
  content: "";
  background: url("icon-tickets-small.c6700ad5.svg") center / contain no-repeat;
  width: 3.2rem;
  height: 3.2rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tickets-block .tickets__item__content.rich-text > * {
  color: #564d34;
}

.tickets-block .tickets__item__content.rich-text .tickets__item__content__title, .tickets-block .tickets__item__content.rich-text h5 {
  margin-bottom: 0;
}

.tickets-block .tickets__item__content.rich-text .tickets__item__content__description, .tickets-block .tickets__item__content.rich-text p {
  margin-bottom: 8px;
}

.tickets-block .tickets__item__content.rich-text ul {
  margin-bottom: 1rem;
  padding-left: 2.4rem;
}

.tickets-block .tickets__item__content.rich-text ul li {
  color: #564d34;
  margin-bottom: 0;
  font-family: CastleDownBold;
  font-size: 1.5rem;
}

.tickets-block .tickets__item__content.rich-text ul li::marker {
  color: #564d34;
}

.tickets-block .tickets__item.color-theamericas {
  --color: var(--theamericas);
}

.tickets-block .tickets__item.color-africa {
  --color: var(--africa);
}

.tickets-block .tickets__item.color-africa .btn:before {
  background-color: #594437;
}

.tickets-block .tickets__item.color-discovery {
  --color: var(--discovery);
}

.tickets-block .tickets__item.color-discovery .btn:before {
  background-color: #524638;
}

.tickets-block .tickets__item.color-sky {
  --color: var(--sky);
}

.tickets-block .tickets__item.color-sky .btn:before {
  background-color: #33454e;
}

.tickets-block .tickets__item.color-sky .icon:after {
  background-image: url("icon-tickets-small-sky.4d9a69ae.svg");
}

.tickets-block .tickets__item.color-sky .tickets__item__content.rich-text > *, .tickets-block .tickets__item.color-sky .tickets__item__content.rich-text ul li, .tickets-block .tickets__item.color-sky .tickets__item__content.rich-text ul li::marker {
  color: #33454e;
}

.tickets-block .tickets__item.color-green {
  --color: var(--ticketsgreen);
}

.tickets-block .tickets__item.color-green .btn:before {
  background-color: #36481d;
}

.tickets-block .tickets__item.color-green .icon:after {
  background-image: url("icon-tickets-small-green.9ff2be41.svg");
}

.tickets-block .tickets__item.color-green .tickets__item__content.rich-text > *, .tickets-block .tickets__item.color-green .tickets__item__content.rich-text ul li, .tickets-block .tickets__item.color-green .tickets__item__content.rich-text ul li::marker {
  color: #36481d;
}

.tickets-block .tickets__item.color-redorange {
  --color: var(--redorange);
}

.tickets-block .tickets__item.color-redorange .btn:before {
  background-color: #5c1f1c;
}

.tickets-block .tickets__item.color-redorange .icon:after {
  background-image: url("icon-tickets-small-redorange.691774ab.svg");
}

.tickets-block .tickets__item.color-redorange .tickets__item__content.rich-text > *, .tickets-block .tickets__item.color-redorange .tickets__item__content.rich-text ul li, .tickets-block .tickets__item.color-redorange .tickets__item__content.rich-text ul li::marker {
  color: #5c1f1c;
}

.tickets-block .tickets__item {
  background-color: var(--color);
}

.tickets-block .tickets__item .btn__text, .tickets-block .tickets__item .btn__anim {
  color: var(--color);
}

.tickets-block .tickets__item .icon__bg path {
  fill: var(--color);
}

@media (width <= 991px) {
  .component.tickets-block .wrapper {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    min-width: 100%;
    display: flex;
  }

  .component.tickets-block {
    overflow: hidden;
  }

  .component.tickets-block .wrap {
    flex: 100%;
    width: 100%;
    min-width: 0;
    display: block;
    position: relative;
  }

  .component.tickets-block .tickets__item {
    --ticket-w: 256px;
    box-sizing: border-box;
    width: var(--ticket-w);
    flex: 0 0 var(--ticket-w);
    margin: 0;
  }
}

.gallery__title {
  text-align: center;
}

@media screen and (width <= 991px) {
  .gallery .wrapper {
    padding-bottom: 10rem;
  }
}

.gallery .slider {
  position: relative;
}

.gallery .slider__stage {
  aspect-ratio: 859 / 594;
  z-index: 1;
  width: 859px;
  max-width: 80%;
  position: relative;
}

@media screen and (width <= 991px) {
  .gallery .slider__stage {
    max-width: 100%;
  }
}

.gallery .slider__caption {
  text-align: center;
  min-height: 3rem;
  color: var(--darkgreen);
  pointer-events: none;
  margin-top: 2rem;
  font-family: CastleDownBold;
  font-size: 1.5rem;
}

.gallery .slider__track {
  perspective: 1200px;
  transform-style: preserve-3d;
  position: absolute;
  inset: 0;
}

.gallery .slide {
  transform-origin: center;
  will-change: transform, opacity;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 auto auto 0;
  mask-image: url("mask-gallery.bc27ab04.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.gallery .slide__media {
  position: absolute;
  inset: 0;
}

.gallery .slide .play-video {
  opacity: 0;
  visibility: hidden;
}

.gallery .slide.is-active .play-video {
  opacity: 1;
  visibility: visible;
}

.gallery .nav-wrapper {
  padding-left: 4.8rem;
  position: absolute;
  right: 0;
  transform: translateX(100%);
}

.gallery .nav-wrapper .swiper-button-prev, .gallery .nav-wrapper .swiper-button-next {
  background-image: url("btn-arrow-darkgreen.a567ecdb.svg");
}

@media screen and (width >= 992px) {
  .gallery .nav-wrapper .swiper-button-prev, .gallery .nav-wrapper .swiper-button-next {
    width: 7.6rem;
    height: 7.3rem;
  }
}

@media screen and (width <= 991px) {
  .gallery .nav-wrapper {
    z-index: 60;
    justify-content: center;
    width: 100%;
    padding-left: 0;
    bottom: 0;
    transform: translateX(0)translateY(12rem);
  }
}

.gallery.is-green .wrapper {
  background: url("did-you-know.6ac38674.jpg") bottom / cover no-repeat;
  padding: 10rem 0 8rem;
  position: relative;
}

@media screen and (width <= 991px) {
  .gallery.is-green .wrapper {
    padding-bottom: 18rem;
  }
}

.gallery.is-green .wrapper:after {
  content: "";
  background: url("top.40d7a4bd.svg") top / contain no-repeat;
  width: 100%;
  padding-bottom: 5%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (width <= 991px) {
  .gallery.is-green .wrapper:after {
    background-image: url("top-mobile.6ba039ba.svg");
  }
}

.gallery.is-green .gallery__title {
  color: var(--cream);
  position: relative;
}

.gallery.is-green .slider__caption {
  color: #fff;
}

.gallery.is-green .nav-wrapper .swiper-button-prev, .gallery.is-green .nav-wrapper .swiper-button-next {
  background-image: url("btn-arrow-yellow.ecab3569.svg");
}

.reviews-block {
  touch-action: pan-y;
  position: relative;
}

.reviews-block .wrapper {
  padding-top: 14rem;
}

@media screen and (width <= 991px) {
  .reviews-block .wrapper {
    padding-top: 2rem;
  }
}

.reviews-block__img {
  margin: 4rem auto 0;
  display: table;
}

@media screen and (width <= 991px) {
  .reviews-block__img {
    margin: 0 0 6rem;
  }
}

.reviews-block:before {
  content: "";
  background: url("leaf.79e2b581.svg") center / contain no-repeat;
  width: 19.8rem;
  height: 30.2rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (width <= 991px) {
  .reviews-block:before {
    display: none;
  }
}

.reviews-block:after {
  content: "";
  background: url("leaf05.5ea966b8.svg") center / contain no-repeat;
  width: 34.3rem;
  height: 39.4rem;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (width <= 991px) {
  .reviews-block:after {
    width: 21.8rem;
    height: 31rem;
    inset: 54rem auto auto 0;
    transform: scaleX(-1);
  }
}

.reviews-block .content-wrap {
  padding-top: 10rem;
  position: relative;
}

@media screen and (width <= 991px) {
  .reviews-block .content-wrap {
    padding-top: 6rem;
  }
}

.reviews-block .sign {
  color: var(--green);
  align-items: flex-end;
  font-family: PraterSans;
  font-size: 16rem;
  line-height: 1;
  display: flex;
  position: absolute;
  top: 0;
}

@media screen and (width <= 991px) {
  .reviews-block .sign {
    font-size: 12rem;
  }
}

.reviews-block .slider-content {
  z-index: 1;
  height: 36rem;
  position: relative;
}

.reviews-block .slider-content .slide {
  width: 100%;
  height: 100%;
  padding-right: 10%;
  position: absolute;
  top: 0;
  left: 0;
}

.reviews-block .slider-content .slide h2 {
  line-height: 97%;
}

.reviews-block .slider-content .slide p {
  font-family: CastledownBold;
}

@media screen and (width <= 991px) {
  .reviews-block .slider-content .slide {
    padding-right: 0;
  }

  .reviews-block .slider-content .slide h6 {
    font-family: PraterSans !important;
  }

  .reviews-block .slider-content .slide h2 {
    letter-spacing: -1.2px;
    margin-bottom: 2rem;
    font-size: 3rem;
  }
}

.reviews-block .pagination {
  justify-content: center;
  gap: 4px;
  margin-top: 9rem;
  display: flex;
}

.reviews-block .pagination__item {
  background-color: var(--darkgreen);
  width: 1rem;
  height: 1rem;
  transition: all .4s var(--smooth);
  border-radius: 50%;
}

.reviews-block .pagination__item.is-active {
  background-color: var(--green);
  border-radius: 60px;
  width: 3.3rem;
}

.reviews-block .images-wrap {
  position: relative;
}

@media screen and (width <= 991px) {
  .reviews-block .images-wrap {
    padding-left: 10%;
  }
}

.reviews-block .images-wrap:after {
  content: "";
  z-index: 1;
  background: url("tripadvisor.2be2562a.png") center / contain no-repeat;
  width: 28.5rem;
  height: 27.4rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: -14rem;
}

@media screen and (width <= 991px) {
  .reviews-block .images-wrap:after {
    width: 18rem;
    height: 17.2rem;
    bottom: -2rem;
    left: 0;
  }
}

.reviews-block .slider-images {
  z-index: 1;
  aspect-ratio: 435 / 501;
  position: relative;
  mask-image: url("reviews-mask.bafa0492.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.reviews-block .slider-images .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.did-you-know-block .wrapper {
  background: url("did-you-know.6ac38674.jpg") bottom / cover no-repeat;
  padding: 10rem 0;
}

@media screen and (width <= 991px) {
  .did-you-know-block .wrapper {
    padding: 6rem 0 2rem;
  }
}

.did-you-know-block .wrap {
  position: relative;
}

@media screen and (width <= 991px) {
  .did-you-know-block .wrap {
    padding-bottom: 34rem;
  }
}

.did-you-know-block .next {
  appearance: none;
  z-index: 1;
  will-change: transform;
  width: 7.7rem;
  height: 7.5rem;
  transition: transform .4s var(--smooth);
  background: url("refresh.d30ccc1b.svg") center / contain no-repeat;
  border: none;
  padding: 0;
  position: absolute;
  top: 40%;
  right: -3.4rem;
}

@media screen and (width >= 992px) {
  .did-you-know-block .next:hover {
    transform: rotate(90deg);
  }
}

@media screen and (width <= 991px) {
  .did-you-know-block .next {
    top: auto;
    bottom: 34rem;
    right: calc(50vw - 17.8rem);
  }
}

.did-you-know-block__title {
  width: 24rem;
  position: absolute;
  top: 4rem;
  left: 0;
  color: #fff !important;
}

@media screen and (width <= 991px) {
  .did-you-know-block__title {
    position: relative;
    top: auto;
    left: auto;
    font-size: 4rem !important;
    line-height: 4.4rem !important;
  }
}

.did-you-know-block .slider {
  align-items: flex-start;
  gap: .5%;
  height: 74rem;
  display: flex;
  position: relative;
}

@media screen and (width >= 992px) and (width <= 1400px) {
  .did-you-know-block .slider {
    width: 80%;
    height: 50rem;
    margin-left: auto;
  }
}

@media screen and (width <= 991px) {
  .did-you-know-block .slider {
    width: 108vw;
    height: 30rem;
    margin-left: calc(-2.4rem - 4vw);
  }
}

.did-you-know-block .slider .slide {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.did-you-know-block .slider-wrap:first-child {
  aspect-ratio: 219 / 342;
  width: 21%;
  margin-top: 28%;
  mask-image: url("slide01.a47098fa.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.did-you-know-block .slider-wrap:nth-child(2) {
  aspect-ratio: 311 / 699;
  width: 28%;
  margin-top: 1%;
  mask-image: url("slide02.876d2ab3.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.did-you-know-block .slider-wrap:nth-child(3) {
  aspect-ratio: 225 / 741;
  height: 100%;
  mask-image: url("slide03.1702861b.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

@media screen and (width <= 991px) {
  .did-you-know-block .slider-wrap:nth-child(3) {
    width: 21%;
    height: auto;
  }
}

.did-you-know-block .slider-wrap:nth-child(4) {
  aspect-ratio: 311 / 649;
  width: 30%;
  mask-image: url("slide04.8d06a69f.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.did-you-know-block .slider-content {
  background: var(--darkgreen);
  width: 47rem;
  height: 30.8rem;
  position: absolute;
  top: 20rem;
  left: -1rem;
  mask-image: url("slider-content.d19677b4.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.did-you-know-block .slider-content:after {
  content: "";
  opacity: .8;
  mix-blend-mode: darken;
  background: url("pattern02.d388828d.png") center / cover no-repeat;
  width: 100%;
  height: 100%;
  display: block;
  inset: 0;
}

.did-you-know-block .slider-content .slide {
  z-index: 1;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 4rem;
  display: flex;
  position: absolute;
  inset: 0;
}

.did-you-know-block .slider-content .slide p {
  color: #fff;
}

@media screen and (width <= 991px) {
  .did-you-know-block .slider-content {
    text-align: center;
    width: 35.6rem;
    height: 32.6rem;
    margin: auto;
    inset: auto 0 6rem;
    mask-image: url("slider-content-mobile.0eedf901.svg");
  }

  .did-you-know-block .slider-content .slide {
    justify-content: center;
  }
}

.tables-content-block .wrapper {
  background-color: var(--darkgreen);
  color: #fff;
  padding: 16rem 0;
  position: relative;
}

@media screen and (width <= 991px) {
  .tables-content-block .wrapper {
    padding: 10rem 0;
  }
}

.tables-content-block .wrapper:before, .tables-content-block .wrapper:after {
  content: "";
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
}

.tables-content-block .wrapper:before {
  aspect-ratio: 1440 / 46;
  background: url("table-top.62a78dd9.svg") center / cover no-repeat;
  top: 0;
}

.tables-content-block .wrapper:after {
  aspect-ratio: 1440 / 42;
  background: url("table-bottom.5b465eba.svg") center / cover no-repeat;
  bottom: 0;
}

.tables-content-block .rich-text > * {
  color: #fff;
}

.tables-content-block .table-responsive {
  background: #065530;
  border: 1px solid #0d7846;
  border-radius: 30px;
  padding: 1.2rem 0;
}

.tables-content-block .table {
  table-layout: fixed;
  width: 100%;
}

.tables-content-block .table thead th:first-child, .tables-content-block .table tbody th[scope="row"] {
  width: 280px;
}

@media screen and (width <= 991px) {
  .tables-content-block .table thead th:first-child, .tables-content-block .table tbody th[scope="row"] {
    width: 160px;
    line-height: 1.2;
  }
}

.tables-content-block .table tbody td, .tables-content-block .table tbody th, .tables-content-block .table thead th {
  position: relative;
}

.tables-content-block .table tbody td:after, .tables-content-block .table tbody th:after, .tables-content-block .table thead th:after {
  content: "";
  background: #0d7846;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.tables-content-block .table tbody td:last-child:after, .tables-content-block .table tbody th:last-child:after, .tables-content-block .table thead th:last-child:after {
  right: 12px;
}

.tables-content-block .table thead th:first-child {
  left: 12px;
}

.tables-content-block .table thead th:after {
  height: 2px;
}

.tables-content-block .table tbody th:after {
  left: 12px;
  right: 0 !important;
}

.tables-content-block .table tbody tr:last-child td:after, .tables-content-block .table tbody tr:last-child th:after {
  display: none;
}

.tables-content-block .table th, .tables-content-block .table td {
  color: #fff;
  white-space: normal;
  word-break: break-word;
  background-color: #065530;
  padding: 1rem 1.2rem;
}

.tables-content-block .table th:nth-child(2n), .tables-content-block .table td:nth-child(2n) {
  background-color: #014827;
}

.tables-content-block .table thead th {
  text-transform: uppercase;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-family: CastleDownBold;
  font-size: 1.2rem;
  line-height: 112.23%;
}

.tables-content-block .table thead th:nth-child(2n) {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.tables-content-block .table tbody th {
  padding: 1rem 1.2rem 1rem 2rem;
}

.tables-content-block .table tbody tr:last-child td:nth-child(2n) {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding-bottom: 2rem;
}

.tables-content-block p.small {
  text-align: center;
  width: 100%;
  margin-top: 2.6rem;
  font-size: 1.5rem;
}

.tables-content-block p.small a {
  color: #fff;
  text-decoration: underline;
}

.tables-content-block__row {
  margin-bottom: 6rem;
}

.tables-content-block__row:last-child {
  margin-bottom: 0;
}

@media (width <= 991px) {
  .tables-content-block .table-responsive {
    -webkit-overflow-scrolling: touch;
    width: calc(100% + 4.8rem);
    margin-left: -2.4rem;
    overflow-x: auto;
    mask-image: linear-gradient(to right, #000 85%, #0000 100%);
  }

  .tables-content-block .table {
    width: max-content;
    min-width: 100%;
    margin-right: 40px;
  }

  .tables-content-block .table thead th {
    min-width: 15rem;
    max-width: 22rem;
  }

  .tables-content-block .table tbody th[scope="row"] {
    white-space: normal;
  }
}

.player {
  z-index: 30;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.player .wrapper {
  background: var(--darkgreen);
  backdrop-filter: blur(48px);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  transition: all .4s var(--smooth);
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.player .plyr {
  --plyr-color-main: var(--green);
  aspect-ratio: 16 / 9;
}

@media screen and (width >= 992px) {
  .player .plyr {
    max-height: 60vh;
    margin: 0 auto;
  }
}

.player .container {
  position: relative;
}

@media screen and (width <= 991px) {
  .player .container {
    padding: 0;
  }
}

.player.show {
  pointer-events: initial;
}

.player.show .wrapper {
  opacity: 1;
  visibility: visible;
}

.player__close {
  z-index: 1;
  margin: auto;
  position: absolute;
  top: -2.4rem;
  left: 0;
  right: 0;
}

@media screen and (width <= 991px) {
  .player__close {
    top: -25vh;
  }
}

.gravity-form .container {
  position: relative;
}

.gravity-form .container:before {
  content: "";
  background: url("leaf-form.6400b4e4.svg") center / contain no-repeat;
  width: 19.5rem;
  height: 31.6rem;
  display: block;
  position: absolute;
  top: -6rem;
  right: -2rem;
}

@media screen and (width <= 991px) {
  .gravity-form .container:before {
    display: none;
  }
}

.gravity-form .ginput_container_select select {
  width: 100% !important;
}

.gravity-form .gform_fileupload_rules, .gravity-form .gfield--type-fileupload .gfield_description, .gravity-form .gfield_description {
  color: #fff !important;
}

.gravity-form__content {
  padding-right: 4.8rem;
}

@media screen and (width <= 991px) {
  .gravity-form__content {
    margin-bottom: 4.8rem;
    padding-right: 0;
  }
}

.gravity-form__content .description {
  margin-bottom: 3.4rem;
}

.gravity-form__content .description p {
  color: #000;
}

.gravity-form__content .email {
  margin-bottom: 1rem;
}

.gravity-form__content .email a {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: -.6px;
  font-family: PraterSans;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.3rem;
}

.gravity-form__content .phone {
  color: var(--darkgreen);
  letter-spacing: -.48px;
  gap: 16px;
  font-family: PraterSans;
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
}

.gravity-form__content .phone a {
  color: var(--darkgreen);
}

.gravity-form__content .address {
  max-width: 15rem;
  color: var(--bush);
  margin-top: 2.6rem;
  font-size: 1.8rem;
  line-height: 2.4rem;
}

.gravity-form__form {
  padding-left: calc(var(--container-width) / 12);
  padding-right: calc(var(--container-width) / 12);
  background-color: var(--darkgreen);
  border-radius: 5%;
  padding-top: 7.2rem;
  padding-bottom: 7.2rem;
  position: relative;
}

@media screen and (width >= 992px) {
  .gravity-form__form .gform_confirmation_wrapper {
    color: #fff;
    padding-bottom: 57rem;
  }
}

.gravity-form__form h5 {
  color: #fff;
}

.gravity-form__form .gfield_required {
  color: #b3e166 !important;
}

.gravity-form__form .gform-theme--framework .gfield--input-type-datepicker.gfield--datepicker-default-icon .ginput_container_date:after, .gravity-form__form .gfield_label, .gravity-form__form .gform-field-label, .gravity-form__form .gfield_label a, .gravity-form__form .gform-field-label a {
  color: #fff !important;
}

@media screen and (width <= 991px) {
  .gravity-form__form {
    border-radius: 32px;
    padding: 2.4rem;
  }

  .gravity-form__form input {
    width: 100% !important;
  }
}

.gravity-form__form .gform_validation_errors {
  display: none !important;
}

.gravity-form__form .gfield_validation_message {
  color: #ff9994 !important;
}

.gravity-form__form .gform_required_legend {
  display: none;
}

.gravity-form__form .gform_fields {
  row-gap: 2rem !important;
}

.gravity-form__form input[type="text"], .gravity-form__form input[type="email"], .gravity-form__form input[type="tel"], .gravity-form__form select, .gravity-form__form textarea {
  appearance: none;
  align-items: center;
  padding: 0 1.6rem;
  display: flex;
  color: #e1f3e2 !important;
  background: #04542e !important;
  border: 1px solid #538054 !important;
  border-radius: 8px !important;
  height: 5.6rem !important;
  font-family: Castledown !important;
  font-size: 1.8rem !important;
}

.gravity-form__form input[type="text"]::placeholder, .gravity-form__form input[type="email"]::placeholder, .gravity-form__form input[type="tel"]::placeholder, .gravity-form__form select::placeholder, .gravity-form__form textarea::placeholder {
  color: #e1f3e2;
  font-family: Castledown;
  font-size: 1.8rem;
}

.gravity-form__form select {
  color: #e1f3e2 !important;
  font-family: Castledown !important;
  font-size: 1.8rem !important;
}

.gravity-form__form textarea {
  height: 12.5rem;
}

.gravity-form__form input[type="submit"] {
  background: url("bg-submit.91631837.svg") center / contain no-repeat;
  appearance: none !important;
  color: var(--darkgreen) !important;
  letter-spacing: -.04em !important;
  background-color: #0000 !important;
  border: none !important;
  width: 21.5rem !important;
  height: 6.4rem !important;
  margin-top: 2.4rem !important;
  padding: 0 !important;
  font-family: Castledown !important;
  font-size: 2rem !important;
  font-weight: 900 !important;
  display: table !important;
}

.gravity-form__form .ginput_container_consent {
  cursor: pointer;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  line-height: 1;
  display: inline-flex;
}

@media screen and (width <= 991px) {
  .gravity-form__form .ginput_container_consent {
    justify-content: center;
    width: 100%;
  }
}

.gravity-form__form .ginput_container_consent input {
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  overflow: hidden !important;
}

.gravity-form__form .ginput_container_consent input:focus + label:before {
  outline-offset: 2px;
  outline: 2px solid #b3e166;
}

.gravity-form__form .ginput_container_consent input:checked + label:after {
  opacity: 1;
}

.gravity-form__form .ginput_container_consent label {
  color: #fff;
  align-items: center;
  margin: 0;
  display: flex;
  position: relative;
}

@media screen and (width <= 991px) {
  .gravity-form__form .ginput_container_consent label {
    color: var(--darkgreen);
  }
}

.gravity-form__form .ginput_container_consent label:before {
  content: "";
  background: #04542e;
  border: 1px solid #538054;
  border-radius: 9px;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin-right: 16px;
  display: inline-block;
  position: relative;
}

.gravity-form__form .ginput_container_consent label:after {
  content: "";
  opacity: 0;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 6px;
  height: 12px;
  transition: opacity .12s;
  position: absolute;
  top: 6px;
  left: 11px;
  transform: rotate(45deg);
}

.gravity-form__form .ginput_container_consent label a {
  color: #f74f45;
  margin-left: 4px;
  text-decoration: underline;
}

.pum-overlay {
  backdrop-filter: blur(10px);
}

.pum-container {
  width: 600px !important;
  max-width: 600px !important;
  box-shadow: none !important;
  background-color: var(--cream) !important;
  border: none !important;
  border-radius: 16px !important;
  margin-left: -300px !important;
  padding: 7.2rem !important;
}

@media screen and (width <= 1500px) {
  .pum-container {
    padding: 4rem !important;
  }

  .pum-container .component {
    padding: 2rem !important;
  }

  .pum-container .cross-sell-block__item__img {
    width: 28rem !important;
    height: 28rem !important;
  }
}

@media screen and (width <= 991px) {
  .pum-container {
    width: 80% !important;
    margin-left: -40% !important;
    padding: 2.4rem 0 !important;
  }

  .pum-container .component {
    padding: 0 !important;
  }
}

.pum-container .pum-close {
  appearance: none;
  width: 4.8rem !important;
  height: 4.8rem !important;
  box-shadow: none !important;
  background-color: var(--darkgreen) !important;
  color: var(--theamericas) !important;
  border: none !important;
  border-radius: 50% !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 !important;
  display: flex !important;
  position: absolute !important;
  top: -2.4rem !important;
  right: -2.4rem !important;
}

.pum-container .pum-content strong {
  font-weight: 700 !important;
}

.instagram-feed-block__head {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.2rem;
  display: flex;
}

@media screen and (width <= 991px) {
  .instagram-feed-block__head {
    display: block;
  }
}

.instagram-feed-block__head > div {
  align-items: center;
  gap: 3.6rem;
  display: flex;
}

@media screen and (width <= 991px) {
  .instagram-feed-block__head > div {
    justify-content: center;
  }
}

.instagram-feed-block__title {
  color: #34843f;
  text-transform: uppercase;
  align-items: center;
  gap: 1rem;
  font-family: PraterSans;
  font-size: 2.8rem;
  display: flex;
}

.instagram-feed-block__tag {
  color: #339e35;
  text-transform: uppercase;
  font-family: PraterSans;
  font-size: 2.4rem;
}

.instagram-feed-block .instagram-tabs {
  background: url("bg-instagram-tabs.c2300c82.svg") center no-repeat;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 549px;
  height: 58px;
  display: flex;
}

@media screen and (width <= 991px) {
  .instagram-feed-block .instagram-tabs {
    width: calc(100% + 4.8rem);
    margin-top: 2.4rem;
    margin-left: -2.4rem;
  }
}

.instagram-feed-block .instagram-tabs__button {
  appearance: none;
  color: #80786c;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 11.3rem;
  height: 3.7rem;
  font-family: PraterSans;
  font-size: 1.1rem;
  display: flex;
}

.instagram-feed-block .instagram-tabs__button.active {
  color: #fff;
  background: url("bg-instagram-tab.f2b94c28.svg") center no-repeat;
}

.instagram-feed-block .instagram-tabs__button.active svg path {
  stroke: #fff;
}

.instagram-feed-block .instagram-feed__tab {
  display: none;
}

.instagram-feed-block .instagram-feed__tab.active {
  display: block;
}

.instagram-feed-block .instagram-feed__tab__row {
  width: 100%;
  margin-bottom: 2.4rem;
  overflow: hidden;
}

.instagram-feed-block .instagram-feed__tab__row:last-child {
  margin-bottom: 0;
}

.instagram-feed-block .instagram-feed__tab__row .marquee-inner {
  gap: 2.4rem;
  width: max-content;
  display: flex;
}

.instagram-feed-block .instagram-feed__tab__row.marquee-ltr .marquee-inner {
  animation: 110s linear infinite marquee-ltr;
}

.instagram-feed-block .instagram-feed__tab__row.marquee-rtl .marquee-inner {
  animation: 110s linear infinite marquee-rtl;
}

.instagram-feed-block .instagram-feed__tab__row .item {
  flex-shrink: 0;
  position: relative;
}

.instagram-feed-block .instagram-feed__tab__row .item.item-carousel:after, .instagram-feed-block .instagram-feed__tab__row .item.item-video:after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  display: block;
  position: absolute;
  top: 2rem;
  right: 3.2rem;
}

@media screen and (width <= 991px) {
  .instagram-feed-block .instagram-feed__tab__row .item.item-carousel:after, .instagram-feed-block .instagram-feed__tab__row .item.item-video:after {
    right: 2rem;
  }
}

.instagram-feed-block .instagram-feed__tab__row .item.item-carousel:after {
  background: url("icon-carousel.6e15b130.svg") center no-repeat;
}

.instagram-feed-block .instagram-feed__tab__row .item.item-video:after {
  background: url("icon-video.7f2d660f.svg") center no-repeat;
}

.instagram-feed-block .instagram-feed__tab__row .item img {
  width: auto;
  height: 30rem;
  mask-image: url("image-mask.05170355.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

@media screen and (width <= 991px) {
  .instagram-feed-block .instagram-feed__tab__row .item img {
    height: 15rem;
  }
}

@keyframes marquee-ltr {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes marquee-rtl {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.archive__hero {
  padding-top: 14rem;
}

.archive__hero__title {
  text-align: center;
  margin: 3.6rem 0 4.8rem;
}

@media screen and (width <= 991px) {
  .archive__hero {
    padding-top: 10rem;
  }

  .archive__hero__title {
    font-size: 4.4rem !important;
  }
}

.archive__featured .date {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: CastledownHeavy;
  font-size: 1.2rem;
  display: table;
}

.archive__featured .category {
  color: #43311d !important;
}

.archive__featured .cross-sell-block__item.is-image .cross-sell-block__item__content .content {
  max-width: 44.2rem;
}

@media screen and (width <= 1200px) {
  .archive__featured .cross-sell-block__item.is-image .cross-sell-block__item__content .content {
    width: 95%;
    max-width: 100%;
  }
}

@media screen and (width <= 991px) {
  .archive__featured .cross-sell-block__item.is-image .cross-sell-block__item__content .content {
    width: 90%;
  }
}

.archive__featured .cross-sell-block__item.is-image .cross-sell-block__item__content .content h4, .archive__featured .cross-sell-block__item.is-image .cross-sell-block__item__content .content h5 {
  margin-bottom: 1.6rem;
}

@media screen and (width <= 991px) {
  .archive__featured .cross-sell-block__item.is-image .cross-sell-block__item__content .content h4, .archive__featured .cross-sell-block__item.is-image .cross-sell-block__item__content .content h5 {
    font-size: 2.4rem;
    line-height: 2.5rem;
  }
}

@media screen and (width >= 992px) {
  .archive__featured .row:nth-child(2) .cross-sell-block__item {
    aspect-ratio: 577 / 353 !important;
    width: calc((var(--container-width)) / 12 * 6 - var(--gap)) !important;
  }

  .archive__featured .row:nth-child(2) .cross-sell-block__item .cross-sell-block__item__img {
    mask-image: url("cross-sell-mask-half.0d5ec4ac.svg") !important;
  }
}

.archive__featured p {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.home-hero {
  height: 100vh;
}

@media screen and (width <= 991px) {
  .home-hero {
    height: 100svh;
  }
}

.home-hero__media {
  height: 100%;
}

.home-hero.is-image .home-hero__media {
  position: relative;
}

.home-hero.is-image .home-hero__media:after {
  content: "";
  background: linear-gradient(90deg, #0000 46.63%, #00000080 100%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  transform: rotate(180deg);
}

@media screen and (width <= 991px) {
  .home-hero.is-image .home-hero__media:after {
    background: linear-gradient(82deg, #0000 30.29%, #00000080 60.02%);
  }
}

@media screen and (width >= 992px) {
  .home-hero.is-image .tickets-wrap {
    margin-top: 2rem;
  }
}

.home-hero.is-image .home-hero__content {
  z-index: 1;
  color: #fff;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 8rem;
  display: flex;
  position: absolute;
  inset: 0;
}

.home-hero.is-image .home-hero__content h1 {
  color: #fff;
}

.home-hero.is-image .home-hero__content h1 strong {
  color: var(--theamericas);
}

@media screen and (width <= 991px) {
  .home-hero.is-image .home-hero__content h1 {
    font-size: 4.4rem;
  }
}

.home-hero.is-image .home-hero__content h2, .home-hero.is-image .home-hero__content h3, .home-hero.is-image .home-hero__content h4, .home-hero.is-image .home-hero__content h5 {
  color: #fff;
}

@media screen and (width <= 991px) {
  .home-hero.is-image .home-hero__content h4 {
    font-size: 2rem;
  }

  .home-hero.is-image .home-hero__content {
    padding-bottom: 5rem;
  }

  .home-hero.is-image .home-hero__content .btn {
    height: 5.5rem;
  }

  .home-hero.is-image .home-hero__content .btn__anim, .home-hero.is-image .home-hero__content .btn__text {
    color: #fff;
  }

  .home-hero.is-image .home-hero__content .btn:before {
    background-image: url("btn-greenmobile.e07b2dd5.svg");
  }
}

.home-hero__tickets {
  backdrop-filter: blur(20px);
  height: 14.4rem;
  margin-top: 5rem;
  display: flex;
  mask-image: url("mask-tickets.f86f4f14.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

@media screen and (width >= 992px) {
  .home-hero__tickets {
    margin-top: 0;
  }
}

@media screen and (width <= 991px) {
  .home-hero__tickets {
    height: 8.3rem;
    mask-image: url("mask-tickets-mobile.a17a3c19.svg");
  }
}

.home-hero__tickets__label {
  background-color: var(--cream);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 20rem;
  height: 100%;
  display: flex;
}

@media screen and (width <= 991px) {
  .home-hero__tickets__label {
    width: 11rem;
  }
}

.home-hero__tickets__label .icon {
  background: url("ticket.f75733ff.svg") center / contain no-repeat;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto;
  display: block;
}

@media screen and (width <= 991px) {
  .home-hero__tickets__label .icon {
    width: 3.6rem;
    height: 3.6rem;
  }
}

.home-hero__tickets__label span {
  color: #654729;
  letter-spacing: -.03em;
  font-family: CastledownHeavy;
  font-size: 1.8rem;
  line-height: 1;
  display: block;
}

.home-hero__tickets__links {
  background-color: #e3d8c7b3;
  flex: 1;
  align-items: center;
  height: 100%;
  display: flex;
}

@media screen and (width <= 991px) {
  .home-hero__tickets__links {
    justify-content: center;
  }
}

.home-hero__tickets__links .types {
  flex: 1;
  justify-content: center;
  align-items: center;
  column-gap: 6.6rem;
  display: flex;
}

.home-hero__tickets__links .types__item {
  color: #654729;
  text-transform: uppercase;
  letter-spacing: -.05em;
  font-family: PraterSans;
  font-size: 2.4rem;
  line-height: 1;
  display: block;
  position: relative;
}

@media screen and (width <= 1024px) {
  .home-hero__tickets__links .types__item {
    font-size: 1.6rem;
  }
}

.home-hero__tickets__links .types__item:before {
  content: "";
  opacity: 0;
  visibility: hidden;
  width: 150%;
  height: 4.8rem;
  transition: all .8s var(--smooth);
  pointer-events: none;
  background: url("tickets-hover.4da237a1.svg") center / contain no-repeat;
  display: block;
  position: absolute;
  top: -1.4rem;
  left: 50%;
  transform: translate3d(-50%, 120%, 0);
}

.home-hero__tickets__links .types__item .wrap {
  display: block;
  position: relative;
  overflow: hidden;
}

.home-hero__tickets__links .types__item .wrap span {
  transition: all .8s var(--smooth);
  display: block;
}

.home-hero__tickets__links .types__item .wrap .hover {
  pointer-events: none;
  will-change: transform;
  opacity: 0;
  line-height: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(200%)translateZ(0);
}

.home-hero__tickets__links .types__item:hover .normal {
  opacity: 0;
  transform: translateY(-200%)translateZ(0);
}

.home-hero__tickets__links .types__item:hover .hover {
  opacity: 1;
  transform: translateY(0)translateZ(0);
}

.home-hero__tickets__links .types__item:hover:before {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0);
}

.home-hero__tickets__links .types__item:after {
  content: "";
  z-index: 1;
  background: url("ticket-line.8800dca6.svg") center / contain no-repeat;
  width: 1.7rem;
  height: 1.8rem;
  display: block;
  position: absolute;
  top: 2px;
  right: -4rem;
}

.home-hero__tickets__links .types__item:last-child:after {
  display: none;
}

.home-hero__tickets .see-more {
  margin-right: 7.2rem;
  position: relative;
}

.home-hero__tickets .see-more__toggle {
  color: #654729;
  cursor: pointer;
  text-transform: uppercase;
  appearance: none;
  background: none;
  border: none;
  align-items: center;
  gap: 2px;
  padding: 0;
  font-family: PraterSans;
  font-size: 1.6rem;
  display: flex;
}

.home-hero__tickets .see-more__toggle span {
  position: relative;
}

.home-hero__tickets .see-more__toggle span:after {
  content: "";
  will-change: transform;
  transform-origin: 100%;
  width: 100%;
  height: 2px;
  transition: transform .4s var(--smooth);
  background-color: currentColor;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0)translateZ(0);
}

.home-hero__tickets .see-more__toggle:hover span:after {
  transform-origin: 0;
  transform: scaleX(1)translateZ(0);
}

.home-hero__tickets .see-more__icon {
  transition: transform .3s;
  display: inline-block;
}

.home-hero__tickets .see-more__toggle[aria-expanded="true"] .see-more__icon {
  transform: rotate(180deg);
}

.home-hero .see-more-mobile {
  position: relative;
}

.home-hero .see-more-mobile__toggle {
  color: #654729;
  cursor: pointer;
  text-transform: uppercase;
  appearance: none;
  background: none;
  border: none;
  align-items: center;
  gap: 1.6rem;
  padding: 0;
  font-family: PraterSans;
  font-size: 2rem;
  display: flex;
}

.home-hero .see-more-mobile__icon {
  transition: transform .3s;
  display: inline-block;
}

.home-hero .see-more-mobile__toggle[aria-expanded="true"] .see-more__icon {
  transform: rotate(180deg);
}

.home-hero .see-more__menu {
  z-index: 10;
  opacity: 0;
  background: url("bg-seemore.db571941.svg") center / contain no-repeat;
  width: 24.4rem;
  padding: 5rem 3.4rem;
  position: absolute;
  bottom: 10rem;
  right: 0;
}

.home-hero .see-more__menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-hero .see-more__menu li {
  padding-right: 10%;
}

.home-hero .see-more__menu li + li {
  margin-top: 4rem;
  position: relative;
}

.home-hero .see-more__menu li + li:before {
  content: "";
  background: url("separator.f119c7b8.svg") center / contain no-repeat;
  width: 100%;
  height: 6px;
  display: block;
  position: absolute;
  top: -2.2rem;
  left: 0;
}

.home-hero .see-more__menu a {
  color: #654729;
  text-transform: uppercase;
  transition: background-size .3s var(--smooth);
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  font-family: PraterSans;
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
}

.home-hero .see-more__menu a:hover {
  background-size: 100% 2px;
}

@media screen and (width <= 991px) {
  .home-hero .see-more__menu {
    background-image: url("bg-seemore-mobile.70cfcea5.svg");
    width: 32.5rem;
    padding: 4.6rem 7.8rem;
  }

  .home-hero .see-more__menu li {
    text-align: center;
    padding-right: 0;
  }

  .home-hero .see-more__menu li + li {
    margin-top: 2rem;
  }

  .home-hero .see-more__menu li + li:before {
    height: 5px;
    top: -1.2rem;
  }
}

.home-hero .tickets-wrap {
  position: relative;
}

.home-hero.is-video {
  background-color: var(--creme);
  position: relative;
}

@media screen and (width <= 991px) {
  .home-hero.is-video {
    flex-wrap: wrap;
    height: auto;
    display: flex;
  }
}

@media (width >= 1024px) and (width <= 1200px) and (orientation: portrait) {
  .home-hero.is-video {
    overflow: hidden;
  }
}

.home-hero.is-video .home-hero__media {
  aspect-ratio: 923 / 803;
  width: auto;
  height: 100%;
  margin-left: auto;
  transform: translateX(5%);
  mask-image: url("home-desktopmask.3ea037ae.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

.home-hero.is-video .home-hero__media video {
  object-position: 80% center;
}

@media screen and (width >= 1024px) and (width <= 1400px) {
  .home-hero.is-video .home-hero__media {
    transform: translateX(25%);
  }
}

@media (width >= 1024px) and (width <= 1200px) and (orientation: portrait) {
  .home-hero.is-video .home-hero__media {
    aspect-ratio: 414 / 604;
    order: 1;
    width: 100%;
    height: auto;
    transform: translateY(30%);
    mask-image: url("mobilemask.ae9a498c.svg");
    mask-position: bottom;
  }
}

@media screen and (width <= 991px) {
  .home-hero.is-video .home-hero__media {
    aspect-ratio: 414 / 604;
    order: 1;
    width: 100%;
    height: auto;
    transform: none;
    mask-image: url("mobilemask.ae9a498c.svg");
    mask-position: bottom;
  }
}

.home-hero.is-video.no-mask .home-hero__media {
  width: 100%;
  aspect-ratio: initial;
  transform: none;
  mask-image: none;
}

@media screen and (width <= 991px) {
  .home-hero.is-video.no-mask .home-hero__media {
    aspect-ratio: 414 / 604;
    margin-top: 4rem;
    mask-image: none;
  }
}

.home-hero.is-video .home-hero__content {
  z-index: 1;
  color: #fff;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-bottom: 8rem;
  display: flex;
  position: absolute;
  inset: 0;
}

.home-hero.is-video .home-hero__content h1 strong {
  color: var(--green);
}

.home-hero.is-video .home-hero__content h6 {
  max-width: 36.3rem;
}

@media screen and (width >= 768px) and (width <= 991px) {
  .home-hero.is-video .home-hero__content h6 {
    margin: 0 auto;
  }
}

@media screen and (width >= 992px) {
  .home-hero.is-video .home-hero__content {
    align-items: initial;
    padding-top: 10rem;
    display: block;
  }

  .home-hero.is-video .home-hero__content .container {
    height: 100%;
  }

  .home-hero.is-video .home-hero__content .container .row:first-child {
    align-items: center;
    height: calc(100% - 14.4rem);
    display: flex;
  }

  .home-hero.is-video .home-hero__content h6 {
    margin-bottom: 0;
  }
}

@media (width >= 1024px) and (width <= 1200px) and (orientation: portrait) {
  .home-hero.is-video .home-hero__content {
    padding-top: 17rem;
  }

  .home-hero.is-video .home-hero__content .container .row:first-child {
    text-align: center;
    justify-content: center;
    align-items: flex-start;
  }

  .home-hero.is-video .home-hero__content h6 {
    margin: 0 auto;
  }
}

@media screen and (width >= 992px) and (width <= 1440px) and (height <= 700px) {
  .home-hero.is-video .home-hero__content {
    padding-top: 14rem;
    padding-bottom: 0;
  }

  .home-hero.is-video .home-hero__content h1 {
    font-size: 7rem;
  }
}

@media screen and (width <= 1024px) {
  .home-hero.is-video .home-hero__content h1 {
    font-size: 6rem;
  }
}

@media screen and (width <= 991px) {
  .home-hero.is-video .home-hero__content {
    position: initial;
    inset: initial;
    order: 0;
    align-items: flex-start;
    height: auto;
    padding-top: 12rem;
    padding-bottom: 0;
  }

  .home-hero.is-video .home-hero__content .row:nth-child(2) {
    width: calc(100% - 4.3rem);
    position: absolute;
    top: 75svh;
  }

  .home-hero.is-video .home-hero__content h1 {
    text-align: center;
    letter-spacing: -.07em;
    margin-bottom: 0;
    font-size: 5rem;
    line-height: 115%;
  }

  .home-hero.is-video .home-hero__content h6 {
    text-transform: none;
    text-align: center;
    margin-bottom: 0;
    font-family: CastledownHeavy;
    font-size: 1.5rem;
  }
}

@media screen and (width >= 768px) and (width <= 991px) {
  .home-hero.is-video .home-hero__content .row:nth-child(2) {
    width: 35.6rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.home-quick-links {
  padding: 6rem 0;
}

@media screen and (width <= 991px) {
  .home-quick-links {
    padding: 2rem 0;
  }
}

.home-quick-links .items {
  justify-content: center;
  column-gap: 2.2rem;
  display: flex;
}

@media screen and (width <= 1024px) {
  .home-quick-links .items {
    column-gap: initial;
    flex-wrap: wrap;
  }
}

.home-quick-links .items .item {
  justify-content: space-between;
  min-width: 34.6rem;
  height: 11.5rem;
  padding: 0 1.6rem 0 2.4rem;
}

@media screen and (width <= 1024px) {
  .home-quick-links .items .item {
    text-align: left;
    height: 8.7rem;
    margin: 0 auto 6px;
    padding: 0 3rem 0 3.4rem;
  }
}

.home-quick-links .items .item:after {
  content: "";
  z-index: 1;
  width: 5.2rem;
  height: 4.9rem;
  transition: all .8s var(--smooth);
  background: url("arrow-green.9d62aea9.svg") center / contain no-repeat;
  display: block;
  position: relative;
}

.home-quick-links .items .item .btn__text, .home-quick-links .items .item .btn__anim {
  text-transform: uppercase;
  letter-spacing: -.02em;
  font-family: PraterSans;
  font-size: 3rem;
}

@media screen and (width <= 1024px) {
  .home-quick-links .items .item .btn__text, .home-quick-links .items .item .btn__anim {
    letter-spacing: initial;
    font-size: 2.4rem;
  }
}

.home-quick-links .items .item:first-child .btn__text, .home-quick-links .items .item:first-child .btn__anim {
  color: #fff;
}

.home-quick-links .items .item:first-child:before {
  background-image: url("quick-green.bcb141a8.svg");
}

@media screen and (width <= 1024px) {
  .home-quick-links .items .item:first-child:before {
    background-image: url("quick-green-mobile.7f4a9ca9.svg");
  }
}

.home-quick-links .items .item:nth-child(2):before {
  background-image: url("quick-yellow.d8174771.svg");
}

@media screen and (width <= 1024px) {
  .home-quick-links .items .item:nth-child(2):before {
    background-image: url("quick-yellow-mobile.7639b0af.svg");
  }
}

.home-quick-links .items .item:nth-child(2):after {
  background-image: url("arrow-darkgreen.2ae843cd.svg");
}

.home-quick-links .items .item:nth-child(3) .btn__text, .home-quick-links .items .item:nth-child(3) .btn__anim {
  color: #685139;
}

.home-quick-links .items .item:nth-child(3):before {
  background-image: url("quick-salmon.a30e4856.svg");
}

@media screen and (width <= 1024px) {
  .home-quick-links .items .item:nth-child(3):before {
    background-image: url("quick-salmon-mobile.ae803d87.svg");
  }
}

.home-quick-links .items .item:nth-child(3):after {
  background-image: url("arrow-darkgreen-salmon.d63e9f8a.svg");
}

.home-quick-links .items .item:hover:after {
  transform: translateX(5%)scale(1.05)translateZ(0);
}

.boiler-hero {
  width: 100%;
  height: 66rem;
  position: relative;
  mask-image: url("boiler-mask.323baa63.svg");
  mask-position: bottom;
  mask-size: cover;
  mask-repeat: no-repeat;
}

@media screen and (width <= 991px) {
  .boiler-hero {
    mask-image: url("boiler-mask-mobile.6e6540e3.svg");
  }
}

.boiler-hero__media {
  height: 100%;
  position: relative;
}

.boiler-hero__media:after {
  content: "";
  background: linear-gradient(#0000 33.9%, #0006 78.27%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.boiler-hero__content {
  text-align: center;
  width: 77rem;
  margin: auto;
  position: absolute;
  bottom: 8rem;
  left: 0;
  right: 0;
}

.boiler-hero__content.rich-text > * {
  color: #fff;
}

.boiler-hero__content.rich-text .category {
  color: #43311d;
}

@media screen and (width <= 991px) {
  .boiler-hero__content.rich-text {
    width: 100%;
    padding: 0 2.4rem;
  }

  .boiler-hero__content.rich-text h1 {
    letter-spacing: -2.2px;
    font-size: 4.4rem;
    line-height: 105%;
  }

  .boiler-hero__content.rich-text h6 {
    letter-spacing: -.42px;
    text-transform: uppercase;
    font-family: PraterSans;
    font-size: 1.4rem;
    line-height: 18px;
  }
}

.boiler-hero.is-conservations .boiler-hero__content {
  width: 83rem;
  max-width: 100%;
}

.animal-hero {
  width: 100%;
  height: 78rem;
  position: relative;
}

@media screen and (width <= 991px) {
  .animal-hero {
    height: auto;
  }
}

.animal-hero__media {
  z-index: 2;
  height: 62rem;
  position: relative;
  mask-image: url("boiler-mask.323baa63.svg");
  mask-position: bottom;
  mask-size: cover;
  mask-repeat: no-repeat;
}

@media screen and (width <= 991px) {
  .animal-hero__media {
    height: 57rem;
    mask-image: url("boiler-mask-mobile.6e6540e3.svg");
  }
}

.animal-hero__media:after {
  content: "";
  background: linear-gradient(#0000 33.9%, #0006 78.27%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.animal-hero__content {
  text-align: center;
  z-index: 3;
  width: 77rem;
  margin: auto;
  position: absolute;
  bottom: 20rem;
  left: 0;
  right: 0;
}

@media screen and (width <= 991px) {
  .animal-hero__content {
    width: 100%;
    top: 32rem;
    bottom: auto;
  }
}

.animal-hero__content.rich-text > * {
  color: #fff;
}

.animal-hero__content.rich-text .category {
  color: #43311d;
}

@media screen and (width <= 991px) {
  .animal-hero__content.rich-text {
    width: 100%;
    padding: 0 2.4rem;
  }

  .animal-hero__content.rich-text h1 {
    letter-spacing: -2.2px;
    font-size: 4.4rem;
    line-height: 105%;
  }

  .animal-hero__content.rich-text h6 {
    letter-spacing: -.42px;
    text-transform: uppercase;
    font-family: PraterSans;
    font-size: 1.4rem;
    line-height: 18px;
  }
}

.animal-hero__details {
  z-index: 1;
  background: url("animal-bg.18e87842.svg") bottom / cover no-repeat;
  width: 100%;
  height: 18rem;
  padding: 5rem 0 2rem;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (width <= 991px) {
  .animal-hero__details {
    background-image: url("animal-bg-mobile.5cc72ace.svg");
    height: auto;
    padding: 4rem 0 3rem;
    position: relative;
    bottom: auto;
    left: auto;
  }

  .animal-hero__details .col-lg-2, .animal-hero__details .col-lg-3 {
    margin-bottom: 2rem;
    display: flex;
  }

  .animal-hero__details .btn {
    margin: 2rem auto 0;
  }
}

.animal-hero__details:before {
  content: "";
  background: var(--darkgreen);
  width: 100%;
  height: 5rem;
  display: block;
  position: absolute;
  top: -5rem;
}

.animal-hero__details .title {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  font-family: PraterSans;
  font-size: 1.4rem;
  line-height: 1;
}

@media screen and (width <= 991px) {
  .animal-hero__details .title {
    width: 50%;
    margin-bottom: 0;
  }
}

.animal-hero__details .value {
  color: var(--cream);
  font-family: CastledownHeavy;
  font-size: 1.6rem;
}

@media screen and (width <= 991px) {
  .animal-hero__details .value {
    color: #fff;
    width: 50%;
    font-family: CastledownBold;
    font-size: 1.4rem;
    line-height: 1.2;
  }
}

.animal-next {
  aspect-ratio: 1440 / 793;
  width: 100%;
  position: relative;
}

@media screen and (width <= 991px) {
  .animal-next {
    aspect-ratio: 414 / 793;
  }
}

.animal-next__content {
  z-index: 1;
  position: absolute;
  bottom: 15rem;
  left: 75rem;
}

.animal-next__content h3 {
  color: #fff;
}

.animal-next__content h3 strong {
  color: var(--theamericas);
  display: block;
}

.animal-next__content:after {
  content: "";
  background: url("arrow-line.c76bba92.svg") center / contain no-repeat;
  width: 35.2rem;
  height: 1.6rem;
  display: block;
  position: absolute;
  bottom: -4rem;
  left: 0;
}

@media screen and (width >= 992px) and (width <= 1200px) {
  .animal-next__content:after {
    width: 25rem;
  }
}

@media screen and (width <= 991px) {
  .animal-next__content {
    bottom: 20rem;
    left: 2.4rem;
  }

  .animal-next__content:after {
    bottom: -1rem;
  }
}

.animal-next__img {
  width: 100%;
  height: 100%;
  position: relative;
  mask-image: url("feature-hero-mask.a07c1f9f.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

@media screen and (width <= 991px) {
  .animal-next__img {
    mask-image: url("feature-mobile.595a6f62.svg");
  }
}

.animal-next__img:after {
  content: "";
  background: linear-gradient(101deg, #0000 7.41%, #05050599 98.38%);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.animal-next__link {
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

.animal-next__text {
  color: #fdf8ef;
  letter-spacing: -15px;
  text-transform: uppercase;
  z-index: 1;
  font-family: PraterSans;
  font-size: 30rem;
  line-height: 1;
  display: block;
  position: absolute;
  bottom: -4rem;
  left: -3rem;
}

@media screen and (width <= 991px) {
  .animal-next__text {
    letter-spacing: -10px;
    font-size: 20rem;
  }
}

.not-found {
  height: 99rem;
  position: relative;
}

@media screen and (width <= 991px) {
  .not-found {
    height: 68rem;
  }
}

.not-found__img {
  mix-blend-mode: darken;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

@media screen and (width <= 991px) {
  .not-found__img {
    height: 55%;
    top: 8.2rem;
  }

  .not-found__img img {
    object-position: right center;
  }
}

.not-found__content {
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
}

@media screen and (width <= 991px) {
  .not-found__content {
    align-items: flex-start;
    padding-top: 30rem;
  }
}

.not-found__content.rich-text h1 {
  text-transform: uppercase;
  letter-spacing: -7.41px;
  font-size: 14.8rem;
  line-height: 105%;
}

@media screen and (width <= 991px) {
  .not-found__content.rich-text h1 {
    letter-spacing: -3.7px;
    font-size: 7.4rem;
  }
}

.not-found__content.rich-text h5 {
  color: var(--green);
}

@media screen and (width <= 991px) {
  .not-found__content.rich-text h5 {
    font-size: 2.4rem;
  }

  .not-found__content.rich-text p {
    font-size: 1.8rem;
  }
}

@media screen and (width >= 992px) {
  .error404 .footer__logos {
    display: none;
  }

  .error404 .footer__top {
    margin-top: 8vh;
  }
}

.search-results {
  padding-top: 20rem;
  padding-bottom: 10rem;
}

@media screen and (width <= 991px) {
  .search-results {
    padding-top: 16rem;
  }

  .search-results__title {
    font-size: 3rem;
  }
}

.search-results__wrapper {
  aspect-ratio: 1440 / 256;
  background: #e3d8c7;
  align-items: center;
  display: flex;
  mask-image: url("search-results.f570ad4d.svg");
  mask-position: 50%;
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
}

@media screen and (width <= 991px) {
  .search-results__wrapper {
    aspect-ratio: initial;
    mask-image: url("search-results-mobile.ac460dc9.svg");
    mask-size: auto 100%;
  }
}

.search-results.rich-text .search-results__wrapper {
  padding: 4rem 0;
}

.search-results.rich-text .search-results__wrapper__title {
  color: var(--asia);
  margin-top: 2.4rem;
  margin-bottom: 1.4rem;
}

.search-results .input-wrapper {
  aspect-ratio: 1027 / 65;
  background: url("bg-input.18d244e3.svg") 0 / contain no-repeat;
  position: relative;
}

@media screen and (width <= 991px) {
  .search-results .input-wrapper {
    aspect-ratio: 378 / 64;
    background-image: url("bg-input-mobile.93bec5d4.svg");
  }
}

.search-results .form__search {
  appearance: none;
  width: 100%;
  height: 100%;
  color: var(--darkgreen);
  letter-spacing: -.4px;
  background-color: #0000;
  border: none;
  padding: 0 6rem 0 2.4rem;
  font-family: CastledownBold;
  font-size: 2rem;
  line-height: 1;
}

.search-results .form__search::placeholder {
  color: #999;
  font-family: CastledownBold;
  font-size: 2rem;
}

.search-results .form__submit {
  appearance: none;
  background: url("icon-search.0005913c.svg") center / contain no-repeat;
  border: none;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  font-size: 0;
  position: absolute;
  top: 1.8rem;
  right: 2.4rem;
}

.search-results__categories {
  flex-wrap: wrap;
  gap: 9px;
  display: flex;
}

.search-results__categories__item {
  background-color: var(--darkgreen);
  color: #fff;
  letter-spacing: -.07px;
  height: 3rem;
  transition: all .4s var(--smooth);
  border-radius: 33px;
  align-items: center;
  padding: 0 1.6rem;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
}

.search-results__categories__item:hover {
  background-color: var(--asia);
}

.search-results .results__title {
  color: var(--bush);
  margin-bottom: 8px;
  font-family: CastledownBold;
  font-size: 2.2rem;
  line-height: 2.8rem;
}

.search-results .results__amount {
  color: #333;
  letter-spacing: -.07px;
  font-size: 1.4rem;
  line-height: 2.2rem;
}

.search-results .results__item {
  margin-bottom: 2.4rem;
  display: flex;
  position: relative;
}

@media screen and (width <= 991px) {
  .search-results .results__item {
    border-bottom: 1px solid #c4c4c499;
  }
}

.search-results .results__item:after {
  content: "";
  background: url("arrow-search.59f1b52f.svg") center / contain no-repeat;
  width: 3.7rem;
  height: 3.6rem;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.search-results .results__item__img {
  border-radius: 5px;
  width: 9.7rem;
  height: 6.6rem;
  margin-right: 2.8rem;
  overflow: hidden;
}

@media screen and (width <= 991px) {
  .search-results .results__item__img {
    width: 8rem;
    height: 5.3rem;
    margin-right: 2.6rem;
  }
}

.search-results .results__item__content {
  flex: 1;
  padding-right: 6rem;
}

.search-results .results__item__content__title {
  color: var(--darkgreen);
  transition: all .4s var(--smooth);
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  margin-bottom: 6px;
  font-size: 1.8rem;
  display: inline-block;
}

@media screen and (width <= 991px) {
  .search-results .results__item__content__title {
    margin-bottom: 4px;
    padding-right: 20%;
    font-size: 1.4rem;
  }
}

.search-results .results__item__content__title strong {
  font-family: CastledownHeavy;
}

.search-results .results__item__content__details {
  color: #828282;
  letter-spacing: -.08px;
  font-family: CastledownBold;
  font-size: 1.6rem;
}

@media screen and (width <= 991px) {
  .search-results .results__item__content__details {
    font-size: 1.4rem;
  }
}

.search-results .results__item__link {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
}

@media screen and (width >= 992px) {
  .search-results .results__item:hover .results__item__content__title {
    color: var(--redorange);
    background-size: 100% 2px;
  }
}

.search-results .results__nav {
  justify-content: flex-end;
  align-items: center;
  padding-top: 2.4rem;
  display: flex;
}

.search-results .results__nav .nav-wrapper {
  margin-top: 0;
}

.search-results .results__nav > span {
  color: 152329;
  margin-right: 2.4rem;
  font-size: 1.8rem;
  display: block;
}

@media screen and (width >= 992px) {
  .search-results .results__nav .swiper-nav {
    width: 7.6rem;
    height: 7.3rem;
  }
}

.events-ctas {
  align-items: center;
  display: flex;
}

.events-ctas .btn {
  width: 16.4rem;
}

.events-ctas .btn__text, .events-ctas .btn__anim {
  font-size: 1.5rem;
}

.events-ctas .btn:after {
  width: 3.8rem;
  height: 3.8rem;
  margin-left: 1.6rem;
}

.events-ctas__info {
  color: var(--darkgreen);
  margin-left: 0;
  font-family: CastledownHeavy;
  font-size: 1.5rem;
  text-decoration: underline;
}

@media screen and (width >= 992px) and (width <= 1199px) {
  .events-ctas__info {
    font-size: 1.4rem;
  }
}

.btn + .events-ctas__info {
  margin-left: 4rem;
}

@media screen and (width >= 992px) and (width <= 1199px) {
  .btn + .events-ctas__info {
    margin-left: 1rem;
  }
}

.events-ctas__info:first-child {
  perspective: 400px;
  justify-content: center;
  align-items: center;
  width: 16.4rem;
  height: 6.5rem;
  text-decoration: none;
  display: inline-flex;
  position: relative;
}

.events-ctas__info:first-child:before {
  content: "";
  will-change: transform;
  width: 100%;
  height: 100%;
  transition: transform 1s var(--smooth);
  z-index: -1;
  background: url("btn.ffb9b0bc.svg") center / contain no-repeat;
  display: block;
  position: absolute;
  inset: 0;
}

@media screen and (width >= 992px) {
  .events-ctas__info:first-child:hover:before {
    transform: scaleX(1.08)skewX(4deg)translateZ(0);
  }
}

.event-cta {
  justify-content: center;
  padding: 6rem 0;
  display: flex;
}

@media screen and (width >= 992px) {
  .event__header {
    justify-content: space-between;
    display: flex;
  }
}

.archive__featured .events-ctas__info {
  color: #fff;
}

.card-news .events-ctas {
  position: absolute;
  bottom: 2.4rem;
}

:root {
  --swiper-theme-color: #007aff;
}

:host {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.swiper {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  list-style: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  z-index: 1;
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
  display: flex;
  position: relative;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
  display: block;
  position: relative;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;

  & .swiper-slide, & .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

.swiper-css-mode {
  & > .swiper-wrapper {
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow: auto;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  & > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }

  &.swiper-horizontal {
    & > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }

  &.swiper-vertical {
    & > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }

  &.swiper-free-mode {
    & > .swiper-wrapper {
      scroll-snap-type: none;
    }

    & > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }

  &.swiper-centered {
    & > .swiper-wrapper:before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }

    & > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }

  &.swiper-centered.swiper-horizontal {
    & > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }

    & > .swiper-wrapper:before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }

  &.swiper-centered.swiper-vertical {
    & > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }

    & > .swiper-wrapper:before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

.swiper-3d {
  & .swiper-slide-shadow, & .swiper-slide-shadow-left, & .swiper-slide-shadow-right, & .swiper-slide-shadow-top, & .swiper-slide-shadow-bottom, & .swiper-slide-shadow, & .swiper-slide-shadow-left, & .swiper-slide-shadow-right, & .swiper-slide-shadow-top, & .swiper-slide-shadow-bottom {
    pointer-events: none;
    z-index: 10;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  & .swiper-slide-shadow {
    background: #00000026;
  }

  & .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, #00000080, #0000);
  }

  & .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, #00000080, #0000);
  }

  & .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, #00000080, #0000);
  }

  & .swiper-slide-shadow-bottom {
    background-image: linear-gradient(#00000080, #0000);
  }
}

.swiper-lazy-preloader {
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-top-color: #0000;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.swiper:not(.swiper-watch-progress), .swiper-watch-progress .swiper-slide-visible {
  & .swiper-lazy-preloader {
    animation: 1s linear infinite swiper-preloader-spin;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
  & .swiper-wrapper:after {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.swiper-virtual.swiper-css-mode.swiper-horizontal {
  & .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  & .swiper-wrapper:after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-prev, .swiper-button-next {
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  z-index: 10;
  cursor: pointer;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;

  &.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
  }

  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }

  .swiper-navigation-disabled & {
    display: none !important;
  }

  & svg {
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
    width: 100%;
    height: 100%;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev, .swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;

  & .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}

.swiper-horizontal {
  & .swiper-button-prev, & .swiper-button-next, & ~ .swiper-button-prev, & ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }

  & .swiper-button-prev, & ~ .swiper-button-prev, &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }

  & .swiper-button-next, & ~ .swiper-button-next, &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }

  & .swiper-button-prev, & ~ .swiper-button-prev, &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next {
    & .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }

  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev {
    & .swiper-navigation-icon {
      transform: rotate(0);
    }
  }
}

.swiper-vertical {
  & .swiper-button-prev, & .swiper-button-next, & ~ .swiper-button-prev, & ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
    right: auto;
  }

  & .swiper-button-prev, & ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;

    & .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }

  & .swiper-button-next, & ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;

    & .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

.swiper-pagination {
  text-align: center;
  z-index: 10;
  transition: opacity .3s;
  position: absolute;
  transform: translate3d(0, 0, 0);

  &.swiper-pagination-hidden {
    opacity: 0;
  }

  .swiper-pagination-disabled > &, &.swiper-pagination-disabled {
    display: none !important;
  }
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  width: 100%;
  left: 0;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;

  & .swiper-pagination-bullet {
    position: relative;
    transform: scale(.33);
  }

  & .swiper-pagination-bullet-active, & .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }

  & .swiper-pagination-bullet-active-prev {
    transform: scale(.66);
  }

  & .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33);
  }

  & .swiper-pagination-bullet-active-next {
    transform: scale(.66);
  }

  & .swiper-pagination-bullet-active-next-next {
    transform: scale(.33);
  }
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
  display: inline-block;

  button& {
    box-shadow: none;
    appearance: none;
    border: none;
    margin: 0;
    padding: 0;
  }

  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0, -50%, 0);

  & .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }

  &.swiper-pagination-bullets-dynamic {
    width: 8px;
    top: 50%;
    transform: translateY(-50%);

    & .swiper-pagination-bullet {
      transition: transform .2s, top .2s;
      display: inline-block;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets {
  & .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }

  &.swiper-pagination-bullets-dynamic {
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);

    & .swiper-pagination-bullet {
      transition: transform .2s, left .2s;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, right .2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, #00000040);
  position: absolute;

  & .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
  }

  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: 100% 0;
  }

  .swiper-horizontal > &, &.swiper-pagination-horizontal, .swiper-vertical > &.swiper-pagination-progressbar-opposite, &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    top: 0;
    left: 0;
  }

  .swiper-vertical > &, &.swiper-pagination-vertical, .swiper-horizontal > &.swiper-pagination-progressbar-opposite, &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    top: 0;
    left: 0;
  }
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, #0000001a);
  position: relative;

  .swiper-scrollbar-disabled > &, &.swiper-scrollbar-disabled {
    display: none !important;
  }

  .swiper-horizontal > &, &.swiper-scrollbar-horizontal {
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
    position: absolute;
  }

  .swiper-vertical > &, &.swiper-scrollbar-vertical {
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
    position: absolute;
  }
}

.swiper-scrollbar-drag {
  background: var(--swiper-scrollbar-drag-bg-color, #00000080);
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;

  & > img, & > svg, & > canvas {
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
  }
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
  position: absolute;
  top: 0;
  left: 0;
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-flow: column wrap;
}

.swiper-fade {
  &.swiper-free-mode {
    & .swiper-slide {
      transition-timing-function: ease-out;
    }
  }

  & .swiper-slide {
    pointer-events: none;
    transition-property: opacity;

    & .swiper-slide {
      pointer-events: none;
    }
  }

  & .swiper-slide-active {
    pointer-events: auto;

    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube {
  & .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;

    & .swiper-slide {
      pointer-events: none;
    }
  }

  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }

  & .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }

  & .swiper-slide-active, & .swiper-slide-next, & .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  & .swiper-cube-shadow {
    opacity: .6;
    z-index: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;

    &:before {
      content: "";
      filter: blur(50px);
      background: #000;
      position: absolute;
      inset: 0;
    }
  }
}

.swiper-cube {
  & .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}

.swiper-cube {
  & .swiper-slide-shadow-cube.swiper-slide-shadow-top, & .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, & .swiper-slide-shadow-cube.swiper-slide-shadow-left, & .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  & .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;

    & .swiper-slide {
      pointer-events: none;
    }
  }

  & .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper-flip {
  & .swiper-slide-shadow-flip.swiper-slide-shadow-top, & .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, & .swiper-slide-shadow-flip.swiper-slide-shadow-left, & .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}

.swiper-creative {
  & .swiper-slide {
    backface-visibility: hidden;
    transition-property: transform, opacity, height;
    overflow: hidden;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards {
  & .swiper-slide {
    transform-origin: bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}
/*# sourceMappingURL=index.css.map */
