/* File: ../SiriusSoftware.Core.Frontend/Components/ToggleMap.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.toggle-container {
  margin: 0 auto;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F8F8F8;
  width: auto;
  height: 62px;
  border-radius: 46px;
}
.toggle-container .switches-container {
  padding: 0;
  position: relative;
  display: flex;
  line-height: 3rem;
  border-radius: 3rem;
  margin-left: auto;
  margin-right: auto;
}
.toggle-container .switches-container input {
  visibility: hidden;
  position: absolute;
  top: 0;
}
.toggle-container .switches-container label {
  margin: 0;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 50%;
  max-height: 46px;
  text-align: center;
  cursor: pointer;
  color: #000;
  opacity: 0.35;
  transition: opacity 0.2s ease-in;
  font-weight: 600;
}
.toggle-container .switches-container label .image-wrapper {
  width: 28px;
  height: 28px;
}
.toggle-container .switches-container label:hover {
  opacity: 1;
}
.toggle-container .switch-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  padding: 0.15rem;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.toggle-container .switch {
  border-radius: 3rem;
  background: var(--switch-bg-color);
  height: 100%;
}
.toggle-container .switch div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 46px;
  transition: opacity 0.2s cubic-bezier(0.77, 0, 0.175, 1) 0.125s;
  will-change: opacity;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 46px;
  text-align: center;
  font-weight: 600;
  opacity: 0;
}
.toggle-container .switch div .image-wrapper {
  width: 28px;
  height: 28px;
}
.toggle-container .switches-container input:nth-of-type(1):checked ~ .switch-wrapper {
  transform: translateX(0%);
}
.toggle-container .switches-container input:nth-of-type(2):checked ~ .switch-wrapper {
  transform: translateX(100%);
}
.toggle-container .switches-container input:nth-of-type(1):checked ~ .switch-wrapper .switch div:nth-of-type(1) {
  opacity: 1;
}
.toggle-container .switches-container input:nth-of-type(2):checked ~ .switch-wrapper .switch div:nth-of-type(2) {
  opacity: 1;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/GalleryItem.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.gallery-item {
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 16px;
  background-color: #fff;
  color: #878787;
  font-weight: 600;
  font-size: 0.875rem;
  height: 98px;
  cursor: pointer;
}
.gallery-item .image-wrapper {
  width: auto;
  max-height: 38px;
  opacity: 0.35;
  transition: opacity 0.2s ease-out;
}
.gallery-item span {
  opacity: 0.35;
  transition: opacity 0.2s ease-out;
}
.gallery-item:hover .image-wrapper, .gallery-item:hover span {
  opacity: 1;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/InitialsView.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.initials-view .initials {
  text-align: center;
  user-select: none;
  pointer-events: none;
}

.initials-view {
  width: 38px;
  height: 38px;
  border: 1px solid #EDEFF2;
  padding: 2px;
  border-radius: 50%;
  transition: 0.3s;
}
.initials-view .initials {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 2px 0 2px 12px 10px rgba(0, 7, 21, 0.025);
  font-size: 12px;
  border-radius: 50%;
  line-height: 32px;
  min-width: 32px;
  text-transform: uppercase;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Tooltip.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.custom-tooltip {
  display: none;
  position: absolute;
  border: 1px #000 solid;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  margin: 5px;
  padding: 5px;
  z-index: 1000;
  pointer-events: none;
}
.custom-tooltip.visible {
  display: block;
}
.custom-tooltip.visible.flex-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.custom-tooltip.visible.flex-container .tooltip-value {
  color: #fff;
  white-space: nowrap;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/RadioGroup.razor.scss */
.radio-container {
  display: flex;
}
.radio-container .radio-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/ImageWithText.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.image-with-text {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
}
.image-with-text .image-wrapper {
  max-width: 25px;
  min-width: 25px;
  height: auto;
}
.image-with-text .image-wrapper img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.image-with-text p {
  font-size: 0.875rem;
  font-weight: 400;
  color: #878787;
}
.image-with-text.label .image-wrapper {
  opacity: 0.5;
}
.image-with-text.label .text-wrapper {
  font-weight: 300;
  color: #878787;
}
.image-with-text.label .text-wrapper p {
  font-weight: 600;
  color: #000;
  font-size: 1rem;
}
.image-with-text.small {
  gap: 0.5rem;
}
.image-with-text.small .image-wrapper {
  width: 100%;
  max-width: 25px;
  height: 25px;
}
.image-with-text.small .text-wrapper {
  font-size: 0.875rem;
  font-weight: 500;
}
.image-with-text.inline .text-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.image-with-text.vehicle-status {
  padding: 8px 12px;
  border-radius: 160px;
  gap: 6px;
  font-weight: 500;
  height: 34px;
}
.image-with-text.vehicle-status.available {
  background-color: #CAF0D2;
  color: #0A8826;
}
.image-with-text.vehicle-status.unavailable {
  background-color: #fdeaea;
  color: #B70404;
}
.image-with-text.vehicle-status.maintenance {
  background-color: #ebebeb;
  color: #3E3E3E;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/GridContainer.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.grid-section {
  display: grid;
  gap: 1rem;
}
.grid-section.column-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-section.column-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 767.98px) {
  .grid-section.column-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.grid-section.column-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1199.98px) {
  .grid-section.column-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 991.98px) {
  .grid-section.column-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.grid-section.column-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-section.column-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-section.column-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-section.column-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-section.column-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-section.column-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}
.grid-section.column-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Title.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.title-container {
  display: flex;
  min-width: fit-content;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 900;
  font-style: italic;
}
.title-container .section-badge {
  min-width: 22px;
  height: 22px;
  font-size: 0.875rem;
  font-style: normal;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Button.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.base-button {
  padding: 0.625rem 1rem 0.625rem 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  max-height: 38px;
  min-height: 38px;
  border-radius: 6px;
  background-color: #4D4AEA;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 0.875rem;
  border: none;
  transition: all 0.2s ease-in;
  cursor: pointer;
}
.base-button .image-wrapper {
  display: flex;
  align-items: center;
  width: 22px;
  height: 22px;
}
.base-button .image-wrapper img {
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.base-button:hover {
  background-color: #5c5be1;
  color: #fff;
}
.base-button.busy {
  opacity: 0.5;
}
.base-button.red {
  background-color: #E25050;
  color: #fff;
}
.base-button.red:hover {
  background-color: #c63737;
}
.base-button.grey {
  background-color: #F8F8F8;
  color: #878787;
}
.base-button.grey .image-wrapper img {
  filter: none;
  opacity: 0.5;
}
.base-button.grey:hover {
  background-color: #ebebeb;
}
@media (max-width: 575.98px) {
  .base-button.responsive-btn {
    padding: 8px;
    font-size: 0;
  }
  .base-button.responsive-btn span {
    display: none;
  }
}
.base-button.table-button {
  padding: 0.5rem 0.75rem;
  background-color: #000;
}
.base-button.table-button .image-wrapper {
  display: none;
}
.base-button.table-button:hover {
  background-color: #5c5be1;
  color: #fff;
}
.base-button.table-button.action {
  padding: 0.5rem;
  background-color: #4D4AEA;
  box-shadow: 0 0 0 2px #f1faff;
}
.base-button.table-button.action .image-wrapper {
  display: flex;
}
.base-button.table-button.action:hover {
  box-shadow: 0 0 0 2px #e4efff;
}
.base-button.remove {
  padding: 0.25rem;
  background-color: transparent;
  max-height: 19px;
  min-height: 19px;
  border-radius: 4px;
}
.base-button.remove .image-wrapper {
  width: 11px;
  height: 11px;
}
.base-button.remove .image-wrapper img {
  filter: none;
  opacity: 0.5;
}
.base-button.remove:hover {
  background-color: #e4efff;
}
.base-button.remove:hover img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(47%) saturate(5425%) hue-rotate(238deg) brightness(95%) contrast(92%);
}
.base-button.delete {
  margin: 0;
  padding: 0;
  background-color: transparent;
  min-height: 46px;
}
.base-button.delete img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(95%) saturate(3108%) hue-rotate(355deg) brightness(97%) contrast(100%);
}
.base-button.secondary-button {
  background-color: #f1faff;
  color: #4D4AEA;
  font-weight: 600;
}
.base-button.secondary-button:hover {
  background-color: #e4efff;
}
.base-button.icon {
  padding: 0.65rem;
  background-color: transparent;
}
.base-button.icon .image-wrapper {
  width: 22px;
  height: 22px;
}
.base-button.icon .image-wrapper img {
  filter: none;
  opacity: 0.5;
}
.base-button.icon:hover {
  background-color: #e4efff;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Counter.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.counter {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  font-size: 0.75rem;
  border-radius: 38px;
  border: 2px solid #fff;
  background-color: #4EB5F0;
}
.counter span {
  font-weight: bold;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Badge.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.badge-wrapper {
  padding: 0 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4EB5F0;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  font-size: 0.75rem;
  min-width: 18px;
  min-height: 18px;
}
.badge-wrapper.grey {
  background-color: #F8F8F8;
  color: #000;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Link.razor.scss */
.base-link {
  cursor: pointer;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Image.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.image-wrapper {
  display: flex;
}
.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.image-wrapper.input-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: auto;
}
.image-wrapper.input {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 20px;
  height: auto;
}
.image-wrapper.location {
  width: 38px;
  border-radius: 38px;
  overflow: hidden;
}
.image-wrapper.empty {
  position: relative;
  background-color: #F8F8F8;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/RadioItem.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.radio-item {
  display: flex;
}
.radio-item label {
  margin: 0;
  display: flex;
  position: relative;
}
.radio-item label input[type=radio],
.radio-item label input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.radio-item label .text-label {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 56px;
  height: 46px;
  background-color: #F2F2F2;
  border-radius: 12px;
  border: 2px solid transparent;
  color: #000;
  text-align: center;
  transition: background-color 0.2s ease-in;
  cursor: pointer;
}
.radio-item label .text-label .image-wrapper {
  width: 24px;
  height: 24px;
}
.radio-item label .text-label:hover {
  background-color: #ECF8FF;
}
.radio-item label input:checked + .text-label {
  background-color: #ECF8FF;
  border: 2px solid #4EB5F0;
  color: #000;
}
.radio-item label input:checked + .text-label.text {
  background-color: transparent;
  text-decoration: underline;
}
.radio-item.text .text-label {
  padding: 2px;
  color: #878787;
  text-decoration: none;
  background-color: transparent;
}
.radio-item.text .text-label:hover {
  color: #000;
  background-color: transparent;
}
.radio-item.text input:checked + .text-label {
  background-color: transparent;
  text-decoration: underline;
  color: #000;
  border: 2px solid transparent;
}
.radio-item.tab {
  display: flex;
  gap: 16px;
}
.radio-item.tab label .text-label {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  text-align: left;
}
.radio-item.tab label .text-label .image-wrapper {
  min-width: 90px;
  height: 90px;
}
.radio-item.tab label .text-label .text-label-content {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}
.radio-item.tab label .text-label .text-label-content .sub-text-label {
  font-weight: 400;
  color: #878787;
  font-size: 0.875rem;
}
.radio-item.tab label .text-label:hover {
  background-color: #ECF8FF;
}
.radio-item.tab input:checked + .text-label:hover {
  background-color: #ECF8FF;
}
.radio-item.dot {
  padding-left: 40px;
}
.radio-item.dot label input[type=radio],
.radio-item.dot label input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.radio-item.dot label .text-label {
  padding: 0;
  height: auto;
  background-color: transparent;
  border-radius: 0;
  border: none;
  font-weight: 600;
}
.radio-item.dot label .text-label:hover {
  background-color: transparent;
}
.radio-item.dot label input:checked + .text-label {
  background-color: transparent;
  border: none;
}
.radio-item.dot label input:checked + .text-label.text {
  background-color: transparent;
  text-decoration: underline;
}
.radio-item.dot label input:checked + .text-label::before,
.radio-item.dot label input:not(checked) + .text-label::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}
.radio-item.dot label input:checked + .text-label::after,
.radio-item.dot label input:not(checked) + .text-label::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -33px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.radio-item.dot label input:not(:checked) + .text-label:after {
  opacity: 0;
}
.radio-item.dot label input:checked + .text-label:after {
  opacity: 1;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/ImageWithBadge.razor.scss */
.image-white-badge-wrapper {
  position: relative;
}
.image-white-badge-wrapper .image-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  overflow: hidden;
}
.image-white-badge-wrapper .image-wrapper img {
  object-fit: cover;
}
.image-white-badge-wrapper .badge-wrapper {
  position: absolute;
  top: -2px;
  right: -2px;
}
.image-white-badge-wrapper.icon .image-wrapper {
  overflow: initial;
  width: 30px;
  height: 30px;
}
.image-white-badge-wrapper.icon .image-wrapper img {
  object-fit: contain;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/UploadMedia.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}

/* File: ../SiriusSoftware.Core.Frontend/Styles/Declarations/_Units.scss */

/* File: ../SiriusSoftware.Core.Frontend/Styles/Declarations/_Mixins.scss */

/* File: ../SiriusSoftware.Core.Frontend/Styles/Declarations/_index.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}

/* File: ../SiriusSoftware.Core.Frontend/Styles/Declarations/_Breakpoints.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}

/* File: ../SiriusSoftware.Core.Frontend/Styles/Declarations/_Colors.scss */

/* File: ../SiriusSoftware.Core.Frontend/Components/Effects/Highlightable.razor.scss */
.highlight {
  background-color: lightblue;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Effects/ExpandArea.razor.scss */
.expand-area .expand-area-animation-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.2s ease;
}
.expand-area .expand-area-animation {
  min-height: 0;
}
.expand-area .expand-area-transform-wrapper {
  min-height: 70px;
  opacity: 0;
  transform: translateY(-100%);
  visibility: hidden;
  transition: all 0.2s ease, visibility 0s 0.2s ease;
}
.expand-area.expanded .expand-area-animation-wrapper {
  grid-template-rows: 1fr;
}
.expand-area.expanded .expand-area-animation-wrapper .expand-area-transform-wrapper {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease, visibility 0s linear;
}
.expand-area.show-dropdowns, .expand-area.z-index-1, .expand-area.z-index-2, .expand-area.z-index-3, .expand-area.z-index-4 {
  position: relative;
}
.expand-area.show-dropdowns .expand-area-animation-wrapper, .expand-area.z-index-1 .expand-area-animation-wrapper, .expand-area.z-index-2 .expand-area-animation-wrapper, .expand-area.z-index-3 .expand-area-animation-wrapper, .expand-area.z-index-4 .expand-area-animation-wrapper {
  overflow: unset;
}
.expand-area.z-index-1 {
  z-index: 1;
}
.expand-area.z-index-2 {
  z-index: 2;
}
.expand-area.z-index-3 {
  z-index: 3;
}
.expand-area.z-index-4 {
  z-index: 4;
}
.expand-area:not(.expanded) .expand-area-animation-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.2s ease;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Tabs/TabGroup.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.tab-group {
  margin: 1.5rem 0 0 0;
  padding: 0.25rem 1.25rem 0 1.25rem;
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid #EDEFF2;
}
.tab-group > .tab {
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease-in;
  border-bottom: 3px solid transparent;
}
.tab-group > .tab:hover {
  font-size: #fff;
  color: #4D4AEA;
}
.tab-group > .tab .text-wrapper {
  font-size: 1rem;
}
.tab-group > .tab.tab-selected {
  color: #4D4AEA;
  border-bottom: 3px solid #4D4AEA;
}
.tab-group > .tab.tab-disabled {
  cursor: auto;
  color: #999;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Tabs/Tab.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.tab-wrapper {
  padding: 1rem 2rem;
  border-radius: 16px;
  flex: 1;
  cursor: pointer;
}
.tab-wrapper .image-with-text {
  align-items: center;
  gap: 30px;
}
.tab-wrapper .image-with-text .image-wrapper {
  width: auto;
  height: 80px;
}
.tab-wrapper .image-with-text .text-wrapper {
  font-size: 1.25rem;
  font-weight: 800;
}
.tab-wrapper .image-with-text .text-wrapper p {
  margin: 0;
  font-weight: 400;
}
.tab-wrapper.tab-primary {
  background-color: #F8F8F8;
  color: #000;
}
.tab-wrapper.tab-secondary {
  background-color: #F8F8F8;
  transition: background-color 0.2s ease-in;
}
.tab-wrapper.tab-secondary:hover {
  background-color: #E2F4FF;
}

.tab-listings {
  position: relative;
  background-color: #fff;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0 -10px 12px 0 rgba(0, 7, 21, 0.05);
  z-index: 2;
}
.tab-listings .tab-wrapper {
  padding: 14px 10px 12px 10px;
  display: flex;
  justify-content: center;
  flex: 0 0 auto;
  transition: all 0.2s linear;
}
.tab-listings .tab-wrapper .image-with-text {
  gap: 8px;
}
.tab-listings .tab-wrapper .image-with-text .image-wrapper {
  width: 20px;
  height: 20px;
}
.tab-listings .tab-wrapper .image-with-text .text-wrapper {
  font-size: 0.875rem;
  font-weight: 700;
  position: relative;
}
.tab-listings .tab-wrapper .image-with-text .text-wrapper span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -6px;
  right: -16px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 4px;
  min-width: 18px;
  height: 18px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
}
.tab-listings .tab-wrapper.tab-primary {
  background-color: #F8F8F8;
  color: #000;
}
.tab-listings .tab-wrapper.tab-primary .image-wrapper {
  filter: none;
}
.tab-listings .tab-wrapper.tab-primary:hover {
  background-color: #ebebeb;
}
.tab-listings .tab-wrapper.tab-primary.tab-active-listing .text-wrapper span {
  background-color: #6B8F1F;
}
.tab-listings .tab-wrapper.tab-primary.tab-pending .text-wrapper span {
  background-color: #DCB441;
}
.tab-listings .tab-wrapper.tab-primary.tab-rejected .text-wrapper span {
  background-color: #E25050;
}
.tab-listings .tab-wrapper.tab-primary.tab-active .text-wrapper span {
  background-color: #4EB5F0;
}
.tab-listings .tab-wrapper.tab-primary.tab-ended .text-wrapper span {
  background-color: #000;
}
.tab-listings .tab-wrapper.tab-secondary {
  background-color: transparent;
  transition: background-color 0.2s ease-in;
}
.tab-listings .tab-wrapper.tab-secondary:hover {
  background-color: #F8F8F8;
}

