@import url('./components/timeline.css');
@import url('./components/bubbles.css');
@import url('./components/sidebar.css');
@import url('./components/spreadsheet.css');
@import url('./components/header.css');
@import url('./components/gridFilter.css');
@import url('./components/tasksPage.css');
@import url('./components/commonStyles.css');
@import url('./components/registerTotals.css');
@import url('./components/dropbutton.css');
@import url('./components/formeditor.css');
@import url('./components/kanban.css');

app {
  display: flex;
}
.shadow {
  box-shadow: 0 3px 20px 0 rgba(34, 34, 34, 0.05);
}
.body-content {
  height: calc(100vh - 49px);
}
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="color"],
textarea,
select {
  height: 30px;
  border-radius: var(--br);
  box-shadow: none;
}

:root {
    --primary-hs: 219 56%;
    /*the base color*/
    --primary-l: 27%;
    /*the initial lightness*/
    --primary: hsl(var(--primary-hs) var(--primary-l));
    --primary-darker: hsl(var(--primary-hs) calc(var(--primary-l) - 5%));
    --primary-darkest: hsl(var(--primary-hs) calc(var(--primary-l) - 10%));
    --primary-fade: hsl(var(--primary-hs) var(--primary-l) / 10%);
    --primary-fade2: hsl(var(--primary-hs) var(--primary-l) / 20%);
    --secondary-hs: 190 94%;
    /*the base color*/
    --secondary-l: 44%;
    /*the initial lightness*/
    --secondary: hsl(var(--secondary-hs) var(--secondary-l));
    --secondary-darker: hsl(var(--secondary-hs) calc(var(--secondary-l) - 5%));
    --secondary-darkest: hsl(var(--secondary-hs) calc(var(--secondary-l) - 10%));
    --secondary-fade: hsl(var(--secondary-hs) var(--secondary-l) / 10%);
    --secondary-fade2: hsl(var(--secondary-hs) var(--secondary-l) / 20%);
    --text-primary-hs: 190 94%;
    /*the base color*/
    --text-primary-l: 44%;
    /*the initial lightness*/
    --text-primary: hsl(var(--text-primary-hs) var(--text-primary-l));
    --text-primary-darker: hsl(var(--text-primary-hs) calc(var(--text-primary-l) - 5%));
    --text-primary-darkest: hsl(var(--text-primary-hs) calc(var(--text-primary-l) - 10%));
    --text-primary-fade: hsl(var(--text-primary-hs) var(--text-primary-l) / 10%);
    --text-primary-fade2: hsl(var(--text-primary-hs) var(--text-primary-l) / 20%);
    --button-primary-hs: 190 94%;
    /*the base color*/
    --button-primary-l: 44%;
    /*the initial lightness*/
    --button-primary: hsl(var(--button-primary-hs) var(--button-primary-l));
    --button-primary-darker: hsl(var(--button-primary-hs) calc(var(--button-primary-l) - 5%));
    --button-primary-darkest: hsl(var(--button-primary-hs) calc(var(--button-primary-l) - 10%));
    --button-primary-fade: hsl(var(--button-primary-hs) var(--button-primary-l) / 10%);
    --button-primary-fade2: hsl(var(--button-primary-hs) var(--button-primary-l) / 20%);
    --green-hs: 190 94%;
    /*the base color*/
    --green-l: 44%;
    /*the initial lightness*/
    --green: hsl(var(--green-hs) var(--green-l));
    --green-darker: hsl(var(--green-hs) calc(var(--green-l) - 5%));
    --green-darkest: hsl(var(--green-hs) calc(var(--green-l) - 10%));
    --green-fade: hsl(var(--green-hs) var(--green-l) / 10%);
    --green-fade2: hsl(var(--green-hs) var(--green-l) / 20%);
    --green-fade3: hsl(var(--green-hs) var(--green-l) / 60%);
    --red-hs: 8 73%;
    /*the base color*/
    --red-l: 52%;
    /*the initial lightness*/
    --red: hsl(var(--red-hs) var(--red-l));
    --red-darker: hsl(var(--red-hs) calc(var(--red-l) - 5%));
    --red-darkest: hsl(var(--red-hs) calc(var(--red-l) - 10%));
    --red-fade: hsl(var(--red-hs) var(--red-l) / 10%);
    --red-fade2: hsl(var(--red-hs) var(--red-l) / 20%);
    --orange: #ff8100;
    --yellow: #fcffe6;
    --yellow2: #F6BB42;
    --purple: #6f42c1;
    --bg: #F7F8FA;
    --border: #e0e0e0;
    --br: 4px;
}
.drop {
  position: relative;
}
.drop .dropper {
  display: none;
  position: absolute;
  top: 100%;
  border: none;
  background: #FFFFFF;
  border-radius: 4px;
  gap:5px;
}
body.dark-mode .drop .dropper {
  background: #333442;
  color: #FFFFFF;
}
.drop .dropper li {
  border: none;
  min-width: 190px;
  list-style-type: none;
}
.drop .dropper li button,
.drop .dropper li .button,
.drop .dropper li span,
.drop .dropper li a {
  border: none;
  background: transparent;
  color: #000000;
  display: block;
}
.drop .dropper.right {
  right: 0px;
}
.drop:hover .dropper {
  display: block;
}
.drop:hover .dropper li {
  color: #000000;
}
.drop:hover .dropper li:hover {
  color: #fff;
}
.main-container {
  width: 100%;
}
.webcontractor-logo {
  margin: 15px 20px;
  position: static;
  width: calc(100% - 40px);
  min-height: 30px;
}
#MobileLogo {
  display: none;
}
@media only screen and (max-width: 480px) {
  #MobileLogo {
    display: block;
  }
}
#WebContractorLogo {
  display: block;
}
@media only screen and (max-width: 480px) {
  #WebContractorLogo {
    display: none;
  }
}

