* {
  box-sizing: border-box;
}
*:focus:not(:focus-visible) {
  outline: none;
}

html {
  height: 100%;
  margin: 0;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-text);
  overflow-x: hidden;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font-style: normal;
}

@font-face {
  font-family: "prometo";
  font-weight: 400;
  font-display: fallback;
  font-style: normal;
  src: url("../../fonts/prometo/prometo.otf") format("opentype"), url("../../fonts/prometo/prometo.ttf") format("truetype"), url("../../fonts/prometo/prometo.woff") format("woff"), url("../../fonts/prometo/prometo.svg") format("svg"), url("../../fonts/prometo/prometo.woff2") format("woff2");
}
@font-face {
  font-family: "prometo-bold";
  font-weight: 700;
  font-display: fallback;
  font-style: normal;
  src: url("../../fonts/prometo-bold/prometo-bold.otf") format("opentype"), url("../../fonts/prometo-bold/prometo-bold.ttf") format("truetype"), url("../../fonts/prometo-bold/prometo-bold.woff") format("woff"), url("../../fonts/prometo-bold/prometo-bold.svg") format("svg"), url("../../fonts/prometo-bold/prometo-bold.woff2") format("woff2");
}
@font-face {
  font-family: "soleto-light";
  font-weight: 300;
  font-display: fallback;
  font-style: normal;
  src: url("../../fonts/soleto-light/soleto-light.otf") format("opentype"), url("../../fonts/soleto-light/soleto-light.ttf") format("truetype"), url("../../fonts/soleto-light/soleto-light.woff") format("woff"), url("../../fonts/soleto-light/soleto-light.svg") format("svg"), url("../../fonts/soleto-light/soleto-light.woff2") format("woff2");
}
@keyframes fail {
  0% {
    transform: translateX(0);
  }
  15% {
    transform: translateX(-0.5rem);
  }
  30% {
    transform: translateX(0.5rem);
  }
  45% {
    transform: translateX(-0.5rem);
  }
  60% {
    transform: translateX(0.5rem);
  }
  75% {
    transform: translateX(-0.5rem);
  }
  90% {
    transform: translateX(0.5rem);
  }
  100% {
    transform: translateX(0);
  }
}
body {
  display: flex;
  flex-flow: column wrap;
  padding-top: var(--nav-height);
}
body > nav, body > header, body > footer {
  flex: 0 0 auto;
  width: 100%;
}
body > main, body > section {
  flex: 1 1 auto;
  width: 100%;
}

:root {
  --nav-height: 5.5rem;
  --anim-type: ease-out;
}

*:hover {
  --anim-type: ease-in;
}

.element-to-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

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

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

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

.uppercase {
  text-transform: uppercase;
}

.base-space {
  display: block;
  width: 100%;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 1024px) {
  .base-space {
    margin-bottom: 3rem;
  }
}

