@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
:root {
  --color-primary: #00EBD7;
  --color-primary-100: #BCFBF5;
  --color-primary-200: #99F7EF;
  --color-primary-400: #2FEFDF;
  --color-primary-500: --color-primary;
  --color-primary-600: #00BCAC;
  --color-font: #2D3030;
  --color-grey-025: #F9FAFA;
  --color-grey-050: #F4F5F5;
  --color-grey-100: #E9EBEB;
  --color-grey-150: #DDE1E0;
  --color-grey-200: #D2D7D6;
  --color-grey-500: #8F9A99;
  --color-grey-600: #76807F;
  --color-grey-700: #5E6565;
  --color-grey-800: #454B4A;
  --color-grey-900: #2D3030;
  --color-background: #F4F5F5;
  --color-warning-100: #FFF9C9;
  --color-warning-200: #F8EFAF;
  --color-warning-600: #EAD015;
  --color-danger-100: #FDDEDE;
  --color-danger-200: #F6C7C7;
  --color-danger: #F34242;
  --color-success: #0DE547;
  --br-normal: 8px;
  --br-large: 16px;
  --br-full: 9999px;
  --fs-default: 16px;
  --fs-smaller: 12px;
  --fs-small: 14px;
  --fs-medium: 24px;
  --fs-large: 32px;
  --ff-default: "Instrument Sans";
  --lh-smaller: 18px;
}

* {
  box-sizing: border-box;
}

h1, h2, h3 {
  margin-top: 1em;
  line-height: 135%;
}

h1 {
  font-size: 32px;
  font-weight: 700;
}
h1.with-initial {
  position: relative;
}
h1.with-initial:before {
  content: "";
  position: absolute;
  left: -3rem;
  top: 0;
  height: 100%;
  width: 2rem;
  background: var(--color-primary-400);
}

h2 {
  font-size: 24px;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

a {
  color: var(--color-primary-600);
  text-decoration: none;
  font-weight: 600;
}
a:hover {
  color: var(--color-primary-600);
  text-decoration: underline;
}

.size-20, input[type=checkbox]:before, .select-wrapper:after {
  font-size: 20px;
  font-variation-settings: "OPSZ" 20;
}

.size-24 {
  font-size: 24px;
  font-variation-settings: "OPSZ" 24;
}

.size-40 {
  font-size: 40px;
  font-variation-settings: "OPSZ" 40;
}

.size-48 {
  font-size: 48px;
  font-variation-settings: "OPSZ" 48;
}

.material-symbols-outlined, input[type=checkbox]:before, .select-wrapper:after {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  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;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  color: var(--color-font);
  background: var(--color-background);
  font-size: var(--fs-default);
  line-height: 1.5;
  font-optical-sizing: auto;
  font-family: var(--ff-default), sans-serif;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  overflow-x: clip;
}

.button {
  border: 0;
  transition: 0.15s all ease-in-out;
  height: 48px;
  border-radius: var(--br-normal);
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1.5rem;
  color: var(--color-font);
  gap: 0.25rem;
  cursor: pointer;
}
.button:hover {
  text-decoration: none;
  color: var(--color-font);
}
.button.-primary {
  background: var(--color-primary);
  color: var(--color-font);
}
.button.-primary:hover {
  background: var(--color-primary-400);
}
.button.-secondary {
  background: var(--color-grey-600);
  color: white;
}
.button.-secondary:hover {
  background: var(--color-grey-500);
}
.button.-disabled {
  background: var(--color-grey-150);
  color: var(--color-grey-500);
  box-shadow: none;
  cursor: default;
}
.button.-disabled:hover {
  background: var(--color-grey-150);
  color: var(--color-grey-500);
}
.button.-danger {
  background: var(--color-danger);
  color: white;
}
.button.-danger.-border {
  background: transparent;
  color: var(--color-danger);
  border: 2px solid var(--color-danger);
}
.button.-small {
  height: 44px;
  font-size: var(--fs-small);
  padding-inline: 1rem;
}
.button.-smaller {
  height: 36px;
  font-size: var(--fs-small);
  padding-inline: 0.75rem;
}
.button.-smallest {
  height: 24px;
  font-size: var(--fs-smaller);
  line-height: var(--lh-smaller);
  padding-inline: 0.25rem;
}

.text-button {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-size: var(--fs-small);
  color: var(--color-grey-600);
  transition: 0.15s all ease-in-out;
}
.text-button:hover {
  color: var(--color-grey-800);
  text-decoration: none;
}

.select-wrapper select, textarea, input[type=text], input[type=email], input[type=password] {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--br-normal);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.06);
  font-size: 1em;
  transition: 0.15s all ease-in-out;
}
.select-wrapper select:hover, textarea:hover, input[type=text]:hover, input[type=email]:hover, input[type=password]:hover {
  border-color: var(--color-grey-200);
}
.select-wrapper select:focus, textarea:focus, input[type=text]:focus, input[type=email]:focus, input[type=password]:focus {
  border-color: var(--color-primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.06), 0 0 0 1px var(--color-primary);
  outline: none;
}