.topbutton-container {
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (orientation: landscape) and (max-width: 991px) {
  .topbutton-container .button {
    padding: 0px;
    width: 30px;
    height: 20px;
    z-index: 2;
  }
  .topbutton-container .button.drop {
    padding-right: 0px;
  }
  .topbutton-container .button.drop > span:nth-child(2) {
    display: none;
  }
}
.topbutton-container .button {
  background: transparent;
  color: #fff;
  text-shadow: none;
  text-transform: none;
  font-weight: 600;
  align-items: center;
  z-index: 0;
  padding: 15px 10px 10px 20px;
  margin-right: 2px;
}
.topbutton-container .button .inline-number {
    display: flex;
    border-radius: 100px;
    background: var(--primary);
    color: #FFFFFF;
    padding: 12px 12px 12px 12px;
    height: 22px;
    width: 22px;
    left: 96px;
    top: -2px;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}
.topbutton-container .button:hover {
  background: var(--primary-darker);
}
.topbutton-container .button:hover .inline-number {
  background: var(--green);
}
.topbutton-container .button.drop {
  padding-right: 40px;
}
.topbutton-container .button.drop:after {
  top: 45%;
  right: 20px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: white;
  border-width: 5px;
  margin-left: -5px;
}
.topbutton-container svg,
.topbutton-container img {
  transform: translateX(18px);
  height: 16px;
  width: 20px;
}
.topbutton-container svg + .inline-number,
.topbutton-container img + .inline-number {
  display: inline-flex;
  border-radius: 100px;
  background: var(--green);
  color: #FFFFFF;
  padding: 3px 6px 4px 6px;
  font-weight: 600;
  margin-left: 5px;
  font-size: 0.7rem;
  z-index: 1;
  transform: translate(20px, -8px);
  position: absolute;
}
.topbutton-container > img {
  object-fit: contain;
  transform: translateX(18px) scale(1.2);
}
.topbutton-container ul li .close {
  float: right;
  color: #7383A8;
  margin-left: 5px;
}
.topbutton-container.notifications-container .drop .dropper li > a {
  display: flex;
  justify-content: space-between;
}
.drop {
  z-index: 2;
}
.drop:hover {
  z-index: 999;
  position: relative;
}
.drop:hover .dropper {
  display: flex;
  flex-direction: column;
  right: 0px;
}
.drop.with-arrow {
  padding-right: 24px !important;
}
.drop.with-arrow:after {
  top: 45%;
  right: 9px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #FFFFFF;
  border-width: 4px;
  margin-left: -5px;
}
.drop.with-arrow.subtle:after {
  border-top-color: #fff;
}
.drop .dropper {
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
}
body.dark-mode .drop .dropper {
  border-color: #434556;
}
.drop .dropper li {
  cursor: pointer;
}
.drop .dropper li:hover {
  background: #F7F8FA;
  color: #000 !important;
}
.drop .dropper li .button,
.drop .dropper li button,
.drop .dropper li > a,
.drop .dropper li > span {
  display: block;
  padding: 10px;
  width: 100%;
  text-align: left;
  color: var(--primary);
  text-shadow: none;
  font-weight: 600;
  font-size: 12px;
  font-family: 'Biryani', sans-serif;
  cursor: pointer;
  background: #FFFFFF;
  box-sizing: border-box;
}
.top-filters .drop .dropper li .button {
    padding-top: 5px;
}

body.dark-mode .drop .dropper li .button,
body.dark-mode .drop .dropper li button,
body.dark-mode .drop .dropper li > a,
body.dark-mode .drop .dropper li > span {
  background: #333442;
}
.drop .dropper li .button .inline-total,
.drop .dropper li button .inline-total,
.drop .dropper li > a .inline-total,
.drop .dropper li > span .inline-total {
  float: right;
  background: var(--primary-fade);
  border-radius: 100px;
  padding: 2px 5px;
  display: inline-flex;
  font-size: 0.5rem;
  transform: scale(1.4);
}
.drop .dropper li .button:hover,
.drop .dropper li button:hover,
.drop .dropper li > a:hover,
.drop .dropper li > span:hover {
  background: #F7F8FA;
  color: var(--text-primary);
}
.drop .dropper li .button:hover span,
.drop .dropper li button:hover span,
.drop .dropper li > a:hover span,
.drop .dropper li > span:hover span {
  color: var(--text-primary);
}
body.dark-mode .drop .dropper li span {
  color: #fff;
}
.drop .dropper li:last-child {
  border-bottom: none;
}
.r .block input[type="password"] {
  font-size: 16px;
  padding: 10px;
}
main > .flex-content {
  overflow: auto;
  height: calc(100vh - 71px);
}
main > .flex-content .flex-content {
  height: calc(100vh - 236px);
}

.static-row-wrapper table.table tbody tr:hover {
  background: transparent;
  cursor: default;
}
table.table {
  width: 100%;
}
table.table th {
  padding: 10px;
  border-bottom: 2px solid #e0e0e0;
  text-align: left;
  font-weight: 600;
  font-size: 11px;
  position: relative;
  padding-right: 40px;
  line-height: 110%;
}
body.dark-mode table.table th {
  border-bottom-color: #434556;
}
table.table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
body.dark-mode table.table td {
  border-bottom-color: #434556;
}
.r {
  display: flex;
  flex-wrap: wrap;
}
.mk-card .r {
  display: flex;
  flex-wrap: nowrap;
}
.mk-card.nm {
  margin: 0px;
}
.mk-card-body {
  display: flex;
}
.mk-card-header {
  flex: 0;
}
.mk-card-main {
  flex: 1;
  display: grid;
  gap: 10px;
}
.mk-card-main > div.title {
  grid-column: 1 / -1;
  margin: 0;
  padding: 0px 5px;
}
.mk-card-main.mk-card-main-4c {
  grid-template-columns: repeat(4, 1fr);
}
.mk-card-main.mk-card-main-approver-list {
  grid-template-columns: repeat(3, auto) repeat(3, 1fr) 2fr;
}
.mk-card-main.mk-card-main-approver-list > .c {
  place-self: center left;
}
.mk-card-footer {
  flex: 0;
  align-self: center;
}
.approver-list-header {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.approver-list-header > .approver-list-filter-container {
  align-self: end;
}
.approver-list-filter-container-row {
  display: flex;
  gap: 10px;
}
.approver-list-filter-container-row > div {
  place-self: center;
}
.svg-scale-5 {
  transform: scale(5);
}
.svg-person {
  fill: #41ACB9;
}
.block {
  /*display: flex;
    align-items: center;
    width: 0;
    flex-grow: 1;
    padding: @padding @padding @padding @padding * 2;
    label {
        width: 200px;
        flex-grow: 0;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        .mandatory {
            color: @red;
        }
    }*/
}
.block .inline-help {
  margin-left: auto;
}
.block.blank {
  padding: 0px 10px 10px 20px;
}
.block.blank label {
  display: none;
}
.block .joiner {
  padding: 0 10px;
}
.block.no-grow {
  flex-grow: 0;
  width: auto;
}
.block.check {
  flex-direction: row-reverse;
}
.block.check input[type="checkbox"] {
  margin-right: 10px;
}
.block.check.fav {
  flex-direction: row;
}
.block .autocomplete-container {
  flex-grow: 1;
}
.block._60l label {
  width: 60px;
}
.block._80l label {
  width: 80px;
}
.block._100l label {
  width: 100px;
}
.block._120l label {
  width: 120px;
}
.block._140l label {
  width: 140px;
}
.block._160l label {
  width: 160px;
}
.block._180l label {
  width: 180px;
}
.block._120l label {
  width: 120px;
}
.block._450l label {
  width: 450px;
}

.top-flex-container {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}
.button.drop .profile-img {
  height: 15px;
  width: 15px;
  margin-right: 10px;
  border-radius: 4px;
  transform: scale(1.7) translateY(-1px);
}
.copyright-text {
  padding: 10px 20px;
  font-size: 10px;
  opacity: 0.5;
}
button,
.button {
  background: var(--primary);
  color: #FFFFFF;
}
button:hover,
.button:hover {
  background: var(--primary-darkest);
  color: #fff;
}
button.disabled,
button[disabled],
.button.disabled,
.button[disabled] {
  background: var(--primary-fade);
  color: #999;
}
button.disabled:hover,
button[disabled]:hover,
.button.disabled:hover,
.button[disabled]:hover {
  background: var(--primary-fade);
  color: #999;
}
.dialog-overlay {
  z-index: 101;
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  top: 0px;
  left: 0px;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}
.dialog {
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  min-width: 500px;
  max-height: calc(100vh - 50px);
  max-width: 80%;
}
.dialog > div > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--primary-fade);
}
.dialog > div > header .close {
  cursor: pointer;
  color: #e0e0e0;
}
.dialog > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 15px 20px;
  background: var(--primary-fade);
  height: 50px;
}
.dialog > header .dialog-title {
  color: var(--primary);
}
.dialog > header .close {
  font-size: 24px;
  cursor: pointer;
  color: #e0e0e0;
  transform: translateY(8px) translateX(10px);
}
.dialog > header .close:hover {
  color: var(--primary);
  transform: translateY(8px) translateX(10px) scale(0.8);
}
.dialog > header .icon-cross:hover {
  color: var(--primary) !important;
  transform: scale(0.8);
}
.dialog > section {
  min-height: 100px;
  flex-grow: 1;
  overflow: auto;
}
.dialog > footer {
  display: flex;
  justify-content: flex-end;
  padding: 20px;
}
.dialog footer {
  text-align: right;
}
.dialog form footer {
  padding: 20px;
}
body.dark-mode .dialog {
  background: #333442;
}
.table-grid.afp-summary {
  margin-bottom: 50px;
}
.table-grid.afp-summary input,
.table-grid.afp-summary select,
.table-grid.afp-summary .select2.select2-container--default .select2-selection--single {
  height: 26px;
  font-size: 12px;
  border: 1px solid var(--border);
  border-radius: var(--br);
  padding-top: 8px;
  box-shadow: none;
  margin-bottom: 0;
}
.table-grid.afp-summary .select2.select2-container--default .select2-selection--single {
  padding-top: 0;
}
.table-grid.afp-summary .select2.select2-container--default .select2-selection--multiple,
.table-grid.afp-summary .select2.select2-container--default .select2-selection--multiple,
.table-grid.afp-summary .select2.select2-container--default .select2-selection--single {
  min-height: 26px;
}
.table-grid.afp-summary td:first-child,
.table-grid.afp-summary td:nth-child(7) {
  font-size: 10px;
  width: 170px;
  text-align: right;
  padding-right: 20px;
  border-bottom: 1px solid var(--border);
}
.table-grid.afp-summary td.cis:nth-child(5) {
  width: 100px;
  font-size: 10px;
  width: 80px;
  text-align: right;
  padding-right: 20px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 -0.5px 0 0 var(--border);
}
.table-grid.afp-summary td:nth-child(2),
.table-grid.afp-summary td:last-child {
  font-size: 12px;
  padding: 5px;
  height: 40px;
  border-bottom: 1px solid var(--border);
}
.table-grid.afp-summary td.cis:nth-child(6) {
  width: 80px;
  font-size: 10px;
  width: 170px;
  text-align: right;
  padding-right: 20px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 -0.5px 0 0 var(--border);
}
.table-grid.afp-summary td .bb {
  border-bottom: 1px solid var(--border);
}
.bg-g {
  background: var(--bg);
}
.bg-ly {
  background: #fcffe6;
}
.bg-y {
  background: #fff9c2;
}
.compact-table-container {
  overflow: auto;
  width: calc(100vw - 305px);
  max-height: calc(100vh - 200px);
  padding-bottom: 100px;
}
table.table {
  margin: 20px;
  border-radius: 4px;
  max-width: calc(100% - 40px);
  border: none;
  box-shadow: 0 3px 20px 0 rgba(34, 34, 34, 0.05);
}
table.table.compact-table {
  box-shadow: none;
  margin: 0px;
  max-width: 100%;
}
table.table.compact-table thead {
  background: transparent;
}
table.table.compact-table thead th {
  line-height: 110%;
  font-size: 10px;
  padding: 5px;
}
table.table.compact-table tbody tr.collapsable-row {
  background: #F7F8FA;
}
table.table.compact-table tbody td {
  font-size: 10px;
  line-height: 110%;
  padding: 7px 5px 5px 5px;
}
table.table.compact-table tbody td input {
  transform: translateY(-2px);
  margin-bottom: 0;
  padding: 8px 5px 5px 5px;
  height: 26px;
  font-size: 10px;
}
table.table.compact-table tbody .collapsable-grid-header {
  padding: 2px;
  font-size: 13px;
}
table.table tr {
  border: none;
}
table.table tr:hover {
  background: #fafbfc;
  cursor: pointer;
}
table.table tr td {
  border-bottom-color: rgba(224, 224, 224, 0.2);
}
table.table tr td .l {
  font-size: 0.7rem;
  color: rgba(40, 41, 52, 0.5);
  display: block;
  margin: 10px 0 3px 0;
}
table.table tr td .t {
  font-size: 0.8rem;
  font-weight: 400;
  color: #282934;
  display: block;
}
table.table tr:nth-of-type(even) {
  background: #fff;
}
    table.table tr:hover {
        background: var(--secondary-fade2) !important;
        cursor: pointer;
    }
        table.table tr:hover > .saturatedBlueLight {
            background: var(--secondary-fade2) !important;
        }
