.block {
  padding: var(--space-md);
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .block {
    padding: var(--space-sm);
  }
}
.block__inner {
  max-width: var(--breakpoint-xl);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  padding: var(--space-md);
  gap: var(--space-md);
  align-items: flex-start;
}
@media (max-width: 768px) {
  .block__inner {
    padding: var(--space-md) 0;
  }
}
.block__inner.-spread {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc((100% - 2 * var(--space-lg)) / 3), calc((100% - 2 * var(--space-lg)) / 3)));
  gap: var(--space-lg);
}
@media (max-width: 1200px) {
  .block__inner.-spread {
    grid-template-columns: repeat(auto-fit, minmax(calc((100% - 2 * var(--space-lg)) / 2), calc((100% - 2 * var(--space-lg)) / 2)));
  }
}
.block__header {
  flex: 0 0 100%;
  padding: 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  align-items: flex-start;
  position: relative;
  box-sizing: border-box;
}
.block__column {
  min-width: 0;
  flex: 1 1 0;
  border-radius: var(--radius-base);
  overflow: hidden;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  font-size: var(--font-size-md);
  line-height: calc(var(--font-size-md) * 1.5);
  box-sizing: border-box;
}
.block__column.-sidebar {
  position: sticky;
  top: calc(var(--height-nav-item) + var(--space-md));
  margin-left: calc(2 * var(--space-lg));
}
@media (max-width: 768px) {
  .block__column.-sidebar {
    margin-left: 0;
  }
}
.block__column.-w1 {
  flex: 1 1 0;
}
.block__column.-w2 {
  flex: 2 1 0;
}
.block__column.-w3 {
  flex: 3 1 0;
}
.block__column.-w4 {
  flex: 4 1 0;
}
.block__column img {
  border-radius: var(--radius-base);
}
.block__column img[alt=logo] {
  display: block;
  height: calc(var(--font-size-lg) + 2 * var(--space-md));
  margin-bottom: var(--space-sm);
}
.block__image {
  width: calc(100% + 2 * var(--space-lg));
  margin-left: calc(-1 * var(--space-lg));
  margin-top: calc(-1 * var(--space-lg));
  min-height: 200px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-base);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .block__inner {
    display: flex;
    flex-direction: row;
    gap: var(--space-lg);
    flex-wrap: wrap;
  }
  .block__inner.-spread {
    display: flex;
  }
  .block__inner .block__column {
    flex: auto;
  }
}
.block p {
  margin: 0;
}

.-shadow {
  box-shadow: var(--shadow-block);
}

.-tinted {
  background: var(--background-tinted);
}

.-border {
  border: var(--border);
}

.-background {
  background: rgba(var(--color-background));
}
.-background.-footer {
  background: rgba(var(--color-footer));
}

.p-0 {
  padding: 0;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-base);
  font-size: var(--font-size-xs);
  line-height: calc(var(--font-size-md) * 1);
  color: rgb(var(--color-text));
}

img {
  max-width: 100%;
}

.filter {
  flex: 1 1 0;
  border-radius: var(--radius-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
  align-items: flex-start;
}
.filter:not(.-inline):first-child {
  margin-top: 0;
}
.filter.-inline {
  align-items: stretch;
  flex: 1;
}
.filter .link {
  padding: 0;
}
.filter.-hidden {
  display: none;
}
.filter__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.filter__title {
  font-size: var(--font-size-xs);
  font-weight: 300;
}
.filter__icon {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  text-align: center;
  line-height: calc(0.75 * var(--height-input));
}

.filters__title {
  grid-template-columns: 1fr 60px;
  align-items: center;
  font-family: var(--font-family-subtitle);
  font-size: var(--font-size-md);
  line-height: calc(var(--font-size-lg) * 1);
  font-weight: normal;
  margin: 0;
  height: calc(0.75 * var(--height-input));
}
.filters__title .filter__icon {
  display: none;
}

.filters__inline {
  display: flex;
  margin-bottom: 20px;
  gap: var(--space-sm);
}
.filters__inline__tooltip {
  color: rgb(var(--color-tertiary));
  margin-bottom: 20px;
  background-color: rgba(var(--color-tertiary), 0.1);
  border-radius: 30px;
  padding: 20px;
  text-align: center;
}

.input__label label[for] {
  font-size: var(--font-size-xs);
  line-height: var(--font-size-xs);
}

@media (max-width: 768px) {
  .filters__inline {
    flex-direction: column;
    gap: unset;
  }
  .filters {
    padding: 0;
  }
  .filters__title {
    display: grid;
  }
  .filters__title .filter__icon {
    display: block;
  }
  .filter:not(.-inline) {
    display: none;
  }
  .filters--is-active .filter__icon {
    transform: rotate(180deg);
    color: orange;
  }
  .filters--is-active .filter {
    display: block;
  }
}
.courseTemplates {
  padding: 0;
}
.courseTemplates .block__inner {
  padding: 0;
}
.courseTemplates__header {
  display: flex;
  justify-content: space-between;
  font-size: var(--font-size-md);
}
@media (max-width: 768px) {
  .courseTemplates__header {
    flex-direction: column;
    align-items: stretch;
  }
}
.courseTemplates__header strong {
  color: color-mix(in srgb, rgb(var(--color-primary)) 70%, black);
}

.search {
  display: flex;
  align-items: center;
  position: relative;
  font-size: var(--font-size-md);
}
.search .input {
  background: white;
  border: none;
  width: 100%;
}
.search [class^=material-] {
  margin: 0 var(--space-md);
  position: absolute;
  right: 0;
}

.-courseTemplate {
  cursor: pointer;
  position: relative;
  background-color: white;
}
@media (min-width: 768px) {
  .-courseTemplate {
    height: 100%;
  }
}
.-courseTemplate:hover .block__image::before {
  transform: scale(1.08);
}
.-courseTemplate:hover .hover {
  opacity: 1;
}
.-courseTemplate .summary {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(var(--color-text), 0.1);
  font-size: var(--font-size-xs);
  color: rgba(var(--color-text), 0.8);
  display: flex;
}
.-courseTemplate .summary > div {
  flex: 1;
}
.-courseTemplate .summary .-price {
  font-size: var(--font-size-xs);
}
.-courseTemplate .hover {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg);
  background-color: rgba(var(--color-primary));
  transition: opacity var(--transition-normal);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.-courseTemplate .hover .paragraph {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}
.-courseTemplate .hover .label, .-courseTemplate .hover .paragraph {
  color: rgba(var(--color-background));
}

.-courseTemplateDetails {
  cursor: pointer;
  position: relative;
}

.material-symbols-outlined.-close {
  cursor: pointer;
  position: absolute;
  border: var(--border);
  font-size: var(--font-size-lg) !important;
  line-height: calc(1 * var(--font-size-xl));
  width: calc(1 * var(--font-size-xl));
  color: rgb(var(--color-secundary));
  border-radius: 50%;
  box-sizing: border-box;
  right: calc(1 * var(--space-lg));
  text-align: center;
  transition: opacity var(--transition-normal);
  height: calc(1 * var(--font-size-xl));
}
.material-symbols-outlined.-close:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .material-symbols-outlined.-close {
    right: 0;
  }
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 200ms ease-in;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.summary {
  gap: var(--space-sm);
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--color-title), 0.8);
  animation: fadein 500ms forwards;
}
.modal__inner {
  background-color: rgb(var(--color-background));
  border-radius: var(--radius-base);
  overflow: hidden;
  width: var(--width-modal);
  max-width: calc(100% - var(--space-md) * 2);
  margin: var(--space-md);
  animation: slidein 300ms forwards;
  box-shadow: var(--shadow-modal);
}
.modal__header {
  background-color: rgb(var(--color-primary));
  display: flex;
  position: relative;
}
.modal.-error .modal__header {
  background-color: rgb(var(--color-error));
}
.modal__icon {
  width: 50px;
  height: 50px;
  border: 5px solid rgb(var(--color-background));
  border-radius: 30px;
  font-size: 56px;
  color: rgb(var(--color-background));
  margin: calc(var(--space-lg) * 1.6) auto;
  line-height: 60px;
  text-align: center;
}
.modal__body {
  padding: var(--space-lg);
  text-align: center;
  overflow-y: auto;
  max-height: calc(100vh - 300px);
  font-size: var(--font-size-md);
  line-height: calc(var(--font-size-md) * 1.5);
  color: rgb(var(--color-text));
}
.modal__body h4 {
  color: rgba(var(--color-title), 0.8);
}
.modal__body p {
  margin: 0;
}
.modal__close {
  cursor: pointer;
  background: none;
  outline: none;
  border: none;
  position: absolute;
  right: var(--space-md);
  top: var(--space-md);
  font-size: 24px;
  color: rgb(var(--color-background));
}
.modal__close:hover {
  opacity: 0.7;
}

