.page {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

body {
  font-family: Noto Sans JP, sans-serif;
  line-height: 1.15rem;
}

.home {
  margin: 0 50px;
}
.home p,
.home .content {
  font-size: 1.2em;
}

label {
  margin-bottom: 0px;
}

a, .btn-link {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.button__label--overflow {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: block;
  text-overflow: ellipsis;
  text-align: left;
}

.empty-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.centered-loader {
  display: flex;
  width: 100%;
  /*max height minus the top app bar */
  height: calc(100vh - 64px);
  align-items: center;
  justify-content: center;
}

.top-loader {
  display: flex;
  width: 100%;
  /*max height minus the top app bar */
  height: calc(100vh - 64px);
  align-items: start;
  justify-content: center;
}

.centered-loader--dialog {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.dialog-container {
  padding: 8px;
  width: 600px;
  border-radius: 4px;
}

.dialog__text-field {
  margin-bottom: 24px;
}

.cancel_btn {
  color: #006ebf;
}

.cancel_btn:hover {
  background-color: #f5f9fc;
}

.project-dashboard {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  padding: 0 0px;
}

.project-dashboard__landing-image-container {
  max-width: 748px;
  margin: auto;
}

.project-dashboard__landing-image {
  width: 100%;
  height: auto;
}

.project-dashboard__header {
  display: flex;
  justify-content: flex-end;
  padding-top: 24px;
  margin-bottom: 4px;
}

.dashboard {
  flex-direction: column;
  background: #fff;
}

.controller-button__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  background: #fff;
  border: 1px solid var(--mud-palette-lines-default);
  align-items: center;
}

.project-tile {
  display: flex;
  align-items: flex-start;
  flex-direction: row !important;
  margin-bottom: 24px;
  height: 280px;
}

.project-tile-info {
  border-right: 1px solid #d1d1d1;
  height: 100%;
  width: 304px;
  min-width: 304px;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  padding: 16px;
  justify-content: space-between;
}

.project-tile-info__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 2.25;
}

.project-details_flex {
  height: 100%;
  display: flex;
  width: 304px;
  min-width: 304px;
  flex-direction: column;
  justify-content: center;
}

.expansion_customer-text {
  align-items: center;
  border-radius: 4px;
}

.expansion_panel {
  background-color: transparent;
  border: none !important;
}

.mud-expand-panel:last-child {
  border-bottom: none !important;
}

.hide_show-text {
  font-size: 14px;
}

.project-tile-info__customer-name {
  margin: 0;
  margin-left: 12px;
  text-overflow: ellipsis;
  font-size: 1.25rem;
  line-height: 1.5rem;
  letter-spacing: 0.012em;
  text-decoration: inherit;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  overflow: hidden;
  width: 250px;
}

.project-tile-info__project-name {
  font-weight: 600;
  margin: 0 8px;
  text-overflow: ellipsis;
  text-wrap: none;
}

.project-tile-info__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-wrap: none;
  /*display: flex;*/
}

.project-tile-info__value {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 8px;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 230px;
}

.project-tile-menu {
  margin: 8px;
}

.verification-summary {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 73%;
  height: 100%;
  padding: 24px;
  padding-right: 0px;
}
.verification-summary.verification-summary--centered {
  justify-content: center;
}

.verification-summary-item {
  display: flex;
  flex-direction: column;
  padding: 8px;
  margin: 0 8px;
  width: 176px;
  height: 100%;
  border-radius: 4px;
  min-height: 200px;
  overflow: auto;
}

.top_border-light_blue {
  border-top: 8px solid #1778EF;
}

.top_border-dark_blue {
  border-top: 8px solid #006ebf;
}

.top_border-sky_blue {
  border-top: 8px solid #0498BA;
}

.top_border-black {
  border-top: 8px solid #242630;
}

.top_border-orange {
  border-top: 8px solid #FDBC38;
}

.top_border-green {
  border-top: 8px solid #57CA75;
}

.top_border-default {
  border-top: 1px solid;
}

.status_content {
  display: flex;
  flex-direction: row;
}

.status_content_lable {
  font-weight: normal !important;
}

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

.grid-table > span {
  padding: 4px;
}

.verification-summary-item__header {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 16px;
}

.verification-content {
  margin-top: 8px;
  font-weight: 600;
}

.verification-content__label {
  font-weight: 600;
  display: block;
  font-size: 0.75rem;
}

.verification-content__label > * {
  font-weight: 600;
  display: block;
  font-size: 0.75rem;
}

.circularLoader {
  position: absolute;
  top: 50%;
  left: 50%;
}

.branch-select {
  display: flex;
  margin-right: 10px;
  margin-top: -16px;
}

.branch-select__selector {
  width: 15rem;
}

.uat-select > .mud-input-control-input-container > .mud-select-input > .mud-input-slot {
  color: #fff;
}

.branch-select__text {
  margin-top: 20px;
  margin-right: 10px;
}

.mud-select-input {
  text-overflow: ellipsis !important;
}

.status-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.timeline_status-icon {
  display: flex;
}

.summary-item {
  height: 90%;
}

.freeze-tile {
  margin-bottom: 10px;
  height: 240px;
}

.uat-label {
  color: #fff;
  padding-left: 5px;
  padding-top: 20px;
  display: flex;
  font-size: 1rem;
}

.link-icon {
  color: #fff;
}

.link-position {
  margin-right: 40px;
}

.margin-top_emptylist {
  margin-top: 250px;
}

.rightalignment {
  float: right;
}

.search-container {
  padding: 22px 20px 4px 2px;
  display: flex;
  border-bottom: 1px solid #D1D1D1;
  width: 100%;
}

.search-icon {
  margin-top: 2px;
  color: #D1D1D1;
}

.search-input {
  border: none;
  margin-left: 7px;
  color: #000a;
  width: 100%;
}

.search-input:focus-visible {
  border: none;
  outline: none !important;
}

.customer-hide {
  display: flex;
  margin-bottom: 15px;
}

.project-span {
  display: none;
  white-space: break-spaces;
}

.link-container {
  margin-bottom: 5px;
  background: #00000005;
}

.link-container .mud-nav-link:hover {
  background-color: #00AAFF0F;
}

.link-container .mud-nav-link:hover .project-span {
  display: block;
}

div.panel {
  margin-top: calc(1% - 0px);
  line-height: 20px;
  letter-spacing: 0.36px;
  text-align: left;
}

details {
  display: block;
}

details div.content {
  padding: 0px 24px 0px 24px;
}

details[open] > summary:first-of-type {
  list-style-type: none;
  list-style-image: url("../assets/expand.svg");
  box-shadow: none;
}

details > summary:first-of-type {
  list-style-type: none;
  list-style-image: url("../assets/collapse.svg");
  box-shadow: 0px 1px 0px 0px #00000033;
}

summary {
  outline: none;
  cursor: pointer;
  padding: 6px 24px;
  position: relative;
}

summary:hover {
  background: #eeeeee;
}

details[open] summary:hover {
  background: none;
}

summary::-webkit-details-marker {
  display: none;
}

.customer-avatar {
  display: inline-flex !important;
  margin-left: 10px;
  margin-right: 10px;
}

.project-content {
  margin-bottom: 15px;
  padding: 10px 10px 0px 10px;
  box-shadow: 0px 1px 3px 2px #00000033;
  border-radius: 4px 4px 0px 0px;
}

.project-details {
  gap: 16px;
  border-bottom: 1px solid #D1D1D1;
}

.project-footer {
  padding: 9px 0px 9px 0px;
}

.customer-name-avatar {
  display: inline-flex !important;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.13px;
  color: #000000DE;
}

.project-name-contract {
  display: inline-flex !important;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.24px;
}

.project-name-contract:hover {
  cursor: pointer;
}

.pipe {
  display: inline-flex !important;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.24px;
}

.project-status {
  padding: 5px 10px 5px 10px;
  border-radius: 50px;
  gap: 6px;
  width: max-content;
  letter-spacing: 0.25px;
}

.project-timeline {
  padding: 5px 10px 3px 10px;
  border-radius: 50px;
  gap: 8px;
  width: max-content;
  letter-spacing: 0.25px;
}

.project-timeline-span {
  vertical-align: text-bottom;
  padding-left: 3px;
}

.punch-list-link {
  color: #0041B3;
  margin-right: 30px;
}

.notes-link {
  color: #0041B3;
  margin-right: 30px;
}

.more-link {
  float: right;
  color: #0041B3;
  margin-right: 20px;
}

.footer-icons {
  fill: #0041B3;
  margin-right: 5px;
}

.project-team-icon {
  fill: #0061D2;
  margin-right: 5px;
}

.summary-container {
  padding-bottom: 5px;
  display: none;
}

.summary-tile {
  height: 130px;
  width: 23%;
  display: inline-flex;
  padding: 8px 0px 8px 0px;
  border-radius: 8px;
  gap: 8px;
  box-shadow: 0px 0px 4px 1px #00000040;
  margin-left: 0.5%;
  margin-right: 0.5%;
  background: #00000005;
  margin-top: 12px;
}

.summary-tile:last-child {
  width: 26%;
  margin-right: auto;
}

.project-team-link * span {
  color: #006ebf;
}

.project-team-link button {
  min-width: 5px;
}

.project-team-link button:hover {
  background-color: #ffffff !important;
}

.project-team-name {
  padding: 3px 10px 3px 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0.36px;
  text-align: left;
}

.status-panel {
  width: 100%;
  padding: 0px 16px 0px 16px;
  gap: 8px;
}

.status-header {
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  color: #000000;
  text-decoration: underline;
}

.status-items {
  margin-top: 10px;
  overflow-y: scroll;
  height: 83px;
}

.status-item {
  width: 49%;
  display: inline-table;
  padding: 5px 0 5px 0;
}

.status-label {
  color: #000000AD;
  display: block;
}

.status-value {
  color: #000000DE;
  display: block;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.16px;
  text-align: left;
}

.table-column {
  display: inline-table;
  width: 18%;
  vertical-align: top;
  padding: 0 7px 0 7px;
}

.property-name {
  padding-top: 8px;
  color: #000000AD;
  display: block;
}

.property-value {
  display: block;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.16px;
  padding-bottom: 8px;
  color: #000000DE;
  word-break: break-word;
}

.auto-width {
  width: auto;
}

.sort-container {
  display: flex;
  justify-content: space-between;
}

.sort-option {
  display: flex;
}

.sort-option > p {
  display: flex;
  align-self: self-end;
  padding: 10px 10px;
}

.project-button {
  right: 40px;
  position: absolute;
}

.collapse-expand {
  position: absolute;
  right: 40px;
  top: 152px;
}

.option-width {
  margin-right: 10px !important;
  margin-top: 0px !important;
}

.option-width > .mud-input-control-input-container > .mud-input-outlined > .mud-input-slot.mud-input-root-outlined {
  background: #fff;
  padding: 10px !important;
}

.proj-container {
  display: flex;
  align-items: end;
}

.expand-container {
  display: flex;
  margin: 19px;
}

.clear-button {
  margin-right: 10%;
  margin-top: 10px;
  align-self: flex-end;
}

.sort--width {
  display: flex;
  align-self: end;
}

.sort--width > .mud-input-control-input-container > .mud-input-outlined {
  width: 192px !important;
}

.status-width > .mud-input-control-input-container > .mud-input-outlined {
  width: 130px !important;
}

.timeline-width > .mud-input-control-input-container > .mud-input-outlined {
  width: 167px !important;
}

.select-list-items > .mud-list-item-text > .mud-typography-body1 {
  font-size: 14px;
}

.button-text {
  text-transform: none !important;
}

.disabled-link {
  pointer-events: none;
}

.hand-cursor {
  cursor: pointer;
}

.chip-container {
  padding: 5px 10px 2px 10px;
  margin-right: 2px;
  border-radius: 50px;
  gap: 8px;
  width: max-content;
  letter-spacing: 0.25px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.chip-content {
  vertical-align: text-bottom;
  padding-left: 3px;
}

.cutomer-container {
  height: calc(97vh - 164px);
  overflow: auto;
}

.toggle input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}

.Manual-Changed {
  cursor: pointer;
  text-indent: -9999px;
  width: 30px;
  height: 12px;
  background: grey;
  display: block;
  border-radius: 100px;
  position: relative;
}

.toggle input[type=checkbox]:checked + .Manual-Changed {
  background: #7db4dc;
}

.toggle input[type=checkbox]:checked + .Manual-Changed:after {
  left: calc(100% - 0px);
  transform: translateX(-100%);
  background: #006ebf;
}

.Manual-Changed:active:after {
  width: 2px;
}

.manual-override {
  font-size: 7px;
  text-transform: initial;
}

.Manual-Changed:after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0px;
  width: 17px;
  height: 17px;
  background: #e0e0e0;
  border-radius: 90px;
  transition: 0.3s;
}

.pagination {
  margin: 10px;
}

.attachmentIconTag {
  display: inline-flex;
  position: relative;
  top: 4px;
}

.controller-data-header__title {
  font-weight: 400;
  font-size: 16px;
  display: flex;
  padding-top: 3px;
}

.controller-data-header__subtitle {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 7px;
  display: flex;
  padding-top: 2px;
}

.controller-data-header {
  padding: 8px;
  background-color: #f1f2f3;
}

.button-alignment {
  text-align: left;
}

.button-label {
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 50px;
  display: block;
  overflow: hidden;
}

.note_chip_text {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  display: inline-flex;
  width: 64px;
}

.mud-table-container {
  overflow-y: visible !important;
}

.controller_verification-summary {
  display: flex;
  justify-content: flex-start;
  height: 100%;
  padding: 24px;
  padding-right: 0px;
  width: 80%;
}
.controller_verification-summary.verification-summary--centered {
  justify-content: center;
}

.verification-summary-checkbox {
  border-right: 1px solid #d1d1d1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.verification_summary-checkbox-header {
  width: 100%;
  display: flex;
  padding: 10px;
  font-weight: bold;
}

.verification_summary-checkbox-details {
  overflow: auto;
}

.controller_header {
  display: flex;
  flex-direction: row;
}

.controller_address {
  background-color: gainsboro;
  padding: 2px 7px;
  border-radius: 4px;
  width: 35px;
  text-align: center;
  height: 22px;
}

.controller_header__title {
  font-weight: 600;
}

.mud-input {
  font-size: 14px !important;
}

.controller_table__header {
  font-size: 14px;
}

.trunkMenu {
  display: flex;
}

.mud-expand-panel .mud-expand-panel-header > div > div .trunkMenuExpended {
  float: right;
  display: flex;
}

.adjustposition {
  position: relative;
  left: 10px;
}

.edit-menu {
  position: relative;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 60vh;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  color: #ffffffff;
  padding: 4px 8px;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4em;
  width: max-content;
  background-color: #616161;
  border-radius: 2px;
  position: absolute;
  z-index: 1600;
  /*visibility: hidden;*/
  opacity: 0;
  transition: opacity 0.2s;
}

.tooltip-top {
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
  /*transform: translate(-50%,calc(-100% - 10px));*/
}

.sort-popover {
  display: flex;
  flex-direction: column;
  align-items: self-start;
}

.sort-divider {
  padding: 10px 0px;
}

.controller-container {
  padding: 0px 10px;
  background: #fff;
}

.completed-icons {
  fill: #27BFFF;
  padding-top: 2px;
  margin: 1px 7px;
}

.controller-content {
  margin: 10px 10px 0px 10px;
  padding: 10px 10px 0px 10px;
  box-shadow: 0px 1px 3px 2px #00000033;
  border-radius: 4px 4px 0px 0px;
}

.controller-header {
  display: flex;
  padding-bottom: 8px;
  justify-content: space-between;
}

.completed-count {
  display: flex;
  padding-top: 3px;
  float: right;
}

.completed-section {
  display: flex;
  background: #DEF5FF;
  border-radius: 50px;
  padding: 0px 16px 0px 0px;
  margin-right: 45px;
  height: 25px;
}

.controller-title {
  display: flex;
  flex-direction: column;
}

.title-padding {
  padding-left: 35px;
  width: 82vh;
}

.footer-padding {
  padding-bottom: 13px;
}