table.table .flex-center {
  text-align: center;
}
.inline-logo {
  display: inline-block;
  height: 50px;
  width: 50px;
  background-size: 90%;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 5px;
  object-fit: contain;
}

.collapsable-grid-header {
  color: #1a3360;
  padding: 20px 20px 10px 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.1rem;
  clear: both;
}
.collapsable-grid-header .line {
  border-top: 1px dashed #ddd;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: 20px;
}
.collapsable-grid-header:hover {
  color: #ef511f;
}
.collapsable-grid-header:hover .line {
  border-color: #ef511f;
}
.collapsable-grid-header.nohov:hover {
  color: #1a3360;
  cursor: default;
}
.collapsable-grid-header.nohov:hover .line {
  border-color: #ddd;
}
.collapsable-grid-header .icon-arrow-left {
  -webkit-transform: rotate(270deg) scale(0.8) translateX(2px) translateY(2px);
  transform: rotate(270deg) scale(0.8) translateX(2px) translateY(2px);
  margin-right: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 5px;
  width: 28px;
  height: 28px;
  text-align: center;
  background: rgba(26, 51, 96, 0.1);
  border-radius: 50%;
  padding: 8px 6px;
  font-size: 0.8rem;
}
.collapsable-grid-header.collapsed .icon-arrow-left {
  -webkit-transform: rotate(180deg) scale(0.8) translateX(2px) translateY(2px);
  transform: rotate(180deg) scale(0.8) translateX(2px) translateY(2px);
}
.collapsable-grid-header.collapsable-grid-header--secondary {
  background: rgba(26, 51, 96, 0.05);
}
.collapsable-grid-header.collapsable-grid-header--secondary .line {
  border-top: 1px dashed rgba(26, 51, 96, 0.4);
}
.memo-container {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 20px;
}
.memo-container .memo {
  margin-top: 20px;
  border-radius: 4px;
  color: #FFFFFF;
  max-width: 400px;
  padding: 10px 15px 7px 15px;
  font-size: 12px;
}
.memo-container .memo.memo--success {
  background: #0AD957;
}
.memo-container .memo.memo--error {
  background: #C53826;
}
.memo-container .memo.memo--warning {
  background: #F18805;
}
.button.dropdown:hover .dropdown-content {
  display: block;
}
.loading {
  display: block;
  position: relative;
  width: 80px;
  height: 80px;
  z-index: 1;
  margin: 50px auto;
  left: 0px;
  top: 0px;
}
.loading div {
  position: absolute;
  border: 4px solid var(--primary);
  opacity: 1;
  border-radius: 50%;
  animation: loading-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loading div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes loading-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
.loading-message {
  text-align: center;
  margin: 50px 0;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  font-size: 12px;
}
body.dark-mode .loading-message {
  color: white;
}
.mdc-paginator-range-buttons > * {
  border-radius: 4px;
}
.field-with-helper {
  position: relative;
}
.field-with-helper .field-helper {
  position: absolute;
  display: none;
  top: 40px;
  left: 0px;
  background: #e7d668;
  padding: 10px;
  border-radius: 4px;
  width: 100%;
  font-size: 10px;
  animation: fadeInLeft 0.2s ease-out;
  z-index: 2;
}
.field-with-helper .field-helper ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-top: 5px;
  margin-bottom: 0;
}
.field-with-helper .field-helper ul li {
  margin-top: 5px;
  font-weight: 600;
  font-size: 10px;
}
.field-with-helper:focus-within .field-helper {
  display: block;
}
.v5-login-body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--primary-darkest);
  background-image: url('../Content/images/login-bg.webp');
  background-size: cover;
}
@media only screen and (max-width: 480px) {
  .v5-login-body {
    overflow: auto;
    justify-content: flex-start;
  }
}
.v5-login-container {
  width: 1000px;
  display: flex;
  margin: 0 auto;
  padding: 10px;
}
@media only screen and (max-width: 480px) {
  .v5-login-container {
    flex-direction: column;
    width: 100%;
  }
}
.v5-login-container a svg {
  transform: translateY(2px);
  margin-right: 5px;
}
.v5-login-container > .v5-login-left {
  margin: 20px 0;
  border-radius: 10px 0 0 10px;
  padding: 80px;
  color: #fff;
  background: var(--primary);
  width: 50%;
}
@media only screen and (max-width: 480px) {
  .v5-login-container > .v5-login-left {
    width: 100%;
    padding: 30px;
    background: transparent;
  }
}
.v5-login-container > .v5-login-left .dark-wc-logo {
  margin-bottom: 40px;
}
@media only screen and (max-width: 480px) {
  .v5-login-container > .v5-login-left .dark-wc-logo {
    width: 100%;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 480px) {
  .v5-login-container > .v5-login-left p {
    display: none;
  }
}
.v5-login-container > .v5-login-left .stats-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  margin-bottom: 40px;
  margin-top: 40px;
}
@media only screen and (max-width: 480px) {
  .v5-login-container > .v5-login-left .stats-grid {
    display: none;
  }
}
.v5-login-container > .v5-login-left .stats-grid > div > div:first-child {
  font-weight: 700;
  font-size: 26px;
}
.v5-login-container > .v5-login-left .stats-grid > div > div:last-child {
  font-size: 14px;
}
.v5-login-container > .v5-login-left a {
  color: var(--secondary);
}
@media only screen and (max-width: 480px) {
  .v5-login-container > .v5-login-left a {
    display: none;
  }
}
.v5-login-container > .v5-login-left a:hover {
  text-decoration: underline;
}
.v5-login-container > .v5-login-right {
  border-radius: 10px;
  background: #fff;
  padding: 60px;
  width: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media only screen and (max-width: 480px) {
  .v5-login-container > .v5-login-right {
    width: 100%;
    padding: 30px;
  }
}
.v5-login-container > .v5-login-right form {
  width: 100%;
}
.v5-login-container > .v5-login-right input {
  height: 68px;
  border-radius: 4px;
  padding: 16px 15px 10px 15px;
  font-size: 16px;
  box-shadow: none;
  background: #fff;
}
.v5-login-container > .v5-login-right .login-header {
  font-size: 16px;
  margin-bottom: 30px;
}
.v5-login-container > .v5-login-right .button {
  background: var(--secondary);
  color: #fff;
  display: block;
  width: 100%;
  margin-bottom: 40px;
}
.v5-login-container > .v5-login-right .button:hover {
  background: var(--secondary-darker);
  color: #fff;
}
.v5-login-container > .v5-login-right a {
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--primary);
}
.v5-login-container > .v5-login-right a:hover {
  text-decoration: underline;
  color: var(--primary-darkest);
}
.v5-login-container > .v5-login-right .copyright-text {
  margin-top: 60px;
  opacity: 0.5;
  align-self: flex-start;
  padding: 0px;
}
.v5-login-container > .v5-login-right .validation-message {
  background: var(--red-fade);
  color: var(--red);
  padding: 20px 20px 16px 20px;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 12px;
}
.grid-card-container {
  padding: 0 20px 20px 20px;
}
.grid-card {
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 3px 20px 0 rgba(34, 34, 34, 0.05);
  display: flex;
  margin-bottom: 10px;
  padding: 20px;
}
.grid-card:hover {
  cursor: pointer;
  box-shadow: 0 5px 10px 0px var(--primary-fade);
}
.grid-card .image-left {
  margin-right: 20px;
}
.grid-card .image-left img {
  height: 68px;
  width: 80px;
  object-fit: contain;
}
.grid-card .icon-left {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.grid-card .icon-left:after {
  content: '';
  background: var(--primary);
  border-radius: 10px;
  width: 5px;
  height: 100%;
  transform: translateX(-17px);
  z-index: 0;
}
.grid-card .icon-left > * {
  z-index: 1;
  height: 30px;
  width: 30px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  padding: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.grid-card .grid-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  flex-grow: 1;
  gap: 10px;
  align-self: flex-start;
}
.grid-card .grid-blocks > div > div:first-child {
  font-size: 10px;
  color: #999;
}
.grid-card .grid-blocks > div > div:last-child {
  color: #000;
  font-size: 12px;
}
.grid-card .grid-blocks > div.title {
  grid-column: 1 / -1;
  color: var(--primary);
  font-weight: 700;
}
.grid-card .values-table {
  margin-left: 20px;
  max-width: 200px;
}
.grid-card .values-table > div {
  border-bottom: 1px solid rgba(224, 224, 224, 0.3);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.grid-card .values-table > div:last-child {
  border-bottom: none;
}
.grid-card .values-table > div > div {
  font-size: 10px;
  padding: 3px 2px 2px 2px;
}
.grid-card .values-table > div > div:first-child {
  color: #999;
}
.grid-card .values-table > div > div:last-child {
  text-align: right;
}
.grid-card:hover > .icon-left:after,
.grid-card:hover > .icon-left > span {
  background: var(--secondary);
}

.grid-documentcard {
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 3px 20px 0 rgba(34, 34, 34, 0.05);
    display: flex;
    margin-bottom: 10px;
    padding: 20px;
}

.grid-documentcard:hover {
    cursor: pointer;
    box-shadow: 0 5px 10px 0px var(--primary-fade);
}

.grid-documentcard .image-left {
    margin-right: 20px;
}

.grid-documentcard .image-left img {
    height: 68px;
    width: 80px;
    object-fit: contain;
}

.grid-documentcard .icon-left {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.grid-documentcard .icon-left:after {
    content: '';
    background: var(--primary);
    border-radius: 10px;
    width: 5px;
    height: 100%;
    transform: translateX(-17px);
    z-index: 0;
}

.grid-documentcard .icon-left > * {
    z-index: 1;
    height: 30px;
    width: 30px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.grid-documentcard:hover > .icon-left:after,
.grid-documentcard:hover > .icon-left > span {
    background: var(--secondary);
}

.tabs {
  border: none;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-left: 12px;
}
.tabs .tab {
  flex-grow: 0;
  width: auto;
  border: none;
  background: #eee;
  border-radius: 4px;
  margin-left: 10px;
  align-items: center;
  display: flex;
  margin-bottom: 10px;
}
.tabs .tab div {
  height: auto;
  padding: 13px 12px 9px 12px;
}
.tabs .tab:hover {
  background: var(--primary-fade2);
  color: var(--primary);
}
.tabs .tab.selected {
  background: var(--secondary);
  cursor: default;
  color: #fff;
}
.tabs .tab.selected div {
  border-bottom: none;
}
.scrollable-content .tabs .tab.selected div {
  color: #fff;
}
.grid-stack-instance-5705 {
  padding: 20px;
}
.flex-header .title {
  padding: 10px;
  margin: 10px 0 5px -1px;
}
.dashboard-padding {
  padding: 20px;
}
.heading {
  font-size: 1.1rem;
  color: var(--primary);
  padding: 20px 20px 20px 0px;
  margin-bottom: 10px;
}
#tabs {
  padding: 20px;
}
.card-container {
  display: flex;
}
.card-container .card {
  background: #fff;
  border-radius: 4px;
  padding: 20px;
  flex-grow: 1;
  box-shadow: 0 3px 20px 0 rgba(34, 34, 34, 0.05);
}
table {
  border: none;
}
.progress-outer {
  display: flex;
  justify-content: space-between;
}
.progress-outer > * {
  width: 40px;
  font-size: 9px;
  font-weight: 600;
}
.progress {
    grid-column: 1 / -1;
    height: 14px;
    background: #ddd;
    display: flex;
    padding: 0 0 0 0 !important;
    margin-bottom: 0;
    border: 4px solid white;
    margin-bottom: 10px;
    position: relative;
    margin-top: 15px;
    margin-bottom: 15px;
}
.progress .good {
  background: var(--green);
  height: 6px;
}
.progress .amber {
    background: var(--yellow2);
    height: 6px;
}
.progress .good .progress-tooltip {
  background: var(--green);
}

.progress .amber .progress-tooltip {
    background: var(--yellow2);
}
.progress .bad {
  background: var(--red);
  height: 6px;
}
.progress .bad .progress-tooltip {
  background: var(--red);
}
.progress .good,
.progress .amber,
.progress .bad {
  position: relative;
  transition: 0.2s all ease-out;
  flex-grow: 0;
  flex-shrink: 0;
}
.progress .good .progress-tooltip,
.progress .amber .progress-tooltip,
.progress .bad .progress-tooltip {
  display: none;
  color: #fff;
  transition: 0.2s all ease-out;
}
.progress .good .progress-tooltip span,
.progress .amber .progress-tooltip span,
.progress .bad .progress-tooltip span {
  display: block;
}
.progress .good .progress-tooltip span:first-child,
.progress .amber .progress-tooltip span:first-child,
.progress .bad .progress-tooltip span:first-child {
  font-size: 0.5rem;
  padding-bottom: 2px;
}
.progress .good .progress-tooltip span:last-child,
.progress .amber .progress-tooltip span:last-child,
.progress .bad .progress-tooltip span:last-child {
  font-size: 0.7rem;
}
.progress .good:hover,
.progress .amber:hover,
.progress .bad:hover {
  cursor: pointer;
  transform: scaleY(1.5);
}
.progress .good:hover .progress-tooltip,
.progress .amber:hover .progress-tooltip,
.progress .bad:hover .progress-tooltip {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0px;
  left: 0px;
  box-shadow: 0 3px 20px 0 rgba(34, 34, 34, 0.05);
  padding: 8px 10px 5px 10px;
  border-radius: 4px;
  transform: scaleY(0.65);
}
.progress .progress-divider {
  height: 20px;
  width: 2px;
  background: black;
  transform: translateY(-7px);
  flex-shrink: 0;
  flex-grow: 0;
}
.progress .progress-divider-total {
  height: 20px;
  width: 3px;
  background: var(--green);
  transform: translateY(-7px);
  flex-shrink: 0;
  flex-grow: 0;
  position: absolute;
}
.progress .progress-divider-exceeded {
  height: 20px;
  width: 3px;
  background: var(--red);
  transform: translateY(-7px);
  flex-shrink: 0;
  flex-grow: 0;
}
.progress .progress-divider-total .progress-tooltip,
.progress .progress-divider-exceeded .progress-tooltip {
  display: none;
  color: #fff;
  transition: 0.2s all ease-out;
}
.progress .progress-divider-total .progress-tooltip span,
.progress .progress-divider-exceeded .progress-tooltip span {
  display: block;
}
.progress .progress-divider-total .progress-tooltip span:first-child,
.progress .progress-divider-exceeded .progress-tooltip span:first-child {
  font-size: 0.5rem;
  padding-bottom: 2px;
}
.progress .progress-divider-total .progress-tooltip span:last-child,
.progress .progress-divider-exceeded .progress-tooltip span:last-child {
  font-size: 0.7rem;
}
.progress .progress-divider-total:hover,
.progress .progress-divider-exceeded:hover {
  cursor: pointer;
  transform: scaleY(1.5);
}
.progress .progress-divider-total:hover .progress-tooltip,
.progress .progress-divider-exceeded:hover .progress-tooltip {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0px;
  left: 0px;
  box-shadow: 0 3px 20px 0 rgba(34, 34, 34, 0.05);
  padding: 8px 10px 5px 10px;
  border-radius: 4px;
  background: #000;
  transform: scaleY(0.65);
}
.r {
  display: flex;
}
.r .block {
  display: flex;
  /*        flex-direction: column;
*/
}
.r .block > label:first-child {
  font-size: 10px;
}
.r .block span.good {
  color: var(--green);
}
.r .block span.bad {
  color: var(--red);
}
.select2.select2-container--default .select2-selection--multiple,
.select2.select2-container--default .select2-selection--multiple,
.select2.select2-container--default .select2-selection--single {
  height: 30px;
  border: 1px solid var(--border);
  border-radius: var(--br);
  font-size: 12px;
}
.select2.select2-container--default .select2-selection--single {
  height: 30px;
}
.select2.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-top: 2px;

}
.select2.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
}
    .select2.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
        z-index: 10;
        border-radius: 100px;
        display: flex;
        align-items: center;
        gap: 10px;
        background: var(--secondary);
        color: #fff;
        font-size: 11px;
        padding: 5px 10px 2px 10px;
        flex-direction: row-reverse;
    }
    }
