@charset "UTF-8";
* {
  box-sizing: border-box;
  background: initial;
  border: initial;
  outline: initial;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: initial;
  padding: initial;
}
* {
  scrollbar-width: thin;
}
* > ::-webkit-scrollbar {
  height: 3px;
  width: 3px;
  background-color: transparent;
}
* > ::-webkit-scrollbar-corner {
  background-color: transparent;
}
* > ::-webkit-scrollbar-thumb {
  background-color: #7f7f7f;
}
:root {
  --box-shadow: 0px 4px 8px -4px rgba(127, 127, 127, 1);
  --caption-font-size: 12px;
  --font-size: 15px;
  --font-weight: 400;
  --bold-font-weight: 900;
  --line-height: 1.5;
  --header-one-font-size: 24px;
  --header-two-font-size: 24px;
  --header-three-font-size: 21px;
  --header-four-font-size: 21px;
  --header-five-font-size: 18px;
  --header-six-font-size: 18px;
  --padding: 8px;
  --padding-2: 16px;
  --padding-3: 32px;
  --padding-4: 64px;
}
@media (max-width: 720px) {
  :root {
    --padding: 4px;
    --padding-2: 8px;
    --padding-3: 16px;
    --padding-4: 32px;
  }
}
html {
  background-color: #f8fafb;
  color: #44566c;
  font-family: "Roboto", sans-serif;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
hr {
  border-top: 1px solid rgba(127, 127, 127, 0.25);
}
b, strong {
  font-weight: var(--font-weight);
}
.material-icons {
  font-size: inherit;
  line-height: inherit;
  vertical-align: baseline;
}
.icon-sphere {
  border: 1px solid #6ea732;
  border-radius: 100px;
  color: #6ea732;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.opacity-100 {
  opacity: 1;
}
.opacity-75 {
  opacity: 0.75;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-25 {
  opacity: 0.25;
}
.opacity-0 {
  opacity: 0;
}
.text-bold {
  font-weight: var(--bold-font-weight);
}
.text-overflow {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.caption {
  display: block;
  font-size: var(--caption-font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
}
p {
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
}
h6 {
  font-size: var(--header-six-font-size);
  font-weight: var(--bold-font-weight);
  line-height: var(--line-height);
}
h5 {
  font-size: var(--header-five-font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
}
h4 {
  font-size: var(--header-four-font-size);
  font-weight: var(--bold-font-weight);
  line-height: var(--line-height);
}
h3 {
  font-size: var(--header-three-font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
}
h2 {
  font-size: var(--header-two-font-size);
  font-weight: var(--bold-font-weight);
  line-height: var(--line-height);
}
h1 {
  font-size: var(--header-one-font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
}
table {
  border-collapse: separate;
  border-spacing: 0px var(--padding-2);
  padding: var(--padding-2);
  width: 100%;
  overflow: hidden;
}
table tbody:not(:first-child) tr {
  box-shadow: var(--box-shadow);
  border-radius: var(--padding);
  overflow: hidden;
}
table tr th {
  font-size: var(--caption-font-size);
  font-weight: var(--bold-font-weight);
  line-height: var(--line-height);
  text-transform: uppercase;
  position: relative;
  padding: var(--padding-2) var(--padding-3);
  overflow: hidden;
}
table tr th:first-child {
  border-top-left-radius: var(--padding);
  border-bottom-left-radius: var(--padding);
}
table tr th:last-child {
  border-top-right-radius: var(--padding);
  border-bottom-right-radius: var(--padding);
}
table tr td {
  background-color: #ffffff;
  color: #7f7f7f;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
  position: relative;
  padding: var(--padding-2) var(--padding-3);
  transition: 0.4s background-color;
  overflow: hidden;
}
table tr td:first-child {
  border-top-left-radius: var(--padding);
  border-bottom-left-radius: var(--padding);
}
table tr td:last-child {
  border-top-right-radius: var(--padding);
  border-bottom-right-radius: var(--padding);
}
table tr:hover td {
  background-color: #f8fafb;
}
.clickable {
  cursor: pointer;
}
.clickable:hover {
  text-decoration: underline;
}
input, .input {
  background-color: #f8fafb;
  color: #44566c;
  border-radius: var(--padding);
  display: block;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
  padding: var(--padding-2) var(--padding-3);
  width: 100%;
}
textarea {
  background-color: #f8fafb;
  color: #44566c;
  border-radius: var(--padding);
  display: block;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
  padding: var(--padding-2) var(--padding-3);
  width: 100%;
  resize: vertical;
}
select {
  background-color: #f8fafb;
  color: #44566c;
  border-radius: var(--padding);
  cursor: pointer;
  display: block;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
  padding: var(--padding-2) var(--padding-3);
  width: 100%;
}
button, .button {
  background-color: #44566c;
  color: #f8fafb;
  border-radius: var(--padding);
  cursor: pointer;
  display: block;
  font-size: var(--font-size);
  font-weight: var(--font-weight);
  line-height: var(--line-height);
  text-align: center;
  padding: var(--padding-2) var(--padding-3);
  width: 100%;
}
iframe {
  aspect-ratio: 1;
  display: block;
  width: 100%;
  max-width: 100%;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
}
[href] {
  cursor: pointer;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.base-padding {
  padding: var(--padding);
}
.padding {
  padding: var(--padding);
}
.padding-4 {
  padding: 4px;
}
.padding-8 {
  padding: var(--padding);
}
.padding-8-16 {
  padding: var(--padding) var(--padding-2);
}
.padding-8-32 {
  padding: var(--padding) var(--padding-3);
}
.padding-16 {
  padding: var(--padding-2);
}
.padding-16-32 {
  padding: var(--padding-2) var(--padding-3);
}
.padding-32 {
  padding: var(--padding-3);
}
.fill {
  width: 100%;
  height: 100%;
}
.fill-width {
  width: 100%;
}
.fill-height {
  height: 100%;
}
.oxa {
  overflow-x: auto;
}
.oxh {
  overflow-x: hidden;
}
.oya {
  overflow-y: auto;
}
.oyh {
  overflow-y: hidden;
}
.row {
  display: flex;
  align-items: center;
}
.aifs {
  align-items: flex-start;
}
.aic {
  align-items: center;
}
.aife {
  align-items: flex-end;
}
.jcfs {
  justify-content: flex-start;
}
.jcc {
  justify-content: center;
}
.jcfe {
  justify-content: flex-end;
}
.row .row-fill {
  flex-grow: 1;
  width: 0%;
}
.row.row-gap {
  gap: var(--padding);
}
.avatar {
  border-radius: 45px;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 45px;
  height: 45px;
}
.icon-button {
  cursor: pointer;
  text-align: center;
  padding: var(--padding);
  width: 100%;
}
.icon-button .icon-button-content {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 4px;
  overflow: hidden;
}
.icon-button .icon-button-content .icon-button-label {
  background-color: #f8fafb;
  color: #44566c;
  font-size: var(--caption-font-size);
  padding: var(--padding);
  transition: 0.4s background-color;
}
.icon-button:hover .icon-button-content .icon-button-label {
  background-color: transparent;
}
.icon-button.icon-button-horizontal {
  text-align: left;
  width: 100%;
}
.icon-button.icon-button-horizontal .icon-button-content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.icon-button.icon-button-horizontal .icon-button-content .icon-button-label {
  flex-grow: 1;
  width: 0%;
}
@media (max-width: 1440px) {
  :root {
    --caption-font-size: 9px;
    --font-size: 12px;
    --font-weight: 400;
    --bold-font-weight: 900;
    --line-height: 1.5;
    --header-one-font-size: 21px;
    --header-two-font-size: 21px;
    --header-three-font-size: 18px;
    --header-four-font-size: 18px;
    --header-five-font-size: 15px;
    --header-six-font-size: 15px;
  }
  table {
    border-spacing: 0px var(--padding);
    padding: var(--padding);
  }
  table tr th {
    padding: var(--padding);
  }
  table tr td {
    padding: var(--padding);
  }
}
.image-list .image-list-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--padding);
  padding: var(--padding);
}
.image-list .image-list-content img {
  border-radius: var(--padding);
  box-shadow: var(--box-shadow);
  object-fit: cover;
  object-position: center;
  aspect-ratio: 1.7777777778;
  width: calc((100% - var(--padding) * 4) / 5);
  transition: 0.4s transform, 0.4s box-shadow;
}
.image-list .image-list-content img:hover {
  box-shadow: var(--box-shadow);
  transform: translateY(var(--padding) * -1);
}
.box {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: fixed;
  padding-top: 32px;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 100;
  overflow-y: auto;
}
.box .box-offset {
  position: relative;
  width: 100%;
  max-width: 960px;
}
.box .box-offset .box-content {
  background-color: white;
  color: black;
  border-radius: 16px;
  min-height: 64px;
  overflow: hidden;
}
.box .box-offset .box-button-close {
  background-color: #e9edf0;
  color: #44566c;
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  transition: 0.4s opacity;
}
.box .box-offset .box-button-close:hover {
  opacity: 0.5;
}
.col-wrap {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.col {
  width: 100%;
}
@media (min-width: 1279px) {
  .col-d {
    flex-grow: 1;
    width: 0%;
  }
  .col-d-1 {
    width: 8.3333333333%;
  }
  .col-d-2 {
    width: 16.6666666667%;
  }
  .col-d-3 {
    width: 25%;
  }
  .col-d-4 {
    width: 33.3333333333%;
  }
  .col-d-5 {
    width: 41.6666666667%;
  }
  .col-d-6 {
    width: 50%;
  }
  .col-d-7 {
    width: 58.3333333333%;
  }
  .col-d-8 {
    width: 66.6666666667%;
  }
  .col-d-9 {
    width: 75%;
  }
  .col-d-10 {
    width: 83.3333333333%;
  }
  .col-d-11 {
    width: 91.6666666667%;
  }
  .col-d-12 {
    width: 100%;
  }
}
@media (min-width: 639px) and (max-width: 1280px) {
  .col-t {
    flex-grow: 1;
    width: 0%;
  }
  .col-t-1 {
    width: 8.3333333333%;
  }
  .col-t-2 {
    width: 16.6666666667%;
  }
  .col-t-3 {
    width: 25%;
  }
  .col-t-4 {
    width: 33.3333333333%;
  }
  .col-t-5 {
    width: 41.6666666667%;
  }
  .col-t-6 {
    width: 50%;
  }
  .col-t-7 {
    width: 58.3333333333%;
  }
  .col-t-8 {
    width: 66.6666666667%;
  }
  .col-t-9 {
    width: 75%;
  }
  .col-t-10 {
    width: 83.3333333333%;
  }
  .col-t-11 {
    width: 91.6666666667%;
  }
  .col-t-12 {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .col-s {
    flex-grow: 1;
    width: 0%;
  }
  .col-s-1 {
    width: 8.3333333333%;
  }
  .col-s-2 {
    width: 16.6666666667%;
  }
  .col-s-3 {
    width: 25%;
  }
  .col-s-4 {
    width: 33.3333333333%;
  }
  .col-s-5 {
    width: 41.6666666667%;
  }
  .col-s-6 {
    width: 50%;
  }
  .col-s-7 {
    width: 58.3333333333%;
  }
  .col-s-8 {
    width: 66.6666666667%;
  }
  .col-s-9 {
    width: 75%;
  }
  .col-s-10 {
    width: 83.3333333333%;
  }
  .col-s-11 {
    width: 91.6666666667%;
  }
  .col-s-12 {
    width: 100%;
  }
}
.context-menu {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.context-menu .context-menu-content {
  background-color: white;
  position: absolute;
}
.context-menu .context-menu-content .context-menu-button {
  cursor: pointer;
  padding: 12px 16px;
  transition: 0.4s opacity;
}
.context-menu .context-menu-content .context-menu-button:hover {
  opacity: 0.5;
}
.file-list .file-list-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.file-list .file-list-content .file-minimized {
  min-width: 180px;
  max-width: 180px;
}
.file-minimized .file-header .file-preview {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.file-minimized[type="Image"] .file-header .file-preview * {
  opacity: 0;
}
.file-minimized .file-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.file-minimized .file-offset {
  border-radius: var(--padding);
  position: relative;
  overflow: hidden;
}
.file-minimized .file-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: var(--padding);
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.file-minimized img {
  object-fit: cover;
  object-position: top;
  display: block;
  aspect-ratio: 1;
  width: 100%;
}
.file-minimized iframe {
  display: block;
  aspect-ratio: 1;
  width: 100%;
}
.file-minimized video {
  background-color: black;
  display: block;
  aspect-ratio: 1;
  width: 100%;
}
.file-maximized video {
  background-color: black;
  display: block;
  aspect-ratio: 1.7777777778;
  width: 100%;
}
.file-minimized:not(:hover) .file-footer {
  opacity: 0;
}
.file .file-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.file .file-button:hover {
  opacity: 0.5;
}
@media (max-width: 576px) {
  .file-list .file-list-content .file-minimized {
    min-width: 100%;
    max-width: 100%;
  }
}
.folder-list .folder-list-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.folder-list .folder-list-content .folder-minimized {
  min-width: 180px;
  max-width: 180px;
}
.folder-minimized .folder-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.folder-minimized .folder-offset {
  color: #44566c;
  border-radius: var(--padding);
  position: relative;
  overflow: hidden;
}
.folder-minimized .folder-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: var(--padding);
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.folder-minimized:not(:hover) .folder-footer {
  opacity: 0;
}
.folder .folder-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.folder .folder-button:hover {
  opacity: 0.5;
}
.folder-maximized .folder-header .folder-button {
  background-color: #ffffff;
}
@media (max-width: 576px) {
  .folder-list .folder-list-content .folder-minimized {
    min-width: 50%;
    max-width: 50%;
  }
}
.files-controller .files-controller-header .files-controller-input {
  background-color: transparent;
  color: inherit;
  border: 1px solid black;
  transition: 0.4s box-shadow;
}
.files-controller .files-controller-header .files-controller-input[hover="true"] {
  box-shadow: var(--box-shadow);
}
.files-controller .files-controller-content .file-element .file-element-offset {
  display: flex;
  flex-direction: row;
}
.files-controller .files-controller-content .file-element .file-element-offset .file-element-content {
  flex-grow: 1;
  width: 0%;
}
.files-controller .files-controller-content .file-element .file-element-offset .file-element-button-remove {
  cursor: pointer;
  transition: 0.4s opacity;
}
.files-controller .files-controller-content .file-element .file-element-offset .file-element-button-remove:hover {
  opacity: 0.5;
}
body[drop="true"] .files-controller .files-controller-header .files-controller-input {
  border: 1px dashed black;
}
.image-preview {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: fixed;
  left: 0%;
  top: 0%;
  padding: 36px;
  width: 100%;
  height: 100%;
  z-index: 100;
  overflow-y: auto;
}
.image-preview .image {
  box-shadow: 0px 9px 18px rgba(0, 0, 0, 0.25);
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
}
.image-thumbnail {
  cursor: pointer;
}
.notification-minimized .notification-offset {
  background-color: #f8fafb;
  color: #44566c;
  border-radius: var(--padding);
  position: relative;
  overflow: hidden;
  transition: 0.4s background-color, 0.4s box-shadow, 0.4s opacity;
}
.notification-minimized .notification-offset .notification-footer {
  background-color: #ffffff;
  color: #44566c;
  border-top-left-radius: var(--padding);
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.notification-minimized .notification-offset .notification-footer .notification-button {
  cursor: pointer;
}
.notification-minimized:not([is-read="true"]) .notification-offset {
  box-shadow: var(--box-shadow);
}
.notification-minimized[is-read="true"] .notification-offset {
  opacity: 0.5;
}
.notification-minimized[is-read="true"]:hover .notification-offset {
  opacity: 1;
}
.notification-minimized:not(:hover) .notification-offset .notification-footer {
  opacity: 0;
}
[object-user-is-read="false"] .object-user-is-read::after {
  background-color: #a7326e;
  color: white;
  content: "Nowe";
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 4px 32px;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg) translateY(100%);
}
[object-user-is-read="false"] td:first-child:after {
  background-color: #a7326e;
  color: white;
  content: "Nowe";
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 4px 32px;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg) translateY(100%);
}
form[name="Color"] .color-hsl-sphere {
  --h: 0;
  --s: 0;
  --l: 0;
  background: linear-gradient(to bottom, hsl(calc(var(--h) * 360), 100%, 100%), transparent, hsl(calc(var(--h) * 360), 100%, 0%)), linear-gradient(to right, hsl(calc(var(--h) * 360), 0%, 50%), hsl(calc(var(--h) * 360), 100%, 50%));
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
}
form[name="Color"] .color-hsl-sphere::after {
  content: "";
  display: block;
  border: 2px solid white;
  border-radius: 8px;
  box-shadow: 0px 0px 4px black;
  position: absolute;
  left: calc(var(--s) * 100%);
  top: calc((1 - var(--l)) * 100%);
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
}
.date-picker-form .date-picker-form-header {
  display: flex;
  align-items: center;
  padding: var(--padding);
  gap: var(--padding);
}
.date-picker-form .date-picker-form-header .date-picker-form-year-value {
  width: 50%;
}
.date-picker-form .date-picker-form-header .date-picker-form-month-value {
  width: 50%;
}
.date-picker-form .date-picker-form-content .date-picker-month {
  display: flex;
  flex-direction: column;
}
.date-picker-form .date-picker-form-content .date-picker-month .date-picker-week {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.date-picker-form .date-picker-form-content .date-picker-month .date-picker-week .date-picker-day {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  width: calc(100% / 7);
}
.date-picker-form .date-picker-form-content .date-picker-month .date-picker-week .date-picker-day .date-picker-day-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  width: 30px;
  height: 30px;
}
.date-picker-form .date-picker-form-content .date-picker-month .date-picker-week .date-picker-day[active="true"] .date-picker-day-content {
  border-radius: 100%;
  background-color: crimson;
  color: white;
}
.date-picker-form .date-picker-form-content .date-picker-month .date-picker-week .date-picker-day:not([current-month="true"]) {
  opacity: 0.5;
}
.date-picker-form .date-picker-form-footer {
  display: flex;
  align-items: center;
  padding: var(--padding);
  gap: var(--padding);
}
.date-picker-form .date-picker-form-footer .date-picker-form-value {
  width: 50%;
}
.date-picker-form .date-picker-form-footer button {
  width: 50%;
}
.object-form-picker .object-form-picker-offset .object-form-picker-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.object-form-picker .object-form-picker-offset .object-form-picker-content .object.object-picker {
  cursor: pointer;
  width: 100%;
  max-width: 180px;
}
.object.object-picker .object-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.object-avatar {
  background-color: #f4f4f4;
  background-image: none !important;
}
.tabbed-form {
  background-color: #f8fafb;
}
.tabbed-form .tabbed-form-offset {
  display: flex;
}
.tabbed-form .tabbed-form-offset .tabbed-form-header {
  width: 33.33%;
}
.tabbed-form .tabbed-form-offset .tabbed-form-header .tabbed-form-button {
  border: 4px solid rgba(255, 255, 255, 0);
  font-weight: 400;
  display: flex;
  position: relative;
  padding: 16px;
  gap: 16px;
  transition: 0.4s border, 0.4s background-color;
}
.tabbed-form .tabbed-form-offset .tabbed-form-header .tabbed-form-button::before {
  display: block;
  border: 4px solid rgba(255, 255, 255, 0);
  content: "";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 0px;
  height: 0%;
  transition: 0.4s height, 0.4s border;
}
.tabbed-form .tabbed-form-offset .tabbed-form-header .tabbed-form-button:hover::before {
  border-left: 4px solid royalblue;
}
.tabbed-form .tabbed-form-offset .tabbed-form-header .tabbed-form-button[active="true"]::before {
  border-left: 4px solid royalblue;
  height: calc(100% - 8px);
}
.tabbed-form .tabbed-form-offset .tabbed-form-header .tabbed-form-button .tabbed-form-button-icon {
  width: auto;
}
.tabbed-form .tabbed-form-offset .tabbed-form-header .tabbed-form-button .tabbed-form-button-content {
  flex-grow: 1;
  width: 0%;
}
.tabbed-form .tabbed-form-offset .tabbed-form-content {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  width: 0%;
}
.tabbed-form .tabbed-form-offset .tabbed-form-content .tabbed-form-tab:not([active="true"]) {
  display: none !important;
}
.user .user-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.user .user-button:hover {
  opacity: 0.5;
}
.user.user-label .user-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: var(--padding);
  position: relative;
  overflow: hidden;
}
.user.user-label .user-offset .user-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: var(--padding);
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.user.user-minimized .user-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: var(--padding);
  position: relative;
  overflow: hidden;
}
.user.user-minimized .user-offset .user-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: var(--padding);
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.user:not(:hover) .user-footer {
  opacity: 0;
}
.user-maximized .user-description {
  white-space: pre-line;
}
.user .user-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.user .user-button:hover {
  opacity: 0.5;
}
.user-maximized .user-offset .email-message-list .email-message-list-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.conversation.conversation-minimized {
  cursor: pointer;
}
.conversation.conversation-minimized .conversation-offset {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.conversation.conversation-minimized .conversation-offset .conversation-content {
  flex-grow: 1;
  width: 0%;
}
.conversation.conversation-minimized:not([is-read="true"]) .conversation-name {
  font-weight: bold;
}
.conversation.conversation-minimized:not([is-read="true"]) .conversation-message-message {
  font-weight: bold;
}
.conversation.conversation-maximized {
  width: 100%;
  height: 100%;
}
.conversation.conversation-maximized .conversation-offset {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.conversation.conversation-maximized .conversation-offset .conversation-header {
  width: 100%;
}
.conversation.conversation-maximized .conversation-offset .conversation-content {
  flex-grow: 1;
  width: 100%;
  height: 0%;
  overflow-y: auto;
}
.conversation.conversation-maximized .conversation-offset .conversation-footer {
  width: 100%;
}
.conversation-message .conversation-message-offset {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.conversation-message .conversation-message-offset .conversation-message-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  width: 0%;
}
.conversation-message .conversation-message-offset .conversation-message-content .conversation-message-message {
  background-color: #f8fafb;
  color: #44566c;
  border-radius: var(--padding) var(--padding) var(--padding) 0px;
  overflow: hidden;
}
.conversation-message .conversation-message-offset .conversation-message-content .conversation-message-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-radius: 0px var(--padding) var(--padding) var(--padding);
  overflow: hidden;
}
.conversation-message[is-me="true"] .conversation-message-offset {
  flex-direction: row-reverse;
}
.conversation-message[is-me="true"] .conversation-message-offset .conversation-message-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-grow: 1;
  width: 0%;
}
.conversation-message[is-me="true"] .conversation-message-offset .conversation-message-content .conversation-message-message {
  background-color: #44566c;
  color: #f8fafb;
  border-radius: var(--padding) var(--padding) 0px var(--padding);
}
.conversation-message[is-me="true"] .conversation-message-offset .conversation-message-content .conversation-message-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-radius: var(--padding) 0px var(--padding) var(--padding);
}
.contact .contact-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.contact .contact-button:hover {
  opacity: 0.5;
}
.contact.contact-label .contact-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.contact.contact-label .contact-offset .contact-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.contact.contact-minimized .contact-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.contact.contact-minimized .contact-offset .contact-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.contact:not(:hover) .contact-footer {
  opacity: 0;
}
.customer .customer-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.customer .customer-button:hover {
  opacity: 0.5;
}
.customer.customer-label .customer-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.customer.customer-label .customer-offset .customer-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.customer.customer-minimized .customer-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.customer.customer-minimized .customer-offset .customer-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.customer:not(:hover) .customer-footer {
  opacity: 0;
}
.email .email-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.email .email-button:hover {
  opacity: 0.5;
}
.email.email-label .email-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.email.email-label .email-offset .email-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.email.email-minimized .email-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.email.email-minimized .email-offset .email-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.email:not(:hover) .email-footer {
  opacity: 0;
}
/* Maximized */
.email-maximized .email-description {
  white-space: pre-line;
}
.email .email-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.email .email-button:hover {
  opacity: 0.5;
}
.email-maximized .email-offset .email-message-list .email-message-list-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
/* Attachment */
.email-attachment .email-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.email-attachment .email-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.email-attachment:not(:hover) .email-footer {
  opacity: 0;
}
.email-attachment .email-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-line;
}
.email-message-minimized .email-message-offset {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.email-message-minimized .email-message-offset .email-message-main {
  background-color: #44566c;
  color: #ffffff;
  box-shadow: var(--box-shadow);
  border-radius: 8px;
  overflow: hidden;
  flex-grow: 1;
  width: 0%;
}
.email-message-minimized .email-message-offset .email-message-main .email-message-content {
  white-space: pre-wrap;
}
.email-message-minimized[is-me="true"] .email-message-offset {
  flex-direction: row-reverse;
}
.email-message-minimized[is-me="true"] .email-message-offset .email-message-main {
  background-color: #ffffff;
  color: #44566c;
}
/* Form */
form[name="Article"] {
  margin: auto;
}
form[name="Article"] .form-offset {
  background-color: #ffffff;
  border-radius: 8px;
}
form[name="Article"] .form-offset textarea {
  resize: none;
  height: 46.5px;
  transition: 0.4s height;
}
form[name="Article"] .form-offset textarea:focus {
  height: 249px;
}
/* Minimized */
.article.article-minimized .article-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.article.article-maximized .article-offset {
  margin: auto;
  max-width: 720px;
}
.article-minimized .article-minimized .article-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.article-minimized:not(:hover) .article-footer {
  opacity: 0;
}
.article-minimized .article-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-line;
}
/* Maximized */
.article-maximized .article-description {
  white-space: pre-line;
}
.article .article-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.article .article-button:hover {
  opacity: 0.5;
}
/* Attachment */
.article-attachment .article-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.article-attachment .article-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.article-attachment:not(:hover) .article-footer {
  opacity: 0;
}
.article-attachment .article-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-line;
}
.domain .domain-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.domain .domain-button:hover {
  opacity: 0.5;
}
.domain.domain-label .domain-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.domain.domain-label .domain-offset .domain-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.domain.domain-minimized .domain-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.domain.domain-minimized .domain-offset .domain-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.domain:not(:hover) .domain-footer {
  opacity: 0;
}
/* Maximized */
.domain-maximized .domain-description {
  white-space: pre-line;
}
.domain .domain-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.domain .domain-button:hover {
  opacity: 0.5;
}
/* Attachment */
.domain-attachment .domain-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.domain-attachment .domain-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.domain-attachment:not(:hover) .domain-footer {
  opacity: 0;
}
.domain-attachment .domain-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-line;
}
.hosting .hosting-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.hosting .hosting-button:hover {
  opacity: 0.5;
}
.hosting.hosting-label .hosting-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.hosting.hosting-label .hosting-offset .hosting-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.hosting.hosting-minimized .hosting-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.hosting.hosting-minimized .hosting-offset .hosting-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.hosting:not(:hover) .hosting-footer {
  opacity: 0;
}
/* Maximized */
.hosting-maximized .hosting-description {
  white-space: pre-line;
}
/* Attachment */
.hosting-attachment .hosting-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.hosting-attachment .hosting-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.hosting-attachment:not(:hover) .hosting-footer {
  opacity: 0;
}
.hosting-attachment .hosting-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-line;
}
.hosting-account .hosting-account-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.hosting-account .hosting-account-button:hover {
  opacity: 0.5;
}
.hosting-account.hosting-account-label .hosting-account-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.hosting-account.hosting-account-label .hosting-account-offset .hosting-account-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.hosting-account.hosting-account-minimized .hosting-account-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.hosting-account.hosting-account-minimized .hosting-account-offset .hosting-account-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.hosting-account:not(:hover) .hosting-account-footer {
  opacity: 0;
}
/* Maximized */
.hosting-account-maximized .hosting-account-description {
  white-space: pre-line;
}
/* Attachment */
.hosting-account-attachment .hosting-account-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.hosting-account-attachment .hosting-account-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.hosting-account-attachment:not(:hover) .hosting-account-footer {
  opacity: 0;
}
.hosting-account-attachment .hosting-account-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-line;
}
.website .website-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.website .website-button:hover {
  opacity: 0.5;
}
.website.website-label .website-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.website.website-label .website-offset .website-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.website.website-minimized .website-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.website.website-minimized .website-offset .website-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.website:not(:hover) .website-footer {
  opacity: 0;
}
/* Maximized */
.website-maximized .website-description {
  white-space: pre-line;
}
/* Attachment */
.website-attachment .website-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.website-attachment .website-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.website-attachment:not(:hover) .website-footer {
  opacity: 0;
}
.website-attachment .website-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-line;
}
.contract[is-payed="true"] .contract-is-payed {
  color: #6ea732;
}
.contract[is-payed="true"] .contract-is-payed::after {
  content: "check_circle";
}
.contract:not([is-payed="true"]) .contract-is-payed {
  color: #a7326e;
}
.contract:not([is-payed="true"]) .contract-is-payed::after {
  content: "error";
}
.contract .contract-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.contract .contract-button:hover {
  opacity: 0.5;
}
.contract.contract-label .contract-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.contract.contract-label .contract-offset .contract-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.contract.contract-minimized .contract-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.contract.contract-minimized .contract-offset .contract-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.contract:not(:hover) .contract-footer {
  opacity: 0;
}
/* Minimized */
.contract-minimized .contract-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.contract-minimized .contract-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.contract-minimized:not(:hover) .contract-footer {
  opacity: 0;
}
/* Maximized */
.contract-minimized .contract-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-line;
}
.contract-maximized .contract-description {
  white-space: pre-line;
}
.contract .contract-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.contract .contract-button:hover {
  opacity: 0.5;
}
/* Attachment */
.contract-attachment .contract-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.contract-attachment .contract-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.contract-attachment:not(:hover) .contract-footer {
  opacity: 0;
}
.contract-net-amount::after {
  content: " zł";
}
.contract-gross-amount::after {
  content: " zł";
}
.contract-vat::after {
  content: "%";
}
.invoice[is-payed="true"] .invoice-is-payed {
  color: #6ea732;
}
.invoice[is-payed="true"] .invoice-is-payed::after {
  content: "check_circle";
}
.invoice:not([is-payed="true"]) .invoice-is-payed {
  color: #a7326e;
}
.invoice:not([is-payed="true"]) .invoice-is-payed::after {
  content: "error";
}
.invoice .invoice-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.invoice .invoice-button:hover {
  opacity: 0.5;
}
.invoice.invoice-label .invoice-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.invoice.invoice-label .invoice-offset .invoice-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.invoice.invoice-minimized .invoice-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.invoice.invoice-minimized .invoice-offset .invoice-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.invoice:not(:hover) .invoice-footer {
  opacity: 0;
}
/* Minimized */
.invoice-minimized .invoice-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.invoice-minimized .invoice-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.invoice-minimized:not(:hover) .invoice-footer {
  opacity: 0;
}
/* Maximized */
.invoice-minimized .invoice-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-line;
}
.invoice-maximized .invoice-description {
  white-space: pre-line;
}
.invoice .invoice-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.invoice .invoice-button:hover {
  opacity: 0.5;
}
/* Attachment */
.invoice-attachment .invoice-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.invoice-attachment .invoice-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.invoice-attachment:not(:hover) .invoice-footer {
  opacity: 0;
}
.invoice-net-amount::after {
  content: " zł";
}
.invoice-gross-amount::after {
  content: " zł";
}
.invoice-vat::after {
  content: "%";
}
.invoice-cost-minimized .invoice-cost-description {
  white-space: pre-line;
}
.invoice-cost .invoice-cost-button {
  color: teal;
  cursor: pointer;
  transition: 0.4s opacity;
}
.invoice-cost .invoice-cost-button:hover {
  opacity: 0.5;
}
.invoice-cost-net-amount::after {
  content: " zł";
}
.invoice-cost-net-amount-sum::after {
  content: " zł";
}
.invoice-cost-vat-amount::after {
  content: " zł";
}
.invoice-cost-gross-amount::after {
  content: " zł";
}
.invoice-cost-vat::after {
  content: "%";
}
.offer .offer-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.offer .offer-button:hover {
  opacity: 0.5;
}
.offer.offer-label .offer-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.offer.offer-label .offer-offset .offer-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.offer.offer-minimized .offer-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.offer.offer-minimized .offer-offset .offer-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.offer:not(:hover) .offer-footer {
  opacity: 0;
}
/* Maximized */
.offer-minimized .offer-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-line;
}
.offer-maximized .offer-description {
  white-space: pre-line;
}
/* Attachment */
.offer-attachment .offer-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.offer-attachment .offer-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.offer-attachment:not(:hover) .offer-footer {
  opacity: 0;
}
.offer-net-amount::after {
  content: " zł";
}
.offer-gross-amount::after {
  content: " zł";
}
.rent .rent-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.rent .rent-button:hover {
  opacity: 0.5;
}
.rent.rent-label .rent-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.rent.rent-label .rent-offset .rent-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.rent.rent-minimized .rent-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.rent.rent-minimized .rent-offset .rent-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.rent:not(:hover) .rent-footer {
  opacity: 0;
}
/* Maximized */
.rent-minimized .rent-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-line;
}
.rent-maximized .rent-description {
  white-space: pre-line;
}
/* Attachment */
.rent-attachment .rent-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.rent-attachment .rent-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.rent-attachment:not(:hover) .rent-footer {
  opacity: 0;
}
.rent-net-amount::after {
  content: " zł";
}
.rent-gross-amount::after {
  content: " zł";
}
.sticky-note-minimized {
  --color: hsl(39, 77%, 83%);
}
.sticky-note-minimized .sticky-note-offset {
  background-color: var(--color);
  border: 1px solid wheat;
  box-shadow: var(--box-shadow);
  transition: 0.4s border;
}
.sticky-note-minimized .sticky-note-offset .sticky-note-description {
  white-space: pre-wrap;
}
.sticky-note-minimized:hover .sticky-note-offset {
  border: 1px solid #7f7f7f;
}
.sticky-table-maximized {
  font-family: "Caveat", cursive;
  width: 100%;
  height: 100%;
}
.sticky-table-maximized .sticky-table-offset {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.sticky-table-maximized .sticky-table-offset .sticky-table-header {
  width: 100%;
}
.sticky-table-maximized .sticky-table-offset .sticky-table-content {
  --xOffset: 0;
  --yOffset: 0;
  position: relative;
  flex-grow: 1;
  width: 100%;
  height: 0%;
}
.sticky-table-maximized .sticky-table-offset .sticky-table-content .sticky-note-minimized {
  --x: 0;
  --y: 0;
  --r: 0;
  cursor: grab;
  position: absolute;
  left: calc((var(--x) + var(--xOffset)) * 1px);
  top: calc((var(--y) + var(--yOffset)) * 1px);
  transform: translateX(-50%) rotateZ(calc(var(--r) * 1deg));
  width: 270px;
}
.sticky-table-maximized .sticky-table-offset .sticky-table-content[is-dragging="true"] {
  user-select: none !important;
  cursor: grabbing;
}
.sticky-table-maximized .sticky-table-offset .sticky-table-content[is-moving="true"] {
  user-select: none !important;
  cursor: move;
}
.sticky-table-maximized .sticky-table-offset .sticky-table-content[is-moving="true"] .sticky-note-minimized {
  cursor: move;
}
.sticky-table-maximized .sticky-table-offset .sticky-table-content:hover {
  cursor: move;
}
.board .board-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.board .board-button:hover {
  opacity: 0.5;
}
.board.board-label .board-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.board.board-label .board-offset .board-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.board.board-minimized .board-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.board.board-minimized .board-offset .board-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.board:not(:hover) .board-footer {
  opacity: 0;
}
/* Maximized */
.board-maximized .board-description {
  white-space: pre-line;
}
.board-maximized {
  width: 100%;
  height: 100%;
}
.board-maximized .board-offset {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.board-maximized .board-offset .board-main {
  flex-grow: 1;
  width: 100%;
  height: 0%;
  overflow: auto;
}
.board-maximized .board-offset .board-main .board-main-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 8px;
}
/* Attachment */
.board-attachment .board-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.board-attachment .board-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.board-attachment:not(:hover) .board-footer {
  opacity: 0;
}
.board-attachment .board-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-line;
}
.board-task-description {
  white-space: pre-wrap;
}
.board-task-minimized {
  cursor: grab;
  transition: 0.4s opacity;
}
.board-task-minimized .board-task-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
}
.board-task-minimized[dragging="true"] {
  opacity: 0.4;
}
.board-task-minimized .board-task-offset {
  background-color: #f8fafb;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.board-task-minimized .board-task-footer {
  background-color: #ffffff;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.board-task-minimized:not(:hover) .board-task-footer {
  opacity: 0;
}
.board-task .board-task-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.board-task .board-task-button:hover {
  opacity: 0.5;
}
.board-task-minimized .board-task-name {
  color: var(--color);
}
/* Attachment */
.board-task-attachment .board-task-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.board-task-attachment .board-task-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.board-task-attachment:not(:hover) .board-task-footer {
  opacity: 0;
}
.board-task-attachment .board-task-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-line;
}
.checklist .checklist-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.checklist .checklist-button:hover {
  opacity: 0.5;
}
.checklist.checklist-label .checklist-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.checklist.checklist-label .checklist-offset .checklist-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.checklist.checklist-minimized .checklist-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.checklist.checklist-minimized .checklist-offset .checklist-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.checklist:not(:hover) .checklist-footer {
  opacity: 0;
}
.checklist-maximized .checklist-description {
  white-space: pre-line;
}
.checklist-progress::after {
  content: "%";
}
.project .project-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.project .project-button:hover {
  opacity: 0.5;
}
.project.project-label .project-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.project.project-label .project-offset .project-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.project.project-minimized .project-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.project.project-minimized .project-offset .project-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.project:not(:hover) .project-footer {
  opacity: 0;
}
/* Maximized */
.project-maximized .project-description {
  white-space: pre-line;
}
.task {
  --status: #ffa500;
  --priority: #32cd32;
}
.task[status="Awaiting"] .task-button-controller:not([status="Awaiting"]) {
  display: none;
}
.task[status="During"] .task-button-controller:not([status="During"]) {
  display: none;
}
.task[status="Verify"] .task-button-controller:not([status="Verify"]) {
  display: none;
}
.task[status="Done"] .task-button-controller:not([status="Done"]) {
  display: none;
}
.task[status="During"] {
  --status: #4169e1;
}
.task[status="Verify"] {
  --status: #800080;
}
.task[status="Done"] {
  --status: #32cd32;
}
.task[priority="Low"] {
  --priority: royalblue;
}
.task[priority="Normal"] {
  --priority: limegreen;
}
.task[priority="High"] {
  --priority: orange;
}
.task[priority="Critical"] {
  --priority: crimson;
}
.task[deadline-color="crimson"]:not([status="Done"]) .task-date-of-deadline {
  color: crimson;
}
.task[deadline-color="goldenrod"]:not([status="Done"]) .task-date-of-deadline {
  color: goldenrod;
}
.task[deadline-color="forestgreen"]:not([status="Done"]) .task-date-of-deadline {
  color: forestgreen;
}
.task .task-status {
  background-color: var(--status);
  color: white;
  border-radius: 4px;
  text-align: center;
  padding: 4px;
}
.task .task-priority {
  background-color: var(--priority);
  color: white;
  border-radius: 4px;
  text-align: center;
  padding: 4px;
}
.task .task-description {
  white-space: pre-line;
}
.task .task-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.task .task-button:hover {
  opacity: 0.5;
}
.task.task-label .task-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.task.task-label .task-offset .task-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.task.task-minimized .task-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.task.task-minimized .task-offset .task-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.task:not(:hover) .task-footer {
  opacity: 0;
}
/* Maximized */
/* Attachment */
.task-attachment .task-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.task-attachment .task-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.task-attachment:not(:hover) .task-footer {
  opacity: 0;
}
.task-attachment .task-description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre-line;
}
.task-history {
  --status: orange;
  --priority: limegreen;
}
.task-history[status="Awaiting"] .task-history-button-controller:not([status="Awaiting"]) {
  display: none;
}
.task-history[status="During"] .task-history-button-controller:not([status="During"]) {
  display: none;
}
.task-history[status="Verify"] .task-history-button-controller:not([status="Verify"]) {
  display: none;
}
.task-history[status="Done"] .task-history-button-controller:not([status="Done"]) {
  display: none;
}
.task-history[status="During"] {
  --status: royalblue;
}
.task-history[status="Verify"] {
  --status: purple;
}
.task-history[status="Done"] {
  --status: limegreen;
}
.task-history[priority="Low"] {
  --priority: royalblue;
}
.task-history[priority="Normal"] {
  --priority: limegreen;
}
.task-history[priority="High"] {
  --priority: orange;
}
.task-history[priority="Critical"] {
  --priority: crimson;
}
.task-history[deadline-color="crimson"]:not([status="Done"]) .task-history-date-of-deadline {
  color: crimson;
}
.task-history[deadline-color="goldenrod"]:not([status="Done"]) .task-history-date-of-deadline {
  color: goldenrod;
}
.task-history[deadline-color="forestgreen"]:not([status="Done"]) .task-history-date-of-deadline {
  color: forestgreen;
}
.task-history .task-history-status {
  background-color: var(--status);
  color: white;
  border-radius: 4px;
  text-align: center;
  padding: 4px;
}
.task-history .task-history-priority {
  background-color: var(--priority);
  color: white;
  border-radius: 4px;
  text-align: center;
  padding: 4px;
}
.task-history .task-history-description {
  white-space: pre-line;
}
.task-history .task-history-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.task-history .task-history-button:hover {
  opacity: 0.5;
}
.task-history.task-history-minimized .task-history-offset {
  box-shadow: var(--box-shadow);
  background-color: #ffffff;
  color: #44566c;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.task-history.task-history-minimized .task-history-offset .task-history-footer {
  background-color: #f8fafb;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.task-history:not(:hover) .task-history-footer {
  opacity: 0;
}
/* Form */
form[name="Comment"] .form-offset {
  background-color: #f8fafb;
  box-shadow: var(--box-shadow);
  color: #44566c;
  border-radius: 8px;
}
form[name="Comment"] .form-offset textarea {
  resize: none;
  height: 46.5px;
  transition: 0.4s height;
}
form[name="Comment"] .form-offset textarea:focus {
  height: 91.5px;
}
/* Minimized */
.comment-minimized {
  position: relative;
}
.comment-minimized .comment-offset {
  background-color: #f8fafb;
  box-shadow: var(--box-shadow);
  color: #44566c;
  border-radius: 8px;
}
.comment-minimized .comment-offset .comment-header {
  position: relative;
}
.comment-minimized .comment-offset .comment-header .comment-header-content {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.comment-minimized .comment-offset .comment-header::after {
  content: "";
  display: block;
  border-top: 1px solid #6e32a7;
  position: absolute;
  left: -16px;
  top: calc(50% - 1px);
  width: 16px;
}
.comment-minimized .comment-footer {
  background-color: #ffffff;
  color: #44566c;
  border-top-left-radius: 8px;
  display: flex;
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: 0.4s opacity;
}
.comment-minimized:not(:hover) .comment-footer {
  opacity: 0;
}
.comment-minimized .comment-message {
  white-space: pre-line;
}
.comment-minimized .comment-button {
  cursor: pointer;
  transition: 0.4s opacity;
}
.comment-minimized .comment-button:hover {
  opacity: 0.5;
}
.comment-list .comment-list-content {
  margin-left: 16px;
  border-left: 1px solid #6e32a7;
  min-height: 16px;
}
.account-page {
  width: 100%;
  height: 100%;
}
.account-page .account-page-offset {
  width: 100%;
  height: 100%;
}
.account-page .account-page-offset .account-page-header {
  margin: auto;
  max-width: 1080px;
}
.account-page .account-page-offset .account-page-content {
  margin: auto;
  max-width: 1080px;
}
.calendar-page {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.calendar-page .calendar-page-header {
  width: 100%;
}
.calendar-page .calendar-page-main {
  flex-grow: 1;
  width: 100%;
  height: 0%;
}
.calendar-page .calendar-page-main .calendar-month {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.calendar-page .calendar-page-main .calendar-month .calendar-week {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  height: 0%;
}
.calendar-page .calendar-page-main .calendar-month .calendar-week .calendar-day {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 0%;
}
.calendar-page .calendar-page-main .calendar-month .calendar-week .calendar-day .calendar-day-header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-page .calendar-page-main .calendar-month .calendar-week .calendar-day .calendar-day-header .calendar-day-header-content {
  background-color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.calendar-page .calendar-page-main .calendar-month .calendar-week .calendar-day .calendar-day-content {
  flex-grow: 1;
  height: 0%;
  overflow-y: auto;
}
.calendar-page .calendar-page-main .calendar-month .calendar-week .calendar-day[current-month="true"] .calendar-day-content {
  background-color: #fff;
  color: #44566c;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}
.calendar-page .calendar-page-main .calendar-month .calendar-week .calendar-day[current-month="true"][current-day="true"] .calendar-day-header .calendar-day-header-content {
  background-color: #44566c;
  color: #fff;
}
.calendar-page .calendar-page-footer {
  width: 100%;
}
.communicator-page {
  width: 100%;
  height: 100%;
}
.communicator-page .communicator-page-offset {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.communicator-page .communicator-page-offset .communicator-page-header {
  width: 100%;
}
.communicator-page .communicator-page-offset .communicator-page-content {
  width: 100%;
}
.communicator-page .communicator-page-offset .communicator-page-footer {
  flex-grow: 1;
  width: 100%;
  height: 0%;
  overflow-y: auto;
}
.contact-page .contact-page-offset .contact-page-filter {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  left: 0px;
  top: 0px;
  z-index: 1;
}
.contact-page .contact-page-offset .contact-page-header {
  margin: auto;
  max-width: 1080px;
}
.contact-page .contact-page-offset .contact-page-content {
  margin: auto;
  max-width: 1080px;
}
.customer-page .customer-page-offset .customer-page-filter {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  left: 0px;
  top: 0px;
  z-index: 1;
}
.customer-page .customer-page-offset .customer-page-header {
  margin: auto;
  max-width: 1080px;
}
.customer-page .customer-page-offset .customer-page-content {
  margin: auto;
  max-width: 1080px;
}
.email-page .email-page-offset .email-page-header {
  margin: auto;
  max-width: 1080px;
}
.email-page .email-page-offset .email-page-content {
  margin: auto;
  max-width: 1080px;
}
.article-list .article-list-header {
  margin: auto;
  max-width: 720px;
}
.article-list .article-list-content {
  margin: auto;
  max-width: 720px;
}
.domain-page .domain-page-offset .domain-page-header {
  margin: auto;
  max-width: 1080px;
}
.domain-page .domain-page-offset .domain-page-content {
  margin: auto;
  max-width: 1080px;
}
.hosting-page .hosting-page-offset .hosting-page-header {
  margin: auto;
  max-width: 1080px;
}
.hosting-page .hosting-page-offset .hosting-page-content {
  margin: auto;
  max-width: 1080px;
}
.hosting-account-page .hosting-account-page-offset .hosting-account-page-header {
  margin: auto;
  max-width: 1080px;
}
.hosting-account-page .hosting-account-page-offset .hosting-account-page-content {
  margin: auto;
  max-width: 1080px;
}
.website-page .website-page-offset .website-page-header {
  margin: auto;
  max-width: 1080px;
}
.website-page .website-page-offset .website-page-content {
  margin: auto;
  max-width: 1080px;
}
.mail-page {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
.mail-page .mail-page-sign-in {
  width: 100%;
  height: 100%;
}
.mail-page .mail-page-sign-in .mail-page-sign-in-content {
  display: flex;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.mail-page .mail-page-sign-in .mail-page-sign-in-content form {
  background-color: white;
  align-self: center;
  width: auto;
  height: auto;
}
.mail-page .mail-page-sidebar {
  height: 100%;
}
.mail-page .mail-page-sidebar .mail-page-sidebar-content {
  height: 100%;
  overflow-y: auto;
}
.mail-page .mail-page-main {
  flex-grow: 1;
  width: 0%;
  height: 100%;
}
.mail-page .mail-page-main .mail-page-main-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.mail-page .mail-page-main .mail-page-main-content .mail-page-button-email {
  cursor: pointer;
}
.mail-page .mail-page-main .mail-page-main-content .mail-page-button-email[seen="false"] .caption {
  font-weight: bold;
}
.mail-page .mail-page-details {
  flex-grow: 1;
  height: 100%;
  width: 0%;
}
.main-page {
  width: 100%;
  height: 100%;
}
.main-page .main-page-offset {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.main-page .main-page-offset .main-page-header {
  width: 100%;
}
.main-page .main-page-offset .main-page-content {
  position: relative;
  flex-grow: 1;
  width: 100%;
  height: 0%;
}
.main-page .main-page-offset .main-page-content .sticky-table-maximized {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main-page {
  width: 100%;
  height: 100%;
}
.main-page .main-page-offset {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.main-page .main-page-offset .main-page-header {
  width: 100%;
}
.main-page .main-page-offset .main-page-content {
  position: relative;
  flex-grow: 1;
  width: 100%;
  height: 0%;
}
.main-page .main-page-offset .main-page-content .tabbed-view {
  height: 100%;
}
.main-page .main-page-offset .main-page-content .tabbed-view .tabbed-view-offset {
  height: 100%;
}
.main-page .main-page-offset .main-page-content .tabbed-view .tabbed-view-offset .tabbed-view-content {
  flex-grow: 1;
  height: 0%;
}
.main-page .main-page-offset .main-page-content .tabbed-view .tabbed-view-offset .tabbed-view-content .tabbed-view-tab {
  width: 100%;
  height: 100%;
}
.main-page .main-page-offset .main-page-content .tabbed-view .tabbed-view-offset .tabbed-view-content .tabbed-view-tab .tabbed-view-tab-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main-page .main-page-offset .main-page-content .sticky-table-maximized {
  width: 100%;
  height: 100%;
}
.category-page .category-page-offset {
  margin: auto;
  max-width: 1080px;
}
.company-page .company-page-offset {
  margin: auto;
  max-width: 1080px;
}
.department-page .department-page-offset {
  margin: auto;
  max-width: 1080px;
}
.file-manager-page .file-manager-page-offset {
  margin: auto;
  max-width: 1080px;
}
.group-page .group-page-offset {
  margin: auto;
  max-width: 1080px;
}
.role-page .role-page-offset {
  margin: auto;
  max-width: 1080px;
}
.user-page .user-page-offset {
  margin: auto;
  max-width: 1080px;
}
.invoice-page .invoice-page-offset .invoice-page-filter {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  left: 0px;
  top: 0px;
  z-index: 1;
}
.invoice-page .invoice-page-offset .invoice-page-header {
  margin: auto;
  max-width: 1080px;
}
.invoice-page .invoice-page-offset .invoice-page-content {
  margin: auto;
  max-width: 1080px;
}
.offer-page .offer-page-offset .offer-page-header {
  margin: auto;
  max-width: 1080px;
}
.offer-page .offer-page-offset .offer-page-content {
  margin: auto;
  max-width: 1080px;
}
.rent-page .rent-page-offset .rent-page-header {
  margin: auto;
  max-width: 1080px;
}
.rent-page .rent-page-offset .rent-page-content {
  margin: auto;
  max-width: 1080px;
}
.sign-in-page {
  display: block;
  width: 100%;
  height: 100%;
}
.sign-in-page .sign-in-page-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.system-page .system-page-offset {
  margin: auto;
  max-width: 1080px;
}
.ckecklist-page .ckecklist-page-offset .ckecklist-page-header {
  margin: auto;
  max-width: 1080px;
}
.ckecklist-page .ckecklist-page-offset .ckecklist-page-content {
  margin: auto;
  max-width: 1080px;
}
.project-page .project-page-offset .project-page-header {
  margin: auto;
  max-width: 1080px;
}
.project-page .project-page-offset .project-page-content {
  margin: auto;
  max-width: 1080px;
}
.task-page .task-page-offset .task-page-filter {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  left: 0px;
  top: 0px;
  z-index: 1;
}
.admin-view {
  --width: 270px;
  color: #44566c;
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  transition: 0.4s grid-template-columns;
}
@media (max-width: 720px) {
  .admin-view {
    --width: auto;
  }
}
.admin-view .admin-view-navbar {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  padding: var(--padding-2);
  padding-right: var(--padding);
  width: var(--width);
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.admin-view .admin-view-navbar .admin-view-navbar-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: var(--padding);
  box-shadow: var(--box-shadow);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-main {
  flex-grow: 1;
  width: 100%;
  height: 0%;
  overflow-y: auto;
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-space {
  align-self: stretch;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  flex-grow: 1;
  width: 100%;
  height: 0%;
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-menu {
  position: relative;
  padding: var(--padding);
  transition: 0.4s background-color;
  width: 100%;
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-menu .admin-view-navbar-menu-offset {
  border-radius: var(--padding);
  overflow: hidden;
  transition: 0.4s box-shadow;
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-menu .admin-view-navbar-menu-offset .admin-view-navbar-menu-content {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--padding);
  padding: var(--padding) var(--padding-2);
  transition: 0.4s background-color, 0.4s color, 0.4s box-shadow;
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-menu .admin-view-navbar-menu-offset .admin-view-navbar-menu-content .admin-view-navbar-menu-label {
  font-weight: var(--bold-font-weight);
  flex-grow: 1;
  width: 0%;
}
@media (max-width: 720px) {
  .admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-menu .admin-view-navbar-menu-offset .admin-view-navbar-menu-content .admin-view-navbar-menu-label {
    display: none;
  }
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-menu .admin-view-navbar-menu-offset .admin-view-navbar-menu-content .admin-view-navbar-menu-expand .material-icons::before {
  content: "add";
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-menu .admin-view-navbar-menu-offset .admin-view-navbar-menu-content:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #44566c;
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-menu .admin-view-navbar-menu-offset .admin-view-navbar-menu-buttons {
  height: 0px;
  overflow: hidden;
  transition: 0.4s background-color, 0.4s color, 0.4s height;
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-menu[open="true"] .admin-view-navbar-menu-offset {
  box-shadow: var(--box-shadow);
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-menu[open="true"] .admin-view-navbar-menu-offset .admin-view-navbar-menu-content {
  background-color: white;
  color: #44566c;
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-menu[open="true"] .admin-view-navbar-menu-offset .admin-view-navbar-menu-buttons {
  background-color: rgba(255, 255, 255, 0.5);
  color: #44566c;
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-button {
  position: relative;
  transition: 0.4s background-color;
  width: 100%;
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-button .admin-view-navbar-button-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--padding);
  padding: var(--padding) var(--padding-2);
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-button .admin-view-navbar-button-content .admin-view-navbar-button-label {
  flex-grow: 1;
  width: 0%;
}
@media (max-width: 720px) {
  .admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-button .admin-view-navbar-button-content .admin-view-navbar-button-label {
    display: none;
  }
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-button:hover .admin-view-navbar-button-content {
  background-color: #44566c;
  color: #ffffff;
}
.admin-view .admin-view-navbar .admin-view-navbar-offset .admin-view-navbar-content .admin-view-navbar-line {
  border-top: 1px solid #44566c;
  width: 100%;
}
.admin-view .admin-view-main {
  flex-grow: 1;
  position: relative;
  padding: var(--padding-2);
  padding-left: var(--padding);
  width: 0%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}
.admin-view .admin-view-main .admin-view-main-offset {
  background-color: #ffffff;
  color: #44566c;
  border-radius: var(--padding);
  box-shadow: var(--box-shadow);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.admin-view .admin-view-main .admin-view-main-offset .admin-view-main-content {
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.admin-view .admin-view-panel {
  background-image: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  transition: 0.4s opacity;
}
.admin-view .admin-view-panel .admin-view-panel-offset {
  padding: var(--padding-2);
  width: 100%;
  max-width: 480px;
  height: 100%;
  transition: 0.4s transform, 0.4s width;
  overflow: hidden;
}
.admin-view .admin-view-panel .admin-view-panel-offset .admin-view-panel-content {
  background-color: white;
  border-radius: var(--padding);
  box-shadow: var(--box-shadow);
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.admin-view .admin-view-panel .admin-view-panel-offset:not([active="true"]) {
  display: none;
}
.admin-view:not([panel="true"]) .admin-view-panel {
  opacity: 0;
  pointer-events: none;
}
.admin-view:not([panel="true"]) .admin-view-panel .admin-view-panel-offset {
  transform: translateX(100%);
}