.elipsis-text {
  max-width: 100%;
  display: block !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.relative {
  position: relative;
}

.no-margin {
  margin: 0 !important;
}

.no-gap-row {
  row-gap: 0 !important;
}

.tablet-content {
  display: none;
}
@media only screen and (max-width: 768px) {
  .tablet-content {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .no-tablet-content {
    display: none;
  }
}

.mobile-content {
  display: none;
}
@media only screen and (max-width: 425px) {
  .mobile-content {
    display: block;
  }
}

@media only screen and (max-width: 425px) {
  .no-mobile-content {
    display: none;
  }
}

.overflow-hidden {
  overflow: hidden;
}

.inline-flex {
  display: inline-flex;
}

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

.inline-grid {
  --col-count: 1;
  --col-gap: 1.6rem;
  display: inline-grid;
  column-gap: var(--col-gap);
  grid-template-columns: repeat(var(--col-count), auto);
}
.inline-grid--col-2 {
  --col-count: 2;
}
.inline-grid > * {
  align-self: flex-start;
}

.show-tablet {
  display: none;
}

@media only screen and (max-width: 768px) {
  .show-tablet {
    display: block;
  }
}
.d-none {
  display: none;
}

@media only screen and (min-width: 426px) {
  .d-tablet-block {
    display: block !important;
  }
}
.show-mobile {
  display: none;
}

@media only screen and (max-width: 425px) {
  .show-mobile {
    display: block;
  }
}
.gap {
  --gap: .8em;
  gap: var(--gap) !important;
}
.gap--xs {
  --gap: 0.2em !important;
}
.gap--s {
  --gap: 0.4em !important;
}
.gap--m {
  --gap: 0.8em !important;
}
.gap--l {
  --gap: 1.6em !important;
}
.gap--xl {
  --gap: 2.4em !important;
}
.gap--2xl {
  --gap: 3.2em !important;
}
.gap--3xl {
  --gap: 4em !important;
}
.gap--no {
  --gap: 0 !important;
}

.error-text {
  color: hsl(0, 84%, 46%);
}

.z-10 {
  z-index: 10;
}

.mbe-s {
  margin-block-end: 1.2rem !important;
}

h1 {
  margin-bottom: 2.4rem;
  font-size: xx-large;
}

h2 {
  margin-bottom: 1.6rem;
  font-size: x-large;
}

h3 {
  font-size: large;
}

h4 {
  font-size: medium;
}

h5 {
  font-size: small;
}

h6 {
  font-size: x-small;
}

span,
a {
  font-family: "soleto-light", sans-serif;
  font-size: medium;
}
@media only screen and (max-width: 425px) {
  span,
  a {
    font-size: small;
  }
}

p {
  font-family: "soleto-light", sans-serif;
  font-size: medium;
}

small {
  font-family: "soleto-light", sans-serif;
  font-size: x-small;
}

.title {
  --title-margin-botton: 3.2rem;
  --title-font-size: xxx-large;
  --title-color: hsl(0, 0%, 0%);
  margin-top: 0;
  margin-bottom: var(--title-margin-botton);
  font-family: "prometo-bold", sans-serif;
  font-size: var(--title-font-size);
  color: var(--title-color);
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .title {
    --title-margin-botton: 2.4rem;
    --title-font-size: x-large;
  }
}
@media only screen and (max-width: 425px) {
  .title {
    --title-margin-botton: 1.6rem;
  }
}
.title > span,
.title > strong {
  font-family: "prometo", sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: var(--title-color);
}
.title--medium {
  --title-font-size: xx-large;
  font-family: "prometo", sans-serif;
}
@media only screen and (max-width: 768px) {
  .title--medium {
    --title-font-size: x-large;
  }
}
.title--small {
  --title-font-size: x-large;
  --title-margin-botton: 2.4rem;
  font-family: "prometo", sans-serif;
  font-weight: 300;
}
.title--small-mg {
  --title-margin-botton: 1.6rem;
}
.title--grey {
  --title-color: hsl(0, 0%, 73%);
}
.title--center {
  text-align: center;
}

.desc {
  --desc-font-size: large;
  --desc-margin-bottom: 2.4rem;
  --desc-color: hsl(0, 0%, 0%);
  margin: 0;
  margin-bottom: var(--desc-margin-bottom);
  font-family: "soleto-light", sans-serif;
  font-size: var(--desc-font-size);
  line-height: 1.5;
  color: var(--desc-color);
}
@media only screen and (max-width: 1024px) {
  .desc {
    --desc-margin-bottom: 3.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .desc {
    --desc-margin-bottom: 2.4rem;
  }
}
@media only screen and (max-width: 425px) {
  .desc {
    --desc-margin-bottom: 1.6rem;
    --desc-font-size: medium;
  }
}
.desc--small {
  --desc-font-size: medium;
}
@media only screen and (max-width: 425px) {
  .desc--small {
    --desc-font-size: small;
  }
}
.desc--small-mg {
  --desc-margin-bottom: 3.2rem;
}
@media only screen and (max-width: 1024px) {
  .desc--small-mg {
    --desc-margin-bottom: 1.6rem;
  }
}
.desc--small-mg {
  --desc-margin-bottom: 2.4rem;
}
.desc--center {
  text-align: center;
}

.alert {
  box-shadow: 0.3rem 0.3rem 0.6rem 0px hsla(0, 0%, 0%, 0.3);
  border: 0.1rem solid var(--alert-color);
  --alert-close-width: 3.2rem;
  --alert-color: var(--theme-color);
  --alert-bg-color: hsl(0, 0%, 100%);
  --alert-padding: 0.8rem 2.4rem;
  --alert-message-font-size: medium;
  position: fixed;
  top: var(--nav-height);
  right: 0;
  left: 0;
  display: grid;
  padding: var(--alert-padding);
  background-color: var(--alert-bg-color);
  color: hsl(0, 0%, 0%);
  z-index: 9999;
  column-gap: 1.6rem;
  grid-template-columns: auto var(--alert-close-width);
}
@media only screen and (max-width: 768px) {
  .alert {
    --alert-message-font-stze: small;
    --alert-padding: 0.8rem 1.6rem;
  }
}
.alert--info {
  --alert-color: hsl(211, 100%, 60%);
  --alert-bg-color: hsl(211, 100%, 90%);
}
.alert--success {
  --alert-color: hsl(79, 100%, 37%);
  --alert-bg-color: hsl(108, 43%, 90%);
}
.alert--warning {
  --alert-color: hsl(45, 100%, 45%);
  --alert-bg-color: hsl(45, 100%, 90%);
}
.alert--danger {
  --alert-color: hsl(0, 84%, 46%);
  --alert-bg-color: hsl(0, 72%, 90%);
}
.alert__message {
  margin: 0;
  font-size: var(--alert-message-font-size);
  color: var(--alert-color);
}
.alert__close {
  --shadow-alpha: .15;
  background-color: var(--alert-color);
  border-width: 0;
  border-radius: 0.4rem;
  transition: box-shadow 0.25s var(--anim-type);
  cursor: pointer;
  box-shadow: 0.2rem 0.2rem 0.4rem 0px hsla(0, 0%, 0%, var(--shadow-alpha));
}
.alert__close:hover {
  --shadow-alpha: .3;
}
.alert__close > .icon {
  margin: 0 auto;
  fill: hsl(0, 0%, 100%);
}

.icon {
  --icon-size: 1.6rem;
  display: block;
  width: var(--icon-size);
  min-width: var(--icon-size);
  height: var(--icon-size);
  fill: currentColor;
}

.logo {
  display: block;
  height: 2.4rem;
}
.logo > svg,
.logo > img {
  display: block;
  height: 100%;
}

.social-link {
  --social-bg: hsl(0, 0%, 100%);
  --social-size: 4rem;
  --social-color: hsl(90, 2%, 17%);
  --social-scale: 1;
  --radius: 50%;
  border-radius: var(--radius);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  align-content: normal;
  justify-content: center;
  gap: 0;
  position: relative;
  display: grid;
  width: var(--social-size);
  min-width: var(--social-size);
  aspect-ratio: 1;
  background-color: var(--social-bg);
  color: var(--social-color);
  text-decoration: none;
  transform: scale(var(--social-scale), var(--social-scale));
  transition: transform 0.25s ease-in-out;
  place-items: center;
}
@media (hover: hover) {
  .social-link:hover {
    --social-scale: 1.1;
  }
}
.social-link > .icon {
  --icon-size: 1.25em;
}

.button-container {
  display: inline-grid;
  align-items: center;
  justify-content: flex-start;
  gap: 1.6rem;
  grid-template-columns: repeat(2, auto);
}

.container {
  --cont-pad-x: 3.2rem;
  --cont-width: 80%;
  --cont-max-width: 1440px;
  padding-inline: var(--cont-pad-x);
  padding-inline: var(--cont-pad-x);
  margin-right: auto;
  margin-left: auto;
  width: var(--cont-width);
  max-width: var(--cont-max-width);
}
@media only screen and (max-width: 1024px) {
  .container {
    --cont-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .container {
    --cont-pad-x: 2.4rem;
  }
}
@media only screen and (max-width: 425px) {
  .container {
    --cont-pad-x: 1.6rem;
  }
}
.container--small {
  --cont-width: 60%;
}
@media only screen and (max-width: 1440px) {
  .container--small {
    --cont-width: 80%;
  }
}
@media only screen and (max-width: 1024px) {
  .container--small {
    --cont-width: 100%;
    --cont-pad-x: 3.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .container--small {
    --cont-pad-x: 2.4rem;
  }
}
@media only screen and (max-width: 425px) {
  .container--small {
    --cont-pad-x: 1.6rem;
  }
}

.grid-container {
  --align-items: flex-start;
  --gap: 5rem;
  --col-count: 1;
  display: grid;
  column-gap: var(--gap);
  grid-template-columns: repeat(var(--col-count), 1fr);
  row-gap: var(--gap);
}
@media only screen and (max-width: 1024px) {
  .grid-container {
    --gap: 3.2rem;
  }
}
@media only screen and (max-width: 425px) {
  .grid-container {
    --gap: 2.4rem;
  }
}
@media only screen and (max-width: 320px) {
  .grid-container {
    --gap: 1.6rem;
  }
}
.grid-container > * {
  align-self: var(--align-items);
}
.grid-container--col-2 {
  --col-count: 2;
}
@media only screen and (max-width: 768px) {
  .grid-container--col-2 {
    --col-count: 1;
  }
}
.grid-container--col-3 {
  --col-count: 3;
}
@media only screen and (max-width: 1024px) {
  .grid-container--col-3 {
    --col-count: 2;
  }
}
@media only screen and (max-width: 425px) {
  .grid-container--col-3 {
    --col-count: 1;
  }
}
.grid-container--col-4 {
  --col-count: 4;
}
@media only screen and (max-width: 1024px) {
  .grid-container--col-4 {
    --col-count: 3;
  }
}
@media only screen and (max-width: 768px) {
  .grid-container--col-4 {
    --col-count: 2;
  }
}
@media only screen and (max-width: 425px) {
  .grid-container--col-4 {
    --col-count: 1;
  }
}
.grid-container--stretch {
  --align-items: stretch;
}
.grid-container--small-gap {
  --gap: 3.2rem;
}
@media only screen and (max-width: 1440px) {
  .grid-container--small-gap {
    --gap: 2.4rem;
  }
}
@media only screen and (max-width: 425px) {
  .grid-container--small-gap {
    --gap: 1.6rem;
  }
}
.grid-container--align-end {
  --align-items: flex-end;
}

.sec {
  --section-bg: hsl(0, 0%, 100%);
  --sec-padding: 5.6rem 0;
  scroll-margin-top: var(--nav-height);
  padding: var(--sec-padding);
  background: var(--section-bg);
  background-color: var(--section-bg);
}
@media only screen and (max-width: 1024px) {
  .sec {
    --sec-padding: 3.2rem 0;
  }
}
.sec--pad-large {
  --sec-padding: 10rem 0;
}
@media only screen and (max-width: 1360px) {
  .sec--pad-large {
    --sec-padding: 5.6rem 0;
  }
}
@media only screen and (max-width: 768px) {
  .sec--pad-large {
    --sec-padding: 3.2rem 0;
  }
}
.sec--pad-top {
  padding-bottom: 0;
}
.sec--pad-bottom {
  padding-top: 0;
}
.sec--white {
  --section-bg: hsl(0, 0%, 100%);
}
.sec--transparent {
  --section-bg: hsla(0, 0%, 0%, 0);
}
.sec--bg {
  --section-bg: hsl(0, 0%, 95%);
}
@media only screen and (max-width: 425px) {
  .sec--bg-mobile-l {
    --section-bg: hsl(0, 0%, 95%);
  }
}
.sec--fill {
  min-height: calc(100vh - var(--nav-height));
}

.separator {
  --sep-pad: 8rem;
  padding-bottom: var(--sep-pad);
}
@media only screen and (max-width: 425px) {
  .separator {
    --sep-pad: 3.2rem;
  }
}
.separator--xl {
  --sep-pad: 4rem;
}
.separator--l {
  --sep-pad: 3.2rem;
}
.separator--m {
  --sep-pad: 2.4rem;
}
.separator--s {
  --sep-pad: 0.8rem;
}
.separator--xs {
  --sep-pad: 0.4rem;
}
@media only screen and (max-width: 768px) {
  .separator--responsive {
    --sep-pad: 4rem;
  }
}
@media only screen and (max-width: 425px) {
  .separator--responsive {
    --sep-pad: 3.2rem;
  }
}

.dotvvm-bp-button.button, .button {
  --btn-border-width: .2em;
  --btn-border-color: hsla(0, 0%, 0%, 0);
  --btn-pseudo-display: block;
  display: inline-flex-flex;
  flex-flow: row nowrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: var(--btn-gap, 0.8rem);
  --radius: 9999px;
  border-radius: var(--radius);
  box-shadow: 0 0 1.6rem 0px hsla(0, 0%, 0%, var(--btn-shadow-alpha, 0.15));
  padding-block-start: var(--btn-pad-y, 0.8em);
  padding-inline-end: var(--btn-pad-x, 1.6em);
  padding-block-end: var(--btn-pad-y, 0.8em);
  padding-inline-start: var(--btn-pad-x, 1.6em);
  position: relative;
  width: auto;
  min-width: var(--btn-min-width, 13rem);
  background-clip: padding-box;
  background-color: var(--btn-background, hsla(0, 0%, 0%, 0));
  border-width: 0;
  font-family: var(--btn-font-family, prometo, sans-serif);
  font-size: var(--btn-font-size, large);
  font-weight: 400;
  color: var(--btn-text-color, hsl(0, 0%, 100%));
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, transform 0.25s ease-in-out;
  overflow: hidden;
  cursor: var(--btn-cursor, pointer);
}
@media only screen and (max-width: 1360px) {
  .dotvvm-bp-button.button, .button {
    --btn-font-size: medium;
    --btn-pad-x: 1em;
    --btn-pad-y: .5em;
    --btn-min-width: 12rem;
  }
}
@media only screen and (max-width: 425px) {
  .dotvvm-bp-button.button, .button {
    --btn-min-width: 8rem;
    --btn-gap: 0.4rem;
  }
}
@media only screen and (max-width: 320px) {
  .dotvvm-bp-button.button, .button {
    --btn-font-size: small;
  }
}
@media (hover: hover) {
  .dotvvm-bp-button.button:hover, .button:hover {
    --btn-after-opacity: 1;
    --btn-shadow-alpha: calc(0.15 * 2);
  }
}
.dotvvm-bp-button.button[disabled], .dotvvm-bp-button.button--disabled, .button[disabled], .button--disabled {
  --btn-background: hsl(0, 0%, 90%);
  --btn-border-color: hsl(0, 0%, 90%);
  --btn-text-color: hsl(0, 0%, 44%);
  --btn-pseudo-display: none;
  --btn-shadow-alpha: 0;
  border-width: 0;
  pointer-events: none;
}
.dotvvm-bp-button.button:before, .dotvvm-bp-button.button:after, .button:before, .button:after {
  position: absolute;
  display: var(--btn-pseudo-display, block);
  content: "";
  padding: var(--btn-border-width);
  background: linear-gradient(var(--btn-pseudo-gradient-angle, 90deg), var(--color-button-bg--light), var(--color-button-bg--dark));
  background-position: center;
  border-radius: inherit;
  transition: opacity 0.25s ease-in-out;
  z-index: -1;
  inset: 0;
  will-change: opacity;
}
.dotvvm-bp-button.button:after, .button:after {
  --btn-pseudo-gradient-angle: -90deg;
  opacity: var(--btn-after-opacity, 0);
}
.dotvvm-bp-button.button > span, .button > span {
  font-family: inherit;
  font-size: inherit;
  white-space: inherit;
}
@media (hover: hover) {
  .dotvvm-bp-button.button--secondary:hover, .button--secondary:hover {
    background-color: hsla(0, 0%, 0%, 0);
  }
}
.dotvvm-bp-button.button--secondary:is(.dotvvm-bp-copy-button), .button--secondary:is(.dotvvm-bp-copy-button) {
  min-block-size: 37px;
}
.dotvvm-bp-button.button--secondary:is(.dotvvm-bp-copy-button).dotvvm-bp-state_focused, .button--secondary:is(.dotvvm-bp-copy-button).dotvvm-bp-state_focused {
  box-shadow: none;
}
.dotvvm-bp-button.button--secondary, .dotvvm-bp-button.button--icon, .button--secondary, .button--icon {
  --btn-text-color: var(--theme-color);
  --btn-pseudo-display: block;
}
@media (hover: hover) {
  .dotvvm-bp-button.button--secondary:hover, .dotvvm-bp-button.button--icon:hover, .button--secondary:hover, .button--icon:hover {
    --btn-text-color: var(--theme-color);
    --btn-after-opacity: 1;
  }
}
.dotvvm-bp-button.button--secondary:before, .dotvvm-bp-button.button--secondary:after, .dotvvm-bp-button.button--icon:before, .dotvvm-bp-button.button--icon:after, .button--secondary:before, .button--secondary:after, .button--icon:before, .button--icon:after {
  -webkit-mask: linear-gradient(hsl(0, 0%, 100%) 0 0) content-box, linear-gradient(hsl(0, 0%, 100%) 0 0);
  mask: linear-gradient(hsl(0, 0%, 100%) 0 0) content-box, linear-gradient(hsl(0, 0%, 100%) 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.dotvvm-bp-button.button--small, .button--small {
  --btn-pad-x: 1em;
  --btn-pad-y: .5em;
  --btn-font-size: medium;
  --btn-min-width: 7.5rem;
}
.dotvvm-bp-button.button--icon, .button--icon {
  --btn-min-width: 3.2rem;
  --btn-pad-x: 0;
  --btn-pad-y: 0;
  --btn-border-width: 1px;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
}
.dotvvm-bp-button.button--remove, .button--remove {
  --color-button-bg--light: hsl(0, 84%, 51%);
  --color-button-bg--dark: hsl(0, 84%, 41%);
  --btn-text-color: hsl(0, 84%, 46%);
}
.dotvvm-bp-button.button--remove:is(.button--icon), .button--remove:is(.button--icon) {
  --btn-pseudo-display: none;
  box-shadow: none;
}
@media (hover: hover) {
  .dotvvm-bp-button.button--remove:is(.button--icon):hover, .button--remove:is(.button--icon):hover {
    --btn-text-color: hsl(0, 84%, 39%);
  }
}
.dotvvm-bp-button.button--remove:hover, .button--remove:hover {
  --btn-text-color: hsl(0, 84%, 46%);
}
.dotvvm-bp-button.button--fail, .button--fail {
  animation: fail 0.25s forwards;
  transform: translateX(0);
}
.dotvvm-bp-button.button--loading, .button--loading {
  --btn-after-opacity: 1;
  color: hsla(0, 0%, 0%, 0) !important;
  pointer-events: none;
}
@media (hover: hover) {
  .dotvvm-bp-button.button--loading:hover, .button--loading:hover {
    color: hsla(0, 0%, 0%, 0);
  }
}
.dotvvm-bp-button.button--loading:before, .dotvvm-bp-button.button--loading:after, .button--loading:before, .button--loading:after {
  -webkit-mask: unset;
  mask: unset;
  -webkit-mask-composite: unset;
  mask-composite: unset;
}
.dotvvm-bp-button.button--loading:after, .button--loading:after {
  --btn-pseudo-display: block;
  position: absolute;
  background-image: url("../../images/icons/button-loader.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25%;
  inset: 10%;
}
.dotvvm-bp-button.button > .icon, .dotvvm-bp-button.button > .dotvvm-bp-icon, .button > .icon, .button > .dotvvm-bp-icon {
  font-size: inherit;
  min-block-size: 1.6rem;
}

.checkbox, .radio-button {
  display: inline-grid;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 0.8rem;
  grid-template-columns: repeat(2, auto);
}
.checkbox input[type=radio], .checkbox input[type=checkbox], .radio-button input[type=radio], .radio-button input[type=checkbox] {
  width: 1.6rem;
  height: 1.6rem;
  border: 0.1rem solid hsl(0, 0%, 70%);
  margin: 0.2rem 0 0 0;
}
.checkbox input[type=radio][disabled], .checkbox input[type=radio][disabled] + *, .checkbox input[type=checkbox][disabled], .checkbox input[type=checkbox][disabled] + *, .radio-button input[type=radio][disabled], .radio-button input[type=radio][disabled] + *, .radio-button input[type=checkbox][disabled], .radio-button input[type=checkbox][disabled] + * {
  cursor: not-allowed;
}
.checkbox > label, .checkbox > span, .radio-button > label, .radio-button > span {
  text-align: left;
}

.checkbox-terms > input {
  width: 1.45em;
  height: 1.4em;
  margin-top: 0.4em;
  border-color: hsl(0, 0%, 70%);
}
.checkbox-terms > label {
  margin-left: 0.5em;
  font-family: "soleto-light", sans-serif;
  font-size: large;
}

.input {
  --input-border-width: 0.1rem;
  --input-border-color: hsl(0, 0%, 73%);
  --input-border-focus-color: var(--theme-color);
  --input-bg-color: hsla(0, 0%, 0%, 0);
  display: block;
  width: 100%;
  background-color: var(--input-bg-color);
  border-radius: 0;
  font-family: "soleto-light", sans-serif;
  font-size: medium;
  line-height: 1.45;
  color: hsl(0, 0%, 0%);
  -webkit-appearance: none;
  padding-inline: 0;
  padding-block: 0.4rem;
  border-width: 0;
  border-bottom: var(--input-border-width) solid var(--input-border-color);
}
.input.placeholder {
  color: hsl(0, 0%, 73%);
  font-style: italic;
}
.input:-moz-placeholder {
  color: hsl(0, 0%, 73%);
  font-style: italic;
}
.input::-moz-placeholder {
  color: hsl(0, 0%, 73%);
  font-style: italic;
}
.input:-ms-input-placeholder {
  color: hsl(0, 0%, 73%);
  font-style: italic;
}
.input::-webkit-input-placeholder {
  color: hsl(0, 0%, 73%);
  font-style: italic;
}
.input:focus {
  outline: none;
  border-width: 0;
  border-bottom: var(--input-border-width) solid var(--input-border-focus-color);
}
.input--textarea {
  min-height: 2.4rem;
  max-height: 25rem;
  resize: vertical;
}
.input:is(select), .input--select {
  background-image: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 32 32"> <path d="M30.575 9.050l-14.575 10.931-14.575-10.931-1.425 1.9 16 12 16-12z"></path> </svg>');
  background-repeat: no-repeat;
  background-position: 98% center;
}
.input[disabled] {
  --input-bg-color: hsl(0, 0%, 90%);
  cursor: not-allowed;
  pointer-events: none;
}

.form-item {
  --label-text-color: hsl(0, 0%, 44%);
  --error-text-color: hsl(0, 84%, 46%);
  --form-input-border-color: hsl(0, 0%, 70%);
  position: relative;
}
.form-item--error {
  --form-input-border-color: hsl(0, 84%, 46%);
}
@media only screen and (max-width: 768px) {
  .form-item--span-2 {
    grid-column-end: span 2;
  }
}
.form-item__error-msg {
  position: absolute;
  top: calc(100% + 0.2rem);
  font-size: small;
  color: var(--error-text-color);
}
.form-item__under-txt {
  --text-color: hsl(0, 0%, 44%);
  position: absolute;
  top: calc(100% + 0.4rem);
  font-size: medium;
  color: var(--text-color);
}
.form-item > label {
  display: block;
  width: 100%;
  font-family: "soleto-light", sans-serif;
  font-size: small;
  color: var(--label-text-color);
  text-transform: uppercase;
}
.form-item > .input {
  --input-border-color: var(--form-input-border-color);
}
.form-item .discount-tag {
  font-family: "soleto-light", sans-serif;
  font-size: medium;
  padding-inline: 0;
  padding-block: 0.4rem;
}
.form-item .discount-tag__wrapper {
  width: 100%;
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  align-content: normal;
  justify-content: flex-start;
  gap: 0.8rem;
}

.link {
  --color-link: var(--theme-color);
}
.link:hover {
  --color-link: hsl(41, 100%, 50%);
}
.link--white {
  --color-link: hsl(0, 0%, 100%);
}
.link--white:hover {
  --color-link: hsl(0, 0%, 100%);
}
.link--black {
  --color-link: hsl(0, 0%, 0%);
}
.link--black:hover {
  --color-link: hsl(0, 0%, 0%);
}
.link--copy {
  --color-link: hsl(0, 0%, 44%);
}
.link--copy:hover {
  --color-link: hsl(0, 0%, 44%);
}

.link {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  font-family: "soleto-light", sans-serif;
  font-size: inherit;
  color: var(--color-link);
  text-decoration: underline;
  transition: color 0.25s var(--anim-type);
}
.link > .icon {
  margin-right: 0.4rem;
  transition: fill 0.25s var(--anim-type);
  fill: var(--color-link);
}
.link--right > .icon {
  margin-right: 0;
  margin-left: 0.4rem;
}

.double-button {
  display: inline-grid;
  align-items: stretch;
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: repeat(2, minmax(1.6rem, 1fr));
  position: relative;
  z-index: 10;
  inline-size: 100%;
  max-inline-size: 425px;
}
@media only screen and (max-width: 768px) {
  .double-button {
    width: auto;
  }
}
.double-button > .button:hover:after {
  --btn-after-opacity: 0;
}
.double-button > .button:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.double-button > .button:first-child.button--secondary {
  --btn-pseudo-gradient-angle: -90deg;
}
.double-button > .button:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.double-button > .button:last-child.button--secondary {
  --btn-pseudo-gradient-angle: -90deg;
}
.double-button--full {
  width: 100%;
}

.tag {
  box-shadow: 0 0 0.5em 0px hsla(0, 0%, 0%, 0.3);
  padding-inline: 0.8em;
  padding-block: 0.4em;
  display: inline-flex;
  background-color: var(--theme-color-bg);
  border-radius: 0.5em;
  font-size: medium;
  color: var(--theme-color);
}
.tag > b {
  vertical-align: middle;
}

.qr-code {
  --color-border: hsl(0, 0%, 73%);
  position: relative;
  width: 15rem;
  height: 15rem;
  padding: 1rem;
  border: 0.1rem solid var(--color-border);
}
@media only screen and (max-width: 425px) {
  .qr-code {
    width: 25rem;
    height: 25rem;
    margin: 0 auto;
  }
}
.qr-code canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.qr-code--text {
  font-family: "soleto-light", sans-serif;
  font-size: small;
}
@media only screen and (max-width: 425px) {
  .qr-code--text {
    display: block;
    width: 25rem;
    margin: 0 auto;
  }
}

.numeric-up-down {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  align-content: normal;
  justify-content: center;
  gap: 0;
  position: relative;
  font-family: "soleto-light", sans-serif;
  z-index: 10;
}
.numeric-up-down button {
  --btn-font-size: x-large;
  line-height: 1;
}
.numeric-up-down input {
  width: 4rem;
  background-color: hsla(0, 0%, 0%, 0);
  border: 0;
  font-family: inherit;
  font-size: medium;
  text-align: center;
}
.numeric-up-down input:active, .numeric-up-down input:focus-visible {
  border: 0;
  outline: 0;
}
.numeric-up-down input::-webkit-outer-spin-button,
.numeric-up-down input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}
.numeric-up-down input[type=number] {
  -moz-appearance: textfield;
}

.footer {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  align-content: normal;
  justify-content: space-between;
  gap: 0;
  background-color: hsl(90, 2%, 17%);
}
.footer__container {
  display: flex;
  flex-flow: row var(--col-wrap, nowrap);
  align-items: flex-start;
  align-content: normal;
  justify-content: space-between;
  gap: 0;
  margin-top: var(--footer-margin-y, 3.2rem);
  margin-bottom: var(--footer-margin-y, 3.2rem);
}
@media only screen and (max-width: 1360px) {
  .footer__container {
    --col-wrap: wrap;
  }
}
@media only screen and (max-width: 768px) {
  .footer__container {
    --footer-margin-y: 2.4rem;
    padding-inline: 0 !important;
    margin-block-end: 0;
  }
}
.footer__logo {
  --logo-width: 33%;
  display: block;
  width: var(--logo-width);
}
@media only screen and (max-width: 1360px) {
  .footer__logo {
    --logo-width: 100%;
    margin-bottom: 1.6rem;
  }
}
.footer__logo svg {
  display: block;
  max-width: var(--footer-logo-width, 25rem);
  height: auto;
}
@media only screen and (max-width: 1024px) {
  .footer__logo svg {
    max-width: 18rem;
  }
}
@media only screen and (max-width: 768px) {
  .footer__logo svg {
    display: block;
    max-width: 25rem;
    margin-right: auto;
    margin-left: auto;
  }
}
@media only screen and (max-width: 425px) {
  .footer__logo svg {
    max-width: 18rem;
  }
}
.footer__content {
  width: var(--content-width, 66%);
}
@media only screen and (max-width: 1360px) {
  .footer__content {
    --content-width: 100%;
  }
}
.footer__social {
  display: grid;
  align-items: center;
  align-content: var(--align-content, normal);
  justify-content: var(--justify-content, space-between);
  grid-template-columns: repeat(var(--col-count, 2), var(--col-width, auto));
  gap: 1.6rem;
  padding-block-end: var(--pad-bottom, 1.6rem);
  margin-block-end: var(--mg-bottom, 1.6rem);
  border-block-end: 0.1rem solid var(--border-color, hsl(0, 0%, 70%));
}
@media only screen and (max-width: 1024px) {
  .footer__social {
    --align-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .footer__social {
    --col-width: minmax(1.6rem, 1fr);
    --mg-bottom: 0;
    --pad-bottom: 2.4rem;
    --col-count: 1;
    --border-color: hsl(240, 1%, 10%);
  }
}
@media only screen and (max-width: 425px) {
  .footer__social {
    --col-width: minmax(1.6rem, 1fr);
    --justify-content: center;
  }
}
.footer__email {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  align-content: normal;
  justify-content: flex-start;
  gap: 0.8rem;
  color: hsl(0, 0%, 100%);
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .footer__email {
    margin-right: auto;
    margin-left: auto;
  }
}
.footer__email:hover > span {
  text-decoration: underline;
}
.footer__email > span:not([class]) {
  font-family: "prometo", sans-serif;
  font-size: var(--font-size, x-large);
  line-height: var(--line-height, 2.4rem);
}
@media only screen and (max-width: 375px) {
  .footer__email > span:not([class]) {
    --font-size: large;
    --line-height: 1.6rem;
  }
}
.footer__social-links {
  display: inline-grid;
  align-items: center;
  align-content: flex-start;
  justify-content: var(--justify-content, flex-end);
  grid-template-columns: repeat(5, minmax(3.2rem, 1fr));
  gap: 2.4rem;
}
@media only screen and (max-width: 768px) {
  .footer__social-links {
    --justify-content: space-between;
    max-width: 320px;
    margin: 0 auto;
  }
}
.footer__links {
  display: grid;
  align-items: var(--align-items, flex-start) var(--justify-content, space-between);
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: repeat(var(--col-count, 3), var(--col-width, minmax(1.6rem, 1fr)));
  gap: var(--col-gap, 3.2rem);
  font-size: medium;
  color: hsl(0, 0%, 100%);
}
@media only screen and (max-width: 768px) {
  .footer__links {
    --justify-content: stretch;
    --align-items: stretch;
    --col-count: 1;
    --col-gap: 0;
  }
}
.footer__links address, .footer__links p {
  display: block;
  margin-bottom: 2.4rem;
  font-family: "soleto-light", sans-serif;
}
.footer__links small {
  display: block;
  margin-bottom: 0.2rem;
  font-size: small;
}
.footer__links small:last-of-type {
  margin-bottom: 0;
}
.footer__links strong:not([class]) {
  font-size: 1em;
}
.footer__links-title {
  margin-block-end: 0;
  font-family: "prometo", sans-serif;
  font-size: x-large;
  color: hsl(0, 0%, 100%);
}
@media only screen and (max-width: 425px) {
  .footer__links-title {
    font-size: large;
  }
}
.footer__list {
  display: grid;
  padding-left: 0;
  margin: 0;
  list-style: none;
  row-gap: 0.4rem;
}
.footer__list li > a {
  font-family: "soleto-light", sans-serif;
  font-size: medium;
  font-weight: 300;
  color: hsl(0, 0%, 100%);
  text-decoration: underline;
}
.footer__list li > a:before {
  display: inline-block;
  content: ">";
  padding-inline-end: 0.4rem;
  font-size: medium;
  color: inherit;
}
.footer__copy {
  padding: 0.8rem;
  width: 100%;
  background-color: hsl(0, 0%, 0%);
  text-align: center;
}
.footer__copy small {
  font-family: "soleto-light", sans-serif;
  font-size: medium;
  color: hsl(0, 0%, 100%);
}
@media only screen and (max-width: 768px) {
  .footer__copy small {
    font-size: small;
  }
}

footer details {
  --icon-rotate: 0;
  --details-border-width: 0.1rem;
  width: 100%;
}
footer details[open] {
  --icon-rotate: 180deg;
}
footer details:last-of-type {
  --details-border-width: 0;
}
footer details > summary {
  --icon-display: none;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  align-content: normal;
  justify-content: var(--jc, space-between);
  gap: 1.6rem;
  position: relative;
  padding-block-end: var(--pad-bottom, 1.6rem);
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  footer details > summary {
    --icon-display: block;
    --pad-x: 1.6rem;
    padding-inline: var(--pad-x, 0);
    padding-block: 0.8rem;
    background-color: hsl(240, 1%, 13%);
    border-block-end: var(--details-border-width) solid hsl(240, 1%, 10%);
    pointer-events: initial;
  }
}
@media only screen and (max-width: 425px) {
  footer details > summary {
    --pad-x: 0.8rem;
  }
}
footer details > summary::-webkit-details-marker {
  display: none;
}
footer details > summary::marker {
  position: absolute;
  opacity: 0;
  color: hsla(0, 0%, 0%, 0);
  z-index: -10;
}
footer details > summary > .icon {
  display: var(--icon-display);
  transform: rotate(var(--icon-rotate));
  transition: transform 0.25s ease-in-out;
}
footer details > div {
  --pad-x: 1.6rem;
}
@media only screen and (max-width: 768px) {
  footer details > div {
    padding-inline: var(--pad-x);
    padding-block: 0.8rem;
    border-block-end: var(--details-border-width) solid hsl(240, 1%, 13%);
  }
}
@media only screen and (max-width: 320px) {
  footer details > div {
    --pad-x: 0.8rem;
  }
}

.form {
  --row-gap: 3.2rem;
  --grid-col-gap: 2.4rem;
  display: grid;
  column-gap: var(--grid-col-gap);
  row-gap: var(--row-gap);
}
.form__row {
  --row-gap: 3.2rem;
  --grid-col-gap: 2.4rem;
  display: grid;
  column-gap: var(--grid-col-gap);
  row-gap: var(--row-gap);
}
.form__row--col-2 {
  --template-cols: 1fr 1fr;
  --template-cols-mob-l: 1fr;
  display: grid;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: var(--template-cols);
}
@media only screen and (max-width: 425px) {
  .form__row--col-2 {
    display: grid;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    grid-template-columns: var(--template-cols-mob-l);
  }
}
.form__row--col-2-1 {
  --template-cols: 2fr 1fr;
  display: grid;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: var(--template-cols);
}
.form__row--col-3 {
  --template-cols: 1fr 1fr 1fr;
  --template-cols-tab: 1fr 1fr;
  --template-cols-mob-l: 1fr;
  display: grid;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: var(--template-cols);
}
@media only screen and (max-width: 768px) {
  .form__row--col-3 {
    display: grid;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    grid-template-columns: var(--template-cols-tab);
  }
}
@media only screen and (max-width: 425px) {
  .form__row--col-3 {
    display: grid;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    grid-template-columns: var(--template-cols-mob-l);
  }
}
.form__container {
  --template-cols: repeat(2, 1fr);
  --gap: 8rem;
  display: grid;
  grid-template-columns: repeat(var(--template-cols), min-content);
  gap: var(--gap);
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
}
.form__container--col-2-1 {
  --template-cols: 2fr 1fr;
  --template-cols-lap-m: 1fr;
  display: grid;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: var(--template-cols);
}
@media only screen and (max-width: 1360px) {
  .form__container--col-2-1 {
    display: grid;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    grid-template-columns: var(--template-cols-lap-m);
  }
}

.loader-position {
  position: absolute;
  top: 1.6rem;
  right: 0;
  width: 3.2rem;
  height: 3.2rem;
}

header {
  padding: 3.2rem;
}

.modal {
  --modal-width: 425px;
  --modal-padding: 3.2rem;
  top: 40%;
  width: 100%;
  max-width: var(--modal-width);
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.4rem;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .modal {
    --modal-padding: 2.4rem;
  }
}
@media only screen and (max-width: 425px) {
  .modal {
    --modal-width: calc(100% - 2.4rem);
    --modal-padding: 1.6rem;
  }
}
.modal--larger {
  --modal-width: 768px;
  top: 15vh;
  transform: translate(-50%, 0);
}
@media only screen and (max-width: 768px) {
  .modal--larger {
    --modal-width: calc(100% - 2.4rem);
    top: 10vh;
  }
}
.modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 0%, 0.5);
  z-index: 99999;
}
.modal__close {
  --icon-color: hsl(0, 0%, 44%);
  background-color: hsla(0, 0%, 0%, 0);
  border-width: 0;
  cursor: pointer;
}
.modal__close > .icon {
  --icon-size: 2.4rem;
  transition: fill 0.25s var(--anim-type);
  fill: var(--icon-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal__close:hover, .modal__close:focus {
  --icon-color: var(--theme-color);
}
.modal__header {
  padding: var(--modal-padding);
  padding-bottom: 0;
}
@media only screen and (max-width: 425px) {
  .modal__header .title {
    padding-right: 1.6rem;
  }
}
.modal__header button {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
}
.modal__content {
  max-height: 60vh;
  padding: 0 var(--modal-padding);
  overflow: auto;
}
.modal__footer {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  padding: var(--modal-padding);
}
@media only screen and (max-width: 425px) {
  .modal__footer {
    justify-content: center;
  }
}
.modal__footer--space-between {
  justify-content: space-between;
}

.registration-table {
  width: 100%;
}
.registration-table caption,
.registration-table td,
.registration-table th {
  font-weight: 400;
  text-align: left;
}
.registration-table tr {
  --border-color: hsl(0, 0%, 73%);
  border-bottom: 0.1rem solid var(--border-color);
}
.registration-table tbody tr:last-of-type {
  --border-color: hsl(0, 0%, 44%);
  border-bottom: 0.2rem solid var(--border-color);
}
.registration-table td {
  max-width: 12rem;
  padding: 1.6rem 0.4rem;
  vertical-align: top;
}
@media only screen and (max-width: 768px) {
  .registration-table td.hide-on-tablet {
    display: none;
  }
}
.registration-table th {
  font-family: "soleto-light", sans-serif;
  font-size: medium;
  color: hsl(0, 0%, 44%);
}
@media only screen and (max-width: 768px) {
  .registration-table th.hide-on-tablet {
    display: none;
  }
}
.registration-table .text-to-right > span {
  display: inline-block;
  width: 100%;
  text-align: right;
}
.registration-table .registration-item {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lang-switch-easy {
  --lang-color: hsl(0, 0%, 100%);
  --lang-text-decoration: none;
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  min-width: var(--min-width, 10rem);
  font-family: "soleto-light", sans-serif;
  font-size: medium;
  color: var(--lang-color);
}
@media only screen and (max-width: 768px) {
  .lang-switch-easy {
    display: none;
  }
}
@media only screen and (max-width: 425px) {
  .lang-switch-easy {
    --min-width: 0;
  }
}
.lang-switch-easy--en > a:nth-of-type(1) {
  --lang-color: var(--theme-color);
  --lang-text-decoration: underlne;
}
.lang-switch-easy--cs > a:nth-of-type(2) {
  --lang-color: var(--theme-color);
  --lang-text-decoration: underlne;
}
.lang-switch-easy--pl > a:nth-of-type(3) {
  --lang-color: var(--theme-color);
  --lang-text-decoration: underlne;
}
.lang-switch-easy__item {
  font-family: inherit;
  font-size: var(--lang-font-size);
  color: var(--lang-color);
  text-decoration: var(--lang-text-decoration);
  transition: color "soleto-light", sans-serif var(--anim-type);
}
.lang-switch-easy__item:hover {
  --lang-text-decoration: underlne;
}

.lang-switch {
  --color-white: white;
  position: absolute;
  top: 12px;
  right: 8px;
}
@media only screen and (min-width: 769px) {
  .lang-switch {
    display: none;
  }
}
.lang-switch__btn {
  --trans-fnc: ease-in;
  --border-color: var(--color-white);
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  align-content: normal;
  justify-content: flex-start;
  padding: 2px 8px;
  background: none;
  border: 2px solid var(--border-color);
  border-radius: 9999px;
  color: var(--color-white);
  cursor: pointer;
  gap: 0.5rem;
}
.lang-switch__btn span {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-white);
  white-space: nowrap;
  pointer-events: none;
}
.lang-switch__btn span:first-letter {
  text-transform: uppercase;
}
.lang-switch__btn .icon {
  --icon-size: 1.4em;
  color: var(--color-white);
  pointer-events: none;
}
.lang-switch__pop-up {
  --pop-up-z-index: -1;
  --pop-up-opacity: 0;
  --popup-shadow-alpha: .15;
  --trans-delay: .05s;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-block: 4px;
  margin-top: 0.4rem;
  background-color: #2b2c2a;
  opacity: var(--pop-up-opacity);
  border-radius: 8px;
  transition: opacity var(--trans-time) var(--trans-fnc) var(--trans-delay);
  overflow: hidden;
  z-index: var(--pop-up-z-index);
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1490196078);
}
.lang-switch__pop-up a {
  font-size: 16px;
  color: white;
}
.lang-switch__pop-up--open {
  --pop-up-z-index: 1;
  --pop-up-opacity: 1;
  --trans-fnc: ease-in;
  --popup-shadow-alpha: .3;
  --trans-delay: 0s;
}
.lang-switch__pop-up.en a[hreflang=en] {
  color: var(--theme-color);
  text-decoration: underline;
  text-decoration: none;
}
.lang-switch__pop-up.cs a[hreflang=cs] {
  color: var(--theme-color);
  text-decoration: none;
  text-decoration: underline;
}
.lang-switch__pop-up.pl a[hreflang=pl] {
  color: var(--theme-color);
  text-decoration: none;
  text-decoration: underline;
}

.nav {
  position: fixed;
  top: 0;
  display: grid;
  width: 100%;
  height: var(--nav-height);
  background-color: hsl(90, 2%, 17%);
  z-index: 9999;
  gap: 0.8rem;
}
.nav__logo {
  min-width: var(--min-width, 10rem);
}
@media only screen and (max-width: 425px) {
  .nav__logo {
    --min-width: 0;
  }
}
.nav__logo > svg {
  display: block;
  width: auto;
  height: 4rem;
}
@media only screen and (max-width: 768px) {
  .nav__logo > svg {
    height: 3rem;
  }
}
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 5rem;
}
@media only screen and (max-width: 1440px) {
  .nav__container {
    padding: 0 3.2rem;
  }
}
@media only screen and (max-width: 1360px) {
  .nav__container {
    padding: 0 2.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .nav__container {
    padding: 0 1.6rem;
  }
}
.nav__container > strong {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "prometo-bold", sans-serif;
  font-size: clamp(1.6rem, 4vh, var(--max-size, 2.4rem));
  font-weight: 500;
  color: hsl(0, 0%, 100%);
}
@media only screen and (max-width: 560px) {
  .nav__container > strong {
    position: relative;
    top: unset;
    left: unset;
    font-size: 22px;
    transform: translate(-80%, 0);
  }
}
@media only screen and (max-width: 425px) {
  .nav__container > strong {
    font-size: 18px;
  }
}

.access-code {
  display: grid;
  align-items: var(--ac-align-items, flex-start);
  align-content: flex-start;
  justify-content: stretch;
  grid-template-columns: var(--ac-col-template, minmax(10rem, 1fr) minmax(1.6rem, 4fr));
  gap: var(--ac-gap, 2.4rem);
  padding-inline: var(--ac-pad-x, 2.4rem);
  padding-block: var(--ac-pad-y, 2.4rem);
  box-shadow: 0 0 1.6rem 0px hsla(0, 0%, 0%, var(--ac-shadow-alpha, 0.15));
  --radius: 0.8rem;
  border-radius: var(--radius);
}
@media only screen and (max-width: 768px) {
  .access-code {
    --ac-col-template: minmax(1.6rem, 1fr);
    --ac-gap: 1.6rem;
    --ac-align-items: flex-start;
  }
}
.access-code--center {
  --ac-align-items: center;
}
.access-code--header {
  --ac-pad-y: 0.8rem;
  --ac-shadow-alpha: 0;
}
@media only screen and (max-width: 768px) {
  .access-code--header {
    display: none;
  }
}
.access-code--header b {
  font-family: "prometo", sans-serif;
  font-size: medium;
  white-space: nowrap;
}
.access-code__wrapper {
  display: grid;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: minmax(1.6rem, 1fr);
  gap: 1.6rem;
}
.access-code__content {
  display: grid;
  font-family: "soleto-light", sans-serif;
  row-gap: 2.4rem;
}
@media only screen and (max-width: 1024px) {
  .access-code__content {
    row-gap: 1.6rem;
  }
}
.access-code__row {
  --row-align-items: flex-start;
  --row-col-template: minmax(16rem, 1fr) 7rem minmax(12rem, 1fr) minmax(1.6rem, 1fr);
  display: grid;
  align-items: var(--row-align-items);
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: var(--row-col-template);
  gap: var(--gap, 1.6rem);
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 1360px) {
  .access-code__row {
    --row-col-template: minmax(16rem, 1fr) 6rem minmax(16rem, 1fr);
  }
}
@media only screen and (max-width: 425px) {
  .access-code__row {
    --row-col-template: 6rem minmax(1.6rem, 1fr);
  }
}
.access-code__row > p {
  grid-column-end: span var(--col-span, 1);
  display: block;
  margin-bottom: var(--ac-mg-bottom, 0.4rem);
  margin-block: 0;
  font-family: "soleto-light", sans-serif;
  font-size: medium;
  color: var(--conf-color);
}
@media only screen and (max-width: 425px) {
  .access-code__row > p {
    --col-span: 2;
  }
}
@media only screen and (max-width: 1360px) {
  .access-code__row > b:last-child {
    display: none;
  }
}
.access-code__row > div.inline-grid {
  grid-column-end: span var(--col-span, 1);
}
@media only screen and (max-width: 425px) {
  .access-code__row > div.inline-grid {
    --col-span: 2;
  }
}
.access-code__logo {
  height: 4em;
}
.access-code__logo > svg {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
}
.access-code__used {
  --text-align: center;
  --usages-color: hsl(0, 0%, 0%);
  font-size: medium;
  font-weight: 500;
  color: var(--usages-color);
  text-align: var(--text-align);
}
@media only screen and (max-width: 768px) {
  .access-code__used {
    --text-align: left;
  }
}
.access-code__used--free {
  --usages-color: hsl(79, 100%, 37%);
}
.access-code__used--danger {
  --usages-color: hsl(0, 84%, 46%);
}
.access-code__used--warning {
  --usages-color: hsl(45, 100%, 45%);
}
.access-code__used > span {
  font-family: "prometo", sans-serif;
  font-size: inherit;
}
.access-code__assignment {
  display: grid;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: minmax(1.6rem, 1fr);
  gap: 0.2rem;
  font-size: medium;
}
.access-code__buttons {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: stretch;
  align-content: normal;
  justify-content: flex-end;
  gap: 1.6rem;
}
@media only screen and (max-width: 1360px) {
  .access-code__buttons {
    grid-column-end: span 3;
  }
}
@media only screen and (max-width: 425px) {
  .access-code__buttons {
    grid-column-end: span 2;
  }
}
.access-code__buttons > .dotvvm-bp-button.dotvvm-bp-copy-button:hover {
  background-color: hsla(0, 0%, 0%, 0);
}
.access-code__buttons > .dotvvm-bp-button.dotvvm-bp-copy-button > .dotvvm-bp-icon {
  --bp-font-size: 1.4rem;
  min-width: var(--bp-font-size);
  fill: var(--theme-color);
}

.participants {
  --participants-col-template: 4rem repeat(2, minmax(1.6rem, 1fr)) minmax(1.6rem, 2fr) repeat(2, minmax(1.6rem, 1.4fr)) 10rem;
  display: grid;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: stretch;
  grid-template-rows: auto;
  row-gap: 3.2rem;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 960px) {
  .participants {
    --participants-col-template: repeat(2, minmax(1.6rem, 1fr));
  }
}
.participants__row {
  position: relative;
  display: grid;
  align-items: center;
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: var(--participants-col-template);
  gap: 2.4rem;
  gap: 2.4rem;
}
@media only screen and (max-width: 960px) {
  .participants__row:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    content: "";
    width: calc(100% + 3.2rem);
    height: 4rem;
    background-color: hsl(0, 0%, 95%);
    transform: translateX(-50%);
  }
}
.participants__row--group {
  --participants-col-template: 4rem minmax(1.6rem, 4fr) repeat(2, minmax(1.6rem, 1.4fr)) 10rem;
}
@media only screen and (max-width: 960px) {
  .participants__row--group {
    --participants-col-template: repeat(2, minmax(1.6rem, 1fr));
  }
}
.participants__id {
  font-size: 2rem;
  color: hsl(0, 0%, 44%);
  z-index: 1;
}
@media only screen and (max-width: 960px) {
  .participants__id {
    padding: 0.6rem 0rem;
    font-size: 2.4rem;
    grid-column-end: span 2;
  }
}
.participants__group-message {
  grid-column-end: span var(--participants_col-span, 3);
}
@media only screen and (max-width: 960px) {
  .participants__group-message {
    --participants_col-span: 2;
  }
}
.participants__add-btn-row {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  align-content: normal;
  justify-content: var(--jc, space-between);
  gap: 1.6rem;
  position: relative;
  margin-top: 3.2rem;
  z-index: 10;
}
.participants__add-btn-row--end {
  --jc: flex-end;
}
@media only screen and (max-width: 425px) {
  .participants__add-btn-row {
    --jc: flex-end;
  }
}
.participants__alert-box {
  --radius: 0.4rem;
  border-radius: var(--radius);
  padding-block: clamp(0.8rem, 5vh, 1.6rem);
  padding-inline: clamp(1.6rem, 5vw, 2.4rem);
  box-shadow: 0 0 1.6rem 0px hsla(0, 0%, 0%, 0.3);
  display: inline-block;
  background-color: hsl(79, 100%, 37%);
  font-family: "prometo", sans-serif;
  font-size: clamp(1.6rem, 2vh, 2.4rem);
  font-size: medium;
  color: hsl(0, 0%, 100%);
}
.participants__alert-box > .dotvvm-bp-icon {
  margin-right: clamp(0.8rem, 5vh, 1.6rem);
  font-size: 1.2em;
}
.participants__price-row {
  --participants-price-row-color: hsl(0, 0%, 44%);
  --participants-price-row-border-color: hsl(0, 0%, 44%);
  --participants-price-row-border-width: .1rem;
  --cols-template: repeat(2, 1fr);
  border-width: 0;
  border-top: var(--participants-price-row-border-width) solid var(--participants-price-row-border-color);
  border-bottom: var(--participants-price-row-border-width) solid var(--participants-price-row-border-color);
  display: grid;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: var(--cols-template);
  padding-block: 1.6rem;
  color: var(--participants-price-row-color);
}
@media only screen and (max-width: 768px) {
  .participants__price-row {
    --cols-template-tab: 1fr;
    grid-template-columns: var(--cols-template-tab);
  }
}
.participants__price-row p, .participants__price-row span {
  margin: 0;
  font-size: large;
  line-height: 1;
}
@media only screen and (max-width: 960px) {
  .participants__price-row p, .participants__price-row span {
    font-size: medium;
  }
}
.participants__price {
  --participants-price-color: hsl(0, 0%, 44%);
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  align-content: normal;
  justify-content: space-between;
  gap: 0;
  color: var(--participants-price-color);
}
.participants__price small {
  display: block;
  font-size: 1.2rem;
  text-align: right;
}

.reg-nav {
  --col-count: 5;
  display: grid;
  align-items: stretch;
  align-content: stretch;
  justify-content: stretch;
  grid-template-columns: repeat(var(--col-count), auto);
  box-shadow: 0 0 0.6rem 0px hsla(0, 0%, 0%, 0.3);
  margin-top: 2.4rem;
  margin-right: auto;
  margin-left: auto;
  position: sticky;
  top: 5.5rem;
  width: 100%;
  overflow: hidden;
  z-index: 888;
}
.reg-nav .reg-nav__item:nth-child(1) {
  z-index: 9;
}
.reg-nav .reg-nav__item:nth-child(2) {
  z-index: 8;
}
.reg-nav .reg-nav__item:nth-child(3) {
  z-index: 7;
}
.reg-nav .reg-nav__item:nth-child(4) {
  z-index: 6;
}
.reg-nav .reg-nav__item:nth-child(5) {
  z-index: 5;
}
.reg-nav .reg-nav__item:nth-child(6) {
  z-index: 4;
}
.reg-nav .reg-nav__item:nth-child(7) {
  z-index: 3;
}
.reg-nav .reg-nav__item:nth-child(8) {
  z-index: 2;
}
.reg-nav .reg-nav__item:nth-child(9) {
  z-index: 1;
}
.reg-nav .reg-nav__item:nth-child(10) {
  z-index: 0;
}
.reg-nav .reg-nav__item:nth-child(11) {
  z-index: -1;
}
.reg-nav .reg-nav__item:nth-child(12) {
  z-index: -2;
}
.reg-nav .reg-nav__item:nth-child(13) {
  z-index: -3;
}
.reg-nav .reg-nav__item:nth-child(14) {
  z-index: -4;
}
.reg-nav .reg-nav__item:nth-child(15) {
  z-index: -5;
}
.reg-nav .reg-nav__item:nth-child(16) {
  z-index: -6;
}
.reg-nav .reg-nav__item:nth-child(17) {
  z-index: -7;
}
.reg-nav .reg-nav__item:nth-child(18) {
  z-index: -8;
}
.reg-nav .reg-nav__item:nth-child(19) {
  z-index: -9;
}
.reg-nav .reg-nav__item:nth-child(20) {
  z-index: -10;
}
.reg-nav .reg-nav__item:nth-child(21) {
  z-index: -11;
}
.reg-nav .reg-nav__item:nth-child(22) {
  z-index: -12;
}
.reg-nav .reg-nav__item:nth-child(23) {
  z-index: -13;
}
.reg-nav .reg-nav__item:nth-child(24) {
  z-index: -14;
}
.reg-nav .reg-nav__item:nth-child(25) {
  z-index: -15;
}
.reg-nav .reg-nav__item:nth-child(26) {
  z-index: -16;
}
.reg-nav .reg-nav__item:nth-child(27) {
  z-index: -17;
}
.reg-nav .reg-nav__item:nth-child(28) {
  z-index: -18;
}
.reg-nav .reg-nav__item:nth-child(29) {
  z-index: -19;
}
.reg-nav .reg-nav__item:nth-child(30) {
  z-index: -20;
}
.reg-nav--col-4 {
  --col-count: 4;
}
.reg-nav__section {
  position: sticky;
  top: var(--nav-height);
  z-index: 999;
}
@media only screen and (max-width: 1024px) {
  .reg-nav__section > .container {
    --cont-pad-x: 0;
  }
}
.reg-nav__item {
  --item-height: 7.5rem;
  --item-bg-color: hsl(0, 0%, 95%);
  --item-color: hsl(0, 0%, 44%);
  --pad-left: 3.2rem;
  --pad-right: 0.8rem;
  --pad-y: 1.2rem;
  --align-items: baseline;
  --justify-content: center;
  --align-content: center;
  --cursor: pointer;
  --pseudo-display: block;
  --font-size: 28px;
  --pseudo-size: calc(var(--item-height) / 2);
  padding-block-start: var(--pad-y);
  padding-inline-end: var(--pad-right);
  padding-block-end: var(--pad-y);
  padding-inline-start: var(--pad-left);
  display: flex;
  flex-flow: row nowrap;
  align-items: var(--align-items);
  align-content: var(--align-content);
  justify-content: var(--justify-content);
  gap: 1.6rem;
  position: relative;
  background-color: var(--item-bg-color);
  color: var(--item-color);
  text-decoration: none;
  cursor: var(--cursor);
}
@media only screen and (max-width: 1024px) {
  .reg-nav__item {
    --pad-right: 0.4rem;
    --pad-left: 0.4rem;
    --item-height: 4.6rem;
    justify-content: center;
    gap: 0;
  }
}
@media only screen and (max-width: 1360px) {
  .reg-nav__item {
    --font-size: 24px;
  }
}
@media only screen and (max-width: 1360px) {
  .reg-nav__item {
    --font-size: 18px;
  }
}
@media only screen and (max-width: 1024px) {
  .reg-nav__item {
    --font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .reg-nav__item {
    --pad-y: 0.4rem;
    --pad-left: 2.4rem;
    --align-items: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 425px) {
  .reg-nav__item {
    --pad-right: 0;
    --pad-left: 0.4rem;
    --item-height: 2.8rem;
    gap: 0.4rem;
  }
}
.reg-nav__item:first-child {
  --pad-left: 1.6rem;
}
@media only screen and (max-width: 1024px) {
  .reg-nav__item:first-child {
    --pad-left: 0;
  }
}
@media only screen and (max-width: 425px) {
  .reg-nav__item:first-child {
    --pad-left: 0.4rem;
    justify-content: flex-start;
  }
}
.reg-nav__item:last-child {
  --pseudo-display: none;
}
.reg-nav__item[disabled=disabled] {
  --cursor: not-allowed;
}
.reg-nav__item--active, .reg-nav__item:hover:not([disabled]) {
  --item-bg-color: var(--theme-color-bg);
  --item-color: var(--theme-color);
}
.reg-nav__item:after {
  border: 0.2rem solid hsl(0, 0%, 80%);
  position: absolute;
  top: 50%;
  left: 100%;
  display: var(--pseudo-display);
  content: "";
  width: var(--pseudo-size);
  height: var(--pseudo-size);
  background-image: linear-gradient(45deg, hsla(0, 0%, 0%, 0) 0%, hsla(0, 0%, 0%, 0) 50%, var(--item-bg-color) 50%, var(--item-bg-color) 100%);
  border-bottom-width: 0;
  border-left-width: 0;
  transform: translate(-50%, -50%) rotate(45deg) skew(20deg, 20deg);
}
.reg-nav__item > span {
  padding-top: 0;
  font-family: "soleto-light", sans-serif;
  font-size: var(--font-size);
  font-weight: 100;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .reg-nav__item > span {
    margin: 0 0.8rem 0 0;
  }
}
@media only screen and (max-width: 425px) {
  .reg-nav__item > span {
    margin: 0 0 0 0;
  }
}
@media only screen and (max-width: 320px) {
  .reg-nav__item > span {
    padding-right: 0;
    line-height: 1.6rem;
  }
}
.reg-nav__item-content {
  --content-display: none;
  display: grid;
  align-items: stretch;
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-rows: auto;
  row-gap: 0.2rem;
}
@media only screen and (max-width: 768px) {
  .reg-nav__item-content {
    display: var(--content-display);
  }
}
.reg-nav__item-content--active {
  --content-display: flex;
}
.reg-nav__item-content > strong {
  font-family: "prometo", sans-serif;
  font-size: var(--font-size);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.reg-nav__item-content > small {
  font-family: "soleto-light", sans-serif;
  font-size: small;
  font-weight: 100;
}
@media only screen and (max-width: 1024px) {
  .reg-nav__item-content > small {
    display: none;
  }
}
.reg-nav__status {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  align-content: normal;
  justify-content: flex-start;
  gap: 0.4rem;
  max-width: 22rem;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .reg-nav__status {
    display: none;
  }
}
.reg-nav__status > span {
  max-width: 100%;
  display: block !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: small;
  line-height: 1.6rem;
}
.reg-nav__status > .icon {
  --icon-size: 1.2rem;
  fill: hsl(79, 100%, 37%);
}

.recordings {
  display: grid;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: minmax(0.4rem, 1fr);
  gap: 1.6rem;
}
.recordings__ticket {
  --template-columns: 24rem minmax(1.6rem, 1fr);
  display: grid;
  align-items: var(--align-items, flex-start);
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: var(--template-columns);
  gap: var(--gap, 4rem);
  box-shadow: 0 0 1.6rem 0px hsla(0, 0%, 0%, 0.15);
  padding-inline: var(--pad-x, 3.2rem);
  padding-block: var(--pad-y, 2.4rem);
  --radius: 0.8rem;
  border-radius: var(--radius);
}
@media only screen and (max-width: 1360px) {
  .recordings__ticket {
    --template-columns: minmax(1.6rem, 1fr);
    --gap: 2.4rem;
  }
}
@media only screen and (max-width: 425px) {
  .recordings__ticket {
    --pad-x: 2.4rem;
  }
}
@media only screen and (max-width: 375px) {
  .recordings__ticket {
    --pad-x: 1.6rem;
  }
}
.recordings__ticket--self {
  --align-items: center;
}
.recordings__left {
  --gap: 2.4rem;
  --align-items: flex-start;
  display: flex;
  align-items: var(--align-items);
}
.recordings__left--self {
  --align-items: center;
}
.recordings__description {
  margin: 0;
  font-size: large;
  line-height: 1.5;
}
.recordings__description p {
  margin: inherit;
  font-family: "soleto-light", sans-serif;
  font-size: 1em;
  line-height: inherit;
}
@media only screen and (max-width: 768px) {
  .recordings__description p {
    font-size: medium;
  }
}
.recordings__description p > a {
  font-size: 1em;
  color: var(--conf-color);
}
.recordings__logo {
  height: 4em;
}
.recordings__logo > svg {
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
}
.recordings__access-types {
  display: grid;
  row-gap: 2.4rem;
}
.recordings__row {
  --template-columns: minmax(1.6rem, 1fr) 10rem 12rem;
  font-family: "soleto-light", sans-serif;
  font-size: medium;
  display: grid;
  align-items: center;
  align-content: flex-start;
  justify-content: space-between;
  grid-template-columns: var(--template-columns);
  gap: var(--gap, 3.2rem);
}
@media only screen and (max-width: 1024px) {
  .recordings__row {
    --gap: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .recordings__row {
    --template-columns: minmax(1.6rem, 1fr);
  }
}
@media only screen and (max-width: 425px) {
  .recordings__row {
    --gap: 0.8rem;
  }
}
.recordings__row strong {
  display: block;
  font-family: "prometo", sans-serif;
  font-size: large;
  color: var(--conf-color);
}
.recordings__row p, .recordings__row span {
  font-size: medium;
}

.registration__accept {
  --reg-accept-col-template: repeat(2, auto);
  display: grid;
  align-items: center;
  align-content: space-between;
  justify-content: space-between;
  grid-template-columns: var(--reg-accept-col-template);
  gap: var(--gap, 3.2rem);
  position: relative;
  z-index: 10;
  grid-template-columns: var(--reg-accept-col-template);
}
@media only screen and (max-width: 425px) {
  .registration__accept {
    --reg-accept-col-template: minmax(1.6rem, 1fr);
    --gap: 1.6rem;
  }
}
.registration__accept p {
  font-size: large;
}

.order-status {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  align-content: normal;
  justify-content: flex-start;
  gap: 1.6rem;
}
.order-status--col-2-1 {
  display: grid;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
@media only screen and (max-width: 768px) {
  .order-status--col-2-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.order-status--col-2 {
  --gap: 5rem;
  display: grid;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
@media only screen and (max-width: 768px) {
  .order-status--col-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .order-status--col-2 {
    --gap: 3.2rem;
  }
}
@media only screen and (max-width: 425px) {
  .order-status--col-2 {
    --gap: 2.4rem;
  }
}
@media only screen and (max-width: 320px) {
  .order-status--col-2 {
    --gap: 1.6rem;
  }
}
.order-status--col-4 {
  --gap: 5rem;
  display: grid;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-start;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}
@media only screen and (max-width: 1024px) {
  .order-status--col-4 {
    --gap: 3.2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 425px) {
  .order-status--col-4 {
    --gap: 2.4rem;
  }
}
@media only screen and (max-width: 320px) {
  .order-status--col-4 {
    --gap: 1.6rem;
  }
}
.order-status--span-2 {
  grid-column-start: span 2;
}
.order-status > div {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  align-content: normal;
  justify-content: flex-start;
  gap: 1.6rem;
}
.order-status h2 {
  margin-bottom: 0;
  line-height: 1;
}
.order-status span {
  font-family: "prometo", sans-serif;
  font-size: xx-large;
  line-height: 1;
  color: hsl(0, 0%, 73%);
}
@media only screen and (max-width: 768px) {
  .order-status span {
    font-size: x-large;
  }
}
.order-status .icon--checkbox {
  display: block;
  width: 3.2rem;
  min-width: 3.2rem;
  height: 3.2rem;
  fill: hsl(79, 100%, 37%);
}

.credit-card {
  --gap-credit-card: 1rem;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  align-content: normal;
  justify-content: flex-start;
  gap: var(--gap-credit-card);
  padding-bottom: 3rem;
}
.credit-card .icon {
  --icon-size: 5.5rem;
  width: var(--icon-size);
  min-width: var(--icon-size);
  height: var(--icon-size);
}
.credit-card .icon--dinners-club_logo {
  --icon-size: 4.9rem;
  width: var(--icon-size);
  min-width: var(--icon-size);
  height: var(--icon-size);
}

.payment--status {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  align-content: normal;
  justify-content: space-between;
  gap: 0;
}
@media only screen and (max-width: 1024px) {
  .payment--res-max-tablet {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 425px) {
  .payment--res-max-tablet {
    grid-template-columns: 1fr;
  }
}
.payment .order-summary__flex-row span,
.payment .order-summary__flex-row strong {
  font-size: large;
}
.payment .order-summary__flex-row:first-of-type {
  --border-bottom-col: hsl(0, 0%, 44%);
  border-top: 0.2rem solid var(--border-bottom-col);
}

@media only screen and (max-width: 1024px) {
  .payment.grid-container.grid-container--col-2 {
    grid-template-columns: 1fr;
  }
}

.order-summary {
  font-family: "soleto-light", sans-serif;
  font-size: medium;
}
.order-summary--inner-box {
  --pb: 1.6rem;
  padding-block-end: var(--pb);
}
.order-summary--inner-box label {
  --pb: 0.4rem;
  padding-block-end: var(--pb);
}
.order-summary label {
  display: block;
  width: 100%;
  font-family: inherit;
  font-size: small;
  color: hsl(0, 0%, 44%);
  text-transform: uppercase;
}
.order-summary strong {
  display: block;
  font-family: inherit;
  font-size: inherit;
}
.order-summary address,
.order-summary span {
  display: block;
  font-family: inherit;
  font-size: inherit;
}
.order-summary__flex-row {
  --text-font-size: 1em;
  --border-bottom-col: hsl(0, 0%, 44%);
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  align-content: normal;
  justify-content: space-between;
  gap: 0;
  padding: 1.6rem 0;
  border-bottom: 0.1rem solid var(--border-bottom-col);
  font-family: "soleto-light", sans-serif;
  font-size: large;
  font-weight: 100;
}
.order-summary__flex-row--full-price {
  color: var(--theme-color);
  white-space: nowrap;
}
.order-summary__flex-row--l {
  --text-font-size: 1.2em;
}
.order-summary__flex-row strong,
.order-summary__flex-row span {
  display: block;
  font-family: inherit;
  font-size: var(--text-font-size);
}
.order-summary__flex-row strong {
  font-family: "prometo", sans-serif;
}
.order-summary__flex-row:last-of-type {
  --border-bottom-col: hsl(0, 0%, 44%);
  border-bottom: 0.2rem solid var(--border-bottom-col);
}

.doc-download {
  margin-block-end: 1.2rem;
}
.doc-download span {
  font-size: large;
}
@media only screen and (max-width: 425px) {
  .doc-download span {
    font-size: medium;
  }
}

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