.select2.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
  color: #067730;
  transform: translateY(-2px);
  margin-right: 5px;
}
.select2-container .select2-dropdown {
  border-color: #e0e0e0;
}
body.dark-mode .select2-container .select2-dropdown {
  background: #282934;
  border-color: #434556;
}
.select2-container .select2-dropdown .select2-results__option--highlighted[aria-selected] {
  background-color: #2274A5;
}
body.dark-mode .select2-container .select2-dropdown .select2-results__option[aria-selected=true] {
  background-color: #333442;
}
.select2.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 10px;
}
.select2.select2-container--default .select2-search--inline .select2-search__field {
  width: calc(100% - 10px) !important;
}

.select2-results__option {
  font-size: 12px;
}
.select2-container .select2-dropdown .select2-results__option--highlighted[aria-selected] {
  background: var(--primary);
}
html .select2-container--default .select2-results__option[aria-selected=true] {
  background: var(--secondary);
  color: #fff;
}

.progress-header {
  margin-bottom: 20px;
  padding: 10px;
}
.progress-header .button {
  margin-right: 10px;
}
.dropzone {
  border: 2px dashed #e0e0e0;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.dropzone input[type="file"] {
  width: 111px;
}
.dropzone input[type="file"]:before {
  content: 'Upload File';
  background: var(--primary);
  border-radius: 4px;
  color: #fff;
  padding: 5px 10px;
  position: absolute;
  cursor: pointer;
}
.custom-file {
  padding-top: 20px;
}
.custom-file input[type="file"] {
  width: 123px;
}
.custom-file input[type="file"]:before {
  content: 'Upload File';
  background: var(--primary);
  border-radius: 4px;
  color: #fff;
  padding: 5px 10px;
  position: absolute;
  cursor: pointer;
}
.custom-file.mandatory input[type="file"]:before {
  content: 'Upload File *'
}
.custom-file label {
  display: none;
}

