* {
  padding: 0;
  margin: 0;
  scrollbar-width: thin;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 1rem;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  interpolate-size: allow-keywords;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

ul,
ol {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-optical-sizing: auto;
}
.menu-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
}

.nav-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}
.nav-text.active {
  font-weight: 700;
}

h1,
.h1 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

h2,
.h2 {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-wrap: auto;
}

h3,
.h3 {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-wrap: auto;
}

.title, .container .main.ap-employees .data .entity-list, .input-search, .input-textarea, .input-text, .input-filled, .input-dropdown, .input-date, .table, .entity-list, .roles-list, .app-controls, .title-700, .title-600, .table th, .table th:has(select) select {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.title-600, .table th, .table th:has(select) select {
  font-weight: 600;
}

.title-700 {
  font-weight: 700;
}

.subtitle, .subtitle-smaller, .subtitle-600, .container .main.ap-employees .data .entity-list .list-head, .entity-list .list-head, .roles-list .list-head, .app-controls .list-head {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.subtitle-600, .container .main.ap-employees .data .entity-list .list-head, .entity-list .list-head, .roles-list .list-head, .app-controls .list-head {
  font-weight: 600;
}

.subtitle-smaller {
  font-size: 11px;
}

.all-tasks-complete {
  display: flex;
  flex-direction: column;
  gap: 11px;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.all-tasks-complete .check-mark {
  width: 61px;
  height: 61px;
  border: 1px solid #D9D9D9;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.primary-btn {
  padding: 12px 20px;
  height: 40px;
  background: #000000;
  border: 2px solid #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  gap: 6px;
  transition: all 0.3s ease-in-out;
}
.primary-btn > * {
  color: #fff;
  stroke: #fff;
  pointer-events: none;
}
.primary-btn:hover {
  background: #fff;
}
.primary-btn:hover > * {
  color: #000000;
  stroke: #000000;
}

.secondary-btn {
  padding: 12px 20px;
  height: 40px;
  background: #D9D9D9;
  border: 2px solid #D9D9D9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  gap: 6px;
  transition: all 0.3s ease-in-out;
}
.secondary-btn > * {
  color: #000000;
  stroke: #000000;
  pointer-events: none;
}
.secondary-btn:hover {
  background: #fff;
}
.secondary-btn:hover > * {
  color: #000000;
  stroke: #000000;
}

.option-btn {
  border: none;
  color: #A2A2A2;
  text-align: start;
  padding: 10px 16px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.option-btn:hover {
  background: #A2A2A2;
  color: #5A5A5A;
}

.menu-expand-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #D9D9D9;
  border: none;
  transition: all 0.3s ease-in-out;
}
.menu-expand-btn:hover {
  transition: all 0.3s ease-in-out;
  background: rgb(197.2727272727, 197.2727272727, 197.2727272727);
}
.menu-expand-btn .chevron {
  width: 16px;
  height: 16px;
  stroke: #23001E;
  transition: all 0.3s ease-in-out;
}
.menu-expand-btn .chevron.open {
  transform: rotate(180deg);
}

.switch {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 20px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .slider {
  background-color: #000000;
}
.switch input:checked + .slider::before {
  -webkit-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transform: translateX(12px);
}
.switch .slider {
  border-radius: 34px;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #D9D9D9;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider::before {
  border-radius: 34px;
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.add-circle {
  cursor: pointer;
  width: 24px;
  height: 24px;
  stroke: #A2A2A2;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}
.add-circle:hover {
  stroke: rgb(140.8695652174, 140.8695652174, 140.8695652174);
}

.external-link {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #23001E;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.external-link:hover {
  stroke: rgb(111.5, 0, 95.5714285714);
}

.more-options {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: #23001E;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.more-options:hover {
  stroke: rgb(111.5, 0, 95.5714285714);
}

.calendar {
  cursor: pointer;
  width: 20px;
  height: 20px;
  stroke: #A2A2A2;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}
.calendar:hover {
  stroke: rgb(140.8695652174, 140.8695652174, 140.8695652174);
}

.chevron {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: #23001E;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.chevron:hover {
  stroke: rgb(111.5, 0, 95.5714285714);
}

.plus-sign {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  stroke: #fff;
  cursor: pointer;
}
.plus-sign:hover {
  stroke: rgb(221.7391304348, 221.7391304348, 221.7391304348);
}

.filter-list {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: #A2A2A2;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.filter-list:hover {
  stroke: rgb(111.5, 0, 95.5714285714);
}

.delete {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #A2A2A2;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.delete:hover {
  stroke: black;
}

.download {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: #23001E;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.download:hover {
  stroke: rgb(111.5, 0, 95.5714285714);
}

.edit-pen {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: #23001E;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.edit-pen:hover {
  stroke: rgb(111.5, 0, 95.5714285714);
}

.close-btn {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.close-btn .btn-line {
  height: 2px;
  transform: rotate(45deg) translate(5px, 5px);
  background: #23001E;
  transition: all 0.3s ease-in-out;
}
.close-btn .btn-line::before {
  content: "";
  display: block;
  background: #23001E;
  transform: rotate(90deg);
  height: 2px;
  transition: all 0.3s ease-in-out;
}
.close-btn:hover .btn-line {
  background: rgb(111.5, 0, 95.5714285714);
}
.close-btn:hover .btn-line::before {
  background: rgb(111.5, 0, 95.5714285714);
}

.log-out {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #000000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.log-out:hover {
  stroke: #999999;
}

.log-in {
  width: 21px;
  height: 22px;
  flex-shrink: 0;
  fill: #000000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.log-in:hover {
  fill: #999999;
}

.arrow-forward {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: #000000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.arrow-forward:hover {
  stroke: rgb(38.25, 38.25, 38.25);
}

.settings-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #000000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.settings-svg:hover {
  fill: #999999;
}

.receipt {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #000000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.receipt:hover {
  fill: #999999;
}

.exclamation-circle {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: #000000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.exclamation-circle:hover {
  fill: #999999;
}

.check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: #000000;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.check:hover {
  fill: #999999;
}

.card {
  border-radius: 10px;
  border: 1px solid #E3E3E3;
  background: #F7F7F7;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
}
.card .card-content {
  padding: 16px;
  display: flex;
}
.card .card-content img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgb(221.7391304348, 221.7391304348, 221.7391304348);
}
.card .card-content .card-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.card .card-content .card-info .card-text {
  display: flex;
  flex-flow: column;
  flex-grow: 1;
  gap: 4px;
}
.card .card-content .card-info .card-text .card-status {
  display: flex;
  gap: 12px;
}
.card .card-content .card-info .card_notification {
  display: flex;
  align-items: center;
  gap: 4px;
}
.card .card-content .card-info .card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  transition: all 0.3s ease-in-out;
}
.card .card-content .card-info .card-actions .external-link, .card .card-content .card-info .card-actions .more-options {
  opacity: 0;
}
.card .card-content .card-info .card-actions .chevron {
  transform: rotate(-90deg);
}
.card .card-content .card-info .card-actions.hover .external-link, .card .card-content .card-info .card-actions.hover .more-options {
  opacity: 1;
}
.card .card-attachments {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.3s ease-in-out;
}
.card .card-attachments .wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.card .card-attachments .attachment {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.card .card-attachments .attachment svg {
  width: 20px;
  height: 20px;
  stroke: #000000;
}
.card .card-attachments .attachment svg, .card .card-attachments .attachment .title {
  transition: all 0.3s ease-in-out;
}
.card .card-attachments .attachment:hover .title, .card .card-attachments .attachment:hover svg {
  color: #333333;
  stroke: #333333;
}
.card.open .card-attachments {
  padding: 0 16px 16px;
  grid-template-rows: 1fr;
}
.card.open .card-content .chevron {
  transform: rotate(90deg) !important;
}
.card.active {
  background: #DEE1E8;
}
.card:hover {
  background: #E3E3E3;
}

.container {
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
  background: #EAEAEA;
  display: grid;
  gap: 4px;
  justify-content: start;
  grid-auto-columns: auto minmax(0, 1fr);
  grid-auto-rows: 68px minmax(0, 1fr);
  grid-template-areas: "menu header" "menu main";
}
.container .menu {
  grid-area: menu;
}
.container .header {
  grid-area: header;
}
.container .main {
  grid-area: main;
}
@media (min-width: 381px) {
  .container {
    height: 100vh;
    max-height: 100vh;
  }
}

.customers-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.customers-container .customers-header {
  height: 64px;
  border-top-left-radius: 20px;
  border-top-right-radius: 0;
  overflow: hidden;
  background: #fff;
  display: flex;
  padding: 12px;
  justify-content: space-between;
  align-items: center;
}
.customers-container .customers-header .h3 {
  color: #A2A2A2;
}
.customers-container .customers-header .sliders {
  width: 24px;
  height: 24px;
  stroke: #A2A2A2;
  cursor: pointer;
  stroke-width: 2;
  transition: all 0.3s ease-in-out;
}
.customers-container .customers-header .sliders:hover {
  stroke: rgb(140.8695652174, 140.8695652174, 140.8695652174);
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1214px) {
  .customers-container .customers-header {
    padding: 20px;
  }
}
.customers-container .customers-data {
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: calc(100% - 64px);
  background: #fff;
  padding: 0 12px 12px;
  overflow-y: auto;
}
.customers-container .customers-data .card {
  height: 76px;
}
.customers-container .customers-data .card .card-content {
  display: flex;
  gap: 12px;
}
.customers-container .customers-data .card .card-text > .subtitle-smaller {
  color: #7F7F7F;
}
@media (min-width: 1214px) {
  .customers-container .customers-data {
    overflow-y: auto;
    padding: 0 20px 20px;
  }
}

@media (max-width: 665px) {
  .customers-header {
    border-top-right-radius: 20px !important;
  }
}
.customers-documents {
  border-radius: 20px 20px 0 0;
  height: 100%;
  display: flex;
  flex-flow: row wrap;
  gap: 1px;
}

.customer-success {
  padding: 2px 8px;
  height: 24px;
  display: flex;
  gap: 4px;
  color: #fff;
  background: #57A619;
  border-radius: 30px;
  align-items: center;
}
.customer-success .chevron {
  width: 10px;
  stroke: #fff;
  transform: rotate(90deg);
}

.documents-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.documents-container .documents-header {
  height: 64px;
  background: #fff;
  border-top-right-radius: 20px;
  overflow: hidden;
  padding: 12px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}
.documents-container .documents-header .h3 {
  margin-right: auto;
  color: #A2A2A2;
}
.documents-container .documents-header .only-active-agreements-switch {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
  flex: 1 1 0px;
}
.documents-container .documents-header .only-active-agreements-switch .switch {
  flex: 0 0 32px;
}
.documents-container .documents-header .only-active-agreements-switch .title {
  font-size: 12px;
  max-width: 157px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.documents-data {
  background: #fff;
  height: calc(100% - 64px);
  padding: 0 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}
.documents-data .documents__item .item-content {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.documents-data .documents__item .item-content .chevron {
  width: 19px;
  height: 19px;
  stroke: #5A5A5A;
  transform: rotate(-90deg);
  margin-right: 4px;
  transition: all 0.3s ease-in-out;
}
.documents-data .documents__item .item-content .indicator {
  margin-left: auto;
}
.documents-data .documents__item .item-content .add-circle {
  margin-left: auto;
}
.documents-data .documents__item.open .chevron {
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
.documents-data .documents__item.open .documents__gallery {
  grid-template-rows: 1fr;
}
.documents-data .documents__item .documents__gallery {
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}
.documents-data .documents__item .documents__gallery .wrapper {
  overflow: hidden;
}
.documents-data .documents__item .documents__gallery .card-text {
  gap: 6px;
}

@media (max-width: 665px) {
  .documents-header {
    border-top-right-radius: 0 !important;
  }
}
@media (min-width: 875px) {
  .documents-header .only-active-agreements-switch {
    text-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .documents-header .only-active-agreements-switch .title {
    font-size: 14px !important;
  }
}
@media (min-width: 1214px) {
  .documents-container {
    margin-right: 3px !important;
  }
  .documents-container .documents-header {
    padding: 20px !important;
  }
  .documents-data {
    overflow-y: auto !important;
    padding: 0 20px 20px !important;
  }
}
.details-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.details-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.details-section .section-subtotal {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.details-section .section-subtotal .h2 {
  color: #5A5A5A;
}

.display-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.display-group .label {
  text-overflow: ellipsis;
}
.display-group .value {
  display: flex;
  gap: 7px;
  text-overflow: ellipsis;
}
.display-group .value img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  flex-shrink: 0;
}

.customer-agreement-input {
  display: flex;
  gap: 12px;
  flex-flow: row wrap;
}
.customer-agreement-input .input-group {
  flex: 1 0 200px;
}

.period-net-currency {
  display: flex;
  gap: 34px;
  flex-flow: row wrap;
}
.period-net-currency .input-group {
  flex: 1 0 0px;
}
.period-net-currency .input-group > * {
  border: none;
  outline: none;
  pointer-events: none;
  width: 100%;
}

.start-end-date-input {
  display: flex;
  gap: 12px;
  flex-flow: row wrap;
  max-width: 320px;
}
.start-end-date-input .input-group {
  flex: 1 0 0px;
}

form {
  height: 100%;
}

.form {
  background: #fff;
  padding: 20px;
}
.form .form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form .separator {
  height: 1px;
  background: #D9D9D9;
  flex-shrink: 0;
}
.form .form-footer {
  margin-top: auto;
  display: flex;
  flex-flow: column wrap;
  align-items: end;
}
.form .form-footer .actions {
  display: flex;
  flex-flow: row wrap;
}

.form-section {
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
  transition: all 0.3s ease-in-out;
}
.form-section .section-label {
  max-width: 350px;
  display: flex;
  align-items: center;
  height: fit-content;
  gap: 8px;
  flex-grow: 1;
  cursor: pointer;
}
.form-section .section-label .chevron {
  transform: rotate(-90deg);
}
.form-section .section-input {
  transition: all 0.3s ease-in-out;
  display: grid;
  grid-template-rows: 0fr;
  flex: 1 1 250px;
}
.form-section .section-input .wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-section.open .section-label > .chevron {
  transform: rotate(90deg);
}
.form-section.open .section-input {
  grid-template-rows: 1fr;
}

.bm-content {
  height: 100%;
}

.sow-form {
  height: 100%;
  padding: 23px 20px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1087px;
}
.sow-form .form-footer {
  gap: 38.5px;
  align-items: end;
}
.sow-form .form-footer .total {
  display: flex;
  gap: 7px;
  align-items: center;
}
.sow-form .form-footer .total .h2 {
  color: #000000;
  font-size: 18px;
}
.sow-form .form-footer .actions {
  gap: 13px;
}
@media (min-width: 875px) {
  .sow-form .input-dropdown:has(#sow-type) {
    max-width: calc(50% - 6px);
  }
}

.new-employee {
  max-width: 783px;
}
.new-employee .form-header .h2 {
  font-size: 18px;
}
.new-employee .form-content {
  margin: 30px 0 40px 0;
  display: grid;
  gap: 24px 17px;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
.new-employee .form-content .input-text, .new-employee .form-content .input-dropdown {
  height: 40px;
}
.new-employee .form-content button {
  justify-self: start;
  align-self: self-end;
}
.new-employee .form-content button .plus-sign {
  stroke: #000000;
}
.new-employee .form-footer .actions {
  gap: 13px;
}

.new-role {
  max-width: 394px;
}
.new-role .form-header .h2 {
  font-size: 18px;
}
.new-role .form-content {
  margin: 30px 0 40px 0;
  display: grid;
  gap: 24px 17px;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}
.new-role .form-content .input-text, .new-role .form-content .input-dropdown {
  height: 40px;
}
.new-role .form-content button {
  justify-self: start;
  align-self: self-end;
}
.new-role .form-content button .plus-sign {
  stroke: #000000;
}
.new-role .form-footer .actions {
  gap: 13px;
}

.invoice-details {
  flex-direction: column !important;
  gap: 32px;
  transition: all 0.3s ease-in-out;
}
.invoice-details .section-label {
  max-width: 100%;
}
.invoice-details .section-label .primary-btn {
  margin-left: auto;
  height: 32px;
  display: none;
}
.invoice-details .section-input {
  padding-left: 32px;
  flex: 1 0 0px !important;
}
.invoice-details .section-input .wrapper {
  gap: 32px;
}
.invoice-details.open .primary-btn {
  display: flex;
}

.table {
  width: 100%;
  border: 1px solid #E3E3E3;
  border-radius: 10px;
  border-spacing: 0;
  background: #F7F7F7;
  line-height: 20px;
  text-align: center;
  word-wrap: break-word;
}
.table th {
  cursor: default;
}
.table th:has(select) {
  border-radius: 0;
  position: relative;
  padding-right: 70px;
  border: none;
  border-bottom: 1px solid #E3E3E3;
  border-right: 1px solid #E3E3E3;
  background: transparent;
}
.table th:has(select) select {
  appearance: none;
  padding-right: 20px;
  border-radius: 0;
  position: absolute;
  background: transparent;
  border: none;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: end;
}
.table th:has(select) .chevron {
  right: 0;
  stroke: #000000;
}
.table .txt {
  text-align: start;
  min-width: 100px;
}
.table .num {
  text-align: end;
  min-width: 70px;
}
.table tr:first-of-type > * {
  vertical-align: middle;
}
.table tr:nth-of-type(2) > * {
  padding-top: 14px;
}
.table tr:last-of-type > * {
  border-bottom: none;
}
.table th, .table td {
  vertical-align: top;
  overflow: auto;
  padding: 12px;
  border-right: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
}
.table td:focus {
  outline: #000000 solid 1px;
  position: relative;
  z-index: 1000;
}
.table th:last-child, .table td:last-child {
  border-right: none;
}

.entity-list {
  width: 100%;
  color: #000000;
  border-spacing: 0;
}
.entity-list th, .entity-list td {
  padding: 9px 10px 10px 0;
}
.entity-list th[data-cell=status], .entity-list td[data-cell=status] {
  text-align: center;
}
.entity-list th[data-cell=action], .entity-list td[data-cell=action] {
  text-align: right;
}
.entity-list .list-head {
  text-align: left;
  position: sticky;
  top: 0;
  background: #fff;
}
.entity-list .employee {
  display: grid;
  grid-template-areas: "img title" "img subtitle";
  grid-template-columns: 36px 1fr;
  gap: 4px 12px;
}
.entity-list .employee img {
  grid-area: img;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}
.entity-list .employee .title, .entity-list .employee .app-controls, .entity-list .employee .roles-list, .entity-list .employee .table, .entity-list .employee .entity-list {
  grid-area: title;
}
.entity-list .employee .subtitle-smaller {
  grid-area: subtitle;
  color: #7F7F7F;
}
.entity-list .department .projects {
  display: flex;
  gap: 6px;
}
.entity-list .department .projects .subtitle-smaller {
  max-width: 120px;
  text-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.roles-list {
  border: 1px solid #E3E3E3;
  background: #F7F7F7;
  border-radius: 10px;
  width: 100%;
  color: #000000;
  border-spacing: 0;
  padding: 20px 50px 20px 16px;
  text-align: left;
}
.roles-list .list-head {
  position: sticky;
  top: 0;
}
.roles-list .list-head th {
  padding-bottom: 22px;
}
.roles-list .list-body td {
  padding: 9px 0 10px 0;
}
.roles-list .list-body td[data-cell=access] {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-right: 20px;
}
.roles-list .list-body td[data-cell=access] > .input-group {
  flex-grow: 1;
}

.app-controls {
  width: 100%;
  color: #000000;
  border-spacing: 0;
  text-align: left;
}
.app-controls .list-head th {
  padding-bottom: 10px;
}
.app-controls .list-body td {
  padding: 5px 0 6px 0;
}
.app-controls .list-body td[data-cell=action] > :first-child {
  max-width: 185px;
  margin: 0 auto;
}

.gallery {
  display: grid;
  position: relative;
  grid-template-rows: 0fr;
  transition: all 0.3s ease-in-out;
}
.gallery .wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}

.header {
  background: #fff;
  height: 68px;
  padding: 23px 28px 20px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.header .menu-list {
  display: flex;
  gap: 28px;
}
.header .menu-list .menu-item {
  color: #A2A2A2;
  cursor: pointer;
}
.header .menu-list .menu-item::after {
  content: "";
  transition: all 0.3s ease-in-out;
}
.header .menu-list .menu-item:hover::after {
  content: "";
  display: block;
  position: relative;
  left: 0;
  right: 0;
  height: 2px;
  top: 0;
  background: #A2A2A2;
}
.header .menu-list .menu-item.active {
  color: #000000;
  pointer-events: none;
}
.header .menu-list .menu-item.active::after {
  content: "";
  display: block;
  position: relative;
  left: 0;
  right: 0;
  height: 2px;
  top: 0;
  background: #000000;
}

.indicator {
  border-radius: 30px;
  flex-shrink: 0;
  width: fit-content;
  height: 10px;
  overflow: hidden;
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-areas: "circle-red circle-orange";
}
.indicator .circle-orange {
  grid-area: circle-orange;
  margin-left: -3px;
  width: 10px;
  height: 10px;
  background: #E28F13;
  border-radius: 30px;
}
.indicator .circle-red {
  grid-area: circle-red;
  z-index: 1;
  width: 10px;
  height: 10px;
  background: #E21313;
  border-radius: 30px;
  box-shadow: 2px 0px 0px 0px #DEE1E8;
}

.input-date {
  cursor: pointer;
  height: 36px;
  border: 1px solid #E3E3E3;
  background: #fff;
  color: #A2A2A2;
  border-radius: 5px;
  padding: 10px 5px 10px 12px;
  transition: border 0.1s ease;
}
.input-date:disabled {
  background: #F6F6F6;
  color: rgb(72.8571428571, 72.8571428571, 72.8571428571);
}
.input-date:focus {
  border: 1px solid #000000;
  outline: none;
}
.input-date:valid {
  color: #000000;
}

.input-dropdown {
  height: 36px;
  max-width: 363px;
  border: 1px solid #E3E3E3;
  transition: border 0.1s ease;
  background: #fff;
  color: #000000;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}
.input-dropdown select {
  cursor: pointer;
  border-radius: 5px;
  padding: 10px 48px 10px 12px;
  background: transparent;
  border: none;
  width: 100%;
  height: 100%;
  appearance: none;
  transition: all 0.3s ease-in-out;
}
.input-dropdown select:focus {
  border: 1px solid #000000;
  outline: none;
}
.input-dropdown .chevron {
  pointer-events: none;
  display: block;
  position: absolute;
  top: 0;
  right: 12px;
  cursor: pointer;
  stroke: #7F7F7F;
  height: 100%;
  width: 24px;
  transform: rotate(-90deg);
}
.input-dropdown .chevron path {
  stroke-width: 1;
}
.input-dropdown.open .chevron {
  transform: rotate(90deg);
}
.input-dropdown:disabled {
  background: #F6F6F6;
  color: rgb(72.8571428571, 72.8571428571, 72.8571428571);
}

.input-filled {
  border: none;
  background: transparent;
  color: #000000;
  border-radius: 5px;
  transition: border 0.1s ease;
}
.input-filled:disabled {
  background: #F6F6F6;
  color: rgb(72.8571428571, 72.8571428571, 72.8571428571);
}
.input-filled:focus {
  border: 2px solid #000000;
  outline: none;
}

.input-text {
  height: 36px;
  border: 1px solid #E3E3E3;
  background: #fff;
  color: #000000;
  border-radius: 5px;
  padding: 10px 12px;
  transition: border 0.1s ease;
}
.input-text:disabled {
  background: #F6F6F6;
  color: rgb(72.8571428571, 72.8571428571, 72.8571428571);
}
.input-text:focus {
  border: 1px solid #000000;
  outline: none;
}

.input-textarea {
  height: 86px;
  border: 1px solid #E3E3E3;
  background: #fff;
  color: #000000;
  border-radius: 5px;
  padding: 10px 12px;
  transition: border 0.1s ease;
  resize: none;
}
.input-textarea:disabled {
  background: #F6F6F6;
  color: rgb(72.8571428571, 72.8571428571, 72.8571428571);
}
.input-textarea:focus {
  border: 1px solid #000000;
  outline: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.input-group:has(.input-filled) {
  gap: 4px;
}

.input-search {
  height: 32px;
  max-width: 240px;
  border: 1px solid #E3E3E3;
  background: #fff;
  color: #000000;
  border-radius: 5px;
  padding: 7px 12px 8px 35px;
  transition: border 0.1s ease;
}
.input-search:disabled {
  background: #F6F6F6;
  color: rgb(72.8571428571, 72.8571428571, 72.8571428571);
}
.input-search:focus {
  border: 1px solid #000000;
  outline: none;
}

.zoom-in {
  stroke: #000000;
  position: absolute;
  top: 8px;
  left: 12px;
  pointer-events: none;
}

.login {
  display: flex;
  gap: 13px;
  align-items: center;
  cursor: default;
  align-items: center;
}
.login img {
  border-radius: 50%;
  width: 36px;
  height: 36px;
}
.login .user-initials-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #007bff;
  color: white;
  text-align: center;
}
.login .action {
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.login .action:hover {
  color: rgb(76.5, 76.5, 76.5);
}

.logo {
  width: 140px;
  height: 40px;
}
.logo img {
  height: 100%;
}

.main {
  display: flex;
  flex-flow: row wrap;
  gap: 1px;
  margin-right: 4px;
}
.main .customers-container, .main .documents-container {
  flex: 1 1 300px;
}
.main .tasks-container {
  flex: 1 1 300px;
}
@media (min-width: 1061px) {
  .main .customers-container {
    max-width: 338px;
  }
}

.menu {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 160px;
  padding-left: 4px;
  padding-right: 4px;
  background: #fff;
  position: sticky;
  z-index: 1;
  top: 0;
  align-self: start;
  transition: all 0.3s ease-in-out;
}
.menu .logo {
  margin-top: 10px;
  margin-left: 10px;
}
.menu .menu-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.menu .menu-list .menu-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  width: 100%;
  color: #000000;
  height: 48px;
  padding: 15.5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.menu .menu-list .menu-item:hover {
  background: #EEEEEE;
  transition: all 0.3s ease-in-out;
}
.menu .menu-list .menu-item.active {
  background: #EEEEEE;
  pointer-events: none;
}
.menu .menu-list .menu-item svg {
  pointer-events: none;
}
.menu .menu-list .menu-item .status > .subtitle {
  font-size: 10px;
}
.menu .login {
  margin: auto auto 23px auto;
}
.menu .menu-expand-btn {
  position: absolute;
  left: 148px;
  bottom: 29px;
}
.menu.close {
  transition: all 0.3s ease-in-out;
  width: 56px;
}
.menu.close .menu-list .menu-text, .menu.close .logo {
  display: none;
}
.menu.close .menu-item {
  padding: 0;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.menu.close .menu-item .status {
  height: 17px;
  position: absolute;
  top: 5px;
  right: 1px;
  border: 2px solid #fff;
}
.menu.close .menu-item .status .subtitle {
  font-size: 8px;
}
.menu.close .menu-item.active .status {
  border: 2px solid #EEEEEE;
}
.menu.close .menu-item:hover .status {
  border: 2px solid #EEEEEE;
}
.menu.close .menu-expand-btn {
  left: 44px;
}
.menu.close .login .user-initials-circle {
  display: none;
}
@media (min-width: 1214px) {
  .menu {
    height: 100vh;
  }
}

.modal {
  max-width: 490px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 31px;
  background: #fff;
}
.modal .modal-header {
  display: flex;
  justify-content: space-between;
}
.modal .modal-header .h2 {
  font-size: 18px;
  font-weight: 700;
}
.modal .modal-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.modal .modal-body .title {
  margin-bottom: 8px;
}
.modal .modal-body .card {
  padding: 20px;
}
.modal .modal-body .card .card-text .route-roles {
  display: flex;
  gap: 8px;
  align-items: center;
}
.modal .modal-body .card .card-text .route-roles .subtitle-smaller {
  color: #5A5A5A;
}
.modal .modal-controls {
  display: flex;
  justify-content: flex-end;
  align-items: centers;
  gap: 13px;
}

.warning-component {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.warning-component .h2 {
  color: #A2A2A2;
}

.overflow {
  padding: 1px 3px;
  background: #000000;
  width: fit-content;
  text-align: center;
  vertical-align: middle;
  border-radius: 3px;
  font: normal 700 10px/normal "Inter", sans-serif;
  color: #fff;
}

.options-modal {
  position: absolute;
  z-index: -999;
  display: none;
  align-items: center;
  top: 45px;
  left: calc(100% - 165px);
  padding: 0;
  gap: 0;
  background: #fff;
  border: 1px solid #EEEEEE;
  border-radius: 6px;
  width: 115px;
  overflow: hidden;
}
.options-modal .separator {
  height: 1px;
  background: #EEEEEE;
  width: 83px;
}
.options-modal .option-btn {
  width: 100%;
}
.options-modal .option-btn:first-of-type {
  padding-top: 16px;
}
.options-modal .option-btn:last-of-type {
  padding-bottom: 16px;
}
.options-modal.show {
  display: flex;
  z-index: 3;
}

.comment__modal .modal-body .title {
  margin-bottom: 12px;
}

.status {
  height: 15px;
  padding: 0 6px;
  display: inline-block;
  width: fit-content;
  border-radius: 30px;
  background: #000000;
  color: #fff;
  text-wrap: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
}
.status.warning {
  background: #E28F13;
}
.status.expired {
  background: #E21313;
}
.status.draft {
  background: #DEE1E8;
  color: #000000;
}

.tasks-container {
  background: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 20px 20px 0 0;
  max-height: 100%;
}
.tasks-container .tasks-header {
  height: 64px;
  padding: 12px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}
.tasks-container .tasks-header .h3 {
  margin-right: auto;
  color: #A2A2A2;
}
.tasks-container .tasks-header .tasks-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1214px) {
  .tasks-container .tasks-header {
    padding: 20px;
  }
}
.tasks-container .tasks-data {
  height: calc(100% - 64px);
  padding: 0 12px 12px;
  overflow-y: auto;
}
.tasks-container .tasks-data .tasks-expired, .tasks-container .tasks-data .tasks-approaching-deadline, .tasks-container .tasks-data .tasks-other {
  margin-bottom: 8px;
}
.tasks-container .tasks-data .tasks-expired .h2, .tasks-container .tasks-data .tasks-approaching-deadline .h2, .tasks-container .tasks-data .tasks-other .h2 {
  margin-bottom: 8px;
}
.tasks-container .tasks-data .tasks-expired .data, .tasks-container .tasks-data .tasks-approaching-deadline .data, .tasks-container .tasks-data .tasks-other .data {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (min-width: 1061px) {
  .tasks-container .tasks-data {
    overflow-y: auto;
    padding: 0 20px 20px;
  }
}
.tasks-container .card .card-text > .title-600 {
  margin-bottom: 2px;
}
.tasks-container .card .card-text > .subtitle {
  margin-bottom: 8px;
}

.container .main.ap-employees {
  background: #fff;
  border-radius: 4px;
  grid-area: main;
  margin-bottom: 4px;
  padding: 24px 28px;
  flex-flow: column;
  overflow: hidden;
  gap: 24px;
}
.container .main.ap-employees .controls {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 13px;
}
.container .main.ap-employees .controls .primary-btn {
  margin-left: auto;
  height: 32px;
}
.container .main.ap-employees .data {
  overflow: auto;
}
.container .main.ap-employees .data .entity-list {
  width: 100%;
  color: #000000;
  border-spacing: 0;
}
.container .main.ap-employees .data .entity-list th, .container .main.ap-employees .data .entity-list td {
  padding: 9px 10px 10px 0;
}
.container .main.ap-employees .data .entity-list th[data-cell=status], .container .main.ap-employees .data .entity-list td[data-cell=status] {
  text-align: center;
}
.container .main.ap-employees .data .entity-list th[data-cell=action], .container .main.ap-employees .data .entity-list td[data-cell=action] {
  text-align: right;
}
.container .main.ap-employees .data .entity-list .list-head {
  text-align: left;
  position: sticky;
  top: 0;
  background: #fff;
}
.container .main.ap-employees .data .entity-list .employee {
  display: grid;
  grid-template-areas: "img title" "img subtitle";
  grid-template-columns: 36px 1fr;
  gap: 4px 12px;
}
.container .main.ap-employees .data .entity-list .employee img {
  grid-area: img;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}
.container .main.ap-employees .data .entity-list .employee .title, .container .main.ap-employees .data .entity-list .employee .entity-list {
  grid-area: title;
}
.container .main.ap-employees .data .entity-list .employee .subtitle-smaller {
  grid-area: subtitle;
  color: #7F7F7F;
}
.container .main.ap-employees .data .entity-list .department .projects {
  display: flex;
  gap: 6px;
}
.container .main.ap-employees .data .entity-list .department .projects .subtitle-smaller {
  max-width: 120px;
  text-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.container .main.ap-roles {
  background: #fff;
  border-radius: 4px;
  grid-area: main;
  margin-bottom: 4px;
  padding: 24px 28px;
  flex-flow: column;
  overflow: hidden;
  gap: 24px;
}
.container .main.ap-roles .controls {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 13px;
}
.container .main.ap-roles .controls .h2 {
  font-size: 24px;
}
.container .main.ap-roles .controls .primary-btn {
  margin-left: auto;
  height: 32px;
}
.container .main.ap-roles .data {
  overflow: auto;
}
.container .main.ap-roles .data .role.open .role-name .chevron {
  transform: rotate(90deg);
}
.container .main.ap-roles .data .role.open .gallery {
  grid-template-rows: 1fr;
}
.container .main.ap-roles .data .role-name {
  display: flex;
  gap: 5px;
  cursor: pointer;
  align-items: center;
  padding: 14px 0 14px 0;
}
.container .main.ap-roles .data .role-name .h2 {
  font-size: 18px;
  font-weight: 500;
}
.container .main.ap-roles .data .role-name .chevron {
  transform: rotate(-90deg);
  stroke-width: 1px;
  pointer-events: none;
}
.container .main.ap-roles .data .role-name .more-options {
  margin-left: auto;
  stroke: #A2A2A2;
}

.container .main.ap-uipermissions {
  border-radius: 4px;
  grid-area: main;
  margin-bottom: 4px;
  overflow: hidden;
  gap: 4px;
}
.container .main.ap-uipermissions .positions {
  background: #fff;
  border-radius: 4px;
  padding: 8px;
  max-width: 314px;
  flex: 1 1 200px;
}
.container .main.ap-uipermissions .positions .position-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.container .main.ap-uipermissions .positions .position-list .list-item {
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.container .main.ap-uipermissions .positions .position-list .list-item.active {
  background: #DEE1E8;
}
.container .main.ap-uipermissions .positions .position-list .list-item:hover {
  background: #E3E3E3;
}
.container .main.ap-uipermissions .permissions {
  flex: 1 1 300px;
  padding: 25px 25px 0;
  background: #fff;
  border-radius: 4px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.container .main.ap-uipermissions .permissions .controls {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 13px;
}
.container .main.ap-uipermissions .permissions .controls .h2 {
  font-size: 24px;
}
.container .main.ap-uipermissions .permissions .controls .primary-btn {
  margin-left: auto;
  height: 32px;
}
.container .main.ap-uipermissions .permissions .data {
  flex-grow: 1;
  overflow: auto;
}
.container .main.ap-uipermissions .permissions .data .app.open .app-name .chevron {
  transform: rotate(90deg);
}
.container .main.ap-uipermissions .permissions .data .app.open .gallery {
  grid-template-rows: 1fr;
}
.container .main.ap-uipermissions .permissions .data .app-name {
  display: flex;
  gap: 5px;
  cursor: pointer;
  align-items: center;
  padding: 14px 0 14px 0;
}
.container .main.ap-uipermissions .permissions .data .app-name .h2 {
  font-size: 18px;
  font-weight: 500;
}
.container .main.ap-uipermissions .permissions .data .app-name .chevron {
  transform: rotate(-90deg);
  stroke-width: 1px;
  pointer-events: none;
}
.container .main.ap-uipermissions .permissions .data .app-name .delete {
  margin-left: auto;
  stroke: #A2A2A2;
}
.container .main.ap-uipermissions .permissions .data .card.open .card-content {
  border-bottom: 1px solid #E3E3E3;
}
.container .main.ap-uipermissions .permissions .data .card.open .card-attachments {
  padding-top: 16px;
}
.container .main.ap-uipermissions .permissions .data .card.open .card-attachments .input-search {
  max-width: 100%;
}

.container:has(.main.entity-edit) {
  background: #EAEAEA;
  display: grid;
  gap: 4px;
  justify-content: start;
  grid-auto-columns: auto minmax(0, 1fr);
  grid-auto-rows: 68px minmax(0, 1fr);
  grid-template-areas: "menu main" "menu main";
}
.container:has(.main.entity-edit) .menu {
  grid-area: menu;
}
.container:has(.main.entity-edit) .main.entity-edit {
  background: #fff;
  grid-area: main;
  margin: 4px 0 4px 0;
  padding: 0;
  padding-bottom: 50px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  overflow: auto;
  gap: 1px;
}
.container:has(.main.entity-edit) .main.entity-edit .entity-header {
  position: sticky;
  padding: 12px 28px;
  height: 74px;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #D9D9D9;
}
.container:has(.main.entity-edit) .main.entity-edit .entity-header .entity-name {
  display: flex;
  gap: 6px;
  flex-flow: column wrap;
}
.container:has(.main.entity-edit) .main.entity-edit .entity-header .controls {
  margin-left: auto;
  display: flex;
  gap: 12px;
}
.container:has(.main.entity-edit) .main.entity-edit .entity-main-info {
  padding: 20px 28px;
  gap: 7px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  border-bottom: 1px solid #D9D9D9;
}
.container:has(.main.entity-edit) .main.entity-edit .entity-main-info .dates {
  display: flex;
  gap: 20px;
}
.container:has(.main.entity-edit) .main.entity-edit .entity-additional-details {
  padding: 16px 28px;
  display: flex;
  flex-flow: column wrap;
  gap: 24px;
  flex-grow: 1;
}
.container:has(.main.entity-edit) .main.entity-edit .entity-additional-details .nav .menu-list {
  display: flex;
  gap: 28px;
}
.container:has(.main.entity-edit) .main.entity-edit .entity-additional-details .nav .menu-list .menu-item {
  color: #A2A2A2;
  cursor: pointer;
}
.container:has(.main.entity-edit) .main.entity-edit .entity-additional-details .nav .menu-list .menu-item::after {
  content: "";
  transition: all 0.3s ease-in-out;
}
.container:has(.main.entity-edit) .main.entity-edit .entity-additional-details .nav .menu-list .menu-item:hover::after {
  content: "";
  display: block;
  position: relative;
  left: 0;
  right: 0;
  height: 2px;
  top: 0;
  background: #A2A2A2;
}
.container:has(.main.entity-edit) .main.entity-edit .entity-additional-details .nav .menu-list .menu-item.active {
  color: #000000;
  pointer-events: none;
}
.container:has(.main.entity-edit) .main.entity-edit .entity-additional-details .nav .menu-list .menu-item.active::after {
  content: "";
  display: block;
  position: relative;
  left: 0;
  right: 0;
  height: 2px;
  top: 0;
  background: #000000;
}
.container:has(.main.entity-edit) .main.entity-edit .entity-additional-details .total {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: flex-end;
}
@media (min-width: 1214px) {
  .container:has(.main.entity-edit) {
    height: 100vh;
    max-height: 100vh;
  }
}

@media (min-width: 875px) {
  .documents-header {
    border-top-left-radius: 0 !important;
  }
  .documents-header .only-active-agreements-switch {
    text-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .documents-header .only-active-agreements-switch .title {
    font-size: 14px;
  }
}
@media (min-width: 1214px) {
  .documents-container {
    margin-right: 3px;
  }
  .documents-container .documents-header {
    padding: 20px;
  }
  .documents-data {
    overflow-y: auto;
    padding: 0 20px 20px;
  }
}
body {
  background: #EEEEEE;
}

/*# sourceMappingURL=styles.css.map */