.cost__item {
  justify-content: space-between;
  display: flex;
  padding: var(--space-sm) 0;
}
.cost__item:last-child {
  color: rgba(var(--color-tertiary));
  font-weight: bold;
}
.cost__label {
  font-size: var(--font-size-md);
  line-height: calc(var(--font-size-md) * 1.5);
}

.file-input__container {
  width: 100%;
}
.file-input__container .input.-file {
  position: relative;
  padding: 0 0 5px;
  border: unset;
}
.file-input__container .input.-file .selected__items {
  flex: 0 0 100% !important;
}
.file-input__container .input.-file .selected__items .input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  flex-direction: row;
}
.file-input__container .input.-file .selected__items .input .icon {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  text-align: center;
  line-height: calc(0.75 * var(--height-input));
  cursor: pointer;
  line-height: 24px;
  margin: 0;
  z-index: 8;
}
.file-input__container .input.-file .selected__items .input .icon:hover {
  opacity: 0.7;
}
.file-input__container .input.-file .selected__items .input:last-child {
  border: 1px dashed rgb(var(--color-border));
}
.file-input__container .input.-file .selected__items .input:not(:last-child) {
  font-weight: normal;
  border-bottom: hidden;
}
.file-input__container .input.-file .selected__items .input:not(:last-child) .icon:hover {
  color: rgb(var(--color-error));
}
.file-input__container .input.-file .file__hidden {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  z-index: 1;
}
.file-input__container .input.-file:has(.input .icon:hover) > .file__hidden, .file-input__container .input.-file:has(.input .icon:active) > .file__hidden, .file-input__container .input.-file:has(.input .icon:focus-visible) > .file__hidden {
  pointer-events: none;
}

.nav {
  background: #fff;
  box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.05);
  border-bottom: var(--border);
  display: flex;
  align-items: center;
  gap: calc(var(--space-lg) * 1.5);
  padding: var(--space-md) var(--space-lg);
  min-height: calc(var(--height-nav-item) + var(--space-md));
}
.nav .logo__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: var(--space-sm) 0;
}
.nav .logo {
  display: block;
  height: calc(var(--height-nav-item) - var(--space-sm));
  width: auto;
}
.nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: var(--space-lg);
  border: var(--border);
  border-color: transparent;
}
.nav__listitem {
  margin: 0;
  padding: 0;
}
.nav__link {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: var(--space-sm) var(--space-sm);
  text-decoration: none;
  font-family: var(--font-family-base);
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: rgb(var(--color-title));
  transition: color var(--transition-normal);
}
.nav__link:hover {
  opacity: 0.7;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgb(var(--color-primary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-normal);
}
.nav__link:hover {
  color: rgb(var(--color-primary));
}
.nav__link:hover::after {
  transform: scaleX(1);
}
.nav__link.-active {
  color: rgb(var(--color-primary));
}
.nav__link.-active::after {
  transform: scaleX(1);
}
.nav__link::after {
  content: "";
  left: var(--space-sm);
  right: var(--space-sm);
  bottom: calc(var(--space-sm) * 0.35);
}
.nav__link.-home {
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}
.nav .menu__button {
  cursor: pointer;
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  text-align: center;
  line-height: calc(0.75 * var(--height-input));
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-md);
  border: var(--border);
  border-radius: var(--radius-base);
  color: rgb(var(--color-text));
  background: transparent;
  transition: background var(--transition-normal), color var(--transition-normal);
}
.nav .menu__button:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .nav {
    gap: var(--space-md);
    justify-content: space-between;
  }
  .nav .menu__button {
    display: inline-flex;
  }
  .nav__list {
    display: none;
    justify-content: flex-start;
    flex: 0 0 100%;
    order: 10;
    padding-top: var(--space-md);
    border-top: var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  .nav.-active {
    flex-wrap: wrap;
  }
  .nav.-active .nav__list {
    display: flex;
  }
  .nav__link {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
  }
  .nav__link::after {
    left: var(--space-md);
    right: var(--space-md);
    bottom: calc(var(--space-sm) * 0.25);
  }
}
.remove {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  text-align: center;
  line-height: calc(0.75 * var(--height-input));
  cursor: pointer;
  float: right;
}
.remove:hover {
  opacity: 0.7;
}

#actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.hr {
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  border-top: var(--border);
}

.input {
  border-radius: var(--radius-input);
  font-family: var(--font-family-label);
  font-size: var(--font-size-md);
  margin: 0;
  border: var(--border);
  min-height: calc(0.75 * var(--height-input));
  outline: none;
  padding: 0 var(--space-sm);
  color: rgb(var(--color-text));
  display: flex;
  flex-direction: column;
}
.input span:first-child {
  margin-top: var(--space-sm);
}
.input span:last-child {
  margin-bottom: var(--space-sm);
}
.input[disabled] {
  background-color: rgba(var(--color-text), 0.2);
  border: none;
}

select, option {
  display: block !important;
  padding: var(--space-sm) !important;
}