.clearNotificationsHeader {
  text-align: end;
}
.dropper > .notificationList {
  overflow: scroll;
  max-height: 60vh;
}
.checkbox-container > .checkbox > label {
  max-width: fit-content;
}
.alert-banner {
  text-align: right;
  float: right;
  overflow: visible;
  font-size: 12px;
  color: #282934;
  background: rgba(222, 65, 42, 0.29);
  border: none !important;
  box-shadow: none;
  width: auto;
  margin-bottom: 0px;
}
.buttons-container > .dropdown {
  z-index: 10;
}
.exportBtn > .dropper {
  left: auto !important;
  right: 0px;
}
.dropper > .info {
  font-size: 10px;
  margin-bottom: 5px;
  cursor: auto !important;
}
.dropper > .info:hover {
  background: inherit !important;
}
.button.inline-sort,
.button.button.inline-sort-selected {
  background: var(--bg);
  width: 25px;
  padding: 5px;
  position: absolute;
  top: 12px;
  right: 5px;
}
.button.inline-sort svg,
.button.button.inline-sort-selected svg {
  height: 8px;
}
.button.inline-sort svg .f1,
.button.button.inline-sort-selected svg .f1 {
  fill: #ccc;
}
.button.inline-sort:hover svg .f1,
.button.button.inline-sort-selected:hover svg .f1 {
  fill: var(--secondary);
}
.button.button.inline-sort-selected {
  background: var(--secondary);
}
.button.button.inline-sort-selected svg .f1 {
  fill: #fff;
}
.button.button.inline-sort-selected:hover svg .f1 {
  fill: #fff;
}

table.table tr.nohov:hover {
  background: white;
  cursor: default;
}

