/* /LaunchPad/LoggedInLaunchCards.razor.rz.scp.css */
.flex-container[b-fk3vbnmivt] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 0;
  min-height: 100%;
}
/* /LaunchPad/LoginActionCard.razor.rz.scp.css */
.card[b-br8v6s654t] {
  background: var(--accent-color);
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 14rem;
  height: 4.5rem;
  overflow: hidden;
  transform: scale(0.99);
  transition: all 0.25s linear;
}

.card:hover[b-br8v6s654t] {
  transform: scale(1);
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 60%);
}

.card-title1[b-br8v6s654t] {
  display: block;
  color: white;
  font-size: 16pt;
}

.card-title1 i[b-br8v6s654t] {
  font-weight: 300; 
  margin-left: 8px;
}

.slide-up-fade-in[b-br8v6s654t] {
  animation: slide-up-fade-in-b-br8v6s654t ease 1s;
  animation-iteration-count: 1;
  /*animation-delay: calc(var(--animation-order) * 100ms);*/
  /*transform-origin: 50% 50%;*/
  animation-fill-mode: forwards;
}

@keyframes slide-up-fade-in-b-br8v6s654t {
  0% {
    opacity: 0;
    /*transform: translate(0px, 40px);*/
  }

  100% {
    opacity: 1;
    /*transform: translate(0px, 0px);*/
  }
}

/* /LaunchPad/LoginView.razor.rz.scp.css */
.container[b-465z41gv7v] {
  display: flex;
  flex-flow: column;
  background-size: cover;
}

.logoContainer[b-465z41gv7v] {
  height: 5rem;
  margin: 4rem;
}

.logo_img[b-465z41gv7v] {
  height: 100%;
}

.actionsContainer[b-465z41gv7v] {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: left;
  margin-left: 7rem;
  margin-top: 15rem;
}

@media only screen and (max-width: 600px) {
  .actionsContainer[b-465z41gv7v] {
    margin-left: 3rem;
  }
}
@media only screen and (orientation: landscape) and (max-height: 580px) {
  .actionsContainer[b-465z41gv7v] {
    margin-left: 3rem;
    margin-top: 5rem;
  }
}
@media only screen and (orientation: portrait) and (max-height: 560px) {
  .actionsContainer[b-465z41gv7v] {
    margin-left: 3rem;
    margin-top: 5rem;
  }
}
/* /Shared/JumpCardCompact.razor.rz.scp.css */
.card-compact[b-xso1620m8y] {
  background: var(--color-servtec-10);
  display: flex;
  flex-direction: column;
  width: 453px;
  height: 360px;
  max-width: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--color-servtec-20);
  cursor: pointer;
}

.card-compact:hover[b-xso1620m8y] {
  background-color: var(--color-servtec-100);
}

.card-compact:hover .card-compact-title[b-xso1620m8y] {
  color: var(--color-white);
}

.card-compact:hover .card-compact-description[b-xso1620m8y] {
  color: var(--color-white);
}

.card-compact:hover .card-compact-icon i[b-xso1620m8y] {
  color: var(--color-white);
}

.card-compact-content[b-xso1620m8y] {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  padding: 32px;
  text-align: left;
}

.card-compact-icon[b-xso1620m8y] {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 120px;
  margin-top: 0px;
}

.card-compact-icon i[b-xso1620m8y] {
  font-size: 90px;
  color: var(--color-servtec-200);
  transition: color 0.3s ease;
}

.card-compact-icon img[b-xso1620m8y] {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(44%) sepia(8%) saturate(324%)
    hue-rotate(169deg) brightness(93%) contrast(87%);
}

.card-compact:hover .card-compact-icon img[b-xso1620m8y] {
  filter: brightness(0) invert(1);
  /* brightness(0) macht es schwarz, invert(1) macht es weiß */
}

.card-compact-text[b-xso1620m8y] {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 10px;
  min-height: 60px;
}

.card-compact-title[b-xso1620m8y] {
  font-size: 26px;
  font-weight: 300;
  line-height: 100%;
  color: var(--color-text-darkest);
  margin: 0 0 16px 0;
  transition: color 0.3s ease;
  display: flex;
  align-items: flex-end;
}

.card-compact-description-container[b-xso1620m8y] {
  position: relative;
  min-height: 60px;
  height: 60px;
}