.tabs {
  display: flex;
}
.tabs__label {
  cursor: pointer;
  padding: var(--space-lg);
  border-bottom: var(--border);
  color: rgb(var(--color-text));
  position: relative;
}
.tabs__label:hover {
  opacity: 0.7;
}
.tabs__label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgb(var(--color-primary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-normal);
}
.tabs__label:hover {
  color: rgb(var(--color-primary));
}
.tabs__label:hover::after {
  transform: scaleX(1);
}
.tabs__label.-active {
  color: rgb(var(--color-primary));
}
.tabs__label.-active::after {
  transform: scaleX(1);
}

.steps-container {
  padding: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: var(--space-sm);
}
@media (max-width: 768px) {
  .steps-container {
    margin-bottom: 0;
    padding: var(--space-sm);
  }
}

.steps {
  max-width: var(--breakpoint-xl);
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  padding: 0 calc(var(--space-md) + var(--space-lg));
  gap: var(--space-md);
  align-items: flex-start;
}
@media (max-width: 768px) {
  .steps {
    padding: 0;
    gap: var(--space-sm);
    flex-wrap: nowrap;
  }
}

.step {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
  padding: 0 var(--space-lg);
  background: transparent;
  border: none;
  transition: all var(--transition-normal, 0.3s ease);
  text-decoration: none;
  color: rgb(var(--color-text));
  white-space: nowrap;
}
@media (max-width: 768px) {
  .step {
    padding: 0;
    flex: 0;
  }
}
.step__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  width: 100%;
}
@media (max-width: 768px) {
  .step__content {
    padding: var(--space-sm);
    gap: var(--space-sm);
  }
}
.step__icon {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  text-align: center;
  line-height: calc(0.75 * var(--height-input));
  font-size: inherit !important;
  line-height: 1;
  padding-bottom: 3px;
  transition: all var(--transition-normal, 0.3s ease);
}
.step__label {
  text-align: center;
  font-size: var(--font-size-xs, 0.875rem);
  font-family: var(--font-family-label);
  max-width: 200px;
  transition: all var(--transition-normal, 0.3s ease);
  font-weight: 500;
}
.step.-completed.-clickable {
  cursor: pointer;
  cursor: pointer;
}
.step.-completed.-clickable:hover {
  opacity: 0.7;
}
.step.-completed.-clickable:hover {
  background: rgba(var(--color-primary), 0.05);
  border-bottom-color: rgb(var(--color-primary));
  opacity: 1;
}
.step.-completed.-clickable:hover .step__icon {
  transform: scale(1.1);
}
.step.-completed .step__icon {
  color: color-mix(in srgb, rgb(var(--color-primary)) 70%, black);
}
.step.-completed .step__label {
  color: color-mix(in srgb, rgb(var(--color-primary)) 70%, black);
}
.step.-active {
  cursor: default;
  flex: 1 !important;
}
@media (max-width: 768px) {
  .step.-active {
    margin: 0 var(--space-lg);
  }
}
.step.-active:after {
  content: "";
  width: calc(var(--space-lg) + var(--space-md));
  height: 2px;
  right: calc(-1 * var(--space-lg) + 4px);
  background: rgba(var(--color-primary), 0.1);
  position: absolute;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .step.-active:after {
    width: var(--space-md);
    right: calc(-1 * var(--space-md));
  }
}
.step.-active:before {
  content: "";
  width: calc(var(--space-lg) + var(--space-md));
  height: 2px;
  background: rgba(var(--color-primary), 0.1);
  left: calc(-1 * var(--space-lg) + 4px);
  position: absolute;
  border-radius: 50%;
  margin: auto;
}
@media (max-width: 768px) {
  .step.-active:before {
    width: var(--space-md);
    left: calc(-1 * var(--space-md));
  }
}
.step.-active .step__content {
  border: 2px solid rgba(var(--color-primary), 0.1);
  border-radius: var(--radius-base);
}
.step.-active .step__icon {
  color: color-mix(in srgb, rgb(var(--color-primary)) 70%, black);
}
.step.-active .step__label {
  color: color-mix(in srgb, rgb(var(--color-primary)) 70%, black);
}
.step:not(.-active) .step__content {
  border: 2px solid transparent;
}
@media (max-width: 768px) {
  .step:not(.-active) .step__label {
    display: none;
  }
}
.step.-inactive {
  cursor: not-allowed;
  opacity: 0.4;
}
.step.-inactive .step__icon {
  color: rgb(var(--color-text-secondary));
}
.step.-inactive .step__label {
  color: rgb(var(--color-text-secondary));
}

.label {
  font-family: var(--font-family-label);
  font-size: var(--font-size-xs);
  line-height: calc(var(--font-size-xs) * 2);
  color: rgb(var(--color-label));
  display: inline-block;
}
.label.label--is-required:after {
  content: "*";
  color: rgb(var(--color-error));
  text-transform: none;
  letter-spacing: 0;
  font-weight: normal;
  margin-left: 5px;
  font-size: 0.9em;
}

.table {
  margin: 0;
  padding: 0;
}

.paragraph {
  margin: 0;
  font-size: var(--font-size-md);
  line-height: calc(var(--font-size-md) * 1.5);
  color: rgb(var(--color-text));
}

.subtitle {
  font-family: var(--font-family-subtitle);
  font-size: var(--font-size-lg);
  line-height: calc(var(--font-size-lg) * 1);
  color: rgb(var(--color-title));
  font-weight: normal;
  margin: 0;
  padding: var(--space-sm) 0;
}

.tag {
  position: relative;
  background: rgba(var(--color-secundary), 0.1);
  color: rgba(var(--color-secundary));
  padding: 0 var(--space-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-base);
  font-family: var(--font-family-label);
  font-size: var(--font-size-xs);
}

.title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);
  line-height: calc(var(--font-size-xl) * 1);
  font-weight: 700;
  color: rgb(var(--color-title));
}
.title strong {
  color: rgb(var(--color-secundary));
  font-weight: inherit;
}

.button, .submit, .link {
  position: relative;
  background: rgba(var(--color-primary), 1);
  color: rgba(var(--color-button-text));
  padding: 0 var(--space-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-input);
  font-family: var(--font-family-label);
  font-size: var(--font-size-md);
  margin: 0;
  height: var(--height-input);
  gap: var(--space-sm);
  display: inline-flex;
  overflow: hidden;
  cursor: pointer;
  border: none;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  align-self: flex-start;
}
.button[disabled], .submit[disabled], .link[disabled] {
  opacity: 0.2;
  cursor: default;
}
.button::after, .submit::after, .link::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 250%;
  height: 250%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(circle, rgba(var(--color-background), 0.4) 0%, rgba(var(--color-background), 0) 70%);
  transition: transform 0.35s ease-out;
  pointer-events: none;
}
.button:hover::after, .submit:hover::after, .link:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

.submit {
  background: rgba(var(--color-secundary), 1);
}

.link {
  background: transparent;
  color: color-mix(in srgb, rgb(var(--color-primary)) 70%, black);
  border: none;
  height: calc(0.5 * var(--height-input));
  text-decoration: underline;
  padding: 0;
  font-size: var(--font-size-xs);
}
.link:after {
  display: none;
}
.link .link__label {
  text-decoration: underline;
}

strong {
  color: rgb(var(--color-tertiary));
  font-weight: inherit;
}