.function-select > span[disabled] {
  opacity: 0.5;
}
.autocomplete-container {
  position: relative;
  display: flex;
  align-items: center;
}
.autocomplete-container ul {
    position: absolute;
    top: 30px;
    z-index: 99;
    max-height: 200px;
    overflow: auto;
    background-color: white;
    width: 100%;
    margin-left: 0;
    border: 1px solid lightgray;
    border-radius: 5px;
}
.autocomplete-container ul li {
  padding: 5px;
  min-width: 100px;
}
.autocomplete-container ul li:hover {
  background: #2274A5;
  cursor: pointer;
}
footer > .button {
  margin-right: 2px;
}
.header-name {
  line-height: 15px;
  text-align: start;
}
.header-name > .company-name {
  font-size: 9px;
}
.button.drop.small > .dropper > li {
  min-width: 110px;
}
.callout {
  border-radius: 4px;
  padding: 15px 15px 10px 15px;
  font-size: 14px;
  margin-bottom: 10px;
  margin: 40px;
}
.callout.info {
  background: var(--primary-fade);
  color: var(--primary);
}
.options-1 {
  grid-template-columns: 1fr;
  gap: 1px;
  background: #ccc;
  display: grid;
  font-size: 14px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 4px;
}
.options-1 > div {
  background: #fff;
  padding: 30px;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.options-1 > div p {
  font-size: 14px;
}
.options-1 > div .block {
  width: 100%;
}
.options-1 > div:before {
  content: 'Option 1';
  padding: 5px 10px;
  background: var(--primary-fade2);
  color: var(--primary);
  display: block;
  text-decoration: none !important;
  font-size: 12px;
  border-radius: 100px;
  margin-bottom: 50px;
}
.options-1 > div:nth-child(2):before {
  content: 'Option 2';
  margin-bottom: 20px;
}
.options-2 {
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #ccc;
  display: grid;
  font-size: 14px;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 4px;
}
.options-2 > div {
  background: #fff;
  padding: 30px;
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.options-2 > div p {
  font-size: 14px;
}
.options-2 > div .block {
  width: 100%;
}
.options-2 > div:before {
  content: 'Option 1';
  padding: 5px 10px;
  background: var(--primary-fade2);
  color: var(--primary);
  display: block;
  text-decoration: none !important;
  font-size: 12px;
  border-radius: 100px;
  margin-bottom: 50px;
}
.options-2 > div:nth-child(2):before {
  content: 'Option 2';
  margin-bottom: 20px;
}
.fake-link {
  cursor: pointer;
  font-weight: 700;
}
.fake-link > div {
  text-decoration: underline;
}
.fake-link:before {
  text-decoration: none;
}
.fake-link:hover {
  background: var(--bg);
}
.toast-notifications {
  max-width: 350px;
  min-width: 350px;
  position: absolute;
  height: fit-content;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.alert {
  margin-bottom: 20px;
  margin-right: 20px;
  border-radius: 4px;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: 0.4s SlideLeft ease-out forwards;
  opacity: 0;
  z-index: 1100;
}
.alert > .title {
  padding: 5px;
  color: white;
  font-size: 20px;
}
.alert > .title > .icon-cross {
  float: right;
  font-size: 17px;
  margin-right: 8px;
  margin-top: 4px;
  color: white;
}
.alert > .title > .icon-cross:hover {
  color: var(--primary);
  transform: scale(0.8);
}
.alert > div {
  margin: 20px 20px 0px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.alert > div > .icon-wrapper {
  width: 40px;
  height: 40px;
  background: #18C395;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
}
.alert > div > .icon-wrapper > span {
  padding-top: 8px;
}
.alert > div > .alert-message {
  font-size: 0.75rem;
  margin-top: 10px;
  padding: 10px;
  text-align: center;
}
.alert > .icon-wrapper {
  width: 40px;
  height: 40px;
  background: #18C395;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
}
.alert-red > div > .alert-message > ul {
  margin-left: 0;
}
.alert-red > div > .alert-message > ul > .display {
  border: 1px solid #DA4453;
  padding: 10px 10px 6px 10px;
  width: 100%;
  margin-bottom: 0.2rem;
  display: block;
  background: #F7F8FA;
  box-shadow: inset 0 1px 4px 0 rgba(140, 152, 175, 0.25);
  min-height: 35px;
  font-size: 0.7rem;
  border-radius: 3px;
}
.alert.alert-green {
  border: 4px solid #37BC9B;
}
.alert.alert-green > .title {
  background-color: #37BC9B;
}
.alert.alert-green > div > .icon-wrapper {
  background-color: #37BC9B;
}
.alert.alert-blue {
  border: 4px solid #4A89DC;
}
.alert.alert-blue > .title {
  background-color: #4A89DC;
}
.alert.alert-blue > div > .icon-wrapper {
  background-color: #4A89DC;
}
.alert.alert-yellow {
  border: 4px solid #F6BB42;
}
.alert.alert-yellow > .title {
  background-color: #F6BB42;
}
.alert.alert-yellow > div > .icon-wrapper {
  background-color: #F6BB42;
}
.alert.alert-red {
  border: 4px solid #E9573F;
}
.alert.alert-red > .title {
  background-color: #E9573F;
}
.alert.alert-red > div > .icon-wrapper {
  background-color: #E9573F;
}
.alert.loaded {
  animation: none;
  opacity: 1;
}
.alert.destroyed {
  animation: 0.4s SlideOutRight ease-out backwards;
}
.task-overview-container {
  padding: 20px 20px 50px 20px;
}
.components-reconnect-show,
.components-reconnect-failed,
.components-reconnect-rejected {
  display: none !important;
}
#components-reconnect-modal {
  display: none !important;
}
#components-reconnect-modal.components-reconnect-show,
#components-reconnect-modal.components-reconnect-rejected {
  display: none !important;
}
.flex-header .buttons-container {
  padding-right: 30px;
  box-sizing: border-box;
}

@keyframes SlideLeft {
  0% {
    opacity: 0;
    transform: translateX(30px) scale(0.8);
  }
  80% {
    transform: translateX(-10px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
}
@keyframes SlideDown {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(8%);
  }
  65% {
    transform: translateY(-4%);
  }
  80% {
    transform: translateY(4%);
  }
  95% {
    transform: translateY(-2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes SlideOutRight {
  0% {
    opacity: 1;
    transform: translateX(0px) scale(1);
  }
  80% {
    transform: translateX(10px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateX(30px) scale(0.8);
  }
}
.actions-area .search-helper-wrapper {
  position: relative;
}
.actions-area .search-helper-wrapper svg {
  height: 15px;
  width: 15px;
  margin: 10px 5px 0 10px;
  cursor: pointer;
}
.actions-area .search-helper-wrapper .search-helper {
  background: #eee294;
  border-radius: 4px;
  font-size: 10px;
  padding: 15px;
  position: absolute;
  top: 30px;
  right: 0px;
  display: none;
  width: 200px;
  z-index: 999;
  text-align: left;
}
.actions-area .search-helper-wrapper .search-helper ul {
  margin-top: 5px;
  margin-bottom: 0;
}
.actions-area .search-helper-wrapper .search-helper p {
  font-size: 10px;
  margin-bottom: 5px;
}
.actions-area .search-helper-wrapper .search-helper li {
  font-size: 10px;
  font-weight: 600;
}
.actions-area .search-helper-wrapper:hover .search-helper {
  display: block;
}
body.dark-mode .search-helper-wrapper {
  fill: white;
}
.comment-helper-wrapper {
  position: relative;
}
.comment-helper-wrapper svg {
  height: 15px;
  width: 15px;
  margin: 10px 5px 0 10px;
  cursor: pointer;
}
.comment-helper-wrapper .comment-helper {
  background: #eee294;
  border-radius: 4px;
  font-size: 10px;
  padding: 15px;
  position: absolute;
  top: 30px;
  right: 0px;
  display: none;
  width: 200px;
  z-index: 999;
  text-align: left;
}
.comment-helper-wrapper .comment-helper ul {
  margin-top: 5px;
  margin-bottom: 0;
}
.comment-helper-wrapper .comment-helper p {
  font-size: 10px;
  margin-bottom: 5px;
}
.comment-helper-wrapper .comment-helper li {
  font-size: 10px;
  font-weight: 600;
}
.comment-helper-wrapper:hover .comment-helper {
  display: block;
}
td .preapplication-field .collapsed {
  display: none;
}
.application-field .collapsed {
  display: none;
}
body .jstree-default .jstree-themeicon-custom {
  margin-right: 10px;
}
.questionIcon {
  font-size: 30px;
  color: #FFBF00;
}
.dialogContentContianer {
  overflow: auto;
  text-align: center;
}
.dialog-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}
.description > p {
  font-weight: inherit;
}
td.preapplication-field.collapsed {
  display: none;
}
td.application-field.collapsed {
  display: none;
}
.form-group.grow {
  flex-grow: 1;
}
.button.inline-icon {
  background-color: unset;
  color: var(--primary);
  padding: 0px;
}
.button.inline-icon > span:first-child {
  position: unset;
  transform: unset;
}
.button.inline-icon:hover {
  background-color: var(--primary);
  color: #FFFFFF;
}
.button.inline-icon.selected {
  background-color: var(--primary);
  color: #FFFFFF;
}
.form-group > textarea {
  line-height: 1.5;
}
@keyframes example {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.popout-actions {
  display: flex;
  align-items: center;
  flex-direction: row;
  background: var(--bg);
  padding: 10px;
}
.popout-actions .button {
  line-height: 1rem;
}
.popout-actions textarea {
  margin-bottom: 0;
}
.popout-actions > .form-group {
  padding-right: 10px;
  width: 450px;
}
.popout-actions > div.button.center {
  width: 100%;
  justify-content: center;
}
.popout-actions > .row > .custom-file {
  padding-top: unset;
}
.popout-actions > .row > .custom-file > .custom-file-input {
  width: 100%;
  font-size: 13px;
  height: unset;
}
.popout-actions > .row > .custom-file > .custom-file-input:before {
  width: 100%;
}
.user-stamp > .user-info {
  transform-origin: bottom center;
  animation-name: example;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
}
.user-tag > .user-info {
  transform-origin: bottom center;
  animation-name: example;
  animation-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
}
.documents-container > .grid-card-container {
  display: flex;
  flex-direction: column;
}
.documents-container > .grid-card-container > .grid-card > div:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.documents-container > .grid-card-container > .grid-card > div > .title {
  text-align: start;
  width: 350px;
  font-size: 0.8rem;
  color: var(--primary);
  padding: 0px 5px 0px 5px;
  margin-bottom: unset;
}
.documents-container > .grid-card-container > .grid-card > div > .more-info > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.documents-container > .grid-card-container > .grid-card > div > .more-info > div:nth-of-type(1) {
  margin: 5px 0px 5px 0px;
}
.documents-container > .grid-card-container > .grid-card > div > .more-info > div > span:nth-of-type(1) {
  width: 80px;
  font-size: 0.6rem;
  text-align: right;
}
.documents-container > .grid-card-container > .grid-card > div > .more-info > div > span:nth-of-type(2) {
  margin: 7px 10px 0px 10px;
  font-size: 14px;
}

.documents-container > .grid-card-container > .grid-card > div:nth-of-type(2) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.grid-card-container > .grid-documentcard > div > .title {
    text-align: start;
    width: 350px;
    font-size: 1rem;
    color: var(--primary);
    padding: 0px 5px;
    margin-bottom: unset;
    margin-left: 15px;
}

.grid-card-container > .grid-documentcard > div > .more-info > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.grid-card-container > .grid-documentcard > div > .more-info > div:nth-of-type(1) {
    margin: 5px 0px 5px 0px;
}

.grid-card-container > .grid-documentcard > div > .more-info > div > span:nth-of-type(1) {
    width: 80px;
    font-size: 0.6rem;
    text-align: right;
}

.grid-card-container > .grid-documentcard > div > .more-info > div > span:nth-of-type(2) {
    margin: 7px 10px 0px 10px;
    font-size: 14px;
}

.grid-columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.grid-columns-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.grid-summary {
  border: 1px solid var(--border);
  border-radius: var(--br);
  margin-bottom: 20px;
}
.grid-summary > div {
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.grid-summary > div.single-column {
  grid-template-columns: 1fr;
}
.grid-summary > div:last-child {
  border-bottom: none;
}
.grid-summary > div.signature-row {
  grid-template-columns: none;
  background: var(--yellow);
}
.grid-summary > div.signature-row div {
  display: flex;
  align-items: center;
  line-height: 1.2rem;
}
.grid-summary > div.signature-row div.signed {
  display: grid;
  /*grid-template-columns: 200px 1fr;*/
}
.grid-summary > div.signature-row div.signed img {
  width: 100%;
  height: 75px;
}
.grid-summary > div.signature-row div.signed span {
  display: block;
}
.grid-summary > div.signature-row div.not-signed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
}
.grid-summary > div.signature-row div.not-signed svg {
  margin-right: 10px;
  margin-left: 10px;
}
.grid-summary > div.signature-row div.not-signed svg path {
  fill: var(--primary);
}
.grid-summary > div > div {
  padding: 5px 10px;
  display: flex;
  align-items: center;
}
.grid-summary > div > div:first-child {
  font-size: 10px;
}
.grid-summary > div > div:last-child span {
  font-weight: 700;
  font-size: 12px;
  height: 30px;
  display: flex;
  align-items: center;
}
.grid-summary > div > div:last-child .block,
.grid-summary > div > div:last-child input,
.grid-summary > div > div:last-child select,
.grid-summary > div > div:last-child .select2 {
  width: 100%;
  margin-bottom: 0;
}
.grid-summary > div > div:last-child .block > .selection,
.grid-summary > div > div:last-child input > .selection,
.grid-summary > div > div:last-child select > .selection,
.grid-summary > div > div:last-child .select2 > .selection {
  width: 100%;
}
.grid-summary > div > div:last-child .block > .selection > .select2-selection,
.grid-summary > div > div:last-child input > .selection > .select2-selection,
.grid-summary > div > div:last-child select > .selection > .select2-selection,
.grid-summary > div > div:last-child .select2 > .selection > .select2-selection {
  width: 100%;
}
.grid-summary > div > div:last-child .block > .selection > .select2-selection > .select2-selection__rendered,
.grid-summary > div > div:last-child input > .selection > .select2-selection > .select2-selection__rendered,
.grid-summary > div > div:last-child select > .selection > .select2-selection > .select2-selection__rendered,
.grid-summary > div > div:last-child .select2 > .selection > .select2-selection > .select2-selection__rendered {
  width: 100%;
}
.grid-summary > div > div.mandatory:after {
  content: '*';
  color: #de412a;
}
.idleText > span {
  border-radius: 10px;
  font-size: 17px;
  background-color: #E9573F;
  color: white;
  padding: 9px;
  position: relative;
  top: -4px;
  left: 50%;
  width: 490px;
  display: block;
  text-align: center;
}
.dialog-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}
.dialog-content > .icon-wrapper {
  width: 50px;
  height: 50px;
  background: #18C395;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px;
  margin-bottom: 20px;
}
.dialog-content > .icon-wrapper > span {
  padding-top: 11px;
}
.dialog-content > .icon-wrapper > .icon-help {
  padding-top: 16px;
}
.dialog-content > .icon-wrapper > .icon-cross {
  padding-top: 15px;
}
.dialog-content > .description > p {
  font-weight: inherit;
}
.icon-wrapper.green {
  background-color: #37BC9B;
  color: white;
}
.icon-wrapper.blue {
  background-color: #4A89DC;
  color: white;
}
.icon-wrapper.yellow {
  background-color: #F6BB42;
  color: white;
}
.icon-wrapper.red {
  background-color: #E9573F;
  color: white;
}
table.table th.currency-field {
  text-align: right;
}
.currency input {
  text-align: right;
}
.currency .form-group input {
  text-align: right;
}
.button > .icon-expand.fr {
    position: relative;
}
.bulkActionsBtn {
  margin-left: 5px;
}
.bulkActionsBtn .dropper {
  left: auto !important;
  right: 0px;
}
.action-buttons .button:nth-child(1) {
  margin-right: 5px;
}
.action-buttons .button {
  font-size: 0.7rem;
}
.info-links > a {
  text-decoration: underline !important;
}
.xml-textarea > textarea {
  height: 400px;
}
.input-filter {
  background-color: white;
}
.inline-filter {
  width: 95%;
  margin: 10px;
  justify-content: center;
}
.processingActions {
  display: flex;
  justify-content: flex-end;
}
.processingActions > span > .dropper {
  width: 300px;
  background-color: #E2E3E9;
}
.processingActions > span > .dropper > div {
  margin-bottom: 5px;
}
.form-control:not([readonly]) {
  background: white;
}
td > .form-group > .form-control {
  background: #ffff;
}
.noresults {
  padding: 20px;
}
.contraChargeViewBtn {
  display: inline-block;
  color: white;
  background-color: #1e396b;
  padding: 2px 3px;
  cursor: pointer;
  height: 18px;
  border-radius: 7px;
  position: relative;
  top: 3px;
  font-size: 14px;
}
.contraChargeViewBtn:hover {
  background-color: #7f99c9;
}
.file-upload > div > div > input.small-custom-file-input:before {
  width: 230px;
  text-align: center;
}
.finalAccStatusWrapper .tblGap {
  padding: 10px;
}
.finalAccStatusWrapper {
  display: flex;
  flex-direction: row;
}
.finalAccStatusWrapper > table {
  margin: 10px;
}
.finalAccStatusWrapper tbody {
  display: table;
  width: 100%;
}
.finalAccStatusWrapper tr {
  vertical-align: top;
}
.finalAccStatusWrapper th {
  text-align: center;
  background-color: #e4f3ff;
  font-size: 13px;
  font-weight: 600;
}
.finalAccStatusWrapper td {
  text-align: end;
  font-size: 12px;
  font-weight: 400;
  padding: 5px;
}
.finalAccStatusWrapper th > span {
  vertical-align: sub;
}
.finalAccStatusWrapper td > input,
.finalAccStatusWrapper td > .display {
  margin-bottom: 0;
}
.finalAccStatusWrapper .boldOrange {
  font-weight: bold;
  color: #ef511f;
}
input.no-spin-button[type=number]::-webkit-outer-spin-button,
input.no-spin-button[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input.no-spin-button[type=number] {
  -moz-appearance: textfield;
}
#task-lines-table td.collapsed {
  display: none;
}
#task-lines-table .currency {
  text-align: right;
}
#ValSchedDialogWrapper {
  display: block;
  position: fixed;
  top: 10%;
  z-index: 1;
  background-color: white;
  border: black 1px solid;
  border-radius: 10px;
  box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.2);
  max-width: 80%;
}
#projectValuationScheduleManagement {
    margin-top: 18px;
}
#valSchedWrapperSaveBtn {
    position: absolute;
    right: auto;
    left: 10px;
    font-weight: 200;
}
#valSchedWrapperCloseBtn {
  position: absolute;
  left: auto;
  right: 20px;
  top: 10px;
  font-weight: 200;
}
#CreateValuationScheduleDialog {
  padding-top: 10px;
  max-height: 700px;
  overflow-y: scroll;
}
body.dark-mode .loading div {
  border-color: white;
}
.advert {
  position: fixed;
  top: 0;
  display: flex;
  padding: 10px;
  background-color: #ed1e88;
  font-family: 'Biryani', sans-serif;
  width: 100%;
  color: white;
  align-items: center;
  justify-content: space-evenly;
  font-weight: normal;
  font-size: 1rem;
}
.advert-title {
  font-size: 25px;
  font-weight: 700;
  margin-right: 10px;
}
.trial-button {
  background-color: white;
  color: #ed1e88;
  padding: 5px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 14px;
  font-weight: 900;
  border-radius: 9px;
  cursor: pointer;
}
.hhlogo {
  width: 200px;
}
.flex-header {
  padding-left: 23px;
}
form > .tabs {
    padding-left: 23px;
}
.tabs .tab.selected {
  background: var(--primary);
}
.tabs .tab.selected > div {
    color: white;
}
.tabs .tab {
    background: transparent;
    box-shadow: 0px 0px 1px 1px hsl(218.96deg 56.2% 26.86% / 25%);
    height: 30px;
    display: flex;
    align-items: center;
}
.tabs .tab > div {
    font-weight: 600;
    font-size: 0.7rem;
    color: #3f5887;
}
table.table-grid td.d input[type="text"] {
  background: #fff;
}
table.table-grid td.d input[type="number"] {
  background: #fff;
}
table.table-grid td.d select {
    background: #fff;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
    background-position: 100% center;
    background-repeat: no-repeat;
}