.card-compact-description[b-xso1620m8y] {
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  color: var(--color-text-light);
  margin: 0;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-compact-description-secondary[b-xso1620m8y] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@media only screen and (max-width: 489px) {
  .card-compact[b-xso1620m8y] {
    width: 100%;
    min-width: 280px;
    height: 320px;
  }

  .card-compact-content[b-xso1620m8y] {
    padding: 24px;
    padding-bottom: 24px;
    justify-content: flex-end;
  }

  .card-compact-icon[b-xso1620m8y] {
    height: 60px;
    margin-top: 0px;
  }

  .card-compact-icon i[b-xso1620m8y] {
    font-size: 50px;
  }

  .card-compact-text[b-xso1620m8y] {
    margin-top: 10px;
    padding-top: 0px;
    min-height: 110px;
    margin-bottom: 0px;
  }

  .card-compact-title[b-xso1620m8y] {
    font-size: 24px;
    min-height: 40px;
    margin-bottom: 12px;
  }

  .card-compact-description-font[b-xso1620m8y] {
    font-size: 18px;
  }
  .card-compact-description-font-small[b-xso1620m8y] {
    font-size: 14px;
  }

  .card-compact-description-container[b-xso1620m8y] {
    min-height: 54px;
    height: 54px;
  }
}

@media only screen and (min-width: 490px) and (max-width: 599px) {
  .card-compact[b-xso1620m8y] {
    width: 100%;
    max-width: 453px;
    height: 360px;
  }

  .card-compact-content[b-xso1620m8y] {
    justify-content: flex-end;
    padding-bottom: 32px;
  }

  .card-compact-icon[b-xso1620m8y] {
    margin-top: 0px;
  }

  .card-compact-icon img[b-xso1620m8y] {
    width: 80px;
    height: 80px;
  }
}
/* /Shared/LanguageSelector.razor.rz.scp.css */
.language-selector[b-08w3krh2nw] {
  display: block;
  width: 100%;
}

.ant-dropdown-link[b-08w3krh2nw] {
  padding: 8px;
  border: 1px solid var(--color-grayscale-30);
  background-color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  gap: 8px;
}

.language-text[b-08w3krh2nw] {
  flex: 1;
  text-align: left;
  min-width: 0;
}

.ant-dropdown-link:focus-visible[b-08w3krh2nw] {
  outline: none;
}

[b-08w3krh2nw] .ant-dropdown-menu {
  max-height: 300px;
  overflow-y: visible;
  overflow-x: hidden;
  position: fixed !important;
}

[b-08w3krh2nw] .ant-menu {
  max-height: 280px;
  overflow-y: visible;
  overflow-x: hidden;
  border: none;
}

[b-08w3krh2nw] .ant-menu-item {
  padding: 8px 16px;
  border-bottom: 1px solid var(--color-grayscale-20);
}

[b-08w3krh2nw] .ant-menu-item:last-child {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  [b-08w3krh2nw] .ant-dropdown-menu {
    max-height: 250px !important;
    transform: translateY(0) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
    touch-action: pan-y !important;
    position: fixed !important;
    z-index: 9999;
  }
  
  [b-08w3krh2nw] .ant-menu {
    max-height: 230px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth !important;
    touch-action: pan-y !important;
  }
  
  [b-08w3krh2nw] .ant-menu-item {
    padding: 12px 16px;
    font-size: 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
    touch-action: manipulation;
  }
  
  /* Phone */
  [b-08w3krh2nw] .ant-dropdown-menu::-webkit-scrollbar,
  [b-08w3krh2nw] .ant-menu::-webkit-scrollbar {
    width: 8px;
  }
  
  [b-08w3krh2nw] .ant-dropdown-menu::-webkit-scrollbar-thumb,
  [b-08w3krh2nw] .ant-menu::-webkit-scrollbar-thumb {
    background-color: var(--color-grayscale-40);
    border-radius: 4px;
  }
}

@media screen and (max-height: 600px) {
  [b-08w3krh2nw] .ant-dropdown-menu {
    max-height: 200px;
  }
  
  [b-08w3krh2nw] .ant-menu {
    max-height: 180px;
  }
}

@media screen and (max-height: 400px) {
  [b-08w3krh2nw] .ant-dropdown-menu {
    max-height: 150px !important;
    overflow-y: auto !important;
  }
  
  [b-08w3krh2nw] .ant-menu {
    max-height: 130px !important;
    overflow-y: auto !important;
  }
}

/* Tablet*/
@media screen and (max-width: 1024px) and (min-width: 769px) {
  [b-08w3krh2nw] .ant-dropdown-menu,
  [b-08w3krh2nw] .ant-menu {
    scrollbar-width: thin;
    scrollbar-color: var(--color-grayscale-40) transparent;
  }

  [b-08w3krh2nw] .ant-dropdown-menu::-webkit-scrollbar,
  [b-08w3krh2nw] .ant-menu::-webkit-scrollbar {
    width: 6px;
  }

  [b-08w3krh2nw] .ant-dropdown-menu::-webkit-scrollbar-track,
  [b-08w3krh2nw] .ant-menu::-webkit-scrollbar-track {
    background: transparent;
  }

  [b-08w3krh2nw] .ant-dropdown-menu::-webkit-scrollbar-thumb,
  [b-08w3krh2nw] .ant-menu::-webkit-scrollbar-thumb {
    background-color: var(--color-grayscale-40);
    border-radius: 3px;
  }

  [b-08w3krh2nw] .ant-dropdown-menu::-webkit-scrollbar-thumb:hover,
  [b-08w3krh2nw] .ant-menu::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-grayscale-50);
  }
}
/* /Shared/LoginDisplay.razor.rz.scp.css */
a[b-uxozzc9hsy] {
				color: var(--header-text-color);
				font-size: var(--font-size-small);
}

				a:active[b-uxozzc9hsy], a:hover[b-uxozzc9hsy] {
								color: var(--accent-color);
				}