[class^=material-] {
  font-size: inherit !important;
  color: inherit;
  padding-bottom: 4px;
  vertical-align: middle;
}

.list {
  margin: 0;
  padding: 0;
  width: 100%;
}
.list.-table {
  display: table;
}
.list.-table .list__item {
  display: table-row;
  height: var(--height-input);
}
.list.-table .list__item > span, .list.-table .list__item > strong, .list.-table .list__item > div {
  display: table-cell;
  padding: var(--space-sm);
  line-height: calc(var(--font-size-xs) * 1);
  vertical-align: middle;
  box-sizing: border-box;
}
.list.-table .list__item > span:last-child, .list.-table .list__item > strong:last-child, .list.-table .list__item > div:last-child {
  text-align: right;
}
.list.-table .list__item:not(:last-child) > span, .list.-table .list__item:not(:last-child) > strong, .list.-table .list__item:not(:last-child) > div {
  border-bottom: var(--border);
}
.list.-table .list__item [class^=material-] {
  padding: var(--space-md) 0;
}
.list__item {
  min-height: var(--height-input);
  align-items: center;
  gap: var(--space-md);
  display: flex;
}
.list__item:not(:last-child) {
  border-bottom: var(--border);
}
.list__item.-hover {
  cursor: pointer;
}
.list__item.-hover:hover {
  opacity: 0.7;
}
.list__item__label {
  flex: 1;
}
.list__item__sublist {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.list__item.-disabled, .list__item.-disabled:hover {
  opacity: 0.2;
  cursor: default;
}
.list__item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.list__item strong {
  white-space: nowrap;
}
.list__item .button, .list__item .submit, .list__item .link {
  align-self: center;
}

.select {
  width: 100%;
  margin-bottom: 10px;
}
.select__container {
  flex: 1;
}
.select__value {
  padding: 0 var(--space-sm);
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: stretch;
  border-radius: var(--radius-input);
  font-family: var(--font-family-label);
  font-size: var(--font-size-md);
  margin: 0;
  border: var(--border);
  min-height: calc(0.75 * var(--height-input));
  outline: none;
}
.select__value:focus {
  border: 1px solid rgb(var(--color-primary));
}
.select__search {
  font-family: var(--font-family-label);
  font-size: var(--font-size-md);
  border: none;
  outline: none;
  padding: 0;
}
.select.-isLoading .select__dropdown {
  pointer-events: none !important;
  overflow: hidden;
}
.select.-isLoading .select__dropdown:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin: 8px;
  border-radius: 50%;
  border: var(--border);
  animation: ring 1.2s linear infinite;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
.select.-isLoading .select__dropdown li {
  opacity: 0.1;
}
@keyframes ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.select__selected {
  flex-wrap: wrap;
  display: flex;
  gap: var(--space-sm);
}
.select__selected__item {
  outline: none;
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.select__dropdown {
  background-color: white;
  position: absolute;
  border: var(--border);
  box-sizing: border-box;
  width: 100%;
  border-radius: var(--border-radius);
  margin-top: 5px;
  height: calc(var(--dropdown-height) + 12px);
  transition: height ease-in 150ms;
  overflow-y: auto;
  z-index: 10;
  overscroll-behavior: contain;
}
.select__dropdown__items {
  list-style-type: none;
  margin: 0;
}
.select__dropdown__items:has(li) {
  padding: 5px;
}
.select__dropdown__items__li {
  margin: 0;
  padding: 0 10px;
  height: 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.select__dropdown__items__li:hover {
  color: rgb(var(--color-primary));
}
.select__dropdown__items__li:nth-child(odd) {
  background-color: rgb(var(--color-background));
}
.select__dropdown__items__li.-selected {
  opacity: 0.1;
  text-decoration: line-through;
}
.select__dropdown__items__li.-highlight {
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-background));
}
.select:not(.-hasMultiple) .select__selected__item {
  width: 100%;
}
.select:not(.-hasMultiple) .select__search {
  width: 100%;
}

.select__selected__item__action, .select__toggleicon {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  text-align: center;
  line-height: calc(0.75 * var(--height-input));
}

.input__radio, .input__checkbox {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.input__radio + label, .input__checkbox + label {
  display: flex;
  cursor: pointer;
  align-items: center;
  word-break: break-word;
  transition: all ease-in 150ms;
}
.input__radio + label:before, .input__checkbox + label:before {
  transition: all ease-in 150ms;
  content: "";
  width: 10px;
  height: 10px;
  outline: 2px solid rgb(var(--color-text));
  border: 2px solid white;
  display: inline-block;
  margin-right: 10px;
  box-sizing: border-box;
  flex: 0 0 10px;
  margin-top: -3px;
}
.input__radio:hover + label:before, .input__checkbox:hover + label:before {
  background-color: rgb(var(--color-text));
}
.input__radio:checked + label:before, .input__checkbox:checked + label:before {
  outline: 2px solid rgb(var(--color-primary));
  background-color: rgb(var(--color-primary));
}

textarea.input {
  padding: 8px 20px;
  resize: vertical;
}

.input__radio + label:before {
  border-radius: 50%;
}

::placeholder {
  color: rgba(var(--color-text), 0.2);
  opacity: 1;
}

.form--is-submitted .input:invalid {
  border: 2px solid rgba(var(--color-error), 0.5);
}

.input__wrapper {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.input__wrapper .input {
  flex: 1;
  min-width: 0;
}

.fieldset {
  border: none;
  padding: 0;
  margin: 0;
  margin: var(--space-lg) 0;
  position: relative;
}
.fieldset .subtitle {
  font-size: var(--font-size-md);
  line-height: calc(var(--font-size-md) * 1.5);
  color: rgb(var(--color-text));
}

:root {
  --cc-font-family: var(--font-family-base);
  --cc-font-size: var(--font-size-xs);
  --cc-bg: white;
  --cc-z-index: 2147483647;
  --cc-text: rgb(var(--color-text));
  --cc-border-radius: var(--radius-base);
  --cc-btn-primary-bg: rgb(var(--color-primary));
  --cc-btn-primary-text: rgb(var(--color-button-text));
  --cc-btn-primary-hover-bg: color-mix(in srgb, rgb(var(--color-primary)) 70%, black);
  --cc-btn-primary-hover-text: var(--cc-btn-primary-text);
  --cc-btn-secondary-bg: rgb(var(--color-background));
  --cc-btn-secondary-text: rgb(var(--color-primary));
  --cc-btn-secondary-hover-bg: color-mix(in srgb, rgb(var(--color-primary)) 12%, rgb(var(--color-background)));
  --cc-btn-secondary-hover-text: var(--cc-btn-secondary-text);
  --cc-btn-border-radius: var(--radius-input);
  --cc-toggle-bg-off: rgb(var(--color-error));
  --cc-toggle-bg-on: var(--cc-btn-primary-bg);
  --cc-toggle-bg-readonly: color-mix(in srgb, rgb(var(--color-border)) 70%, rgb(var(--color-background)));
  --cc-toggle-knob-bg: rgb(var(--color-background));
  --cc-toggle-knob-icon-color: rgb(var(--color-background));
  --cc-block-text: var(--cc-text);
  --cc-cookie-category-block-bg: rgb(var(--color-background));
  --cc-cookie-category-block-bg-hover: rgb(var(--color-background));
  --cc-section-border: rgb(var(--color-border));
  --cc-cookie-table-border: rgb(var(--color-border));
  --cc-overlay-bg: rgb(var(--color-title));
  --cc-overlay-opacity: .8;
  --cc-consent-modal-box-shadow: var(--shadow-modal);
  --cc-webkit-scrollbar-bg: rgb(var(--color-border));
  --cc-webkit-scrollbar-bg-hover: color-mix(in srgb, rgb(var(--color-text)) 60%, rgb(var(--color-border))) ;
}

#cc--main {
  z-index: 2147483647;
  z-index: var(--cc-z-index);
}

.cc_div *, .cc_div :after, .cc_div :before, .cc_div :hover {
  animation: none;
  background: none;
  border: none;
  border-radius: unset;
  box-shadow: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  float: none;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: normal;
  font-weight: inherit;
  height: auto;
  letter-spacing: unset;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  text-transform: none;
  transition: none;
  vertical-align: baseline;
  visibility: unset;
}

.cc_div {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2d4156;
  color: var(--cc-text);
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-family: var(--cc-font-family);
  font-size: 16px;
  font-size: var(--cc-font-size);
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

#c-ttl, #s-bl td:before, #s-ttl, .cc_div .b-tl, .cc_div .c-bn {
  font-weight: 600;
}

#cm, #s-bl .act .b-acc, #s-inr, .cc_div .b-tl, .cc_div .c-bl {
  border-radius: 0.45rem;
  border-radius: var(--cc-border-radius);
}

#s-bl .act .b-acc {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.cc_div a, .cc_div button, .cc_div input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: hidden;
}