.high-icons {
  fill: #b30021;
  margin-right: 7px;
}

.low-icons {
  fill: #0085F8;
  margin-right: 7px;
}

.issue-cont {
  /* margin-left: 200px;*/
  display: flex;
  font-size: 13px;
  flex-direction: column;
}

.span-priority {
  padding-bottom: 2px;
}

.svg-cont {
  display: flex;
  margin-right: 12px;
  padding: 4px 5px;
  border-radius: 50px;
}

.high-color {
  background: #f6e0e4;
  color: #b30021;
}

.low-color {
  background: #def5ff;
  color: #0041b3;
}

.device-icons {
  fill: #27bfff;
  white-space: nowrap;
}

.controller-fliters {
  padding: 16px 10px 6px 10px;
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
}

.controller-view {
  display: flex;
  align-items: center;
}

.controller-button {
  padding: 0px !important;
}

.supervisory-view {
  margin-left: 10px;
  background: #DEF5FF;
  border-radius: 50px;
  padding: 7px;
}

.network-filter-container {
  display: flex;
  justify-content: space-between;
  padding-left: 10px;
  height: 52px;
}

.controller-add {
  margin-left: 20px;
  margin-right: 8px;
}

.back-icon {
  fill: #7c7c7d;
}

.cell-padding-6px {
  padding: 6px !important;
}

.summary-div {
  width: 100%;
  padding: 15px;
  padding-top: 0px;
  line-height: 20px;
  letter-spacing: 0.36px;
  text-align: left;
  padding-bottom: 5px;
  border-bottom: 2px solid #dedfe0;
}

.label-16px {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.16px;
  color: #000000DE;
}

.property-name {
  display: block;
  color: #000000AD;
}

.engine-name {
  display: block;
  font-weight: 600;
}

.r1-div {
  padding-top: 5px;
  display: block;
  color: #000000DE;
}

.r1-cell {
  float: left;
  padding-bottom: 10px;
}

.r2-div {
  width: 100%;
  display: flex;
}

.r2-cell {
  width: 17%;
}

.r3-div {
  display: flex;
  padding-bottom: 8px;
}

.r3-cell2 {
  margin-left: 30px;
}

.r3-cell3 {
  margin-left: 25px;
  margin-top: 4px;
}

.chip-div {
  display: inline-flex;
  gap: 5px;
}

.status-select {
  padding-right: 0px;
  display: block;
  margin-top: -23px;
  width: 110px;
}

.status-select > .mud-select {
  width: inherit;
}

.project-team-span {
  color: #0061D2;
  margin-top: -3px;
}

.fs-16px {
  font-size: 16px;
}

.fs-14px {
  font-size: 14px;
}

.fs-8px {
  font-size: 8px;
}

.hide {
  display: none;
}

.controller-pagination {
  margin: 10px;
}

.punchlist-header {
  display: flex;
  padding-bottom: 8px;
}

.manual-override {
  font-size: 7px;
  text-transform: initial;
}

.display-order {
  flex-direction: column;
}

.network-footer {
  border-top: 1px solid #dedfe0;
}

.network-cont {
  padding-bottom: 10px;
}

.error-indicator {
  position: relative;
  padding: 0px 5px;
  bottom: 3px;
}

.footer-error-indicator {
  position: relative;
  top: 5px;
}

.issuesCommon-attachmentIcon {
  background: url("/assets/Attachment.svg") center no-repeat;
}

.attachmentdiv {
  position: relative;
  top: 4px;
  right: 0px;
}