.tab {
  color: #999;
}
.tab.tab-with-badge {
  display: flex;
  gap: 0.5rem;
}
.tab.tab-with-badge .badge-wrapper {
  border-radius: 4px;
  background-color: #F5F5F5;
  color: inherit;
  font-size: 0.875rem;
}
.tab.tab-with-badge.tab-selected .badge-wrapper, .tab.tab-with-badge:hover .badge-wrapper {
  background-color: #f5f7ff;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Tabs/TabControl.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.tab-wrapper {
  padding: 0.5em 0 1.125rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.2s ease-in;
}
.tab-wrapper:after {
  content: none;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 100%;
  height: 3px;
}
.tab-wrapper:hover {
  opacity: 1;
}
.tab-wrapper:hover:after {
  content: "";
  background-color: #E3E3E3;
}
.tab-wrapper.active {
  color: #4D4AEA;
  opacity: 1;
}
.tab-wrapper.active:after {
  content: "";
  background-color: #4D4AEA;
}
.tab-wrapper.active.counter .subtext {
  color: #4D4AEA;
  background-color: #f1faff;
}

.tab-counter {
  gap: 0.5rem;
}
.tab-counter .subtext {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
  background-color: #FCFCFC;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Tabs/TabBox.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.tab-box {
  padding: 0.5rem 0.5rem 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-radius: 12px;
  background-color: #f1faff;
}
.tab-box .image-with-text {
  gap: 0.5rem;
}
.tab-box .image-with-text .image-wrapper {
  max-width: 32px;
  height: 32px;
  border-radius: 32px;
  overflow: hidden;
  flex: 1 1 100%;
}
.tab-box .image-with-text .image-wrapper img {
  object-fit: cover;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/User/UserRating.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.user-rating .header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #EDEFF2;
}
.user-rating .content {
  padding: 2rem 2rem 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background-color: #fff;
}
.user-rating .content .user-rating-item {
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.user-rating .content .user-rating-item::after, .user-rating .content .user-rating-item::before {
  content: none;
  position: absolute;
  background-color: #EDEFF2;
}
.user-rating .content .user-rating-item:nth-child(odd)::after {
  content: "";
  top: 0;
  left: 100%;
  width: 1px;
  height: 100%;
}
.user-rating .content .user-rating-item:nth-child(n+3)::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
.user-rating .content .user-rating-item .wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.user-rating .footer {
  padding: 0 2rem 2rem 2rem;
  opacity: 0.35;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/User/UserVehicleAccess.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.vehicle-access {
  display: flex;
  gap: 3rem;
}
.vehicle-access .vehicles-wrapper {
  display: flex;
  gap: 4rem;
}
.vehicle-access .vehicles-wrapper .image-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
  opacity: 0.35;
}
.vehicle-access .vehicles-wrapper .image-wrapper.checked {
  opacity: 1;
}
.vehicle-access .vehicles-wrapper .image-wrapper.checked:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  top: -4px;
  right: -8px;
  background-image: url("/Assets/Icons/checkbox.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/User/UserInfoBox.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.user-info-box {
  padding: 1.5rem;
  border-radius: 12px;
  background-color: #f1faff;
}
.user-info-box .file-area-container {
  width: 120px;
  height: 120px;
}
.user-info-box .file-area-container .file-area-box {
  padding: 0.5rem;
  height: 100%;
}
.user-info-box .file-area-container .file-area-box .image-wrapper {
  margin-bottom: 0.5rem;
}
.user-info-box .username-wrapper h5 {
  font-size: 1.625rem;
}
.user-info-box .username-wrapper span {
  color: #878787;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Forms/FormLoadingOverlay.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.form-loading-overlay {
  display: flex;
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  background-color: rgba(255, 255, 255, 0.8);
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}
.form-loading-overlay > .loading-dot {
  width: 0.785rem;
  height: 0.785rem;
  background-color: #000;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Forms/Form.razor.scss */
.form {
  position: relative;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Forms/SaveButton.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.save-button {
  margin: 0;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 6px;
  min-height: 46px;
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s linear;
  gap: 10px;
}
.save-button .image-wrapper {
  width: 22px;
  height: 22px;
}
.save-button .image-wrapper img {
  object-fit: contain;
}
.save-button:hover {
  background-color: #000;
  color: #fff;
}
.save-button:hover .image-wrapper {
  filter: brightness(0) invert(1);
}
.save-button.busy {
  background-color: #000 !important;
  border-color: #000 !important;
  color: transparent !important;
}
.save-button.busy .image-wrapper {
  opacity: 0 !important;
}
.save-button.dark {
  background-color: #000;
  color: #fff;
}
.save-button.dark .image-wrapper {
  filter: brightness(0) invert(1);
}
.save-button.dark:hover {
  background-color: #3B3B3B;
  border: 2px solid #3B3B3B;
  transition: border 0.2s linear;
}
.save-button.dark.zip {
  margin: 0;
  min-width: 160px;
}
.save-button.blue {
  background-color: #ECF8FF;
  border: none;
}
.save-button.blue:hover {
  background-color: #4EB5F0;
  color: #fff;
  transition: border 0.2s linear;
}
.save-button.blue:hover .image-wrapper {
  filter: brightness(0) invert(1);
}
.save-button.grey {
  background-color: #F8F8F8;
  border: none;
}
.save-button.grey:hover {
  background-color: #ebebeb;
  transition: border 0.2s linear;
  color: #000;
}
.save-button.grey:hover .image-wrapper {
  filter: none;
}
.save-button.green {
  background-color: #6B8F1F;
  border: none;
  color: #fff;
}
.save-button.green .image-wrapper {
  filter: brightness(0) invert(1);
}
.save-button.green:hover {
  background-color: #579B2A;
}
.save-button.delete {
  background-color: #FFD4D4;
  border: none;
}
.save-button.delete .image-wrapper {
  filter: brightness(0) saturate(100%) invert(13%) sepia(95%) saturate(3108%) hue-rotate(355deg) brightness(97%) contrast(100%);
}
.save-button.delete:hover {
  background-color: #fdeaea;
}
.save-button.opacity {
  opacity: 0.5;
}
.save-button.opacity:hover {
  opacity: 1;
}
.save-button.tip-yellow {
  background-color: #FFF5D8;
  border-color: #DCB441;
  color: #DCB441;
  transition: all 0.2s linear;
}
.save-button.tip-yellow .image-wrapper {
  filter: invert(82%) sepia(97%) saturate(945%) hue-rotate(322deg) brightness(91%) contrast(87%);
}
.save-button.tip-yellow:hover {
  border-color: #000;
  color: #000;
}
.save-button.tip-yellow:hover .image-wrapper {
  filter: invert(0%) sepia(4%) saturate(7483%) hue-rotate(194deg) brightness(95%) contrast(106%);
}
.save-button.no-border {
  background-color: transparent;
  border: none;
  border-radius: 0;
  transition: color 0.1s linear;
}
.save-button.no-border:hover {
  color: #4EB5F0;
}
.save-button.no-border:hover .image-wrapper {
  filter: brightness(0) saturate(100%) invert(24%) sepia(47%) saturate(5425%) hue-rotate(238deg) brightness(95%) contrast(92%);
}
.save-button.comment {
  background-color: #E3E3E3;
  border: none;
  opacity: 0.35;
}
.save-button.comment:hover {
  background-color: #000;
  color: #fff;
  transition: border 0.2s linear;
  opacity: 1;
}
.save-button.comment:hover .image-wrapper {
  filter: brightness(0) invert(1);
}
.save-button.reply {
  padding: 0 12px;
  gap: 8px;
  min-height: 32px;
  background-color: transparent;
  border: none;
  opacity: 0.35;
}
.save-button.reply .image-wrapper {
  width: auto;
  height: 12px;
}
.save-button.reply:hover {
  background-color: #000;
  transition: border 0.2s linear;
  opacity: 0.65;
}
.save-button.icon {
  padding: 0.5rem 0.25rem;
  border: 2px solid transparent;
  background-color: transparent;
  font-size: 0;
  transition: all 0.3s linear;
  min-width: 46px;
}
.save-button.icon .image-wrapper {
  width: 22px;
  height: 22px;
  filter: none;
}
.save-button.icon:hover {
  opacity: 0.35;
}
.save-button.vin-btn {
  padding: 0.25rem;
  border: 2px solid transparent;
  background-color: transparent;
  font-size: 0;
  min-height: auto;
  transition: all 0.2s linear;
}
.save-button.vin-btn .image-wrapper {
  width: 12px;
  filter: none;
}
.save-button.vin-btn:hover {
  background-color: #000;
}
.save-button.vin-btn:hover .image-wrapper {
  filter: brightness(0) invert(1);
}
.save-button.close {
  margin-right: 0;
  padding: 0.5rem 0.25rem;
  border: 2px solid transparent;
  background-color: transparent;
  font-size: 0;
  transition: all 0.3s ease-in;
}
.save-button.close .image-wrapper {
  width: 14px;
  filter: none;
}
.save-button.close:hover {
  opacity: 0.35;
}
.save-button.more {
  margin-top: 6px;
  padding: 0;
  opacity: 0.35;
  min-height: inherit;
  border: 2px solid transparent;
  background-color: transparent;
  font-size: 0;
  transition: all 0.3s ease-in;
}
.save-button.more .image-wrapper {
  width: 22px;
  filter: none;
}
.save-button.more:hover {
  opacity: 0.5;
}
.save-button.social {
  margin-left: 0;
  padding: 0.5rem;
  background-color: #F8F8F8;
  border-color: #F8F8F8;
}
.save-button.social:hover {
  background-color: #3E3E3E;
}
.save-button.social:hover .image-wrapper {
  filter: none;
}
.save-button.big {
  padding: 0.75rem 1rem;
  font-size: 1.125rem;
}
.save-button.big .image-wrapper {
  width: 30px;
  height: auto;
}
.save-button.text {
  margin: 0;
  padding: 0 10px;
  border: none;
}
.save-button.text .image-wrapper {
  display: none;
}
.save-button.text:hover {
  background-color: transparent;
  color: #878787;
}
.save-button.add {
  margin-right: 0;
  border: 2px dashed #D2D2D2;
  transition: border-color 0.2s ease-in;
}
.save-button.add .image-wrapper {
  filter: none;
}
.save-button.add:hover {
  background-color: transparent;
  border-color: #000;
  color: #000;
}
.save-button.forgot-password {
  padding: 0 0 0 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #000;
  transition: color 0.2s linear;
  text-decoration: none;
  border: none;
  border-radius: 0;
  border-left: 1px solid #000;
  min-height: auto;
}
.save-button.forgot-password:hover {
  color: #4EB5F0;
  background-color: transparent;
}
.save-button.icon-small .image-wrapper {
  width: 12px;
  height: 12px;
}
.save-button.red {
  border-color: #a7030e;
  color: #a7030e;
}
.save-button.red .image-wrapper {
  filter: brightness(0) saturate(100%) invert(13%) sepia(95%) saturate(3108%) hue-rotate(355deg) brightness(97%) contrast(100%);
}
.save-button.red:hover {
  color: #fff;
  background-color: #a7030e;
  opacity: 1;
}
.save-button.red:hover .image-wrapper {
  filter: brightness(0) invert(1);
}
.save-button.yellow {
  border-color: #F2B100;
  color: #F2B100;
}
.save-button.yellow .image-wrapper {
  filter: invert(62%) sepia(14%) saturate(3779%) hue-rotate(11deg) brightness(108%) contrast(101%);
}
.save-button.yellow:hover {
  color: #fff;
  background-color: #F2B100;
}
.save-button.yellow:hover .image-wrapper {
  filter: brightness(0) invert(1);
}
.save-button.accept {
  border-color: #6B8F1F;
  color: #6B8F1F;
}
.save-button.accept .image-wrapper {
  filter: invert(45%) sepia(20%) saturate(2034%) hue-rotate(38deg) brightness(104%) contrast(76%);
}
.save-button.accept:hover {
  color: #fff;
  background-color: #6B8F1F;
}
.save-button.accept:hover .image-wrapper {
  filter: brightness(0) invert(1);
}

.save-button.save-button-changed {
  border-color: #F2B100;
  background-color: #F2B100;
  color: #fff;
}
.save-button.save-button-changed .image-wrapper {
  filter: brightness(0) invert(1);
}
.save-button.save-button-changed:hover {
  background-color: #3E3E3E;
  border-color: #3E3E3E;
}
.save-button.save-button-changed:hover .image-wrapper {
  filter: brightness(0) invert(1);
}
.save-button.save-button-saved {
  background-color: #6B8F1F;
  border-color: #6B8F1F;
  color: #fff;
}
.save-button.save-button-saved .image-wrapper {
  filter: brightness(0) invert(1);
}
.save-button.save-button-saved:hover {
  border-color: #587712;
  background-color: #587712;
}
.save-button.save-button-saved:hover .image-wrapper {
  filter: brightness(0) invert(1);
}
.save-button.save-button-invalid {
  border-color: #a7030e;
  color: #a7030e;
}
.save-button.save-button-invalid .image-wrapper {
  filter: brightness(0) saturate(100%) invert(13%) sepia(95%) saturate(3108%) hue-rotate(355deg) brightness(97%) contrast(100%);
}
.save-button.save-button-invalid:hover {
  color: #fff;
  background-color: #a7030e;
  opacity: 1;
}
.save-button.save-button-invalid:hover .image-wrapper {
  filter: brightness(0) invert(1);
}

.bouncing-loader {
  position: absolute;
  top: calc(50% + 4px);
  transform: translateY(-50%);
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Forms/FormField.razor.scss */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Menus/ContextMenu.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.context-menu {
  display: none;
  padding: 6px 0;
  position: absolute;
  top: 47px;
  width: auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 10px rgba(0, 7, 21, 0.025);
  z-index: 99;
}
.context-menu::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 10px;
  height: 8px;
  width: 12px;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  z-index: 1;
}
.context-menu .select-list {
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-y: auto;
}
.context-menu .select-list .option {
  position: relative;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.1s ease;
}
.context-menu .select-list .option .image-wrapper {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
}
.context-menu .select-list .option .image-wrapper img {
  object-fit: cover;
}
.context-menu .select-list .option:hover {
  background-color: #F8F8F8;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Menus/NavmenuItem.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.navmenu-item.list-open > .expanded .arrow {
  transform: rotate(90deg);
}
.navmenu-item .navmenu-sub-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.navmenu-item .navmenu-sub-list .navmenu-link {
  padding-left: 1.5rem;
}

.navmenu-link {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  list-style-type: none;
  color: #000;
  border-right: 4px solid transparent;
  opacity: 0.65;
}
.navmenu-link .image-wrapper {
  width: 20px;
}
.navmenu-link .image-wrapper img {
  width: 100%;
}
.navmenu-link .navmenu-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navmenu-link .arrow {
  width: 6px;
  transition: all 0.2s ease-in;
  opacity: 0.65;
}
.navmenu-link:hover {
  opacity: 1;
  border-color: #EDEFF2;
}
.navmenu-link:hover a {
  font-weight: 600;
}
.navmenu-link.active {
  background-color: #E8F8FF;
  border-color: #4D4AEA;
  font-weight: 600;
  opacity: 1;
}
.navmenu-link.active span {
  color: #4D4AEA;
}
.navmenu-link.active img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(47%) saturate(5425%) hue-rotate(238deg) brightness(95%) contrast(92%);
}
.navmenu-link.active .arrow {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(24%) sepia(47%) saturate(5425%) hue-rotate(238deg) brightness(95%) contrast(92%);
}

/* File: ../SiriusSoftware.Core.Frontend/Components/DragAndDrop/Draggable.razor.scss */

/* File: ../SiriusSoftware.Core.Frontend/Components/Inputs/PhoneNumberInput.razor.scss */
.phone-number-input {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.phone-number-input .select {
  flex: 0;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Inputs/CounterInput.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.counter-input label {
  margin-bottom: 0.125rem;
}
.counter-input .counter-input-wrapper {
  display: flex;
  position: relative;
  width: fit-content;
}
.counter-input .counter-input-wrapper .icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  opacity: 0.5;
}
.counter-input .counter-input-wrapper .icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  width: 1px;
  height: 20px;
  background-color: #000;
}
.counter-input .counter-input-wrapper .input input {
  padding: 0.5rem 3rem 0.5rem 3.5rem;
  font-weight: 600;
}
.counter-input .counter-input-wrapper .counter-buttons {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 24px;
}
.counter-input .counter-input-wrapper .counter-buttons .arrow {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: initial;
  min-height: 12px;
}
.counter-input .counter-input-wrapper .counter-buttons .arrow .image-wrapper {
  width: 12px;
  height: 12px;
  left: 0;
}
.counter-input .counter-input-wrapper .counter-buttons .arrow .image-wrapper img {
  filter: none;
}
.counter-input .counter-input-wrapper .counter-buttons .arrow:hover .image-wrapper {
  filter: none;
  opacity: 0.3;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Inputs/CheckboxListInput.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.checkbox-list-input {
  border: 1px solid #EDEFF2;
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
}
.checkbox-list-input h6 {
  margin: 0;
  padding: 1.5rem;
  border-bottom: 1px solid #EDEFF2;
  font-weight: 600;
}
.checkbox-list-input .list-grid {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 1.5rem;
  width: 100%;
}
.checkbox-list-input .list-grid .form-field label {
  text-wrap: wrap !important;
}
.checkbox-list-input .add-option-container {
  padding: 1.5rem;
  border-top: 1px solid #EDEFF2;
  background-color: #F8F8F8;
}
.checkbox-list-input .add-option-container .input-wrapper {
  position: relative;
  max-width: 530px;
}
.checkbox-list-input .add-option-container .input-wrapper .form-control {
  padding: 12px 80px 12px 12px;
}
.checkbox-list-input .add-option-container .input-wrapper .input input {
  min-height: 54px;
}
.checkbox-list-input .add-option-container .input-wrapper .base-button {
  padding: 0.35rem 0.5rem;
  position: absolute;
  right: 10px;
  bottom: 8px;
  min-height: auto;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Inputs/PercentageInput.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.percentage-input .input-wrapper {
  position: relative;
}
.percentage-input .input-wrapper input {
  padding-right: 22px;
}
.percentage-input .input-wrapper .percent-symbol {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999999;
  font-size: 0.875rem;
  font-weight: 600;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Inputs/URLListInput.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.list-input-wrapper {
  display: flex;
  gap: 12px;
  flex-direction: column;
  width: 100%;
}
.list-input-wrapper .input-item {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: flex-end;
}
.list-input-wrapper .input-item .input input {
  border-color: #F2F2F2;
  background-color: #F2F2F2;
}
.list-input-wrapper .input-item .input input:hover {
  border-color: #959595;
}
.list-input-wrapper .input-item .base-button {
  position: relative;
  min-width: 100px;
  justify-content: flex-start;
  opacity: 0.35;
}
.list-input-wrapper .input-item .base-button:hover {
  opacity: 1;
  color: #000;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Inputs/TextAreaInput.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.text-area textarea {
  padding: 0.625rem;
  width: 100%;
  border-radius: 6px;
  border: 2px solid #EDEFF2;
  transition: all 0.2s ease-in;
  min-height: 46px;
}
.text-area.h-100 .textarea {
  height: 100% !important;
}

.textarea.readonly {
  background-color: #F2F2F2;
  border: 2px solid #F2F2F2;
}

.textarea.readonly:hover {
  border: 2px solid #F2F2F2;
}

.form-field.form-field-changed .text-area textarea {
  border-color: #DCB441;
}

.form-field.form-field-saved .text-area textarea {
  border-color: #579B2A;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Inputs/DurationInput.razor.scss */

/* File: ../SiriusSoftware.Core.Frontend/Components/Inputs/ColorInput.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.input.color-input {
  width: 100%;
  height: 46px;
  padding: 6px 12px;
  border-radius: 6px;
  border: 2px solid #EDEFF2;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.input.color-input .color-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #EDEFF2;
}
.input.color-input .color-swatch.unset-color {
  background: repeating-conic-gradient(#ccc 0% 25%, #fff 0% 50%) 0%/10px 10px;
}
.input.color-input input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
}
.input.color-input:hover {
  border-color: #959595;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Inputs/PasswordInput.razor.scss */
.input-wrapper .input-content {
  position: relative;
  width: 100%;
}
.input-wrapper .input-content input {
  padding-right: 144px !important;
}
.input-wrapper .input-content .show-password-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 118px;
  width: 20px;
  opacity: 0.35;
  transition: opacity 0.2s ease-in;
  cursor: pointer;
}
.input-wrapper .input-content .show-password-icon:hover {
  opacity: 1;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Inputs/ListInput.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.list-input-wrapper {
  display: flex;
  gap: 12px;
  flex-direction: column;
  width: 100%;
}
.list-input-wrapper .input-item {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: flex-end;
}
.list-input-wrapper .input-item .input input {
  border-color: #F2F2F2;
}
.list-input-wrapper .input-item .input input:hover {
  border-color: #959595;
}
.list-input-wrapper .input-item .base-button {
  position: relative;
  min-width: 100px;
  justify-content: flex-start;
  opacity: 0.35;
}
.list-input-wrapper .input-item .base-button:hover {
  opacity: 1;
  color: #000;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Inputs/TextInput.razor.scss */

/* File: ../SiriusSoftware.Core.Frontend/Components/Inputs/ProfileImageInput.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.profile-upload-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #CADBF2;
  width: 100px;
  height: 100px;
  border-radius: 100px;
}
.profile-upload-item .icon {
  padding: 0.125rem;
  position: absolute;
  top: 0;
  right: 0;
  max-height: 20px;
  min-height: 20px;
  background-color: #CADBF2;
}
.profile-upload-item .icon .image-wrapper {
  width: 16px;
  height: 16px;
}
.profile-upload-item .upload-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #CADBF2;
  border: 6px solid #fff;
  width: 94px;
  height: 94px;
  border-radius: calc(100px - 1rem);
  overflow: hidden;
}
.profile-upload-item .upload-image-wrapper span {
  color: #7386A0;
  font-size: 2.5rem;
  font-weight: 600;
}
.profile-upload-item .status {
  position: absolute;
  bottom: 6px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 3px solid #fff;
}
.profile-upload-item .status.active {
  background-color: #579B2A;
}
.profile-upload-item .status.disable {
  background-color: #fdeaea;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Inputs/SearchInput.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.input-group {
  position: relative;
}
.input-group .input-control {
  padding: 6px 32px 6px 12px;
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  position: relative;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
  background-clip: padding-box;
  border: 2px solid #EDEFF2;
  appearance: none;
  border-radius: 6px !important;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.input-group .input-control:hover {
  border-color: #959595;
}
.input-group ::placeholder {
  opacity: 0.25;
}
.input-group .input-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.input-group .input-icon .close {
  cursor: pointer;
}
.input-group .input-icon .close:hover {
  opacity: 0.5;
}
.input-group.search-dropdown {
  margin: 0 auto 8px auto;
  width: calc(100% - 20px) !important;
}
.input-group.search-dropdown .input-icon {
  width: 16px;
  height: 16px;
}
.input-group.search-dropdown .input-control:focus {
  box-shadow: 0 0 0 0.25rem #F8F8F8 !important;
  border-color: #000 !important;
}
.input-group.grey .input-control {
  background-color: #F8F8F8;
  border: 2px solid #F8F8F8;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Selects/PriceSelector.razor.scss */

/* File: ../SiriusSoftware.Core.Frontend/Components/Selects/Select.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.select {
  position: relative;
  width: 100%;
}
.select.input .selector {
  max-height: 46px;
  gap: 12px;
}
.select.input .selector .icon {
  width: 24px;
}
.select.input .dropdown-balloon {
  top: 58px;
  width: 100%;
}
.select.icon-circle {
  flex: 0;
}
.select.icon-circle .selector .image-wrapper.icon {
  border-radius: 50%;
  overflow: hidden;
}
.select.icon-circle {
  flex: 0;
}
.select.icon-circle .selector .image-wrapper.icon {
  border-radius: 50%;
  overflow: hidden;
}
.select.phone-code-selector-wrapper {
  flex: 0;
}
.select.phone-code-selector-wrapper .selector .image-wrapper.icon {
  border-radius: 50%;
  overflow: hidden;
}
.select.currency-dropdown .dropdown-balloon {
  min-width: 224px;
}
.select.currency-dropdown .dropdown-balloon .select-list-item span {
  text-align: end;
  margin-left: auto;
}
.select.dark .selector {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
}
.select.dark .selector .image-wrapper {
  filter: brightness(0) invert(1);
}
.select.dark .selector .image-wrapper.icon {
  max-width: 20px;
  min-width: 20px;
}
.select .tel {
  width: auto;
}
.select .tel .select-list .select-list-item {
  gap: 10px;
}
.select .tel .select-list .select-list-item span {
  width: 100%;
  font-size: 0.75rem;
  color: #878787;
  text-align: end;
}
.select .selector {
  margin: 0 auto;
  padding: 8px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  max-height: 46px;
  min-height: 46px;
  background-color: #fff;
  border: 2px solid #EDEFF2;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.select .selector .image-wrapper {
  max-width: 26px;
  min-width: 26px;
  height: 26px;
  transition: all 0.2s ease-in;
}
.select .selector .image-wrapper img {
  object-fit: cover;
}
.select .selector .image-wrapper.arrow {
  margin: 0 2px;
  min-width: 10px;
  width: 10px;
  height: auto;
  opacity: 0.35;
}
.select .selector span {
  flex: 1;
}
.select .selector:hover {
  border-color: #959595;
}
.select .selector:hover .image-wrapper.arrow {
  opacity: 1;
}
.select .selector.open {
  border-color: #000;
}
.select .selector.open .image-wrapper.arrow {
  transform: rotate(-180deg);
}
.select .dropdown-balloon {
  padding: 6px 0;
  position: absolute;
  top: 47px;
  width: auto;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 10px rgba(0, 7, 21, 0.025);
  z-index: 99;
}
.select .dropdown-balloon::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 10px;
  height: 8px;
  width: 12px;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  z-index: 1;
}
.select .dropdown-balloon.arrow-right::before {
  left: auto;
  right: 10px;
}
.select .dropdown-balloon.my-profile-dropdown {
  padding: 16px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  top: 56px;
  right: -14px;
  min-width: 220px;
}
.select .dropdown-balloon.my-profile-dropdown::before {
  left: auto;
  right: 18px;
}
.select .dropdown-balloon.my-profile-dropdown .my-profile-item {
  padding: 0 16px;
}
.select .dropdown-balloon.my-profile-dropdown .my-profile-item .text-wrapper {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4em;
}
.select .dropdown-balloon.my-profile-dropdown .my-profile-item .text-wrapper p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 200;
  line-height: 1.2em;
  color: #878787;
}
.select .dropdown-balloon.my-profile-dropdown .my-profile-item:hover {
  opacity: 0.7;
}
.select .dropdown-balloon.my-profile-dropdown .base-button.no-border {
  margin: 0;
  padding-bottom: 0;
  gap: 16px;
  width: 100%;
  justify-content: flex-start;
  border-top: 1px solid #EDEFF2;
  font-size: 1rem;
  font-weight: 600;
}
.select .dropdown-balloon .select-list {
  margin: 0;
  padding: 0;
  overflow: hidden;
  overflow-y: auto;
  max-height: 132px;
}
.select .dropdown-balloon .select-list.expanded {
  overflow-y: auto;
  max-height: 800px;
  height: auto;
}
.select .dropdown-balloon .select-list .option {
  position: relative;
  padding: 6px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.1s ease;
}
.select .dropdown-balloon .select-list .option .image-wrapper {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
}
.select .dropdown-balloon .select-list .option .image-wrapper img {
  object-fit: cover;
}
.select .dropdown-balloon .select-list .option:hover {
  background-color: #F8F8F8;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Selects/MileageSelector.razor.scss */

/* File: ../SiriusSoftware.Core.Frontend/Components/Selects/ButtonSelect.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.button-select {
  display: flex;
}
.button-select .options {
  display: flex;
  overflow: hidden;
  border-radius: 12px;
}
.button-select .options .option {
  display: flex;
  position: relative;
}
.button-select .options .option .text-label {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 56px;
  height: 46px;
  background-color: #f1faff;
  color: #000;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease-in;
  cursor: pointer;
}
.button-select .options .option .text-label .image-wrapper {
  width: 24px;
  height: 24px;
}
.button-select .options .option .text-label:hover {
  background-color: #ECF8FF;
}
.button-select .options .option.selected .text-label {
  background-color: #4D4AEA;
  color: #fff;
}
.button-select .options .option.selected .text-label.text {
  background-color: transparent;
  text-decoration: underline;
}
.button-select .options .option.text .text-label {
  padding: 2px;
  color: #878787;
  text-decoration: none;
  background-color: transparent;
}
.button-select .options .option.text .text-label:hover {
  color: #000;
  background-color: transparent;
}
.button-select .options .option.text.selected .text-label {
  background-color: transparent;
  text-decoration: underline;
  color: #000;
  border: 2px solid transparent;
}
.button-select .options .option.tab {
  display: flex;
  gap: 16px;
}
.button-select .options .option.tab .text-label {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  text-align: left;
}
.button-select .options .option.tab .text-label .image-wrapper {
  min-width: 90px;
  height: 90px;
}
.button-select .options .option.tab .text-label .text-label-content {
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}
.button-select .options .option.tab .text-label .text-label-content .sub-text-label {
  font-weight: 400;
  color: #878787;
  font-size: 0.875rem;
}
.button-select .options .option.tab .text-label:hover {
  background-color: #ECF8FF;
}
.button-select .options .option.tab.selected .text-label:hover {
  background-color: #ECF8FF;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Swiper/Swiper.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.swiper-button {
  width: 46px;
  height: 46px;
  font-size: 0;
  border-radius: 50%;
  transition: all 0.3s ease-in;
  opacity: 0.5;
  z-index: 99;
}
.swiper-button:focus {
  outline: none;
}
.swiper-button:hover {
  opacity: 1;
}
.swiper-button::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: background-image 0.3s ease-in;
  z-index: 98;
}
.swiper-button.swiper-button-next {
  top: calc(50% - 1px);
  right: 0;
}
.swiper-button.swiper-button-next::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
.swiper-button.swiper-button-prev {
  left: 0;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Views/TagView.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.tag-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px 0 10px;
  border-radius: 24px;
  font-size: 0.875rem;
  background-color: #ECF8FF;
}
.tag-view.red {
  background-color: #a7030e;
  color: #fff;
}
.tag-view.green {
  background-color: #7B974A;
  color: #fff;
}
.tag-view.grey {
  background-color: #F8F8F8;
  color: #878787;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Views/CurrencyView.razor.scss */
.inline-entity-view {
  display: inline-block;
  vertical-align: middle;
}
.inline-entity-view .image-with-text {
  gap: 8px;
  margin-left: 5px;
  margin-right: 5px;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Views/UserView.razor.scss */

/* File: ../SiriusSoftware.Core.Frontend/Components/Views/CountryView.razor.scss */
.country-view img {
  border-radius: 100%;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Table/TableRow.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.t-row {
  padding: 0 0.5rem;
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  max-height: 60px;
  transition: background-color 0.2s ease-out;
  background-color: #fff;
  overflow: hidden;
  z-index: 1;
}
.t-row.t-header {
  background-color: #F8F8F8;
  font-weight: 500;
  color: #878787;
  min-height: 36px !important;
  max-height: 36px;
}
.t-row.t-header .t-column {
  font-size: 0.875rem;
  min-height: 36px;
}
.t-row.t-header .icon {
  margin: 0;
}
.t-row.t-header .icon .image-wrapper {
  width: 8px;
}
.t-row:hover {
  background-color: #F8F8F8 !important;
}
.t-row:hover .progress-wrapper {
  background-color: #ebebeb;
}
.t-row:not(:first-child):nth-child(odd) {
  background-color: #FCFCFC;
}
.t-row:not(:first-child):nth-child(odd)::after {
  content: "";
  position: absolute;
  left: 100%;
  background-color: red;
  width: 100%;
  height: auto;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Table/TableColumn.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.t-column {
  display: flex;
  padding: 0 8px;
  flex-flow: row nowrap;
  flex: 1;
  align-items: center;
  height: 100%;
  min-height: 80px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.15s ease-in-out;
}
.t-column.small {
  max-width: 80px;
}
.t-column.medium {
  max-width: 120px;
}
.t-column.action {
  position: relative;
  justify-content: center;
  max-width: 240px;
  min-width: 240px;
}
.t-column.action::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 30%, rgb(62, 62, 62) 95%, rgb(62, 62, 62) 100%);
  opacity: 0.05;
  z-index: -1;
}
.t-column .pending,
.t-column .draft,
.t-column .accepted {
  padding: 12px;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-weight: 600;
  border-radius: 12px;
}
.t-column .pending .text-wrapper,
.t-column .draft .text-wrapper,
.t-column .accepted .text-wrapper {
  font-size: 0.875rem;
}
.t-column .pending {
  border: 2px solid #FFF5D8;
  background-color: #FFF5D8;
}
.t-column .pending .text-wrapper {
  color: #A77D00;
}
.t-column .draft {
  border: 2px dashed #878787;
  background-color: #fff;
}
.t-column .draft .text-wrapper {
  color: #000;
}
.t-column .accepted {
  border: 2px solid #ECF8FF;
  background-color: #ECF8FF;
}
.t-column .accepted .text-wrapper {
  color: #4EB5F0;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Table/Paginator.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.paginator {
  margin: 0 0 1rem 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.paginator .paginator-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 6px;
  border: 2px solid #F8F8F8;
  background-color: #F8F8F8;
  max-width: 32px;
  min-height: 32px;
  width: 100%;
  transition: all 0.2s ease;
  cursor: pointer;
}
.paginator .paginator-item .paginator-link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.paginator .paginator-item .paginator-link .image-wrapper {
  max-width: 8px;
}
.paginator .paginator-item:hover {
  background-color: #fff;
  border-color: #000;
}
.paginator .paginator-item:hover .paginator-link {
  color: #000 !important;
}
.paginator .paginator-item.disable {
  opacity: 0.35;
  border-color: #EDEFF2;
  pointer-events: none;
}
.paginator .paginator-item.disable .paginator-link {
  cursor: default !important;
}
.paginator .paginator-item.active {
  background-color: #000;
  border-color: #000;
}
.paginator .paginator-item.active .paginator-link {
  color: #fff;
}
.paginator .paginator-item.active:hover {
  opacity: 0.7;
}
.paginator .paginator-item.active:hover .paginator-link {
  color: #fff !important;
}
.paginator .paginator-separator {
  display: flex;
  align-items: flex-end;
  min-height: 32px;
  font-size: 0.875rem;
  font-weight: 900;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.1em;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Table/Table.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.table-header {
  padding: 1rem;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .table-header {
    align-items: center;
  }
  .table-header .search-wrapper .form-field {
    max-width: 100% !important;
  }
  .table-header .table-header-content {
    flex: 0 0 auto !important;
  }
}
.table-header .search-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex: 1;
}
.table-header .search-wrapper .form-field {
  width: 100%;
  max-width: 400px;
  flex: 1;
}
.table-header .search-wrapper .base-button {
  margin-bottom: 2px !important;
}
.table-header .table-header-content {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex: 1;
}

.filters-wrapper {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  background-color: #F8F8F8;
  border-bottom: 1px solid #EDEFF2;
}

.t-container {
  display: grid;
  grid-template-columns: 1fr 180px;
  grid-row-gap: 1rem;
  width: 100%;
  overflow: hidden;
}
.t-container.two-action-buttons {
  grid-template-columns: 1fr 160px;
}
.t-container.one-action-button {
  grid-template-columns: 1fr 120px;
}
@media (max-width: 767.98px) {
  .t-container {
    grid-template-columns: 1fr 60px;
    transition: grid-template-columns 0.2s ease;
  }
  .t-container.show-actions {
    grid-template-columns: 1fr 180px;
  }
  .t-container.show-actions .t-action-wrapper {
    padding: 0 0.5rem;
    right: 0;
    left: initial;
  }
  .t-container.show-actions .t-action-wrapper .more-btn {
    display: none;
  }
  .t-container.show-actions .t-action-wrapper .action {
    display: flex;
  }
}
.t-container * {
  box-sizing: border-box;
}
.t-container .t-content-wrapper {
  display: grid;
  justify-items: stretch;
  white-space: nowrap;
}
.t-container .t-content-wrapper .t-content {
  position: relative;
  display: grid;
  justify-items: stretch;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
  font-size: 0;
  cursor: default;
  border-bottom: 1px solid #EDEFF2;
}
.t-container .t-content-wrapper .t-content .t-row {
  justify-content: left;
}
.t-container .t-content-wrapper .t-content .t-row:not(.action) {
  width: 100%;
}
.t-container .t-content-wrapper .t-content .t-row.t-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0 4rem 240px;
}
.t-container .t-content-wrapper .t-content.active {
  cursor: grabbing;
}
.t-container .t-actions {
  position: relative;
  background-color: #fff;
  border-bottom: 1px solid #EDEFF2;
}
.t-container .t-actions::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  height: 100%;
  width: 20px;
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.t-container .t-actions .t-header .t-column {
  justify-content: center;
}
.t-container .t-actions.none::before {
  content: none;
}

.t-action-row .t-action-wrapper {
  padding: 0 0.5rem;
  display: flex;
  width: 236px;
  position: absolute;
  right: 0;
}
.t-action-row .t-action-wrapper .more-btn {
  padding: 6px;
  display: none;
  height: 38px;
  width: 38px;
}
.t-action-row .t-action-wrapper .more-btn .image-wrapper {
  margin: 0 auto;
}
.t-action-row .table-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.t-action-row .table-cell .table-button {
  width: 34px;
  max-height: 34px;
  min-height: 34px;
}
@media (max-width: 767.98px) {
  .t-action-row .t-action-wrapper {
    padding: 0 0.125rem;
    left: 0;
    right: initial;
  }
  .t-action-row .t-action-wrapper .more-btn {
    display: block;
  }
  .t-action-row .t-action-wrapper .action {
    display: none;
  }
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Table/BaseTableColumn.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.t-column {
  display: flex;
  padding: 0 8px;
  flex-flow: row nowrap;
  flex: 1;
  align-items: center;
  height: 100%;
  min-height: 80px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.15s ease-in-out;
}
.t-column.small {
  max-width: 80px;
}
.t-column.medium {
  max-width: 120px;
}
.t-column.action {
  position: relative;
  justify-content: center;
  max-width: 240px;
  min-width: 240px;
}
.t-column.action::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 30%, rgb(62, 62, 62) 95%, rgb(62, 62, 62) 100%);
  opacity: 0.05;
  z-index: -1;
}
.t-column .pending,
.t-column .draft,
.t-column .accepted {
  padding: 12px;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-weight: 600;
  border-radius: 12px;
}
.t-column .pending .text-wrapper,
.t-column .draft .text-wrapper,
.t-column .accepted .text-wrapper {
  font-size: 0.875rem;
}
.t-column .pending {
  border: 2px solid #FFF5D8;
  background-color: #FFF5D8;
}
.t-column .pending .text-wrapper {
  color: #A77D00;
}
.t-column .draft {
  border: 2px dashed #878787;
  background-color: #fff;
}
.t-column .draft .text-wrapper {
  color: #000;
}
.t-column .accepted {
  border: 2px solid #ECF8FF;
  background-color: #ECF8FF;
}
.t-column .accepted .text-wrapper {
  color: #4EB5F0;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Table/TableFilterControl.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.table-filter {
  display: flex;
  gap: 0.75rem;
}
.table-filter .table-filter-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.table-filter .table-filter-item span {
  font-size: 0.875rem;
  color: #878787;
}
.table-filter .table-filter-item .base-button .image-wrapper {
  width: 0.75rem;
  height: 0.75rem;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Table/TableCell.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.table-cell {
  padding: 8px;
  display: flex;
  flex-flow: row nowrap;
  flex: 1;
  align-items: center;
  height: 100%;
  min-height: 60px;
  max-height: 60px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.15s ease-in-out;
  text-wrap: wrap;
  word-break: break-word;
  overflow: auto;
}
.table-cell.small {
  max-width: 80px;
}
.table-cell.medium {
  max-width: 120px;
}
.table-cell.action {
  position: relative;
  justify-content: center;
  max-width: 240px;
  min-width: 240px;
}
.table-cell.action::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 30%, rgb(62, 62, 62) 95%, rgb(62, 62, 62) 100%);
  opacity: 0.05;
  z-index: -1;
}
.table-cell .image-with-text .image-wrapper {
  min-width: 22px;
  max-width: 22px;
}
.table-cell .pending,
.table-cell .draft,
.table-cell .accepted {
  padding: 0.5rem;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-weight: 600;
  border-radius: 12px;
  justify-content: center;
}
.table-cell .pending .text-wrapper,
.table-cell .draft .text-wrapper,
.table-cell .accepted .text-wrapper {
  font-size: 0.875rem;
}
.table-cell .pending {
  border: 2px solid #FFF5D8;
  background-color: #FFF5D8;
}
.table-cell .pending .text-wrapper {
  color: #A77D00;
}
.table-cell .draft {
  border: 2px dashed #878787;
  background-color: #fff;
}
.table-cell .draft .image-wrapper {
  max-width: 1.25rem;
}
.table-cell .draft .text-wrapper {
  color: #000;
}
.table-cell .accepted {
  border: 2px solid #ECF8FF;
  background-color: #ECF8FF;
}
.table-cell .accepted .text-wrapper {
  color: #4EB5F0;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Box/BoxSectionTitle.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.box-title {
  padding: 1rem 2rem;
  background-color: #FCFCFC;
}
.box-title h3 {
  margin: 0;
  font-size: 0.875rem;
}
.box-title.head {
  margin: 0;
  padding: 1.25rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom: 1px solid #EDEFF2;
  background-color: #fff;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.box-title.head h3 {
  font-size: 1rem;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Box/BoxColumn.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.box-column-content {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.box-column-content label {
  color: #878787;
}
.box-column-content span {
  font-weight: 600;
}
.box-column-content .comment-wrapper {
  padding: 0.75rem;
  border-radius: 12px;
  background-color: #E7EEF7;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Box/Box.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.box {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 10px rgba(0, 7, 21, 0.015);
}
.box .title {
  margin: 0;
  padding: 1.25rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom: 1px solid #efefef;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Box/BoxSection.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.box-section {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.box-section.map-wrapper {
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
}
.box-section.map-wrapper .map {
  width: 100%;
  min-height: 600px;
}
.box-section.low-bottom-padding {
  padding-bottom: 0.5rem;
}
.box-section.low-top-padding {
  padding-top: 0.5rem;
}
@media (max-width: 767.98px) {
  .box-section {
    padding: 1.125rem;
  }
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Box/BoxGrid.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.box-grid {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

@media (max-width: 1399.98px) {
  .grid-5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-6 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 1399.98px) {
  .grid-4,
  .grid-5,
  .grid-6,
  .grid-7,
  .grid-8,
  .grid-9,
  .grid-10 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1199.98px) {
  .grid-4,
  .grid-5,
  .grid-6,
  .grid-7,
  .grid-8,
  .grid-9,
  .grid-10 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 991.98px) {
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-6,
  .grid-7,
  .grid-8,
  .grid-9,
  .grid-10 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-6,
  .grid-7,
  .grid-8,
  .grid-9,
  .grid-10 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Files/FileInput.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.upload-item {
  position: relative;
}
.upload-item .delete {
  margin: 0;
  padding: 0;
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 20px;
  width: 20px;
  height: 20px;
  min-height: 20px;
  opacity: 1;
  z-index: 1;
}
.upload-item .delete .image-wrapper {
  height: 9.0909090909px;
}
.upload-item .upload-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #FCFCFC;
  border-radius: 12px;
  box-shadow: 0 0 0 4px rgb(255, 255, 255);
  overflow: hidden;
}
.upload-item .upload-image img {
  object-fit: cover;
}
.upload-item .upload-icon {
  padding: 8px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}
.upload-item .upload-icon .image-wrapper {
  width: 14px;
}
.upload-item .upload-icon .image-wrapper img {
  filter: brightness(0) invert(1);
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Files/FileArea.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.file-area-container {
  position: relative;
}
.file-area-container .profile-photo-label {
  margin: 0;
  width: 100%;
}
.file-area-container:hover .secondary-button {
  background-color: #e4efff;
}
.file-area-container .file-area-box {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 12px;
  border: 2px dashed rgba(0, 0, 0, 0.35);
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.2s;
}
.file-area-container .file-area-box span {
  color: #878787;
  font-size: 0.875rem;
  font-weight: 400;
}
.file-area-container .file-area-box .image-wrapper {
  margin-bottom: 0.5rem;
  width: 40px;
}
.file-area-container .file-area-box:hover {
  opacity: 1;
}
.file-area-container .drag-over {
  opacity: 1;
}
.file-area-container .placeholder-list-container {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #F1F1F1;
  border-radius: 6px;
  width: 100%;
}
.file-area-container .placeholder-list-container .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 1rem;
}
.file-area-container .placeholder-list-container .gallery-grid .upload-item .upload-image {
  width: 100%;
  height: 100%;
}
.file-area-container .placeholder-list-container .gallery-grid .upload-item .file {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FCFCFC;
  border-radius: 12px;
  box-shadow: 0 0 0 4px rgb(255, 255, 255);
  color: #878787;
  font-weight: 600;
  text-transform: uppercase;
  overflow: hidden;
  pointer-events: none;
}
.file-area-container.button-white .choose-button {
  background-color: #fff;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Tiles/Tile.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.tile {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 24px;
  transition: all 0.2s ease-in;
  border: 3px solid #F8F8F8;
}
.tile:hover {
  border-color: #ebebeb;
  color: #000;
}
.tile .image-with-text {
  max-width: 100%;
}
.tile .image-with-text p {
  margin: 0;
}
.tile .image-with-text .image-wrapper {
  width: 60px;
  height: 60px;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Tiles/TileGrid.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.tile-grid {
  padding: 0.875rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
  background-color: #F8F8F8;
  border-radius: 24px;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Toggles/Toggle.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.toggle-wrapper {
  position: relative;
  display: inline-flex;
  width: 48px;
  min-width: 48px;
  height: 28px;
}
.toggle-wrapper.small {
  width: 44px;
  height: 26px;
}
.toggle-wrapper.small .toggle-item::before {
  height: 18px;
  width: 18px;
}
.toggle-wrapper.small input:checked + .toggle-item:before {
  transform: translateX(16px);
}
.toggle-wrapper input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-wrapper .toggle-item {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.toggle-wrapper .toggle-item::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 2px 12px 10px rgba(0, 7, 21, 0.025);
}
.toggle-wrapper input:checked + .toggle-item {
  background-color: #579B2A;
}
.toggle-wrapper input:focus + .toggle-item {
  box-shadow: 0 0 1px #579B2A;
}
.toggle-wrapper input:checked + .toggle-item:before {
  transform: translateX(20px);
}
.toggle-wrapper.extra-small {
  width: 32px;
  height: 20px;
}
.toggle-wrapper.extra-small .toggle-item::before {
  height: 12px;
  width: 12px;
}
.toggle-wrapper.extra-small input:checked + .toggle-item:before {
  transform: translateX(12px);
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Toggles/RadioGroup.razor.scss */

/* File: ../SiriusSoftware.Core.Frontend/Components/Toggles/ToggleWithText.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.toggle-with-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.toggle-with-text .toggle {
  display: flex;
}
.toggle-with-text .label {
  display: flex;
  flex-direction: column;
  font-weight: 700;
}
.toggle-with-text .label span {
  font-weight: 400;
  color: #878787;
}
.toggle-with-text.custom {
  padding: 0.75rem 0.875rem 0.75rem 0.75rem;
  gap: 0.5rem;
  width: fit-content;
}
.toggle-with-text.custom .label {
  color: #579B2A;
  font-weight: 500;
}
.toggle-with-text.custom.active {
  background-color: #F1FFD8;
  border-radius: 38px;
}
.toggle-with-text.custom.active .label {
  color: #579B2A;
}
.toggle-with-text.custom.disable {
  background-color: #fdeaea;
  border-radius: 38px;
}
.toggle-with-text.custom.disable .label {
  color: #E25050;
}
.toggle-with-text.custom.disable .toggle-wrapper .toggle-item {
  background-color: #E25050;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Toggles/Checkbox.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.checkbox {
  display: flex;
}
.checkbox .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.checkbox .form-group label {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
}
.checkbox .form-group label::before {
  padding: 8px;
  content: "";
  display: inline-block;
  position: relative;
  vertical-align: middle;
  background-color: #fff;
  border: 2px solid #EDEFF2;
  border-radius: 6px;
  -webkit-appearance: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.checkbox .form-group label:hover::before {
  border-color: #000;
  opacity: 0.5;
}
.checkbox .form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox .form-group input:checked + label:before {
  border-color: #000;
}
.checkbox.blue {
  margin: 0;
}
.checkbox.blue label::before {
  padding: 12px;
}
.checkbox.blue label:hover::before {
  border-color: #000;
  opacity: 0.5;
}
.checkbox.blue label span {
  margin-top: 4px;
}
.checkbox.blue input:checked + label:after {
  top: 6px;
  left: 10px;
  width: 8px;
  height: 14px;
  border: solid #4EB5F0;
  border-width: 0 2px 2px 0;
}
.checkbox.blue input:checked + label:before {
  border-color: #4EB5F0;
  background-color: #ECF8FF;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Toggles/ToggleSelector.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.toggle-selector {
  padding: 1rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background-color: #FCFCFC;
  border-radius: 12px;
}
.toggle-selector .image-with-text .image-wrapper {
  max-width: 50px;
}
.toggle-selector .image-with-text .text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  font-size: 1rem;
  color: #000;
}
.toggle-selector .image-with-text .text-wrapper p {
  font-size: 0.875rem;
  color: #878787;
}
.toggle-selector:has(.active) {
  background-color: #f1faff;
}
.toggle-selector:has(.active) .image-with-text .image-wrapper img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(47%) saturate(5425%) hue-rotate(238deg) brightness(95%) contrast(92%);
}
.toggle-selector:has(.active) .image-with-text .text-wrapper {
  color: #4D4AEA;
}
.toggle-selector:has(.active) .image-with-text .text-wrapper p {
  color: #878787;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Views/StatusViews/EnabledStatusView.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.enabled-status-view.true {
  background-color: #CAF0D2;
  color: #0A8826;
}
.enabled-status-view.false {
  background-color: #ebebeb;
  color: #3E3E3E;
  opacity: unset;
}

/* File: ../SiriusSoftware.Core.Frontend/Components/Views/StatusViews/BaseStatusView.razor.scss */
.status-view {
  padding: 8px 12px;
  border-radius: 160px;
  font-weight: 500;
}

/* File: ../SiriusSoftware.Finance.Frontend/Main.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
main {
  display: flex;
  height: 100%;
  flex: 1;
  min-height: calc(100vh - 32px);
}
main .sidebar {
  padding: 1rem 0;
  width: 230px;
  min-width: 230px;
  background-color: #fff;
  position: relative;
  z-index: 99;
}
main .sidebar::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 16px;
  left: 100%;
  top: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 767.98px) {
  main .sidebar::after {
    content: none;
  }
}
main .sidebar .vertical-navmenu {
  position: absolute;
  background-color: #fff;
  width: 100%;
  max-width: 230px;
  right: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  transition: right 0.2s ease-in;
}
main .sidebar .sidebar-sticky {
  position: sticky;
  top: 1rem;
}
main .sidebar .sidebar-sticky .sidebar-header {
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main .sidebar .sidebar-sticky .sidebar-header .logo-wrapper {
  width: 100%;
  max-width: 90px;
}
main .sidebar .sidebar-sticky .sidebar-header .toggle {
  display: none;
  padding: 0.5rem;
  background-color: #FCFCFC;
  border-radius: 12px;
  min-height: auto;
}
main .sidebar .sidebar-sticky .sidebar-header .toggle .image-wrapper img {
  filter: none;
}
main .sidebar .sidebar-sticky .sidebar-header .toggle:hover {
  background-color: #E8F8FF;
}
main .sidebar .sidebar-sticky .sidebar-header .toggle:hover .image-wrapper img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(47%) saturate(5425%) hue-rotate(238deg) brightness(95%) contrast(92%);
}
@media (max-width: 575.98px) {
  main .sidebar .sidebar-sticky .sidebar-header .toggle {
    display: block;
  }
}
@media (min-width: 575.98px) and (max-width: 576px) {
  main .sidebar {
    display: none;
  }
}
@media (max-width: 575.98px) {
  main .sidebar {
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    width: 100dvw;
  }
  main .sidebar .logo-wrapper {
    width: 100px;
  }
}
@media (max-width: 575.98px) {
  main {
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  main.mobile-sidebar-open .content {
    animation: blurIn 0.2s ease-in;
  }
  @keyframes blurIn {
    0% {
      filter: blur(0);
    }
    100% {
      filter: blur(3px);
    }
  }
  main.mobile-sidebar-open .vertical-navmenu {
    max-width: 100%;
    left: inherit;
    right: 0;
  }
}
main.mobile-sidebar-close .content {
  animation: blurOut 0.3s ease-in;
}
@keyframes blurOut {
  0% {
    filter: blur(3px);
  }
  100% {
    filter: blur(0);
  }
}
main.mobile-sidebar-close .vertical-navmenu {
  max-width: 230px;
  left: 0;
  right: inherit;
}
@media (max-width: 575.98px) {
  main.mobile-sidebar-close .vertical-navmenu {
    max-width: 100%;
    right: 100%;
    left: initial;
  }
}
main.close .sidebar {
  left: initial !important;
}
main.close .my-profile-box {
  display: none;
}

/* File: ../SiriusSoftware.Finance.Frontend/App.razor.scss */
@charset "UTF-8";
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#blazor-error-ui {
  color: #000 !important;
}
#blazor-error-ui * {
  color: #000 !important;
}

html, body {
  background-color: #fff;
  height: 100%;
}
html.no-scroll, body.no-scroll {
  overflow: hidden;
}
html.bg-mask, body.bg-mask {
  position: relative;
}
html.no-scroll, body.no-scroll {
  overflow: hidden;
}
html.bg-mask, body.bg-mask {
  position: relative;
}

.page {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.horizontal-separator {
  width: 2px;
  height: 100%;
  background-color: #000;
  opacity: 0.35;
}

h1, h2 {
  margin: 0;
  padding: 0;
  font-weight: 300;
  color: #000;
  font-size: calc(1.325rem + 0.9vw);
}

h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}

.heading-2 {
  font-weight: 800;
  color: #000;
}

.heading-3 {
  font-size: 1rem;
  color: #000;
}

p {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: #999;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
}
a:hover {
  color: #4EB5F0;
}

ul, li {
  padding: 0;
  color: #999;
  list-style-type: none;
  text-decoration: none;
}
ul span, li span {
  color: #999;
  text-align: left;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.text-size {
  font-size: 0.875rem;
}

.text-base-size {
  font-size: 1rem;
}

.box-shadow {
  box-shadow: 0 2px 12px 10px rgba(0, 7, 21, 0.025);
}
.box-shadow:hover {
  box-shadow: #959595;
}

.border-radius {
  border-radius: 12px;
}

.br-top-none {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.br-bottom-none {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.dropdown-balloon {
  width: 100%;
  min-width: 120px;
}

.hidden {
  display: none;
}

.w-auto {
  width: auto;
}

.w-max {
  max-width: 100% !important;
}

.h-initial {
  max-height: initial !important;
}

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

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

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

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

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

.pl-1 {
  padding-left: 1rem;
}

.pl-2 {
  padding-left: 2rem;
}

.opacity-50 {
  opacity: 0.5;
}

.flex-0 {
  flex: 0 !important;
}

.flex-1 {
  flex: 1 !important;
}

.span-2 {
  grid-column: span 2;
}

.span-3 {
  grid-column: span 3;
}

.span-4 {
  grid-column: span 4;
}

.span-5 {
  grid-column: span 5;
}

.span-6 {
  grid-column: span 6;
}

@media (max-width: 767.98px) {
  .span-2,
  .span-3,
  .span-4,
  .span-5,
  .span-6 {
    grid-column: span 1;
  }
}
.gap-6 {
  gap: 4rem !important;
}

.bg-grey {
  background-color: #F8F8F8;
}

.disabled {
  opacity: 0.35;
  pointer-events: none;
}

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

.bg-blue {
  background-color: #f1faff;
}

.font-grey {
  color: #878787 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
}

a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
}
a:hover {
  color: #4D4AEA;
}

label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #999;
}

.flex-0 {
  flex: 0 !important;
}

.flex-1 {
  flex: 1 !important;
}

.mt-3 {
  margin-top: 1rem;
}

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

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 0.75rem;
}

.gap-3 {
  gap: 1rem;
}

.d-none {
  display: none !important;
}

.d-center {
  display: flex;
  align-items: center;
}

.min-h-auto {
  min-height: auto !important;
}

.image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-wrapper img {
  width: 100%;
}

.title h1 {
  padding: 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.tip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #999;
  font-weight: 600;
}
.tip .image-wrapper {
  width: 30px;
}

.loading-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100dvh - 32px);
}
.loading-wrapper.page {
  height: calc(100dvh - 140px);
}
.loading-wrapper.page .loading .pl__ring--d {
  stroke: #fff;
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  transition: 2s ease;
  cursor: progress;
}
.loading .dot {
  position: relative;
  top: 6px;
  background: #4D4AEA;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  animation: move 0.6s ease infinite;
}
@keyframes move {
  0% {
    transform: translateX(50%);
  }
  50% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(50%);
  }
}

.input input {
  padding: 0.625rem;
  width: 100%;
  border-radius: 6px;
  border: 2px solid #EDEFF2;
  transition: all 0.2s ease-in;
  min-height: 46px;
}
.input input:hover {
  border-color: #959595;
}

.report-table th {
  margin-top: 10px;
  border: 1px black solid;
  background-color: black;
  color: white;
  padding: 5px;
}
.report-table th.member {
  border-color: #222;
  background-color: #222;
}
.report-table tr.parent {
  border-color: #CCC;
  background-color: #CCC;
}
.report-table td {
  border: 1px black solid;
  padding: 5px;
}
.report-table td.vacation {
  background-color: lightgreen;
}
.report-table td.sick {
  background-color: indianred;
}
.report-table td.holiday-official {
  background-color: #4eb5f0;
}
.report-table td.holiday-company {
  background-color: slateblue;
}
.report-table td.weekend {
  background-color: #CCC;
}

.form-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.25rem;
}
.form-item label {
  font-size: 0.75rem;
}
.form-item.time {
  max-width: 120px;
}

.menu-group {
  margin-top: 0.5rem;
  padding: 0.5rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-height: 30px;
  height: 30px;
  list-style-type: none;
  font-weight: 400;
  cursor: default;
  opacity: 0.65;
}

.timesheet-table th {
  margin-top: 10px;
  border: 1px black solid;
  background-color: black;
  color: white;
  padding: 5px;
}
.timesheet-table th.member {
  border-color: #222;
  background-color: #222;
}
.timesheet-table tr.parent {
  border-color: #CCC;
  background-color: #CCC;
}
.timesheet-table td {
  border: 1px black solid;
  padding: 5px;
}
.timesheet-table td.weekend {
  background-color: #CCC;
}

.content {
  width: 100%;
  background-color: #FCFCFC;
}
.content .body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .content .body {
    padding: 1rem;
  }
}

.month-input {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.breadcrumb-trail {
  display: flex;
  flex-direction: row;
  list-style: none;
}
.breadcrumb-trail li {
  margin: 0;
  padding-right: 30px;
  font-size: 0.875rem;
  position: relative;
  cursor: pointer;
}
.breadcrumb-trail li a {
  font-weight: 400;
}
.breadcrumb-trail li::after {
  content: "›";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 20px;
  height: 20px;
  line-height: 16px;
  font-size: 30px;
  font-weight: 500;
}
.breadcrumb-trail .active {
  padding-right: 0;
}
.breadcrumb-trail .active a {
  font-weight: 600;
}
.breadcrumb-trail .active::after {
  content: none;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
}

.tile {
  padding: 1rem;
  display: flex;
  background-color: #FCFCFC;
  border-radius: 12px;
  transition: all 0.2s ease-in;
}
.tile:hover {
  background-color: #F3F8FF;
}
.tile .text-wrapper p {
  margin-top: 0.5rem;
  font-weight: 400;
  font-size: 0.875rem;
}

.form .form-flex .form-grid {
  display: grid;
  gap: 1.5rem;
}

.filters-wrapper {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  background-color: #FCFCFC;
  border-radius: 12px;
}
.filters-wrapper .table-filter {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background-color: #FCFCFC;
  border-radius: 12px;
}
.filters-wrapper .table-filter .table-filter-item {
  flex: 1;
}

.section-title {
  font-size: 2rem;
}

.progress-wrapper {
  display: flex;
  gap: 16px;
}
.progress-wrapper .progress-bar {
  height: 20px;
  width: 300px;
  border: rgba(0, 0, 0, 0.6196078431) 1px solid;
  background-color: transparent;
}
.progress-wrapper .inner {
  background-color: #5858c3;
}

.issue-view {
  padding: 0.5rem;
  display: flex;
  align-items: center;
  min-height: 44px;
  height: auto;
  border-radius: 12px;
  font-size: 0.875rem;
  background-color: #fff;
  flex-grow: 1;
}
.issue-view.caption {
  position: sticky;
  top: 10px;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  height: 44px;
  box-shadow: 0 2px 12px 10px rgba(0, 7, 21, 0.025);
  border: 1px solid #efefef;
  z-index: 98;
}
.issue-view .select .selector {
  min-height: auto !important;
}
.issue-view > div {
  flex-grow: 0;
}
.issue-view .expand-handle {
  width: 25px;
  text-align: center;
  cursor: pointer;
}
.issue-view .expand-handle img {
  width: 12px;
  height: 12px;
}
.issue-view .drag-handle {
  width: 25px;
  cursor: grab;
}
.issue-view .drag-handle img {
  width: 20px;
  height: 20px;
}
.issue-view .id {
  width: 100px;
}
.issue-view .priority {
  width: 100px;
}
.issue-view .priority .select {
  width: fit-content;
}
.issue-view .title {
  flex: 1;
}
.issue-view .phase {
  width: 122px;
}
.issue-view .phase .select {
  width: fit-content;
}
.issue-view .phase .select .selector {
  color: #fff;
}
.issue-view .phase .select .selector img {
  filter: brightness(0) invert(1);
}
.issue-view .phase .select.phase-toprepare .selector {
  background-color: #cd5c5c;
}
.issue-view .phase .select.phase-onhold .selector {
  background-color: #e69a9a;
}
.issue-view .phase .select.phase-todo .selector {
  background-color: #4c60e9;
}
.issue-view .phase .select.phase-inprogress .selector {
  background-color: #7cb2e3;
}
.issue-view .phase .select.phase-inreview .selector {
  background-color: #4fd37a;
}
.issue-view .phase .select.phase-intesting .selector {
  background-color: #ed844d;
}
.issue-view .phase .select.phase-todeliver .selector {
  background-color: #b178c8;
}
.issue-view .phase .select.phase-delivered .selector {
  background-color: #639169;
}
.issue-view .phase .select.phase-closed .selector {
  background-color: #252525;
}
.issue-view .assignee {
  width: 100px;
}
.issue-view .estimate {
  width: 142px;
}
.issue-view .spend {
  width: 120px;
}
.issue-view .expected-date {
  width: 100px;
}
.issue-view.expanded .expand-handle img {
  transform: rotate(90deg);
}

.issue-list-wrapper .not-draggable {
  display: flex;
  width: 100%;
  margin-bottom: 8px;
  margin-top: 8px;
}
.issue-list-wrapper .draggable {
  display: flex;
  margin-bottom: 8px;
  margin-top: 8px;
}

.issue-child-connector {
  border-left: 1px solid black;
  border-bottom: 1px black solid;
  width: 30px;
  height: 25px;
  margin-left: 20px;
}

.work-entry-view {
  display: flex;
  flex-direction: row;
}
.work-entry-view > div {
  padding: 5px;
}

.text-input input {
  width: 100%;
  height: 100%;
}

.d-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.d-column .form-field {
  flex: 0;
}

.issues-page {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.issues-page .add-new-issue {
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}
.issues-page .add-new-issue .text-input {
  flex-grow: 1;
  max-width: 600px;
  height: 30px;
}
.issues-page .select .selector {
  color: #fff;
}
.issues-page .select .selector img {
  filter: brightness(0) invert(1);
}
.issues-page .select.priority-critical .selector {
  background-color: darkred;
}
.issues-page .select.priority-high .selector {
  background-color: indianred;
}
.issues-page .select.priority-medium .selector {
  background-color: #ad9d6f;
}
.issues-page .select.priority-low .selector {
  background-color: #6fad9d;
}

.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  max-width: 90%;
  width: 500px;
  height: auto;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}

.modal-dialog {
  margin: 0 auto;
}

.modal-content {
  padding: 0;
  border-radius: 12px;
}

.modal-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-content-wrapper .modal-content-body {
  padding: 1rem 1rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-content-wrapper .modal-content-body .modal-content-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.modal-content-wrapper .modal-content-body .modal-content-items .base-button {
  margin-right: auto;
}
.modal-content-wrapper .modal-content-body .modal-content-items .base-button.table-button .image-wrapper {
  display: flex;
}
.modal-content-wrapper .modal-content-footer {
  padding: 0 1.75rem 1rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.modal-content-wrapper .modal-content-footer .modal-content-footer-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-content-wrapper .modal-content-footer .modal-content-footer-buttons .table-button .image-wrapper {
  display: flex;
}

.modal-content-row {
  padding: 0.75rem;
  display: flex;
  gap: 0.75rem;
  background-color: #FCFCFC;
  border-radius: 12px;
}
.modal-content-row .select .selector {
  border: 2px solid #EDEFF2;
}
.modal-content-row .base-button {
  margin-top: auto;
}

.modal-header {
  padding: 0.125rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FCFCFC;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.modal-header .close {
  padding: 0;
  margin-left: auto;
  background-color: transparent;
}
.modal-header .close img {
  filter: none;
}

.modal-footer {
  padding: 15px;
  border-top: 1px solid #e5e5e5;
  text-align: right;
}

.close {
  cursor: pointer;
}

.small-dialog {
  max-width: 300px;
}

.normal-dialog {
  max-width: 500px;
}

.large-dialog {
  max-width: 800px;
}

.xlarge-dialog {
  max-width: 1000px;
}

.draggable {
  position: relative;
  width: 100%;
  height: auto;
}
.draggable.has-drag-handle .drag-drag-handle {
  cursor: grab;
}
.draggable.has-drag-handle:active .drag-handle {
  cursor: grabbing;
}
.draggable:not(.has-drag-handle) {
  cursor: grab;
}
.draggable:not(.has-drag-handle):active {
  cursor: grabbing;
}

.build-version {
  padding: 0.5rem 1rem;
  height: 32px;
  background-color: #000;
  font-size: 0.75rem;
  text-align: center;
  color: #fff;
}

.dropdown-balloon {
  padding: 6px 0;
  position: absolute;
  top: calc(100% + 12px);
  width: 100%;
  min-width: 130px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 10px rgba(0, 7, 21, 0.025);
  border: 1px solid #efefef;
  z-index: 99;
}
.dropdown-balloon::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 10px;
  height: 0;
  width: 0;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  z-index: 1;
}

.input-group {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: nowrap;
}

.input-group {
  position: relative;
}
.input-group .input-control {
  padding: 10px 32px 10px 12px;
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #000;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #EDEFF2;
  appearance: none;
  border-radius: 12px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.input-group .input-control:hover, .input-group .input-control:focus {
  border-color: #959595;
}
.input-group ::placeholder {
  opacity: 0.25;
}
.input-group .input-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.input-group .input-icon .close {
  cursor: pointer;
}
.input-group .input-icon .close:hover {
  opacity: 0.5;
}
.input-group.search-dropdown {
  width: 100%;
}
.input-group.search-dropdown .input-control:focus {
  box-shadow: 0 0 0 0.25rem #F8F8F8 !important;
  border-color: #000 !important;
}
.input-group.search-dropdown .input-icon {
  opacity: 0.5;
}
.input-group.search-dropdown:has(> .input-control:focus) .input-icon {
  opacity: 1;
}

.alert-bar {
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 98;
}
.alert-bar.modal-alert {
  margin-top: 0.875rem;
  border-radius: 12px;
}
.alert-bar .base-button {
  margin: 0;
}
.alert-bar .image-with-text {
  gap: 0.75rem;
}
.alert-bar .image-with-text .image-wrapper {
  margin: 0;
  display: flex;
  min-width: 20px;
  width: 20px;
}
.alert-bar .image-with-text .text-wrapper {
  font-size: 0.875rem;
  font-weight: 400;
}
.alert-bar.successfully {
  background-color: #F3FFEB;
}
.alert-bar.error {
  background-color: #fdeaea;
}
.alert-bar.border-r {
  border-radius: 12px;
}
.alert-bar .icon .image-wrapper {
  width: 10px !important;
}
.alert-bar.position-bottom {
  position: absolute;
  top: 100%;
  left: 0;
}

.project-edit-page .tab-wrapper {
  display: flex;
  gap: 0.5rem;
}
.project-edit-page .tab-wrapper .tab {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  background-color: #FCFCFC;
  min-height: 46px;
  border-radius: 12px;
  transition: all 0.2s ease-in;
}
.project-edit-page .tab-wrapper .tab.hover {
  background-color: #000;
  color: #fff;
}

.login {
  display: flex;
  height: calc(100vh - 32px);
  background-color: #FCFCFC;
}
.login .form {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  width: 100%;
  margin: auto;
  border-radius: 12px;
  border: 1px solid #efefef;
  box-shadow: 0 2px 12px 10px rgba(0, 7, 21, 0.025);
  background-color: #fff;
}
.login .form h1 {
  font-size: 1.5rem;
}
.login .form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.login .form .base-button {
  margin: auto;
}
.login .form .error-message {
  color: #770D0D;
}

.dropdown-balloon {
  padding: 8px 0;
  position: absolute;
  top: 45px;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 12px 10px rgba(0, 7, 21, 0.025);
  z-index: 99;
}
.dropdown-balloon::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: unset;
  right: 15px;
  width: 0;
  height: 0;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  z-index: 1;
}
.dropdown-balloon.my-profile-dropdown {
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  top: 50px;
  gap: 4px;
  right: -5px;
  width: auto;
  min-width: 144px;
  background-color: #fff;
}
.dropdown-balloon.my-profile-dropdown::before {
  border-bottom: 8px solid #fff;
}
.dropdown-balloon.my-profile-dropdown::before, .dropdown-balloon.my-profile-dropdown::after {
  left: auto;
  right: 10px;
}
.dropdown-balloon.my-profile-dropdown .my-profile-item {
  padding: 0.75rem 0.75rem 0.75rem 1.125rem;
  gap: 0.5rem;
  transition: all 0.2s linear;
  align-items: center;
  border-right: 4px solid transparent;
  opacity: 0.75;
}
.dropdown-balloon.my-profile-dropdown .my-profile-item .image-wrapper {
  width: 23px;
  opacity: 0.35;
}
.dropdown-balloon.my-profile-dropdown .my-profile-item .text-wrapper {
  font-size: 0.875rem;
  font-weight: 400;
  color: #000;
}
.dropdown-balloon.my-profile-dropdown .my-profile-item .text-wrapper span {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2em;
  color: #878787;
}
.dropdown-balloon.my-profile-dropdown .my-profile-item:hover {
  color: #878787;
  border-color: #5c5be1;
  background-color: #f1faff;
  opacity: 1;
}
.dropdown-balloon.my-profile-dropdown .my-profile-item:hover .text-wrapper {
  font-weight: 600;
}
.dropdown-balloon.my-profile-dropdown .base-button.exit {
  margin: 0;
  padding: 0.75rem 0.75rem 0.75rem 1.125rem;
  justify-content: flex-start;
  min-height: 50px;
  font-size: 0.875rem;
  font-weight: 400;
  transition: all 0.2s linear;
  background: transparent;
  color: #000;
  border-right: 4px solid transparent;
  border-radius: initial;
  opacity: 0.6;
}
.dropdown-balloon.my-profile-dropdown .base-button.exit .image-wrapper {
  width: 23px;
  filter: brightness(0) saturate(100%) invert(46%) sepia(74%) saturate(4802%) hue-rotate(339deg) brightness(91%) contrast(109%);
}
.dropdown-balloon.my-profile-dropdown .base-button.exit:hover {
  font-weight: 600;
  border-color: #5c5be1;
  background-color: #f1faff;
  opacity: 1;
}
.dropdown-balloon.my-profile-dropdown.notifications {
  min-width: 360px;
  gap: 0;
  top: 58px;
}
.dropdown-balloon.my-profile-dropdown.notifications .header {
  display: none;
}
.dropdown-balloon.my-profile-dropdown.notifications .my-profile-item {
  padding: 12px 16px;
  opacity: 1;
}
.dropdown-balloon.my-profile-dropdown.notifications .my-profile-item .text-wrapper span {
  position: relative;
  opacity: 0.7;
  font-size: 14px;
  line-height: 22px;
}
.dropdown-balloon.my-profile-dropdown.notifications .my-profile-item.readed {
  opacity: 0.65;
}
.dropdown-balloon.my-profile-dropdown.notifications .my-profile-item.readed:hover {
  opacity: 0.9;
}
.dropdown-balloon.my-profile-dropdown.notifications .notifications-list {
  margin-top: 6px;
  position: relative;
  max-height: 450px;
  overflow: hidden;
  overflow-y: auto;
}
.dropdown-balloon.my-profile-dropdown.notifications .notifications-list .image-with-text .text-wrapper {
  font-size: 1.1rem;
}
.dropdown-balloon.my-profile-dropdown.notifications .notifications-list .image-with-text .text-wrapper .sub-text {
  font-size: 0.9rem;
}
.dropdown-balloon.my-profile-dropdown.notifications .notifications-list .notification-view .image-with-text.my-profile-item {
  align-items: flex-start;
}
.dropdown-balloon.my-profile-dropdown.notifications .notifications-list .notification-view .image-with-text.my-profile-item .text-wrapper {
  font-weight: 600;
}

.toggle-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.toggle-group .label-content {
  display: flex;
  flex-direction: column;
  font-weight: 800;
}
.toggle-group .label-content span {
  font-weight: 400;
  color: #878787;
  font-family: "mulish-variable", sans-serif;
}
.toggle-group .toggle-grid {
  display: flex;
  gap: 16px;
  flex: 0;
}

.multi-toggle-group {
  display: inline-flex;
  border-radius: 12px;
  overflow: hidden;
}
.multi-toggle-group .multi-toggle-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.multi-toggle-group .multi-toggle-check:checked + .multi-toggle-button {
  color: #fff;
  background-color: #4D4AEA;
}
.multi-toggle-group .multi-toggle-button {
  padding: 1rem;
  font-weight: 600;
  background-color: #f1faff;
  cursor: pointer;
}

.loading-container {
  display: flex;
  gap: 0.5rem;
}

/* File: ../SiriusSoftware.Finance.Frontend/Routes.razor.scss */
.menu-group {
  font-weight: bold;
  margin-top: 20px;
}

/* File: ../SiriusSoftware.Finance.Frontend/Common/AlertBar.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.alert-bar {
  padding: 0 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 98;
}
.alert-bar.modal-alert {
  margin-top: 0.875rem;
  border-radius: 12px;
}
.alert-bar .base-button {
  margin: 0;
}
.alert-bar .image-with-text {
  gap: 0.75rem;
}
.alert-bar .image-with-text .image-wrapper {
  margin: 0;
  min-width: 20px;
  width: 20px;
}
.alert-bar .image-with-text .text-wrapper {
  font-size: 0.875rem;
  font-weight: 400;
}
.alert-bar.successfully {
  background-color: #F3FFEB;
}
.alert-bar.error {
  background-color: #fdeaea;
}
.alert-bar.border-r {
  border-radius: 12px;
}
.alert-bar .icon .image-wrapper {
  width: 10px !important;
}
.alert-bar.position-bottom {
  position: absolute;
  top: 100%;
  left: 0;
}

/* File: ../SiriusSoftware.Finance.Frontend/Components/BreakdownView.razor.scss */
.breakdown-view {
  display: flex;
  flex-direction: column;
}
.breakdown-view .breakdown-row {
  display: flex;
  flex-direction: row;
  padding: 5px;
  width: 500px;
}
.breakdown-view .breakdown-row:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.breakdown-view .breakdown-row.breakdown-row-0 {
  padding-left: 5px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.1);
}
.breakdown-view .breakdown-row.breakdown-row-0:hover {
  background-color: rgba(0, 0, 0, 0.15);
}
.breakdown-view .breakdown-row.breakdown-row-1 {
  padding-left: 20px;
}
.breakdown-view .breakdown-row.breakdown-row-2 {
  padding-left: 35px;
}
.breakdown-view .breakdown-row.breakdown-row-3 {
  padding-left: 50px;
}
.breakdown-view .breakdown-row .breakdown-tag {
  flex-grow: 1;
  text-align: left;
}
.breakdown-view .breakdown-row .breakdown-amount {
  flex-grow: 1;
  text-align: right;
}
.breakdown-view .breakdown-row .breakdown-amount .breakdown-amount-currencies {
  opacity: 0.35;
}
.breakdown-view .breakdown-row-separator {
  height: 20px;
}

/* File: ../SiriusSoftware.Finance.Frontend/Styles/Declarations/_index.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}

/* File: ../SiriusSoftware.Finance.Frontend/Components/Dialogs/DeleteDialog.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.dialog-delete .modal-content {
  border-radius: 12px;
  background: linear-gradient(180deg, rgb(253, 234, 234) 0%, rgba(255, 255, 255, 0) 100%) no-repeat;
  background-size: 100% 45%;
}
.dialog-delete .modal-content .modal-header {
  padding: 0.5rem 1.5rem;
  background-color: transparent;
}
.dialog-delete .modal-content .modal-header * {
  font-weight: 800;
  font-size: 1rem;
  text-align: center;
}
.dialog-delete .modal-content .modal-header .close {
  width: 14px;
  filter: brightness(0) saturate(100%) invert(13%) sepia(95%) saturate(3108%) hue-rotate(355deg) brightness(97%) contrast(100%);
  opacity: 0.5;
}
.dialog-delete .modal-content .modal-header .close:hover {
  opacity: 1;
}
.dialog-delete .modal-body {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.dialog-delete .modal-body .dialog-body-content {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}
.dialog-delete .modal-body .dialog-body-content .delete-icon {
  width: 26px;
  filter: brightness(0) saturate(100%) invert(13%) sepia(95%) saturate(3108%) hue-rotate(355deg) brightness(97%) contrast(100%);
}
.dialog-delete .modal-body .dialog-body-content .delete-span {
  padding: 0.5rem 0.75rem 0.5rem 2.125rem;
  position: relative;
  border-radius: 28px;
  background-color: #fdeaea;
  color: #E25050;
}
.dialog-delete .modal-body .dialog-body-content .delete-span::before {
  content: "";
  position: absolute;
  left: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("/Assets/Icons/close-square-red.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.dialog-delete .modal-body .tip {
  font-weight: 300;
}
.dialog-delete .modal-body .tip img {
  opacity: 0.35;
}

.modal-footer {
  justify-content: space-between;
}

/* File: ../SiriusSoftware.Finance.Frontend/Components/Views/BaseEntityView.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.base-entity-view {
  display: inline-block;
  width: auto;
  height: auto;
  color: #4D4AEA;
  cursor: pointer;
}

/* File: ../SiriusSoftware.Finance.Frontend/Components/Navbar/TopNavbar.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.topbar {
  padding: 0.875rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 98;
  box-shadow: 0 2px 12px 10px rgba(0, 7, 21, 0.015);
}
.topbar .topbar-search {
  margin: 0;
  max-width: 424px;
}
.topbar .topbar-search .input-icon {
  width: 14px;
}
@media (max-width: 575.98px) {
  .topbar {
    padding: 0.5rem 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .topbar .topbar-search {
    max-width: 100%;
    width: 100% !important;
  }
  .topbar .my-profile-box {
    margin: 0;
    width: 100%;
  }
  .topbar .my-profile-box .my-profile-wrapper {
    justify-content: space-between;
  }
}

/* File: ../SiriusSoftware.Finance.Frontend/Components/Base/MyProfileNav.razor.scss */
@media (min-width: 0) and (max-width: 575.98px) {
  .row > * {
    padding-right: calc(var(--bs-gutter-x) * 0.65);
    padding-left: calc(var(--bs-gutter-x) * 0.65);
  }
}
.my-profile-box {
  margin-right: 1rem;
  position: relative;
  transition: background-color 0.2s ease-in;
}
.my-profile-box .my-profile-wrapper {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  position: relative;
  opacity: 0.85;
  gap: 1rem;
}
.my-profile-box .my-profile-wrapper .image-wrapper {
  transition: all 0.2s ease-in;
}
.my-profile-box .my-profile-wrapper .image-wrapper.user-image {
  padding: 3px;
  width: 36px;
  height: 36px;
  border: 3px solid #EDEFF2;
  border-radius: 36px;
  background-color: #fff;
}
.my-profile-box .my-profile-wrapper .image-wrapper.arrow {
  margin: 0;
  padding: 0;
  min-width: 6px;
  width: 6px;
}
.my-profile-box .my-profile-wrapper .image-wrapper.arrow img {
  width: 100%;
  height: auto;
}
.my-profile-box .my-profile-wrapper .profile-name-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  user-select: none;
}
.my-profile-box .my-profile-wrapper .profile-name-wrapper span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  width: auto;
}
.my-profile-box .my-profile-wrapper .profile-options-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.my-profile-box .my-profile-wrapper .profile-options-wrapper .profile-option {
  cursor: pointer;
  width: 18px;
}
.my-profile-box .my-profile-wrapper .profile-options-wrapper .profile-option .image-wrapper {
  opacity: 0.35;
}
.my-profile-box .my-profile-wrapper .profile-options-wrapper .profile-option .image-wrapper:hover {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(24%) sepia(47%) saturate(5425%) hue-rotate(238deg) brightness(95%) contrast(92%);
}
.my-profile-box .my-profile-wrapper.active {
  border-color: #000;
}
.my-profile-box .my-profile-wrapper.active .image-wrapper.arrow {
  transform: rotate(-180deg);
}

/* File: ../SiriusSoftware.Finance.Frontend/Pages/Transactions/TransactionEditGeneralPage.razor.scss */
.transaction-edit-general-page .transaction-item {
  display: flex;
}