.cc_div a {
  border-bottom: 1px solid;
}

.cc_div a:hover {
  border-color: transparent;
  text-decoration: none;
}

.cc_div .c-bn > span {
  pointer-events: none;
}

#cm-ov, #cs-ov, .c--anim #cm, .c--anim #s-cnt, .c--anim #s-inr {
  transition: visibility 0.25s linear, opacity 0.25s ease, transform 0.25s ease !important;
}

.c--anim .c-bn {
  transition: background-color 0.25s ease !important;
}

.c--anim #cm.bar.slide, .c--anim #cm.bar.slide + #cm-ov, .c--anim .bar.slide #s-inr, .c--anim .bar.slide + #cs-ov {
  transition: visibility 0.4s ease, opacity 0.4s ease, transform 0.4s ease !important;
}

#cm.bar.slide, .cc_div .bar.slide #s-inr {
  opacity: 1;
  transform: translateX(100%);
}

#cm.bar.top.slide, .cc_div .bar.left.slide #s-inr {
  opacity: 1;
  transform: translateX(-100%);
}

#cm.slide, .cc_div .slide #s-inr {
  transform: translateY(1.6em);
}

#cm.top.slide {
  transform: translateY(-1.6em);
}

#cm.bar.slide {
  transform: translateY(100%);
}

#cm.bar.top.slide {
  transform: translateY(-100%);
}

.show--consent .c--anim #cm, .show--consent .c--anim #cm.bar, .show--settings .c--anim #s-inr, .show--settings .c--anim .bar.slide #s-inr {
  opacity: 1;
  transform: scale(1);
  visibility: visible !important;
}

.show--consent .c--anim #cm.box.middle, .show--consent .c--anim #cm.cloud.middle {
  transform: scale(1) translateY(-50%);
}

.show--settings .c--anim #s-cnt {
  visibility: visible !important;
}

.force--consent.show--consent .c--anim #cm-ov, .show--settings .c--anim #cs-ov {
  opacity: 0.85 !important;
  opacity: var(--cc-overlay-opacity) !important;
  visibility: visible !important;
}

#cm {
  background: #fff;
  background: var(--cc-bg);
  bottom: 1.25em;
  box-shadow: 0 0.625em 1.875em #000;
  box-shadow: 0 0.625rem 1.875rem rgba(2, 2, 3, 0.28);
  box-shadow: var(--cc-consent-modal-box-shadow);
  font-family: inherit;
  line-height: normal;
  max-width: 24.2em;
  opacity: 0;
  padding: 1em 1.4em 1.3em;
  position: fixed;
  right: 1.25em;
  transform: scale(0.95);
  visibility: hidden;
  width: 100%;
  z-index: 1;
}

#cc_div #cm {
  display: block !important;
}

#c-ttl {
  font-size: 1.05em;
  margin-bottom: 0.7em;
}

.cloud #c-ttl {
  margin-top: -0.15em;
}

#c-txt {
  font-size: 0.9em;
  line-height: 1.5em;
}

.cc_div #c-bns {
  display: flex;
  justify-content: space-between;
  margin-top: 1.4em;
}

.cc_div .c-bn {
  background: #eaeff2;
  background: var(--cc-btn-secondary-bg);
  border-radius: 0.375rem;
  border-radius: var(--cc-btn-border-radius);
  color: #37baea;
  color: var(--cc-btn-secondary-text);
  cursor: pointer;
  display: inline-block;
  flex: 1;
  font-size: 0.82em;
  padding: 1em 1.7em;
  text-align: center;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
}

#c-bns button + button, #s-c-bn, #s-cnt button + button {
  float: right;
  margin-left: 0.5rem;
}

#s-cnt #s-rall-bn {
  float: none;
}

#cm .c_link:active, #cm .c_link:hover, #s-c-bn:active, #s-c-bn:hover, #s-cnt button + button:active, #s-cnt button + button:hover {
  background: #d8e0e6;
  background: var(--cc-btn-secondary-hover-bg);
  color: #2d4156;
  color: var(--cc-btn-secondary-hover-text);
}

#s-cnt {
  display: table;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 101;
}

#s-bl {
  outline: none;
  scrollbar-width: thin;
}

#s-bl .title {
  margin-top: 1.4em;
  display: initial;
}

#s-bl .b-bn, #s-bl .title:first-child {
  margin-top: 0;
}

#s-bl .b-acc .p {
  margin-top: 0;
  padding: 1em;
}

#s-cnt .b-bn .b-tl {
  background: none;
  display: block;
  font-family: inherit;
  font-size: 0.95em;
  padding: 1.3em 6.4em 1.3em 2.7em;
  position: relative;
  transition: background-color 0.25s ease;
  width: 100%;
}

#s-cnt .b-bn .b-tl.exp {
  cursor: pointer;
}

#s-cnt .act .b-bn .b-tl {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#s-cnt .b-bn .b-tl:active, #s-cnt .b-bn .b-tl:hover {
  background: #e9eff4;
  background: var(--cc-cookie-category-block-bg-hover);
}

#s-bl .b-bn {
  position: relative;
}

