@import 'CheckIT.Client.v6v8pz8hmz.bundle.scp.css';

/* _content/CheckIT/Components/AFK/BugChart.razor.rz.scp.css */
.bugchart[b-vzkhf826gb] {
  position: fixed;
  bottom: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 100;
}

table[b-vzkhf826gb] {
  width: 300px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 5px;
  color: white;
  padding: 10px;
  box-shadow: 0 0 10px black;
  opacity: 0;
  transform: translateY(10px);
  animation: slideUp-b-vzkhf826gb 1s ease forwards;
}

@keyframes slideUp-b-vzkhf826gb {
  from {
    opacity: 0;
    transform: translateY(10px); /* Unten starten */
  }

  to {
    opacity: 1;
    transform: translateY(0); /* Zurück zur ursprünglichen Position */
  }
} 
/* _content/CheckIT/Components/Background.razor.rz.scp.css */
.background[b-laprflc96y] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.img[b-laprflc96y] {
    height: 100%;
    width: 100%;
    display: contents;
    transform: scale(1.1);
}

img[b-laprflc96y] {
  animation: ShowBg-b-laprflc96y 1s ease;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

@keyframes ShowBg-b-laprflc96y {
  0% {
    opacity: 0;
    filter: blur(50px);
  }
  10% {
    opacity: 0;
    filter: blur(50px);
    transform: scale(1.2);
  }

  100% {
    filter: blur(0px);
    opacity: 1;
    transform: scale(1);
  }
}
/* _content/CheckIT/Components/Dev/Bugreports.razor.rz.scp.css */
.bugreports[b-bfyqpb0pjo] {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border-radius: 5px;
}

code[b-bfyqpb0pjo] {
  background: rgba(0, 0,0, 0.5);
  border: 1px rgba(0, 0, 0, 0.6) solid;
  padding: 10px;
  display: block;
  border-radius: 5px;
  color: rgb(200, 100, 100);
  font-family: "Lucida Console", "Courier New", monospace;
  margin: 10px 0 0 0;
  word-wrap: break-word;
  line-height: 1.3rem;
  white-space: pre-line;
  overflow: auto;
  height: 100px;
}

p.btn[b-bfyqpb0pjo] {
  text-align: center;
  display: block;
  margin: 0 5px 0 0;
}
/* _content/CheckIT/Components/Dev/Console.razor.rz.scp.css */
.console[b-kcvg3lhvfp] {
    display: grid;
}

textarea[b-kcvg3lhvfp] {
  background: linear-gradient( 330deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100% );
  outline: none;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px;
  resize: none;
  border-radius: 5px;
  overflow: auto;
  border: 1px rgba(255, 255, 255, 0.2) solid;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4) inset;
  font-family: Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.3rem;
}
/* _content/CheckIT/Components/Dev/ErrorMsg.razor.rz.scp.css */
.error[b-uwxknuofud]
 {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

content[b-uwxknuofud] {
  border: 10px solid rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 5px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  max-width: 500px;
  color: white;
  line-height: 1.7rem;
  animation: shake-b-uwxknuofud 0.5s ease;
}


h1[b-uwxknuofud] {
  font-size: 1.5rem;
  color: white;
  margin: 10px 0;
  font-weight: normal;
  letter-spacing: 0.2rem;
}

code[b-uwxknuofud] {
  background: rgba(0, 0,0, 0.5);
  border: 1px rgba(0, 0, 0, 0.6) solid;
  padding: 10px;
  display: block;
  border-radius: 5px;
  color: rgb(200, 100, 100);
  margin: 10px 0 20px 0;
  font-family: "Lucida Console", "Courier New", monospace;
  word-wrap: break-word;
  white-space: pre-line;
  max-height: 150px;
  overflow: auto;
}

.buttons[b-uwxknuofud] {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin: 10px 0 0 0;
}

p.btn[b-uwxknuofud], a.btn[b-uwxknuofud] {
  margin: 0;
  text-align: center;
  display: block;
  text-decoration: none;
}

@keyframes shake-b-uwxknuofud {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-10px);
  }

  50% {
    transform: translateX(10px);
  }

  75% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}
/* _content/CheckIT/Components/Dev/FeedbackList.razor.rz.scp.css */
.feedbacklist[b-gtm56zp28n] {
  display: grid;
  border-radius: 5px;
  overflow: auto;
}

.filter[b-gtm56zp28n] {
  display: flex;
  padding: 5px 10px 10px 10px;
  justify-content: center;
  gap: 10px;
}

  .filter input[b-gtm56zp28n], .filter select[b-gtm56zp28n] {
    border-radius: 5px;
    display: block;
    box-sizing: border-box;
    width: 200px;
    height: 32px;
    outline: none;
    padding: 5px 30px 5px 15px;
    color: white;
    transition: all 0.2s;
    font-size: 1rem;
    border: 1px rgba(255, 255, 255, 0.4) solid;
    background: rgba(0, 0, 0, 0.2);
  }

    .filter input[b-gtm56zp28n]::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .filter input:focus[b-gtm56zp28n]::placeholder {
      color: transparent;
    }

    .filter input:hover[b-gtm56zp28n], .filter select:hover[b-gtm56zp28n] {
      background: rgba(255, 255, 255, 0);
    }

    .filter input:focus[b-gtm56zp28n] {
      background: rgba(255, 255, 255, 0.8);
      color: black;
    }

    .filter select:focus[b-gtm56zp28n] {
      background: rgba(255, 255, 255, 0.2);
    }
/* _content/CheckIT/Components/Dev/Feedback/FeedbackCategory.razor.rz.scp.css */
ul[b-lqtspmclm6] {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

li[b-lqtspmclm6] {
  display: grid;
  grid-template-columns: 40px 1fr;
  padding: 10px;
  grid-gap: 10px;
  user-select: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 0 black;
  position: relative;
  overflow: hidden;
}

  li[b-lqtspmclm6]::before {
    content: "";
    position: absolute;
    inset: 0;
    transition: all 0.3s ease;
    background: linear-gradient( 330deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 100% );
    z-index: 0;
    opacity: 0;
  }

  li:hover[b-lqtspmclm6]::before {
    opacity: 1;
  }

li:active[b-lqtspmclm6] {
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1) inset;
}

  li:active[b-lqtspmclm6] {
    background: rgba(0, 0, 0, 0.2);
  }

li:focus[b-lqtspmclm6] {
  outline: 1px rgba(255, 255, 255, 0.9) solid;
}

img[b-lqtspmclm6] {
    max-width: 25px;
}

.img[b-lqtspmclm6] {
  display: flex;
  justify-content: center;
  align-items: center;
}

h3[b-lqtspmclm6] {
  margin: 0 0 5px 0;
}

p[b-lqtspmclm6] {
    margin: 0;
}
/* _content/CheckIT/Components/Dev/Feedback/FeedbackMessage.razor.rz.scp.css */
.message[b-ybztxdkvq2] {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  color: black;
  padding: 10px;
  position: relative;
}

[b-ybztxdkvq2] p, p[b-ybztxdkvq2] {
    margin: 0;
    padding: 0;
  }

h2[b-ybztxdkvq2] {
  font-size: 1.5rem;
  margin: 0;
}

.msgdetails[b-ybztxdkvq2] {
  display: flex;
  flex-direction: row;
  gap: 10px;
  border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
  margin: 0 0 5px 0;
}

h4[b-ybztxdkvq2] {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
  margin: 5px 0 5px 0;
  font-weight: normal;
}

.message.internal[b-ybztxdkvq2] {
  background: rgba(255, 255, 255, 0.5);
}

.internalicicon[b-ybztxdkvq2] {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 2rem;
  opacity: 0.2;
}
/* _content/CheckIT/Components/Dev/Feedback/FeedbackType.razor.rz.scp.css */
ul[b-z2rb4r8swp] {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

li[b-z2rb4r8swp] {
  display: grid;
  grid-template-columns: 40px 1fr;
  padding: 10px;
  grid-gap: 10px;
  user-select: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 0 black;
  position: relative; 
  overflow: hidden;
}

  li[b-z2rb4r8swp]::before {
    content: "";
    position: absolute;
    inset: 0;
    transition: all 0.3s ease;
    background: linear-gradient( 330deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 100% );
    z-index: 0;
    opacity: 0;
  }

  li:hover[b-z2rb4r8swp]::before {
    opacity: 1;
  }

li:active[b-z2rb4r8swp] {
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1) inset;
}

  li:active[b-z2rb4r8swp] {
    background: rgba(0, 0, 0, 0.2);
  }

li:focus[b-z2rb4r8swp] {
  outline: 1px rgba(255, 255, 255, 0.9) solid;
}

img[b-z2rb4r8swp] {
    max-width: 25px;
}

.img[b-z2rb4r8swp] {
  display: flex;
  justify-content: center;
  align-items: center;
}

h3[b-z2rb4r8swp] {
  margin: 0 0 5px 0;
}

p[b-z2rb4r8swp] {
    margin: 0;
}
/* _content/CheckIT/Components/Dev/Feedback/ModalFeedback.razor.rz.scp.css */
.feedback[b-nukymredxv] {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-gap: 10px;
  padding: 0 10px 10px 10px;
  overflow: auto;
}

aside[b-nukymredxv] {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

main[b-nukymredxv] {
  overflow: auto;
  display: contents;
}

.actions[b-nukymredxv] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
  padding: 0;
}

.conversation[b-nukymredxv] {
  display: grid;
  grid-template-rows: 1fr 50px auto;
  overflow: auto;
  position: relative;
  padding-bottom: 2px;
  grid-gap: 10px;
  padding: 2px;
  transition: all 0.3s;
}

  .conversation:has(textarea:focus)[b-nukymredxv] {
    grid-template-rows: 1fr 150px auto;
  }


.messages[b-nukymredxv] {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1) inset;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  overflow: auto;
}