/* /Shared/MainLayout.razor.rz.scp.css */
/* All classes in this file were unused and have been removed */
/* /Shared/NavMenu.razor.rz.scp.css */
.burger-menu-btn[b-by8pirb4bu] {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--color-text-dark);
  z-index: 999;
}

.burger-menu-btn:hover[b-by8pirb4bu] {
  background-color: var(--color-highlight-translucent);
}

.side-menu-overlay[b-by8pirb4bu] {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.side-menu-overlay.show[b-by8pirb4bu] {
  opacity: 1;
  visibility: visible;
}

.side-menu[b-by8pirb4bu] {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  background-color: var(--color-white);
  box-shadow: 2px 0 10px var(--color-highlight-translucent);
  z-index: 1001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  /* height: 100%; */
  overflow-y: hidden;
}

.side-menu.show[b-by8pirb4bu] {
  right: 0;
}

.side-menu-header[b-by8pirb4bu] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  height: 100px;
  border-bottom: 1px solid var(--color-grayscale-30);
}

.close-btn[b-by8pirb4bu] {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--color-text-light);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.close-btn:hover[b-by8pirb4bu] {
  background-color: var(--color-highlight-translucent);
}

.portal-section[b-by8pirb4bu] {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
}

.menu-items[b-by8pirb4bu] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-item[b-by8pirb4bu] {
  font-size: 20px;
  line-height: 120%;
  font-weight: 300;
}

.side-menu-footer[b-by8pirb4bu] {
  padding: 20px;
  border-top: 1px solid var(--color-grayscale-30);
  margin-top: auto;
}

.logout-btn[b-by8pirb4bu] {
  width: 100%;
  padding: 0.5rem;
  background-color: var(--color-servtec-100);
  color: var(--color-white);
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  text-decoration: none;
  text-align: center;
}

.logout-btn:hover[b-by8pirb4bu] {
  background-color: var(--color-servtec-200);
}

.selectors[b-by8pirb4bu] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.selector[b-by8pirb4bu] {
  width: 100%;
}

.selector-dropdown[b-by8pirb4bu] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-grayscale-30);
  background-color: var(--color-white);
  font-size: 14px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.3s ease;
}

.selector-dropdown:focus[b-by8pirb4bu] {
  border-color: var(--color-servtec-100);
}

@media (max-width: 768px) {
  .side-menu[b-by8pirb4bu] {
    width: 280px;
    right: -280px;
  }

  .side-menu.show[b-by8pirb4bu] {
    right: 0;
  }
}
@media (orientation: landscape) and (max-height: 480px) {
  .side-menu[b-by8pirb4bu] {
    height: 100%;
    overflow-y: scroll;
  }
  .side-menu-header[b-by8pirb4bu] {
    padding: 1rem;
    height: 70px;
    padding: 0.5rem 1rem;
  }
}
@media (max-width: 480px) {
  .side-menu[b-by8pirb4bu] {
    width: 100vw;
    right: -100vw;
  }

  .side-menu.show[b-by8pirb4bu] {
    right: 0;
  }

  .side-menu-header[b-by8pirb4bu] {
    padding: 1rem;
    height: 80px;
  }

  .portal-section[b-by8pirb4bu] {
    padding: 15px;
  }

  .side-menu-footer[b-by8pirb4bu] {
    padding: 15px;
  }
}

/* FontAwesome icon weight customization */
.burger-menu-btn .fa[b-by8pirb4bu],
.burger-menu-btn .far[b-by8pirb4bu],
.burger-menu-btn .fas[b-by8pirb4bu] {
  font-weight: 300; /* Light weight */
}

.close-btn .fa[b-by8pirb4bu],
.close-btn .far[b-by8pirb4bu],
.close-btn .fas[b-by8pirb4bu] {
  font-weight: 300; /* Light weight */
}

.search-icon.fa[b-by8pirb4bu],
.search-icon.far[b-by8pirb4bu],
.search-icon.fas[b-by8pirb4bu] {
  font-weight: 400; /* Regular weight */
}

.footer-link-bold .fa[b-by8pirb4bu],
.footer-link-bold .far[b-by8pirb4bu],
.footer-link-bold .fas[b-by8pirb4bu] {
  font-weight: 300; /* Light weight */
}
/* /Shared/UserInfo.razor.rz.scp.css */
.user-info[b-609we8f358] {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar[b-609we8f358] {
  width: 40px;
  height: 40px;
  background-color: var(--color-servtec-10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  font-size: 15px;
  font-weight: 400;
}

.user-details[b-609we8f358] {
  display: flex;
  flex-direction: column;
}

.user-name[b-609we8f358] {
  font-weight: 300;
  font-size: 18px;
  color: var(--color-text-dark);
}

.user-role[b-609we8f358] {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-light);
}
/* /Shared/WelcomeText.razor.rz.scp.css */
.label_name[b-evmecctoej] {
				font-size: var(--font-size-small);
				color: var(--header-text-color);
				padding-top: 0.1rem;
}