#s-bl .c-bl {
  border: 1px solid #f1f3f5;
  border: 1px solid var(--cc-section-border);
  margin-bottom: 0.4rem;
  padding: 1em;
  transition: background-color 0.25s ease;
}

#s-bl .c-bl:last-child {
  margin-bottom: 0.5em;
}

#s-bl .c-bl:first-child {
  border: none;
  margin-bottom: 2em;
  margin-top: 0;
  padding: 0;
  transition: none;
}

#s-bl .c-bl:not(.b-ex):first-child:hover {
  background: transparent;
  background: unset;
}

#s-bl .c-bl.b-ex {
  background: #f0f4f7;
  background: var(--cc-cookie-category-block-bg);
  border: none;
  padding: 0;
  transition: none;
}

#s-bl .c-bl.b-ex + .c-bl {
  margin-top: 2em;
}

#s-bl .c-bl.b-ex + .c-bl.b-ex {
  margin-top: 0;
}

#s-bl .c-bl.b-ex:first-child {
  margin-bottom: 1em;
  margin-bottom: 0.5em;
}

#s-bl .b-acc {
  display: none;
  margin-bottom: 0;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
}

#s-bl .act .b-acc {
  display: block;
  max-height: 100%;
  overflow: hidden;
}

#s-cnt .p {
  color: #2d4156;
  color: var(--cc-block-text);
  font-size: 0.9em;
  line-height: 1.5em;
  margin-top: 0.85em;
}

.cc_div .b-tg .c-tgl:disabled {
  cursor: not-allowed;
}

#c-vln {
  display: table-cell;
  position: relative;
  vertical-align: middle;
}

#cs {
  bottom: 0;
  left: 0;
  padding: 0 1.7em;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
}

#cs, #s-inr {
  height: 100%;
}

#s-inr {
  box-shadow: 0 13px 27px -5px rgba(3, 6, 9, 0.26);
  margin: 0 auto;
  max-width: 45em;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 4.75em;
  padding-top: 4.75em;
  position: relative;
  transform: scale(0.96);
  visibility: hidden;
}

#s-bns, #s-hdr, #s-inr {
  background: #fff;
  background: var(--cc-bg);
}

#s-bl {
  display: block;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overflow-y: overlay;
  padding: 1.3em 1.6em;
  width: 100%;
}

#s-bns {
  border-top: 1px solid #f1f3f5;
  border-top: 1px solid var(--cc-section-border);
  bottom: 0;
  height: 4.75em;
  left: 0;
  padding: 1em 1.8em;
  position: absolute;
  right: 0;
}

.cc_div .cc-link {
  border-bottom: 1px solid #2d4156;
  border-bottom: 1px solid var(--cc-btn-primary-bg);
  color: #2d4156;
  color: var(--cc-btn-primary-bg);
  cursor: pointer;
  display: inline;
  font-weight: 600;
  padding-bottom: 0;
  text-decoration: none;
}

.cc_div .cc-link:active, .cc_div .cc-link:hover {
  border-color: transparent;
}

#c-bns button:first-child, #s-bns button:first-child {
  background: #2d4156;
  background: var(--cc-btn-primary-bg);
  color: #fff;
  color: var(--cc-btn-primary-text);
}

#c-bns.swap button:first-child {
  background: #eaeff2;
  background: var(--cc-btn-secondary-bg);
  color: #2d4156;
  color: var(--cc-btn-secondary-text);
}

#c-bns.swap button:last-child {
  background: #2d4156;
  background: var(--cc-btn-primary-bg);
  color: #fff;
  color: var(--cc-btn-primary-text);
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg {
  background: #2d4156;
  background: var(--cc-toggle-bg-on);
}

#c-bns button:first-child:active, #c-bns button:first-child:hover, #c-bns.swap button:last-child:active, #c-bns.swap button:last-child:hover, #s-bns button:first-child:active, #s-bns button:first-child:hover {
  background: #1d2e38;
  background: var(--cc-btn-primary-hover-bg);
  color: #fff;
  color: var(--cc-btn-primary-hover-text);
}

#c-bns.swap button:first-child:active, #c-bns.swap button:first-child:hover {
  background: #d8e0e6;
  background: var(--cc-btn-secondary-hover-bg);
  color: #2d4156;
  color: var(--cc-btn-secondary-hover-text);
}

#s-hdr {
  border-bottom: 1px solid #f1f3f5;
  border-bottom: 1px solid var(--cc-section-border);
  display: table;
  height: 4.75em;
  padding: 0 1.8em;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}

#s-hdr, #s-ttl {
  vertical-align: middle;
}

#s-ttl {
  display: table-cell;
  font-size: 1em;
}

#s-c-bn {
  font-size: 1.45em;
  font-weight: 400;
  height: 1.7em;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 1.7em;
}

#s-c-bnc {
  display: table-cell;
  vertical-align: middle;
}

.cc_div span.t-lb {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1;
}

#c_policy__text {
  height: 31.25em;
  margin-top: 1.25em;
  overflow-y: auto;
}

#c-s-in {
  height: 100%;
  height: calc(100% - 2.5em);
  max-height: 37.5em;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 688px) {
  #s-bl::-webkit-scrollbar {
    background: transparent;
    border-radius: 0 0.25em 0.25em 0;
    height: 100%;
    width: 0.8em;
  }
  #s-bl::-webkit-scrollbar-thumb {
    background: #cfd5db;
    background: var(--cc-webkit-scrollbar-bg);
    border: 0.25em solid #fff;
    border: 0.25em solid var(--cc-bg);
    border-radius: 100em;
  }
  #s-bl::-webkit-scrollbar-thumb:hover {
    background: #9199a0;
    background: var(--cc-webkit-scrollbar-bg-hover);
  }
  #s-bl::-webkit-scrollbar-button {
    height: 5px;
    width: 10px;
  }
}
.cc_div .b-tg {
  bottom: 0;
  display: inline-block;
  margin: auto;
  right: 0;
  right: 1.2em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  vertical-align: middle;
}

.cc_div .b-tg, .cc_div .b-tg .c-tgl {
  cursor: pointer;
  position: absolute;
  top: 0;
}

.cc_div .b-tg .c-tgl {
  border: 0;
  display: block;
  left: 0;
  margin: 0;
}

.cc_div .b-tg .c-tg {
  background: #919ea6;
  background: var(--cc-toggle-bg-off);
  pointer-events: none;
  position: absolute;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.cc_div .b-tg, .cc_div .b-tg .c-tg, .cc_div .b-tg .c-tgl, .cc_div span.t-lb {
  border-radius: 4em;
  height: 1.5em;
  width: 3.4em;
}

.cc_div .b-tg .c-tg.c-ro {
  cursor: not-allowed;
}

.cc_div .b-tg .c-tgl ~ .c-tg.c-ro {
  background: #d5dee2;
  background: var(--cc-toggle-bg-readonly);
}

.cc_div .b-tg .c-tgl ~ .c-tg.c-ro:after {
  box-shadow: none;
}

.cc_div .b-tg .c-tg:after {
  background: #fff;
  background: var(--cc-toggle-knob-bg);
  border: none;
  border-radius: 100%;
  box-shadow: 0 1px 2px rgba(24, 32, 35, 0.36);
  box-sizing: content-box;
  content: "";
  display: block;
  height: 1.25em;
  left: 0.125em;
  position: relative;
  top: 0.125em;
  transition: transform 0.25s ease;
  width: 1.25em;
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg:after {
  transform: translateX(1.9em);
}

#s-bl table, #s-bl td, #s-bl th {
  border: none;
}

#s-bl tbody tr {
  transition: background-color 0.25s ease;
}