input {
  font-family: var(--ff-default), sans-serif;
  font-size: var(--fs-default);
}
input[type=checkbox], input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.06);
  transition: 0.15s all ease-in-out;
  display: grid;
  place-content: center;
  cursor: pointer;
  border: 1px solid var(--color-grey-100);
}
input[type=checkbox]:before, input[type=radio]:before {
  transition: 0.15s all ease-in-out;
}
input[type=checkbox]:hover, input[type=radio]:hover {
  border-color: var(--color-grey-200);
}
input[type=checkbox]:checked:before, input[type=radio]:checked:before {
  color: var(--color-primary-600);
  transform: scale(1);
}
input[type=checkbox] {
  border-radius: 4px;
}
input[type=checkbox]:before {
  content: "check_small";
  width: 20px;
  height: 20px;
  color: transparent;
  transform: scale(1.25);
}
input[type=radio] {
  border-radius: 50%;
}
input[type=radio]:before {
  content: "";
  width: 8px;
  height: 8px;
  background: transparent;
  border-radius: 50%;
  transform: scale(0);
}
input[type=radio]:checked:before {
  background: var(--color-primary-600);
  transform: scale(1);
}
input[type=file] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

label {
  font-size: var(--fs-small);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.checkbox-wrapper, .radio-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 0.5rem;
  cursor: pointer;
}

.select-wrapper {
  position: relative;
}
.select-wrapper:after {
  content: "arrow_drop_down";
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0.75rem;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;
}
.type-container .card, .plan-container .card {
  cursor: pointer;
  border-width: 2px;
}
.type-container .card.selected, .plan-container .card.selected {
  border-color: var(--color-primary-400);
}
.type-container .card:not(.selected).disabled, .plan-container .card:not(.selected).disabled {
  border-color: var(--color-grey-150);
  background: var(--color-grey-025);
  color: var(--color-grey-500);
}

.plan-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 1rem;
}
.plan-container .card {
  border: 2px solid transparent;
  flex-grow: 1;
  text-align: center;
}
.plan-container .card.disabled:not(.selected) .price {
  color: var(--color-grey-500);
}
.plan-container .card input {
  display: none;
}
.plan-container .card .price {
  font-size: 32px;
  font-weight: 600;
  line-height: 135%;
  color: var(--color-primary-600);
  margin: 0;
}
.plan-container .card .per-period {
  margin: 0;
}

