@font-face {
  font-family: 'Onest';
  src: url('/static/fonts/Onest-Bold.woff2') format('woff2'),
    url('/static/fonts/Onest-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('/static/fonts/Onest-Black.woff2') format('woff2'),
    url('/static/fonts/Onest-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('/static/fonts/Onest-ExtraLight.woff2') format('woff2'),
    url('/static/fonts/Onest-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('/static/fonts/Onest-ExtraBold.woff2') format('woff2'),
    url('/static/fonts/Onest-ExtraBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('/static/fonts/Onest-Thin.woff2') format('woff2'),
    url('/static/fonts/Onest-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('/static/fonts/Onest-Light.woff2') format('woff2'),
    url('/static/fonts/Onest-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('/static/fonts/Onest-SemiBold.woff2') format('woff2'),
    url('/static/fonts/Onest-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('/static/fonts/Onest-Regular.woff2') format('woff2'),
    url('/static/fonts/Onest-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('/static/fonts/Onest-Medium.woff2') format('woff2'),
    url('/static/fonts/Onest-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}



body {
  background-color: var(--body);
  color: var(--text);
  font-family: Onest, Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  overflow-x: hidden
}

a {
  color: inherit;
  text-decoration: none;
  outline: 0
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
}

header {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  align-items: center;
  z-index: 10;

  justify-content: space-between;
  align-items: center;

  background-color: var(--red-primary);
  color: var(--body);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3), 0 5px 5px 0 rgba(0, 0, 0, 0.35);
}


header div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content {
  position: fixed;
  width: 100vw;
  height: calc(100vh - 62px);
  top: 62px;
  overflow: scroll;
}



/* --- */

.animated-link {
  text-decoration: none;
  position: relative;
}

.animated-link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 10px;
  border-top-width: 2px;
  border-top-style: solid;
  width: 0;
  max-width: calc(100% - 20px);
  transition: all .3s ease;
}

.animated-link:hover.animated-link::after {
  width: 100%;
}

.active.animated-link::after {
  width: 100%;
}

/* --- Fluent --- */

.acrylic {
  color: var(--acrylic-text);
  background-color: transparent;
  backdrop-filter: blur(10px);

  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3), 0 5px 5px 0 rgba(0, 0, 0, 0.35);
}

.acrylic.form {
  border-radius: .5rem;
  width: 290px;
  height: calc(100% - 2rem);
  padding: 2rem;
}

.acrylic-card {
  border-radius: .5rem;
  padding: 1rem;
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}

.over-acrylic {
  border-radius: 5px;
  background-color: var(--img-hover);
}

.white-block {
  color: var(--acrylic-text);
  background-color: var(--content);
  position: relative;
  overflow: hidden;
}

.white-block.form {
  border-radius: .5rem;
  width: 290px;
  height: calc(100% - 2rem);
  padding: 2rem;
}

.white-block-card {
  border-radius: .5rem;
  padding: 1rem;
  width: calc(100% - 3rem);
  max-width: 950px;
  margin: 0 auto;
}

@media (max-width: 599px) {
  .white-block-card {
    border-radius: .5rem;
    padding: .5rem;
    width: calc(100% - 1.5rem);
    max-width: 950px;
    margin: 0 auto;
  }
}


.body {
  margin-top: 52px;
}

.consolas {
  font-family: 'Consolas';
}

/* --- Link --- */
.link {
  border-bottom: 0px solid #0000;
  transition: all .2s;
  cursor: pointer;
}

.link:hover {
  border-bottom: 2px solid var(--text);
  transition: all .2s;
}

.link_blue {
  color: var(--blue-primary);
  border-bottom: 0px solid #0000;
  transition: all .2s;
  cursor: pointer;
}

.link_blue:hover {
  border-bottom: 2px solid var(--blue-primary);
  transition: all .2s;
}

.link_white {
  color: #fff;
  border-bottom: 0px solid #fff0;
  transition: all .2s;
  cursor: pointer;
}

.link_white:hover {
  border-bottom: 2px solid #fff;
  transition: all .2s;
}

.link_dark {
  color: #000;
  border-bottom: 0px solid #0000;
  transition: all .2s;
  cursor: pointer;
}

.link_dark:hover {
  border-bottom: 2px solid #000;
  transition: all .2s;
}

/* ---------------------------------------------------------------- */

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

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-5 {
  margin: 1.5rem !important;
}

.mt-5 {
  margin-top: 1.5rem !important;
}

.mr-5 {
  margin-right: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 1.5rem !important;
}

.ml-5 {
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-5 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-6 {
  margin: 3rem !important;
}

.mt-6 {
  margin-top: 3rem !important;
}

.mr-6 {
  margin-right: 3rem !important;
}

.mb-6 {
  margin-bottom: 3rem !important;
}

.ml-6 {
  margin-left: 3rem !important;
}

.mx-6 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-6 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-5 {
  padding: 1.5rem !important;
}

.pt-5 {
  padding-top: 1.5rem !important;
}

.pr-5 {
  padding-right: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 1.5rem !important;
}

.pl-5 {
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-5 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-6 {
  padding: 3rem !important;
}

.pt-6 {
  padding-top: 3rem !important;
}

.pr-6 {
  padding-right: 3rem !important;
}

.pb-6 {
  padding-bottom: 3rem !important;
}

.pl-6 {
  padding-left: 3rem !important;
}

.px-6 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-6 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.p-auto {
  padding: auto !important;
}

.pt-auto {
  padding-top: auto !important;
}

.pr-auto {
  padding-right: auto !important;
}

.pb-auto {
  padding-bottom: auto !important;
}

.pl-auto {
  padding-left: auto !important;
}

.px-auto {
  padding-left: auto !important;
  padding-right: auto !important;
}

.py-auto {
  padding-top: auto !important;
  padding-bottom: auto !important;
}

.gap-0 {
  gap: 0 !important
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 0.75rem !important;
}

.gap-4 {
  gap: 1rem !important;
}

.gap-5 {
  gap: 1.5rem !important;
}

.gap-6 {
  gap: 3rem !important;
}

/* ---------------------------------------------------------------- */

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

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

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

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

/* ---------------------------------------------------------------- */
.is-white {
  color: #fff !important;
}

.is-dark {
  color: #000 !important;
}

.is-grey {
  color: #7c7c7c !important;
}

.is-grey input,
.is-grey button {
  color: #7c7c7c !important;
}

.is-bold {
  font-weight: bold;
}

/* --- Atribute --- */
/* Position */

.is-static {
  position: static !important;
}

.is-relative {
  position: relative !important;
}

.is-absolute {
  position: absolute !important;
}

.is-fixed {
  position: fixed !important;
}

.is-sticky {
  position: sticky !important;
}

/* Display */
.is-block {
  display: block !important;
}

.is-inline {
  display: inline !important;
}

.is-table {
  display: table !important;
}

.is-flex {
  display: flex !important;
}

.is-grid {
  display: grid !important;
}

.is-inline-block {
  display: inline-block !important;
}

.is-inline-table {
  display: inline-table !important;
}

.is-inline-flex {
  display: inline-flex !important;
}

.is-inline-grid {
  display: inline-grid !important;
}

.is-flex-wrap {
  flex-wrap: wrap !important;
}

/* --- Flex --- */
.is-flex-direction-row {
  flex-direction: row !important
}

.is-flex-direction-row-reverse {
  flex-direction: row-reverse !important
}

.is-flex-direction-column {
  flex-direction: column !important
}

.is-flex-direction-column-reverse {
  flex-direction: column-reverse !important
}

.is-align-items-stretch {
  align-items: stretch !important
}

.is-align-items-flex-start {
  align-items: flex-start !important
}

.is-align-items-flex-end {
  align-items: flex-end !important
}

.is-align-items-center {
  align-items: center !important
}

.is-align-items-baseline {
  align-items: baseline !important
}

.is-align-items-start {
  align-items: start !important
}

.is-align-items-end {
  align-items: end !important
}

.is-align-items-self-start {
  align-items: self-start !important
}

.is-align-items-self-end {
  align-items: self-end !important
}

.is-align-self-auto {
  align-self: auto !important
}

.is-align-self-flex-start {
  align-self: flex-start !important
}

.is-align-self-flex-end {
  align-self: flex-end !important
}

.is-align-self-center {
  align-self: center !important
}

.is-align-self-baseline {
  align-self: baseline !important
}

.is-align-self-stretch {
  align-self: stretch !important
}

table {
  white-space: nowrap;
  white-space: pre;
}

.resizer {
  position: relative;
  top: 0;
  height: 100%;
  min-height: 20px;
  width: 5px;
  background: var(--blue-light);
  cursor: col-resize;
  user-select: none;
  touch-action: none;
  display: inline-block;
}

.resizer.left {
  right: 0;
}

.resizer.right {
  left: 0;
}

.resizer:hover,
.resizer.active {
  background: var(--blue-primary);
  opacity: 1;
}

@media (hover: hover) {
  .resizer {
    opacity: 0;
  }

  *:hover>.resizer {
    opacity: 1;
  }
}


.is-pointer {
  cursor: pointer !important;
}

.is-grab {
  cursor: grab !important;
}

.space-between {
  justify-content: space-between !important
}

.space-around {
  justify-content: space-around !important
}

.is-justify-content-center {
  justify-content: center
}

.is-justify-content-start {
  justify-content: flex-start !important
}

.is-justify-content-end {
  justify-content: flex-end !important
}

.rotate-90 {
  transform: rotate(90deg);
}

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

.rotate-270 {
  transform: rotate(270deg);
}


/* --- */

.pill {
  border-radius: 10px;
  padding: 0.5rem 1rem;
}

.card {
  border-radius: 1rem;
  padding: 1rem;
  width: 100%;
  max-width: 950px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  height: 500px;
  box-shadow: 0 0 .7px #00000005, 0 0 1.6px #00000007, 0 0 3px #00000009, 0 0 5.4px #0000000b, 0 0 10px #0000000d, 0 0 24px #00000012;
}

@media (prefers-color-scheme: dark) {
  .wallpaper {
    background: url("/static/img/back_dark.jpg") center center / cover;
  }

  .logo {
    background: url("/static/img/logo_light.svg") center center / cover;
  }
}

@media (prefers-color-scheme: light) {
  .wallpaper {
    background: url("/static/img/back.jpg") center center / cover;
  }

  .logo {
    background: url("/static/img/logo.svg") center center / cover;
  }
}

.logo {
  height: 35px;
  width: 130px;
}

.logo_light {
  background: url("/static/img/logo_light.svg") center center / cover !important;
}

.logo_white {
  background: url("/static/img/logo_white.svg") center center / cover !important;
}

.logo_black {
  background: url("/static/img/logo_black.svg") center center / cover !important;
}

.logo-back {
  width: 300;
  height: 300;
  background: url("/static/img/logo_small_back.svg") center center / cover;
}

.toggle-control input:checked~.control {
  background-color: var(--blue-high);
}

.toggle-control .control {
  background-color: var(--el-back-secondary);
}

.toggle-control .control:after {
  background: #fff;
}

.checkbok-container input:checked~.checkmark {
  background-color: var(--blue-high);
}


.payment {
  background-color: var(--button-back-secondary);
  border-radius: 10px;
  margin-bottom: 0.5rem !important;
}

@media (min-width: 600px) {
  .payment {
    padding: 7px 10px;
    display: flex !important;
    align-items: baseline !important;
    gap: 0.5rem !important;
  }
}

@media (max-width: 599px) {
  .payment {
    background-color: #0002;
    border-radius: 10px;
    padding: 7px 10px;
    margin-bottom: 0.5rem !important;
  }
}

@media (max-width: 599px) {
  .payment-date {
    margin: 10px 0;
  }
}

.payment-details {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between;
}