.share[b-nukymredxv] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qr[b-nukymredxv] {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .qr img[b-nukymredxv] {
    max-width: 150px;
  }

  .share p[b-nukymredxv] {
      margin: 0;
  }

.mymessage[b-nukymredxv] {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  display: grid;
}
/* _content/CheckIT/Components/Dev/Feedback/ModalNewFeedback.razor.rz.scp.css */
h3[b-bcsm5jtqso] {
  font-size: 2rem;
  font-weight: normal;
  color: white;
  letter-spacing: 0.1rem;
  margin: 10px 0;
  /*  text-shadow: 0 0 5px rgb(0, 0, 0);*/
}

.newfeedback[b-bcsm5jtqso] {
  display: grid;
  padding: 5px 10px 10px 10px;
  grid-gap: 20px;
  overflow: auto;
  margin-left: 30%;
}

.asidespaceholder[b-bcsm5jtqso] {

}

aside img[b-bcsm5jtqso] {
  max-width: 100%;
  max-height: 100%;
}

content[b-bcsm5jtqso] {
  overflow: auto;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  animation: ShowFeedback-b-bcsm5jtqso 0.5s ease-in-out forwards;
  animation-delay: 0.8s;
/*  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);*/
}

.buttons[b-bcsm5jtqso] {
  display: flex;
}

aside[b-bcsm5jtqso] {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  animation: ShowBg-b-bcsm5jtqso 1s ease-in-out forwards;
}

p[b-bcsm5jtqso] {
  line-height: 1.8rem;
  margin: 0;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 2px 2px black;
}

.buttons[b-bcsm5jtqso] {
    margin: 15px 0;
}

@keyframes ShowFeedback-b-bcsm5jtqso
{
    0% {
        transform: translateX(10px);
        opacity: 0;
    }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes ShowBg-b-bcsm5jtqso {
  0% {
    transform: translateX(-10px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* _content/CheckIT/Components/Dev/ModalDev.razor.rz.scp.css */
.policies[b-jr2ompava1] {
  display: grid;
  grid-template-columns: 250px 1fr;
  overflow: auto;
}

content[b-jr2ompava1] {
  display: grid;
  margin: 0;
  overflow: auto;
  border-radius: 5px;
  padding: 5px;
}

h1[b-jr2ompava1] {
  font-size: 1.3rem;
  padding: 0;
  font-weight: normal;
  letter-spacing: 0.1rem;
  margin: 10px 0 15px 0;
  text-align: center;
  color: white;
}
/* _content/CheckIT/Components/Dev/SysInfo.razor.rz.scp.css */
.sysinfo[b-uekrgue4m2] {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
}
/* _content/CheckIT/Components/Dev/Updates.razor.rz.scp.css */
.changelog[b-cuqqq6usfv] {
  display: flex;
  gap: 10px;
  flex-direction: column;
  overflow: auto;
}

[b-cuqqq6usfv] section {
  background: linear-gradient( 330deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100% );
  border-radius: 5px;
  padding: 10px;
  display: flex;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  flex-direction: column;
  gap: 5px;
}

[b-cuqqq6usfv] p {
    margin: 0;
}

[b-cuqqq6usfv] h2 {
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0;
}

[b-cuqqq6usfv] .version {
  margin-top: 20px;
  padding: 10px;
  border-left: 5px solid #4CAF50;
  background: #f9f9f9;
}

[b-cuqqq6usfv] .date {
  color: rgba(255, 255, 255, 0.5);
}

[b-cuqqq6usfv] ul {
  margin: 10px 0 10px 0px;
  padding: 0;
  list-style: none;
  gap: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

[b-cuqqq6usfv] li {
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  border-radius: 5px;
  padding: 5px;
  position: relative;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
/* _content/CheckIT/Components/Editor/QuillCollaborative.razor.rz.scp.css */
.quill[b-7c1zyuz0d4] {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: auto;
    grid-gap: 5px;
}
/* _content/CheckIT/Components/Identity/ModalProfileSelector.razor.rz.scp.css */
.profileselector[b-8josjvcxuo] {
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: auto;
}

.head[b-8josjvcxuo] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 10px 0;
  position: relative;
}

.menu[b-8josjvcxuo] {
  position: absolute;
  right: 20px;
  height: 30px;
  width: 30px;
  color: white;
}

.circle[b-8josjvcxuo] {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  overflow: hidden;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}

  .circle .selectedcolor[b-8josjvcxuo] {
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    position: absolute;
    z-index: -1;
  }

  .circle img[b-8josjvcxuo] {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }


.main[b-8josjvcxuo] {
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  padding: 10px 0 0 0;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
}

ul[b-8josjvcxuo] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.main li[b-8josjvcxuo] {
  align-items: center;
  overflow: hidden;
  display: grid;
  gap: 10px;
  padding: 2px 10px;
  height: 40px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 5px;
  position: relative;
  border: 1px transparent dashed;
  user-select: none;
  grid-template-columns: auto 1fr auto;
}

.imagecycle[b-8josjvcxuo] {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.usericon[b-8josjvcxuo] {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  width: 35px;
  font-size: 3.3rem;
  border: 1px white solid;
  border-radius: 100%;
  overflow: hidden;
}

.usericon img[b-8josjvcxuo] {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

p.fullname[b-8josjvcxuo] {
  margin: 0;
  font-size: 1.2rem;
}

p.username[b-8josjvcxuo] {
  margin: 0;
  opacity: 0.5;
  font-size: 0.9rem;
}

.container[b-8josjvcxuo] {
  position: relative;
  cursor: pointer;
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

  .container input[b-8josjvcxuo] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

.checkmark[b-8josjvcxuo] {
  height: 25px;
  width: 25px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  transition: all 0.3s;
}

.container[b-8josjvcxuo] {
    pointer-events: none;
}

.container:hover input ~ .checkmark[b-8josjvcxuo] {
  background-color: rgba(255, 255, 255, 0.5);
}

.container input:checked ~ .checkmark[b-8josjvcxuo] {

}

.checkmark[b-8josjvcxuo]:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark[b-8josjvcxuo]:after {
  display: block;
}

.container .checkmark[b-8josjvcxuo]:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
/* _content/CheckIT/Components/Identity/Pages/Login.razor.rz.scp.css */
/* _content/CheckIT/Components/Identity/Pages/Register.razor.rz.scp.css */
.register[b-f7boo9ukya] {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: auto;
}

.termsofuse[b-f7boo9ukya] {
    grid-template-columns: 1fr 70px;
}

    .termsofuse a[b-f7boo9ukya], .termsofuse a:visited[b-f7boo9ukya] {
        color: white;
    }

    form[b-f7boo9ukya] {
        overflow: auto;
    }
/* _content/CheckIT/Components/Identity/Pages/RegisterConfirmation.razor.rz.scp.css */
body[b-bmc2jctc44] {
}
/* _content/CheckIT/Components/Identity/Profile.razor.rz.scp.css */
.profile[b-ss6h0r1o0z] {
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow: auto;
}

.head[b-ss6h0r1o0z] {
    display: flex;
    flex-direction: column;
    position: relative;
}

.top[b-ss6h0r1o0z] {
    margin: 0 20px 10px 20px;
    display: grid;
    color: white;
    gap: 10px;
    grid-template-columns: auto 1fr auto;
}

.toolbar[b-ss6h0r1o0z] {
    margin: 10px 0;
}

.top .menu[b-ss6h0r1o0z] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
}

.usericon[b-ss6h0r1o0z] {
    position: relative;
    display: flex;
    align-items: center;
}

    .usericon img[b-ss6h0r1o0z] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: none;
        max-height: none;
    }

.imagecycle[b-ss6h0r1o0z] {
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    border: 1px white solid;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.basicinfo[b-ss6h0r1o0z] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .basicinfo .infoline[b-ss6h0r1o0z] {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 5px;
        transition: all 0.3s;
        padding: 5px 20px 5px 5px;
    }

    .basicinfo .infoline p.icon[b-ss6h0r1o0z] {
        margin: 0;
        width: 20px;
        text-align: center;
    }

    .basicinfo a[b-ss6h0r1o0z], .basicinfo a:visited[b-ss6h0r1o0z] {
        margin: 0;
        padding: 0;
        color: white;
        text-decoration: none;
    }

        .basicinfo a:hover[b-ss6h0r1o0z] {
            text-decoration: underline;
        }

    .basicinfo p.username[b-ss6h0r1o0z] {
        margin: 0;
        padding: 0;
        color: rgba(255, 255, 255, 0.6)
    }

    .basicinfo h3[b-ss6h0r1o0z] {
        font-size: 1.2rem;
        font-weight: bold;
        margin: 0;
    }

.main[b-ss6h0r1o0z] {
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    padding: 10px 0 0 0;
    flex-direction: column;
    gap: 10px;
    overflow: auto;
}

section[b-ss6h0r1o0z] {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
}

section h3[b-ss6h0r1o0z] {
    margin: 0;
    padding: 0;
    color: white;
}

.field[b-ss6h0r1o0z] {
    display: grid;
    grid-template-columns: 120px auto;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.2s;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px rgba(255, 255, 255, 0) dashed;
}


.field:hover[b-ss6h0r1o0z] {
    background: rgba(255, 255, 255, 0.15);
}

.readonly .field:hover[b-ss6h0r1o0z] {
    background: rgba(255, 255, 255, 0.1);
}


    .field label.info[b-ss6h0r1o0z] {
        display: flex;
        align-items: center;
        padding: 8px 10px;
        border-right: 1px rgba(255,255,255,0.3) solid;
        margin: 2px 0;
        font-size: 1rem;
        color: white;
    }

    .field input[b-ss6h0r1o0z] {
        border: none;
        border-radius: 0;
        outline: none;
        padding: 5px 10px;
        font-size: 1rem;
        transition: all 0.2s;
        color: white;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
        height: 100%;
        background: transparent;
    }

        .field input:read-only[b-ss6h0r1o0z] {
            cursor: default;
        }

        .edit .field  input:focus[b-ss6h0r1o0z] {
            background: rgba(255, 255, 255, 0.9);
            color: black;
        }

.edit .field[b-ss6h0r1o0z] {
    border: 1px rgba(255, 255, 255, 0.2) dashed;
}

p.btn[b-ss6h0r1o0z] {
    text-align: center;
    display: block;
    border: 1px rgba(255, 255, 255, 0.1) solid;
    padding: 10px;
}

p.btn:hover[b-ss6h0r1o0z] {
    background: rgba(255, 255, 255, 0.3);
}

.errors[b-ss6h0r1o0z] {
    background: rgba(255, 0, 0, 0.2);
    color: white;
    margin: 0 10px;
}

.errors ul[b-ss6h0r1o0z] {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

ul.buttons[b-ss6h0r1o0z] {
    list-style: none;
    display: flex;
    gap: 10px;
    flex-direction: column;
    margin: 10px 0;
    padding: 0;
}

ul.buttons li[b-ss6h0r1o0z] {

}

    ul.buttons li a.resetpw[b-ss6h0r1o0z] {
        padding: 10px 15px;
        background: rgba(255, 0, 0, 0.2);
        border-radius: 5px;
        color: white;
        cursor: pointer;
        display: inline-block;
        transition: all 0.2s;
    }

        ul.buttons li a.resetpw:hover[b-ss6h0r1o0z] {
            background: rgba(255, 0, 0, 0.3);
        }

        ul.buttons li a.resetpw:active[b-ss6h0r1o0z] {
            background: rgba(0, 0, 0, 0.3);
        }

        ul.buttons li a.resetpw.disabled[b-ss6h0r1o0z] {
            color: rgba(255, 255, 255, 0.5);
            background: rgba(255, 0, 0, 0.1);
            cursor: not-allowed;
        }

.usericon .btn[b-ss6h0r1o0z] {
    position: absolute;
    bottom: 0;
    padding: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px rgba(255, 255, 255, 0.2) solid;
    right: 0;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center; 
    transition: all 0.3s;
}

    .usericon .btn.del:hover[b-ss6h0r1o0z] {
        background: var(--colors-redhover);
    }

    .usericon .btn p[b-ss6h0r1o0z] {
        margin: 0;
    }

.usericon .hiddeninput[b-ss6h0r1o0z] {
    display: none;
}

img.blurypicture[b-ss6h0r1o0z] {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 180px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.2;
    width: 100%;
    object-fit: cover;
    max-width: none;
    max-height: none;
    overflow: hidden;
}

.onlineindicator[b-ss6h0r1o0z] {
    position: absolute;
    bottom: 5px;
    right: 0px;
}
/* _content/CheckIT/Components/Identity/ProfileItem.razor.rz.scp.css */
.profleitem[b-ltwd4w8ul8] {
  align-items: center;
  overflow: hidden;
  display: grid;
  gap: 10px;
  padding: 2px 0;
  height: 40px;
  font-size: 1rem;
  transition: all 0.3s;
  border-radius: 5px;
  position: relative;
  border: 1px transparent dashed;
  user-select: none;
  grid-template-columns: auto 1fr auto;
}
 
.imagecycle[b-ltwd4w8ul8] {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.usericon[b-ltwd4w8ul8] {
  display: flex;
  justify-content: center; 
  align-items: center; 
  height: 35px;
  width: 35px;
  font-size: 3.3rem;
  border: 1px white solid;
  border-radius: 100%;
  overflow: hidden;
}

  .usericon img[b-ltwd4w8ul8] {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
  }

p.fullname[b-ltwd4w8ul8] {
  margin: 0;
  font-size: 1.2rem;
}

p.username[b-ltwd4w8ul8] {
  margin: 0;
  opacity: 0.5;
  font-size: 0.9rem;
}

.remove[b-ltwd4w8ul8] {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
  background: var(--colors-red);
  border-radius: 5px;
  margin: 3px;
  height: 90%;
  cursor: pointer;
  transition: all 0.3s;
}

.remove p[b-ltwd4w8ul8] {
    margin: 0;
}

  .remove:hover[b-ltwd4w8ul8] {
    background: var(--colors-redhover);
  }
/* _content/CheckIT/Components/Layout/Account.razor.rz.scp.css */
.account[b-mvgu1xkxgp] {
    height: 100%;
    color: white;
    display: grid;
    overflow: auto;
}

.left[b-mvgu1xkxgp] {
    display: grid;
    grid-template-rows: 1fr auto;
    height: 100%;
    width: 500px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: auto;
}

content[b-mvgu1xkxgp] {
    display: flex;
    justify-content: center;
    overflow: auto;
}

.center[b-mvgu1xkxgp] {
    width: 400px;
    display: flex;
    flex-direction: column;
    margin-bottom: 10%;
    overflow: auto;
    justify-content: center;
}

footer[b-mvgu1xkxgp] {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

    footer ul[b-mvgu1xkxgp] {
        list-style: none;
        margin: 20px;
        display: flex;
        flex-direction: row;
        gap: 20px;
        padding: 0;
        justify-content: center;
    }

        footer ul li a[b-mvgu1xkxgp], footer ul li a:visited[b-mvgu1xkxgp] {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: underline;
        }

#blazor-error-ui[b-mvgu1xkxgp] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-mvgu1xkxgp] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.certs[b-mvgu1xkxgp] {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

    .certs img[b-mvgu1xkxgp] {
        filter: saturate(0%);
        transition: all 0.3s;
        height: 80px;
        width: 80px;
    }

    .certs img:hover[b-mvgu1xkxgp] {
        filter: saturate(100%);
    }
/* _content/CheckIT/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-rb9reprrys] {
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 10000000;
}

    #blazor-error-ui .dismiss[b-rb9reprrys] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

  #blazor-error-ui .msg[b-rb9reprrys] {
    position: absolute;
    bottom: 10px;
    padding: 10px;
    right: 10px;
    left: 10px;
    border-radius: 5px;
    overflow: hidden;
    background: lightyellow;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 10px black;
  }

  #blazor-error-ui .filter[b-rb9reprrys] {
    position: fixed;
    top: 0;
    bottom: 40px;
    right: 0;
    left: 0;
    backdrop-filter: sepia(90%) blur(1px);
    -webkit-backdrop-filter: sepia(90%) blur(1px);
  }
/* _content/CheckIT/Components/Messenger/Content/File.razor.rz.scp.css */
.msgcontent[b-b3jdjts9fn] {
  display: grid;
  grid-template-columns: auto 1fr;
  border: 1px rgba(255, 255, 255, 0.2) solid;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  grid-gap: 10px;
  padding: 10px;
  margin: 5px;
  cursor: pointer;
}

.fileicon img[b-b3jdjts9fn] {
  height: 20px;
}

.imagepreview img[b-b3jdjts9fn] {
  max-width: 300px;
  max-height: 300px;
  width: 100%;
}

.fileinfo[b-b3jdjts9fn] {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.filesize[b-b3jdjts9fn] {
    font-size: 0.9rem;
}

.fileinfo p[b-b3jdjts9fn] {
  margin: 0;
}

.fileicon[b-b3jdjts9fn] {
  display: flex;
  align-items: center;
}
/* _content/CheckIT/Components/Messenger/Content/Text.razor.rz.scp.css */
.msgcontent[b-v8isuvrv39] {
    margin: 5px; 
}

p[b-v8isuvrv39], [b-v8isuvrv39] p {
  color: white;
  display: inline-block;
  max-width: 100%;
  word-wrap: break-word;
  line-height: 1.6rem;
  white-space: pre-line;
  overflow-wrap: anywhere;
  padding: 0;
  margin: 0;
}

[b-v8isuvrv39] img {
  max-width: 90%;
  max-height: 200px;
  border-radius: 5px;
}

[b-v8isuvrv39] code {
  background: rgba(0, 0,0, 0.5);
  border: 1px rgba(0, 0, 0, 0.6) solid;
  padding: 10px;
  display: block;
  border-radius: 5px;
  font-family: "Lucida Console", "Courier New", monospace;
  margin: 10px 0 0 0;
  word-wrap: break-word;
  line-height: 1.3rem;
  white-space: pre-line;
  color: white;
  display: inline-block;
  margin: 5px;
  max-width: 100%;
  word-wrap: break-word;
  line-height: 1.6rem;
  white-space: pre-line;
}

[b-v8isuvrv39] a {
  text-decoration: underline;
  color: white;
  display: inline-block;
  max-width: 100%;
  white-space: pre-line;
  overflow-wrap: anywhere;
}

[b-v8isuvrv39] blockquote {
  padding: 0 0 0 30px;
  position: relative;
  margin: 0;
  opacity: 0.5;
}

  [b-v8isuvrv39] blockquote p {
    text-align: center;
  }

  [b-v8isuvrv39] blockquote:before {
    position: absolute;
    top: 20px;
    content: '“';
    font-size: 5rem;
    color: white;
    left: 0;
  }
/* _content/CheckIT/Components/Messenger/Conversation.razor.rz.scp.css */
.conversation[b-yg4f0m5fzc] {
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: auto;
  position: relative;
  padding: 0 0 5px 0;
}

h3[b-yg4f0m5fzc] {
  font-size: 1.1rem;
  margin: 5px 0;
  padding: 0;
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.1rem;
}

.conversationinfo[b-yg4f0m5fzc] {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

.basicinfo[b-yg4f0m5fzc] {
  display: flex;
  align-items: center;
}

.head[b-yg4f0m5fzc] {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 5px;
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
}

.top[b-yg4f0m5fzc] {
  margin: 0;
  display: grid;
  color: white;
  gap: 10px;
  grid-template-columns: 1fr auto;
}

.toolbar[b-yg4f0m5fzc] {
  margin: 10px 0;
}

.top .menu[b-yg4f0m5fzc] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
}

.usericon[b-yg4f0m5fzc] {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

  .usericon img[b-yg4f0m5fzc] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    max-height: none;
  }

.imagecycle[b-yg4f0m5fzc] {
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  border: 1px white solid;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.onlineindicator[b-yg4f0m5fzc] {
  position: absolute;
  bottom: 0;
  right: 0;
}

  .onlineindicator::deep .onlinebullet[b-yg4f0m5fzc] {
    height: 10px;
    width: 10px;
  }


.members[b-yg4f0m5fzc] {
  display: flex;
  gap: 5px;
}

.main[b-yg4f0m5fzc] {
  display: flex;
  padding: 5px 5px 0 5px;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
  margin: 0;
}

ul.messages[b-yg4f0m5fzc] {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
}

.bg[b-yg4f0m5fzc] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  filter: blur(30px) brightness(50%);
  z-index: -1;
  overflow: hidden;
}

  .bg img[b-yg4f0m5fzc] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    max-height: none;
  }
/* _content/CheckIT/Components/Messenger/DateSeperator.razor.rz.scp.css */
li[b-7e5fi2ocf7] {
  position: sticky;
  top: 0;
  z-index: 1;
  user-select: none;
  padding: 0 0 5px 0;
}

.dateseperator[b-7e5fi2ocf7] {
  display: flex;
  justify-content: center;
}

p[b-7e5fi2ocf7] {
  color: white;
  margin: 0;
  padding: 5px 10px;
  background: rgb(77, 77, 77);
  border-radius: 5px;
  width: 100px;
  text-align: center;
}
/* _content/CheckIT/Components/Messenger/InputArea.razor.rz.scp.css */

.selectfile[b-xm8myw0ciz] {
  margin: 5px;
  cursor: pointer;
  padding: 5px;
  opacity: 0.6;
  transition: all 0.3s;
  box-sizing: border-box;
  display: block;
}

  .selectfile img[b-xm8myw0ciz] {
    height: 20px;
    width: 20px;
  }

  [b-xm8myw0ciz] input {
      display: none;
  }

  .selectfile:hover[b-xm8myw0ciz] {
    opacity: 1;
  }

.inputarea[b-xm8myw0ciz] {
  display: grid;
  grid-template-rows: auto auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  margin: 0 5px 5px 5px;
  position: relative;
}

.bar[b-xm8myw0ciz] {
  margin: 0;
  border-radius: 0;
  height: 5px;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  color: white;
}

.bar .progressvalue[b-xm8myw0ciz] {
    background: white;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}


.send[b-xm8myw0ciz] {
  display: grid;
  grid-template-columns: auto 1fr auto;
  
}

  .inputarea textarea[b-xm8myw0ciz] {
    background: transparent;
    outline: none;
    padding: 5px 5px 30px 5px;
    border: none;
    color: white;
    font-family: NotoSans, sans-serif;
    font-size: 1.1rem;
    resize: none;
  }
/* _content/CheckIT/Components/Messenger/LoadMoreMessages.razor.rz.scp.css */
li[b-sbdbkb5id5] {
    padding: 0 0 5px 0;
}

.more[b-sbdbkb5id5] {
  display: flex;
  justify-content: center;
}

p[b-sbdbkb5id5] {
  color: white;
  margin: 0;
  padding: 5px 10px;
  background: rgb(77, 77, 77);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

  p:hover[b-sbdbkb5id5] {
    background: rgb(60, 60, 60);
  }
/* _content/CheckIT/Components/Messenger/MessageBubble.razor.rz.scp.css */
li[b-4sd46ou904] {
  padding: 0 0 5px 0;
}

.msg[b-4sd46ou904] {
  display: flex;
  max-width: 100%;
  flex-direction: row;
}

  .msg.thisuser[b-4sd46ou904] {
    flex-direction: row-reverse;
  }

.container[b-4sd46ou904] {
  position: relative;
  margin: 0 0 0 15px;
  animation: scaleOpacityAnimation-b-4sd46ou904 0.5s ease-in-out forwards;
}

.thisuser .container[b-4sd46ou904] {
  margin: 0 15px 0 0;
}

.msgbubble[b-4sd46ou904] {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  position: relative;
  display: inline-block;
  padding: 0 30px 10px 5px;
  max-width: 100%;
  box-sizing: border-box;
}

.thisuser .msgbubble[b-4sd46ou904] {
  background: rgba(0, 0, 0, 0.2);
}

.indicator[b-4sd46ou904] {
  position: relative;
  width: 10px;
  margin: 0 0 0 5px;
}

.thisuser .indicator[b-4sd46ou904] {
  margin: 0 5px 0 0;
}
.container[b-4sd46ou904]::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 10px;
  left: -10px;
  width: 0;
  z-index: 1;
  border: 1px solid white;
  border-top-width: 1px;
  border-top-color: white;
  border-right-width: 1px;
  border-right-color: white;
  border-bottom-width: 1px;
  border-bottom-color: white;
  border-left-width: 1px;
  border-left-color: white;
  border-top-width: 1px;
  border-top-color: white;
  border-right-width: 1px;
  border-right-color: white;
  border-bottom-width: 1px;
  border-bottom-color: white;
  border-left-width: 1px;
  border-left-color: white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.2);
  transform: rotate(180deg);
}

.thisuser .container[b-4sd46ou904]::before {
  left: auto;
  right: -10px;
  border-top-width: 1px;
  border-top-color: white;
  border-right-width: 1px;
  border-right-color: white;
  border-bottom-width: 1px;
  border-bottom-color: white;
  border-left-width: 1px;
  border-left-color: white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.2);
  transform: rotate(0deg);
}

@keyframes scaleOpacityAnimation-b-4sd46ou904 {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

p[b-4sd46ou904] {
  color: white;
  display: inline-block;
  margin: 5px;
  max-width: 100%;
  word-wrap: break-word;
  line-height: 1.6rem;
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.msgfoot[b-4sd46ou904] {
  position: absolute;
  right: 5px;
  bottom: 0;
  display: flex;
  gap: 5px;
}

  p.time[b-4sd46ou904] {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.3;
  }

h4[b-4sd46ou904] {
  color: white;
  font-weight: bold;
  margin: 0;
  padding: 5px 5px 0 5px;
  cursor: pointer;
  display: inline-block;
}

  h4:hover[b-4sd46ou904] {
      text-decoration: underline;
  }

usericon[b-4sd46ou904] {
  position: relative;
  display: flex;
  align-items: center;
  user-select: none;
}

  .usericon img[b-4sd46ou904] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    max-height: none;
  }

.imagecycle[b-4sd46ou904] {
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  margin: 6px 0 0 0;
}

.readcheck[b-4sd46ou904] {
  height: 10px;
  width: 10px;
  opacity: 0.3;
  padding: 2px 0 0 0;
  user-select: none;
}
/* _content/CheckIT/Components/Messenger/ModalConversations.razor.rz.scp.css */
.conversations[b-45tdm70ggy] {
  display: grid;
  grid-template-columns: 250px 1fr;
  background: rgba(0,0,0,0.3);
  overflow: auto;
}

content[b-45tdm70ggy] {
  display: grid;
  margin: 5px 5px 5px 0;
  grid-template-rows: 1fr;
  overflow: auto;
  border-radius: 5px;
  padding: 0;
  background: rgba(0, 0, 0, 0.2);
}

.conversationcontainer[b-45tdm70ggy] {
  overflow: auto;
  display: contents;
}
/* _content/CheckIT/Components/Messenger/SelectConversationPartner.razor.rz.scp.css */
.selectconversationpartner[b-umjcs1xsfy] {
  display: grid;
  grid-template-rows: auto 1fr;
  color: white;
}

h1[b-umjcs1xsfy] {
  font-size: 1.3rem;
  padding: 0;
  font-weight: normal;
  letter-spacing: 0.1rem;
  margin: 10px 0 15px 0;
  text-align: center;
  color: white;
}

.alluser[b-umjcs1xsfy] {
  overflow: auto;
  padding: 10px;
}

ul[b-umjcs1xsfy] {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: row;
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

li[b-umjcs1xsfy] {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  transition: all 0.3s;
}

  li:hover[b-umjcs1xsfy] {
    background: rgba(255, 255, 255, 0.3);
  }

.userinfo[b-umjcs1xsfy] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin: 0 20px 0 0;
  min-width: 150px;

}

h3[b-umjcs1xsfy] {
    margin: 0;
    font-weight: normal;
    font-size: 1.1rem;
}

.userinfo p[b-umjcs1xsfy] {
  margin: 0;
  font-weight: normal;
  font-size: 0.8rem;
}


.usericon[b-umjcs1xsfy] {
  display: flex;
  justify-content: center;
  margin: 5px;
}

.imagecycle[b-umjcs1xsfy] {
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  border: 1px white solid;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

  .imagecycle img[b-umjcs1xsfy] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    max-height: none;
  }
/* _content/CheckIT/Components/Messenger/SystemTextBubble.razor.rz.scp.css */
li[b-3juetbcpns] {
  display: flex;
  justify-content: center;
  padding: 0 0 5px 0;
}

.msg[b-3juetbcpns] {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: rgba(255,255,255,0.3);
  overflow: hidden;
  border-radius: 5px;
  font-size: 1rem;
}

.sender p[b-3juetbcpns] {
    font-weight: bold;
}

.sender p:hover[b-3juetbcpns] {
    text-decoration: underline;
    cursor: pointer;
}

p[b-3juetbcpns] {
  margin: 0;
  padding: 0;
  text-align: center;
}
/* _content/CheckIT/Components/Messenger/widget.razor.rz.scp.css */
ul[b-kfjacb3nf0] {
  list-style: none;
  margin: 0 -5px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

li[b-kfjacb3nf0] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 5px;
    padding: 0 5px;
}

li:hover[b-kfjacb3nf0] {
    background: rgba(255, 255, 255, 0.2);
}

.usericon[b-kfjacb3nf0] {
  position: relative;
  display: flex;
  align-items: center;
}

  .usericon img[b-kfjacb3nf0] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    max-height: none;
  }

.imagecycle[b-kfjacb3nf0] {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  border: 1px white solid;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

p.chatname[b-kfjacb3nf0] {

}
/* _content/CheckIT/Components/Modals/TaskBar.razor.rz.scp.css */
.taskbar[b-6rnaayuh21] {

}

menu[b-6rnaayuh21] {

}

ul[b-6rnaayuh21] {

}

li[b-6rnaayuh21] {

}
/* _content/CheckIT/Components/Pages/Dashboard.razor.rz.scp.css */
.home[b-69efu02v1h] {
    display: grid;
    height: 100%;
    width: 100%;
    position: relative;
}

.left[b-69efu02v1h] {
    margin: 0;
    color: white;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 250px;
    z-index: 1;
}


  .left[b-69efu02v1h]::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    z-index: -1;
  }

.center[b-69efu02v1h] {
  position: absolute;
  top: 0;
  left: 250px;
  right: 0;
  bottom: 0;
}

.windows[b-69efu02v1h] {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
/* _content/CheckIT/Components/Pages/Feedback.razor.rz.scp.css */
.home[b-38ohecfsdx] {
    display: grid;
    height: 100%;
    width: 100%;
    position: relative;
}

.left[b-38ohecfsdx] {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 0px;
    box-shadow: 0 0 10px black;
    border-right: 1px black solid;
    margin: 0;
    color: white;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 250px;
    z-index: 1;
}


  .left[b-38ohecfsdx]::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: -1;
  }

.center[b-38ohecfsdx] {
  position: absolute;
  top: 0;
  left: 250px;
  right: 0;
  bottom: 0;
}

.windows[b-38ohecfsdx] {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
/* _content/CheckIT/Components/Pages/Support.razor.rz.scp.css */
main[b-w3r0gjlh9k] {
  background: #f39c30;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

img[b-w3r0gjlh9k] {
  max-width: 800px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* _content/CheckIT/Components/Policies/ModalPolicies.razor.rz.scp.css */
.policies[b-clcz1f19q1] {
  display: grid;
  overflow: auto;
}
/* _content/CheckIT/Components/Projects/Analytics/SoonEndingTasks.razor.rz.scp.css */
table[b-itkpl54pnn] {
  color: white;
  background: rgba(255, 255,255, 0.1);
  border-radius: 5px;
  width: 100%;
}

td[b-itkpl54pnn] {
  padding: 5px;
}
thead[b-itkpl54pnn] {

}

th[b-itkpl54pnn] {
  text-align: left;
  padding: 5px;
}

tbody[b-itkpl54pnn] {

}

tbody tr[b-itkpl54pnn] {
  cursor: pointer;
  background: transparent;
  transition: all 0.3s;
}

tbody tr:hover[b-itkpl54pnn] {
  background: rgba(255, 255, 255, 0.1);
}
/* _content/CheckIT/Components/Projects/Analytics/SoonTasks.razor.rz.scp.css */
table[b-0vjewugr3a] {
  color: white;
  background: rgba(255, 255,255, 0.1);
  border-radius: 5px;
  width: 100%;
}

td[b-0vjewugr3a] {
  padding: 5px;
}

thead[b-0vjewugr3a] {
}

th[b-0vjewugr3a] {
  text-align: left;
  padding: 5px;
}

tbody[b-0vjewugr3a] {
}

  tbody tr[b-0vjewugr3a] {
    cursor: pointer;
    background: transparent;
    transition: all 0.3s;
  }

    tbody tr:hover[b-0vjewugr3a] {
      background: rgba(255, 255, 255, 0.1);
    }
/* _content/CheckIT/Components/Projects/Assignments/AddAssignment.razor.rz.scp.css */
.addassignment[b-4asnx5z308] {
    display: grid;
    grid-template-rows: 1fr auto;
}

p.icon[b-4asnx5z308] {
    margin: 0;
}

p.text[b-4asnx5z308] {
  padding: 5px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  text-align: center;
  margin: 5px;
  font-size: 0.9rem;
}

.bigicon[b-4asnx5z308] {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
}
/* _content/CheckIT/Components/Projects/Assignments/Assignment.razor.rz.scp.css */
.assignment[b-1o71rn7nhj] {
  display: grid;
  border-radius: 5px;
  overflow: hidden;
}

.editor[b-1o71rn7nhj] {
  display: block;
}

iframe[b-1o71rn7nhj] {
  border: 0;
  height: 100%;
  width: 100%;
}
/* _content/CheckIT/Components/Projects/Assignments/AssignmentBrowser.razor.rz.scp.css */
.assignmentbrowser[b-cto0pf6tqs] {
  background: rgba(255, 255, 255,0.1);
  border-radius: 5px;
  overflow: auto;
  display: grid;
  grid-template-rows: auto 1fr;
}

input[b-cto0pf6tqs] {
  display: inline-block;
  box-sizing: border-box;
  margin: 5px;
  outline: none;
  padding: 7px 15px;
  font-size: 1rem;
  border: 1px rgba(255, 255, 255, 0.3) solid;
  border-radius: 5px;
  transition: all 0.3s;
  background: rgba(255, 255, 255,0.1);
}

  input:hover[b-cto0pf6tqs] {
    border: 1px rgba(255, 255, 255, 0.5) solid;
    background: rgba(255, 255, 255,0.2);
  }

  input:focus[b-cto0pf6tqs] {
    border: 1px rgba(255, 255, 255, 0.5) solid;
    background: rgba(0, 0, 0,0.5);
  }

.menu[b-cto0pf6tqs] {
  height: 100%;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}

.tools[b-cto0pf6tqs] {
    display: grid;
    grid-template-columns: 1fr auto auto;
}
/* _content/CheckIT/Components/Projects/Assignments/Workbench.razor.rz.scp.css */
.workbench[b-i2d700ux5c] {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: rgba(0, 0, 0,0.5);
  border-radius: 5px;
  padding: 5px;
  grid-gap: 5px;
}
/* _content/CheckIT/Components/Projects/Gantt.razor.rz.scp.css */
.gantt-container[b-rm5j3uyc91] {
  display: grid;
  border-radius: 5px;
  padding: 5px;
  position: relative;
  overflow: auto;
  grid-template-rows: auto auto 1fr;
  background: linear-gradient( 330deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100% );
}

.gantt-header[b-rm5j3uyc91] {
  display: grid;
}

.gantt-placeholder[b-rm5j3uyc91] {
  background-color: transparent;
}

.gantt-day[b-rm5j3uyc91] {
  text-align: center;
  padding: 0 0 10px 0;
  color: white;
  font-weight: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  container-type: inline-size;
  height: 1rem;
}

.dayprogress[b-rm5j3uyc91] {
  height: 5px;
  display: grid;
  position: relative;
  border-bottom: 1px rgba(255, 255, 255, 0.5) solid;
}

.dayseperator[b-rm5j3uyc91] {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.dayseperator:last-child[b-rm5j3uyc91] {
  border-right: 0px solid rgba(255, 255, 255, 0.5);
}

.gantt-project-row[b-rm5j3uyc91] {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  color: white;
  grid-gap: 10px;
  margin: 30px 0 0 0;
}

.gantt-project-row:first-child[b-rm5j3uyc91] {
  margin-top: 0;
}

  .gantt-project-row .horizontal-line[b-rm5j3uyc91] {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /*  .gantt-project-row .horizontal-line::before {
      content: '';
      border-top: 1px solid rgba(255, 255, 255, 0.3);
    }*/


  .gantt-project-row p[b-rm5j3uyc91] {
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    margin: 0;
    user-select: none;
    letter-spacing: 0.1rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
  }

    .gantt-project-row p:hover[b-rm5j3uyc91] {
      background: rgba(255, 255, 255, 0.4);
    }

.gantt-task-rows[b-rm5j3uyc91] {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 10px 0;
  padding: 10px 0 0 0;
  overflow: hidden;
}

.gantt-task-row[b-rm5j3uyc91] {
  display: grid;
  grid-template-columns: 1fr;

}

.gantt-task[b-rm5j3uyc91] {
  display: grid;
  border-radius: 5px;
}

.taskbar-container[b-rm5j3uyc91] {
    display: block;
}

.gantt-day .fulldate[b-rm5j3uyc91] {
  display: none;
}

.gantt-day .daydate[b-rm5j3uyc91] {
  display: none;
}

.gantt-day .mth[b-rm5j3uyc91] {
  display: block;
}

.gantt-day p[b-rm5j3uyc91] {
  margin: 0;
  font-size: 0.9rem;
  position: absolute;
}

.timecursor[b-rm5j3uyc91] {
  /*  top: 0;
  position: absolute;
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(255,255,255,0.5) 100%);
  pointer-events: none;
  border-right: 1px white solid;
  bottom: 0;
  left: 5px;*/
  top: 0;
  position: absolute;
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(255,255,255,0.5) 100%);
  pointer-events: none;
  border-right: 1px white solid;
  bottom: 1px;
  left: 5px;
  border-radius: 0 5px 5px 0;
}

  .timecursor[b-rm5j3uyc91]:before {
    /*    content: '';
    position: absolute;
    top: -4px;
    right: -5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;*/
    position: absolute;
    content: '';
    height: 4px;
    width: 4px;
    background: white;
    right: -1px;
    border-radius: 5px;
    box-shadow: 0 0 5px white;
  }

@container (min-width: 20px) {
  .gantt-day .fulldate[b-rm5j3uyc91] {
    display: none;
  }

  .gantt-day .daydate[b-rm5j3uyc91] {
    display: block;
  }

  .gantt-day .mth[b-rm5j3uyc91] {
    display: none;
  }

  @container (min-width: 50px) {
    .gantt-day .daydate[b-rm5j3uyc91] {
      display: block;
    }

    .gantt-day .mth[b-rm5j3uyc91] {
      display: none;
    }
  }

  @container (min-width: 70px) {
    .gantt-day .fulldate[b-rm5j3uyc91] {
      display: block;
    }

    .gantt-day .daydate[b-rm5j3uyc91] {
      display: none;
    }
  }
}
/* _content/CheckIT/Components/Projects/MainMenu.razor.rz.scp.css */
body[b-6kzulxw587] {
}
.category[b-6kzulxw587] {
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.categorytitle[b-6kzulxw587] {
  padding: 0;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 20px 0px;
}

  .categorytitle[b-6kzulxw587]:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    overflow: hidden;
    background: transparent;
    pointer-events: none;
    transition: all 0.2s;
  }


  .categorytitle:hover[b-6kzulxw587]:after, .categorytitle.active[b-6kzulxw587]:after {
    background: rgba(255, 255, 255, 0.2)
  }

  .categorytitle.inactive:active[b-6kzulxw587]:after {
    background: rgba(255, 255, 255, 0.5)
  }

.category.selected > .categorytitle[b-6kzulxw587] {
  background: rgba(255, 255, 255, 0.2);
  cursor: default;
  border-radius: 5px;
  overflow: hidden;
}

  .category.selected > .categorytitle[b-6kzulxw587]:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: white;
  }

.expander[b-6kzulxw587] {
  position: relative;
  padding: 15px 0;
}

.titletext[b-6kzulxw587] {
  padding: 10px;
}

.expandicon[b-6kzulxw587] {
  position: absolute;
  width: 5px;
  height: 5px;
  border-top: 2px solid white;
  border-left: 2px solid white;
  transform: rotate(135deg);
}

h2[b-6kzulxw587] {
  font-size: 1.2rem;
  font-weight: normal;
  margin: 0;
}

ul[b-6kzulxw587] {
  list-style: none;
  margin: 0;
  padding: 0;
}

li[b-6kzulxw587] {
}

.menu[b-6kzulxw587] {
  position: relative;
}
/* _content/CheckIT/Components/Projects/ModalAllProjects.razor.rz.scp.css */
.projects[b-udum1c893d] {
  margin: 5px;
  display: grid;
  grid-template-rows: 1fr;
  border-radius: 5px;
  overflow: hidden;
} 

h2[b-udum1c893d] {
  color: white;
  font-size: 1.2rem;
  text-align: center;
  padding: 10px 0 10px 10px;
  font-weight: normal;
  margin: 0 10px 0 0;
  letter-spacing: 0.1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
/* _content/CheckIT/Components/Projects/ModalAnalytics.razor.rz.scp.css */
.analytics[b-jc67mkdh47] {
  display: grid;
  gap: 5px;
  padding: 0 5px 5px 5px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

  .analytics::deep > *[b-jc67mkdh47] {

  }

.item[b-jc67mkdh47] {
  display: grid;
}
/* _content/CheckIT/Components/Projects/ModalNewProject.razor.rz.scp.css */
.editproject[b-lee56wr392] {
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: auto;
}

.head[b-lee56wr392] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 10px 0;
  position: relative;
}

.menu[b-lee56wr392] {
  position: absolute;
  right: 20px;
  height: 30px;
  width: 30px;
  color: white;
}

.circle[b-lee56wr392] {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  overflow: hidden;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}

  .circle .selectedcolor[b-lee56wr392] {
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    position: absolute;
    z-index: -1;
  }

  .circle img[b-lee56wr392] {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }

section[b-lee56wr392] {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px;
}

  section h3[b-lee56wr392] {
    margin: 0;
    padding: 0;
    color: white;
  }

.main[b-lee56wr392] {
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  padding: 10px 0 0 0;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
}

ul.colors[b-lee56wr392] {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
}

  ul.colors li[b-lee56wr392] {
    height: 20px;
    width: 20px;
    border: 1px transparent solid;
    transition: all 0.2s;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
  }

   ul.colors li:hover[b-lee56wr392] {
      border: 1px white solid;
    }

    ul.colors li span[b-lee56wr392] {
      height: 100%;
      width: 100%;
      display: block;
    }

input.name[b-lee56wr392] {
  padding: 10px;
  border: 1px rgba(255, 255, 255, 0.4) solid;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  color: white;
  width: 100%;
  box-sizing: border-box;
  margin: 10px 0 0 0;
  transition: all 0.3s;
}

  input.name:hover[b-lee56wr392] {
    border: 1px rgba(255, 255, 255, 0.5) solid;
    background: rgba(255, 255, 255, 0.2);
  }

  input.name:focus[b-lee56wr392] {
    border: 1px rgba(255, 255, 255, 0.9) solid;
    background: rgba(255, 255, 255, 0.3);
  }

  input.name[b-lee56wr392]::placeholder {
    font-style: italic;
  }
/* _content/CheckIT/Components/Projects/ModalProject.razor.rz.scp.css */
.project[b-troc5p2j7q] {
  padding: 0 5px 5px 5px;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: auto;
}

h2[b-troc5p2j7q] {
  color: white;
  font-size: 1.2rem;
  text-align: center;
  padding: 10px 0 10px 10px;
  font-weight: normal;
  margin: 0 10px 0 0;
  letter-spacing: 0.1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.filters[b-troc5p2j7q] {
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
  display: grid;
}

  .filters.open[b-troc5p2j7q] {
    max-height: 200px;
  }

.filterswrapper[b-troc5p2j7q] {
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.filter[b-troc5p2j7q] {
  display: flex;
  align-items: center;
}
/* _content/CheckIT/Components/Projects/ModalUserTasks.razor.rz.scp.css */
.usertasks[b-w3t39m0fox] {
  padding: 0 5px 5px 5px;
  display: grid;
  grid-template-rows: auto 1fr;
}

h2[b-w3t39m0fox] {
  color: white;
  font-size: 1.2rem;
  text-align: center;
  padding: 10px 0 10px 10px;
  font-weight: normal;
  margin: 0 10px 0 0;
  letter-spacing: 0.1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.filters[b-w3t39m0fox] {
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
  display: grid;
}

  .filters.open[b-w3t39m0fox] {
    max-height: 200px;
  }

.filterswrapper[b-w3t39m0fox] {
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.filter[b-w3t39m0fox] {
  display: flex;
  align-items: center;
}
/* _content/CheckIT/Components/Projects/ProjectItem.razor.rz.scp.css */
.good span[b-4unyi99e3t] {
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.2);
  display: inline;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.done span[b-4unyi99e3t] {
  padding: 5px 10px;
  background: var(--colors-greenhover);
  display: inline;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.bad span[b-4unyi99e3t] {
  padding: 5px 10px;
  background: var(--colors-yellowhover);
  display: inline;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.important[b-4unyi99e3t] {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

  .important .statusmsg[b-4unyi99e3t] {
    padding: 5px 10px;
    background: var(--colors-redhover);
    border-radius: 5px;
    display: inline-flex;
    gap: 5px;
    animation: importantFlash-b-4unyi99e3t 2s infinite;
    flex-grow: 0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  }

  .important .statusmsg.hidden[b-4unyi99e3t] {
    height: 0;
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 0;
    padding-top: 0px;
    padding-bottom: 0;
  }

@keyframes importantFlash-b-4unyi99e3t
{
  0% {
    background: var(--colors-redhover);
  }

  50% {
    background: var(--colors-red);
  }

  100% {
    background: var(--colors-redhover);
  }
}

.important .statusicon[b-4unyi99e3t] {
  display: flex;
  align-items: center;
  aspect-ratio: 1/1;
  width: 12px;
  justify-content: center;
}

.important .statusname[b-4unyi99e3t] {
  display: flex;
  align-items: center;
}

.important img[b-4unyi99e3t] {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

.important span[b-4unyi99e3t]{
    margin: 0;
}

.progress[b-4unyi99e3t] {
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  margin: 0 10px;
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px white solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.progressbar[b-4unyi99e3t] {
  left: 0;
  top: 0;
  bottom: 0;
  background: white;
  position: absolute;
  transition: all 1s;
}
/* _content/CheckIT/Components/Projects/ProjectOverview.razor.rz.scp.css */
.projectoverview[b-k3ijbzmjnt] {
  display: grid;
}

:root[b-k3ijbzmjnt] {
    --g-bar-stroke-dark: #c6ccd2;
    --g-border-color-dark: #616161;
    --g-bar-color-dark: #616161;
    --g-light-bg-dark: #3e3e3e;
    --g-light-border-color-dark: #3e3e3e;
    --g-text-muted-dark: #eee;
    --g-text-light-dark: #ececec;
    --g-text-color-dark: #f7f7f7;
    --g-blue-dark: #8a8aff;
}

.dark > .gantt-container .gantt[b-k3ijbzmjnt] {
    & .grid-row {
        fill: #252525;
    }

    & .grid-row:nth-child(even)[b-k3ijbzmjnt] {
        fill: var(--g-light-bg-dark);
    }

    & .row-line[b-k3ijbzmjnt] {
        stroke: var(--g-light-border-color-dark);
    }

    & .tick[b-k3ijbzmjnt] {
        stroke: var(--g-border-color-dark);
    }

    & .holiday-highlight[b-k3ijbzmjnt] {
        fill: var(--g-light-bg-dark);
    }

    & .arrow[b-k3ijbzmjnt] {
        stroke: var(--g-text-muted-dark);
    }

    & .bar[b-k3ijbzmjnt] {
        fill: var(--g-bar-color-dark);
        stroke: none;
    }

    & .bar-progress[b-k3ijbzmjnt] {
        fill: var(--g-blue-dark);
    }

    & .bar-invalid[b-k3ijbzmjnt] {
        fill: transparent;
        stroke: var(--g-bar-stroke-dark);

        & ~ .bar-label {
            fill: var(--g-text-light-dark);
        }
    }

    & .bar-label.big[b-k3ijbzmjnt] {
        fill: var(--g-text-light-dark);
    }

    & .bar-wrapper[b-k3ijbzmjnt] {
        &:hover {
            .bar {
                fill: lighten(var(--g-bar-color-dark, 5));
            }

            & .bar-progress[b-k3ijbzmjnt] {
                fill: lighten(var(--g-blue-dark, 5));
            }
        }

        &.active[b-k3ijbzmjnt] {
            .bar {
                fill: lighten(var(--g-bar-color-dark, 5));
            }

            & .bar-progress[b-k3ijbzmjnt] {
                fill: lighten(var(--g-blue-dark, 5));
            }
        }
    }
}

.dark > .gantt-container[b-k3ijbzmjnt] {
    & .grid-header {
        background-color: #252525;
    }

    & .popup-wrapper[b-k3ijbzmjnt] {
        background-color: #333;

        & .title {
            border-color: lighten(var(--g-blue-dark, 5));
        }
    }
}
/* _content/CheckIT/Components/Projects/TaskBar.razor.rz.scp.css */
.task-bar[b-dmotm1br41] {
  display: block;
  container-type: inline-size;
  container-name: taskbar-container;
  position: relative;
}

.bar[b-dmotm1br41] {
  position: relative;
  overflow: hidden;
  background-color: #5b8def;
  border-radius: 5px;
  margin: 2px;
  box-sizing: border-box;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: 1fr auto auto;
  height: 25px;
  cursor: pointer;
  transition: all 0.3s;
}

.dot[b-dmotm1br41] {
    display: none;
    position: relative;
    height: 25px;
}

.dotitem[b-dmotm1br41] {
  position: absolute;
  top: 5px;
  bottom: 5px;
  aspect-ratio: 1/1;
  background-color: #5b8def;
  border-radius: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  cursor: pointer;
}

.main[b-dmotm1br41] {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0 0 0 5px;
}

p.taskname[b-dmotm1br41] {
  margin: 0;
  font-size: 0.9rem;
  color: white;
  user-select: none;
  text-wrap: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.statusicon[b-dmotm1br41] {
  width: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 5px 0 0;
}

.statusicon img[b-dmotm1br41] {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

.progress[b-dmotm1br41] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

  .progress .progress-bar[b-dmotm1br41] {
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgb(255, 255, 255) 100%);
    border-radius: 5px;
    width: 0; /* This will be set dynamically */
    transition: width 0.3s ease-in-out;
  }

/*@container (min-width: 100px) {
  .users {
    display: flex;
  }
}
*/

@container taskbar-container (max-width: 20px) {
  .bar[b-dmotm1br41] {
    display: none;
    pointer-events: none;
  }

  .dot[b-dmotm1br41] {
      display: inherit;
      pointer-events: all;
  }
}
/* _content/CheckIT/Components/Projects/TaskCards/TaskCard.razor.rz.scp.css */
.taskcard[b-nca2hj1id2] {
  display: grid;
  grid-template-columns: auto 1fr auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 5px;
}

.cardcontent p[b-nca2hj1id2] {
    margin: 0;
}

.cardcontent[b-nca2hj1id2] {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.editcard[b-nca2hj1id2] {
  width: 30px;
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.checkboxarea[b-nca2hj1id2] {
  display: flex;
  align-items: center;
  margin-left: 3px;
}
/* _content/CheckIT/Components/Projects/TaskCards/TaskCardList.razor.rz.scp.css */
ul[b-xy93aczr4w] {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0;
}

.taskcards[b-xy93aczr4w] {
  overflow: auto;
  margin: 5px 5px 5px 0;
}
/* _content/CheckIT/Components/Projects/TaskCardTemplates/ModalEditTemplate.razor.rz.scp.css */
.stmodal[b-iustodcnmz] {
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: white;
  overflow: auto;
}

.head[b-iustodcnmz] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 10px 0;
  position: relative;
}

.menu[b-iustodcnmz] {
  position: absolute;
  right: 20px;
  height: 30px;
  width: 30px;
  color: white;
}

.headicon[b-iustodcnmz] {
  position: relative;
}
 
.circle[b-iustodcnmz] {
  padding: 20px;
  height: 50px;
  width: 50px;
  border-radius: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

  .circle img[b-iustodcnmz] {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }

.main[b-iustodcnmz] {
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  padding: 0;
  flex-direction: column;
  gap: 5px;
  overflow: auto;
  padding: 10px;
}

.circle p.icon[b-iustodcnmz] {
  margin: 0;
  font-size: 4rem;
}

.taskcard[b-iustodcnmz] {
  display: grid;
  grid-template-columns: 1fr auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 5px;
}

.cardcontent p[b-iustodcnmz] {
  margin: 0;
}

.cardcontent[b-iustodcnmz] {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.editcard[b-iustodcnmz] {
  width: 30px;
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.checkboxarea[b-iustodcnmz] {
  display: flex;
  align-items: center;
  margin-left: 3px;
}
/* _content/CheckIT/Components/Projects/TaskCardTemplates/ModalSelectTemplate.razor.rz.scp.css */
.templateselector[b-z3j06bkpkn] {
  display: grid;
  grid-template-rows: 1fr auto;
}

.main[b-z3j06bkpkn] {
    padding: 10px;
    display: grid;
}
/* _content/CheckIT/Components/Projects/TaskCardTemplates/TemplateList.razor.rz.scp.css */
.selector[b-izlcckc5so] {
  display: flex;
  align-items: center;
}
/* _content/CheckIT/Components/Projects/TaskStatus/Status.razor.rz.scp.css */
.taskstatus[b-iysdhqnp1y] {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 10px;
  height: 25px;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px transparent solid;
}

.taskstatus:hover[b-iysdhqnp1y] {
  background: rgba(255, 255, 255, 0.3);
}

  .taskstatus.selected[b-iysdhqnp1y] {
    border: 1px rgba(255, 255, 255, 0.8) solid;
    background: rgba(255, 255, 255, 0.2);
  }

.statusicon[b-iysdhqnp1y] {
  display: flex;
  align-items: center;
  aspect-ratio: 1/1;
  height: 100%;
}

p[b-iysdhqnp1y] {
    margin: 0;
}

img[b-iysdhqnp1y] {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

.cardcontent[b-iysdhqnp1y] {
  display: flex;
  align-items: center;
}
/* _content/CheckIT/Components/Projects/TaskStatus/StatusList.razor.rz.scp.css */
ul[b-9kok087cm5] {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}

li[b-9kok087cm5] {
    margin: 0;
    padding: 0;
    display: contents;
}
/* _content/CheckIT/Components/Projects/Tasks/ModalNewTask.razor.rz.scp.css */
.newtask[b-l2ran9d6y6] {
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: auto;
}

.head[b-l2ran9d6y6] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 10px 0;
  position: relative;
}

.menu[b-l2ran9d6y6] {
  position: absolute;
  right: 20px;
  height: 30px;
  width: 30px;
  color: white;
}

.circle[b-l2ran9d6y6] {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  overflow: hidden;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}

  .circle .selectedcolor[b-l2ran9d6y6] {
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    position: absolute;
    z-index: -1;
  }

  .circle img[b-l2ran9d6y6] {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }

.main[b-l2ran9d6y6] {
  display: grid;
  background: rgba(0,0,0,0.3);
  overflow: auto;
  padding: 0 20px;
}


h1[b-l2ran9d6y6] {
  font-size: 1.3rem;
  padding: 0;
  font-weight: normal;
  letter-spacing: 0.1rem;
  margin: 10px 0 15px 0;
  text-align: center;
  color: white;
}

input.name[b-l2ran9d6y6] {
  padding: 10px;
  border: 1px rgba(255, 255, 255, 0.4) solid;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  color: white;
  width: 100%;
  box-sizing: border-box;
  margin: 10px 0 0 0;
  transition: all 0.3s;
}

  input.name:hover[b-l2ran9d6y6] {
    border: 1px rgba(255, 255, 255, 0.5) solid;
    background: rgba(255, 255, 255, 0.2);
  }

  input.name:focus[b-l2ran9d6y6] {
    border: 1px rgba(255, 255, 255, 0.9) solid;
    background: rgba(255, 255, 255, 0.3);
  }

  input.name[b-l2ran9d6y6]::placeholder {
    font-style: italic;
  }
/* _content/CheckIT/Components/Projects/Tasks/ModalTask.razor.rz.scp.css */
.editproject[b-p01njh78o9] {
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: auto;
}

.head[b-p01njh78o9] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 10px 0;
  position: relative;
}

.menu[b-p01njh78o9] {
  position: absolute;
  right: 20px;
  height: 30px;
  width: 30px;
  color: white;
}

content[b-p01njh78o9] {
  overflow: auto;
  display: grid;
  grid-template-rows: auto 1fr;
}

.circle[b-p01njh78o9] {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  overflow: hidden;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}

  .circle .selectedcolor[b-p01njh78o9] {
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    position: absolute;
    z-index: -1;
  }

  .circle img[b-p01njh78o9] {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }

.modules[b-p01njh78o9] {
  display: grid;
  grid-gap: 5px;
  padding: 5px;
  grid-template-columns: repeat(6, 1fr);
}

aside[b-p01njh78o9] {
  display: flex;
  flex-direction: column;
  gap: 5px;
  grid-column: span 2;
}
/* _content/CheckIT/Components/Projects/Tasks/ModuleCollaborativeDocument.razor.rz.scp.css */
.createdocument[b-wi1imnn2j2] {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 10px;
}

.document[b-wi1imnn2j2] {
  margin: 0;
  display: grid;
  overflow: auto;
}
/* _content/CheckIT/Components/Projects/Tasks/ModuleDesign.razor.rz.scp.css */
ul.colors[b-x660oqt1bf] {
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
}

  ul.colors li[b-x660oqt1bf] {
    height: 20px;
    width: 20px;
    border: 1px transparent solid;
    transition: all 0.2s;
    padding: 2px;
    border-radius: 5px;
    cursor: pointer;
  }

    ul.colors li:hover[b-x660oqt1bf], ul.colors li.selected[b-x660oqt1bf] {
      border: 1px white solid;
    }

    ul.colors li span[b-x660oqt1bf] {
      height: 100%;
      width: 100%;
      display: block;
    }
/* _content/CheckIT/Components/Projects/Tasks/ModuleGeneral.razor.rz.scp.css */
.general[b-muz8vpirh9] {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}

h3[b-muz8vpirh9] {
    margin: 0;
    font-size: 1rem;
    font-weight: normal;
}

.main[b-muz8vpirh9] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: auto;
  grid-gap: 10px;
}

.left[b-muz8vpirh9], .right[b-muz8vpirh9] {
  display: flex;
  padding: 10px 0 0 0;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
}

input[b-muz8vpirh9] {
    font-size: 1rem;
}

input.name[b-muz8vpirh9] {
  padding: 10px;
  border: 1px rgba(255, 255, 255, 0.4) solid;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  color: white;
  width: 100%;
  box-sizing: border-box;
  margin: 10px 0 0 0;
  transition: all 0.3s;
}

  input.name:hover[b-muz8vpirh9] {
    border: 1px rgba(255, 255, 255, 0.5) solid;
    background: rgba(255, 255, 255, 0.2);
  }

  input.name:focus[b-muz8vpirh9] {
    border: 1px rgba(255, 255, 255, 0.9) solid;
    background: rgba(255, 255, 255, 0.3);
  }

  input.name[b-muz8vpirh9]::placeholder {
    font-style: italic;
  }

.users[b-muz8vpirh9] {
  padding: 10px 0 0 0;
}

.btn[b-muz8vpirh9] {
  text-align: center;
  grid-template-columns: 1fr;
  padding: 10px;
}

  .btn:hover[b-muz8vpirh9] {
    background: rgba(255, 255, 255, 0.5);
  }
/* _content/CheckIT/Components/Projects/Tasks/ModuleMembers.razor.rz.scp.css */
/* _content/CheckIT/Components/Projects/Tasks/ModuleMessenger.razor.rz.scp.css */
.nogroup[b-p9o3l27cpy] {
  border: 1px rgba(255, 255, 255, 0.5) solid;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

  .nogroup p[b-p9o3l27cpy], .nomember p[b-p9o3l27cpy] {
    margin: 0;
    padding: 0;
  }

.center[b-p9o3l27cpy] {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.nomember[b-p9o3l27cpy] {
  border: 1px rgba(255, 255, 255, 0.5) solid;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 5px;
}

.messenger[b-p9o3l27cpy] {
    display: contents;
}

.enablemessenger[b-p9o3l27cpy] {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 10px;
}

.conversation[b-p9o3l27cpy] {
    display: grid;
    overflow: hidden;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
}
/* _content/CheckIT/Components/Projects/Tasks/ModuleTaskCards.razor.rz.scp.css */
.taskcards[b-o4r8l0jsyd] {
  overflow: auto;
  display: grid;
  grid-template-rows: auto 1fr;
}
/* _content/CheckIT/Components/Projects/TaskTooltip.razor.rz.scp.css */
.tooltip-container[b-mym8xa1hrh] {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.center[b-mym8xa1hrh] {
  position: fixed;
  z-index: 1000;
  display: flex;
  justify-content: center;
}

.tooltip-box[b-mym8xa1hrh] {
  color: white;
  padding: 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 300px;
  margin-top: 20px;
  animation: ShowTooltip-b-mym8xa1hrh 1.5s;
}

.tooltip-box .status .cardcontent[b-mym8xa1hrh] {
  display: flex;
  align-items: center;
}

.tooltip-box h3[b-mym8xa1hrh] {
  font-size: 1.2rem;
  margin: 0 0 5px 0;
}

.tooltip-box .startend[b-mym8xa1hrh] {
  display: flex;
  gap: 5px;
  font-size: 0.9rem;
  margin: 0 0 5px 0;
}

.tooltip-box .status[b-mym8xa1hrh] {
  display: flex;
  border-radius: 5px;
  padding: 10px;
  height: 25px;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.2);
}


.tooltip-box .statusicon[b-mym8xa1hrh] {
  display: flex;
  align-items: center;
  aspect-ratio: 1/1;
  height: 100%;
}

.tooltip-box p[b-mym8xa1hrh] {
  margin: 0;
}

.tooltip-box img[b-mym8xa1hrh] {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

@keyframes ShowTooltip-b-mym8xa1hrh {
  0% {
    opacity: 0;
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

ul.users[b-mym8xa1hrh] {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
  padding: 0;
  gap: 5px;
  display: flex;
}

.users li[b-mym8xa1hrh] {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 5px 10px 5px 5px;
}

.username[b-mym8xa1hrh] {
  display: flex;
  align-items: center;
}
/* _content/CheckIT/Components/Projects/Toolbar.razor.rz.scp.css */
/* _content/CheckIT/Components/Projects/Widget.razor.rz.scp.css */
.chart[b-nvywbophag] {
    margin-top: 10px;
}
/* _content/CheckIT/Components/Resources/Attribute.razor.rz.scp.css */
a[b-97ukz078lj] {
  color: white;
}
/* _content/CheckIT/Components/Resources/CategoriesResourceTypeMenu.razor.rz.scp.css */
.resourcetypes[b-spvxy8zu8t] {
  position: absolute;
  left: 10px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  padding: 0;
  min-width: 250px;
  top: -20px;
  cursor: default;
  max-height: 500px;
  display: grid;
  grid-template-rows: auto 1fr;
  z-index: 1000000;
  animation: ShowMenu-b-spvxy8zu8t 0.3s ease-in;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

  .resourcetypes[b-spvxy8zu8t]::before {
    border-radius: 5px;
  }

.search[b-spvxy8zu8t] {
  padding: 5px;
}


.center[b-spvxy8zu8t] {
  overflow: auto;
  padding: 0 5px 5px 5px;
}

[b-spvxy8zu8t] aside {
  padding: 0;
  margin: 0;
}

@keyframes ShowMenu-b-spvxy8zu8t {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1
  }
}
/* _content/CheckIT/Components/Resources/CategoriesRoot.razor.rz.scp.css */
.categoryItem[b-8l8c0o68iz] {
  display: grid;
  grid-template-columns: 1fr auto;

}

.menu[b-8l8c0o68iz] {
  position: relative;
}
/* _content/CheckIT/Components/Resources/DataTypes/Location.razor.rz.scp.css */
.location[b-nzmy146pbx] {
  transition: all 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.content[b-nzmy146pbx] {
  display: flex;
  flex-direction: column;
}

.top[b-nzmy146pbx] {
  cursor: pointer;
}

.map[b-nzmy146pbx] {
  position: relative;
  height: 250px;
  border-radius: 5px;
  overflow: hidden;
}

.loading[b-nzmy146pbx] {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}

  .loading[b-nzmy146pbx]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(251,63,63,0) 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255,0.1) 80%, rgba(252,70,107,0) 100%);
    animation: gradient-b-nzmy146pbx 4s infinite ease-in-out;
    animation-delay: 0s;
    z-index: 1;
  }

.powerdby[b-nzmy146pbx] {
  margin: 0;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.8rem;
}

.pbbox[b-nzmy146pbx] {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 5px;
  border-radius: 0 5px 0 0;
  position: absolute;
  top: 0;
  right: 0;
}

.powerdby a[b-nzmy146pbx] {
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.8rem;
  text-decoration: underline;
}

.mapplaceholder[b-nzmy146pbx] {
  background-image: url('/images/icons/map-location-dot-solid.svg');
  background-size: 50px;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  opacity: 0.5;
  background-position: center;
}

img[b-nzmy146pbx] {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.attvalue[b-nzmy146pbx] {
  padding: 0;
  display: grid;
}

  .attvalue.highlightable[b-nzmy146pbx]::before {
    left: 2px;
    top: 3px;
    right: 3px;
    bottom: 3px;
  }

@keyframes gradient-b-nzmy146pbx {
  0% {
    left: -100px;
  }

  50% {
    left: calc(100% + 100px);
  }

  100% {
    left: calc(100% + 100px);
  }
}
/* _content/CheckIT/Components/Resources/DataTypes/Password.razor.rz.scp.css */
.hideicon[b-acg7cfpu4n] {
  height: 15px;
  width: 15px;
  cursor: pointer;
  animation: show-b-acg7cfpu4n 0.3s ease-out forwards;
}

.password[b-acg7cfpu4n] {
  display: flex;
  align-items: center;
}

p[b-acg7cfpu4n] {
  animation: blurIn-b-acg7cfpu4n 7s ease-out forwards;
}

@keyframes show-b-acg7cfpu4n {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


@keyframes blurIn-b-acg7cfpu4n {
  0% {
    filter: blur(50px);
    opacity: 0;
  }

  10% {
    filter: blur(0);
    opacity: 1;
  }

  90% {
    filter: blur(0);
    opacity: 1;
  }

  100% {
    filter: blur(50px);
    opacity: 0;
  }
}
/* _content/CheckIT/Components/Resources/History.razor.rz.scp.css */
.history[b-xrvw8k8dir] {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: auto;
}

.tlwrapper[b-xrvw8k8dir] {
  overflow: auto;
  container-type: inline-size;
}

.timeline[b-xrvw8k8dir] {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

  .timeline .linetop[b-xrvw8k8dir] {
    position: absolute;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    top: 83px;
    bottom: 0;
    left: 0;
    margin-left: -3px;
    border-radius: 5px 5px 0 0;
  }

  .timeline .linebottom[b-xrvw8k8dir] {
    position: absolute;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    top: 0;
    height: 50px;
    left: 0;
    margin-left: -3px;
    border-radius: 0 0 5px 5px;
  }

  .timeline .left .linetop[b-xrvw8k8dir] {
    right: 0;
    left: auto;
    margin-left: 0;
    margin-right: 1px;
  }

  .timeline .left .linebottom[b-xrvw8k8dir] {
    right: 0;
    left: auto;
    margin-left: 0;
    margin-right: 1px;
  }

.container[b-xrvw8k8dir] {
  padding: 5px 25px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
}

  .container[b-xrvw8k8dir]::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    right: -6px;
    background-color: rgba(255, 255, 255, 0.5);
    top: 57px;
    border-radius: 50%;
    z-index: 1;
    backdrop-filter: blur(10px);
    border: 1px rgba(255, 255, 255, 0.5) solid;
  }

.left[b-xrvw8k8dir] {
  left: 0;
}

.right[b-xrvw8k8dir] {
  left: 50%;
}

.left[b-xrvw8k8dir]::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 55px;
  width: 0;
  z-index: 1;
  right: 15px;
  border: 1px solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.2);
}

.right[b-xrvw8k8dir]::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 55px;
  width: 0;
  z-index: 1;
  left: 15px;
  border: 1px solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent rgba(255, 255, 255, 0.2) transparent transparent;
}

.right[b-xrvw8k8dir]::after {
  left: -10px;
}

.content[b-xrvw8k8dir] {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  border-radius: 6px;
}

h4[b-xrvw8k8dir] {
  margin: 5px 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}

h3[b-xrvw8k8dir] {
  margin: 0;
  padding: 0 0 10px 0;
  font-size: 1rem;
  border-bottom: 1px rgba(255,255,255,0.2) solid;
  font-weight: normal;
}

.username[b-xrvw8k8dir] {
  text-decoration: underline;
  cursor: pointer;
}

.change[b-xrvw8k8dir] {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 10px 0 0 0;
}

  .change p[b-xrvw8k8dir] {
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin: 0;
    position: relative;
    text-wrap: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

    .change p.oldvalue[b-xrvw8k8dir], .change p.newvalue[b-xrvw8k8dir] {
      min-height: 1rem;
      margin-left: 17px;
    }

    .change p.oldvalue[b-xrvw8k8dir] {
      background: rgba(255, 0, 0, 0.2);
    }

      .change p.oldvalue[b-xrvw8k8dir]::before {
        content: "-";
        padding: 3px 0;
        margin-left: -11px;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        position: absolute;
        left: -5px;
        top: -2px;
        right: -5px;
        bottom: -2px;
      }

    .change p.newvalue[b-xrvw8k8dir] {
      background: rgba(0, 255, 0, 0.2);
    }

      .change p.newvalue[b-xrvw8k8dir]::before {
        content: "+";
        padding: 4px 0;
        margin-left: -12px;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        position: absolute;
        left: -5px;
        top: -2px;
        right: -5px;
        bottom: -2px;
      }


  .change .title[b-xrvw8k8dir] {
    display: flex;
    gap: 5px;
  }


  .change .compareicon[b-xrvw8k8dir] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
  }

    .change .compareicon img[b-xrvw8k8dir] {
      width: 100%;
      height: 100%;
      object-fit: cover;
      max-width: none;
      max-height: none;
      border-radius: 5px;
      box-sizing: border-box;
    }

      .change .compareicon img.oldvalue[b-xrvw8k8dir] {
        filter: grayscale(100%) blur(1px);
        border: 2px red solid;
      }

      .change .compareicon img.newvalue[b-xrvw8k8dir] {
        border: 2px green solid;
      }

  .change .relations .newvalue[b-xrvw8k8dir], .change .relations .oldvalue[b-xrvw8k8dir] {
    padding: 10px;
  }

[b-xrvw8k8dir] .plugin-comments p.oldvalue p, [b-xrvw8k8dir] .plugin-comments p.newvalue p {
  margin: 0;
}

@container (width < 400px) {
  .timeline[b-xrvw8k8dir]::after {
    left: 28px;
  }

  .container[b-xrvw8k8dir] {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

    .container[b-xrvw8k8dir]::before {
      left: 60px;
      border: medium solid transparent;
      border-width: 10px 10px 10px 0;
      border-color: transparent rgba(255, 255, 255, 0.2) transparent transparent;
    }

  .left[b-xrvw8k8dir]::after, .right[b-xrvw8k8dir]::after {
    left: 18px;
  }

  .right[b-xrvw8k8dir] {
    left: 0%;
  }
}
/* _content/CheckIT/Components/Resources/NavBar.razor.rz.scp.css */
.nvabar[b-9znqhtuhlb] {
  display: flex;
}

.navbar:hover[b-9znqhtuhlb] {

}

.navitem[b-9znqhtuhlb] {
  padding: 5px 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

  .navitem:hover[b-9znqhtuhlb] {
    background: rgba(255, 255, 255, 0.2);
  }
  
  .noclick[b-9znqhtuhlb] {
    cursor: default;
  }

.noclick:hover[b-9znqhtuhlb] {
  background: rgba(255, 255, 255, 0);
}

.seperator[b-9znqhtuhlb] {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 5px;
  padding: 0 10px;
  cursor: pointer;
}

  .seperator:hover[b-9znqhtuhlb] {
    background: rgba(255, 255, 255, 0.2);
  }

.seperatoricon[b-9znqhtuhlb] {
  position: relative;
  width: 10px;
  height: 10px;
}

  .seperatoricon[b-9znqhtuhlb]::before {
    position: absolute;
    width: 0.4rem;
    height: 0.4rem;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transform: rotate(135deg);
    top: 1px;
    left: 0px;
    content: '';
  }


p[b-9znqhtuhlb] {
  margin: 0;
  padding: 0;
  max-width: 200px;
  overflow: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}
/* _content/CheckIT/Components/Resources/NavBarPathItem.razor.rz.scp.css */
.navitem[b-rz099ow6nz] {
  padding: 5px 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

  .navitem:hover[b-rz099ow6nz] {
    background: rgba(255, 255, 255, 0.2);
  }

  .navitem.deleted[b-rz099ow6nz] {
    color: var(--colors-redhover);
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0);
  }

.noclick[b-rz099ow6nz] {
  cursor: default;
}

  .noclick:hover[b-rz099ow6nz] {
    background: rgba(255, 255, 255, 0);
  }

.seperator[b-rz099ow6nz] {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  border-radius: 5px;
  padding: 0 10px;
  cursor: pointer;
}

  .seperator:hover[b-rz099ow6nz] {
    background: rgba(255, 255, 255, 0.2);
  }

.seperatoricon[b-rz099ow6nz] {
  position: relative;
  width: 10px;
  height: 10px;
}

  .seperatoricon[b-rz099ow6nz]::before {
    position: absolute;
    width: 0.4rem;
    height: 0.4rem;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transform: rotate(135deg);
    top: 1px;
    left: 0px;
    content: '';
  }


p[b-rz099ow6nz] {
  margin: 0;
  padding: 0;
  max-width: 200px;
  overflow: hidden;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}
/* _content/CheckIT/Components/Resources/RelationTable.razor.rz.scp.css */
.relationtable[b-tln0475u1k] {
    display: grid;
    overflow: auto;
}
/* _content/CheckIT/Components/Resources/Resource.razor.rz.scp.css */
.resourceview[b-yrkbjtf7f8] {
  overflow: auto;
  display: contents;
}
/* _content/CheckIT/Components/Resources/ResourceType.razor.rz.scp.css */
.iconwrapper[b-hfrsoawnpl] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.iconwrapper[b-hfrsoawnpl] >  * {
    height: 25px;
}

.status[b-hfrsoawnpl] {
  margin: 0;
  padding: 5px;
  text-wrap: nowrap;
  text-wrap-mode: nowrap;
  text-wrap-mode: nowrap;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
}

  .status > p[b-hfrsoawnpl] {
    padding: 5px 10px;
    display: inline;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    margin: 0;
  }

  .status.bad > p[b-hfrsoawnpl] {
    background: var(--colors-redhover);
  }

  .status.good > p[b-hfrsoawnpl] {
    background: var(--colors-greenhover);
  }

  .status.warning > p[b-hfrsoawnpl] {
    background: var(--colors-yellowhover);
  }

.selector[b-hfrsoawnpl] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 0 5px;
}

p.archived[b-hfrsoawnpl] {
  color: rgb(200, 200, 200);
  text-decoration: line-through;
}
/* _content/CheckIT/Components/Resources/View.razor.rz.scp.css */
.view[b-0ai9oz3omm] {
  display: grid;
  overflow: auto;
  padding: 5px;
  grid-template-rows: auto 1fr;
  gap: 15px;
}
/* _content/CheckIT/Components/ServiceTool/AllModules.razor.rz.scp.css */
.agent[b-hwgxw554c1] {
  display: flex;
  overflow: auto;
  padding: 5px;
  gap: 5px;
  flex-direction: column;
}
/* _content/CheckIT/Components/ServiceTool/DataSheetTable.razor.rz.scp.css */
.datasheet[b-cbjd54tg2e] {

}

table[b-cbjd54tg2e] {
    border-spacing: 0 5px;
    width: 100%;
}

h4[b-cbjd54tg2e] {
    margin: 10px 0;
}

[b-cbjd54tg2e] td {
    padding: 10px 20px;
    border: 0px rgba(255,255,255,0.3) solid;
    background: rgba(255, 255, 255, 0.1);
}

  [b-cbjd54tg2e] td:first-child {
    border-radius: 5px 0 0 5px;
    border-right: 0;
    color: rgba(255, 255, 255, 0.5);
  }

  [b-cbjd54tg2e] td:last-child {
    border-radius: 0 5px 5px 0;
    text-align: right;
  }

[b-cbjd54tg2e] tr {
    border: 1px rgba(255,255,255,0.3) solid;
}
/* _content/CheckIT/Components/ServiceTool/Menus/AutoConfigs.razor.rz.scp.css */
.stmodule[b-e0okhzmu5u] {
  display: contents;
}
/* _content/CheckIT/Components/ServiceTool/Menus/Banned.razor.rz.scp.css */
.stmodule[b-6f0t9h0jby] {
  display: contents;
}
/* _content/CheckIT/Components/ServiceTool/Menus/Connected.razor.rz.scp.css */
.stmodule[b-yl3rqrn9xp] {
    display: contents;
}

[b-yl3rqrn9xp] .indicator {
  display: flex;
  align-items: center;
  justify-content: center;
}

[b-yl3rqrn9xp] .offlienbullet {
  height: 10px;
  width: 10px;
  position: relative;
  border-radius: 100%;
  background: var(--colors-redhover);
}

[b-yl3rqrn9xp] .onlinebullet {
  height: 10px;
  width: 10px;
  position: relative;
  border-radius: 100%;
  background: var(--colors-greenhover);
}

  [b-yl3rqrn9xp] .onlinebullet::after {
    content: '';
    height: 10px;
    width: 10px;
    position: absolute;
    border-radius: 100%;
    opacity: 0.5;
    background: var(--colors-greenhover);
    animation: pulse-b-yl3rqrn9xp 2s infinite;
  }

@keyframes pulse-b-yl3rqrn9xp {
  0% {
    transform: scale(1);
  }

  70% {
    opacity: 0.8;
    transform: scale(2);
  }

  100% {
    opacity: 0;
    transform: scale(2.1);
  }
}
/* _content/CheckIT/Components/ServiceTool/Menus/Polling.razor.rz.scp.css */
.stmodule[b-lqgy3bmvso] {
  display: contents;
}
/* _content/CheckIT/Components/ServiceTool/Menus/Traffic.razor.rz.scp.css */
.stmodule[b-j91z64a947] {
  display: contents;
}
/* _content/CheckIT/Components/ServiceTool/ModalAgent.razor.rz.scp.css */
/* _content/CheckIT/Components/ServiceTool/ModalCustomeTool.razor.rz.scp.css */
.tool[b-063kpk9lts] {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.head[b-063kpk9lts] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 10px 0;
  position: relative;
}

.menu[b-063kpk9lts] {
  position: absolute;
  right: 20px;
  height: 30px;
  width: 30px;
  color: white;
}

.circle[b-063kpk9lts] {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  overflow: hidden;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}

  .circle .selectedcolor[b-063kpk9lts] {
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
    position: absolute;
    z-index: -1;
  }

  .circle img[b-063kpk9lts] {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }

section[b-063kpk9lts] {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 10px;
}

  section h3[b-063kpk9lts] {
    margin: 0 0 10px 0;
    padding: 0;
    color: white;
  }

.main[b-063kpk9lts] {
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  padding: 10px 0 0 0;
  flex-direction: column;
  gap: 10px;
  overflow: auto;
}


input[b-063kpk9lts] {
  padding: 10px;
  border: 1px rgba(255, 255, 255, 0.4) solid;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  color: white;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  transition: all 0.3s;
}

  input:hover[b-063kpk9lts] {
    border: 1px rgba(255, 255, 255, 0.5) solid;
    background: rgba(255, 255, 255, 0.2);
  }

  input:focus[b-063kpk9lts] {
    border: 1px rgba(255, 255, 255, 0.9) solid;
    background: rgba(255, 255, 255, 0.3);
  }

  input[b-063kpk9lts]::placeholder {
    font-style: italic;
  }


.downloads[b-063kpk9lts] {
  display: flex;
  gap: 5px;
  flex-direction: column;
  margin: 10px 0;
}

  .downloads a[b-063kpk9lts], .downloads p[b-063kpk9lts], .downloads a:visited[b-063kpk9lts] {
    gap: 10px;
    margin: 0;
    text-decoration: none;
  }

  .downloads img[b-063kpk9lts] {
    height: 20px;
  }

  .downloads span[b-063kpk9lts] {
    display: flex;
    align-items: center;
  }

  .downloads a:hover[b-063kpk9lts], .downloads p:hover[b-063kpk9lts] {
      background: rgba(255, 255, 255, 0.4);
  }

.pin[b-063kpk9lts] {
  color: white;
  margin: 0 auto;
  text-align: center;
  padding: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  font-size: 1.2rem;
  letter-spacing: 1rem;
  user-select: all;
}

.validity[b-063kpk9lts] {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  color: white;
  box-sizing: border-box;
  gap: 5px;
} 

  .validity .btn[b-063kpk9lts] {
    margin: 0;
    display: flex;
    align-items: center;
    user-select: none;
  }

  .validity input[b-063kpk9lts] {
    text-align: center;
  }
/* _content/CheckIT/Components/ServiceTool/ModalServiceTool.razor.rz.scp.css */
.servicetool[b-tpleakjdr6] {
  display: grid;
  grid-template-columns: 250px 1fr;
  background: rgba(0,0,0,0.3);
  overflow: auto;
}

content[b-tpleakjdr6] {
  display: grid;
  margin: 5px 5px 5px 0;
  grid-template-rows: auto 1fr;
  overflow: auto;
  border-radius: 5px;
  padding: 5px;
}

h1[b-tpleakjdr6] {
  font-size: 1.3rem;
  padding: 0;
  font-weight: normal;
  letter-spacing: 0.1rem;
  margin: 10px 0 15px 0;
  text-align: center;
  color: white;
}
/* _content/CheckIT/Components/ServiceTool/ModuleCombination.razor.rz.scp.css */
.nodata[b-ed01f2a8ra] {
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
  margin: 0 auto;
}
/* _content/CheckIT/Components/ServiceTool/Modules/Module.razor.rz.scp.css */
section[b-3c72dztdej] {
    display: grid;
    grid-template-rows: auto 1fr;
    border-radius: 5px;
    padding: 0;
}

.sectionhead[b-3c72dztdej] {
  display: grid;
  grid-template-columns: auto 1fr 30px;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.sectionhead:hover[b-3c72dztdej] {
    background: rgba(255, 255, 255, 0.2);
}

.title[b-3c72dztdej] {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .title h3[b-3c72dztdej] {
        padding: 0;
        margin: 0;
        user-select: none;
    }

content[b-3c72dztdej] {
  display: block;
  padding: 0;
  max-height: 1500px;
  transition: max-height 0.5s ease-in;
  overflow: hidden;
}

.closed content[b-3c72dztdej] {
  max-height: 0;
  transition: max-height 0.5s ease-out;
}

.container[b-3c72dztdej] {
  display: block;
  padding: 10px;
}

.expander[b-3c72dztdej] {
  display: flex;
  height: 100%;
  align-items: center;
  margin-left: 10px;
  position: relative;
}

.expandericon[b-3c72dztdej] {
  position: absolute;
  width: 5px;
  height: 5px;
  border-top: 2px solid white;
  border-left: 2px solid white;
  transform: rotate(225deg);
  transition: all 0.5s;
}

.expanded .expandericon[b-3c72dztdej] {
  transform: rotate(45deg);
}

[b-3c72dztdej] .datagroup {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 10px;
}

  [b-3c72dztdej] .datagroup > * {
    
  }
/* _content/CheckIT/Components/ServiceTool/Modules/ModuleConclusion.razor.rz.scp.css */
.conclusion[b-30sa871u6s] {
  margin: 0;
}

ul.conclusionitems[b-30sa871u6s] {
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 5px;
  padding: 0;
}

  ul.conclusionitems > li[b-30sa871u6s] {
    display: contents;
  }

.details[b-30sa871u6s] {
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-gap: 10px;
}

    .details ul[b-30sa871u6s] {
        list-style: none;
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
    }

  .details .centerimg[b-30sa871u6s] {

  }

  ul.info[b-30sa871u6s] {
    gap: 5px;
  }

.info > li[b-30sa871u6s] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 5px 10px;
}


h4[b-30sa871u6s] {
    margin: 0;
    font-size: 1.1rem;
    text-align: center;
}
/* _content/CheckIT/Components/ServiceTool/Modules/ModuleConnectionStatus.razor.rz.scp.css */
.connectionstatus[b-wrfz852hmq] {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 10px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 10px;
}

.statusicon[b-wrfz852hmq] {
  width: 40px;
  display: flex;
}

.statusicon img[b-wrfz852hmq] {
  max-width: 100%;
}

.statustexts[b-wrfz852hmq] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

h1[b-wrfz852hmq] {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
}

h2[b-wrfz852hmq] {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}

.time[b-wrfz852hmq] {
  margin: 0px 0 -2px;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
}

.title[b-wrfz852hmq] {
  display: flex;
  gap: 10px;
}

.right[b-wrfz852hmq] {
  display: flex;
  align-items: center;
}
/* _content/CheckIT/Components/ServiceTool/Modules/ModuleCreateConfig.razor.rz.scp.css */
.nolink[b-krqtizp5fz] {
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
  margin: 0 auto;
  max-width: 400px;
  text-align: center;
}

  .nolink p[b-krqtizp5fz] {
    font-size: 1rem;
  }

.downloads[b-krqtizp5fz] {
  display: flex;
  gap: 5px;
  flex-direction: column;
  margin: 10px 0;
}

  .downloads a[b-krqtizp5fz], .downloads p[b-krqtizp5fz], .downloads a:visited[b-krqtizp5fz] {
    gap: 10px;
    margin: 0;
    text-decoration: none;
  }

  .downloads img[b-krqtizp5fz] {
    height: 20px;
  }

  .downloads span[b-krqtizp5fz] {
    display: flex;
    align-items: center;
  }

  .downloads a:hover[b-krqtizp5fz], .downloads p:hover[b-krqtizp5fz] {
    background: rgba(255, 255, 255, 0.4);
  }

.pin[b-krqtizp5fz] {
  color: white;
  margin: 0 auto;
  text-align: center;
  padding: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  font-size: 1.2rem;
  letter-spacing: 1rem;
  user-select: all;
  position: relative;
}

  .pin .icon[b-krqtizp5fz] {
    position: absolute;
    right: 5px;
    top: 8px;
    cursor: pointer;
    padding: 10px 7px 3px 15px;
    transition: all 0.3s;
    margin: 0;
    text-align: center;
    width: 20px;
    height: 20px;
    border-radius: 5px;
  }

    .pin .icon:hover[b-krqtizp5fz] {
      background: rgba(255, 255, 255, 0.2);
    }

    .pin .icon:active[b-krqtizp5fz] {
      transform: scale(1.2, 1.2);
    }

.validity[b-krqtizp5fz] {
  opacity: 0.5;
  font-size: 0.9rem;
}
/* _content/CheckIT/Components/ServiceTool/Modules/ModuleDebug.razor.rz.scp.css */
.events[b-wntz0h6nhe] {
  height: 200px;
  overflow: auto;
  border-radius: 5px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
}

  .events p[b-wntz0h6nhe] {
    margin: 0;
    padding: 2px;
    font-family: Consolas, monospace;
    font-size: 0.9rem;
  }

h3[b-wntz0h6nhe] {
  margin: 11px 0;
  font-size: 1.1rem;
}
/* _content/CheckIT/Components/ServiceTool/Modules/ModuleResourceLink.razor.rz.scp.css */
.resourcelink[b-2d5ix6c5vr] {  
  border-radius: 5px;
  padding: 10px;
  display: grid;
  grid-template-rows: auto auto;
  grid-gap: 10px;
  border-left: 6px white solid;
}

.statusicon img[b-2d5ix6c5vr] {
  max-width: 100%;
}

.warning[b-2d5ix6c5vr] {
  background: rgba(255, 255, 0, 0.2);
}

.ok[b-2d5ix6c5vr] {
  background: rgba(0, 255, 0, 0.2);
}

.message[b-2d5ix6c5vr] {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 10px;
}

.statusicon[b-2d5ix6c5vr] {
  width: 40px;
  display: flex;
}

.statustexts[b-2d5ix6c5vr] {
  display: flex;
  gap: 5px;
  flex-direction: column;
}

h1[b-2d5ix6c5vr] {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
}

h2[b-2d5ix6c5vr] {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5);
}

.right[b-2d5ix6c5vr] {
  display: flex;
  align-items: center;
}

.links[b-2d5ix6c5vr], .createnew[b-2d5ix6c5vr] {
  margin-left: 50px;
}

.links[b-2d5ix6c5vr] {
  border-radius: 5px;
  overflow: auto;
  max-height: 200px;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.5);
}

  .links .btn[b-2d5ix6c5vr] {
    background: var(--colors-green);
  }

    .links .btn:hover[b-2d5ix6c5vr] {
      background: var(--colors-greenhover) !important;
    }

.iconcircle[b-2d5ix6c5vr] {
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  margin-left: 5px;
}

  .iconcircle img[b-2d5ix6c5vr] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: none;
    max-height: none;
  }

.resicon[b-2d5ix6c5vr] {
  width: 30px;
}


.linkname[b-2d5ix6c5vr] {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.createnew h4[b-2d5ix6c5vr] {
    margin: 10px 0;
}

.createnew ul[b-2d5ix6c5vr] {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
} 
/* _content/CheckIT/Components/ServiceTool/Modules/ModuleSoftware.razor.rz.scp.css */
table[b-5b3521cpxl] {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

th[b-5b3521cpxl] {
  padding: 5px 20px;
}

td[b-5b3521cpxl] {
  padding: 5px 20px;
}

tbody tr:nth-child(2n+1)[b-5b3521cpxl] {
  background: rgba(0, 0, 0, 0.1);
}

tbody[b-5b3521cpxl] {
  display: block;
  height: 500px;
  overflow: auto;
}

  thead[b-5b3521cpxl], tbody tr[b-5b3521cpxl] {
    display: table;
    width: 100%;
    table-layout: fixed; /* even columns width , fix width of table too*/
  }

thead[b-5b3521cpxl] {
  width: calc( 100% - 1em ) /* scrollbar is average 1em/16px width, remove it from thead width */
}

table[b-5b3521cpxl] {
  width: 100%;
}
/* _content/CheckIT/Components/ServiceTool/Modules/MsgWarning.razor.rz.scp.css */
.nodata[b-mz4uknq0wz] {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  opacity: 0;
  animation: 0.5s Show-b-mz4uknq0wz 0.5s forwards;
}

p[b-mz4uknq0wz] {
  margin: 0;
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

@keyframes Show-b-mz4uknq0wz
{
  0% {
      opacity: 0;
  }

  100% {
      opacity: 1
  }
}
/* _content/CheckIT/Components/ServiceTool/Widget.razor.rz.scp.css */
.online td[b-socx4botfs] {
  background: var(--colors-green);
}

.clickable[b-socx4botfs] {
    cursor: pointer;
    transition: all 0.3s;
}

.clickable:hover[b-socx4botfs] {
  background: rgba(255, 255, 255, 0.1);
}

table[b-socx4botfs] {
  border-spacing: 0 5px;
  padding: 0;
  width: 100%;
}

img[b-socx4botfs] {
  width: 12px;
  height: 12px;
  padding-right: 10px;
}

.centr[b-socx4botfs] {
  display: flex;
  flex-direction: row;
  align-items: center;
}

td[b-socx4botfs] {
  padding: 5px 10px;
  border: 1px rgba(255,255,255,0) solid;
  background: rgba(255, 255, 255, 0.1);
}

  td:first-child[b-socx4botfs] {
    border-radius: 5px 0 0 5px;
    border-right: 0;
  }

  td:last-child[b-socx4botfs] {
    border-radius: 0 5px 5px 0;
  }

span.val[b-socx4botfs] {
  padding: 3px 10px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
/* _content/CheckIT/Components/Shared/3DotMenuButton.razor.rz.scp.css */
.dotmenu[b-061ityqoye] {
    aspect-ratio: 1/1;
    width: 100%;
    transition: all 0.3s;
    border-radius: 100%;
    cursor: pointer;
    user-select: none;
    position: relative;
    border: 1px rgba(255, 255, 255, 0) solid;
}

.dots[b-061ityqoye] {
    overflow: hidden;
    aspect-ratio: 1/1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -2px 0 0 0px;
}

.dotmenu:hover[b-061ityqoye] {
    background: rgba(255, 255, 255, 0.3);
}

.dotmenu:active[b-061ityqoye], .dotmenu.active[b-061ityqoye] {
    background: rgba(0, 0, 0, 0.1);
    border: 1px rgba(255, 255, 255, 0.5) solid;
}

p[b-061ityqoye] {
    margin: 0;
    font-size: 2rem; 
}

.content[b-061ityqoye] {
    position: absolute;
    left: 5px;
    bottom: 5px;
}
/* _content/CheckIT/Components/Shared/CheckBox.razor.rz.scp.css */
.container[b-vobov2qu97] {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 0;
  cursor: pointer;
  user-select: none;
  height: 25px;
  margin-top: 4px;
}

  .container input[b-vobov2qu97] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

.checkmark[b-vobov2qu97] {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  transition: all 0.3s;
}

.container:hover input ~ .checkmark[b-vobov2qu97] {
  background-color: #ccc;
}

.container input:checked ~ .checkmark[b-vobov2qu97] {
  background-color: #2196F3;
}

.checkmark[b-vobov2qu97]:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark[b-vobov2qu97]:after {
  opacity: 1;
}

.container .checkmark[b-vobov2qu97]:after {
  opacity: 0;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  transition: all 0.5s;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: block;
}
/* _content/CheckIT/Components/Shared/Clock.razor.rz.scp.css */
.clock[b-zaygvonq9e] {
    position: absolute;
    bottom: 0;
    left: 45%;
    display: grid;
    grid-template-columns: auto auto auto;
    opacity: 0.15;
}

p[b-zaygvonq9e] {
  font-size: 10rem;
  color: white;
  padding: 0;
  margin: 0;
  cursor: default;
  user-select: none;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.9);
}

.element[b-zaygvonq9e] {
    display: flex;
    justify-content: center;
}

.seperator[b-zaygvonq9e] {
    animation: infinite blink-b-zaygvonq9e 2s;
}

@keyframes blink-b-zaygvonq9e {
    0% {
        opacity: 100%;
    }

    30% {
        opacity: 100%;
    }

    50% {
        opacity: 50%;
    }

    80% {
        opacity: 50%;
    }
}
/* _content/CheckIT/Components/Shared/ContextMenu.razor.rz.scp.css */
.contextmenu[b-hh2x7cl2ze] {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
}

.fixed[b-hh2x7cl2ze] {

}

ul[b-hh2x7cl2ze] {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 200px;
  box-shadow: 0 0 5px black;
  border: 1px black solid;
}

[b-hh2x7cl2ze] li {
    display: grid;
    grid-template-columns: 20px 1fr;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0 10px;
    gap: 5px;
}

    [b-hh2x7cl2ze] li:hover {
        background: rgba(255, 255, 255, 0.1);
    }

/* _content/CheckIT/Components/Shared/EditingIndicator.razor.rz.scp.css */
.editingindicator[b-2vvd4047m7]   {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.slidebg[b-2vvd4047m7] {
    position: relative;
    height: 100%;
}

    .slidebg[b-2vvd4047m7]::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100px;
        bottom: 0;
        width: 100px;
        pointer-events: none;
        background: linear-gradient(90deg, rgba(251,63,63,0) 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255,0.1) 80%, rgba(252,70,107,0) 100%);
        animation: gradient-b-2vvd4047m7 4s infinite ease-in-out;
        animation-delay: 0s;
        animation-delay: 1s;
        z-index: -1;
    }

@keyframes gradient-b-2vvd4047m7 {
    0% {
        left: -100px;
    }

    50% {
        left: calc(100% + 100px);
    }

    100% {
        left: calc(100% + 100px);
    }
}
/* _content/CheckIT/Components/Shared/Filters/Filter.razor.rz.scp.css */
.filter[b-pxhqvj86dw] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 10px;
    padding: 10px;
    display: grid;
    grid-template-rows: auto 1fr;
}

h3[b-pxhqvj86dw] {
    margin: 0;
    padding: 0;
}
/* _content/CheckIT/Components/Shared/Filters/FilterIntegerSpan.razor.rz.scp.css */
.filterintegerspan[b-heb8lonbb6] {

}

input[b-heb8lonbb6] {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px white solid;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 10px 0px;
    box-sizing: border-box;
    outline: none;
    padding: 5px 10px;
    font-size: 1rem;
    overflow: hidden;
}

p[b-heb8lonbb6] {

}
/* _content/CheckIT/Components/Shared/Filters/Wordfilter.razor.rz.scp.css */
.wordfilter[b-t727i6sqs8] {
  display: flex;
  padding: 0 0 5px 0;
  justify-content: center;
}

  .wordfilter input[b-t727i6sqs8] {
    border-radius: 5px;
    display: block;
    box-sizing: border-box;
    width: 200px;
    height: 32px;
    outline: none;
    padding: 5px 30px 5px 15px;
    color: white;
    transition: all 0.2s;
    font-size: 1rem;
    border: 1px rgba(255, 255, 255, 0.4) solid;
    background: rgba(0, 0, 0, 0.2);
  }

    .wordfilter input[b-t727i6sqs8]::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    .wordfilter input:focus[b-t727i6sqs8]::placeholder {
      color: transparent;
    }

    .wordfilter input:hover[b-t727i6sqs8] {
      background: rgba(255, 255, 255, 0);
    }

    .wordfilter input:focus[b-t727i6sqs8] {
      background: rgba(255, 255, 255, 0.8);
      color: black;
    }
/* _content/CheckIT/Components/Shared/FooterMenu.razor.rz.scp.css */
menu[b-1a255nramb] {
    display: block;
    margin: 0;
    padding: 0;
    color: white;
}

ul[b-1a255nramb] {
    background: rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    min-width: 200px;
    justify-content: right;
}

[b-1a255nramb] li {
    display: grid;
    grid-template-columns: 20px 1fr;
    cursor: pointer;
    transition: all 0.3s;
    gap: 5px;
    padding: 10px 15px;
    margin: 5px;
    border: 1px rgba(255, 255, 255, 0.2) solid;
    border-radius: 5px;
    font-size: 0.9rem;
}

[b-1a255nramb] li:hover {
    background: rgba(255, 255, 255, 0.1);
}

[b-1a255nramb] p {
    margin: 0;
    padding: 0;
}
/* _content/CheckIT/Components/Shared/GenericUI/Button.razor.rz.scp.css */
.button[b-7m75g8s69t] {
  user-select: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr;
  background: linear-gradient( 330deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 100% );
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  min-width: 100px;
}

  .button[b-7m75g8s69t]::before {
    content: "";
    position: absolute;
    inset: 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0);
    z-index: 0;
  }

  .button:hover[b-7m75g8s69t]::before {
    background: rgba(255, 255, 255, 0.1);
  }

  .button:focus[b-7m75g8s69t] {
    outline: 1px rgba(255, 255, 255, 0.9) solid;
  }

  .button:active[b-7m75g8s69t] {
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1) inset;
    outline: none;
  }

  .button:active[b-7m75g8s69t]::before {
    background: rgba(0, 0, 0, 0.1);
  }

.btnicon[b-7m75g8s69t] {
  width: 10px;
}

  .btncontent p[b-7m75g8s69t] {
    margin: 0;
    font-size: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
  }

.button:hover p[b-7m75g8s69t] {
  color: rgba(255, 255, 255, 1);
}

.button:active p[b-7m75g8s69t] {
  color: rgba(255, 255, 255, 0.5);
}


.button.disabled[b-7m75g8s69t] {
  cursor: default;
  box-shadow: none;
  background: linear-gradient( 330deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100% );
  outline: none;
}

.button.disabled p[b-7m75g8s69t] {
  color: rgba(0, 0, 0, 0.5);
}

  .button.disabled[b-7m75g8s69t]::before {
    background: rgba(255, 255, 255, 0);
  }
/* _content/CheckIT/Components/Shared/GenericUI/CheckBox.razor.rz.scp.css */
.container[b-0g9m5nz25l] {
  display: flex;
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
  user-select: none;
  height: 25px;
  align-items: center;
  gap: 10px;
}

  .container input[b-0g9m5nz25l] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

.checkmark[b-0g9m5nz25l] {
  height: 20px;
  width: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  transition: all 0.3s;
  position: relative;
}

.container:hover input ~ .checkmark[b-0g9m5nz25l] {
  background-color: #ccc;
}

.container input:checked ~ .checkmark[b-0g9m5nz25l] {
  background-color: #2196F3;
}

.checkmark[b-0g9m5nz25l]:after {
  content: "";
  position: absolute;
  display: none;
}

.container input:checked ~ .checkmark[b-0g9m5nz25l]:after {
  opacity: 1;
}

.container .checkmark[b-0g9m5nz25l]:after {
  opacity: 0;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  transition: all 0.5s;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  display: block;
}
/* _content/CheckIT/Components/Shared/GenericUI/ContentCarousel.razor.rz.scp.css */
.content-carousel[b-c678eox3w5] {
  display: grid;
  grid-template-rows: auto 1fr;
}

.content-carousel-nav[b-c678eox3w5] {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-dots[b-c678eox3w5] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 5px;
}

.pagination-dot[b-c678eox3w5] {
  height: 12px;
  width: 12px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

  .pagination-dot.active[b-c678eox3w5] {
    background: rgba(255, 255, 255, 1);
    cursor: default;
  }

  .pagination-dot:hover[b-c678eox3w5] {
      transform: scale(1.3);
  }

  .pagination-dot.active:hover[b-c678eox3w5] {
    transform: scale(1);
  }
/* _content/CheckIT/Components/Shared/GenericUI/ContentCarouselView.razor.rz.scp.css */
.carousel-content[b-8xrw3fkeu8] {
  animation: fade-in-b-8xrw3fkeu8 0.5s;
}

@keyframes fade-in-b-8xrw3fkeu8 {
  0% {
    opacity: 0;
    transform: scale(0.99);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* _content/CheckIT/Components/Shared/GenericUI/ContextMenu.razor.rz.scp.css */
.contextmenu[b-9d5n1rydbs] {
    position: absolute;
    top: 0;
    z-index: 1001; /* über dem Overlay */
}

  .contextmenu[b-9d5n1rydbs]::before {
      border-radius: 5px;
  }

  .contextmenu.left[b-9d5n1rydbs] {
    right: 0;
  }

.contextmenu.right[b-9d5n1rydbs] {
  left: 0;
}

  .contextmenu.strech[b-9d5n1rydbs] {
    left: 0;
    right: 0;
  }

.fixed[b-9d5n1rydbs] {

}

ul[b-9d5n1rydbs] {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  box-shadow: 0 0 5px black;
  border: 1px black solid;
  max-height: 500px;
  overflow: auto;
}

[b-9d5n1rydbs] li {
    display: grid;
    grid-template-columns: 20px 1fr;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0 10px;
    gap: 5px;
}

    [b-9d5n1rydbs] li:hover {
        background: rgba(255, 255, 255, 0.1);
    }

/* _content/CheckIT/Components/Shared/GenericUI/ContextMenuButton.razor.rz.scp.css */
.contextmenuwrapper[b-b1qidyhifn] {
  display: flex;
  align-items: center;
}

.dotmenu[b-b1qidyhifn] {
  aspect-ratio: 1/1;
  transition: all 0.3s;
  border-radius: 100%;
  cursor: pointer;
  user-select: none;
  position: relative;
  border: 1px rgba(255, 255, 255, 0) solid;
  overflow: visible;
  height: 30px;
}

.dots[b-b1qidyhifn] {
    overflow: hidden;
    aspect-ratio: 1/1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -2px 0 0 0px;
}

.dotmenu:hover[b-b1qidyhifn] {
    background: rgba(255, 255, 255, 0.3);
}

.dotmenu:active[b-b1qidyhifn], .dotmenu.active[b-b1qidyhifn] {
    background: rgba(0, 0, 0, 0.1);
    border: 1px rgba(255, 255, 255, 0.5) solid;
}

p[b-b1qidyhifn] {
    margin: 0;
    font-size: 2rem; 
}

.content[b-b1qidyhifn] {
    position: absolute;
    left: 5px;
    bottom: 5px;
}
/* _content/CheckIT/Components/Shared/GenericUI/ContextMenuItem.razor.rz.scp.css */
li[b-20920tva3q] {
  display: grid;
  grid-template-columns: 20px 1fr;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0 10px;
  gap: 5px;
  position: relative;
}

  li[b-20920tva3q]::before {
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    transition: all 0.3s;
    background: linear-gradient( 330deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 100% )
  }

.icon[b-20920tva3q] {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
}

  .icon img[b-20920tva3q] {
    max-height: 100%;
    max-width: 100%;
  }

  li:hover[b-20920tva3q]::before {
    opacity: 1;
  }

p[b-20920tva3q] {
  text-wrap: nowrap;
}
/* _content/CheckIT/Components/Shared/GenericUI/DataGrid.razor.rz.scp.css */
table[b-a1h9aatbdl] {
  border-spacing: 0 5px;
  width: 100%;
}
/* _content/CheckIT/Components/Shared/GenericUI/DataGridItem.razor.rz.scp.css */
td[b-vkws8hzhla] {
  padding: 10px 20px;
  border: 1px rgba(255,255,255,0.3) solid;
  background: rgba(255, 255, 255, 0.1);
}

  td:first-child[b-vkws8hzhla] {
    border-radius: 5px 0 0 5px;
    border-right: 0;
  }

  td:last-child[b-vkws8hzhla] {
    border-radius: 0 5px 5px 0;
  }

tr[b-vkws8hzhla] {
  border: 1px rgba(255,255,255,0.3) solid;
}
/* _content/CheckIT/Components/Shared/GenericUI/DataTable.razor.rz.scp.css */
.datatable[b-fto8gvuapd] {
  width: 100%;
}
/* _content/CheckIT/Components/Shared/GenericUI/DataTableItem.razor.rz.scp.css */
.td[b-gfri8eiewx] {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  text-align: right;
}

  .td:first-child[b-gfri8eiewx] {
    border-radius: 5px 0 0 5px;
    border-right: 0;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
  }

  .td:last-child[b-gfri8eiewx] {
    display: flex;
    justify-content: center;
    align-items: center;
  }

[b-gfri8eiewx] .attr-value > * {
  float: right;
}

.row[b-gfri8eiewx] {
  margin: 1px;
  position: relative;
  grid-template-columns: 1fr 1fr auto;
  display: grid;
  border: 1px rgba(255,255,255,0) solid;
  border-radius: 5px;
}

[b-gfri8eiewx] .td p {
  margin: 0;
  padding: 0;
}

.row.editable[b-gfri8eiewx] {
  border-radius: 5px;
  overflow: hidden;
}

.td.tools[b-gfri8eiewx] {
  padding: 4px 10px 0 0;
  display: grid;
  gap: 10px;
  grid-template-columns: 15px 15px;
}

.row:hover .td[b-gfri8eiewx] {
  background: rgba(255, 255, 255, 0.2);
}

.row:focus[b-gfri8eiewx] {
  outline: none;
}

  .row:focus[b-gfri8eiewx]::after {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    border-radius: 5px;
    content: '';
    border: 1px rgba(255,255,255,1) solid;
    pointer-events: none;
  }

.td.tools > *[b-gfri8eiewx] {
  width: 15px;
  opacity: 0.5;
  transition: all 0.3s;
  cursor: pointer;
}

  .td.tools > *:hover[b-gfri8eiewx] {
    opacity: 1;
  }


img[b-gfri8eiewx] {
  user-select: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: none;
  max-height: none;
}
/* _content/CheckIT/Components/Shared/GenericUI/ExternalLink.razor.rz.scp.css */
a[b-4iw3c0vfmc] {
  text-decoration: none;
  color: inherit;
}

a:hover[b-4iw3c0vfmc] {
  text-decoration: underline;
}

.copy[b-4iw3c0vfmc] {
  font-family: IcoMoon, sans-serif;
  user-select: none;
  padding: 0 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0.8;
}

  .copy:hover[b-4iw3c0vfmc] {
    opacity: 1;
  }

.externallink[b-4iw3c0vfmc] {
  position: relative;
  padding: 0 0 0 0.5rem;


}
  .externallink[b-4iw3c0vfmc]::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: -2px;
    bottom: -2px;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    border-radius: 5px;
    pointer-events: none
  }


/* _content/CheckIT/Components/Shared/GenericUI/FooterButtons.razor.rz.scp.css */
.footerbuttons[b-n43qjmrgn2] {
  display: flex;
  padding: 10px;
  flex-direction: row;
  gap: 5px;
  background: rgba(0, 0, 0, 0.5);
  justify-content: right;
}
/* _content/CheckIT/Components/Shared/GenericUI/HorizontalListbox.razor.rz.scp.css */
ul[b-cqqp3hmff4] {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

  ul[b-cqqp3hmff4]  > li {
    user-select: none;
    cursor: pointer;
    background: linear-gradient( 330deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 100% );
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }

  ul.equalaspectratio[b-cqqp3hmff4]  > li {
    height: 100%;
    aspect-ratio: 1 / 1;
  }

  ul[b-cqqp3hmff4]  > li::before {
    content: "";
    position: absolute;
    inset: 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0);
    z-index: 0;
  }

  ul[b-cqqp3hmff4]  > li:hover::before {
    background: rgba(255, 255, 255, 0.1);
  }

  ul[b-cqqp3hmff4]  > li:focus {
    outline: 1px rgba(255, 255, 255, 0.9) solid;
  }

  ul[b-cqqp3hmff4]  > li:active {
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1) inset;
    outline: none;
  }

    ul[b-cqqp3hmff4]  > li:active::before {
      background: rgba(0, 0, 0, 0.1);
    }

  ul[b-cqqp3hmff4]  > li.selected {
    outline: none;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3) inset;
    cursor: default;
    color: rgba(255, 255, 255, 0.7);
    border: 1px rgba(255, 255, 255, 0.2) solid;
  }

    ul[b-cqqp3hmff4]  > li.selected::before {
        opacity: 0;
    }
/* _content/CheckIT/Components/Shared/GenericUI/IconCircle.razor.rz.scp.css */
.iconcircle[b-rpz8dvykpw] {
  border-radius: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: 100%;
  max-width: 100%;
}

.iconcircle.fallback[b-rpz8dvykpw] {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: 100%;
  max-width: 100%;
}

img[b-rpz8dvykpw] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  max-height: none;
}

  img.fallback[b-rpz8dvykpw] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: none;
    max-height: none;
  }
/* _content/CheckIT/Components/Shared/GenericUI/Input.razor.rz.scp.css */
input[b-89e8ic1e34] {
  width: 100% !important;
  box-sizing: border-box;
  border: 1px rgba(255, 255, 255, 0.2) solid;
  border-radius: 5px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1) inset;
  transition: all 0.3s;
  font-size: 1rem;
}

  input:focus[b-89e8ic1e34] {
    border: 1px rgba(255, 255, 255, 0.5) solid;
  }

  input[b-89e8ic1e34]::placeholder {
      color: rgba(255, 255, 255, 0.5);
  }
/* _content/CheckIT/Components/Shared/GenericUI/LoadingIndicator.razor.rz.scp.css */
.loadingindicator[b-1k4cav9lrp] {
    display: contents;
}

.stage[b-1k4cav9lrp] {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 5px 0;
    margin: 0;
    animation: ShowDelay-b-1k4cav9lrp 0.5s linear;
}

.dots[b-1k4cav9lrp] {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.5);
    animation: flashing-b-1k4cav9lrp 1s infinite linear alternate;
    animation-delay: 0s;
    animation-delay: 0.5s;
}

    .dots[b-1k4cav9lrp]::before, .dots[b-1k4cav9lrp]::after {
        content: "";
        display: inline-block;
        position: absolute;
        background-color: rgba(255, 255, 255, 0.5);
        top: 0;
    }

.dots[b-1k4cav9lrp]::before {
    left: -15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    animation: flashing-b-1k4cav9lrp 1s infinite alternate;
    animation-delay: 0s;
    animation-delay: 0s;
}

.dots[b-1k4cav9lrp]::after {
    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    animation: flashing-b-1k4cav9lrp 1s infinite alternate;
    animation-delay: 0s;
    animation-delay: 1s;
}

@keyframes flashing-b-1k4cav9lrp {
    0% {
        background-color: rgba(255, 255, 255, 0.5);
    }

    50%, 100% {
        background-color: rgba(255, 255, 255, 0.9);
    }
}

@keyframes ShowDelay-b-1k4cav9lrp {
    0% {
        opacity: 0
    }

    90% {
        opacity: 0
    }

    100% {
        opacity: 1;
    }
}
/* _content/CheckIT/Components/Shared/GenericUI/Masonry.razor.rz.scp.css */
.masonry[b-z22mmpg6s3] {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.masonryitems[b-z22mmpg6s3] {
  column-count: 2;
  column-gap: 5px;
}

[b-z22mmpg6s3].masonryitems > * {
  break-inside: avoid;
  display: inline-block !important;
  width: 100%;
  box-sizing: border-box;
}

.top[b-z22mmpg6s3], .bottom[b-z22mmpg6s3] {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
/* _content/CheckIT/Components/Shared/GenericUI/MenuPanel.razor.rz.scp.css */
.menu-panel[b-73yfxoton5] {
  display: grid;
  grid-template-columns: 200px 1fr;
  overflow: auto;
  grid-gap: 5px;
  padding: 0 5px 5px 5px;
}

.menu-content[b-73yfxoton5] {
  display: contents;
  overflow: auto;
}
/* _content/CheckIT/Components/Shared/GenericUI/Module.razor.rz.scp.css */
.module[b-dmh4h4tx2y] {
  background: linear-gradient( 330deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100% );
  border-radius: 5px;
  padding: 10px;
  display: grid;
  grid-template-rows: auto 1fr;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  position: relative;
}

.module.frameless[b-dmh4h4tx2y] {
  grid-template-rows: 1fr;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  background: none;
}

  .module.maincontent[b-dmh4h4tx2y] {
    display: grid;
    overflow: auto;
  }

h3[b-dmh4h4tx2y] {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 1.1rem;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.1rem;
}

.modulecontent[b-dmh4h4tx2y] {
  display: grid;
  overflow: auto;
}

.emptyhide:has(.modulecontent:empty)[b-dmh4h4tx2y] {
  display: none !important;
}

img[b-dmh4h4tx2y] {
  height: 18px;
  width: 18px;
  opacity: 0.8;
}

.pin[b-dmh4h4tx2y] {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1;
}

.pin:hover[b-dmh4h4tx2y] {
  background-color: rgba(255, 255, 255, 0.2);
}
/* _content/CheckIT/Components/Shared/GenericUI/ModuleMainContent.razor.rz.scp.css */
.modulemaincontent[b-yyttf3pbek] {
  display: grid;
  overflow: auto;
  background: linear-gradient( 330deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100% );
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
/* _content/CheckIT/Components/Shared/GenericUI/NavMenu.razor.rz.scp.css */
.navmenu[b-9yv4p66p5o] {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  user-select: none;
  overflow: auto;
}
/* _content/CheckIT/Components/Shared/GenericUI/NavMenuGroup.razor.rz.scp.css */

.navmenugroup[b-r78ltf4j1w] {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0 0 0 0;
  position: relative;
  overflow: auto;
}

h3[b-r78ltf4j1w] {
    font-size: 1.1rem;
    margin: 5px 0;
    padding: 10px;
    text-align: center;
    font-weight: normal;
    letter-spacing: 0.1rem;
}

ul.navigationlist[b-r78ltf4j1w] {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.menu[b-r78ltf4j1w] {
  position: absolute;
  right: 5px;
  top: 10px;
  width: 30px;
}
/* _content/CheckIT/Components/Shared/GenericUI/NavMenuItem.razor.rz.scp.css */
li[b-mes4jwmyfl] {
    padding: 0 10px;
    height: 40px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    position: relative;
    border: 1px transparent dashed;
    position: relative;
    user-select: none;
}

    li.editmode[b-mes4jwmyfl] {
        border: 1px rgba(255, 255, 255, 0.3) dashed;
        background: rgba(255, 255, 255, 0.05);
    }

    li.selected[b-mes4jwmyfl] {
        background: rgba(255, 255, 255, 0.2);
        cursor: default;
        border-radius: 5px;
        overflow: hidden;
    }

    li:hover[b-mes4jwmyfl] {
        background: rgba(255, 255, 255, 0.2);
    }

  li:active[b-mes4jwmyfl] {
    background: rgba(255, 255, 255, 0.1);
  }

  li.splt3 p[b-mes4jwmyfl] {
    margin: 0;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  li.splt3 .iconwrapper[b-mes4jwmyfl] {
    height: 15px;
    width: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem; 
  }

  li.splt3.usericon .iconwrapper[b-mes4jwmyfl] {
    height: 30px;
    width: 36px;
    font-size: 3rem;
    border: 1px white solid;
    border-radius: 100%;
    overflow: hidden;
  }

li.splt3 img[b-mes4jwmyfl] {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

  li.splt3.usericon img[b-mes4jwmyfl] {
    object-fit: cover;
  }

li.splt3[b-mes4jwmyfl] {
    align-items: center;
    display: flex;
    gap: 10px;
}


    li.splt3 .info[b-mes4jwmyfl] {
        padding: 0;
        display: grid;
        grid-template-columns: 1fr auto;
        width: 100%;
        box-sizing: border-box;
    }

  li.splt3 .name[b-mes4jwmyfl] {
    display: flex;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-direction: column;
  }

    li.splt3 .count[b-mes4jwmyfl] {
        padding: 5px;
        background: rgba(0,0,0,0.5);
        border-radius: 5px;
        margin: 0;
        min-width: 20px;
        text-align: center;
    }

        li.splt3 .count p[b-mes4jwmyfl] {
            font-size: 0.9rem;
        }

.indicator[b-mes4jwmyfl] {
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background: orange;
  right: 10px;
  bottom: 8px;
  animation: pulse-b-mes4jwmyfl 2s infinite;
}

.contextmenu[b-mes4jwmyfl] {
  width: 30px;
}

@keyframes pulse-b-mes4jwmyfl {
    0% {
        opacity: 100%;
    }

  50% {
    opacity: 50%;
  }

  100% {
    opacity: 100%;
  }
}
/* _content/CheckIT/Components/Shared/GenericUI/Pivot.razor.rz.scp.css */
.pivot[b-a6qudz4pwl] {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  overflow: auto;
}

.pivot-nav[b-a6qudz4pwl] {
    display: contents;
}

.pivot-view[b-a6qudz4pwl] {
  overflow: auto;
  border-radius: 5px;
  display: grid;
}

.navitems[b-a6qudz4pwl] {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 15px;
  border-radius: 5px;
  padding: 0 10px;
  flex-wrap: wrap;
}

.navitem[b-a6qudz4pwl] {
  cursor: pointer;
}

.navitem.active[b-a6qudz4pwl] {
  cursor: default;
}

  .navitem > p[b-a6qudz4pwl] {
    transition: all 0.3s;
    margin: 0;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
  }

  .navitem:hover > p[b-a6qudz4pwl] {
    color: rgba(255, 255, 255, 0.8);
  }

  .navitem.active > p[b-a6qudz4pwl] {
      color: white;
  }
/* _content/CheckIT/Components/Shared/GenericUI/PivotView.razor.rz.scp.css */
.pivot-content[b-bapi0jsr58] {
  animation: fade-in-b-bapi0jsr58 0.5s;
  display: grid;
  overflow: auto;
}

@keyframes fade-in-b-bapi0jsr58 {
  0% {
    opacity: 0;
    transform: scale(0.99);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* _content/CheckIT/Components/Shared/GenericUI/Select.razor.rz.scp.css */
.selectwrapper[b-7j2z4i7ums] {
  border-radius: 5px;
  box-sizing: border-box;
  outline: none;
  border: 1px rgba(255, 255, 255, 0.2) solid;
  user-select: none;
  background: linear-gradient( 330deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100% );
  transition: all 0.3s ease;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  display: grid;
  padding: 0;
}

select[b-7j2z4i7ums] {
  box-sizing: border-box;
  outline: none;
  color: white;
  font-size: 1rem;
  border: 1px transparent solid;
  user-select: none;
  background: rgba(0, 0, 0, 0.0001);
  display: block;
  padding: 8px 10px;
  cursor: pointer;
}

.selectwrapper[b-7j2z4i7ums]::before {
  content: "";
  position: absolute;
  inset: 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0);
  z-index: 0;
  pointer-events: none;
}

.selectwrapper:hover[b-7j2z4i7ums]::before {
  background: rgba(255, 255, 255, 0.1);
}

.selectwrapper:has(select:focus)[b-7j2z4i7ums] {
  outline: 1px rgba(255, 255, 255, 0.9) solid;
}

  .selectwrapper:has(select:active)[b-7j2z4i7ums] {
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1) inset;
    outline: none;
  }

    .selectwrapper:has(select:active)[b-7j2z4i7ums]::before {
      background: rgba(0, 0, 0, 0.1);
    }

select option[b-7j2z4i7ums] {
  color: black;
}
/* _content/CheckIT/Components/Shared/GenericUI/Table.razor.rz.scp.css */
.table[b-rms56ll6q5] {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  overflow: auto;
  color: white;
  margin: 0px;
  font-size: 1rem;
  height: 100%;
  position: relative;
  padding: 0 5px;
}

.menu[b-rms56ll6q5] {
  padding: 0 0 2px 0;
}

.submenu[b-rms56ll6q5] {
  max-height: 0;
  transition: max-height 0.5s ease-in-out;
  overflow: hidden;
  display: grid;
}

  .submenu.open[b-rms56ll6q5] {
    max-height: 200px;
  }

.filterwrapper[b-rms56ll6q5] {
  padding: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.filter[b-rms56ll6q5] {
  display: flex;
  align-items: center;
}

.columnswrapper[b-rms56ll6q5] {
  display: grid;
  gap: 10px;
  padding: 10px;
  grid-template-rows: auto auto;
}

.submenubuttons[b-rms56ll6q5] {
    display: flex;
    gap: 10px;
}

.columnswrapperitems[b-rms56ll6q5] {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(100px, 180px));
}

.tablebody[b-rms56ll6q5] {
  overflow: auto;
  min-height: 10px;
}

.row[b-rms56ll6q5] {
  display: grid;
}

.column[b-rms56ll6q5] {
  padding: 6px 8px;
  display: block;
  text-align: left;
  text-wrap: nowrap;
  text-wrap-mode: nowrap;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tablehead .row[b-rms56ll6q5] {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

  .tablehead .row[b-rms56ll6q5]::before {
    opacity: 0;
    animation: fadein-b-rms56ll6q5 1s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
    pointer-events: none;
    z-index: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    background: linear-gradient( 330deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 100% );
  }

.tablehead .column[b-rms56ll6q5] {
  cursor: pointer;
  user-select: none;
  position: relative;
  font-weight: normal;
  letter-spacing: 0.1rem;
  transition: all 0.3s;
  border-radius: 5px;
  margin: 4px;
}

  .tablehead .column[b-rms56ll6q5]:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    transition: all 0.3s;
    border-radius: 5px;
  }

  .tablehead .column:hover[b-rms56ll6q5]:before {
    background: rgba(255, 255, 255, 0.2);
  }

.headcontent[b-rms56ll6q5] {
    display: flex;
    gap: 10px;
}

.sortindicator[b-rms56ll6q5] {
  font-family: IcoMoon, sans-serif;
  user-select: none;
  pointer-events: none;
  margin-right: 0;
}

.tablebody .row[b-rms56ll6q5] {
  display: grid;
  border-bottom: 1px rgba(255, 255, 255, 0.1) solid;
  cursor: pointer;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s;
  padding: 0;
}

  .tablebody .row[b-rms56ll6q5]  > p {
    margin: 0;
    padding: 12px 10px;
    text-wrap: nowrap;
    text-wrap-mode: nowrap;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
  }

.tablebody .row:hover[b-rms56ll6q5] {
  color: rgba(255, 255, 255, 1);
}

  .tablebody .row[b-rms56ll6q5]::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    z-index: 0;
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
    background: linear-gradient( 330deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100% );
  }

  .tablebody .row:hover[b-rms56ll6q5]::before {
    opacity: 1;

  }

.tablefoot[b-rms56ll6q5] {
  display: flex;
  justify-content: center;
  padding: 5px;
  gap: 10px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  background: linear-gradient( 330deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 100% );
  margin: 0 0 5px 0;
}


@keyframes fadein-b-rms56ll6q5 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* _content/CheckIT/Components/Shared/GenericUI/TableSelector.razor.rz.scp.css */
.pivot[b-7rkr4dfbkp] {
  display: grid;
  grid-template-rows: auto 1fr;
}

.pivot-nav[b-7rkr4dfbkp] {
    display: grid;
}

.navitems[b-7rkr4dfbkp] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  padding: 5px;
  flex-wrap: wrap;
}

.navitem[b-7rkr4dfbkp] {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 5px 10px;
  cursor: pointer;
  transition: all 0.3s;
}

  .navitem:hover[b-7rkr4dfbkp] {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .navitem.active[b-7rkr4dfbkp] {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    cursor: default;
  }

.navitem > p[b-7rkr4dfbkp] {
    margin: 0;
}
/* _content/CheckIT/Components/Shared/GenericUI/TableSelectorItem.razor.rz.scp.css */
.pivot-content[b-d0rodybskw] {
  animation: fade-in-b-d0rodybskw 0.5s;
  display: block;

}

@keyframes fade-in-b-d0rodybskw {
  0% {
    opacity: 0;
    transform: scale(0.99);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* _content/CheckIT/Components/Shared/GenericUI/Textarea.razor.rz.scp.css */
textarea[b-ljdt4wx44t] {
  width: 100% !important;
  box-sizing: border-box;
  border: 1px rgba(255, 255, 255, 0.2) solid;
  border-radius: 5px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  resize: none;
  box-shadow: 2px 2px rgba(0, 0, 0, 0.1) inset;
  transition: all 0.3s;
}

  textarea:focus[b-ljdt4wx44t] {
    border: 1px rgba(255, 255, 255, 0.5) solid;
  }
/* _content/CheckIT/Components/Shared/GenericUI/Toggle.razor.rz.scp.css */
.toggle[b-e5btfw413r] {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.centerswitch[b-e5btfw413r] {
    margin: 0;
}
/* _content/CheckIT/Components/Shared/GenericUI/Toolbar.razor.rz.scp.css */
.toolbar[b-ga7uyf8pas] {
    display: flex;
    justify-content: center;
    color: white;
    user-select: none;
}

ul.actions[b-ga7uyf8pas] {
  display: flex;
  list-style: none;
  background: linear-gradient( 330deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.3) 100% );
  border-radius: 5px;
  margin: 5px;
  padding: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

  ul.actions[b-ga7uyf8pas]  > li {
      position: relative;
  }

    ul.actions[b-ga7uyf8pas]  > li::after {
      content: "";
      position: absolute;
      top: 5px;
      right: 0;
      width: 0;
      border-right: 1px rgba(255, 255, 255, 0.2) solid;
      bottom: 5px;
    }

    ul.actions[b-ga7uyf8pas]  > li:last-child::after {
      content: none;
    }
/* _content/CheckIT/Components/Shared/GenericUI/ToolbarItem.razor.rz.scp.css */
li[b-7uhz10azs0] {
  display: grid;
  grid-template-columns: 17px auto auto;
  margin: 0;
  padding: 0 20px;
  transition: all 0.2s;
  cursor: pointer;
  font-size: 0.9rem;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  grid-gap: 5px;
}

  li.active[b-7uhz10azs0] {
    background: rgba(0, 0, 0, 0.3);
  }

.icon[b-7uhz10azs0] {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
}

  .icon img[b-7uhz10azs0] {
    max-height: 1rem;
    max-width: 1rem;
  }

  li:hover[b-7uhz10azs0] {
    background: rgba(0, 0, 0, 0.2)
  }

li:focus[b-7uhz10azs0] {
  background: rgba(255, 255, 255, 0.2);
  outline: none
}

  li.selected[b-7uhz10azs0] {
    background: rgba(0,0,0,0.5);
  }

.contextopener[b-7uhz10azs0] {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 -10px 0 10px;
}

.openericon[b-7uhz10azs0] {
  position: relative;
  width: 10px;
  height: 10px;
}

  .openericon[b-7uhz10azs0]::before {
    position: absolute;
    width: 0.4rem;
    height: 0.4rem;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transform: rotate(225deg);
    top: 1px;
    left: 0px;
    content: '';
  }

.contextmenu-wrapper[b-7uhz10azs0] {
    position: absolute;
    bottom: 0;
}
/* _content/CheckIT/Components/Shared/LeftMenu/Item.razor.rz.scp.css */
li[b-c1uhmnxfru] {
    padding: 0 10px;
    height: 40px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 5px;
    position: relative;
    border: 1px transparent dashed;
    position: relative;
    user-select: none;
}

    li.editmode[b-c1uhmnxfru] {
        border: 1px rgba(255, 255, 255, 0.3) dashed;
        background: rgba(255, 255, 255, 0.05);
    }

    li.selected[b-c1uhmnxfru] {
        background: rgba(255, 255, 255, 0.2);
        cursor: default;
        border-radius: 5px;
        overflow: hidden;
    }

        li.selected[b-c1uhmnxfru]:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: white;
        }

    li:hover[b-c1uhmnxfru] {
        background: rgba(255, 255, 255, 0.2);
    }

  li:active[b-c1uhmnxfru] {
    background: rgba(255, 255, 255, 0.1);
  }

li.splt3 p[b-c1uhmnxfru] {
    margin: 0;
}

  li.splt3 .iconwrapper[b-c1uhmnxfru] {
    height: 15px;
    width: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem; 
  }

  li.splt3.usericon .iconwrapper[b-c1uhmnxfru] {
    height: 30px;
    width: 36px;
    font-size: 3rem;
    border: 1px white solid;
    border-radius: 100%;
    overflow: hidden;
  }

li.splt3 img[b-c1uhmnxfru] {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
}

  li.splt3.usericon img[b-c1uhmnxfru] {
    object-fit: cover;
  }

li.splt3[b-c1uhmnxfru] {
    align-items: center;
    display: flex;
    gap: 10px;
}


    li.splt3 .info[b-c1uhmnxfru] {
        padding: 0;
        display: grid;
        grid-template-columns: 1fr auto;
        width: 100%;
        box-sizing: border-box;
    }

  li.splt3 .name[b-c1uhmnxfru] {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

    li.splt3 .count[b-c1uhmnxfru] {
        padding: 5px;
        background: rgba(0,0,0,0.5);
        border-radius: 5px;
        margin: 0;
        min-width: 20px;
        text-align: center;
    }

        li.splt3 .count p[b-c1uhmnxfru] {
            font-size: 0.9rem;
        }

.indicator[b-c1uhmnxfru] {
  position: absolute;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background: orange;
  right: 10px;
  bottom: 8px;
  animation: pulse-b-c1uhmnxfru 2s infinite;
}

.contextmenu[b-c1uhmnxfru] {
  width: 30px;
}

@keyframes pulse-b-c1uhmnxfru {
    0% {
        opacity: 100%;
    }

  50% {
    opacity: 50%;
  }

  100% {
    opacity: 100%;
  }
}
/* _content/CheckIT/Components/Shared/LeftMenu/ItemGroup.razor.rz.scp.css */

.leftmodule[b-wrirl8lf6n] {
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    padding: 0 0 0 0;
    position: relative;
}

h3[b-wrirl8lf6n] {
    font-size: 1.1rem;
    margin: 5px 0;
    padding: 10px;
    text-align: center;
    font-weight: normal;
    letter-spacing: 0.1rem;
}

ul.navigationlist[b-wrirl8lf6n] {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.menu[b-wrirl8lf6n] {
  position: absolute;
  right: 5px;
  top: 10px;
  width: 30px;
}
/* _content/CheckIT/Components/Shared/LeftMenu/Left.razor.rz.scp.css */
aside[b-roq78gdosx] {
    border-radius: 0px;
    color: white;
    margin: 5px 0 5px 5px;
    position: relative;
    display: flex;
    padding: 0 5px 0 0;
    overflow: auto;
    flex-direction: column;
    gap: 5px;
}
/* _content/CheckIT/Components/Shared/LeftMenu/Menu.razor.rz.scp.css */
.leftmenu[b-pmtibgas14] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    user-select: none;
}
/* _content/CheckIT/Components/Shared/Modals/Modal.razor.rz.scp.css */
.modal[b-9n2oyulvzh] {
  position: absolute;
  top: calc(50% - 300px);
  bottom: auto;
  left: calc(50% - 500px);
  background: rgba(0, 0, 0, 0.6);
  overflow: hidden;
  border-radius: 10px;
  box-shadow: none;
  display: grid;
  transition: box-shadow 0.5s, top 0.5s, left 0.5s, width 0.5s, height 0.5s;
  animation: ShowModal-b-9n2oyulvzh 0.6s ease-in-out;
  pointer-events: all;
  border-radius: 8px;
}

.wrapper[b-9n2oyulvzh] {
    display: grid;
    grid-template-rows: auto 1fr;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    border-radius: 8px;
}

.modal.closed[b-9n2oyulvzh] {
    animation: CloseModal-b-9n2oyulvzh 0.3s ease-in-out forwards;
    pointer-events: none;
}

    .modal.dragging[b-9n2oyulvzh] {
        opacity: 0.95;
        transition: none;       
        user-select: none;
    }

    .modal.dragging p[b-9n2oyulvzh] {
        user-select: none;
    }

    .modal.noanimation[b-9n2oyulvzh] {
        transition: none;
    }

.modal.selected[b-9n2oyulvzh] {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

    .modal.fullscreen[b-9n2oyulvzh] {
        transition: all 0.5s;
        left: 250px !important;
        top: 0px !important;
        width: calc(100% - 250px) !important;
        height: 100% !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0;
    }

.resize.br[b-9n2oyulvzh] {
    position: absolute;
    right: -10px;
    bottom: -10px;
    height: 20px;
    width: 20px;
    cursor: nw-resize;
    border-radius: 0 0 10px 0;
}

  .resize.br[b-9n2oyulvzh]::after {
    position: absolute;
    right: 10px;
    bottom: 10px;
    height: 10px;
    width: 10px;
    cursor: nw-resize;
    border-radius: 0 0 8px 0;
    border-right: 2px rgba(255, 255, 255, 0.3) solid;
    content: '';
    border-bottom: 2px rgba(255, 255, 255, 0.3) solid;
  }

@keyframes GoFullScreen-b-9n2oyulvzh {
    from {
        box-shadow: 0 0 10px black;
    }
    to {

    }
}


@keyframes CloseModal-b-9n2oyulvzh {
    from {
        transform: scale(1,1);
        opacity: 1;
    }

    to {
        transform: scale(0.95,0.95);
        opacity: 0;
    }
}

@keyframes ShowModal-b-9n2oyulvzh {
    0% {
        opacity: 0;
    }
    50% {
        transform: scale(0.95,0.95);
        opacity: 0;
    }
    100% {
        transform: scale(1,1);
        opacity:1;
    }
}

.top[b-9n2oyulvzh] {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 0 5px;
    box-sizing: border-box;
    user-select: none;
    background: rgba(255, 255, 255, 0);
}

.topbar[b-9n2oyulvzh] {
  position: relative;
  margin-left: 55px;
  display: grid;
}

.drager[b-9n2oyulvzh] {
    position: absolute;
    left: 0;
    right: 10px;
    top: 0;
    bottom: 0;
    cursor: grab;
}

.drager:active[b-9n2oyulvzh] {
    cursor: grabbing;
}

h3.title[b-9n2oyulvzh] {
  color: white;
  font-size: 1.2rem;
  text-align: center;
  padding: 10px 0 10px 10px;
  font-weight: normal;
  margin: 0 10px 0 0;
  letter-spacing: 0.1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

ul.actions[b-9n2oyulvzh] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    list-style: none;
    padding: 0;
}

  ul.actions li[b-9n2oyulvzh] {
    height: 15px;
    aspect-ratio: 1/1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
  }

    ul.actions li .actionbutton[b-9n2oyulvzh] {
      transition: all 0.2s;
      height: 15px;
      aspect-ratio: 1/1;
      display: flex;
      border-radius: 100%;
      align-items: center;
      justify-content: center;
    }

    ul.actions li.close .actionbutton[b-9n2oyulvzh] {
      background-color: rgb(252, 70, 70);
    }

    ul.actions li.maximize .actionbutton[b-9n2oyulvzh], ul.actions li.normalize .actionbutton[b-9n2oyulvzh] {
      background-color: rgb(40, 192, 49);
    }

    ul.actions li:hover .actionbutton[b-9n2oyulvzh] {
      box-shadow: 0 0 3px black;
    }

li p.icon[b-9n2oyulvzh] {
    transition: all 0.2s;
    margin: 0;
    padding: 0;
    color: rgba(10, 10, 10, 0.8);
    font-size: 0.7rem;
    opacity: 0;
}

.top:hover li p.icon[b-9n2oyulvzh] {
    opacity: 1;
}

li.close[b-9n2oyulvzh] {
    
}

.content[b-9n2oyulvzh] {
    display: grid;
    overflow: auto;
}
/* _content/CheckIT/Components/Shared/Modals/ModalManager.razor.rz.scp.css */
.modals[b-biby6j522l] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    pointer-events: none;
    overflow: hidden;
    opacity: 1;
    transition: all 0.2s;
}

.modals.transparentmode[b-biby6j522l] {
  z-index: 0;
}
/* _content/CheckIT/Components/Shared/Modals/ModalMap.razor.rz.scp.css */
.map[b-iyjy021ezd] {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: auto;
}

  .map.edit[b-iyjy021ezd] {
    grid-template-rows: auto auto 1fr auto;
  }

.contextwrapper[b-iyjy021ezd] {
    position: relative;
}

.head[b-iyjy021ezd] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 10px 0;
  position: relative;
}

.edit[b-iyjy021ezd] {
  margin: 5px;
}

.menu[b-iyjy021ezd] {
  position: absolute;
  right: 20px;
  height: 30px;
  width: 30px;
  color: white;
}

.circle[b-iyjy021ezd] {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  overflow: hidden;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}

  .circle img[b-iyjy021ezd] {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
  }

iframe[b-iyjy021ezd] {
  height: 100%;
  width: 100%;
  border: none;
  margin: 0;
  padding: 0;
}

.main[b-iyjy021ezd] {
  overflow: auto;
}
/* _content/CheckIT/Components/Shared/Modals/MsgBox.razor.rz.scp.css */
.msgbox[b-iqm0cwcupy] {
    display: grid;
    grid-template-rows: 1fr auto;
}

.main[b-iqm0cwcupy] {
  display: flex;
  justify-content: center;
  align-items: center;
}

p[b-iqm0cwcupy] {
  margin: 10px 20px;
}
/* _content/CheckIT/Components/Shared/Modals/MultilinePrompt.razor.rz.scp.css */
.prompt[b-wrqo0ozivk] {
  display: grid;
  grid-template-rows: 1fr auto;
}

.main[b-wrqo0ozivk] {
  display: grid;
  grid-template-rows: auto 1fr;
}

.main p[b-wrqo0ozivk] {
    text-align: center;
}

textarea[b-wrqo0ozivk] {
  display: inline-block;
  box-sizing: border-box;
  margin: 5px;
  outline: none;
  padding: 7px 15px;
  font-size: 1rem;
  border: 1px rgba(255, 255, 255, 0.3) solid;
  border-radius: 5px;
  transition: all 0.3s;
  background: rgba(255, 255, 255,0.1);
  resize: none;
}
/* _content/CheckIT/Components/Shared/Modals/Prompt.razor.rz.scp.css */
.prompt[b-1ypdd9mhkx] {
  display: grid;
  grid-template-rows: 1fr auto;
}

.main[b-1ypdd9mhkx] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 10px;
}

p[b-1ypdd9mhkx] {
    text-align: center;
}
/* _content/CheckIT/Components/Shared/Modals/Select.razor.rz.scp.css */
.prompt[b-oz3cd9x95c] {
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: auto;
}

.main[b-oz3cd9x95c] {
  display: grid;
  padding: 10px;
  overflow: auto;
  grid-template-rows: auto 1fr;
}

p[b-oz3cd9x95c] {
    text-align: center;
}
/* _content/CheckIT/Components/Shared/OnlineBullet.razor.rz.scp.css */
.onlinebullet[b-fzirkfmm7n] {
  pointer-events: none;
  background: rgb(40, 192, 49);
  border-radius: 100%;
  animation: infinite pulse-b-fzirkfmm7n 3s;
  border: 1px white solid;
  height: 15px;
  width: 15px;
}

@keyframes pulse-b-fzirkfmm7n {
  0% {
    background: rgb(0, 152, 0);
  }

  50% {
    background: rgb(40, 192, 49);
  }

  100% {
    background: rgb(0, 152, 0);
  }
}
/* _content/CheckIT/Components/Shared/Overlay.razor.rz.scp.css */
.overlay[b-sdysdat0xb] {
    position: fixed;
    top: -10000px;
    right: -10000px;
    bottom: -10000px;
    left: -10000px;
    z-index: 1;
    cursor: default;
}
/* _content/CheckIT/Components/Shared/ResourceLink.razor.rz.scp.css */
.resourcelink[b-2hikdtx3s4] {
  overflow: hidden;
  display: flex;
  align-items: center;
}

p[b-2hikdtx3s4] {
  padding: 5px 10px;
  margin: 0;
  display: inline;
  text-wrap: nowrap;
  text-wrap-mode: nowrap;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

p.clickable[b-2hikdtx3s4] {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

  p.clickable:hover[b-2hikdtx3s4] {
    background: rgba(255, 255, 255, 0.2);
  }
/* _content/CheckIT/Components/Shared/SideMenu.razor.rz.scp.css */
.sidemenu[b-tfcf3r6llh] {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
}

img[b-tfcf3r6llh] {
  width: calc(100% - 10px);
  margin: 5px 0 0 5px;
  box-sizing: border-box;
  border-radius: 5px;
}

h1[b-tfcf3r6llh] {
    font-size: 1.2rem;
    margin: 0 5px 0 5px;
    padding: 12px;
    text-align: center;
    font-weight: normal;
    letter-spacing: 0.1rem;
}

ul[b-tfcf3r6llh] {
    list-style: none;
    margin: 0;
    padding: 5px;
    display: grid;
    grid-gap: 5px;
    grid-template-rows: auto auto 1fr auto;
    box-sizing: border-box;
}

li[b-tfcf3r6llh] {
  background: rgba(0,0,0,0.5);
  margin: 0;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.bottom[b-tfcf3r6llh] {
    text-align: center;
}

  .bottom p[b-tfcf3r6llh] {
    margin: 0;
    padding: 8px 0;
    cursor: pointer;
    font-size: 0.9rem;
  }

    .bottom p:hover[b-tfcf3r6llh] {
        text-decoration: underline;
    }
/* _content/CheckIT/Components/Shared/SimpleLoadingIndicator.razor.rz.scp.css */
.loadingindicator[b-v7xvw3c9dy] {
    display: contents;
}

.stage[b-v7xvw3c9dy] {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 5px 0;
    margin: 0;
    animation: ShowDelay-b-v7xvw3c9dy 0.5s linear;
}

.dots[b-v7xvw3c9dy] {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.5);
    animation: flashing-b-v7xvw3c9dy 1s infinite linear alternate;
    animation-delay: 0s;
    animation-delay: 0.5s;
}

    .dots[b-v7xvw3c9dy]::before, .dots[b-v7xvw3c9dy]::after {
        content: "";
        display: inline-block;
        position: absolute;
        background-color: rgba(255, 255, 255, 0.5);
        top: 0;
    }

.dots[b-v7xvw3c9dy]::before {
    left: -15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    animation: flashing-b-v7xvw3c9dy 1s infinite alternate;
    animation-delay: 0s;
    animation-delay: 0s;
}

.dots[b-v7xvw3c9dy]::after {
    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    animation: flashing-b-v7xvw3c9dy 1s infinite alternate;
    animation-delay: 0s;
    animation-delay: 1s;
}

@keyframes flashing-b-v7xvw3c9dy {
    0% {
        background-color: rgba(255, 255, 255, 0.5);
    }

    50%, 100% {
        background-color: rgba(255, 255, 255, 0.9);
    }
}

@keyframes ShowDelay-b-v7xvw3c9dy {
    0% {
        opacity: 0
    }

    90% {
        opacity: 0
    }

    100% {
        opacity: 1;
    }
}
/* _content/CheckIT/Components/Shared/Table.razor.rz.scp.css */
.tablewrapper[b-ejobfn5i4m] {
  display: grid;
  grid-template-rows: auto 1fr;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.wrapper[b-ejobfn5i4m] {
  overflow: auto;
}

.table[b-ejobfn5i4m] {
  color: white;
  margin: 0px;
  font-size: 1rem;
  height: 100%;
  overflow: auto;
  display: grid;
  position: relative;
  grid-template-rows: 1fr auto;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
}

[b-ejobfn5i4m] table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  overflow: auto;
}

[b-ejobfn5i4m] thead {
  vertical-align: bottom;
  background-color: rgba(155,155,155,0.5);
  position: sticky;
  top: 0;
  z-index: 2;
}

  [b-ejobfn5i4m] thead tr {
    position: relative;
    height: 36px;
  }

[b-ejobfn5i4m] tr {
  transition: all 0.2s;
}

[b-ejobfn5i4m] tbody {
  overflow-y: auto;
}

[b-ejobfn5i4m] td {
  border: none !important;
}

  [b-ejobfn5i4m] tbody tr {
    cursor: pointer;
  }

  [b-ejobfn5i4m] table.noclick tbody tr {
    cursor: default;
  }

    [b-ejobfn5i4m] tbody tr:hover {
      background: rgba(0,0,0,0.5);
    }

[b-ejobfn5i4m] table span {
  margin: 10px;
  display: block;
  text-align: left;
  text-wrap: nowrap;
  text-wrap-mode: nowrap;
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[b-ejobfn5i4m] .headblur {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 38px;
}


[b-ejobfn5i4m] td.tools > ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0 5px 0 0;
  padding: 0;
  gap: 5px;
}

[b-ejobfn5i4m] .tools {
    width: 10px;
}

[b-ejobfn5i4m] td.tools li {
  position: relative;
}

[b-ejobfn5i4m] td.tools ul .btn {

}

  [b-ejobfn5i4m] td.tools ul .btn:hover {
    background: rgba(255, 255, 255, 0.3);
  }

  [b-ejobfn5i4m] td.tools ul .btn p.icon {
    margin: 0;
    transition: all 0.5s; 
  }

[b-ejobfn5i4m] td.status > span {
  border-radius: 5px;
  text-align: center;
  font-size: 0.9rem;
  display: inline;
  padding: 2px 5px;
}

  [b-ejobfn5i4m] td.status > span.okay {
    background: rgba(0, 255, 0, 0.3);
  }

  [b-ejobfn5i4m] td.status > span.warning {
    background: rgba(255, 180, 0, 0.5);
  }

  [b-ejobfn5i4m] td.status > span.error {
    background: rgba(255, 0, 0, 0.3);
  }


.menu[b-ejobfn5i4m] {
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  border: 1px transparent dashed;
  border-bottom-width: 1px;
  border-bottom-style: dashed;
  border-bottom-color: transparent;
  border-bottom: 1px rgba(255,255,255,0.2) solid;
  background: rgba(255, 255, 255, 0.2);
  grid-gap: 0;
}


[b-ejobfn5i4m] .tablefoot {
  display: grid;
  grid-template-columns: 1fr auto;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}

[b-ejobfn5i4m] ul.pagination {
  display: flex;
  list-style: none;
  color: white;
  margin: 0;
  gap: 5px;
  padding: 5px;
  justify-content: center;
  height: 33px;
}

  [b-ejobfn5i4m] ul.pagination li {
    background: rgba(0, 0, 0, 0.5);
    padding: 0 15px;
    text-align: center;
    border-radius: 5px;
    margin: 0;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px rgba(255, 255, 255, 0) solid;
    display: flex;
    justify-content: center;
    align-items: center;
  }

    [b-ejobfn5i4m] ul.pagination li:hover {
      background: rgba(0, 0, 0, 0.3);
    }

    [b-ejobfn5i4m] ul.pagination li.selected {
      cursor: default;
      background: rgba(0, 0, 0, 0.5);
      border: 1px rgba(255, 255, 255, 0.6) solid;
    }
/* _content/CheckIT/Components/Shared/TableHead.razor.rz.scp.css */
th[b-ef3jsw88dt] {
  cursor: pointer;
  user-select: none;
  position: relative;
}

  th[b-ef3jsw88dt]:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    transition: all 0.3s;
  }

  th:hover[b-ef3jsw88dt]:before {
    background: rgba(255, 255, 255, 0.2);
  }

.headcontent[b-ef3jsw88dt] {
    display: flex;
}

.sortindicator[b-ef3jsw88dt] {
  font-family: IcoMoon, sans-serif;
  user-select: none;
  pointer-events: none;
  margin-right: 0;
}
/* _content/CheckIT/Components/Shared/Toast/ToastMenu.razor.rz.scp.css */
.toastmenu[b-79dpapxqsx] {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 300px;
    z-index: 1000000;
    overflow: hidden;
}

ul[b-79dpapxqsx] {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
}
/* _content/CheckIT/Components/Shared/Toast/ToastMessage.razor.rz.scp.css */
.toastmessage[b-bc0yfu73hj] {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(100px);
    border-radius: 10px;
    color: white;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    animation: Show-b-bc0yfu73hj 1s ease-in-out;
    margin-bottom: 5px;
}

.toastmessage.withicon[b-bc0yfu73hj] {
    grid-template-columns: auto 1fr;
}

    .toastmessage.hide[b-bc0yfu73hj] {
        animation: Hide-b-bc0yfu73hj 0.5s ease-in-out forwards;
    }

.center[b-bc0yfu73hj] {
    display: flex;
    flex-direction: column;
    padding: 10px 10px 10px 15px;
}

.top[b-bc0yfu73hj] {
    display: grid;
    grid-template-columns: 1fr auto;
}

h2[b-bc0yfu73hj] {
    margin: 0;
    font-size: 1.2rem;
    padding: 0 0 5px 0;
    font-weight: normal;
    letter-spacing: 0.1rem;
}

p[b-bc0yfu73hj] {
    margin: 0;
    padding: 0;

}

.close[b-bc0yfu73hj] {
    position: relative;
    width: 22px;
}

    .close .button[b-bc0yfu73hj] {
        position: absolute;
        top: -10px;
        right: -5px;
        left: -5px;
        bottom: -5px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .close .icon[b-bc0yfu73hj] {
        margin: 0;
        padding: 0;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.3);
        transition: all 0.3s;
        cursor: pointer;
    }

    .close .icon:hover[b-bc0yfu73hj] {
        color: rgba(255, 255, 255, 1);
    }

.left[b-bc0yfu73hj] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
}

    .left .icon[b-bc0yfu73hj] {
        font-size: 2rem;
    }

@keyframes Show-b-bc0yfu73hj
{
    from {
        opacity: 0;
        transform: translate(50px, 0);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes Hide-b-bc0yfu73hj {
    0% {
        opacity: 1;
        max-height: 200px;
    }

    30% {
        opacity: 0;
        max-height: 200px;
        margin-bottom: 5px;
    }

    100% {
        opacity: 0;
        max-height: 0px;
        margin-bottom: 0;
    }
}

.icon[b-bc0yfu73hj] {
    user-select: none;
}
/* _content/CheckIT/Components/Shared/Toggle.razor.rz.scp.css */
.toggle[b-s706qfibhr] {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.centerswitch[b-s706qfibhr] {
    margin: 0;
}
/* _content/CheckIT/Components/Shared/Toolbar.razor.rz.scp.css */
.toolbar[b-7eu6azlpqx] {
    display: flex;
    justify-content: center;
    color: white;
    user-select: none;
}

 ul.actions[b-7eu6azlpqx] {
    display: flex;
    list-style: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    margin: 5px;
    padding: 0;
    border: 1px rgba(255, 255, 255, 0.2) solid;
    overflow: hidden;
}

    ul.actions[b-7eu6azlpqx]  li.seperator {
        width: 1px;
        background: rgba(255, 255, 255, 0.1);
        padding: 0;
        margin: 2px 0;
    }

    ul.actions[b-7eu6azlpqx]  li {
        display: grid;
        grid-template-columns: 20px auto;
        margin: 0;
        padding: 0 20px;
        transition: all 0.2s;
        cursor: pointer;
    }

        ul.actions[b-7eu6azlpqx]  li:hover, [b-7eu6azlpqx] .image .btn:hover {
            background: rgba(0, 0, 0, 0.2)
        }

        ul.actions[b-7eu6azlpqx]  li:active, .image[b-7eu6azlpqx]  .btn:active {
            background: rgba(0, 0, 0, 0.5)
        }

      ul.actions[b-7eu6azlpqx]  li p, [b-7eu6azlpqx] .image .btn p {
        font-size: 0.9rem;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

        ul.actions[b-7eu6azlpqx]  li.selected {
            background: rgba(0,0,0,0.5);
        }

        ul.actions[b-7eu6azlpqx]  li:active {
            background: rgba(0,0,0,0.8);
        }

        ul.actions[b-7eu6azlpqx]  li.hoverred:hover {
            background: var( --colors-red);
        }

        ul.actions[b-7eu6azlpqx]  li.hoveryellow:hover {
            background: var( --colors-yellow);
        }

        ul.actions[b-7eu6azlpqx]  li.hovergreen:hover {
            background: var( --colors-green);
        }

  ul.actions[b-7eu6azlpqx]  li.disabled {
    cursor: default;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.5);
  }
/* _content/CheckIT/Components/Shared/UserCircle.razor.rz.scp.css */
.usericon[b-a3gc3ekm4r] {
  position: relative;
  display: flex;
  align-items: center;
}

.usericon img[b-a3gc3ekm4r] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  max-height: none;
}

.imagecycle[b-a3gc3ekm4r] {
  aspect-ratio: 1/1;
  max-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 80px;
  border: 1px white solid;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}
/* _content/CheckIT/Components/Shared/UserModule.razor.rz.scp.css */
.usermodule[b-t9wtlv07z0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.usericon[b-t9wtlv07z0] {
    height: 70px;
    width: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    border: 1px white solid;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

   .usericon img[b-t9wtlv07z0] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: none;
        max-height: none;
    }

img.bluryusericon[b-t9wtlv07z0] {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 180px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.2;
    width: 100%;
    object-fit: cover;
    max-width: none;
    max-height: none;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
}

.usermodule:hover .bluryusericon[b-t9wtlv07z0] {
    left: -10%;
    width: 120%;
    height: 120%;
}

.menu[b-t9wtlv07z0] {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 30px;
    width: 30px;
}

.btns[b-t9wtlv07z0] {
    display: flex;
    gap: 10px;
}

.btn[b-t9wtlv07z0] {
    padding: 5px 10px;
    border-radius: 5px;
    background: rgba(255,255,255,0.3);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn:hover[b-t9wtlv07z0] {
    background: rgba(255,255,255,0.5);
}

.logout .btn[b-t9wtlv07z0] {
    background: var(--colors-red);
}

    .logout .btn:hover[b-t9wtlv07z0] {
        background: var(--colors-redhover);
    }

.logout[b-t9wtlv07z0], .logout form[b-t9wtlv07z0] {
    display: contents;
}


.logoutbtn .btn[b-t9wtlv07z0] {
    background: var(--colors-red);
    grid-gap: 10px;
    border-radius: 0;
}

    .logoutbtn .btn:hover[b-t9wtlv07z0] {
        background: var(--colors-redhover);
    }


.logoutbtn[b-t9wtlv07z0], .logoutbtn form[b-t9wtlv07z0] {
    display: contents;
}

    .logoutbtn p[b-t9wtlv07z0] {
        text-align: left;
        font-size: 1rem;
        margin: 5px 0; 
    }

#snow[b-t9wtlv07z0] {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
  top: 0;
  border-radius: 5px;
  pointer-events: none;
}
/* _content/CheckIT/Components/SystemSettings/General.razor.rz.scp.css */
h2[b-2nfotcojap] {
  font-size: 1.1em;
  padding: 0;
  font-weight: normal;
  letter-spacing: 0.1rem;
  margin: 10px 0 15px 0;
  text-align: center;
  color: white;
}

ul[b-2nfotcojap] {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

li[b-2nfotcojap] {
  border: 1px transparent solid;
  transition: all 0.2s;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
}

li:hover[b-2nfotcojap], li.selected[b-2nfotcojap] {
  border: 1px white solid;
}

img[b-2nfotcojap] {
  height: 100px;
  width: 100px;
  object-fit: cover;
}
/* _content/CheckIT/Components/SystemSettings/Identities.razor.rz.scp.css */
.identities[b-z6a5vtuf0g] {
    margin: 0;
    overflow: auto;
    display: grid;
    position: relative;
    grid-template-rows: auto 1fr;
    color: white;
    border-radius: 5px;
}

[b-z6a5vtuf0g] p.status {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

[b-z6a5vtuf0g] p.status > span {
  padding: 5px 10px;
  display: inline;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

[b-z6a5vtuf0g]  p.okay > span {
  background: rgba(0, 255, 0, 0.3);
}

[b-z6a5vtuf0g] p.warning > span {
  background: rgba(255, 0, 0, 0.3);
}

.usericon[b-z6a5vtuf0g] {
    display: flex;
    justify-content: center;
    margin: 5px;
}

.imagecycle[b-z6a5vtuf0g] {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    border: 1px white solid;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

    .imagecycle img[b-z6a5vtuf0g] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-width: none;
        max-height: none;
    }
/* _content/CheckIT/Components/SystemSettings/Locations.razor.rz.scp.css */
.locations[b-3mtdfpuzmi] {
  color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.basicsettings table[b-3mtdfpuzmi] {
  border-spacing: 0 5px;
}

.basicsettings td[b-3mtdfpuzmi] {
  padding: 10px 20px;
  border: 0px rgba(255,255,255,0.3) solid;
  background: rgba(255, 255, 255, 0.1);
}

  .basicsettings td:first-child[b-3mtdfpuzmi] {
    border-radius: 5px 0 0 5px;
    border-right: 0;
  }

  .basicsettings td:last-child[b-3mtdfpuzmi] {
    border-radius: 0 5px 5px 0;
  }

.basicsettings tr[b-3mtdfpuzmi] {
  border: 1px rgba(255,255,255,0.3) solid;
}

input[b-3mtdfpuzmi] {
  border: none;
  outline: none;
  padding: 5px 10px;
  font-size: 1rem;
  transition: all 0.2s;
  color: white;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

  input:hover[b-3mtdfpuzmi] {
    background: rgba(255, 255, 255, 0.4);
  }

  input:focus[b-3mtdfpuzmi] {
    background: rgba(255, 255, 255, 0.9);
    color: black;
  }

p.storageusage[b-3mtdfpuzmi] {
  color: rgba(255, 255, 255, 0.5);
  margin: 10px 0 0 0;
  text-align: center;
}
/* _content/CheckIT/Components/SystemSettings/ServiceTool.razor.rz.scp.css */
h3[b-j366z0t1y5] {
    text-align: center;
}

.servicetool[b-j366z0t1y5] {
  color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.basicsettings table[b-j366z0t1y5] {
  border-spacing: 0 5px;
}

.basicsettings td[b-j366z0t1y5] {
  padding: 10px 20px;
  border: 0px rgba(255,255,255,0.3) solid;
  background: rgba(255, 255, 255, 0.1);
}

  .basicsettings td:first-child[b-j366z0t1y5] {
    border-radius: 5px 0 0 5px;
    border-right: 0;
  }

  .basicsettings td:last-child[b-j366z0t1y5] {
    border-radius: 0 5px 5px 0;
  }

.basicsettings tr[b-j366z0t1y5] {
  border: 1px rgba(255,255,255,0.3) solid;
}

input[type=number][b-j366z0t1y5] {
  border: none;
  outline: none;
  padding: 5px 10px;
  font-size: 1rem;
  transition: all 0.2s;
  color: white;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

  input[type=number]:hover[b-j366z0t1y5] {
    background: rgba(255, 255, 255, 0.4);
  }

  input[type=number]:focus[b-j366z0t1y5] {
    background: rgba(255, 255, 255, 0.9);
    color: black;
  }

input[type=text][b-j366z0t1y5] {
  border: none;
  outline: none;
  padding: 5px 10px;
  font-size: 1rem;
  transition: all 0.2s;
  color: white;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

  input[type=text]:hover[b-j366z0t1y5] {
    background: rgba(255, 255, 255, 0.4);
  }

  input[type=text]:focus[b-j366z0t1y5] {
    background: rgba(255, 255, 255, 0.9);
    color: black;
  }

p.selectedupdate[b-j366z0t1y5]  {
  padding: 0 10px;
  font-size: 1.1rem;
  margin: 0;
}

.updatestable[b-j366z0t1y5]   {
    border-radius: 5px;
    overflow: hidden;
}

.stats[b-j366z0t1y5] {
    display: flex;
    flex-direction: column;
}

  .stats p[b-j366z0t1y5] {
    color: rgba(255, 255, 255, 0.5);
    margin: 10px 0 0 0;
    text-align: center;
  }

section[b-j366z0t1y5] {
    margin: 0 0 20px 0;
}

.btns[b-j366z0t1y5] {
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
}

.btn[b-j366z0t1y5] {
  margin: 0 auto;
  display: inline-block;
  padding: 10px 20px;
  border: 1px rgba(255, 255, 255, 0.2) solid;
}

.btn:hover[b-j366z0t1y5] {
    background: rgba(255, 255, 255, 0.3);
}
/* _content/CheckIT/Components/SystemSettings/Settings.razor.rz.scp.css */
.settings[b-j0dokeiur4] {
    display: grid;
    grid-template-columns: 250px 1fr;
    background: rgba(0,0,0,0.3);
    overflow: auto;
}

content[b-j0dokeiur4] {
    display: grid;
    margin: 5px 5px 5px 0;
    grid-template-rows: auto 1fr;
    overflow: auto;
    border-radius: 5px;
    padding: 5px;
}

h1[b-j0dokeiur4] {
    font-size: 1.3rem;
    padding: 0;
    font-weight: normal;
    letter-spacing: 0.1rem;
    margin: 10px 0 15px 0;
    text-align: center;
    color: white;
}
/* _content/CheckIT/Components/SystemSettings/TaskCards.razor.rz.scp.css */
.taskcards[b-pz8cg5g7sb] {
  display: grid;
  border-radius: 10px;
  overflow: hidden;
}
/* _content/CheckIT/Components/Widgets/Widget.razor.rz.scp.css */
aside.widget[b-7t46amvrfd] {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 5px;
  border: 2px rgba(0, 0, 0, 0) solid;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: white;
  grid-template-rows: auto 1fr;
  transition: all 0.5s;
}

  aside.widget:hover[b-7t46amvrfd] {
    border: 2px rgba(0, 0, 0, 0.2) solid;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }

header[b-7t46amvrfd] {
  display: grid;
  grid-template-columns: 1fr auto;
}

ul.buttons[b-7t46amvrfd] {
  list-style: none;
  margin: 8px 8px 0 0;
  padding: 0;
  display: flex;
}

  ul.buttons li[b-7t46amvrfd] {
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
  }

  ul.buttons li:hover[b-7t46amvrfd] {
      background: rgba(0,0,0,0.5);
  }

ul.buttons li p[b-7t46amvrfd] {
    margin: 0;
}

h3[b-7t46amvrfd] {
  text-align: center;
  margin: 10px 0 0 0;
  user-select: none;
}

content[b-7t46amvrfd] {
  padding: 3px 10px 10px 10px;
}
/* _content/CheckIT/Components/Widgets/Widgets.razor.rz.scp.css */
.widgets[b-0vzvfiwq35] {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