.type-container {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0.5rem;
}
.type-container .card {
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
}
.type-container .card.disabled:not(.selected) .desc {
  color: var(--color-grey-500);
}
.type-container .card .details {
  flex-grow: 1;
}
.type-container .card .title {
  font-size: var(--fs-default);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.type-container .card .desc {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  color: var(--color-grey-600);
  font-weight: 500;
}

.alert, .info-banner {
  padding: 1rem;
  margin-bottom: 2rem;
  border-radius: var(--br-large);
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.alert .button, .info-banner .button {
  background: white;
  box-shadow: none;
}

.info-banner.-warning {
  background: var(--color-warning-100);
  border: 1px solid var(--color-warning-200);
}
.info-banner.-warning .button {
  border: 1px solid var(--color-warning-200);
}
.info-banner.-success {
  background: var(--color-primary-100);
  border: 1px solid var(--color-primary-200);
}
.info-message {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  font-size: 14px;
  line-height: 20px;
  gap: 1rem;
  flex-grow: 1;
}

.alert {
  background: white;
  border: 1px solid var(--color-grey-200);
}
.alert.alert-error, .alert.alert-danger {
  background: var(--color-danger-100);
  border: 1px solid var(--color-danger-200);
}
.alert.alert-error .button, .alert.alert-danger .button {
  border: 1px solid var(--color-danger-200);
}
.alert.alert-warning {
  background: var(--color-warning-100);
  border: 1px solid var(--color-warning-200);
}
.alert.alert-warning .button {
  border: 1px solid var(--color-warning-200);
}
.alert.alert-success {
  background: var(--color-primary-100);
  border: 1px solid var(--color-primary-200);
}
.alert.alert-success .button {
  border: 1px solid var(--color-primary-200);
}

.panel {
  background: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.06);
  border-radius: var(--br-large);
  overflow: hidden;
}

.card {
  border-radius: var(--br-normal);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  border: 1px solid transparent;
  margin: 0;
}
.card.disabled {
  cursor: default;
  box-shadow: none;
}

.dropdown-menu {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 5px 14px rgba(0, 0, 0, 0.06), 0 2px 5px rgba(0, 0, 0, 0.06);
  border-radius: var(--br-normal);
  border: none;
  font-size: var(--fs-small);
  line-height: var(--lh-small);
}

.dropdown-item {
  font-weight: 600;
}
.dropdown-item:hover {
  text-decoration: none;
}

.login-container {
  width: 542px;
  border-radius: var(--br-large);
  background: var(--color-grey-025);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.06);
  padding: 2em 1.5em;
  margin: auto;
}
.login-container h2 {
  margin-bottom: 1em;
  margin-top: 0;
  position: relative;
}
.login-container h2:after {
  content: "";
  position: relative;
  display: block;
  bottom: 0;
  left: 0;
  width: 5rem;
  height: 0.25rem;
  background: var(--color-primary-200);
  border-radius: 2px;
  margin-top: 1.5rem;
}
.login-container h2.no-after:after {
  display: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.top-line {
  height: 3rem;
  background: var(--color-font);
  color: white;
  font-size: 14px;
  line-height: 20px;
}
.top-line > .container {
  height: 100%;
  padding-block: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.top-line > .container a {
  color: inherit;
}

/* Navigation Bar */
.top-menu {
  height: 5rem;
  background-color: white;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.06);
}
.top-menu > .container {
  height: 100%;
  padding-block: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
.top-menu .logo {
  width: 160px;
  height: 36px;
  display: block;
}

.top-menu-items {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 1.5rem;
}
.top-menu-items a {
  color: inherit;
}

.menu-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 1.5rem;
}

.my-profile-button {
  border-radius: var(--br-full);
  border: 1px solid var(--color-grey-100);
  background: var(--color-grey-050);
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  color: var(--color-font);
  font-weight: 600;
  gap: 6px;
  padding: 5px 10px 5px 6px;
}
.my-profile-button:hover {
  text-decoration: none;
  color: inherit;
}
.my-profile-button .status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--color-grey-200);
}
.my-profile-button .status.-inactive {
  background: transparent;
  border: 2px solid var(--color-danger);
}
.my-profile-button .status.-active {
  background: var(--color-success);
}

footer {
  position: relative;
  width: 100%;
  text-align: center;
  background: var(--color-font);
  color: white;
  font-size: 12px;
  line-height: 18px;
  margin-top: 2rem;
}
footer .container {
  padding-block: 1.5rem;
}

.footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-menu a {
  color: inherit;
}

.footer-copyright {
  color: var(--color-grey-050);
}

main {
  padding-block: 10rem 2rem;
  width: 100%;
  min-height: calc(100vh - 7rem);
}

.hero-section {
  width: 100vw;
  max-height: calc(100vh - 128px);
  position: relative;
  left: calc((100% - 100vw) / 2);
  margin-top: -2rem;
  overflow: hidden;
}
.hero-section:hover .hero-overlay:before {
  opacity: 0;
}
.hero-section:hover .hero-overlay h1, .hero-section:hover .hero-overlay .lead, .hero-section:hover .hero-overlay .question {
  opacity: 0;
}
.hero-section:hover .hero-overlay .button {
  transform: scale(1.1);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 2rem;
  color: white;
}
.hero-overlay:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transition: 0.2s all ease-in;
  z-index: -1;
}
.hero-overlay h1, .hero-overlay .lead, .hero-overlay .question {
  transition: 0.2s all ease-in;
}
.hero-overlay h1 {
  font-size: 48px;
}
.hero-overlay .lead {
  font-size: 24px;
}
.hero-overlay .question {
  font-size: 20px;
}
.hero-overlay .button {
  transform: scale(1);
}

.hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-container {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
  background: var(--color-grey-900);
  z-index: 1;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.video-container .cookie-notice {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.start section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 0;
  font-size: 48px;
  color: var(--color-grey-500);
}
.start .price-wrapper {
  position: relative;
  overflow: visible;
  flex-grow: 1;
}
.start .price-wrapper .discount {
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  background: var(--color-danger);
  color: white;
  font-weight: 600;
  border-radius: 8px;
  padding: 0 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.start .price h3 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

.about-us {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  gap: 3rem;
}
.about-us .about-us-text {
  flex-grow: 1;
}
.about-us .about-us-picture {
  flex-shrink: 0;
  width: 256px;
}
.about-us .lead {
  font-weight: 700;
  font-size: 24px;
  line-height: 135%;
}

.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.profile-picture {
  border-radius: 50%;
  margin-bottom: 1.5rem;
  background: var(--color-grey-100);
  width: 256px;
  height: 256px;
  display: block;
}

.profile-name {
  font-size: var(--fs-normal-plus);
  line-height: var(--lh-normal-plus);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.profile-title {
  font-size: var(--fs-small);
  line-height: var(--lh-small);
}

.infographics-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.infographics {
  width: 100%;
  height: 100%;
  max-width: 898px;
  max-height: 450px;
}
.infographics.-visible {
  overflow: visible;
}
.infographics.-visible [id^=ig-] {
  animation-name: FadeInAndGrow;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  transform-origin: center center;
}
.infographics.-visible #ig-excel {
  animation-delay: 0.25s;
}
.infographics.-visible #ig-bimfriend {
  animation-delay: 2s;
}
.infographics.-visible #ig-revit {
  animation-delay: 4.75s;
}
.infographics.-visible #ig-ids {
  animation-delay: 4.25s;
}
.infographics.-visible #ig-archicad {
  animation-delay: 4.5s;
}
.infographics [id^=ig-] {
  opacity: 0;
}

@keyframes FadeInAndGrow {
  0% {
    opacity: 0;
    scale: 0.9;
  }
  85% {
    scale: 1.04;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
#revealRect {
  animation: revealClipAnim 0.5s ease-out forwards;
  animation-delay: 1.25s;
}

@keyframes revealClipAnim {
  from {
    height: 0;
  }
  to {
    height: 55px;
  }
}
#revealRect1 {
  animation: revealClipAnim1 1s ease-out forwards;
  animation-delay: 3.25s;
}
@keyframes revealClipAnim1 {
  from {
    height: 0;
  }
  to {
    height: 90px;
  }
}

#revealRect2 {
  animation: revealClipAnim2 1s ease-out forwards;
  animation-delay: 3.5s;
}
@keyframes revealClipAnim2 {
  from {
    height: 0;
    width: 0;
  }
  to {
    height: 80px;
    width: 360px;
  }
}

#revealRect3 {
  animation: revealClipAnim3 1s ease-out forwards;
  animation-delay: 3.75s;
}
@keyframes revealClipAnim3 {
  from {
    height: 0;
    width: 0;
    x: 440;
  }
  to {
    height: 80px;
    width: 360px;
    x: 94;
  }
}

section {
  scroll-margin-top: 128px;
}

.profile-container {
  border-radius: var(--br-large);
  background: var(--color-grey-900);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.06);
  padding: 2em 1.5em;
  color: white;
}
.profile-container .text-button {
  color: var(--color-grey-200);
}
.profile-container .text-button:hover {
  color: var(--color-grey-100);
}
.profile-container h2 {
  margin-bottom: 1em;
  margin-top: 0;
  color: var(--color-grey-200);
}
.profile-container h3 {
  color: var(--color-grey-500);
  margin-block: 1.5rem;
}
.profile-container hr {
  margin-block: 1.5rem;
  background: var(--color-grey-800);
  opacity: 1;
}
.profile-container label {
  font-weight: 400;
}