#s-bl tbody tr:hover {
  background: #e9eff4;
  background: var(--cc-cookie-category-block-bg-hover);
}

#s-bl table {
  border-collapse: collapse;
  margin: 0;
  overflow: hidden;
  padding: 0;
  text-align: left;
  width: 100%;
}

#s-bl caption {
  border-bottom: 1px solid #e9edf2;
  border-bottom: 1px solid var(--cc-cookie-table-border);
  font-size: 0.9em;
  font-weight: 600;
  padding: 0.5rem 1rem;
}

#s-bl td, #s-bl th {
  font-size: 0.8em;
  padding: 0.8em 0.625em 0.8em 1.2em;
  text-align: left;
  vertical-align: top;
}

#s-bl th {
  font-family: inherit;
  font-weight: 600;
  padding: 1em 1rem;
}

#s-bl thead tr:first-child {
  border-bottom: 1px solid #e9edf2;
  border-bottom: 1px solid var(--cc-cookie-table-border);
}

.force--consent #cs, .force--consent #s-cnt {
  width: 100vw;
}

#cm-ov, #cs-ov {
  background: #070707;
  background: #040608;
  background: var(--cc-overlay-bg);
  bottom: 0;
  display: none;
  left: 0;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: none;
  visibility: hidden;
}

.c--anim #cs-ov, .force--consent .c--anim #cm-ov, .force--consent.show--consent #cm-ov, .show--settings #cs-ov {
  display: block;
}

#cs-ov {
  z-index: 2;
}

.force--consent .cc_div {
  bottom: 0;
  left: 0;
  position: fixed;
  top: 0;
  transition: visibility 0.25s linear;
  visibility: hidden;
  width: 100%;
  width: 100vw;
}

.force--consent.show--consent .c--anim .cc_div, .force--consent.show--settings .c--anim .cc_div {
  visibility: visible;
}

.force--consent #cm {
  position: absolute;
}

.force--consent #cm.bar {
  max-width: 100vw;
  width: 100vw;
}

html.force--consent.show--consent {
  overflow-y: hidden !important;
}

html.force--consent.show--consent, html.force--consent.show--consent body {
  height: auto !important;
  overflow-x: hidden !important;
}

.cc_div .act .b-bn .exp:before, .cc_div .b-bn .exp:before {
  border: solid #2d4156;
  border: solid var(--cc-btn-secondary-text);
  border-width: 0 2px 2px 0;
  content: "";
  display: inline-block;
  left: 1.2em;
  margin-right: 15px;
  padding: 0.2em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.cc_div .act .b-bn .b-tl:before {
  transform: translateY(-20%) rotate(225deg);
}

.cc_div .on-i:before {
  border: solid #ecf2fa;
  border: solid var(--cc-toggle-knob-icon-color);
  border-width: 0 2px 2px 0;
  display: inline-block;
  left: 0.75em;
  padding: 0.1em 0.1em 0.45em;
  top: 0.37em;
}

#s-c-bn:after, #s-c-bn:before, .cc_div .on-i:before {
  content: "";
  margin: 0 auto;
  position: absolute;
  transform: rotate(45deg);
}

#s-c-bn:after, #s-c-bn:before {
  background: #2d4156;
  background: var(--cc-btn-secondary-text);
  border-radius: 1em;
  height: 0.6em;
  left: 0.82em;
  top: 0.58em;
  width: 1.5px;
}

#s-c-bn:after {
  transform: rotate(-45deg);
}

.cc_div .off-i, .cc_div .on-i {
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  text-align: center;
  transition: opacity 0.15s ease;
  width: 50%;
}

.cc_div .on-i {
  left: 0;
  opacity: 0;
}

.cc_div .off-i:after, .cc_div .off-i:before {
  background: #ecf2fa;
  background: var(--cc-toggle-knob-icon-color);
  content: " ";
  display: block;
  height: 0.7em;
  margin: 0 auto;
  position: absolute;
  right: 0.8em;
  top: 0.42em;
  transform-origin: center;
  width: 0.09375em;
}

.cc_div .off-i:before {
  transform: rotate(45deg);
}

.cc_div .off-i:after {
  transform: rotate(-45deg);
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg .on-i {
  opacity: 1;
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg .off-i {
  opacity: 0;
}

#cm.box.middle, #cm.cloud.middle {
  bottom: auto;
  top: 50%;
  transform: translateY(-37%);
}

#cm.box.middle.zoom, #cm.cloud.middle.zoom {
  transform: scale(0.95) translateY(-50%);
}

#cm.box.center, #cm.cloud {
  left: 1em;
  margin: 0 auto;
  right: 1em;
}

#cm.cloud {
  max-width: 50em;
  overflow: hidden;
  padding: 1.2em 1.7em;
  text-align: center;
  width: unset;
}

.cc_div .cloud #c-inr {
  display: table;
  width: 100%;
}

.cc_div .cloud #c-inr-i {
  display: table-cell;
  padding-right: 2.4em;
  vertical-align: top;
  width: 70%;
}

.cc_div .cloud #c-txt {
  font-size: 0.85em;
}

.cc_div .cloud #c-bns {
  display: table-cell;
  min-width: 170px;
  vertical-align: middle;
}

#cm.cloud .c-bn {
  margin: 0.5rem 0 0;
  width: 100%;
}

#cm.cloud .c-bn:first-child {
  margin: 0;
}

#cm.cloud.left {
  margin-right: 1.25em;
}

#cm.cloud.right {
  margin-left: 1.25em;
}

#cm.bar {
  border-radius: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  padding: 2em;
  position: fixed;
  right: 0;
  width: 100%;
}

#cm.bar #c-inr {
  margin: 0 auto;
  max-width: 32em;
}

#cm.bar #c-bns {
  max-width: 33.75em;
}

#cm.bar #cs {
  padding: 0;
}

.cc_div .bar #c-s-in {
  height: 100%;
  max-height: 100%;
  top: 0;
  transform: none;
}

.cc_div .bar #s-bl, .cc_div .bar #s-bns, .cc_div .bar #s-hdr {
  padding-left: 1.4em;
  padding-right: 1.4em;
}

.cc_div .bar #cs {
  padding: 0;
}

.cc_div .bar #s-inr {
  border-radius: 0;
  margin: 0 0 0 auto;
  max-width: 32em;
}

.cc_div .bar.left #s-inr {
  margin-left: 0;
  margin-right: auto;
}

.cc_div .bar #s-bl table, .cc_div .bar #s-bl tbody, .cc_div .bar #s-bl td, .cc_div .bar #s-bl th, .cc_div .bar #s-bl thead, .cc_div .bar #s-bl tr, .cc_div .bar #s-cnt {
  display: block;
}