table.table-grid td.d textarea {
  background: #fff;
}
.profile-img.big {
  border: none;
}
.display {
  padding: 7px 10px 3px 10px;
}
.collapsable-grid-header {
  /*background: var(--bg);*/
  border-radius: 6px;
  padding-top: 11px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  /*border: 1px solid var(--border);*/
}
.collapsable-grid-header .line {
  display: none;
}
.collapsable-grid-header:hover {
  color: var(--secondary);
}
.dropdown-content button {
  background: #fff;
  color: var(--primary);
}
.dropdown-content .button {
  background: #fff;
  color: var(--primary);
}
.dropdown-content span[class^="icon-"] {
  color: var(--primary);
}
.button.secondary.selected {
  background: var(--secondary);
}
.button.secondary {
    color: white;
    background: #07b7da !important;
}
.button.secondary:hover {
    background: #07a6c5;
}
.button.secondary .dropdown-content {
  border-top-color: var(--secondary);
}
input[type="submit"].button.secondary {
  color: var(--secondary);
}
input[type="submit"].button.secondary:hover {
  background: var(--secondary);
}
input[type="submit"].button.secondary .dropdown-content {
  border-top-color: var(--secondary);
}
input[type="submit"].button.secondary.selected {
  background: var(--secondary);
}
.button.secondary.active {
  background: var(--secondary);
}
input[type="submit"].button.secondary.active {
  background: var(--secondary);
}
.button.secondary.dropdown:after {
  border-color: white transparent transparent transparent;
  transform: translateY(-3px);
}
input[type="submit"].button.secondary.dropdown:after {
  border-color: var(--secondary) transparent transparent transparent;
  transform: translateY(-3px);
}