#app .button-container, #app .input-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}
#app .input-container {
  gap: 0.75rem;
}
#app .input-container .field-group {
  display: flex;
  flex-direction: column; /* Vertikale Anordnung von Label und Input */
  flex: 1; /* Gleiche Breite der Felder */
  min-width: 200px; /* Mindestbreite für kleinere Bildschirme */
}
#app .input-container .field-group label {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0.25rem;
}
#app .input-container .field-group input {
  height: 36px;
  border: 1px solid var(--color-grey-200);
  border-radius: 0.25rem;
  background: var(--color-grey-050);
  font-size: 14px;
  font-weight: 500;
  padding-inline: 0.75rem;
}
#app .input-container .field-group input:focus {
  background: white;
}
#app hr {
  background: var(--color-grey-150);
  opacity: 1;
}
#app .button {
  border: 1px solid var(--color-grey-200);
}
#app .button:hover {
  border: 1px solid var(--color-grey-500);
}
#app .button.-primary, #app .button.-secondary {
  border: none;
}
#app .button.-ids {
  width: 88px;
}
#app #data-form {
  width: calc(100% + 2rem);
  margin-inline: -1rem;
}
#app #data-form input, #app #data-form textarea {
  margin-bottom: 0;
  border-radius: 0;
  font-size: 14px;
  line-height: 20px;
  height: 36px;
  padding: 0.5rem;
  display: block;
  box-shadow: none;
}
#app #data-form input:focus, #app #data-form textarea:focus {
  box-shadow: 0 0 0 1px var(--color-primary);
}
#app #data-form button {
  background: transparent;
  box-shadow: none;
  color: var(--color-grey-600);
  border: none;
}
#app #data-form button.copy-row:hover, #app #data-form button.add-row:hover {
  color: var(--color-primary-600);
}
#app #data-form button.remove-row:hover {
  color: var(--color-danger);
}
#app #data-form .action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 132px;
}
#app #data-form .faux-td {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 136px;
  height: 36px;
  border-bottom: 1px solid var(--color-grey-150);
  border-right: 1px solid var(--color-grey-150);
  border-left: 1px solid var(--color-grey-150);
}
#app #data-table {
  width: 100%;
  border-collapse: collapse;
}
#app #data-table thead tr {
  background: var(--color-grey-025);
}
#app #data-table th {
  font-size: 12px;
  line-height: 18px;
  border: 1px solid var(--color-grey-150);
  background: var(--color-grey-025);
  padding: 0.75rem;
  position: sticky;
  top: 0;
  z-index: 1;
  text-align: left;
}
#app #data-table td {
  border: 1px solid var(--color-grey-100);
  text-align: left;
}
#app #data-table td:empty {
  background-color: transparent;
  content: "";
}

.popup-list {
  position: absolute;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.15);
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  border-radius: var(--br-normal);
}
.popup-list .popup-item {
  padding: 8px;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.popup-list .popup-item:hover {
  background-color: var(--color-grey-050);
}

.autocomplete {
  position: relative;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  background-color: #fff;
  max-height: 200px;
  overflow-y: auto;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
}

.autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  position: relative;
  height: 100vh;
  overflow-y: auto;
}

#loader {
  width: 32px;
  height: 32px;
  border: 3px solid var(--color-grey-150);
  border-top-color: var(--color-primary-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}
#loader.-loading {
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.fs-small {
  font-size: 14px;
  line-height: 20px;
}

.fs-smaller {
  font-size: 12px;
  line-height: 18px;
}

.fw-semibold {
  font-weight: 600;
}

.lh-hero {
  line-height: 1.35;
}

.description {
  font-size: var(--fs-smaller);
  line-height: var(--lh-smaller);
}

.color-primary {
  color: var(--color-primary);
}

.color-primary-600 {
  color: var(--color-primary-600);
}

.color-danger {
  color: var(--color-danger);
}

.cursor-pointer {
  cursor: pointer;
}

.gap-y-4 {
  gap: 1.5rem 0;
}

#checkout-and-portal-button {
  height: 36px;
  background: #00EBD7;
  color: white;
  width: 100%;
  font-size: 18px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.6;
  border-radius: 0 0 6px 6px;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
}
#checkout-and-portal-button:hover {
  opacity: 0.8;
}