.cc_div .bar #s-bl caption {
  border-bottom: 1px solid #e9edf2;
  border-bottom: 1px solid var(--cc-cookie-table-border);
  border-top: 0;
  display: block;
}

.cc_div .bar #s-bl thead tr {
  left: -9999px;
  position: absolute;
  top: -9999px;
}

.cc_div .bar #s-bl tr {
  border-top: 1px solid #e9edf2;
  border-top: 1px solid var(--cc-cookie-table-border);
}

.cc_div .bar #s-bl td {
  border: none;
  padding-left: 35%;
  position: relative;
}

.cc_div .bar #s-bl td:before {
  color: #2d4156;
  color: var(--cc-text);
  content: attr(data-column);
  left: 1rem;
  overflow: hidden;
  padding-right: 0.625em;
  position: absolute;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#cm.top {
  bottom: auto;
  top: 1.25em;
}

#cm.left {
  left: 1.25em;
  right: auto;
}

#cm.right {
  left: auto;
  right: 1.25em;
}

#cm.bar.left, #cm.bar.right {
  left: 0;
  right: 0;
}

#cm.bar.top {
  top: 0;
}

@media (prefers-reduced-motion) {
  #cc--main #cm, #cc--main #s-cnt, #cc--main #s-inr {
    transition: none !important;
  }
}
@media screen and (max-width: 688px) {
  #cm, #cm.cloud, #cm.left, #cm.right {
    bottom: 1em;
    display: block;
    left: 1em;
    margin: 0;
    max-width: 100%;
    padding: 1.2em !important;
    right: 1em;
    width: auto;
  }
  .force--consent #cm, .force--consent #cm.cloud {
    max-width: 100vw;
    width: auto;
  }
  #cm.top {
    bottom: auto;
    top: 1em;
  }
  #cm.bottom {
    bottom: 1em;
    top: auto;
  }
  #cm.bar.bottom {
    bottom: 0;
  }
  #cm.cloud .c-bn {
    font-size: 0.85em;
  }
  #s-bns, .cc_div .bar #s-bns {
    padding: 1em 1.3em;
  }
  .cc_div .bar #s-inr {
    max-width: 100%;
    width: 100%;
  }
  .cc_div .cloud #c-inr-i {
    padding-right: 0;
  }
  #cs {
    border-radius: 0;
    padding: 0;
  }
  #c-s-in {
    height: 100%;
    max-height: 100%;
    top: 0;
    transform: none;
  }
  .cc_div .b-tg {
    right: 1.1em;
    transform: scale(1.1);
  }
  #s-inr {
    border-radius: 0;
    margin: 0;
    padding-bottom: 7.9em;
  }
  #s-bns {
    height: 7.9em;
  }
  #s-bl, .cc_div .bar #s-bl {
    padding: 1.2em;
  }
  #s-hdr, .cc_div .bar #s-hdr {
    padding: 0 1.2em;
  }
  #s-bl table {
    width: 100%;
  }
  #s-inr.bns-t {
    padding-bottom: 10.5em;
  }
  .bns-t #s-bns {
    height: 10.5em;
  }
  .cc_div .bns-t .c-bn {
    font-size: 0.83em;
    padding: 0.9em 1.6em;
  }
  #s-cnt .b-bn .b-tl {
    padding-bottom: 1.2em;
    padding-top: 1.2em;
  }
  #s-bl table, #s-bl tbody, #s-bl td, #s-bl th, #s-bl thead, #s-bl tr, #s-cnt {
    display: block;
  }
  #s-bl caption {
    border-bottom: 0;
    display: block;
  }
  #s-bl thead tr {
    left: -9999px;
    position: absolute;
    top: -9999px;
  }
  #s-bl tr {
    border-top: 1px solid #e9edf2;
    border-top: 1px solid var(--cc-cookie-table-border);
  }
  #s-bl td {
    border: none;
    padding-left: 35%;
    position: relative;
  }
  #s-bl td:before {
    color: #2d4156;
    color: var(--cc-text);
    content: attr(data-column);
    left: 1rem;
    overflow: hidden;
    padding-right: 0.625em;
    position: absolute;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  #cm .c-bn, .cc_div .c-bn {
    margin-right: 0;
    width: 100%;
  }
  #s-cnt #s-rall-bn {
    margin-left: 0;
  }
  .cc_div #c-bns {
    flex-direction: column;
  }
  #c-bns button + button, #s-cnt button + button {
    float: unset;
    margin-left: 0;
    margin-top: 0.625em;
  }
  #cm.box, #cm.cloud {
    left: 1em;
    right: 1em;
    width: auto;
  }
  #cm.cloud.left, #cm.cloud.right {
    margin: 0;
  }
  .cc_div .cloud #c-bns, .cc_div .cloud #c-inr, .cc_div .cloud #c-inr-i {
    display: block;
    min-width: unset;
    width: auto;
  }
  .cc_div .cloud #c-txt {
    font-size: 0.9em;
  }
  .cc_div .cloud #c-bns {
    margin-top: 1.625em;
  }
}
:root {
  --color-text: 74, 74, 74;
  --color-title: 24, 24, 24;
  --color-label: 24, 24, 24;
  --color-button-text: 247, 245, 242;
  --color-background: 247, 245, 242;
  --color-footer: 247, 245, 242;
  --color-primary: 26, 182, 157;
  --color-secundary: 238, 74, 98;
  --color-tertiary: 0, 79, 128;
  --color-border: 229, 229, 229;
  --color-error: 193, 77, 77;
  --background-tinted: linear-gradient(51deg,rgba(211, 232, 233, 1) 0%, rgba(237, 237, 237, 1) 50%, rgba(197, 232, 210, 1) 76%, rgba(235, 235, 192, 1) 87%);
  --font-family-base: "League Spartan";
  --font-family-heading: "League Spartan";
  --font-family-subtitle: "League Spartan";
  --font-family-label: "League Spartan";
  --font-family-icons: "Material Icons";
  --font-size-xs: 1rem;
  --font-size-md: 1.25rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 2.65625rem;
  --space-sm: 0.6rem;
  --space-md: 1rem;
  --space-lg: 1.25rem;
  --letter-spacing: 0.06rem;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
  --radius-base: .2rem .2rem .2rem .2rem;
  --radius-input: .2rem .2rem .2rem .2rem;
  --border: 1px solid rgb(var(--color-border));
  --shadow-modal: 0 0.5625rem 2.5625rem -1rem rgba(0, 0, 0, 0.2);
  --shadow-block: 0px 10px 50px 0px rgba(26, 46, 85, 0.07);
  --spacing-block: 2.5rem 0;
  --height-breadcrumb: 4.375rem;
  --height-nav-item: 4.7rem;
  --height-input: 3rem;
  --width-nav-list: 18.75rem;
  --width-scrollbar: 0.3125rem;
  --width-modal: 31.25rem;
  --transition-normal: 300ms ease-out;
}