.disable-rollback-progress {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.contollerwork-flow-left-margin {
  margin-right: 20px;
}

.issuesCommon-attachmentIcon-controller {
  background: url("/assets/Attachment.svg") center no-repeat;
  margin-left: -25px;
}

.controller-fliters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.controller-fliters .controller-view {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.controller-fliters .controller-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contollerwork-flow-left-margin {
  margin-right: 20px;
}

.issuesCommon-attachmentIcon-controller {
  background: url("/assets/Attachment.svg") center no-repeat;
  margin-left: -25px;
}

.view-header {
  line-height: 70px;
}

.view-panel {
  display: flex;
  width: 100%;
  padding: 0px 16px 0px 16px;
  gap: 8px;
  height: 62px;
}

.add-filters {
  width: 30% !important;
  margin-top: 14px;
}

.view-items {
  margin-top: 18px;
  height: inherit;
}

.view-item {
  display: inline-table;
  margin-right: 10px;
  border-radius: 50px;
  width: max-content;
  letter-spacing: 0.25px;
  height: inherit;
  align-items: center;
}

.complete-item {
  display: inline-table;
  padding: 5px 0 5px 0;
  position: relative;
  bottom: 4px;
}

.completion-text {
  font-size: 14px;
}

.content-view {
  display: flex;
}

.add-punchlist-btn {
  margin: 19px 80px 0 0;
}

.open-close-btn {
  /* padding: 0 10px 0 10px;*/
  border-radius: 50px;
  gap: 6px;
  width: max-content;
  letter-spacing: 0.25px;
  background: #DEF5FF;
}

.view-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.filter-sorting {
  display: flex;
  margin: 28px 0 34px 0;
}

.search-trunk {
  width: 79%;
}

.network-view {
  margin: 29px 0 13px 0px;
}

.engine-header {
  display: flex;
}

.engine-value {
  margin: 6px 0 0 0;
  display: flex;
}

.engine-view {
  width: 20%;
}

.font-16 {
  font-size: 16px;
}

.font-14 {
  font-size: 14px;
}

.trunk-name {
  width: 20%;
}

.priority-value {
  display: flex;
  /* margin:-9px;*/
}

.flag-icon {
  margin: 0;
}

.priority-icon {
  display: flex;
  border: 1px solid;
  border-radius: 40px;
  margin: 0px 5px 0px 0px;
  padding: 5px;
}

.color-high {
  background: #eccbcb;
}

.color-low {
  background: #09e2ff;
}

.issue-footer {
  padding: 5px 0px 27px 0px;
}

.issue-more-link {
  float: right;
  color: #0041B3;
  margin-right: 49px;
}

.hand-cursor {
  cursor: pointer;
}

.general-priority-value {
  display: flex;
  margin: 0 0px 0px 287px;
}

.view-item .close-btn {
  background-color: #C8F1DA;
}

.punchlist-filters {
  display: flex;
  padding-top: 12px;
  justify-content: space-between;
  width: 55%;
}

.filter-dropdowns {
  width: 36%;
  margin: 0 10px 0px 0px;
}

.filter-dropdowns > .typeahead-container {
  margin-bottom: 0px !important;
}

.reports-tab__container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.reports-tab__table {
  width: 100%;
}

.report-list__button {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 5px;
}

.report-details-view__container {
  margin: 16px 32px;
}

.report-details-view__report {
  margin: 16px 80px;
}

.print-btn {
  position: relative;
  float: right;
  top: 4px;
  right: 80px;
}

.controller-note__button {
  margin-left: -12px;
}

.container {
  padding: 40px;
  padding-top: 0;
}

.result-records-count-reports {
  margin-top: -48px;
  padding: 10px;
  display: flex;
  justify-content: center;
  font-weight: bold;
  color: gray;
  width: auto;
}

.downlaod-report-icon {
  background: url("/assets/Download.svg") center no-repeat;
  margin-right: 5px;
}

.report-name-btn {
  text-decoration: underline;
}

.report-name-btn:hover {
  color: #00AAFF;
  background-color: transparent !important;
}

.status-padding {
  padding: 4px 0 0 40px !important;
  margin: 0 0 0 0 !important;
}

.tdStatusName-padding {
  padding-left: 10px;
  padding-bottom: 0px;
  padding-top: 0px;
}

.button-note-holder {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.workflow_status_container {
  display: flex;
  flex-direction: row;
  margin-bottom: -15px;
  margin-left: 100px;
}

.workflow_card {
  width: 444px;
  padding: 8px;
  padding-top: 32px;
  margin: 32px;
}

.card_action-details_btn {
  flex-direction: row-reverse;
}

.device_status_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-self: center;
}

.device_status {
  margin-top: 16px;
  font-size: 12px;
}

.legend_info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 65%;
  margin-bottom: 4px;
}

.workflow_card_list_container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.detail_card-device_status_container {
  width: 60%;
  display: flex;
  flex-direction: row;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  align-self: center;
}

.details_card-workflow_status_container {
  display: flex;
  flex-direction: row;
}

.details_card-device_status {
  margin-top: 5px;
  font-size: 12px;
  height: 100%;
  margin-left: -270px;
  align-items: center;
  justify-content: space-between;
  width: 260px;
}

.details_card-legend_info {
  display: flex;
  flex-direction: row;
  width: 40%;
  margin-bottom: 0px;
  justify-content: space-between;
}

.detail_card_workflow_card {
  width: inherit;
  padding: 8px;
  margin: 24px 6px;
}

.workFlow-maintab {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  padding: 0 0px;
  background-color: white;
}

.workFlow-container {
  background-color: white;
  display: flex;
  padding: 5px;
}

.workflow-filter-dropdown {
  width: 25%;
  margin: 0 10px 0px 33px;
}

.clearAll-button {
  padding-top: 25px;
  padding-left: 5px;
}

.serach-filterDiv {
  margin-top: 21px;
  margin-left: -10px !important;
}

.workflow-network-search {
  background-color: white;
  padding: 20px;
  border-bottom: 1px solid #d1d1d1;
}

.line-devider {
  margin-left: 33px !important;
  margin-top: -25px !important;
  border-bottom: 1px solid #d1d1d1;
  border: none;
  height: 1px;
  margin: 0;
  flex-shrink: 0;
  background-color: var(--mud-palette-divider);
}

.network-div {
  padding-top: 0px;
  display: block;
  color: #000000DE;
  margin-left: 58px;
  padding-right: 9%;
  padding-bottom: 0px;
  background-color: white !important;
}

.leftdiv {
  float: left;
}

.enginename-lable {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.16px;
  color: #000000DE;
  background-color: white !important;
}

.count-div {
  float: right;
  margin-top: 5px;
  display: flex;
  margin-right: -91px;
}

.mud-table-row {
  border: hidden;
}

.attachment-download:hover {
  background-color: transparent !important;
}

.attachment-download {
  text-decoration: underline;
}

.attachment-button {
  border: 1px solid;
  border-radius: 30px;
  height: 33px;
}

.attachment-div {
  padding: 2px;
}

.attachment-button > .mud-button-label {
  position: relative;
  right: 7px;
}

.attachment-button:hover {
  color: #00AAFF;
}
.attachment-button:hover .attachments-icon {
  background: url("/assets/Download.svg") center no-repeat;
  padding-left: 40px;
}

.attachments-icon {
  background: url("/assets/Attachment.svg") center no-repeat;
  padding-left: 40px;
}

.file-name {
  text-transform: initial;
}

.milestone_add {
  display: flex;
  justify-content: flex-end;
}

.milestone_add_span {
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: flex-end;
}

.milestone_name_select {
  padding: 0px 10px 10px 10px;
}

.milestone_name_select > .mud-input-control-input-container > div.mud-input.mud-input-text {
  margin-top: 0px !important;
}

.milestone_label {
  padding: 10px 0px 0px 10px;
}

.add_miles_popup {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  top: 137px !important;
}

.add_milestone_dialog {
  width: 52%;
  border-radius: 5px;
  height: 90%;
}

.dialog_title {
  padding-bottom: 15px;
  border-bottom: 1px solid #dedfe0;
}

.textarea_container {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}

.dialog_textarea {
  border-width: 0px 0px 1px 0px;
  border-image: initial;
  height: 93px;
  width: inherit;
  border-radius: 5px;
  background-color: #eceff2;
}

.comment-label {
  padding-bottom: 5px;
}

.length-label {
  right: 5px;
  position: relative;
}

.add_milestone_dialog > .mud-dialog-title {
  border-bottom: 1px solid #dedfe0 !important;
  padding: 9px 20px !important;
  margin-top: 0px !important;
}

.files-upload__drag-drop {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding-bottom: 25px;
}

.files-upload__drag-drop input[type=file] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.files-display {
  display: flex;
}

.files-display > .mud-list-item-text > .mud-typography > .mud-icon-button {
  padding: 5px !important;
}

.multiple-viewer {
  display: flex;
  height: 110px;
  overflow: scroll;
  padding-bottom: 10px;
  border: 1px solid #dedef0;
}

.multiple-viewer > .mud-list > .mud-list-item {
  padding: 0px !important;
}

.multiple-viewer > .mud-list > .mud-list-item > .mud-list-item-text p {
  font-size: 100%;
}

.multiple-viewer > .mud-list > .mud-list-item > .mud-list-item-text {
  margin: 0px !important;
}

.upload-inst {
  height: 100px;
  position: fixed;
  bottom: 50px;
}

.upload-inst p {
  font-size: 95%;
}

.upload-inst > .mud-list > .mud-list-item {
  padding: 0px !important;
}

.upload-inst > .mud-list > .mud-list-item > .mud-list-item-text {
  margin-bottom: 0px !important;
}

.upload-inst > .mud-list > .mud-list-item > .mud-list-item-text p {
  font-size: 95%;
}

.validTypes > .mud-tooltip-root > .mud-icon-button {
  padding: 0px 0px 0px 5px;
}

.add_milestone_dialog div > .mud-dialog-actions {
  position: fixed;
  bottom: 1px;
  width: 100%;
  display: flex;
  padding: 3px 6px 3px 6px !important;
  margin-left: 1px !important;
}

.file-upload__attach-link {
  color: #006ebf;
  position: relative;
  bottom: 4px;
  text-transform: initial !important;
}

.instructions {
  padding-top: 1px;
  display: flex;
  justify-content: space-between;
}

.validTypes {
  display: flex;
}

.comment-file-upload__error {
  font-size: 83%;
  color: red;
  margin-top: 5px;
}

.error-container {
  display: flex;
  flex-direction: column;
  height: 100px;
  overflow: scroll;
  border: 1px solid #dedef0;
  margin-top: 10px;
  padding-left: 10px;
}

.mud-align {
  text-align: start;
}

.add_milestone_dialog > div > .mud-dialog-content.mud-dialog-no-side-padding {
  padding: 5px 12px 12px 0px;
}

.milestone-table {
  margin-top: 0px;
}

.search-milestone {
  margin: 23px 0 0 0;
}

.ddl-multistone {
  margin: 16px 0 0 0;
}

.filter-header {
  display: flex;
  justify-content: end;
  margin: 0 44px 0 0px;
}

div.filter-header > div.ddl-multistone > div > div > div > input {
  height: 10px !important;
}

div.filter-header > div.ddl-multistone > div > div > label {
  line-height: 11px !important;
}

.hide-div {
  visibility: hidden;
}

.show-div {
  visibility: visible;
}

.comment-margin-right {
  margin-right: 250px;
  margin-top: 25px;
  font-weight: 600;
  font-size: 14px;
}

.comment-mr-right {
  margin-right: 200px;
}

.table-button-comment {
  opacity: 0;
  padding: 0;
}

.table-header-comments:hover .table-button-comment {
  opacity: 1;
  padding: 0;
}

.table-button-comment-remove {
  opacity: 0;
  padding: 0;
}

.table-button-comment-active {
  opacity: 1;
  padding: 0;
}

.comment-padding {
  padding: 0px;
}

.project-tracker-parent {
  padding: 20px;
  padding-right: 12%;
  margin-left: 50px;
}

.projecttracker-title {
  font-weight: bold;
  font-size: 14px;
}

.milestone-container {
  margin-left: 50px;
}

.milestone-row {
  width: 87%;
}

.milestone-row:hover {
  background-color: #f2faff;
}

.milestone-row-1 {
  display: flex;
}

.milestone-row-2 {
  padding-left: 65px;
  line-height: 30px;
}

.milestone-row-3 {
  padding-left: 65px;
  line-height: 30px;
}

.milestone-menu {
  float: right;
  margin-top: -65px;
  margin-right: 15px;
}

.ms-comment-count:hover {
  color: #00aaff;
  cursor: pointer;
}

.ms-comment-count-container:hover .ms-comment-count {
  color: #00aaff;
  cursor: pointer;
}

.ms-comment-count-container:hover .comment-icon {
  color: #00aaff;
  cursor: pointer;
}

ms-attachment-count:hover {
  color: #00aaff;
  cursor: pointer;
}

.ms-attachment-count-container:hover .ms-attachment-count {
  color: #00aaff;
  cursor: pointer;
}

.ms-attachment-count-container:hover .attachment-icon {
  color: #00aaff;
  cursor: pointer;
}

.ms-task-container {
  width: 87%;
  border-spacing: 0px;
}

.ms-task-row {
  width: 100%;
}

.ms-task-row:hover {
  background-color: #f2faff;
  background-size: 87%;
  background-repeat: no-repeat;
}

.ms-task-row-1 {
  line-height: 30px;
}

.ms-task-row-2 {
  line-height: 30px;
}

.ms-task-row-3 {
  line-height: 30px;
}

.milestone-task-menu {
  float: right;
  margin-top: -64px;
  margin-right: 15px;
}

.task-icon-container {
  padding-left: 10px;
  margin-top: -43px;
  display: flex;
}

.milestone-icon {
  background: url("assets/Milestone.svg") bottom no-repeat;
  background-size: contain;
  padding-bottom: 31px;
}

.task-icon {
  background: url("assets/task.svg") bottom no-repeat;
}

.overdue-icon {
  background: url("assets/overdue.svg") no-repeat;
  background-size: 18px;
  vertical-align: sub;
}

.completed-icon {
  background: url("assets/completed.svg") no-repeat;
  vertical-align: middle;
  margin-right: -4px;
}

.start-date-with-icon {
  background: url("assets/from_date.svg") no-repeat;
  background-size: 18px;
  background-position: left;
  padding-left: 20px;
  margin-right: 30px;
}

.start-date-with-icon:hover {
  background: url("assets/from_date_hover.svg") no-repeat;
  background-size: 18px;
  background-position: left;
  padding-left: 20px;
  cursor: pointer;
  color: #00aaff;
}

.due-date-with-icon {
  background: url("assets/to_date.svg") no-repeat;
  background-size: 18px;
  background-position: left;
  padding-left: 20px;
  margin-right: 30px;
}

.due-date-with-icon:hover {
  background: url("assets/to_date_hover.svg") no-repeat;
  background-size: 18px;
  background-position: left;
  padding-left: 20px;
  cursor: pointer;
  color: #00aaff;
}

.comment-icon {
  font-size: 1rem !important;
  vertical-align: sub;
}

.comment-icon:hover {
  cursor: pointer;
  color: #00aaff;
}

.attachment-icon {
  margin-left: 25px;
  font-size: 1rem !important;
  vertical-align: sub;
}

.overdue-heading {
  color: #b30021;
  display: inline;
}

.completed-heading {
  color: #00bf54;
  display: inline;
}

.dates-padding {
  padding-right: 25px;
}

.ms-start-date-container:hover {
  cursor: pointer;
  color: #00aaff;
}

.ms-due-date-container:hover {
  cursor: pointer;
  color: #00aaff;
}

.input-check {
  position: relative;
  top: 3px;
}

.add-task-div {
  margin-right: 7%;
  position: relative;
  display: block;
}

.no-records-div {
  padding: 10px;
  background: #fafafa;
  text-align: center;
  padding-left: 42px;
  width: 89%;
}

.no-records {
  background: #F5F6F7 0% 0% no-repeat padding-box;
}

/* The container */
.m-container {
  display: block;
  position: relative;
  padding-left: 20px;
  margin-top: 4px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.m-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.m-checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 17px;
  width: 17px;
  /*background-color: #eee;*/
  border: 3px solid gray;
  border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.m-container:hover input ~ .m-checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.m-container input:checked ~ .m-checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.m-checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.m-container input:checked ~ .m-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.m-container .m-checkmark:after {
  left: 4px;
  top: -1px;
  width: 3px;
  height: 8px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hide-div {
  visibility: hidden;
}

.show-div {
  visibility: visible;
}

.mark-as-completed-message {
  color: #ca2339;
  display: block;
  margin-left: 12px;
  font-size: 0.75rem;
}

.header-container {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #d1d1d1;
}

.status-filter {
  margin-right: 24px;
}

.status-filter > .mud-input-control-input-container > .mud-input-filled {
  width: 155px;
  border-radius: 50px;
  height: 40px;
}

.status-filter > .mud-input-control-input-container > .mud-input-filled:before,
.status-filter > .mud-input-control-input-container > .mud-input-filled:before,
.status-filter > .mud-input-control-input-container > .mud-input-filled:after,
.status-filter > .mud-input-control-input-container > .mud-input-filled:after {
  border-bottom: 0px !important;
}

.status-filter > .mud-input-control-input-container > .mud-input-filled:hover:before,
.status-filter > .mud-input-control-input-container > .mud-input-filled:hover:before {
  border-bottom: 0px !important;
}

.multiSelect-filter {
  display: flex;
}

.multiSelect-filter p {
  padding-top: 20px;
}

.multiSelect-filter label {
  padding-top: 5px;
  padding-left: 10px;
}

.multiSelect-filter button {
  padding-top: 5px;
}

.collapse-expand-right {
  margin-top: 6px;
  position: absolute;
  right: 40px;
}

.multiSelect-filter button:hover {
  background-color: #006ebfff;
  color: white;
}

.status-filter > .mud-input-control-input-container > .mud-input > div.mud-input-slot.mud-input-root.mud-input-root-filled {
  padding: 0px 12px;
}

.sort-width > .mud-input-control-input-container > .mud-input-filled {
  width: 235px !important;
}

.sort-width > .mud-input-control-input-container > .mud-input > div.mud-input-slot.mud-input-root.mud-input-root-filled {
  padding: 0px 12px 12px;
  top: 2px;
}

.sortDate-ascIcon {
  background: url("assets/SortDateAsc.svg") bottom no-repeat;
  background-size: contain;
  vertical-align: bottom;
  margin-left: 4px;
}

.sortDate-descIcon {
  background: url("assets/SortDateDesc.svg") bottom no-repeat;
  background-size: contain;
  vertical-align: bottom;
  margin-left: 4px;
}

.sortName-ascIcon {
  background: url("assets/SortNameAsc.svg") bottom no-repeat;
  background-size: contain;
  vertical-align: bottom;
  margin-left: 4px;
}

.sortName-descIcon {
  background: url("assets/SortNameDesc.svg") bottom no-repeat;
  background-size: contain;
  vertical-align: bottom;
  margin-left: 4px;
}

.sortStatus-ascIcon {
  background: url("assets/SortStatusComplete.svg") bottom no-repeat;
  background-size: contain;
  vertical-align: bottom;
  margin-left: 4px;
}

.sortStatus-descIcon {
  background: url("assets/SortStatusIncomplete.svg") bottom no-repeat;
  background-size: contain;
  vertical-align: bottom;
  margin-left: 4px;
}

.search-text {
  margin: -10px 20px 0 0;
}

div.project-tracker-parent > div > div > div > div.search-text > div > div > div > input {
  height: 10px !important;
}

div.project-tracker-parent > div > div > div > div.search-text > div > div > label {
  line-height: 10px !important;
}

.trackerscroller {
  height: calc(100vh - 330px);
  overflow-y: scroll;
}

.tracker-margin-right {
  margin-right: 200px;
  font-weight: 600;
  font-size: 14px;
}

.tracker-page-margin {
  margin-right: 200px;
}

.highlight-button {
  font-weight: bold;
}

.sort-popover {
  margin-bottom: 16px;
}

.time-charged-parent {
  padding: 32px;
}

.timeCharged-title > .mud-typography-h5 {
  font-weight: bold;
  font-size: 19px;
}

.timeCharge-filter-container {
  display: flex;
}

.timeCharge-filter-container > .mud-select {
  display: block !important;
  flex-grow: 0 !important;
}

.filter-select {
  flex: 0 0 auto;
}

.filter-select > .mud-input-control-input-container > .mud-input > input.mud-input-root.mud-input-root-filled,
.filter-select > .mud-input-control-input-container > .mud-input > div.mud-input-slot.mud-input-root.mud-input-root-filled {
  padding: 8px 12px 12px;
}

.filter-text {
  margin-left: 10px;
  flex: 0 0 auto !important;
}

.filter-text > .mud-input-control-input-container > .mud-input > input.mud-input-root-outlined {
  padding: 11.5px 0px;
  font-size: 11px;
}

.filter-text > .mud-input-control-input-container > .mud-input.mud-disabled {
  color: black;
  font-weight: 700;
  cursor: default;
  background: lightskyblue;
}

.filter-text > .mud-input-control-input-container > .mud-input.mud-disabled > .mud-input-adornment > svg {
  color: dodgerblue;
}

.filter-period {
  margin-left: 10px;
  padding-top: 12px;
}

.productivity-title {
  display: inline-block;
  vertical-align: text-bottom;
}

.timeCharge-tableHeader > .mud-table-container > .mud-table-root > .mud-table-body > .mud-table-row {
  color: inherit;
  display: table-row;
  outline: 0;
  vertical-align: middle;
  border-bottom: 1px solid #dedef0;
}

.timeCharge-tableHeader > .mud-table-container > .mud-table-root > .mud-table-body > .mud-table-row > td {
  display: table-cell;
  padding: 16px !important;
  font-size: 0.875rem;
  text-align: start;
  font-weight: 400;
  line-height: 1.43;
  /*border-bottom: 1px solid var(--mud-palette-table-lines);*/
  letter-spacing: 0.01071em;
  vertical-align: inherit;
}

.time-charged-table {
  margin-top: 20px;
  border: 1px solid #dedef0;
}

.count-data {
  font-size: 13px;
  font-weight: 400;
  padding: 3px 0px 0px 3px;
}

.icon-position {
  padding-left: 5px;
  vertical-align: middle;
}

.stars-red {
  background-color: red;
}

.stars-yellow {
  background-color: yellow;
}

.stars-orange {
  background-color: orange;
}

.stars-green {
  background-color: #00b500;
}

.stars-red-after {
  background-color: #FFB0B0;
}

.stars-orange-after {
  background-color: #FFDE9A;
}

.stars-yellow-after {
  background-color: #f6f6b8;
}

.stars-green-after {
  background-color: #a5d9a5;
}

.technician-title {
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 172px;
  white-space: nowrap;
  border-bottom: none;
}

.table-button {
  opacity: 0;
}

.table-header:hover .table-button {
  opacity: 1;
}

.table-header {
  padding: 10px;
}

.table-button-remove {
  opacity: 0;
}

.table-button-active {
  opacity: 1;
}

.timecharged-margin-right {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}

.time-charged-scroller {
  height: 55vh;
  overflow-y: scroll;
}

.switch-hide-controller {
  padding-top: 0px;
  padding-left: 10px;
  margin-right: -5px;
}

.label_cart_header {
  /*color: #5c5f6d;
  font-size: .875rem;
  font-weight: 600;
  text-wrap: none*/
  color: #5c5f6d;
  font-size: -13.125rem;
  text-wrap: none;
  font-weight: bold;
  font-size: 13px;
}

.info__value {
  font-size: 0.875rem;
  margin: 0 8px;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 230px;
  color: #717480;
}

.project_header_title {
  font-weight: 600;
}

.set-border-radius {
  border-radius: 5px;
  letter-spacing: var(--unnamed-character-spacing-0-14);
  color: var(--textfield-input);
  font: normal normal medium 14px Work Sans;
  letter-spacing: 0.14px;
  color: #5D636C;
  opacity: 1;
  margin-bottom: 10px;
}

.set-expand-right {
  display: block;
  margin-left: auto;
  margin-right: 2%;
}

.spacing-height {
  margin-bottom: 10px;
}

.set-padding {
  padding: 15px;
}

.button-font {
  font-size: 14px;
  color: #00BBE3;
}

.project-tile-info-portfolio {
  text-overflow: ellipsis;
  font-size: 1.25rem;
  font-family: Noto Sans JP, sans-serif;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  width: 280px;
  font-size: 18px;
  color: #0080B6;
  cursor: pointer;
}

.cart-font {
  font-size: 14px;
}

.header-font {
  font-size: 22px;
}

.search-projectbar {
  border: 1px solid black;
  width: 21%;
  height: 50%;
  background-color: var(--mud-palette-grey-light);
  border-radius: 10px;
}

.filtertab-textbg-color {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border: 2px solid #707070;
  border-radius: 44px;
  opacity: 1;
  color: #5c5f6d;
}

.searchbar {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.14px;
  color: #5D636C;
  opacity: 1;
  width: 328px;
  height: 32px;
}

.search-textbox {
  height: inherit;
  width: 401px;
  border: none;
  background-color: white;
  font-size: 14px;
}

.mudtoolbar-margin {
  padding-left: 1px;
  height: 18px;
  margin-top: 9px;
}

.filter-btn {
  text-transform: initial;
}

.priority {
  display: inline-flex;
}

.priorityText {
  margin: 8px 0px 0 0;
}

.portfolioscroller {
  height: 58vh;
  overflow-y: scroll;
}

.hide-div {
  visibility: hidden;
}

.show-div {
  visibility: visible;
}

.portfolio-margin-right {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin-bottom: -25px;
}

.project-status {
  padding: 5px 10px 5px 10px;
  border-radius: 50px;
  gap: 6px;
  width: max-content;
  letter-spacing: 0.25px;
}

.project-filter-dropdown {
  width: 24%;
  margin: 0 10px 0px 0px;
}

.activity-filter-dropdown {
  width: 24%;
  margin: 0 10px 0px 0px;
}

.User-filter-dropdown {
  width: 24%;
  margin: 0 10px 0px 0px;
}

.date-filter-dropdown {
  margin-top: -1px;
  margin-right: 6px;
  margin-left: 9px;
  min-width: 138px;
}

.mud-list-item-icon {
  min-width: 25px;
}

.recent-activity {
  padding-top: 5px;
  display: flex;
  background-color: #F5F6F7;
  /*margin-left: 50px;*/
  margin-bottom: 20px;
  margin-top: 20px;
}

.recent-data-table {
  margin-left: auto;
  margin-right: auto;
}

.dropdown-filter {
  color: var(--input-text-525564);
  text-align: left;
  letter-spacing: 0.1px;
  color: #525564;
  opacity: 1;
  display: flex;
}

.recent-activity-header {
  letter-spacing: var(--unnamed-character-spacing-0-22);
  color: var(--unnamed-color-242630);
  text-align: left;
  letter-spacing: 0.22px;
  color: #242630;
  opacity: 1;
  margin: 20px 0px 0 9px;
}

.time {
  color: var(--input-text-525564);
  text-align: left;
  letter-spacing: 0.1px;
  color: #525564;
  opacity: 1;
  width: 135px;
  height: 13px;
}

.iconname-recent {
  width: 25px;
  height: 25px;
  font-size: 10px;
  border-radius: 7px;
}

.projectname-recnet {
  text-decoration: var(--unnamed-decoration-underline);
  letter-spacing: var(--unnamed-character-spacing-0-12);
  color: var(--secondary-dark);
  text-align: left;
  text-decoration: underline;
  letter-spacing: 0.12px;
  height: 19px;
  text-align: left;
  margin-top: 3px;
  color: #0080B6;
  opacity: 1;
  margin-left: 5px;
  margin-top: 5px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50ch;
  cursor: pointer;
}

.Color-lightblue {
  color: #0080B6;
}

.icon-circle {
  width: 30px;
  height: 31px;
  border-radius: 19px;
  font-size: 11px;
}

.table-cell__with-icon {
  display: flex;
  align-items: center;
  text-transform: inherit !important;
}

.activity-type {
  color: var(--textfield-input-selected);
  text-align: left;
  letter-spacing: 0.48px;
  color: #242630DE;
  opacity: 1;
  margin-top: 7px;
}

.icon-headername {
  text-align: center;
  letter-spacing: var(--unnamed-character-spacing-0-16);
  color: var(--textfield-input);
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.16px;
  color: #5D636C;
}

.username {
  color: var(--textfield-input);
  text-align: center;
  letter-spacing: 0.48px;
  color: #5D636C;
  opacity: 1;
  margin-right: 4px;
}

.has-creaetd {
  margin-right: 3px;
  text-transform: lowercase;
  letter-spacing: var(--unnamed-character-spacing-0-12);
  color: var(--textfield-input-selected);
  text-align: left;
  letter-spacing: 0.12px;
  color: #242630DE;
  opacity: 1;
}

.wf-status {
  color: var(--textfield-input-selected);
  text-align: left;
  letter-spacing: 0.48px;
  color: #242630DE;
  margin-right: 2px;
  text-transform: lowercase;
  font-weight: 600;
}

.pl-activity {
  text-decoration: var(--unnamed-decoration-underline);
  letter-spacing: var(--unnamed-character-spacing-0-12);
  color: var(--secondary-dark);
  text-align: left;
  letter-spacing: 0.12px;
  color: #0080B6;
  margin-left: 3px;
  text-transform: lowercase;
}

.wf-controller {
  letter-spacing: var(--unnamed-character-spacing-0-14);
  color: var(--textfield-input);
  text-align: center;
  letter-spacing: 0.14px;
  color: #5D636C;
  opacity: 1;
}

.icon-size-recent-activity svg {
  height: 30px;
  width: 60px;
  margin-bottom: 10px;
  color: #00bbe3 !important;
}

.recent-data-table td {
  padding-top: 15px;
  padding-bottom: 15px;
}

.td-class-border {
  border-bottom: 0.5px solid #C4C6CA;
}

.plactivity-linkbtn:focus {
  outline: none;
}

.filter-margin {
  /*margin-right:15px !important;*/
}

.recent-icon {
  width: 67px;
  height: 58px;
}

.recent-dailytech-content {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60ch;
  color: #5D636C;
}

.recent-punchlist-content {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60ch;
  cursor: pointer;
  text-decoration: underline;
  text-transform: initial;
}

.recent-workflow-content {
  background: url("assets/NCE.svg") center no-repeat;
  height: 17px;
  padding-right: 6px;
  width: 22px;
  margin-left: 2px;
}

.filter-buttons {
  margin-top: 20px;
}

.filter-buttons > :not(:first-child) {
  margin-left: 8px;
  margin-inline-start: 8px;
  margin-inline-end: unset;
}

.text-transform-none {
  text-transform: none !important;
}

.result-records-count {
  margin-top: -35px;
  padding-bottom: 5px;
  background-color: #F5F6F7;
  display: flex;
  justify-content: center;
  font-weight: bold;
  color: gray;
}

.result-records-count:empty {
  padding-bottom: 0px;
}

.recent-margin-right {
  font-weight: 600;
  font-size: 14px;
}

.recent-activity-scroller {
  height: 58vh;
  overflow-y: scroll;
}

.hide-div {
  visibility: hidden;
}

.show-div {
  visibility: visible;
}

.recentActivityAttachmentIcon {
  margin-left: 10px;
  margin-top: 8px;
}

.user-mgmt-container {
  background: #fff;
  padding-top: 15px;
}

.user-count {
  padding-left: 15px;
}

.user-management-tabs > .mud-tabs-toolbar > .mud-tabs-toolbar-inner > .mud-tabs-toolbar-content > .mud-tabs-toolbar-wrapper .mud-tabs-centered {
  margin: 0px 25%;
}

.user-management-tabs > .mud-tabs-toolbar > .mud-tabs-toolbar-inner > .mud-tabs-toolbar-content > .mud-tabs-toolbar-wrapper > .mud-tooltip-root {
  width: 205px;
}

.user-container {
  padding: 10px 29% 35px;
}

.chip-cont > .mud-chip {
  padding: 0px 20px !important;
  border: 1px solid;
}

.chip-cont > .mud-chip > .mud-chip-content {
  color: #000 !important;
}

.sort-cont {
  display: flex;
  align-items: baseline;
  margin-left: 45px;
}

.project-sort-cont {
  display: flex;
  align-items: baseline;
  margin-left: 35px;
}

.user-sort-select {
  margin-left: 10px;
  width: 140px;
}

.branch-sort-select {
  width: 175px;
  margin-left: 10px;
}

.search-sort {
  display: flex;
  padding: 10px 0px;
}

.user-list {
  display: flex;
  justify-content: space-between;
  padding: 3px 0px;
  cursor: pointer;
}

.expand-icon {
  display: flex;
  align-items: center;
}

.user-sort-select > .mud-input-control-input-container > div.mud-input.mud-input-text,
.branch-sort-select > .mud-input-control-input-container > div.mud-input.mud-input-text {
  margin-top: 0px !important;
  font-weight: 600;
  font-size: 13px !important;
}

.users-lists {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  height: calc(100vh - 325px);
}

.usertab-pagination-margin {
  margin-top: 0px !important;
}

.search-btn {
  height: 30px;
  margin-top: -10px;
}

.user-search-icon {
  margin-top: 2px;
  color: #D1D1D1;
  padding: 0px !important;
}

.cursor-set {
  cursor: default;
}

.user-search-input {
  border: none;
  margin: 0px 4px;
  color: #000a;
  width: 30vh;
  border-bottom: 1px solid #deefe0;
}

.user-search-input:focus-visible {
  outline: none !important;
}

.rolechange-dialog-span > .mud-dialog-title {
  margin-top: 10px !important;
  /* border-bottom: 1px solid #dedfe0;*/
  padding-bottom: 7px;
}

.popup-header {
  font-size: 18px;
  width: 100%;
  color: rgba(0, 0, 0, 0.87);
}

.role-change-cont {
  display: flex;
  flex-direction: column;
  width: 47vh;
  font-family: sans-serif;
  font-size: inherit;
}

.role-cont {
  padding: 12px;
  display: flex;
  font-size: 13px;
}

.roles {
  margin-right: 4px;
  cursor: pointer;
}

.branchtab-container {
  padding: 5px 29%;
}

.branchadmin-list {
  display: flex;
  justify-content: space-between;
  padding: 0px 0px;
  cursor: default;
  background-color: #FBFCFC;
  margin: 4px;
}

.branchadmin-lists {
  max-height: 50%;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  height: calc(100vh - 269px);
}

.branchtab-pagination-margin {
  margin-top: 35px !important;
}

.adminusers {
  display: -webkit-box;
  margin-top: 2px;
}

.branchlst-user {
  margin-left: 5px;
  width: 85%;
}

.branchtab-sort-cont {
  display: flex;
  align-items: baseline;
  margin-left: 44px;
  margin-top: -10px;
}

.all-branches-lists {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  height: calc(100vh - 254px);
}

.panel-title > .mud-expand-panel-header > .mud-expand-panel-text {
  font-weight: 600;
  font-size: 13px;
}

.panel-title > .mud-expand-panel-header {
  padding: 0px 24px !important;
}

.all-background {
  background: #FBFCFC;
}

.panel-title > .mud-collapse-entered {
  max-height: 43vh !important;
}

.all-projects-lists {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}

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

.username-class {
  border-bottom: 1px solid #dfefe0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.username-style {
  font-weight: 600;
  font-size: 13px;
}

.usernames-cont {
  height: 31vh;
  overflow: scroll;
  max-height: 35vh;
}

.button-align {
  display: flex;
  justify-content: end;
}

.list_items > .mud-list-item-text > p {
  font-weight: 600;
  font-size: 13px;
}

.user-management-loader {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.project-holder {
  margin: 7px;
  border-bottom: 1px solid #deefe0;
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.project-font {
  font-weight: 600;
  font-size: 12px;
  max-width: 435px;
  max-width: 435px;
}

.user-search-input-branchtab {
  border: none;
  margin: 0px 0px;
  color: #000a;
  width: 30vh;
  border-bottom: 1px solid #deefe0;
}

.user-search-input-branchtab:focus-visible {
  outline: none !important;
}

.set-font {
  font-size: 13px;
}

.download-icon {
  padding: 0px;
  width: 31px;
  min-width: 0px !important;
}

.download-icon > .mud-button-label {
  display: flex;
  justify-content: right;
  align-items: center;
}

.user-download-link {
  display: flex !important;
}

.tab-text {
  text-transform: inherit !important;
}

.text-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ccc;
  color: #fff;
  font-weight: bold;
}

.avatar-bg-color1 {
  background-color: #242630;
}

.avatar-bg-color2 {
  background-color: #fdbc38;
}

.avatar-bg-color3 {
  background-color: #57ca75;
}

.avatar-bg-color4 {
  background-color: #f37720;
}

.avatar-bg-color5 {
  background-color: #ca2339;
}

.avatar-bg-color6 {
  background-color: #df3071;
}

.avatar-bg-color7 {
  background-color: #1778ef;
}

.avatar-bg-color8 {
  background-color: #4727b2;
}

.avatar-bg-color9 {
  background-color: #00539e;
}

.avatar-bg-color10 {
  background-color: #002f5a;
}

.large {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 8px;
}

.medium {
  width: 36px;
  min-width: 36px;
  height: 36px;
  font-size: 0.875rem;
  border-radius: 6px;
}

.small {
  width: 24px;
  min-width: 24px;
  height: 24px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 4px;
}

.circular {
  border-radius: 50% !important;
}

.controller-view__container {
  min-width: 85vw !important;
  max-width: 85vw !important;
  min-height: 90vh !important;
  max-height: 90vh !important;
}

.controller-view__title {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-weight: 600;
}

.controller-view__controller-details {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-weight: 600;
}

.controller-view__verification-details {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.controller-view__dialog-content {
  padding: 0 !important;
  margin-top: 24px;
}

.note-container {
  width: 100%;
  padding: 16px 96px;
  height: 440px;
  overflow: auto;
}

select {
  width: 160px;
  height: 32px;
  background: #ececec;
  border: none;
  margin: 0px 16px;
}

select:focus-visible {
  border: none;
}

select:after {
  border: none;
}

select:before {
  border: none;
}

select::selection {
  border: none;
}

.point-verification__content, .bulk-verification__content {
  width: inherit;
}

.point-verification__summary {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.dialog-container_textfield {
  padding: 8px;
  width: 600px;
}

.EditController-dialog-container_textfield {
  padding: 8px;
  width: 600px;
  overflow: auto;
  max-height: 700px;
}

.textfield_margin {
  margin-bottom: 24px;
}

.mud-dialog .mud-dialog-actions {
  padding: 0px 24px 12px;
}

.mud-dialog .mud-dialog-title {
  color: rgba(0, 0, 0, 0.87);
  display: block;
  line-height: 1rem;
  margin-top: 24px;
  padding: 0px 24px;
  font-size: 20px;
  border-bottom: 1px solid transparent;
  font-weight: 500;
}

.mud-dialog .mud-dialog-content {
  padding: 0px 24px;
}

.heading-separator {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin: 20px -22.4px;
}

.header {
  font-weight: 600;
}

.dialog-content {
  margin-left: -44px;
  width: 104%;
  margin-top: 32px;
}

.notes-select {
  padding: 16px 114.4px;
}

.mud-dialog .mud-dialog-title .mud-button-root {
  display: block;
}

.empty-data {
  display: flex;
  margin-top: 8px;
  justify-content: center;
}

.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.italic_label {
  font-style: italic;
  font-size: smaller;
}

.display_flex {
  display: flex;
}

.adjust_margin {
  margin: auto 0;
}

.Mud_tabs-Note {
  margin-bottom: 12px;
}

.note-mud-drawer .mud-select {
  width: 200px;
}

.note_d-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  margin-top: -3px;
  margin-bottom: 7px;
  margin-right: 30px;
}

.note_dropdown {
  width: 150px;
  margin-top: 16px;
}

.note_drawer_header {
  justify-content: space-between;
}

.link_items_header {
  margin-left: auto;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
}

.remove-padding span {
  padding: 0px;
}

.PreExisting {
  display: flex;
}

.InScope {
  display: flex;
  margin-left: 19px;
}

.timeStamp-cl {
  margin-left: 20px;
  font-size: 13px;
  padding-top: 3px;
}

.controller-view-dialog {
  width: calc(100% - 131px) !important;
  max-width: 1380px !important;
}

.pointTabAttchment-icon {
  background: url("/assets/Attachment.svg") center no-repeat;
  margin-top: 8px;
}

/*Box Flow css start*/
.flowLoopLable {
  display: block;
  color: #000000AD;
}

.boxFlowLoop-chip {
  display: inline-flex;
  gap: 10px;
  margin-top: 5px;
}

.flowLoop-div {
  display: flex;
  padding-left: 24px;
  padding-top: 10px;
}

.flowLoop-btn {
  border-radius: 50px;
  gap: 6px;
  width: max-content;
  letter-spacing: 0.25px;
  text-transform: none !important;
}

/* General table styling */
.boxFlow-header table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0em;
}

.boxFlow-header table thead tr th {
  font-weight: normal;
  color: #000000AD;
}

.width15 {
  width: 15%;
  padding-bottom: 5px;
}

.width25 {
  width: 25%;
  padding-bottom: 5px;
}

.boxFlow-header table tbody td {
  vertical-align: top;
  font-size: 15px;
  letter-spacing: 0.16px;
  color: #000000DE;
}

.boxFlow-header table tbody tr:hover {
  background-color: none;
}

/* Nested table styling */
.boxFlow-header table table {
  margin-top: -0.5rem;
  background-color: #fff;
}

.boxFlow-header table table thead th {
  font-weight: normal;
  color: #000000AD;
}

.boxFlow-header table table tbody td {
  vertical-align: top;
  font-size: 15px;
  letter-spacing: 0.16px;
  color: #000000DE;
}

.boxflow-content {
  margin: 10px 10px 10px 10px;
  padding: 10px 10px 0px 10px;
  box-shadow: 0px 1px 3px 2px #00000033;
  border-radius: 4px 4px 0px 0px;
}

.boxFlow-header {
  display: flex;
  justify-content: space-between;
  padding-left: 10px;
}

.boxFlow-errortitle {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
}

.boxflow-Error {
  font-weight: normal;
  color: #000000AD;
  display: flex;
  padding-top: 3px;
}

.boxflow-ErrorList {
  font-size: 14px;
  margin-bottom: 7px;
  font-weight: normal;
  color: #000000DE;
  letter-spacing: 1.2px;
  padding-top: 3px;
}

.boxFlow-footer {
  border-top: 1px solid #dedfe0;
}

/*Box Flow css end*/
/*Version control start*/
.bg-lightblue-version-controller {
  background-color: lightblue !important;
}

.save-selected-controller {
  float: right;
  position: inherit;
  bottom: 32px;
  right: 10px;
  border-radius: -5px;
}

.selected-row {
  background-color: #E3F6FF;
  border-top: 4px solid white !important;
  border-bottom: 4px solid white !important;
}

.light-grey-bg {
  background-color: #f0f0f08f !important;
}

.my-component .no-row-outline .mud-table-row {
  border: none !important;
  background: #f1f2f33d;
  border-top: none !important;
  border-bottom: none !important;
}

.mud-table .mud-th[data-label=Selection] {
  width: 60px;
}

.restore-dialog .mud-dialog .mud-dialog-content {
  padding: 14px 25px;
  border-top: 1px solid #ccc;
}

.restore-dialog .mud-dialog-content {
  padding: 14px 25px;
  border-top: 1px solid #ccc;
}

.restore-dialog .mud-dialog-actions {
  padding: 14px;
}

.restore-dialog .mud-dialog-title {
  margin: 20px 0px 20px 0px;
}

.multi-controller-tab .multi-controller-page-table {
  display: flex;
  padding: 16px 24px 8px 24px;
  align-items: center;
  gap: 40px;
  background-color: #E3F6FF;
}

.multi-controller-tab {
  width: 100%;
  border-collapse: collapse;
  /* Ensures no space between table borders */
}

/* Style for rows inside the MudTable */
.custom-row {
  background-color: #f5f5f5;
  /* Light grey background for each row */
  transition: background-color 0.3s ease;
  /* Smooth transition effect */
}

/* Style for hovering over a row */
.custom-row:hover {
  background-color: #e0e0e0;
  /* Slightly darker grey on hover */
}

/* Style for the MudTd cells in the row */
.custom-row .mud-table-cell {
  padding: 12px 15px;
  /* Add padding to cells */
  text-align: left;
  /* Align text to the left */
}

/* Style for headers */
.multi-controller-tab .mud-table-header th {
  padding: 12px 15px;
  /* Add padding to header cells */
  background-color: #007bff;
  /* Blue background for headers */
  color: white;
  /* White text for headers */
}

.view-history-tab .mud-table-header {
  position: sticky;
  top: 0;
  z-index: 1;
  background-color: white;
}

.view-history-tab .mud-tr {
  margin-bottom: 3px;
}

.multi-controller-tab .mud-tr {
  margin-bottom: 3px;
}

.no-border-top-bottom {
  border-top: 3px solid #F7F8F8 !important;
  border-bottom: 3px solid #F7F8F8 !important;
}

.multi-controller-tab.no-border-top-bottom > div.mud-table-container > table > tbody > tr > td {
  border-top: 2px solid white !important;
  border-bottom: 2px solid white !important;
}

.multi-controller-tab .mud-checkbox input[type=checkbox]:checked + .mud-checkbox-label {
  background-color: #2196F3;
  /* Blue when checked */
  border-color: #2196F3;
}

.multi-controller-tab .mud-checkbox input[type=checkbox]:not(:checked) + .mud-checkbox-label {
  background-color: #9E9E9E;
  /* Grey when unchecked */
  border-color: #9E9E9E;
}

.view-history-tab .mud-table-root .mud-table-head {
  display: table-header-group;
  position: sticky !important;
  top: 0;
  z-index: 10;
  background-color: white;
}

.controller-checkbox .mud-table-cell-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
  appearance: none;
  border: 2px solid #ccc;
  cursor: pointer;
}

.controller-checkbox .mud-table-cell-checkbox input[type=checkbox]:checked {
  background-color: #007bff;
  border-color: #007bff;
}

.multi-controller-tab.no-border-top-bottom > div.mud-table-container > table > tbody > :has(input:checked) {
  background-color: #E3F6FF;
  border-top: 4px solid white !important;
  border-bottom: 4px solid white !important;
}

.multi-controller-tab.mud-table-sticky-header * .mud-table-root .mud-table-head * .mud-table-cell {
  position: sticky;
  z-index: 2;
  top: 0;
  background-color: #f0f0f08f;
}

.view-history-tab .mud-table-sticky-header * .mud-table-root .mud-table-head * .mud-table-cell {
  background-color: #f0f0f08f;
}

.single-controller-tab .mud-table-head {
  background-color: #f0f0f08f;
}

.view-history-tab.mud-table-sticky-header * .mud-table-root .mud-table-head * .mud-table-cell {
  background-color: #f0f0f08f;
}

.view-history-tab-currenttab .mud-table-head {
  background-color: #f0f0f08f;
}

.attachmentdiv-version-history {
  position: relative;
  top: 4px;
  right: 0px;
}

/*Version control end*/
.file-upload__drag-drop {
  border: 2px dashed #C4C6CA;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: rgba(0, 110, 191, 0.08);
}

.file-upload__text {
  position: absolute;
  pointer-events: none;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.file-upload__text-link {
  color: #006ebf;
}

.file-upload__drag-drop input[type=file] {
  position: absolute;
  height: 100px;
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
  opacity: 0;
  cursor: pointer;
}

.file-field {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.38);
  padding: 8px;
}

.file-field__name {
  display: flex;
}

.file-field__trailing {
  display: flex;
  font-size: 0.875rem;
}

.file-field__error-text {
  font-size: 0.875rem;
  margin-left: 16px;
}

.file-field__success-text {
  font-size: 0.875rem;
  margin-left: 16px;
}

.file-field i {
  margin-left: 8px;
  margin-right: 8px;
}

.releaseVersion {
  color: darkblue;
  font-size: small;
  font-weight: 600;
}

.dailog-color {
  background: #f7f8f8;
}

.issue-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.issue-info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contain-left {
  display: flex;
  align-items: center;
  flex-direction: row;
  width: calc(100%);
}

.contain-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 16px;
}

.issue-leading-status-container {
  display: flex;
  align-items: center;
  min-width: 120px;
}

.issue-status-icon {
  margin: 8px;
}

.issue-label-container {
  display: flex;
  flex-direction: column;
}

.issue-title {
  font-weight: 500;
  width: calc(100%);
  max-width: 280px;
  overflow-wrap: break-word;
  font-weight: bold;
  margin: 10px;
}

.issue-subtitle {
  max-width: 280px;
  overflow-wrap: break-word;
}

.issue-modified-at, .issue-author {
  margin: 8px;
  min-width: 144px;
}

.issue-history {
  width: 100%;
}

.issue__tag-container {
  width: 40%;
}

.issue-history.issue-history--hidden {
  height: 0px;
}
.issue-history.issue-history--hidden .issue-history__comment {
  display: none;
}

.issue-history.issue-history--visible {
  height: calc(100%);
}
.issue-history.issue-history--visible .issue-history__comment {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.comment-title {
  width: calc(100%);
  max-width: 280px;
  overflow-wrap: break-word;
}

.issue__history-button, .empty-spacer {
  min-width: 148px;
}

.issue-style {
  margin: 0px;
  word-break: break-word;
}

.issue-subtitle-size {
  font-size: 12px;
}

.border-for-rows tr {
  border-bottom: 1px solid var(--mud-palette-table-lines);
}

.align-toolSuite {
  position: relative;
  left: 8px;
}

.align-history {
  position: relative;
  left: 13px;
}

.align-history-hide {
  position: relative;
  left: -11px;
}

.align-padding {
  padding: 10px;
}

.priority {
  display: inline-flex;
}

.priorityText {
  margin: 8px 0px 0 0;
}

.issue-padding {
  padding: 5px;
}

.controller-info__address-issue {
  min-width: 15px;
  min-height: 20px;
  display: flex;
  /*  background-color: gainsboro;*/
  border-radius: 4px;
}

.controller-info__address {
  min-width: 36px;
  min-height: 24px;
  margin: 16px;
  display: flex;
  background-color: gainsboro;
  border-radius: 4px;
}

.controller-info__address-text {
  margin: auto;
}

.border-changes {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

.issue-state {
  background-color: rgba(0, 110, 191, 0.23) !important;
  color: #006ebf !important;
}

.workflow-chip {
  background-color: rgba(0, 110, 191, 0.23) !important;
  color: #006ebf !important;
}

.general-text {
  height: 62px;
  padding: 22px 0 0px 12px;
}

.network-text {
  height: 62px;
  padding: 0px 0 0px 12px;
}

.issues-list {
  background: #fff;
  margin: 14px 20px 0 20px;
}

.open-close-btn > button > span > .mud-button-icon-start {
  margin-inline-end: 3px !important;
}

.controller-address-issue {
  display: flex;
  background-color: gainsboro;
  border-radius: 4px;
  width: 34px;
  justify-content: center;
}

.punchlist-history .mud-card-header {
  padding: 0 0px 0 16px !important;
}

.PunchList-history-dialog {
  width: 50%;
  max-height: 70%;
  overflow-y: auto;
}

.PunchList-history-dialog .mud-dialog-title {
  border-bottom: 1px solid lightgray;
}

.PunchList-history-dialog.mud-typography-h6 {
  font-size: 16px;
}

.IssueInScope {
  display: flex;
  margin-left: 8px;
}

.AttchmentIconButton {
  padding: 0 0px 20px 7px !important;
}

.AttchmentIconButton:hover {
  color: #00AAFF;
  background-color: #fff !important;
}
.AttchmentIconButton:hover .IssueAttachment-icon {
  background: url("/assets/Download.svg") center no-repeat;
}

.IssueAttachment-icon {
  background: url("/assets/Attachment.svg") center no-repeat;
  margin-right: 8px;
}

.HistroyAttchmentButton {
  padding: 0 0 0 0 !important;
}

.HistroyAttchmentButton:hover {
  color: #00AAFF;
  background-color: #fff !important;
}
.HistroyAttchmentButton:hover .HistoryAttachmentIcon {
  background: url("/assets/Download.svg") center no-repeat;
}

.HistoryAttachmentIcon {
  background: url("/assets/Attachment.svg") center no-repeat;
  margin-right: 5px;
}

.app-bar {
  border-bottom: 1px solid #f1f2f4;
}

.uat-app {
  background: #00a3e8;
  color: #fff;
}

.mud-drawer-close-persistent-left .app-bar {
  /* Since the app bar is fixed, we need to account for the nav rail. */
  margin-left: 64px !important;
  width: calc(100% - 64px) !important;
}

.mud-drawer-open-persistent-left .app-bar {
  width: calc(100% - var(--mud-drawer-width-left) - $nav-rail-width) !important;
  margin-left: calc(64px + var(--mud-drawer-width-left)) !important;
}

.mud-drawer--open {
  left: 64px !important;
}

.layout {
  height: 100%;
  width: calc(100% - 64px);
  position: relative;
  left: 64px;
}

.layout-container {
  display: flex;
  width: 100%;
  height: 100%;
}

.page-container__content {
  padding: 16px;
}

.jci-globe-container {
  height: 65px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f1f2f4;
}

.jci-globe-image {
  height: 40px;
  width: 40px;
  margin: auto;
}

.nav-rail {
  display: flex;
  position: fixed;
  flex-direction: column;
  height: 100vh;
  width: 64px;
  background-color: white;
  border-right: 1px solid #f1f2f4;
  z-index: 1200;
}

.nav-icon-container {
  margin-top: 8px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.nav-header {
  height: 64px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
  border-bottom: 0px;
}

.nav-header__title {
  font-weight: 400;
}

.customer-nav-panel__expand-button {
  margin-right: 8px;
}

.customers-nav-panel_list-item-icon-expand {
  transform: rotate(90deg);
}

.customers-nav-panel_list-item-textAvatar {
  margin-right: 8px;
}

.projects__nav-left-panel {
  margin-left: 24px;
}

.project-list_collapse {
  display: none;
}

.project-list_expand {
  display: block;
}

.header-section {
  width: 100%;
  display: flex;
  justify-content: center;
}

.tab-bar {
  display: flex;
}

.tab-bar--centered {
  justify-content: center;
}

.tab-bar--left-aligned {
  justify-content: flex-start;
}

.project-name {
  font-weight: bold;
  margin-top: 14px;
  display: flex;
}

.customer-name {
  margin-top: 20px;
  margin-right: 10px;
  font-size: 1.25rem;
  margin-top: 18px;
  line-height: 1.5rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mud-nav-link .mud-nav-link-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.highlight > .mud-nav-link {
  background: #0000001e;
}

.customer-unselect > .mud-nav-link,
.customer-unselect > .mud-nav-link:focus {
  background: #fff !important;
}

.project-name-header {
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  margin-top: 20px;
}

.nav-menu {
  height: calc(100vh - 175px);
  overflow: scroll;
}

.Existing-btn {
  border-radius: 50px;
  gap: 6px;
  width: max-content;
  letter-spacing: 0.25px;
}

.header-layout {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: #004889;
  color: #fff;
}

.contract {
  display: flex;
  justify-content: flex-end;
  flex-direction: column-reverse;
}

.header-align {
  display: flex;
  width: 25%;
}

.icon-pos {
  padding: 10px;
  margin-top: 6px;
}

div.mud-menu.notification-bedge > div.mud-menu-activator > span > span > span {
  left: calc(100% - 6px) !important;
}

div.mud-menu.dot > div.mud-menu-activator > span > span > span {
  display: none;
}

.notification-row:hover {
  background-color: #e5f3fe;
}

.notification-text {
  padding-left: 13px;
  font-weight: bold;
}

.notification-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5f3fe;
  padding: 10px 10px 10px 23px;
}

.notification-message {
  margin: 0 80px 0 0;
}

.notification-time {
  display: block;
  padding: 9px 0px 0px 10px;
  font-size: 12px;
}

.notification-div-cancel-circe {
  margin-top: 10px;
}

.notification-circle {
  margin: 0 10px 0 0;
}

.notification-cancel {
  cursor: pointer;
}

.notification-row-not-found {
  padding: 10px;
  margin-left: 12px;
  width: 349px;
}

.role-disp {
  display: flex;
  font-size: 14px;
}

.login-logo {
  background: url("assets/JCI Logo@2x.png") center no-repeat;
  height: 40px;
  width: 90px;
  background-repeat: no-repeat;
  background-size: contain;
}

.login-page {
  background: url("assets/login-splash.png") center no-repeat;
  background-size: cover;
  height: calc(100vh);
}

.login-box {
  position: absolute;
  width: 400px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  top: 35%;
  left: 55%;
}

.timeout-dialog-content {
  text-align: center;
  padding: 5px 100px 5px 100px;
}

.padding-6px {
  padding: 6px;
}

.bold-text {
  font-weight: bold;
}

.note-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.note-card {
  padding: 16px;
  margin: 3.2px;
}

.note-date {
  font-size: 12px;
}

.note-user__name {
  font-size: 16px;
  font-weight: bolder;
}

.note-content {
  overflow-wrap: break-word;
  margin-top: 12px;
}

.note-user {
  display: flex;
  flex-direction: row;
}

.point_chip {
  margin-left: 12px;
}

.workflow_point_chip {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.drawer_settings {
  right: 0 !important;
  left: auto !important;
}

.width_of_heading {
  width: 100%;
}

.width_tool_suite {
  width: 30%;
}

.noteList_card {
  padding: 0px;
}

.change_margin {
  margin-top: 5px;
  margin-left: 5px;
  margin-right: 0px;
}

.addNotesSettings .mud-select {
  width: 30% !important;
  float: left;
}

.add-alignment {
  width: 40%;
  position: relative;
  margin-left: auto;
  margin-right: 0px;
}

.set_top_margin {
  margin: 10px;
}

.add_max_height {
  height: 80vh;
  overflow: auto;
}

.mud-icon-size-medium {
  font-size: 1.2rem;
}

.issue-type {
  position: relative;
  top: 2px;
}

.padding-username {
  padding: 2px;
}

.fontSize-para-header {
  font-size: 90%;
}

.fontSize-para {
  font-size: 85%;
}

.rac-file-upload__error {
  font-size: 0.875rem;
  margin-left: 16px;
  margin-top: 8px;
}

.rac-file-upload__success {
  font-size: 0.875rem;
  margin-left: 16px;
  margin-top: 8px;
}

.dialog-container .mud-dialog-content {
  padding: 4px 24px 20px 24px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 1rem;
}

.paragraph_text {
  display: block;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.mud-dialog-actions {
  border-style: solid;
  margin-left: -8px;
  margin-right: -8px;
  padding-top: 15px !important;
  border-width: 1px 0px 0px 0px;
  border-color: gainsboro;
}

.mud-icon-margin {
  margin: auto 5px;
}

.selnav-note-text {
  font-size: 15px;
}

.note_icon {
  font-size: 15px;
}

/* The container */
.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 17px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: 10px;
}

.racConflict-container_textfield {
  padding: 8px;
  width: 600px;
  overflow: auto;
  max-height: 700px;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: solid gray 2px;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: gray;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ol-margin {
  margin-left: 16px;
}

.margin-top-10 {
  margin-top: 10px;
}

.icon-size {
  position: relative;
  top: 4px;
  font-size: 1rem;
}

.fontStyle-normal {
  font-style: normal;
}

.add-Scroll {
  overflow: auto;
  max-height: 350px;
}

.rac_guide {
  margin-top: 10px;
  font-size: 13px;
}

.rac_rule {
  font-size: 13px;
  line-height: initial;
  margin-top: 7px;
  letter-spacing: initial;
}

.bullet_points {
  list-style-type: disc;
}

.add-para-flex {
  flex-direction: row;
  display: flex;
  font-size: 17px;
}

.padding-10 {
  padding: 10px;
}

.racconflict-Dialog-header {
  margin: 20px 0px 20px 0px;
}

.left-align {
  text-align: left;
}

.center-align {
  text-align: center;
}

.mud-dialog .mud-dialog-content {
  padding: 8px 24px;
}

.list-type-numeric {
  list-style-type: decimal;
}

.list-Sub-type {
  list-style-type: disc;
  margin-left: 15px;
}

.racValidation-Dialog-header {
  margin: 20px 0px 20px 0px;
}

.racValidation-container_textfield {
  padding: 8px;
  width: 600px;
  overflow: auto;
  max-height: 700px;
}

.racValidation-Color {
  color: red !important;
}

.racValidation-Dialog-header-margin {
  margin: -14px 0px 7px 0px;
  color: red;
}

.racValidation-equipmentName-wrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 15ch;
}

.fontSize-para-header {
  font-size: 90%;
}

.fontSize-para {
  font-size: 85%;
}

.conflict-confirmation-dialog {
  max-height: 96%;
}
.conflict-confirmation-dialog .mud-dialog-actions {
  margin: 0 !important;
}
.conflict-confirmation-dialog .mud-dialog-content {
  padding-bottom: 12px;
}
.conflict-confirmation-dialog .mud-table-cell {
  text-align: center;
}
.conflict-confirmation-dialog .mud-table-body .mud-table-cell {
  padding: 0 16px;
}
.conflict-confirmation-dialog .conflict-Dialog-header {
  margin: 30px 30px 30px 0px;
}

.mud-table-shadow {
  box-shadow: 1px 0px 1px 0px rgba(0, 0, 0, 0.2), 0px 1px 2px 1px rgba(0, 0, 0, 0.14), 0px 0px 0px 1px rgba(0, 0, 0, 0.12);
}

.wizard-progress__container {
  width: 100%;
  padding: 36px 24px;
  border-bottom: 1px solid #f1f2f3;
  flex-grow: 0;
}

.daily-report-content__container {
  display: flex;
  max-height: 382px;
}

.report-dialog {
  min-width: 85vw !important;
  display: flex;
  flex-direction: column;
}

.daily-report-content__details {
  width: calc(100%);
  overflow: auto;
}

.point-varification_table {
  border: 2px solid #DADADA;
  border-top: none;
  margin-bottom: 8px;
}

.daily-report_network-adapter {
  margin-top: 12px;
  border: 2px solid #DADADA;
  height: 68px;
  display: flex;
  align-items: center;
  border-bottom: none;
}

.daily-report_controller-details {
  background: #f1f2f3;
  border: 2px solid #DADADA;
  height: 92px;
  display: flex;
  align-items: center;
}

.daily-report-content__divider {
  width: 1px;
}

.content-header {
  margin-bottom: 7px;
}

.report-dialog__project-information {
  min-width: 240px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.report-dialog__action-area {
  border-top: 1px solid #f1f2f3;
  flex-grow: 0;
}

.report-dialog__content {
  padding: 0 !important;
  overflow: visible;
}

.report-dialog__loader {
  margin: 0 auto;
  margin-top: 15%;
}

.project-information__group {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
}

.project-information__header {
  font-weight: 500;
}

.project-information__value {
  font-weight: 400;
}

.basic-info-weather {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  width: calc(40%);
}
.basic-info-weather .element-text-field-wrapper {
  margin-bottom: 16px;
}

.basic-info-weather__header {
  margin-bottom: 24px;
  font-weight: 500;
}

.workflow-data-container {
  background-color: #fbfbfc;
  margin: 16px 0;
}

.workflow-data-header {
  padding: 8px;
  background-color: gainsboro;
}

.workflow-data-header__title {
  font-weight: 500;
}

.workflow-data__loader {
  position: absolute;
  top: 50%;
  left: 55%;
}

.controller-details__row {
  overflow: visible;
}

.controller-details__cell--overflow {
  overflow: visible;
}

.additional-info {
  display: flex;
  flex-direction: column;
  width: calc(60%);
  margin-bottom: 5px;
}
.additional-info .element-text-field-wrapper {
  margin-bottom: 16px;
}

.review-info {
  margin-bottom: 24px;
}

.safty-details {
  margin-bottom: 5px;
  margin-top: 14px;
}

.review-information__group-container {
  margin: 16px;
  padding: 16px;
  overflow: auto;
}

.review-information__group {
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  word-break: break-all;
}
.review-information__group h4 {
  font-weight: 500;
  font-size: 22px;
  margin: 0;
}

.review-information__header-separater {
  border-bottom: 1px solid #E6E5E5;
}

.review-information__header {
  font-weight: bold;
  padding-top: 20px;
}

.review-information__label {
  font-weight: 400;
}

.review-information__sub-header {
  font-size: 18px;
  font-weight: 500;
  margin-top: 16px;
}

.element-table {
  width: calc(100%);
}

.table-cell__input {
  border: none !important;
  outline: none !important;
  cursor: pointer;
  background-color: inherit;
}

.table-cell__input:focus-visible {
  border: none !important;
  outline: none !important;
}

.table-cell__input--error {
  color: #F44336 !important;
}

.table-cell__input--initial {
  color: rgba(0, 0, 0, 0.73);
}

.table-cell__button--error .mud-button-label {
  color: #F44336;
}

.mud-Select-dd .mud-input-control > .mud-input-control-input-container > .mud-input-label-inputcontrol {
  color: #F44336;
}

.mud-Select-eq .mud-input-control > .mud-input-control-input-container > .mud-input-label-inputcontrol {
  color: #696969;
}

.controller-details__equipment-menu {
  transform-origin: top left !important;
  max-height: 500% !important;
  bottom: unset !important;
  top: 0px;
}

.create-report-container {
  display: flex;
  flex-direction: column;
}

.report-tab {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: initial;
}

.report-tab-main {
  width: 100%;
  border: 1px solid #E6E5E5;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.dailog-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.mdc-button__label2 {
  color: #848484;
}

.rt-button__label {
  color: #006ebf;
}

.workflow-data-table__header {
  font-weight: bold !important;
}

.truncate {
  width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.workflow-data__container {
  height: 310px;
  overflow: auto;
}

.dtr-dialog-height {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 100%;
}

.report-details-view__container {
  margin: 16px 32px;
}

.report-details-view__report {
  margin: 16px 80px;
}

.print-btn {
  position: relative;
  float: right;
  top: 4px;
  right: 80px;
}

.chip_text {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

#section-to-print {
  padding-bottom: 36px;
}

.controller-filter-multiSelectView {
  display: flex;
  width: 100%;
  margin-bottom: 60px;
  margin-top: 10px;
}

.apply-btn {
  float: right;
  margin: 1px 368px 0 0;
}

.print-btn_checkoutsheet {
  position: relative;
  float: right;
  bottom: 5px;
  left: 111px;
}

.report-view {
  display: inline-flex;
}

.roles-dropdown {
  width: 250px;
}

.priority-dropdown {
  padding-left: 60px;
  width: 250px;
}

.report-details-view__report-Checkoutsheet {
  margin: -70px 0px;
}

.controller-search_dropdown {
  display: inline-block;
  width: 51%;
  margin-left: 78px;
  margin-right: 30px;
}

.cr-filter-label {
  transform: translate(0, 1.5px) scale(0.75);
  transform-origin: top left;
  position: absolute;
}

.cr-filter {
  border-radius: 50px;
  width: max-content;
  height: fit-content;
}

.cr-filter-options {
  margin-top: 17px;
  gap: 20px;
  display: inline-flex;
}

.cr-filter-div {
  display: inline-flex;
  margin-right: 13px;
  margin-left: 35px;
}

.chip-padding {
  padding: 4px 10px;
}

.generateCOS {
  margin: 10px 0 !important;
  font-size: 100% !important;
}

.dialog-container-NotePunchlist {
  padding: 8px;
  width: 900px;
}

.dialog-container-NotePunchlist > div > .mud-dialog-content {
  border-top-style: groove;
}

.header-info {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
}

.information__header {
  font-weight: 500;
}

.validation-error-message {
  color: #ca2339;
  display: block;
  margin-top: 5px;
}

.checkout-component {
  background: #fff;
  overflow-y: scroll;
  height: calc(100vh - 162px);
}

.checkout-wizard {
  padding: 8px 24px 15px !important;
  border-bottom: 2px solid #f1f2f3 !important;
}

.controller-type-header {
  padding: 10px 30px;
  border-bottom: 2px solid #dedfe0;
  margin-bottom: 10px;
}

.controller-search-div {
  display: flex;
  flex-direction: row;
  margin-top: 15px;
  padding: 0px 30px;
}

.multiselect-el {
  width: 30%;
  margin-right: 20px;
  margin-bottom: 24px;
}

.multiselect-el > div {
  margin-bottom: 0px !important;
}

.equipment-filter {
  display: flex;
  flex-direction: row;
  padding: 0px 30px;
}

.prexisting-container {
  padding: 10px 30px 0px;
}

.scope-select {
  margin-top: 5px;
  display: flex !important;
}

.scope-select > .mud-checkbox > .mud-icon-button {
  padding: 7px !important;
}

.warning-indicator {
  margin-left: 25px;
  color: red;
}

.filter-padding {
  padding-right: 30px;
}

.punchlist-base {
  display: flex;
  flex-direction: row;
}

.punchlist-base-head {
  display: flex;
  flex-direction: column;
}

.punchlist-head {
  padding-bottom: 10px;
  border-bottom: 2px solid #dedfe0;
  margin-bottom: 5px;
}

.chip-width {
  width: 30%;
}

.advance-header {
  padding: 20px 0px 10px 0px;
  border-bottom: 1px dotted;
  margin-top: 20px;
}

.date-select {
  width: 165px;
}

.duration {
  margin-bottom: 15px;
}

.button-container {
  display: flex;
  justify-content: end;
  position: relative;
  padding: 4px 30px;
  border-top: 2px solid #dedfe0;
  margin: 7px 0 0 0;
}

.checkout-body-container {
  height: calc(100vh - 312px);
  overflow-x: hidden;
  overflow-y: scroll;
}

.duration > .mud-input-control > .mud-input-control-input-container > .mud-input-filled {
  padding-left: 8px !important;
  padding-inline-start: 8px !important;
}

.custom-duration > .mud-input-control > .mud-input-control-input-container > .mud-input-filled {
  background: #fff;
}

.duration > .mud-input-control > .mud-input-control-input-container > .mud-input > input.mud-input-root.mud-input-root-filled {
  padding: 12px 0px 10px !important;
}

.duration > .mud-input-control > .mud-input-control-input-container > .mud-input > .mud-input-adornment-start.mud-input-root-filled-shrink {
  margin-top: 0px !important;
}

.verification-container {
  padding: 10px 30px 0px;
  border-bottom: 2px solid #dedfe0;
}

.pv-check {
  padding-right: 15px;
}

.punchlist-cont {
  display: flex;
  flex-direction: column;
}

.select-all-opt > .mud-checkbox > .mud-icon-button {
  padding-left: 3px !important;
}

.element-pad {
  padding: 40px;
}

.controller-type {
  padding-right: 20px;
}

.table-container {
  margin: 15px 0px 0px;
}

.table-container > .mud-table-container > .mud-table-root > thead {
  background: #f1f2f3;
}

.table-container > .mud-table-container {
  height: 45vh;
  overflow: scroll;
}

.point-content {
  background: #f1f2f3;
  padding: 0px 30px !important;
  width: 50% !important;
}

.point-table {
  background: #f1f2f3;
}

.point-table > .mud-table-container > .mud-table-root > thead {
  background: #dedfe0;
}

.head-container {
  display: flex;
  flex-direction: row;
  padding: 1px 10px 3px;
}

.search-cont {
  display: flex;
  border-bottom: 1px solid #D1D1D1;
  width: 35%;
  max-height: 30px;
  margin-top: 25px;
}

.exclude-table-container {
  display: flex;
  margin-left: 13px;
}

.partial-table {
  width: 96vh;
  display: block;
}

.table-margin {
  margin-left: 20px;
}

.checkbox-width {
  width: 50px;
}

.trunk-width {
  width: 250px;
}

.plNote-width {
  width: 100px;
}

.button-back {
  margin: 0px 8px;
}

.selected {
  background-color: #dedfe0 !important;
}

.selected > td {
  color: #000 !important;
}

.selected > td .mud-input {
  color: #000 !important;
}

.select-all-opt-checkout {
  display: block;
  margin: 2px 0px 0px 47px;
}

.punchlist-radio {
  padding: 10px 11px 15px 36px;
  cursor: pointer;
}

.select-checkbox {
  margin: 0px 0px 0px 57px;
}

.punchlist-error-message {
  margin: -6px 0px 0px 71px !important;
}

.punchlist-radio-no {
  padding: 9px 0 15px 7px;
  cursor: pointer;
}

.controller-info {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
}

.punchlist-sheet__group-container {
  margin: 0px;
  padding: 11.2px;
  height: 100%;
  overflow: auto;
}

.punch-list-sheet-project-info {
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: #F1F2F3;
  height: 76.8px;
}

.punch-list-table {
  border-top: 2px solid #DADADA;
  margin: 0 12px;
}

.punch-listm-margin {
  margin: 27px 12px 0px;
}

.report_table {
  width: 97.5%;
  margin: 0 12px;
}

.mudGrid_border {
  border: 2px solid #DADADA;
  border-bottom: none;
  padding: 12px;
}

.mudGrid_border:last-child {
  border: 2px solid #DADADA;
}

.report_table_header {
  font-weight: 600;
}

.assing-filter-container {
  width: 30%;
  margin-left: 72px;
}

.issue-type {
  position: relative;
  top: 2px;
}

.daily-report_network-adapter-pl {
  margin-top: 12px;
  min-height: 40px;
  display: flex;
  align-items: center;
  border-bottom: none;
}

.daily-report_network-adapter-plheader {
  margin-top: 12px;
  border: 2px solid #DADADA;
  min-height: 40px;
  align-items: center;
  border-bottom: none;
}

.description-span {
  display: flex;
  flex-direction: row;
}

.punchlist-table {
  margin: 30px;
  border-collapse: collapse;
  width: 93%;
}

.punchlist-table > thead > tr > th,
.punchlist-table > tbody > tr > td {
  border: 1px solid;
  text-align: left;
  padding: 10px;
}

.punchlist-table > thead > tr > th {
  background: #dedfe0;
}

.punchlist-holder {
  display: flex;
  flex-direction: row;
}

.report-end-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  padding-bottom: 0px;
}

.punchlist-imageradio {
  padding: 10px 11px 15px 14px;
  cursor: pointer;
}

.punchlist-imageradio-no {
  padding: 9px 0 15px 7px;
  cursor: pointer;
}

.boxFlowMultiselect-el {
  width: 30%;
  margin-right: 20px;
  margin-bottom: 24px;
  margin-left: 15px;
}

.test-result-summary-label {
  margin-right: 4px;
  font-weight: 750 !important;
}

.test-result-summary-value {
  padding-right: 0.6rem;
  font-weight: 700 !important;
}

.test-result-summary {
  display: flex;
  align-items: center;
}

.test-result-summary_Bulk_Tab {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.test-result-point-icon {
  margin: 8px;
  margin-left: 16px;
  width: 20px;
  height: 20px;
}

.wizard-indicator {
  width: 100%;
  display: flex;
  justify-content: center;
}

.wizard-indicator__divider {
  margin-top: 23px;
  width: 300px;
  height: 2px;
  background-color: #006ebf;
}

.wizard-indicator__divider--not-started {
  background-color: rgba(0, 110, 191, 0.38);
}

.wizard-indicator__step-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wizard-indicator__indicator--not-started {
  opacity: 0.38;
}

.checkout-cont {
  width: 100%;
  display: flex;
  justify-content: space-around !important;
}

.checkout-cont > .wizard-indicator__step-container > button {
  padding: 0px !important;
}

.step-style {
  color: white;
  background: #152EA9;
  border-radius: 50%;
  padding: 2px 5px;
  font-size: small;
}

.circular-progress__indeterminate-circle {
  stroke-width: 4px;
  fill: transparent;
  position: absolute;
  width: 70%;
  height: 70%;
}

.circular-progress__indeterminate-circle-incomplete {
  stroke-width: 4px;
  fill: transparent;
  position: absolute;
  width: 70%;
  height: 70%;
}

.progress-text {
  white-space: nowrap;
  transform: rotate(90deg);
  padding-left: 36px;
  font-size: 12px;
  padding-top: 8px;
}

.progress-circle-alignment {
  margin-top: -4px;
  margin-left: 8px;
}

.circular-progress--large {
  width: 140px;
  height: 100px;
  margin-right: 12px;
}

.circular-progress--small {
  width: 95px;
  height: 65px;
  margin-left: -604px;
  padding-top: 20px;
}

.container-position {
  position: relative;
}

.circular-progress__workflow-circle {
  stroke-width: 10px;
  fill: transparent;
  position: absolute;
  height: 100%;
  width: 100%;
}

.circular-progress__workflow-circle-incomplete {
  stroke-width: 10px;
  fill: transparent;
  position: absolute;
  height: 100%;
  width: 100%;
}

.svg-container {
  position: absolute;
  height: 100%;
  width: 100%;
}

.percentage_text {
  transform: rotate(90deg);
  font-size: 24px;
}

.detail-percentage_text {
  transform: rotate(90deg);
  font-size: 16px;
}

.controller-row {
  padding-left: 10px;
  overflow-wrap: break-word;
}

.sub-phase {
  width: 45%;
}

.sub-phase-commissioning {
  width: 85%;
}

.details_card-legend_info {
  width: 30%;
  margin-left: -250px;
  margin-top: 40px;
}

.detail_card-device_status_container {
  width: 65%;
}

.controller-info__address {
  min-width: 36px;
  min-height: 24px;
  margin: 16px;
  display: flex;
  background-color: #f1f2f3;
  border-radius: 4px;
  font-weight: 600;
}

.word-space {
  margin-left: 24px;
}

.separator {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin: 0px 17px;
}

.controller-address {
  margin: 16px;
}

.progress-circle-text {
  margin-top: 40px;
  margin-left: 32px;
}

.details-view-back-arrow {
  width: 60px;
  height: 60px;
  margin-top: -4px;
}

.mud-expand-panel.mud-panel-expanded {
  margin-bottom: 16px !important;
  margin-top: 16px !important;
  border-bottom: none !important;
}

.mud-expand-panel {
  border-bottom: 1px solid var(--mud-palette-lines-default);
}

.details-view-back-arrow-Continous {
  width: 60px;
  height: 60px;
  margin-top: -75px;
  margin-left: -925px;
  position: relative;
}

.details-view-next-arrow-Continous {
  width: 60px;
  height: 60px;
  margin-left: 955px;
  margin-top: -65px;
  position: relative;
}

.sort-icon {
  display: flex;
  position: relative;
  margin-top: -75px;
}

.collapse-expand_right {
  float: right;
  margin-top: -45px;
}

.workflow-td-span {
  white-space: nowrap !important;
  padding: 0px 5px !important;
}

.no-border-right {
  border-right: none !important;
}

.no-border-bottom {
  border-bottom: none !important;
}

/*.workflow .mud-table-container {
    overflow-y: visible !important;*/
/*overflow-x: scroll !important;*/
/*table-layout: fixed;
}*/
.workflow .mud-table-root .mud-table-body .mud-table-cell .mud-table-row {
  border: none !important;
  border-style: none !important;
  border-collapse: collapse;
  background-color: transparent !important;
  background-color: white !important;
}

.workflow td.mud-table-cell {
  padding-left: 5px !important;
  padding-right: 5px !important;
  padding-bottom: 0px !important;
  background-color: white !important;
  padding-top: 0px;
}

.hide-column {
  display: none;
}

.show-column {
  display: table-cell;
}

.contButton-alignment {
  text-align: left;
}

.contButton-label {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 200px !important;
  display: block;
  width: auto;
  overflow: hidden;
}

.header-style {
  border-top: none;
  border-bottom: none;
  text-align: center;
  /* font-size: 16px;
   line-height: 22px;
  text-align: left;
   color: #000000;*/
}

.precontroller-name {
  display: flex;
  align-items: center;
  text-transform: inherit !important;
}

.inscopeController-name {
  display: flex;
  align-items: center;
  text-transform: inherit !important;
  margin-left: 16px;
}

.controlleralignment {
  text-align: left;
  /* margin-top: -10px;*/
  padding-left: 9px;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 200px;
  display: block;
  overflow: hidden;
  font-size: smaller;
  font-weight: normal;
}

.controller-lable {
  color: var(--mud-palette-text-primary);
  text-transform: initial;
}

.controlleraddress {
  background-color: gainsboro;
  padding: 2px 0px;
  border-radius: 4px;
  width: 35px;
  text-align: center;
  height: 22px;
}

.fontSize-para-header {
  font-size: 90%;
}

.fontSize-para {
  font-size: 85%;
}

.punchList-view__container {
  min-width: 85vw !important;
  max-width: 85vw !important;
  min-height: 90vh !important;
  max-height: 90vh !important;
}

.punchList-view__title {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-weight: 600;
}

.punchList-view__controller-details {
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-weight: 600;
}

.punchList-view__verification-details {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.punchList-view__dialog-content {
  padding: 0 !important;
  margin-top: 24px;
}

.punchList-container_textfield {
  padding: 8px;
  width: 600px;
}

.textfield_margin {
  margin-bottom: 24px !important;
}

.heading-separator {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  margin: 20px -22.4px;
}

.header {
  font-weight: 600;
}

.italic_label {
  font-style: italic;
  font-size: smaller;
}

.adjust_margin {
  margin: auto 0;
}

.selectItemTemplateCol1 {
  width: 50%;
}

.selectItemTemplateCol2 {
  width: 40%;
}

.project-items {
  display: inline;
  position: relative;
  left: 5px;
}

.project-items-icon {
  display: inline;
  position: relative;
  top: 3px;
}

.project-items-icon svg {
  font-size: 1rem;
}

.engine-auto {
  margin-bottom: 24px !important;
}

.punch_list_checkbox span {
  margin-left: -6px;
  padding: 0px;
}

.adjust_margin-span {
  margin-top: 11px;
  margin-left: 5px;
}

/* Punchlist Dialog styles */
.punch-list-card {
  border: 1px solid lightgray;
  padding: 5px;
  margin-bottom: 5px;
}

.gray-text {
  color: gray;
}

.punch-list-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.punch-list-date {
  font-size: 12px;
}

.punch-list-user__name {
  font-size: 16px;
  font-weight: bolder;
}

.punch-list-content {
  overflow-wrap: break-word;
  margin-top: 5px;
  margin-left: 30px;
}

.punch-list-user {
  display: flex;
  flex-direction: row;
}

.point_chip {
  margin-left: 12px;
}

.workflow_point_chip-punch-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 10px;
}

.mud-icon-size-medium-pl {
  font-size: 1.2rem !important;
}

.priority-plDialog {
  margin: 0 0 0 -10px;
  display: inline-flex;
}

.adjust-title-height .mud-dialog-title {
  height: 8px;
}

.readonly-plDialog {
  max-height: 70vh !important;
  overflow-y: scroll;
  padding-left: 28px !important;
  padding-right: 28px !important;
}

.PunchList-history-dialog > .mud-dialog-title > .mud-typography-h6 {
  font-size: 16px;
}

.adjust-title-height > .mud-dialog-title > .mud-button-root {
  top: 0px;
}

.issueDialogAttachmentBtn {
  padding: 2px 0 0 0 !important;
  float: inline-start;
}

.issueDialogAttachmentIcon {
  background: url("/assets/Attachment.svg") center no-repeat;
}

.issueDialogAttachmentBtn:hover {
  color: #00AAFF;
  background-color: #fff !important;
}
.issueDialogAttachmentBtn:hover .issueDialogAttachmentIcon {
  background: url("/assets/Download.svg") center no-repeat;
}

.DialogAttachmentDiv {
  display: flex;
}

.noteDialogAttchmntText {
  margin-left: 10px;
  color: #0061D2;
}

.noteDialogAttchmntTextWithMaptool {
  margin-left: 10px;
  margin-top: 5px;
  color: #0061D2;
}

.typeahead-container {
  position: relative;
  box-sizing: border-box;
  margin-bottom: 24px;
}

.typeahead-background {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  position: fixed;
  background-color: transparent;
  z-index: 1040;
  cursor: pointer;
}

.typeahead-control {
  -webkit-box-align: center;
  align-items: center;
  background-color: white;
  cursor: default;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  min-height: 38px;
  position: relative;
  box-sizing: border-box;
  border-color: #cccccc;
  border-radius: 4px;
  border-style: solid;
  border-width: 1px;
  transition: all 100ms ease 0s;
  outline: 0px !important;
  z-index: 1045;
}

.typeahead-value-container {
  -webkit-box-align: center;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  box-sizing: border-box;
  flex: 1 1 0%;
  padding: 2px 8px;
  max-height: 140px;
  overflow: scroll;
  margin-top: 7px;
}

.typeahead-value-placeholder {
  opacity: 0.5;
}

.typeahead-single-value {
  color: #333333;
  margin-left: 2px;
  margin-right: 2px;
  max-width: calc(100% - 8px);
  position: absolute;
  text-overflow: ellipsis;
  white-space: nowrap;
  top: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

.typeahead-multi-value {
  background-color: #e6e6e6;
  display: flex;
  min-width: 0px;
  box-sizing: border-box;
  border-radius: 2px;
  margin: 2px;
}

.typeahead-multi-value-label {
  color: #333333;
  font-size: 85%;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
  border-radius: 2px;
  overflow: hidden;
  padding: 3px 3px 3px 6px;
}

.typeahead-multi-value-clear {
  -webkit-box-align: center;
  align-items: center;
  display: flex;
  padding-left: 4px;
  padding-right: 4px;
  box-sizing: border-box;
  border-radius: 2px;
  background-color: transparent;
  border: 0;
  outline: none;
}

.typeahead-multi-value-clear:hover {
  background-color: #d4d4d4;
  color: #de350b;
}

.typeahead-indicators {
  -webkit-box-align: center;
  align-items: center;
  align-self: stretch;
  display: flex;
  flex-shrink: 0;
  box-sizing: border-box;
}

.typeahead-indicator-separator {
  align-self: stretch;
  background-color: #cccccc;
  margin-bottom: 8px;
  margin-top: 8px;
  width: 1px;
  box-sizing: border-box;
}

.typeahead-indicator {
  color: #cccccc;
  display: flex;
  box-sizing: border-box;
  padding: 8px;
  transition: color 150ms ease 0s;
  background-color: transparent;
  border: 0;
  outline: none;
}

.typeahead-clear-indicator {
  color: #cccccc;
  display: flex;
  box-sizing: border-box;
  padding: 8px;
  transition: color 150ms ease 0s;
}

.typeahead-loading-indicator {
  color: #cccccc;
  display: flex;
  align-self: center;
  font-size: 4px;
  line-height: 1;
  margin-right: 4px;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 8px;
  transition: color 150ms ease 0s;
}

.typeahead-loading-dot-1,
.typeahead-loading-dot-2,
.typeahead-loading-dot-3 {
  background-color: #cccccc;
  display: inline-block;
  height: 1em;
  vertical-align: top;
  width: 1em;
  border-radius: 1em;
}

.typeahead-loading-dot-2,
.typeahead-loading-dot-3 {
  margin-left: 1em;
}

.typeahead-loading-dot-1 {
  animation: 1s ease-in-out 0ms infinite normal none running dot-loading;
}

.typeahead-loading-dot-2 {
  animation: 1s ease-in-out 160ms infinite normal none running dot-loading;
}

.typeahead-loading-dot-3 {
  animation: 1s ease-in-out 320ms infinite normal none running dot-loading;
}

.typeahead-svg {
  display: inline-block;
  fill: currentcolor;
  line-height: 1;
  stroke: currentcolor;
  stroke-width: 0;
}

.typeahead-clear-indicator:hover {
  color: #de350b;
}

.typeahead-chevron-indicator:hover {
  color: #828282;
}

.typeahead-menu {
  top: 100%;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 4px 11px;
  margin-bottom: 8px;
  margin-top: 2px;
  position: absolute;
  width: 100%;
  z-index: 1050;
  box-sizing: border-box;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
}

.typeahead-search-container {
  margin: 0;
}

.typeahead-search-input {
  width: 100%;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border: 1px solid #bfbfbf;
  padding: 0.5rem;
  box-sizing: border-box;
}

.typeahead-menu-list {
  max-height: 160px;
  overflow-y: auto;
  padding-bottom: 4px;
  padding-top: 4px;
  position: relative;
  box-sizing: border-box;
}

.typeahead-option {
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  display: block;
  font-size: inherit;
  width: 100%;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  padding: 8px 12px;
}

.typeahead-option-no-records,
.typeahead-option-loading {
  padding: 0.5rem;
  opacity: 0.5;
}

.typeahead-option-footer {
  padding: 0.5rem;
}

.typeahead-option:hover {
  background-color: #deebff;
}

.input-check {
  position: relative;
  top: 3px;
}

.confirmation-dialog .mud-dialog-actions {
  margin: 0 !important;
}

.hide-select-all-option {
  display: none;
}

.back-button {
  margin-left: 15px;
}

.next-button {
  float: right;
  right: 50px;
  top: 7px;
}

.navigation-div {
  border-bottom: 1px solid #d3d3d3;
}

.showHideDialog {
  width: 350px;
  padding: 0px;
  padding-bottom: 0px;
}

.showHideDialog > div > .mud-dialog-content.mud-dialog-no-side-padding {
  padding-bottom: 0px;
}

.showHideDialog > .mud-dialog-title {
  margin-top: 8px;
}

.showHideTable {
  box-shadow: 1px 0px 1px 0px rgba(0, 0, 0, 0.2), 0px 1px 2px 1px rgba(0, 0, 0, 0.14), 0px 0px 0px 1px rgba(0, 0, 0, 0.12);
}

.showHideTable td.mud-table-cell {
  vertical-align: middle;
}

.showHideDialog > div > .mud-dialog-actions {
  margin-bottom: -5px;
  margin-top: -5px;
}

.menu-popup {
  top: auto;
  bottom: 90%;
}

.menu-popdown {
  top: 100%;
  bottom: auto;
}

.dialogAlertWidth {
  width: 480px !important;
}

.dialogSuccessWidth {
  width: 450px !important;
}

.dialogCountExceed {
  width: 600px !important;
}

.reportStatus-dialog .mud-dialog-actions {
  margin: 5px !important;
  padding: 10px 15px 5px 0 !important;
}

.reportStatus-dialog .mud-dialog-content {
  padding-right: 10px !important;
  padding-left: 16px !important;
  margin-top: 15px !important;
}

.reportStatus-dialog .mud-dialog-title {
  border-bottom: 1px solid gainsboro !important;
  padding: 0 0 7px 15px !important;
  margin-top: 15px !important;
}

.checkoutsheetfilter {
  max-height: 38px !important;
}

.login-page-Registration {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.login-box-Registration {
  width: 660px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 36px;
}

.login-box-confirmation {
  width: 660px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 36px;
}

.Registration-details {
  margin-top: 1px;
  margin-bottom: 7px;
  font-weight: bold;
}

.Reg-Checkbox {
  display: flex;
  flex-direction: row;
  margin-left: -13px;
  justify-content: space-between;
  margin-top: -3px;
  margin-bottom: 7px;
  margin-right: 30px;
}

.User-Registration-Details {
  width: 400px;
}

.Verify-Information {
  font-weight: bold;
  color: #2596be;
  padding-bottom: 10px;
}

.Verify-Information-Successful {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 14px;
}

.Details-Submit {
  text-align: right;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  padding: 0 0 12px;
  align-items: center;
  justify-content: flex-end;
}

.login-logo-registration {
  background: url("assets/JCI Logo@2x.png") center no-repeat;
  height: 40px;
  width: 90px;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  left: 450px;
  margin-top: -20px;
}

.login-logo-confirmation {
  background: url("assets/JCI Logo@2x.png") center no-repeat;
  height: 40px;
  width: 90px;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  left: 520px;
  margin-top: -17px;
}

.width-Registration {
  width: 400px;
}

.text-gray {
  font-size: 12px;
  color: gray;
}

.loading-linear {
  width: 100%;
  margin: 10px;
}

.info-tooltip {
  position: fixed;
  margin: -36px -34px;
}

.info-tooltip-text {
  font-size: 11px;
  text-align: left;
}

.project-details-span {
  display: flex;
  background: #FBFCFC;
  border: 1px #fbfcfc;
  padding: 0px;
  box-shadow: 2px 2px #dedfe0;
  justify-content: space-between;
  margin: 3px 0px;
}

.proj-name {
  display: flex;
  align-items: center;
  padding-left: 5px;
  font-size: 13px;
}

.project-lists-cont {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}

.projects-dialog-span > .mud-dialog-title,
.projects--assign-dialog-span > .mud-dialog-title {
  margin-top: 10px !important;
  border-bottom: 1px solid #dedfe0;
  padding-bottom: 7px;
}

.projects-dialog-span > div .mud-dialog-actions {
  padding: 15px 8px 8px !important;
}

.projects--assign-dialog-span > div .mud-dialog-actions {
  padding: 15px 8px 8px !important;
  position: fixed;
  bottom: 1px;
  width: 98%;
}

.projects-dialog-span,
.projects--assign-dialog-span {
  padding: 8px;
  width: 650px;
  overflow: unset !important;
  max-height: 700px;
}

.projects--assign-dialog-span {
  height: 60%;
}

.centered-loader-projects {
  display: flex;
  width: 100%;
  height: 10vh;
  align-items: center;
  justify-content: center;
}

.user-tab-branch-select {
  margin-top: 2px !important;
  background: #F7F8F8;
}

.user-tab-branch-select > .mud-input-control-input-container > div.mud-input.mud-input-text {
  margin-top: 5px !important;
}

.user-tab-branch-select > .mud-input-control-input-container > div.mud-input.mud-input-text > .mud-input-slot {
  padding-left: 8px;
}

.branch-select-holder {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}

.set-font-label {
  font-size: small;
}

.set-font-info {
  font-size: x-small;
}

.project-multi-select {
  margin-bottom: 0px !important;
}

.project-multi-select > .typeahead-control {
  border: none !important;
  background-color: #f7f8f8;
}

.button-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.checkbox-class > .mud-icon-button {
  padding: 4px !important;
}

.inline-loader {
  height: 15px !important;
  width: 15px !important;
}

.user-projectassign-dialog {
  width: 448px;
  overflow-y: unset !important;
}

.user-projectassign-user-label {
  margin: 6px;
}

.user-projectassign-dialog > .mud-dialog-title {
  margin-top: 10px !important;
  border-bottom: 1px solid #dedfe0;
  padding: 8px;
}

.projectassign-note {
  display: flex;
  margin-top: 10px;
  margin-bottom: 5px;
}

.projectassign-note-icon {
  margin-right: 5px;
  margin-top: 5px;
}

.mud-calendar {
  color: var(--mud-palette-text-primary);
  background-color: var(--mud-palette-surface);
  border-radius: var(--mud-default-borderradius);
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0;
  padding-top: 8px;
  display: grid;
}

.mud-calendar.mud-cal-square {
  border-radius: 0;
}

.mud-calendar.mud-cal-outlined {
  border: 1px solid var(--mud-palette-lines-default);
}

.mud-calendar table {
  width: 100%;
  height: 100%;
  display: table;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

.mud-calendar table thead {
  display: table-header-group;
}

.mud-calendar table thead th {
  padding: 8px;
  text-align: center;
}

.mud-calendar table tbody {
  display: table-row-group;
}

.mud-calendar table tbody td {
  border-right: 1px solid var(--mud-palette-table-lines);
}

.mud-calendar table * tr {
  color: inherit;
  display: table-row;
  outline: 0;
}

.mud-calendar table * tr > td, .mud-calendar table * tr th {
  display: table-cell;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.43;
  border-bottom: 1px solid var(--mud-palette-table-lines);
  letter-spacing: 0.01071em;
  vertical-align: inherit;
}

.mud-calendar table * tr > td:last-child, .mud-calendar table * tr th:last-child {
  border-right: none;
}

.mud-calendar table * tr > th {
  font-weight: 500;
  line-height: 1rem;
  background: #00AAFF;
}

.mud-calendar table tbody tr:last-child td {
  border-bottom: none;
}

.mud-calendar .mud-picker {
  display: inline;
}

.mud-cal-toolbar {
  display: flex;
  justify-content: space-between;
}

.mud-cal-month-view {
  height: 100%;
  width: 95%;
  margin: auto;
  border: 0.5px solid lightgray;
  /* margin: 0px 15px 0px 15px*/
}

.mud-cal-month-fixed-height .mud-cal-month-cell {
  /* overflow-y: auto;*/
}

.mud-cal-month-cell {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mud-cal-month-cell-title {
  padding: 0;
  padding-top: 4px;
}

.mud-cal-month-cell-title-today {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  display: inline-block;
  background-color: #0061D2;
  color: white;
}

.mud-cal-month-cell-title.mud-cal-month-outside .mud-cal-month-cell-events {
  color: var(--mud-palette-text-disabled);
  background: lightgray;
}

.mud-cal-month-cell-title .mud-link {
  color: inherit !important;
  cursor: pointer;
}

.mud-cal-month-cell-events {
  flex-grow: 1;
}

.mud-cal-week-view {
  height: 100%;
}

.mud-cal-week-view table * tr > td {
  border-bottom: none;
}

.mud-cal-week-cell {
  border-top: 1px solid var(--mud-palette-lines-default);
  height: 36px;
}

.mud-cal-week-cell.mud-cal-week-cell-half {
  border-top: 1px solid var(--mud-palette-divider);
}

.mud-cal-week-height {
  height: 36px;
}

.mud-cal-time-column {
  width: 60px;
}

.mud-cal-time-cell {
  text-align: center;
}

.mud-cal-week-day-holder {
  height: 100%;
}

.mud-cal-week-scroll {
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: scroll;
}

.mud-cal-week-layer {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.mud-cal-week-cell-holder {
  position: relative;
}

.mud-cal-week-link {
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.mud-cal-week-link:hover {
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.05);
}

.mud-cal-week-cell-link {
  cursor: pointer;
  z-index: 100;
}

.mud-cal-cell-template {
  width: 100%;
  padding: 3px;
  min-height: 26px;
  margin: 0px;
}

.mud-cal-week-view .mud-cal-cell-template {
  height: 100%;
}

.mud-cal-week-view .mud-cal-cell-template-chip {
  height: 100%;
}

.mud-cal-cell-template-chip {
  width: 100%;
  margin: 1px;
  align-items: center;
  height: 100%;
  padding-top: -24px;
  float: left;
  background: #0B77C7;
}

.mud-cal-cell-template-chip-color {
  background: #0B77C7;
}

.mud-chip > .mud-chip-content-calendar {
  height: 100%;
  max-width: 100%;
  user-select: none;
}

.calendar-label-header {
  /*font-size: 0.6rem;
  color: inherit;
  float: left;
  margin: 2px;
  padding: 0px;
  margin-left: 0px;
  margin-top: 7px;
  font-weight: 400;*/
  font-size: 0.6rem;
  color: inherit;
  float: left;
  margin: -5px;
  padding: 0px;
  /*margin-left: 10px;*/
  /* margin-top: 7px; */
  font-weight: 400;
  margin-right: auto;
}

.milestone-icon-start {
  background: url("../assets/ml_start.svg") no-repeat;
  /* color: white;
  color: white;
  float: left;
  margin-left: 7px;
  margin-top: 7px;
  margin-right: -15px;*/
  color: white;
  color: white;
  float: left;
  margin-left: 7px;
  margin-top: 7px;
}

.milestone-icon-end {
  background: url("../assets/ml_end.svg") no-repeat;
  /*float: left;
  color: white;
  margin-top: 10px;
  float: right;
  margin-left: 7px;
  margin-top: 3px;
  float: left;*/
  /* color: white; */
  /* margin-top: 10px; */
  /* float: right; */
  /* margin-left: 7px; */
  /* margin-top: 7px; */
  color: white;
  color: white;
  float: right;
  margin-top: 7px;
  /* margin-right: 7px; */
  /* margin-right: -15px;*/
}

.milestone-text {
  position: absolute;
  left: 43%;
  margin-bottom: -36px;
  margin-top: 0px;
}

.mud-chip-content-calendar {
  align-items: center;
  height: 100%;
  max-width: 100%;
  user-select: none;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 2px;
}

.calendar-chip {
  color: white;
}

.namesizeelips {
  text-overflow: ellipsis;
  max-width: 25ch;
}

.popup-label {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.68);
}

.popup-text {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.87);
  margin-bottom: 5px;
}

.popup-text-tooltip {
  /*text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 35ch;
  color: inherit;
  text-align: initial;*/
  width: 39ch;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.popup-icon {
  margin-left: 15px;
  margin-right: 5px;
}

.popup-button {
  color: #00AAFF;
  margin-right: 20px;
}

.popup-header {
  font-size: 18px;
  width: 80%;
  color: rgba(0, 0, 0, 0.87);
}

.listpopup-container {
  max-height: 350px;
  margin-top: 8px;
  overflow-y: scroll;
}

.calendar-project-tile-info {
  margin-left: 5px;
  text-overflow: ellipsis;
  font-size: 0.6rem;
  white-space: nowrap;
  overflow: hidden;
  width: 110px;
  color: inherit;
  text-align: initial;
  font-weight: 400;
}

.calendar-overdue-icon {
  background: url(../assets/overdue.svg) no-repeat;
  margin-left: 3px;
  margin-top: 3px;
  font-size: 1.3rem;
  float: left;
  background-size: 15px;
  margin-right: 3px;
}

.calendar-completed-icon {
  background: url("../assets/completed.svg") no-repeat;
  margin-left: 5px;
  margin-top: 3px;
  font-size: 1.2rem;
  float: left;
  background-size: 15px;
  margin-right: 5px;
}

.calendar-attachment-icon {
  margin-left: 5px;
  font-size: 1rem !important;
  vertical-align: sub;
}

.calendar-comment-icon {
  margin-left: 5px;
  font-size: 1rem !important;
  vertical-align: sub;
}

/*.calendar-comment-icon:hover {
    cursor: pointer;
    color: #00aaff;
}

.calendar-comment-count:hover {
    color: #00aaff;
    cursor: pointer;
}*/
/*
.calendar-comment-count-container:hover .calendar-comment-count {
    color: #00aaff;
    cursor: pointer;
}

.calendar-comment-count-container:hover .calendar-comment-icon {
    color: #00aaff;
    cursor: pointer;
}

.calendar-attachment-count:hover {
    color: #00aaff;
    cursor: pointer;
}

.calendar-attachment-count-container:hover .calendar-attachment-count {
    color: #00aaff;
    cursor: pointer;
}

.calendar-attachment-count-container:hover .calendar-attachment-icon {
    color: #00aaff;
    cursor: pointer;
}*/
.calendar-icon-row {
  padding-left: 0px;
  line-height: 20px;
}

.today-text {
  /*width: 60px;
      height: 35px;
      background: #FFFFFF;
      border: 1px solid #4B4F52;
      border-radius: 15px;
      box-sizing: border-box;
      left: 102px;*/
  margin-left: 70px;
}

.overdue-cell {
  background: #F6E0E4;
  color: black !important;
}

.completed-cell {
  background: #b3ffd4;
  color: black !important;
}

.status-indicate {
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  letter-spacing: 0.36px;
  padding-left: 5px;
}

.indicate-container {
  display: flex;
  margin-bottom: 10px;
}

.overdue-milestone-icon {
  /* background: url('../assets/ml_end.svg') no-repeat;
      float: left;
      color: #FF5C6F;
      margin-top: 10px;
      float: right;
      margin-left: 7px;
      margin-top: 3px;*/
  background: url(../assets/overdue.svg) no-repeat;
  color: #FF5C6F;
  margin-left: 7px;
  margin-top: 3px;
  font-size: 1.3rem;
  float: left;
  background-size: 16px;
  margin-right: -5px;
}

.completed-milestone-icon {
  /* background: url('../assets/ml_end.svg') no-repeat;
  float: left;
  color: #00BF54;
  margin-top: 10px;
  float: right;
  margin-left: 7px;
  margin-top: 3px;*/
  background: url(../assets/completed.svg) no-repeat;
  color: #00BF54;
  margin-left: 7px;
  margin-top: 3px;
  font-size: 1.3rem;
  float: left;
  background-size: 15px;
  margin-right: -15px;
}

.calendar-mud-dialog-actions {
  border-style: solid;
  padding-top: 15px !important;
  border-width: 1px 0px 0px 0px;
  border-color: gainsboro;
}

.list-poup-left {
  float: inherit;
  margin-left: 10px;
}

.list-popup-padding {
  padding: 0px 0;
}

.mud-dialog-actions {
  margin: 0px 0px;
}

.listdiv {
  float: initial;
  margin-left: 6px;
  margin-top: 5px;
  margin-right: 33px;
}

.list-popup-padding > .mud-dialog-title > .mud-button-root {
  top: 0px;
}

/*@use './RecentActivityDialog';*/
@media print {
  thead {
    display: table-row-group;
  }

  @page {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  @page :first {
    margin-top: 0px;
  }
  @page {
    margin-left: 0px;
    margin-right: 0px;
  }
  div, span, table, pre, thead, th, tr {
    page-break-inside: auto;
  }

  td {
    page-break-inside: avoid;
  }

  body * {
    visibility: hidden;
    overflow: visible !important;
  }

  .page-container, .mud-paper {
    left: 0px !important;
    width: 100%;
  }

  .report-details-view__report, .report-details-view__container {
    margin: -25px !important;
  }

  .info-item__label {
    line-height: 1.15rem;
  }

  .checkout-sheet-title {
    background-color: #00539E !important;
    text-align: center;
  }

  aside, .mud-drawer, .mud-drawer-content, .app-bar, .mud-appbar, .mud-tabs-toolbar, .mud-tabs-toolbar-inner, .mud-button, .mud-icon-button, .checkout-wizard, .checkout-sheet-report {
    display: none !important;
  }

  .mud-drawer-open-persistent-left:not(.mud-drawer-open-persistent-right) .mud-main-content {
    margin-left: 0px !important;
  }

  .element-top-app-bar-adjust--fixed-standard {
    margin-top: 0px;
  }

  .element-card {
    margin-top: 0px;
  }

  #section-to-print, #section-to-print * {
    visibility: visible;
  }

  #punchlist-to-print, #punchlist-to-print * {
    visibility: visible;
  }

  .mud-chart-legend-marker {
    -webkit-print-color-adjust: exact;
  }

  .header-layout {
    -webkit-print-color-adjust: exact;
  }

  .point-verification-row, tr, th, td {
    -webkit-print-color-adjust: exact;
  }

  .pdf-page-section {
    page-break-after: always;
  }

  .equipmenttype-table {
    margin-top: 30px;
  }

  .pdf-section-number {
    margin-left: 585px;
    margin-bottom: 10px;
    color: blue;
  }
}
.mud-button {
  text-transform: capitalize;
}

.mud-tab {
  text-transform: capitalize;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 3000;
  color: #000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.mud-snackbar {
  max-width: 600px;
  width: 600px;
}

.mud-alert-filled-success {
  color: #fff;
  font-weight: 500;
  border-left: 10px solid #00C882;
  background-color: #000000;
}

.mud-alert-filled-success .mud-icon-root.mud-svg-icon {
  fill: #00C882;
}

.mud-alert-filled-warning {
  color: #fff;
  font-weight: 500;
  border-left: 10px solid #FF9800;
  background-color: #000000;
}

.mud-alert-filled-warning .mud-icon-root.mud-svg-icon {
  fill: #FF9800;
}

.mud-alert-filled-error {
  color: #fff;
  font-weight: 500;
  border-left: 10px solid #F44336;
  background-color: #000000;
}

.mud-alert-filled-error .mud-icon-root.mud-svg-icon {
  fill: #F44336;
}

.mud-table-root .mud-table-head .mud-table-cell {
  font-weight: 600;
}

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