.collapsable-grid-header + div {
    border-left: solid 1px #e2e3e9;
    display: flex;
    margin-left: 35px;
    margin-bottom: 15px;
}

.vertical-line {
    border-left: solid 1px #e2e3e9;
    display: flex;
    margin-left: 35px;
    margin-bottom: 15px;
}

.vertical-line-content {
    margin: 0.9375rem;
}

.icon-highlight {
    background-color: #41acb9 !important;
    color: white !important;
    padding: 5px !important;
    border-radius: 15px !important;
}

.btn-right {
    float: right;
}

#financialPeriodEndDates {
    margin-left: 15px;
    margin-top: 20px;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="color"]:focus,
textarea:focus {
    border-color: #07b7da;
    background: white;
}
body.dark-mode input[type="text"]:focus,
body.dark-mode input[type="password"]:focus,
body.dark-mode input[type="date"]:focus,
body.dark-mode input[type="datetime"]:focus,
body.dark-mode input[type="datetime-local"]:focus,
body.dark-mode input[type="month"]:focus,
body.dark-mode input[type="week"]:focus,
body.dark-mode input[type="email"]:focus,
body.dark-mode input[type="number"]:focus,
body.dark-mode input[type="search"]:focus,
body.dark-mode input[type="tel"]:focus,
body.dark-mode input[type="time"]:focus,
body.dark-mode input[type="url"]:focus,
body.dark-mode input[type="color"]:focus,
body.dark-mode textarea:focus {
    border-color: #07b7da;
}

.form-control:focus,
input:focus,
textarea:focus
{
    border-color: #07b7da !important;
    background: white;
}

.tab ~ .tab {
    margin-left: 10px;
}

.primaryHeaderBlock {
    display: flex;
    background: #1e396b;
    font-weight: bold;
    color: white;
    padding: 10px;
    align-items: center;
    justify-content: center;
}

.non-collapsable-subheader {
    margin: 20px 0 0 20px;
    color: #1e396b;
    font-size: 16px;
}
body.dark-mode .non-collapsable-subheader {
    color: #41acb9;
}
table.field-grid-padding tr {
    background-color: white;
}
body.dark-mode table.field-grid-padding tr {
    background-color: transparent;
}
table .field-grid-padding thead tr th {
    padding: 5px;
}

table.field-grid-padding td {
    padding: 2px 5px;
}
.hhlogo {
    width: 200px;
}

.flex-r {
    display: flex;
}

@media only screen and (max-width: 480px) {
    .dialog {
        min-width: unset;
    }
}

#ReverseVATMessage {
    text-align: end;
}

.total input {
    background-color: var(--primary-fade2) !important;
}
body.dark-mode .total input {
    background-color: #525b70 !important;
}

.input-small-margins td input {
    margin-bottom: 5px;
}

table.tr-rows-15 tr td {
    width: 15%;
}

a.link:hover,
.title > a:hover {
    color: var(--secondary);
}

textarea.textAreaV2Style {
    border: 1px solid rgba(140, 152, 175, 0.4) !important;
    background-color: white !important;
}

.approvals-actions:hover {
    background: var(--secondary-darker);
}
.approvals-actions {
    background: var(--secondary);
}
.approvals-actions > .dropper {
    padding: 5px;
    gap: 2px;
    width: 200px;
    align-content: stretch;
    justify-content: flex-start;
    align-items: stretch;
}

.approvals-actions > .dropper > .button {
    justify-content: space-between;
}

.table-width-50 > tbody > tr > td {
    width: 50%;
}

.table-header-highlight {
    background-color: lightsteelblue;
}

.table-data-highlight {
    background-color: lightyellow;
}

table.table-grid td.d input[type="text"][readonly],
table.table-grid td.d input[type="number"][readonly],
table.table-grid td.d select[readonly],
table.table-grid td.d input[type="text"][disabled],
table.table-grid td.d input[type="number"][disabled],
table.table-grid td.d select[disabled] {
    background-color: var(--primary-fade);
    pointer-events: none;
}

table.table-grid td.d textarea[disabled] {
    background-color: var(--primary-fade);
}

.dropdown-content .button:hover {
    background: var(--text-primary-fade);
}

.button.btn-green-hover:hover {
    background: #41ACB9;
    color: #fff
}

.button.btn-green-hover:hover > span {
    color: #fff;
}

.button.btn-red-hover:hover {
    background: #ff9f9f;
}

    .button.btn-red-hover:hover > .icon-cross {
        color: #fff;
    }

body.dark-mode .button.btn-green-hover:hover {
    background: #1f7c2f;
}
body.dark-mode .button.btn-red-hover:hover {
    background: #782424;
}

.checkboxWrapper {
    display: inline-flex;
    flex-direction: row-reverse;
    width: 100%;
    align-items: baseline;
}

.saturatedBlue {
    background-color: #c1daf1 !important;
}

.saturatedBlueMid {
    background-color: #d5ecff !important;
}

.taskline > .saturatedBlueLight {
    background-color: #ebf8ff !important;
}

.taskline.selected > .saturatedBlueLight
{
    background-color: var(--secondary-fade1) !important;
}

.outstanding-taskline > .saturatedBlueLight {
    background-color: #ebf8ff !important;
}

.outstanding-taskline.selected > .saturatedBlueLight
{
    background-color: var(--secondary-fade1) !important;
}

.padding-5-10 {
    padding: 5px 10px !important;
}

table.table.compact-table thead .tasksTbl th {
    border-bottom: white 2px solid;
}

.flexLabelAbove {
    flex-direction: column;
}
.flexLabelBelow {
    flex-direction: column-reverse;
}
.flexLabelLeft {
    flex-direction: row;
}
.flexLabelRight {
    flex-direction: row-reverse;
}

label > .mandatory {
    color: red;
}

.reviewVariationSignature > div > img {
    width: 150px;
    height: 75px;
}

@media screen and (max-width: 1550px) {
    .grid-blocks.grid-afp {
        grid-template-columns: unset;
    }
}

a > .paymentCertRefLink {
    color: #003aa3;
    pointer-events: none;
}


.button.dropdown:not(:has( .dropdown-content .button)) {
    display: none;
}

.grid-card-item {
    display: flex;
    align-items: center;
}

.grid-card-item > div:nth-child(1) {
    flex-grow: 1;
}

.grid-card-item .bulk-select {
    background: #fff;
    height: -webkit-fill-available;
    display: flex;
    padding: 10px;
    margin-bottom: 10px;
}

    .grid-card-item .bulk-selectall {
        background: #fff;
        height: -webkit-fill-available;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 10px;
        font-size: 12px;
        font-weight: 200;
    }