@charset "UTF-8";
/* Accordion control */
.accordionHeader {
  border-bottom: var(--theme-primary-color) 1px solid;
  border-left: var(--theme-primary-color) 1px solid;
  padding: 5px;
  background-color: var(--theme-primary-color);
  margin-top: 5px;
  color: #FFFFFF;
  border-top: var(--theme-primary-color) 1px solid;
  cursor: pointer;
  font-weight: bold;
  border-right: var(--theme-primary-color) 1px solid; }

.accordionHeader:before {
  content: "+ "; }

.accordionHeaderSelected:before {
  content: "- "; }

.accordionHeaderSelected {
  border-bottom: var(--theme-primary-color) 1px solid;
  border-left: var(--theme-primary-color) 1px solid;
  padding: 5px;
  background-color: var(--theme-primary-color);
  margin-top: 5px;
  color: #FFFFFF;
  border-top: var(--theme-primary-color) 1px solid;
  cursor: pointer;
  font-weight: bold;
  border-right: var(--theme-primary-color) 1px solid; }

.accordionContent {
  border-bottom: var(--theme-primary-color) 1px dashed;
  border-left: var(--theme-primary-color) 1px dashed;
  border-top: medium none;
  border-right: var(--theme-primary-color) 1px dashed;
  padding: 10px; }

#accordion div div {
  border: 1px solid silver;
  border-top: none; }

#accordion div h3 {
  background-color: var(--theme-primary-color); }

/* END Accordion control */
/* Accordion styles */
.ps_accordions {
  max-width: calc(100vw - 300px);
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #ddd;
  padding: 5px;
  box-sizing: border-box;
  gap: 5px; }

.ps_accordion-item {
  width: 100%; }
  .ps_accordion-item .ps_pi-label {
    display: flex;
    justify-content: space-between;
    padding: 0.2em;
    background: #eee;
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #ddd;
    padding-left: 10px;
    /* Icon */ }
    .ps_accordion-item .ps_pi-label:hover {
      background: #dbd9d6; }
    .ps_accordion-item .ps_pi-label::after {
      transform: rotate(90deg);
      transform-origin: 9.666px 11.666px;
      content: "\276F";
      width: 1em;
      height: 1em;
      text-align: center;
      transition: transform .3s;
      padding-right: 10px; }
  .ps_accordion-item .ps_pi-check {
    position: absolute;
    top: 0;
    z-index: -1; }
    .ps_accordion-item .ps_pi-check:checked + .ps_pi-label {
      background: #dbd9d6; }
      .ps_accordion-item .ps_pi-check:checked + .ps_pi-label::after {
        transform: rotate(-90deg); }
    .ps_accordion-item .ps_pi-check:checked ~ .ps_ai-content {
      border: 1px solid #ddd;
      border-top: none;
      overflow: visible; }
    .ps_accordion-item .ps_pi-check:not(:checked) ~ .ps_ai-content {
      max-height: 0px !important;
      padding: 0 1em;
      border: 0px solid white; }
  .ps_accordion-item .ps_ai-content {
    padding: 1em;
    height: auto;
    transition: max-height ease 0.3s, border ease 0.3s, padding ease 0.3s;
    overflow: hidden;
    background-color: #fefefe; }

.ps_accordion-footer {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between; }

.PSTable, .PSDataTable {
  border-collapse: collapse;
  width: 100%; }

.PSTable th, .PSDataTable th {
  border: 1px solid #ddd;
  background: #eee;
  padding: 9px;
  border-bottom-width: 2px; }

.PSTable td, .PSDataTable td {
  border: 1px solid #ddd;
  padding: 8px; }

.gv-login-accounts {
  margin-top: 10px; }

.PSDataTable tbody tr:nth-child(even) {
  background-color: #f1f1f1; }

.PSTable.ExplicitRowStyles .Row, .PSDataTable.ExplicitRowStyles .Row {
  background-color: #FFF; }
.PSTable.ExplicitRowStyles .AltRow, .PSDataTable.ExplicitRowStyles .AltRow {
  background-color: #f1f1f1; }

.PSDataTable thead .sorting, .PSDataTable thead .sorting_desc, .PSDataTable thead .sorting_asc {
  cursor: pointer; }

.PSDataTable thead th[data-orderable="false"] {
  cursor: default; }

.PSTable th a, .PSDataTable th a {
  color: black;
  background-color: transparent !important; }

.ps_table_label_cell {
  font-weight: bold;
  width: 120px;
  white-space: nowrap; }

#lbchSelectAll {
  cursor: default; }
  #lbchSelectAll #psSelectAllOrders {
    cursor: pointer; }

.ps_control-bar {
  position: relative;
  z-index: 1;
  width: fit-content;
  display: flex;
  align-items: center;
  height: 20px; }
  .ps_control-bar .ps_control-bar-content {
    margin-left: 10px;
    width: fit-content; }
  .ps_control-bar #IDSetReviewed, .ps_control-bar #IDSetUnreviewed {
    display: none;
    line-height: 18px;
    margin-top: 35px; }
  .ps_control-bar .material-icons {
    color: #333;
    margin: auto 20px auto 5px;
    font-size: 22px;
    cursor: pointer; }

tr.ps_RowSelected {
  background-color: var(--theme-primary-color-faded) !important; }

#tblWorkOrders input[type=checkbox] {
  cursor: pointer; }

.PSDetails, .PSForm {
  width: 100% !important;
  border-collapse: collapse;
  margin-bottom: 15px; }

.PSDetails td, .PSForm td {
  border: 1px solid #ddd;
  padding: 9px 6px; }

.PSListInTable td, .PSForm td {
  border: 1px solid #ddd;
  padding: 1px; }

.SummaryRow {
  font-weight: bold;
  text-decoration: underline;
  text-align: center; }

.content .PSDetails a, .PSForm a {
  margin: 4px; }

.PSTable .Row {
  background-color: #f1f1f1; }

.borderlessTable td {
  border: none !important;
  padding: 4px !important; }

.PSTable input[type=text] {
  margin-right: 5px !important;
  box-sizing: border-box; }

.PSDataTable input[type=text] {
  margin-right: 5px !important;
  box-sizing: border-box; }

.RowDeleted td {
  text-decoration: line-through; }

.RowDeleted td a {
  text-decoration: line-through; }

.highlightTR td {
  /*background-color: #0026ff;*/
  background: var(--theme-secondary-color);
  color: white; }

.PSDataTable a.ps_color-primary {
  color: var(--theme-primary-color); }

#tbTexts .lbSaveText {
  color: #368ee0;
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 4px;
  padding-top: 3px;
  border: 1px solid #ccc;
  line-height: 30px;
  background: white; }

#tbTexts .lbSaveText:hover {
  background: #EAEAEA;
  text-decoration: none; }

.signature {
  opacity: 1.0 !important; }

div.dataTables_filter {
  margin: 10px 0; }

div.dt-buttons {
  margin-top: 8px; }
  div.dt-buttons .dt-button:not(:last-child) {
    margin-right: 1px; }

div.dt-buttons button.buttons-excel, div.dt-buttons a.buttons-excel, div.dt-buttons-custom button.buttons-excel, div.dt-buttons-custom a.buttons-excel {
  background-size: 100%; }
div.dt-buttons button.buttons-pdf, div.dt-buttons a.buttons-pdf, div.dt-buttons-custom button.buttons-pdf, div.dt-buttons-custom a.buttons-pdf {
  background-size: 100%; }
div.dt-buttons button.buttons-csv, div.dt-buttons a.buttons-csv, div.dt-buttons-custom button.buttons-csv, div.dt-buttons-custom a.buttons-csv {
  background-size: 100%; }
div.dt-buttons .dt-button, div.dt-buttons-custom .dt-button {
  cursor: pointer;
  display: inline-block; }
  div.dt-buttons .dt-button span, div.dt-buttons-custom .dt-button span {
    visibility: hidden; }
div.dt-buttons button.dt-button, div.dt-buttons-custom button.dt-button {
  width: 46px;
  height: 46px; }
div.dt-buttons:after, div.dt-buttons-custom:after {
  clear: both; }

table.tbEmployeeSchedule input[type=text], table.tbEmployeeSchedule input[type=time] {
  width: 75px;
  text-align: center; }

#tblWorkOrders_filter {
  position: absolute;
  z-index: 1; }

table.dataTable.dt-checkboxes-select tbody tr,
table.dataTable thead th.dt-checkboxes-select-all,
table.dataTable tbody td.dt-checkboxes-cell {
  cursor: pointer; }

table.dataTable thead th.dt-checkboxes-select-all,
table.dataTable tbody td.dt-checkboxes-cell {
  text-align: center; }

div.dataTables_wrapper span.select-info,
div.dataTables_wrapper span.select-item {
  margin-left: 0.5em; }

@media screen and (max-width: 640px) {
  div.dataTables_wrapper span.select-info,
  div.dataTables_wrapper span.select-item {
    margin-left: 0;
    display: block; } }
#tblBaitStations .floorPlan a {
  color: #C9F4F1;
  text-decoration: none;
  line-height: inherit; }

#ExportButtons .hyperlink-xls {
  margin: 0;
  border: none;
  padding: 0; }
  #ExportButtons .hyperlink-xls:hover {
    background: none; }

#tblStockOverview tbody td, #tblStockOverview thead th {
  text-wrap: nowrap !important; }

td.article, #lbArticleName {
  position: sticky;
  left: 0; }

tr.odd td.article {
  background: #fff; }

tr.even td.article {
  background: #f1f1f1; }

.dt-toolbar {
  float: left;
  margin: 10px 0;
  display: flex;
  gap: 1rem; }

#tblInvoiceLines .flexdatalist-alias {
  width: 400px; }

#tbCustomers td a {
  text-align: left; }

#divDetails .dataTables_filter {
  top: -40px; }
#divDetails #tbRegs {
  position: sticky;
  overflow-x: scroll;
  max-height: 500px; }
  #divDetails #tbRegs thead {
    top: 0; }

.break-word {
  word-break: break-word; }

#tbSurveys tbody tr td:first-of-type a {
  text-align: left; }

table.NewAddress tb {
  border: none;
  padding: 4px 6px; }

.NewAddress table {
  width: 100%;
  border-collapse: collapse !important;
  margin-bottom: 15px;
  margin-top: 15px; }

.NewAddress td {
  border: 1px solid #ddd;
  padding: 9px 6px; }

.NewAddress a {
  margin: 4px; }

.NewAddress span {
  display: block; }

.NewAddress.CustomerPage #tdZip {
  width: 21%; }

.NewAddress.CustomerPage #tdHouseNumber {
  width: 170px; }

.NewAddress.CustomerPage #txtNewZip {
  width: 95%; }

.NewAddress.CustomerPage #txtNewStreet {
  width: 97%; }

.NewAddress.CustomerPage #txtNewHouseNumber {
  width: 176px; }

.NewAddress.SurveyPage #tdZip {
  width: 260px; }

.NewAddress.SurveyPage #tdHouseNumber {
  width: 177px; }

.NewAddress.SurveyPage #txtNewCity,
.NewAddress.SurveyPage #txtHouseNumberAddition,
.NewAddress.SurveyInfoPage #txtNewCity,
.NewAddress.SurveyInfoPage #txtHouseNumberAddition {
  width: 342px; }

.NewAddress.SurveyPage #txtNewStreet {
  width: 442px; }

.NewAddress.SurveyPage #txtNewZip {
  width: 250px; }

.NewAddress.SurveyPage #txtNewHouseNumber {
  width: 167px; }

.NewAddress.SurveyInfoPage #tdZip {
  width: 240px; }

.NewAddress.SurveyInfoPage #tdHouseNumber {
  width: 170px; }

.NewAddress.SurveyInfoPage #txtNewZip {
  width: 230px; }

.NewAddress.SurveyInfoPage #txtNewStreet {
  width: 413px; }

.NewAddress.SurveyInfoPage #txtNewHouseNumber {
  width: 160px; }

.docsGridView {
  display: flex;
  align-items: center; }

.PSDocsTable {
  flex-grow: 1; }

.DocsTableReorderButtons {
  display: flex;
  flex-direction: column;
  height: 50%;
  justify-content: center;
  margin-left: 10px; }

body, html {
  display: inline-block;
  min-width: 100%; }

* {
  font-family: 'Open Sans', arial, sans-serif; }

/* Body */
.language {
  display: inline;
  color: white;
  height: 48px;
  width: 46px;
  margin-left: 2px;
  margin-top: 1px; }

#pnlActiveLanguage {
  padding: 5px; }
  #pnlActiveLanguage img {
    width: 36px;
    height: 36px; }

.languages {
  transform: translate(calc(-100% + 51px), -3px);
  display: none;
  background-color: white;
  position: sticky;
  box-sizing: border-box;
  z-index: 1000;
  width: fit-content;
  max-height: 500px;
  overflow: auto; }
  .languages .languageEntry {
    color: black;
    overflow: hidden;
    background-color: #f3f2f1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding: 4px 10px; }
    .languages .languageEntry:hover {
      cursor: pointer;
      background-color: #d0d0d0; }
    .languages .languageEntry img {
      width: 36px;
      border: solid 1px black;
      box-sizing: border-box;
      transition: box-shadow 0.3s ease-in-out;
      border-radius: 20px; }
      .languages .languageEntry img:hover {
        box-shadow: inset 0 0 1000px 1000px var(--theme-primary-color-faded); }

.language:hover .languages {
  display: block; }

.flex-column {
  display: flex;
  flex-direction: column; }

.app-notifications-add .app-notifications-add-panel {
  display: none;
  width: 360px;
  height: 550px;
  overflow: auto;
  z-index: 5;
  position: absolute;
  right: 0;
  top: 44px;
  padding: 20px;
  background: #f3f2f1; }
  .app-notifications-add .app-notifications-add-panel .panel-content {
    display: grid;
    grid-auto-rows: 25px 1fr 1fr 1fr 1fr 40px;
    height: 100%;
    width: 100%;
    align-items: center; }
    .app-notifications-add .app-notifications-add-panel .panel-content .jqte {
      margin: 0; }
    .app-notifications-add .app-notifications-add-panel .panel-content .language-panel {
      display: flex;
      gap: 5px; }
      .app-notifications-add .app-notifications-add-panel .panel-content .language-panel a img {
        width: 20px;
        height: 20px;
        border-radius: 20px;
        border: solid black 1px; }
      .app-notifications-add .app-notifications-add-panel .panel-content .language-panel a.panel-active img {
        border: solid #9B1D20 1px; }
    .app-notifications-add .app-notifications-add-panel .panel-content .localization {
      gap: 10px;
      height: 100%; }
      .app-notifications-add .app-notifications-add-panel .panel-content .localization > div {
        display: flex;
        flex-direction: column; }
      .app-notifications-add .app-notifications-add-panel .panel-content .localization .jqte {
        height: 255px; }
        .app-notifications-add .app-notifications-add-panel .panel-content .localization .jqte .jqte_editor {
          height: 172px; }
      .app-notifications-add .app-notifications-add-panel .panel-content .localization.nl, .app-notifications-add .app-notifications-add-panel .panel-content .localization.de {
        display: none; }
    .app-notifications-add .app-notifications-add-panel .panel-content .footer {
      display: flex;
      justify-content: space-between; }
    .app-notifications-add .app-notifications-add-panel .panel-content input[type='checkbox'] {
      align-self: baseline; }

.app-notifications:not(.notification-disabled):hover .app-notifications-panel {
  display: block; }

.app-notifications {
  height: 49px;
  display: flex;
  align-items: center; }
  .app-notifications.loading .app-notifications-panel > div {
    display: none; }
    .app-notifications.loading .app-notifications-panel > div.loader {
      display: flex;
      justify-content: center; }
      .app-notifications.loading .app-notifications-panel > div.loader img {
        border-radius: 20px; }
  .app-notifications.loading .app-notifications-panel hr {
    display: none; }
  .app-notifications div.loader {
    display: none; }
  .app-notifications .ps-app-notification-badge {
    top: 3px; }
  .app-notifications .app-notifications-panel {
    display: none;
    width: 360px;
    min-height: 400px;
    max-height: calc(100vh - 300px);
    overflow: auto;
    z-index: 5;
    position: absolute;
    right: 0;
    top: 48px;
    padding: 20px;
    background: #f3f2f1; }
    .app-notifications .app-notifications-panel .template {
      display: none; }
    .app-notifications .app-notifications-panel .hr-text {
      border: 0;
      font-size: 14px;
      height: 1.5em;
      line-height: 1em;
      position: relative;
      text-align: center;
      background: none; }
      .app-notifications .app-notifications-panel .hr-text::before {
        content: "";
        background: linear-gradient(to right, transparent, black, transparent);
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 1px; }
      .app-notifications .app-notifications-panel .hr-text::after {
        background-color: #f3f2f1;
        color: black;
        content: attr(data-content);
        line-height: 1.5em;
        padding: 0 7px;
        position: relative; }
    .app-notifications .app-notifications-panel .app-notifications-read .app-notification-body {
      filter: contrast(0.6); }
    .app-notifications .app-notifications-panel .app-notifications-read .app-notification-header div:last-child {
      visibility: hidden; }
    .app-notifications .app-notifications-panel .app-notification {
      padding: 0 0 20px 0; }
      .app-notifications .app-notifications-panel .app-notification .app-notification-header {
        border-radius: 7px 7px 0 0;
        display: grid;
        grid-auto-columns: 48px 1fr 100px 24px;
        grid-auto-rows: 100%;
        height: 24px;
        padding: 7px 0 3px 0;
        color: white; }
        .app-notifications .app-notifications-panel .app-notification .app-notification-header div:nth-child(1) {
          grid-area: 1/1;
          background-size: 20px;
          background-repeat: no-repeat;
          background-position: top; }
        .app-notifications .app-notifications-panel .app-notification .app-notification-header div:nth-child(2) {
          grid-area: 1/2;
          font-weight: 600;
          font-size: larger; }
        .app-notifications .app-notifications-panel .app-notification .app-notification-header div:nth-child(3) {
          grid-area: 1/3;
          text-align: center;
          padding: 1px 0 0 8px;
          font-size: 12px; }
        .app-notifications .app-notifications-panel .app-notification .app-notification-header div:nth-child(4) {
          grid-area: 1/4;
          font-weight: 600; }
          .app-notifications .app-notifications-panel .app-notification .app-notification-header div:nth-child(4) span {
            cursor: pointer; }
      .app-notifications .app-notifications-panel .app-notification.app-release .app-notification-body {
        background-color: #f4f4fa;
        border: 1px solid #3F4081; }
      .app-notifications .app-notifications-panel .app-notification.app-release .app-notification-header {
        background-color: #3F4081;
        border: 1px solid #3F4081; }
        .app-notifications .app-notifications-panel .app-notification.app-release .app-notification-header div:first-child {
          background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDBweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSI0MHB4IiBmaWxsPSIjRkZGRkZGIj48cGF0aCBkPSJtNDgwLTM1OC43MiAxMDQuMjYgNzkuMDJxMTMuNzQgMTEuNzQgMjguMzMuOTYgMTQuNTgtMTAuNzggOS42LTI3LjU4TDU4MC42MS00MzUuOGwxMDIuOTMtNzQuMTZxMTQuMDctOS4yNyA4LjQzLTI2LjI0LTUuNjMtMTYuOTctMjEuOTQtMTYuOTdINTQzLjk5bC00MS41LTEzNS4zOXEtNC45OC0xNi4yMi0yMi4xNi0xNi4yMi0xNy4xNyAwLTIyLjgyIDE2LjIybC00Mi4xNyAxMzUuMzlIMjkwLjM1cS0xNy4zNSAwLTIyLjk5IDE2Ljk3LTUuNjMgMTYuOTcgOS4xIDI2LjI0bDEwMi4yNiA3NC4xNi00MC45MSAxMzAuMTVxLTQuOTggMTYuNzkgOS42IDI3LjI0IDE0LjU5IDEwLjQ1IDI5LTEuMjlMNDgwLTM1OC43MlptMCAzMDQuNTdxLTg4Ljg3IDAtMTY3LjM2LTMyLjc4LTc4LjUtMzIuNzgtMTM1LjcxLTkwLTU3LjIyLTU3LjIxLTkwLTEzNS43MVE1NC4xNS0zOTEuMTMgNTQuMTUtNDgwcTAtODkuNSAzMi44My0xNjcuNDIgMzIuODQtNzcuOTEgOTAuMjYtMTM1LjQ3IDU3LjQxLTU3LjU2IDEzNS43MS05MC40NSA3OC4yOS0zMi44OSAxNjcuMDUtMzIuODkgODkuNSAwIDE2Ny40MyAzMi44OHQxMzUuNDggOTAuNDRxNTcuNTYgNTcuNTUgOTAuNDQgMTM1LjUxIDMyLjg4IDc3Ljk2IDMyLjg4IDE2Ny40OCAwIDg5LjE1LTMyLjg5IDE2Ny4yMXQtOTAuNDUgMTM1LjQ3cS01Ny41NiA1Ny40Mi0xMzUuNDcgOTAuMjZRNTY5LjUtNTQuMTUgNDgwLTU0LjE1WiIvPjwvc3ZnPg=="); }
      .app-notifications .app-notifications-panel .app-notification.app-warning .app-notification-body {
        background-color: #fcf1f2;
        border: 1px solid #9B1D20; }
      .app-notifications .app-notifications-panel .app-notification.app-warning .app-notification-header {
        background-color: #9B1D20;
        border: 1px solid #9B1D20; }
        .app-notifications .app-notifications-panel .app-notification.app-warning .app-notification-header div:first-child {
          background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDBweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSI0MHB4IiBmaWxsPSIjRkZGRkZGIj48cGF0aCBkPSJNOTMuOTMtOTguNnEtMTQuOTEgMC0yNS44LTcuMjQtMTAuODgtNy4yNS0xNi4zMy0xNy44MS02LjUzLTkuMDEtNi43LTIyLjQxLS4xNi0xMy40IDYuNy0yNS44NWwzODYuNzQtNjY2LjgxcTYuMTgtMTIuMTggMTguMDgtMTguMTIgMTEuODktNS45NCAyMy40NC01Ljk0dDIzLjM4IDUuOTRxMTEuODQgNS45NCAxOC42OSAxOC4xMmwzODYuNzQgNjY2LjgxcTYuMTkgMTIuNDUgNi4wMyAyNS44NS0uMTcgMTMuNC02LjAzIDIyLjQxLTYuNDUgMTAuMS0xNy4zMyAxNy41OC0xMC44OCA3LjQ3LTI0LjggNy40N0g5My45M1ptMzg5LjA4LTEzMi42NnExNi43IDAgMjguMTktMTEuNiAxMS41LTExLjYgMTEuNS0yOC4xIDAtMTUuOTQtMTEuNjEtMjcuNzYtMTEuNjEtMTEuODMtMjguMzItMTEuODMtMTYuMTMgMC0yOC4wMyAxMS43OS0xMS45IDExLjgtMTEuOSAyOC4wMiAwIDE2LjUxIDEyLjAyIDI3Ljk5IDEyLjAxIDExLjQ5IDI4LjE1IDExLjQ5Wm0wLTExOS4ycTE1LjczIDAgMjYuNDgtMTEuMTIgMTAuNzYtMTEuMTIgMTAuNzYtMjYuNjl2LTEzNy41cTAtMTUuNDktMTAuODctMjYuMzEtMTAuODctMTAuODMtMjYuNjEtMTAuODMtMTUuMTYgMC0yNi4zMiAxMC44My0xMS4xNiAxMC44Mi0xMS4xNiAyNi4zMXYxMzcuNXEwIDE1LjU3IDExLjI4IDI2LjY5IDExLjI3IDExLjEyIDI2LjQ0IDExLjEyWiIvPjwvc3ZnPg=="); }
      .app-notifications .app-notifications-panel .app-notification.app-announcement .app-notification-body {
        background-color: #f5f9fd;
        border: 1px solid #3083DC; }
      .app-notifications .app-notifications-panel .app-notification.app-announcement .app-notification-header {
        background-color: #3083DC;
        border: 1px solid #3083DC; }
        .app-notifications .app-notifications-panel .app-notification.app-announcement .app-notification-header div:first-child {
          background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDBweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSI0MHB4IiBmaWxsPSIjRkZGRkZGIj48cGF0aCBkPSJNNDgyLjQyLTI2OC4wMXExOC41IDAgMzEuMzItMTIuOTYgMTIuODEtMTIuOTUgMTIuODEtMzEuODN2LTE2My4wOHEwLTE4LjIzLTEyLjktMzEuMTdRNTAwLjc2LTUyMCA0ODIuNDItNTIwcS0xOC4zMyAwLTMxLjU1IDEyLjk1LTEzLjIyIDEyLjk0LTEzLjIyIDMxLjE3djE2My4wOHEwIDE4Ljg4IDEzLjE0IDMxLjgzIDEzLjEzIDEyLjk2IDMxLjYzIDEyLjk2Wm0tMi41Mi0zMjMuNThxMjAuNjkgMCAzNC40MS0xMy40MSAxMy43Mi0xMy40MSAxMy43Mi0zMy43OCAwLTIyLjExLTEzLjYtMzUuNDktMTMuNi0xMy4zOC0zNC4yNC0xMy4zOC0yMS44MiAwLTM1LjAyIDEzLjIxLTEzLjIgMTMuMi0xMy4yIDM0Ljc5IDAgMjEuMDEgMTMuNjMgMzQuNTQgMTMuNjIgMTMuNTIgMzQuMyAxMy41MlptLjAyIDUzNy40NHEtODguMTUgMC0xNjUuOTUtMzMuMy03Ny44MS0zMy4zMS0xMzUuNTEtOTEuMDEtNTcuNy01Ny43LTkxLjAxLTEzNS41OS0zMy4zLTc3Ljg5LTMzLjMtMTY2LjIzIDAtODguMzUgMzMuMzYtMTY2LjAzIDMzLjM3LTc3LjY3IDkxLjMyLTEzNS42MiA1Ny45Ni01Ny45NCAxMzUuNTEtOTEuMTIgNzcuNTYtMzMuMTggMTY1LjYxLTMzLjE4IDg4LjQyIDAgMTY2LjM3IDMzLjE0IDc3Ljk1IDMzLjE1IDEzNS43IDkxLjAzIDU3Ljc2IDU3Ljg5IDkwLjk5IDEzNS44MyAzMy4yMiA3Ny45NCAzMy4yMiAxNjYuNDQgMCA4OC40OC0zMy4xOCAxNjUuNzQtMzMuMTggNzcuMjctOTEuMTIgMTM1LjEtNTcuOTUgNTcuODMtMTM1Ljc3IDkxLjMyLTc3LjgzIDMzLjQ4LTE2Ni4yNCAzMy40OFoiLz48L3N2Zz4="); }
      .app-notifications .app-notifications-panel .app-notification.app-reminder .app-notification-body {
        background-color: #fef8f5;
        border: 1px solid #EE964B; }
      .app-notifications .app-notifications-panel .app-notification.app-reminder .app-notification-header {
        background-color: #EE964B;
        border: 1px solid #EE964B; }
        .app-notifications .app-notifications-panel .app-notification.app-reminder .app-notification-header div:first-child {
          background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDBweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSI0MHB4IiBmaWxsPSIjRkZGRkZGIj48cGF0aCBkPSJNNTI2LjU1LTQ5OS4wMXYtMTQ0LjYzcTAtMTguMDUtMTIuNzgtMzEuMDgtMTIuNzgtMTMuMDMtMzEuMjMtMTMuMDMtMTguNDUgMC0zMS42NyAxMy4wMy0xMy4yMiAxMy4wMy0xMy4yMiAzMS4wOHYxNjEuNzZxMCAxMC4xNCAzLjM4IDE4LjgzIDMuMzggOC42OCAxMC4xMyAxNS4zMWwxMzAuMzkgMTMzLjA2cTEzLjI1IDEzLjM4IDMxLjk5IDEzLjU0IDE4Ljc0LjE3IDMyLjczLTEzLjU0IDEyLjMyLTEyLjA0IDEyLjgyLTMxLjY1LjUtMTkuNi0xMi43Ny0zMi44N0w1MjYuNTUtNDk5LjAxWk00ODAuMjQtNTQuMTVxLTg3LjQ5IDAtMTY1Ljc0LTMzLjQxLTc4LjI2LTMzLjQxLTEzNS44OS05MS4wMi01Ny42Mi01Ny42Mi05MS4wNC0xMzUuODUtMzMuNDItNzguMjQtMzMuNDItMTY1LjcxIDAtODcuNzMgMzMuNTUtMTY1LjQ1IDMzLjU1LTc3LjczIDkxLjI2LTEzNS4zOSA1Ny43LTU3LjY2IDEzNS43Ny05MS40NiA3OC4wNy0zMy43OSAxNjUuNDUtMzMuNzkgODcuNzUgMCAxNjUuNDYgMzMuNzhRNzIzLjM0LTgzOC42NiA3ODEtNzgxcTU3LjY2IDU3LjY2IDkxLjQ1IDEzNS4zOSAzMy43OCA3Ny43MyAzMy43OCAxNjUuNTEgMCA4Ny43OC0zMy43OSAxNjUuNjEtMzMuOCA3Ny44My05MS40NiAxMzUuNTMtNTcuNjYgNTcuNzEtMTM1LjMzIDkxLjI2LTc3LjY3IDMzLjU1LTE2NS40MSAzMy41NVoiLz48L3N2Zz4="); }
      .app-notifications .app-notifications-panel .app-notification.app-notif .app-notification-body {
        background-color: #eefdf9;
        border: 1px solid #0C7C59; }
      .app-notifications .app-notifications-panel .app-notification.app-notif .app-notification-header {
        background-color: #0C7C59;
        border: 1px solid #0C7C59; }
        .app-notifications .app-notifications-panel .app-notification.app-notif .app-notification-header div:first-child {
          background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iNDBweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSI0MHB4IiBmaWxsPSIjRkZGRkZGIj48cGF0aCBkPSJtNDIwLjY4LTQxNi43NC03OS4yLTc5Ljg3cS0xMy43My0xMy4xNy0zMy42Mi0xMy4xNy0xOS44OSAwLTM0LjAyIDEzLjU2LTEzLjg0IDEzLjkzLTEzLjc1IDM0IC4xIDIwLjA4IDE0LjMyIDMyLjY4TDM4Ni45Ny0zMTYuM3ExMy41NyAxNC43MyAzMy41NSAxNC43MyAxOS45OSAwIDM0LjU0LTE0LjczbDIyOC44NS0yMjguNjdxMTQuMjItMTMuNzMgMTQuMjItMzMuMzMgMC0xOS42MS0xNC4xMy0zNC40MS0xNC40MS0xMy4xNy0zNC42Ny0xMi44NC0yMC4yNS4zMy0zMy43MiAxMy41MWwtMTk0LjkzIDE5NS4zWm01OS4zNyAzNjIuNTlxLTg3Ljk3IDAtMTY1LjkzLTMzLjMtNzcuOTYtMzMuMzEtMTM1LjY2LTkxLjAxVDg3LjQ1LTMxNC4wN3EtMzMuMy03Ny45MS0zMy4zLTE2NS44OCAwLTg4LjIyIDMzLjM2LTE2Ni4xMyAzMy4zNy03Ny45IDkxLjItMTM1Ljc4IDU3LjgzLTU3Ljg3IDEzNS41OC05MS4xMiA3Ny43NC0zMy4yNSAxNjUuNjMtMzMuMjUgODguMjQgMCAxNjYuMjEgMzMuMjEgNzcuOTcgMzMuMjIgMTM1LjgxIDkxLjAzIDU3Ljg0IDU3LjgyIDkxLjA3IDEzNS43OSAzMy4yMiA3Ny45NiAzMy4yMiAxNjYuMjggMCA4OC4zLTMzLjI1IDE2NS44My0zMy4yNSA3Ny41Mi05MS4xMiAxMzUuMzctNTcuODggNTcuODQtMTM1LjczIDkxLjIxLTc3Ljg1IDMzLjM2LTE2Ni4wOCAzMy4zNloiLz48L3N2Zz4="); }
      .app-notifications .app-notifications-panel .app-notification .app-notification-body {
        border-radius: 0 0 7px 7px;
        padding: 10px 20px 10px 20px; }
        .app-notifications .app-notifications-panel .app-notification .app-notification-body span.title {
          font-weight: 600;
          font-size: medium;
          padding-bottom: 5px;
          display: block; }
        .app-notifications .app-notifications-panel .app-notification .app-notification-body p, .app-notifications .app-notifications-panel .app-notification .app-notification-body ul {
          margin: 0; }
        .app-notifications .app-notifications-panel .app-notification .app-notification-body p {
          padding: 0; }
      .app-notifications .app-notifications-panel .app-notification:last-child {
        padding: 0; }

input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none; }

.tblButton a {
  line-height: 12px !important; }

#tblActivitySummary {
  width: auto;
  float: left;
  min-width: 50%; }
  #tblActivitySummary #lbDescription, #tblActivitySummary #lbTotal {
    width: auto; }

body {
  color: #333;
  margin: 0;
  padding: 0; }

body, textarea {
  font-size: 13px;
  -webkit-font-smoothing: antialiased; }

.EditVisitType .EditVisitType img,
.DeleteVisitType .DeleteVisitType img,
.RestoreVisitType .RestoreVisitType img,
.ps_no-filter {
  pointer-events: none; }

.ps_EditVisitType, .ps_RestoreVisitType, .ps_DeleteVisitType, .EditWorkOrder .EditWorkOrder {
  cursor: pointer;
  position: relative; }

.ps_tdDisabled {
  pointer-events: none; }
  .ps_tdDisabled a {
    opacity: 0.3; }

.ps_rowIsDefault .ps_DeleteVisitType {
  opacity: 0.3;
  pointer-events: none; }

.post .ps_post-header {
  color: var(--theme-primary-color-text);
  position: relative;
  z-index: 3; }

.ps_doc {
  margin-top: -27px !important; }

.ps_hazards .ps_hazard-row input[type="checkbox"] {
  display: none; }
.ps_hazards .ps_hazard-row label {
  padding: 0;
  display: block;
  position: relative;
  margin: 2px;
  cursor: pointer;
  width: fit-content; }
.ps_hazards label:before {
  background-color: white;
  color: white;
  content: " ";
  display: block;
  border-radius: 50%;
  border: 1px solid grey;
  position: absolute;
  top: -3px;
  left: -2px;
  width: 24px;
  font-size: 19px;
  height: 24px;
  text-align: center;
  line-height: 25px;
  transition-duration: 0.2s;
  transform: scale(0); }
.ps_hazards label img {
  border: 2px solid #dadada;
  height: 80px;
  width: 80px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
  z-index: -2;
  border-radius: 14%; }
.ps_hazards :checked + label {
  z-index: 1; }
  .ps_hazards :checked + label img {
    border-color: #dadada; }
.ps_hazards :checked + label:before {
  content: "✓";
  background-color: var(--theme-primary-color);
  transform: scale(1); }
.ps_hazards label:before {
  z-index: 1; }
.ps_hazards :checked + label img {
  z-index: -1;
  border-radius: 14%; }
.ps_hazards .ps_hazard-row {
  display: flex;
  width: min-content;
  max-height: 87px; }
  .ps_hazards .ps_hazard-row a {
    padding: 0;
    border: 0;
    line-height: 0; }
    .ps_hazards .ps_hazard-row a:hover {
      background: transparent; }

.ps_suppliers .RowDeleted #lnkDelete {
  pointer-events: none;
  opacity: 0.5; }

.ps_hide {
  display: none; }

.ps_hidden {
  display: none; }

#divEditArticle {
  max-height: 750px;
  overflow: auto; }

.RowDeleted .EditControl {
  pointer-events: none;
  opacity: 0.6; }
.RowDeleted .tableLink a {
  pointer-events: none;
  text-decoration: none;
  opacity: 0.5; }
.RowDeleted .floorPlan a, .RowDeleted .floorPlan img {
  visibility: hidden; }

div.Header {
  background: var(--theme-primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  width: 100%;
  height: 48px;
  position: sticky;
  /*    top: 0;*/
  min-width: 1100px; }
  div.Header.pos_fixed {
    position: fixed; }

.ps_header-content {
  padding-left: 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center; }

.hamburger-title {
  color: var(--theme-primary-color-text); }

.contentLayout {
  min-width: 1000px;
  width: 100%;
  display: flex; }

#psBlockContent {
  height: max-content; }

.content {
  min-width: 1100px;
  padding: 20px 25px 20px 20px;
  height: 100%;
  width: 100%; }
  .content.pos_fixed {
    margin-top: 37px; }

.minimal-content {
  vertical-align: top;
  width: 100%; }

.ps_visitColor {
  text-align: center; }

.ps_visitType-btn-holder input, .ps_visitType-btn-holder label {
  margin-top: 20px; }
.ps_visitType-btn-holder label {
  top: -2px;
  position: relative; }

.post {
  margin: 0 auto;
  min-width: 1100px; }

.material-icons, .material-icons-outlined {
  color: var(--theme-primary-color-text); }

h2 {
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: lighter; }

.authIcon {
  display: none; }

a:hover {
  color: #2C6397;
  text-decoration: underline; }

a {
  color: var(--theme-primary-color); }

.ps_batch-header {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%; }
  .ps_batch-header #postHeader {
    color: var(--theme-primary-color-text); }

.Header .ps_logo-container {
  min-width: 270px; }

.sidebar-sm .trial-label {
  opacity: 0;
  width: 0; }

.ps_recommendation-badge, .trial-label {
  transition: 0.4s width ease-in-out, 0.4s opacity ease-in-out; }

.ps_sidebar-item {
  cursor: pointer; }
  .ps_sidebar-item .sideIcon {
    width: 26px;
    height: 26px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
    .ps_sidebar-item .sideIcon svg {
      width: 26px;
      height: 26px; }

.BlockHeader-text {
  color: #333;
  font-size: 18px;
  margin-left: 23px; }

.psReviewRecomendations #lblAdvCount {
  display: block; }

.psReviewOrders #lblOrdCount {
  display: block; }

.ps_review-badge-xxx {
  padding: 7px 3px !important; }

#lblReviewedAdvCount, #lblWorkOrdersCount, #lblAdvCount, #lblOrdCount, #lblOpenMsgCount, #ctl00_ctl00_LeftMenuPlaceHolder_lblReviewedAdvCount, #ctl00_ctl00_LeftMenuPlaceHolder_lblOpenMsgCount {
  color: var(--theme-primary-color-text);
  background: var(--theme-secondary-color);
  font-size: 12px;
  font-weight: bold;
  font-family: sans-serif;
  text-align: center;
  display: block;
  float: left;
  height: 10px;
  padding: 6px 8px;
  width: auto;
  line-height: 10px;
  box-sizing: initial;
  border-radius: 10px;
  transform: translate(-50%, 0); }

#lblAdvCount, #lblOrdCount {
  display: none;
  position: absolute;
  top: 28px;
  right: 40px; }

.planningSchema {
  padding: 10px; }

#map {
  width: 100%;
  height: 700px; }

.markerlabel {
  width: 13px;
  height: 12px;
  border: 1px solid gray;
  border-radius: 5px;
  background: gray;
  text-align: center;
  line-height: 14px;
  font-weight: bold;
  font-size: 11px;
  color: white; }

.ps_contact div:first-child:hover {
  background: silver !important; }

.ps_chatStatusOpen {
  background-color: var(--theme-secondary-color-faded) !important; }

.ps_chatSelected {
  background-color: silver !important; }

.ps_rowMarked {
  background-color: var(--theme-secondary-color-faded) !important; }

.ps_iconActive {
  border: 1px solid white;
  border-radius: 10px; }

.ps_accountRights {
  position: relative;
  height: 100%;
  user-select: none; }
  .ps_accountRights * {
    user-select: none; }
  .ps_accountRights .header {
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    z-index: 10; }
    .ps_accountRights .header .brush-area {
      display: flex;
      gap: 20px;
      margin-bottom: 10px; }
      .ps_accountRights .header .brush-area .permission-box-selector {
        padding: 5px;
        border: 1px solid transparent;
        border-radius: 10px; }
        .ps_accountRights .header .brush-area .permission-box-selector.active {
          border: 1px solid lightcoral; }
  .ps_accountRights .description {
    display: flex;
    gap: 10px; }
    .ps_accountRights .description span {
      align-self: center; }
    .ps_accountRights .description .freshdesk-link {
      margin-top: 3px; }
  .ps_accountRights .permission-box-brush > div {
    margin: 0; }
  .ps_accountRights .permission-box-brush {
    margin: auto auto; }
  .ps_accountRights .permission-box {
    display: flex;
    border: solid 1px transparent;
    height: 20px;
    justify-content: center;
    align-items: center; }
  .ps_accountRights .permission-box > div, .ps_accountRights .permission-box-brush {
    width: 13px;
    height: 13px;
    border: 1px solid black;
    border-radius: 4px;
    background-color: white; }
  .ps_accountRights .permission-box.read > div, .ps_accountRights .permission-box-brush.read {
    background-color: cornflowerblue; }
  .ps_accountRights .permission-box.write > div, .ps_accountRights .permission-box-brush.write {
    background-color: limegreen; }
  .ps_accountRights .permission-box.implicit-write > div, .ps_accountRights .permission-box-brush.implicit-write {
    background-color: #d5fcc7; }
  .ps_accountRights .rightsGrid {
    display: grid;
    overflow-x: auto;
    overflow-y: auto;
    width: auto;
    max-width: 1600px;
    height: auto;
    max-height: 600px; }
    .ps_accountRights .rightsGrid .rightsGridRow {
      display: grid; }
      .ps_accountRights .rightsGrid .rightsGridRow div {
        grid-row: 1; }
    .ps_accountRights .rightsGrid .highlight {
      grid-area: 0/0;
      display: none; }
    .ps_accountRights .rightsGrid .title-cell {
      display: grid;
      grid-template-columns: repeat(2, auto);
      grid-template-rows: repeat(2, auto);
      font-weight: 600;
      z-index: 4;
      left: 0; }
      .ps_accountRights .rightsGrid .title-cell .column-title {
        grid-area: 1 / 2;
        writing-mode: sideways-lr;
        display: flex;
        align-items: end; }
      .ps_accountRights .rightsGrid .title-cell .row-title {
        grid-area: 2 / 1; }
    .ps_accountRights .rightsGrid .firstColumn {
      background-color: white;
      white-space: nowrap;
      overflow: hidden;
      max-width: 170px;
      grid-column: 1; }
      .ps_accountRights .rightsGrid .firstColumn span {
        margin: 0 10px; }
      .ps_accountRights .rightsGrid .firstColumn:hover {
        width: max-content;
        max-width: max-content;
        min-width: 170px; }
      .ps_accountRights .rightsGrid .firstColumn.sticky {
        position: sticky;
        left: 0;
        z-index: 2; }
    .ps_accountRights .rightsGrid .column {
      writing-mode: sideways-lr;
      padding: 0 1px; }
      .ps_accountRights .rightsGrid .column span {
        margin: 10px 0; }
    .ps_accountRights .rightsGrid .column, .ps_accountRights .rightsGrid .title-cell {
      position: sticky;
      background-color: white; }
    .ps_accountRights .rightsGrid .firstRow {
      position: sticky;
      top: 0;
      z-index: 3; }
      .ps_accountRights .rightsGrid .firstRow .column {
        word-break: break-all; }
  .ps_accountRights .permission-box-selector .wrapper {
    display: flex; }
  .ps_accountRights .permission-box-selector, .ps_accountRights .row, .ps_accountRights .column {
    border: solid 1px transparent;
    background: transparent; }
    .ps_accountRights .permission-box-selector:hover, .ps_accountRights .permission-box-selector.hover, .ps_accountRights .row:hover, .ps_accountRights .row.hover, .ps_accountRights .column:hover, .ps_accountRights .column.hover {
      background: #e0f9f8; }
  .ps_accountRights .permission-box:hover, .ps_accountRights .permission-box.hover {
    background: #e0f9f8; }

.ps_control-bar-content .ignore-link {
  border: none;
  line-height: normal;
  padding: 0; }
  .ps_control-bar-content .ignore-link:hover {
    background: transparent; }

/*-------------------Here-starts-custom-styles---------------------*/
.ps_content-right {
  padding-right: 18px; }

.ps_header-link {
  text-decoration: none;
  position: relative; }

.ps_header-link > img {
  width: 30px;
  margin: 5px 2px; }

.ps_profile {
  height: 48px; }
  .ps_profile > img {
    width: 100%;
    height: 100%;
    border-radius: 50%; }

.ps_profile:hover .ps_profile-popup {
  display: block; }

.ps_profile-popup {
  overflow: hidden;
  width: auto;
  background-color: #f3f2f1;
  z-index: 5;
  position: absolute;
  min-width: max-content;
  transform: translateX(calc(-100% + 46px));
  display: none; }
  .ps_profile-popup .profile-row {
    display: flex;
    justify-content: end;
    height: 40px;
    padding-left: 10px;
    text-decoration: none; }
    .ps_profile-popup .profile-row .text {
      color: black;
      line-height: 40px;
      font-size: 1em; }
    .ps_profile-popup .profile-row .icon {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 10px; }
  .ps_profile-popup .profile-row:hover {
    background-color: #d0d0d0; }
  .ps_profile-popup .account-footer {
    background-color: #d0d0d0;
    padding: 6px 10px; }
    .ps_profile-popup .account-footer .full-name {
      font-weight: 700;
      display: flex;
      justify-content: end; }

.ps_help, .ps_profile, .pnlActiveLanguage {
  cursor: pointer; }

.ps_testFeatures-popup {
  display: none;
  width: auto;
  min-width: 210px;
  height: auto;
  max-height: 421px;
  overflow: auto;
  background-color: white;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
  z-index: 5;
  position: absolute;
  right: 16px;
  top: 30px;
  border-top-right-radius: 0; }

.ps_testFeatures-popup {
  width: 458px;
  max-height: 600px; }
  .ps_testFeatures-popup .section {
    padding: 0 5px; }
    .ps_testFeatures-popup .section .body {
      display: grid;
      grid-template-columns: auto auto; }
      .ps_testFeatures-popup .section .body div:nth-child(2n) {
        text-align: center; }
  .ps_testFeatures-popup .button-bar {
    position: sticky;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    background: white;
    height: 40px;
    border-top: 1px solid black; }
    .ps_testFeatures-popup .button-bar > input {
      height: 24px;
      margin-top: 8px; }

.ps_flag-title {
  font-size: 18px;
  padding-left: 15px; }

.ps_flag {
  width: 30px; }

.ps_backdrop, .ps_backdropProfile, .ps_favorites-backdrop, .ps_testFeaturesBackdrop, .ps_suggestionsBackdrop, .app-notifications-back-drop, .app-notifications-add-back-drop {
  background: transparent;
  opacity: 0.5;
  z-index: 1;
  display: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: auto;
  position: fixed; }

.ps_notification-badge {
  position: absolute;
  top: -1px;
  right: -3px;
  padding: 1px 7px;
  font-size: 12px;
  border-radius: 10px;
  background: var(--theme-secondary-color);
  color: var(--theme-primary-color-text); }

.open-messages #no-messages-icon {
  display: none; }

.no-messages #open-messages-icon {
  display: none; }

.ps_badge-xx {
  top: -5px;
  right: -5px;
  padding: 1px 2px; }

.ps_badge-xxx {
  top: -9px;
  padding: 5px 1px !important;
  right: -10px; }

.ps_recommendation-badge.ps_badge-xxx {
  padding: 8px 2px !important; }

.ps_sidebar-item .ps_recommendation-badge.ps_badge-xx {
  padding: 6px 4px !important; }

#IDMessages .ps_review-badge-xxx {
  top: -7px;
  padding: 4px 3px !important;
  right: -9px; }

.ps_badge-xxxx {
  top: -8px;
  padding: 7px 4px !important;
  right: -12px; }

.ps_text-left {
  text-align: left;
  padding-right: 15px; }

#divNavigation {
  display: flex;
  align-items: center; }
  #divNavigation a {
    padding: 0;
    height: 32px; }
  #divNavigation #moveforward {
    margin: 0 10px 0 5px; }

.txt-room-advices {
  margin-right: 10px; }

/*  ------------------------Email-settings-start----------------------------  */
.ps_fieldset {
  margin-bottom: 20px;
  width: min-content;
  border: solid 1px #ccc; }
  .ps_fieldset legend {
    font-size: 14px;
    font-weight: 600; }

.ps_fieldset-container {
  display: flex; }
  .ps_fieldset-container span {
    margin-top: 30px; }
  .ps_fieldset-container .ps_fieldset-left {
    width: 50%;
    margin-right: 20px; }
  .ps_fieldset-container .ps_fieldset-right {
    width: 50%; }
  .ps_fieldset-container input[type=text] {
    display: block;
    margin-bottom: 10px; }
  .ps_fieldset-container .ps_input-sm {
    width: 130px; }
  .ps_fieldset-container .ps_fieldset-checkbox {
    margin: 10px 0; }

#IDbtnTest {
  margin-right: 5px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 18px; }

.ps_fieldsetBtnContainer {
  text-align: right;
  margin-top: 10px; }

#ps_fieldsetLoader {
  height: auto;
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start; }
  #ps_fieldsetLoader div#ps_testing span, #ps_fieldsetLoader div#ps_success span {
    padding-left: 5px; }
  #ps_fieldsetLoader div {
    display: flex;
    justify-content: flex-start;
    align-items: center; }
    #ps_fieldsetLoader div span#ps_error-text {
      font-size: 14px;
      padding-left: 5px; }

/*  ------------------------Email-settings-start----------------------------  */
/*  ------------------------------------------------------------------------  */
/*  ------------------------TopHeader-start----------------------------  */
.TopHeader {
  height: 108px;
  display: grid;
  width: 100%;
  background: var(--theme-header-background-color);
  overflow: hidden; }
  .TopHeader img {
    overflow: hidden; }

/*  ------------------------TopHeader-end----------------------------  */
.ps_d-flex {
  display: flex; }

.ps_gap-10 {
  gap: 10px; }

.ps_ai-center {
  align-items: center; }

.ps_ai-start {
  align-items: flex-start; }

.ps_ai-end-h100 {
  align-items: end;
  height: 100%; }

.ps_jc-space-around {
  justify-content: space-around; }

.ps_jc-space-between {
  justify-content: space-between; }

.ps_jc-space-start {
  justify-content: flex-start; }

.ps_jc-space-end {
  justify-content: flex-end; }

.ps_fd-column {
  flex-direction: column; }

.flex-2 {
  flex: 2; }

.flex-3 {
  flex: 3; }

.flex-5 {
  flex: 5; }

.flex-grow {
  flex-grow: 1; }

.pl-15 {
  padding-left: 15px; }

.push-down {
  margin-top: auto; }

.BlockContent {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: sticky; }

.ps_help-link:hover {
  background: var(--theme-primary-color); }

.ps_help-link:first-child {
  border-top: none; }

.ps_help-link:last-child {
  border-bottom: none; }

.ps_help-link:nth-child(even) {
  border: none; }

.ps_help-link:hover {
  background: var(--theme-primary-color);
  color: var(--theme-primary-color-text); }

.ps_help-link {
  cursor: pointer;
  padding: 6px;
  color: var(--theme-primary-color);
  text-decoration: none; }

.material-icons, .material-icons-outlined {
  font-size: 30px;
  padding: 0 2px; }

.material-icons.mat-help, .material-icons-outlined.mat-help {
  margin-top: -5px; }

.ps_popup-account-link {
  font-size: 16px;
  padding-right: 40px;
  text-decoration: none;
  color: var(--theme-primary-color); }

.ps_popup-right {
  width: 100%; }

.ps_hidden {
  display: none; }

@media screen and (max-width: 1024px) {
  .ps_header-content .hamburger-title {
    font-size: 20px; }

  #postHeader {
    font-size: 20px; }

  .breadCrumb {
    font-size: 16px; } }
@media screen and (max-width: 800px) {
  .ps_header-content {
    flex-wrap: wrap-reverse;
    justify-content: flex-end; }
    .ps_header-content .hamburger-title {
      font-size: 16px; }

  #postHeader {
    font-size: 16px; }

  .breadCrumb {
    font-size: 14px; } }
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased; }

.material-icons-outlined {
  font-family: 'Material Icons Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased; }

.material-icons, .material-icons-outlined {
  font-size: 30px;
  padding: 0 2px; }

.material-icons.mat-help, .material-icons-outlined.mat-help {
  margin-top: -5px; }

#btnContainer {
  display: inline; }
  #btnContainer #btnReview, #btnContainer #btnUnreview {
    border-radius: 32px;
    text-align: center;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
    padding: 7px 12px;
    line-height: 50px;
    font-size: 13px;
    box-shadow: -6px -6px 10px rgba(255, 255, 255, 0.8), 6px 6px 10px rgba(0, 0, 0, 0.2); }
    #btnContainer #btnReview:hover, #btnContainer #btnUnreview:hover {
      box-shadow: -6px -6px 10px rgba(255, 255, 255, 0.8), 6px 6px 10px rgba(0, 0, 0, 0.2);
      color: var(--theme-primary-color); }
    #btnContainer #btnReview:active, #btnContainer #btnUnreview:active {
      opacity: 1;
      box-shadow: inset -4px -4px 8px rgba(255, 255, 255, 0.5), inset 8px 8px 16px rgba(0, 0, 0, 0.1);
      color: var(--theme-primary-color); }

#pnlAddOrdersheet {
  z-index: 1; }

.content a.btn-reviewed, .content a.btn-notreviewed {
  border-radius: 8px;
  display: inline-block;
  padding: 5px 15px 5px 15px;
  text-align: center; }

.PSTable a.btn-notreviewed {
  min-width: 164px;
  background-color: #bbb;
  color: white; }
  .PSTable a.btn-notreviewed:hover {
    background-color: #ccc;
    text-decoration: none; }

.PSTable a.btn-reviewed {
  min-width: 150px;
  background-color: #4ece4e;
  color: white; }
  .PSTable a.btn-reviewed:hover {
    background-color: #99d899;
    color: white;
    text-decoration: none; }

.PSTable a.btn-required {
  min-width: 150px;
  background-color: #d75c5c;
  color: white; }
  .PSTable a.btn-required:hover {
    background-color: #d6995c;
    color: white;
    text-decoration: none; }

#pnlNewAdvice {
  margin-top: 15px;
  position: absolute; }

.ps_contract-header {
  font-size: 14px;
  color: #333;
  font-weight: bold; }

.ps_contract-label {
  font-size: 13px;
  color: #333; }

#lblServiceShowHide .service-remove {
  line-height: normal;
  border: none;
  margin-right: 5px;
  padding: 0 3px; }

.service-header {
  font-weight: bold;
  margin: 0; }

.services .service .ps_tab-label::after {
  content: none; }

.ps_service-collapse-icon::after {
  transform: rotate(90deg);
  transform-origin: 9.666px 11.666px;
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all .35s;
  display: inline-block; }

.ps_service-collapse-icon.rotated::after {
  transform: rotate(-90deg); }

.service-recurrences {
  padding: 0 5px 10px 0; }
  .service-recurrences .service-recurrence {
    height: 100%; }

.service-recurrences-body {
  margin-top: 10px;
  border: 1px solid #ddd;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px; }

.ps_header-recurrence {
  border: 1px solid #eee;
  background: #eeeeee59;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  padding: 2px 0px 2px 6px; }

.service-recurrence-entry.selected {
  background-color: var(--theme-primary-color)60; }

.ps_recurrences-sheet {
  padding: 0 0 5px 5px;
  margin-right: 8px; }
  .ps_recurrences-sheet .ps_recurrences-sheet-body {
    height: 120px;
    overflow-x: auto;
    border: 1px solid #eee;
    padding-bottom: 5px; }
    .ps_recurrences-sheet .ps_recurrences-sheet-body .ps_recurrences-title {
      font-size: 17px;
      font-weight: 500;
      background: #eeeeee59;
      text-align: center; }
    .ps_recurrences-sheet .ps_recurrences-sheet-body .service-recurrence-entry {
      justify-content: space-between;
      align-items: center;
      padding: 0 5px 0 6px;
      gap: 10px; }
      .ps_recurrences-sheet .ps_recurrences-sheet-body .service-recurrence-entry:not(:last-child) {
        border-bottom: 1px solid #eee; }
      .ps_recurrences-sheet .ps_recurrences-sheet-body .service-recurrence-entry .service-recurrence-entry-link, .ps_recurrences-sheet .ps_recurrences-sheet-body .service-recurrence-entry .service-recurrence-entry-delete {
        border: none; }
      .ps_recurrences-sheet .ps_recurrences-sheet-body .service-recurrence-entry .service-recurrence-entry-link {
        color: #368ee0;
        width: 0px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis; }
  .ps_recurrences-sheet .add-service, .ps_recurrences-sheet .service-recurrence-add {
    color: #368ee0;
    margin: 5px 0; }
  .ps_recurrences-sheet .service-recurrence-add {
    display: flex;
    border-radius: 5px;
    background-color: var(--theme-primary-color);
    color: var(--theme-primary-color-text);
    justify-content: center;
    width: auto; }
    .ps_recurrences-sheet .service-recurrence-add:hover {
      color: #333; }

.service-recurrence-daily, .service-recurrence-weekly, .service-recurrence-monthly, .service-recurrence-dates {
  margin: 0 0; }

.service-recurrence-dates-list {
  overflow-x: auto;
  border: 1px solid #eee;
  height: 120px;
  margin-bottom: 5px;
  padding: 3px;
  display: grid;
  grid-template-columns: 8.3% 8.3% 8.3% 8.3% 8.3% 8.3% 8.3% 8.3% 8.3% 8.3% 8.3% 8.3%;
  grid-template-rows: 25% 25% 25% 25%; }

.service-recurrence-date {
  align-items: center;
  justify-content: center;
  border: 1px solid #eee; }

.service-recurrence-date a.service-recurrence-date-remove {
  border: none;
  line-height: normal; }

.service-recurrence-dates a.service-recurrence-dates-new-button, #add-service, #main_footer .contract-save {
  border-radius: 5px;
  background-color: var(--theme-primary-color);
  color: var(--theme-primary-color-text);
  text-align: center;
  line-height: normal;
  width: 100%;
  display: block;
  box-sizing: border-box; }
  .service-recurrence-dates a.service-recurrence-dates-new-button:hover, #add-service:hover, #main_footer .contract-save:hover {
    color: #333;
    background: #eaeaea; }

.add-service-holder {
  margin: 10px 0; }

#add-service, #main_footer .contract-save {
  padding: 4px 30px;
  font-size: 14px;
  margin: 0; }

.invoicing-details .row {
  display: grid;
  align-items: center;
  gap: 10px;
  padding: 5px 2px;
  grid-template-columns: 20px 20px 10000fr 250px 20px; }
  .invoicing-details .row.template {
    display: none; }
.invoicing-details .handle {
  height: 20px;
  width: 20px; }
  .invoicing-details .handle svg {
    cursor: move; }
.invoicing-details .remove {
  height: 20px;
  width: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center; }
.invoicing-details .footer {
  margin-top: 10px; }

#main_footer {
  margin-top: 15px; }

.required::after {
  content: "*";
  color: grey;
  font-weight: bold;
  margin-left: 5px; }

.invalid {
  border-radius: 10px;
  background: #ff8080; }

.validation {
  border-color: red !important; }

.notifyjs-bootstrap-base {
  background-size: 30px; }
  .notifyjs-bootstrap-base > span {
    font-size: 20px;
    margin-left: 16px; }

.fullwidthBox {
  width: 100%;
  box-sizing: border-box; }

.Width200 {
  min-width: 200px;
  box-sizing: border-box; }

.WidthTime {
  width: 90px;
  box-sizing: border-box; }

.WidthDuration {
  width: 60px;
  box-sizing: border-box; }

.ps_row:not(:first-child) .ps_cell {
  margin-top: -1px; }

.ps_cell {
  border: 1px solid #ddd;
  padding: 5px; }
  .ps_cell:not(:first-child) {
    margin-left: -1px; }

.ps_justify-center {
  justify-content: center; }

.mb-0 {
  margin-bottom: 0; }

#tblShowDeleted {
  z-index: 1;
  position: absolute; }

#tblLeads .EditLead {
  cursor: pointer; }

a.disabledAnchor {
  pointer-events: none;
  cursor: default;
  background: #c1c1c1; }

#tabs .ui-tabs-panel {
  min-height: 450px; }

.min-width-800 {
  min-width: 800px; }

.service-recurrence_pattern {
  margin-right: 5px;
  width: 100%; }

.service-recurrence_description {
  box-sizing: border-box;
  width: 100%; }

.TwoColumns {
  grid-template-columns: 50% 50%;
  display: grid; }

.print_header {
  display: flex;
  flex-direction: column; }

.print_middle {
  align-self: center; }

.print_end {
  align-self: end; }

.hide {
  display: none; }

.ps_scroll-updown {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 0;
  line-height: initial; }
  .ps_scroll-updown a {
    background: none !important;
    border: none !important;
    display: none; }
  .ps_scroll-updown span {
    color: #f3f2f1;
    font-weight: bolder;
    border: 1px solid var(--theme-primary-color-faded);
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    background: var(--theme-primary-color);
    width: 30px;
    height: 30px; }
    .ps_scroll-updown span:hover {
      filter: brightness(130%); }

.ps_color-primary {
  color: var(--theme-primary-color); }

.datepicker + img {
  position: relative;
  right: 20px;
  top: 3px; }

table tr {
  page-break-inside: avoid;
  page-break-before: auto; }

.freshdesk-link {
  text-decoration: none;
  border: 0 !important;
  border-radius: 0 !important; }
  .freshdesk-link svg {
    fill: var(--theme-primary-color);
    width: 24px;
    height: 24px; }
  .freshdesk-link:hover {
    background: 0 !important;
    text-decoration: none !important; }

.freshdesk-description img {
  max-width: 100%;
  max-height: 100%; }
.freshdesk-description * {
  white-space: break-spaces; }
.freshdesk-description p {
  word-break: normal;
  word-wrap: break-word;
  font-size: 13px;
  line-height: 1.4;
  margin: 0; }

.TimeReportFilter {
  min-width: 1115px;
  margin-bottom: 10px; }
  .TimeReportFilter .ps_mch-container {
    margin: 0; }
  .TimeReportFilter .ps_mch-list {
    margin: 0; }
  .TimeReportFilter .ps_form-field {
    width: fit-content !important;
    min-width: 10rem; }
    .TimeReportFilter .ps_form-field:last-child {
      min-width: 50px; }

.btn-become-customer {
  background-color: white;
  padding: 8px;
  cursor: pointer;
  border-radius: 7px;
  text-decoration: none !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease; }
  .btn-become-customer:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); }

.btn-become-customer span {
  color: #33bdff;
  font-size: 14px; }

.trial-label {
  position: fixed;
  top: calc(100vh - 110px);
  left: 10px;
  width: 200px;
  font-weight: bold;
  font-size: 16px; }

*:focus-visible {
  outline: none;
  outline-offset: 0; }

.contractLines {
  width: 600px;
  margin: 0 auto; }

img {
  border: 0; }

hr {
  border: 0;
  color: silver;
  background: silver;
  height: 1px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0; }

.group-button {
  display: inline;
  gap: 5px; }
  .group-button > button {
    line-height: 1rem; }

.content a, .button {
  text-decoration: none;
  padding: 3px 4px 4px 4px;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 22px;
  border-radius: 4px; }
  .content a:hover, .button:hover {
    background: #EAEAEA;
    text-decoration: none;
    cursor: pointer; }

.button {
  display: inline-block; }

.button-small {
  line-height: 1rem;
  min-width: 1rem; }

.button-danger {
  color: var(--theme-secondary-color); }

a.nowrapping {
  padding: 0;
  border: 0; }

.removeButtonStyling {
  border: 0 !important;
  background: none !important; }
  .removeButtonStyling:hover {
    border: 0 !important;
    background: none !important; }

a.link, .PSTable a, .PSDataTable a, .breadCrumb a, .tblButton a {
  padding: 0;
  border: 0;
  line-height: initial; }

.PSDataTable a {
  color: #333; }

a.link:hover, .PSTable a:hover, .PSDataTable a:hover, .breadCrumb a:hover, .tblButton a:hover {
  background: transparent;
  text-decoration: underline; }

.alphabet {
  display: inline-block;
  text-align: center;
  min-width: 15px;
  margin: 2px;
  margin-left: 0;
  line-height: initial !important; }

#divChart .tblButton tr:first-child td {
  background: white; }

#divChart .tblButton tr:last-child td a {
  color: var(--theme-primary-color);
  background: transparent; }

#divChart .tblButton tr:last-child td {
  border: 0; }

#ExportButtonsContainer img {
  width: 40px;
  height: 40px; }

#metadataTableButtons h2 {
  font-size: 18px;
  font-weight: normal; }

#metadataTableButtons {
  background: #F9F9F9;
  padding: 15px; }

input[type=text], input[type=select], input[type=password], input[type=time] {
  border: 1px solid #ccc;
  padding: 5px;
  width: auto; }

input[type=time] {
  padding: 4px 5px !important;
  font-family: 'Open Sans', arial, sans-serif !important; }

input[readonly] {
  background-color: #e9ecef; }

.ar-editPopup input[type=text], .ar-editPopup input[type=select] {
  border: 1px solid #ccc;
  padding: 5px;
  width: 200px; }

#ActivityFilter tr td input {
  width: -webkit-fill-available; }

#ActivityFilter #txtToDate, #ActivityFilter #txtFromDate {
  width: 90px; }

.TimeEntry {
  width: 50px !important; }

.PSOverlay {
  width: 100%;
  height: 100%;
  z-index: 51;
  position: fixed;
  background: black;
  opacity: 0.3;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  left: 0;
  top: 0;
  display: block; }

.PSOverlay-light {
  background: none; }

.PSOverlay-loader {
  position: fixed;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  z-index: 101;
  width: 150px;
  height: 150px; }

#divModalTitle {
  font-size: 20px;
  padding-bottom: 10px; }

.PSModal, .PSModalFull {
  overflow: auto;
  display: none;
  position: fixed;
  background: white;
  padding: 10px;
  margin: 0 auto;
  z-index: 52; }

.PSModal {
  width: 500px;
  margin-left: -230px;
  min-height: 310px;
  max-height: 500px;
  margin-top: -250px;
  top: 50%;
  left: 50%; }

.validator {
  color: red;
  font-weight: 700; }

#customersDialog .validator {
  font-weight: normal; }

.valError {
  border: 1px solid red !important; }

.photoList li {
  margin-left: 15px;
  display: inline;
  float: left;
  cursor: pointer; }

.photoList li div {
  width: 150px;
  max-height: 150px; }

/* Popup that is generacted in C# and displayed on the customer homepage */
.Popup {
  display: block; }

.PSModalFull {
  width: 90%;
  height: 80%;
  left: 5%;
  top: 10%; }

.breadCrumb {
  display: block;
  color: #f3f2f1;
  font-size: 14px;
  position: relative;
  flex-grow: 1;
  z-index: 3; }
  .breadCrumb span:last-child {
    font-weight: bold; }

.breadCrumb a {
  color: var(--theme-primary-color-text); }

.breadCrumb span {
  color: var(--theme-primary-color-text); }

ul.level1 a, ul.level2 a {
  line-height: initial; }

ul.level1 li a {
  padding-right: 10px;
  padding-left: 10px; }

ul.level1 {
  padding: 0;
  z-index: 1; }

ul.level1 > li {
  display: block !important;
  float: left;
  margin-right: 5px;
  position: relative !important;
  height: 35px; }

ul.level2 {
  position: absolute !important;
  top: 50% !important;
  left: 0% !important;
  list-style-type: none;
  padding: 0;
  z-index: 2; }

ul.level2 li:first-child a {
  border-top: 1px solid #ccc !important; }

ul.level2 a {
  top: 10px;
  position: relative;
  float: left;
  display: block;
  background: white;
  width: 100%;
  border-top: 0 !important; }

.level1 > li > .selected {
  color: black !important;
  font-weight: bold; }

.level1 > li > .selected:hover {
  background: initial; }

.level2 .selected {
  color: black !important;
  font-weight: bold; }

a.anchor {
  padding: 55px 0;
  margin: 0;
  border: none; }

a.anchor-visit-report {
  padding: 0;
  margin: 0;
  border: none;
  top: -70px;
  position: relative; }

/* JQUI overrides */
h3.ui-accordion-header a, h3.ui-state-default a, h3.ui-state-active a {
  border: 0 !important;
  padding: 0 !important; }

h3.ui-accordion-header a:hover {
  background: initial !important; }

h3.ui-accordion-header, h3.ui-state-default, h3.ui-state-active {
  margin: 0;
  font-weight: bold;
  margin-top: 10px;
  border-radius: 0 !important;
  background: none !important;
  font-size: 14px; }

h3.ui-state-active:hover {
  cursor: default !important; }

h3.ui-state-active a:hover {
  cursor: default !important; }

h3.ui-state-default:hover {
  background: silver; }

.ui-button {
  margin-right: 5px; }

.jqte a {
  padding: 0px !important;
  line-height: 24px !important;
  height: 24px !important; }

.ui-dialog-titlebar-close {
  display: none !important; }

.jqte {
  border-radius: 0 !important;
  border: 1px solid silver !important;
  box-shadow: none !important; }

.ui-dialog-titlebar {
  background: none !important;
  border: none !important;
  font-size: 18px;
  padding: 12px !important;
  margin: 0 !important; }

.ui-dialog {
  font-family: inherit !important;
  font-size: inherit !important;
  border-radius: 0 !important;
  border: none !important;
  z-index: 100 !important; }

button, input[type=submit] {
  font-family: 'Open Sans', arial, sans-serif;
  font-size: inherit;
  color: var(--theme-primary-color);
  background: white;
  padding: 3px 4px 4px 4px;
  border: 1px solid #ccc;
  min-width: 40px;
  line-height: 22px;
  border-radius: 4px; }

a.active, button.active, input[type=submit].active {
  border: 1px solid #999;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0 0); }

.ui-dialog .ui-button-text {
  font-family: 'Open Sans', arial, sans-serif !important; }

.ui-dialog button:hover, input[type=submit]:hover {
  cursor: pointer;
  background: #EAEAEA; }

.ui-dialog button:disabled, input[type=submit]:disabled {
  opacity: 0.6;
  color: darkgray;
  background: transparent; }
  .ui-dialog button:disabled:hover, input[type=submit]:disabled:hover {
    opacity: 0.6; }

.ajax__calendar_container {
  width: 183px !important;
  height: 180px !important; }

.ajax__calendar_body {
  width: 183px !important;
  height: 180px !important; }

.SquareButton {
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  vertical-align: middle; }

.displaynone {
  display: none; }

.convDetails {
  margin: 10px 10px 10px 10px; }

.convDetailsBox {
  border-color: LightGrey;
  border-width: 1px;
  border-style: Solid;
  background-color: rgba(255, 255, 255, 0.6); }

.convValue {
  color: Green;
  font-weight: bold; }

.convStatus {
  margin-right: 5px; }

.fixed-dialog {
  position: fixed !important;
  top: 1% !important;
  left: 35% !important; }

#docDialog table tr td input, #docDialog table tr td textarea {
  box-sizing: border-box; }

.docTitleText {
  width: 150px !important;
  box-sizing: border-box; }

.docTitle {
  width: 150px !important;
  display: block; }

.ui-dialog-buttonset {
  width: 100%; }

.ui-dialog-buttonset button {
  float: right; }

a.alarmStatus:hover {
  text-decoration: none; }

.cursor-pointer {
  cursor: pointer; }

.license .PSTable span {
  font-size: 20px; }

.license .PSTable {
  line-height: 27px; }

.PostContent {
  margin-top: 0; }
  .PostContent a {
    display: inline-block; }
  .PostContent div.content-section {
    margin: 6px 0; }

.PostContent .breadCrumb {
  position: absolute;
  z-index: 3;
  top: 42px; }

.nodata {
  position: relative;
  top: 0;
  margin-top: 0;
  margin-bottom: 5px;
  z-index: 999;
  display: table; }

.IncludeDeleted {
  position: relative;
  float: left;
  margin-right: 8px;
  top: 40px; }

.includeDeletedSuggestion {
  position: relative;
  float: left;
  margin-right: 8px;
  top: 6px; }

.lead-buttons-container {
  margin-top: 5px; }

.w-100 {
  width: 100%; }

@media screen and (max-width: 800px) {
  .breadCrumb {
    font-size: 14px; } }
.OverviewWrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  height: calc(100vh - 220px);
  min-height: 450px; }
  .OverviewWrapper .OverviewButtonArea {
    display: grid;
    flex-direction: row;
    flex-wrap: wrap;
    align-self: center;
    justify-content: center;
    row-gap: 40px;
    column-gap: 10px;
    padding: 10px;
    grid-template-columns: repeat(var(--columns), minmax(0, 1fr)); }
    .OverviewWrapper .OverviewButtonArea .OverviewButton:nth-child(n+9) {
      display: none; }

.ps_display-grid {
  display: grid;
  gap: 5px 0px; }
  .ps_display-grid input[type=text], .ps_display-grid input[type=password] {
    width: calc(100% - 20px);
    box-sizing: border-box; }
  .ps_display-grid span {
    line-height: 28px; }
  .ps_display-grid > .grid-line-head {
    padding-right: 10px;
    justify-self: end;
    align-self: center; }
    .ps_display-grid > .grid-line-head::after {
      content: ":"; }
  .ps_display-grid > .grid-line-field > input {
    min-width: 200px; }
  .ps_display-grid.two-cols-auto {
    grid-template-columns: auto auto; }
  .ps_display-grid.three-cols-validate {
    grid-template-columns: 20% 30% 50%; }
  .ps_display-grid .passwordComplexityMessage {
    line-height: 14px; }
  .ps_display-grid > .grid-validation-group {
    display: flex;
    flex-direction: column;
    height: 28px;
    gap: 200px;
    overflow: hidden; }
  .ps_display-grid .grid-required::after {
    margin-left: 5px;
    content: "*"; }

.ps_grid-page {
  display: grid;
  width: 100%;
  gap: 1rem;
  grid-template-rows: auto auto 80px; }
  .ps_grid-page .ps_grid-content {
    overflow: auto; }
    .ps_grid-page .ps_grid-content .dataTables_filter .search {
      margin-top: 2rem !important; }
  .ps_grid-page .pt-2 {
    padding-top: 2rem; }
  .ps_grid-page .ps_grid-footer {
    position: sticky;
    bottom: 0;
    background-color: #fff;
    padding: 10px; }

.ps_position-relative {
  position: relative !important; }

.ps_top-0 {
  top: 0 !important; }

.OverviewWrapper.dashboard {
  height: calc(100vh - 320px); }

.OverviewButton:hover .OverviewImage {
  opacity: 1; }

.OverviewButton {
  min-width: 150px;
  justify-self: center; }
  .OverviewButton > a {
    border: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    color: #333 !important; }
  .OverviewButton > a:hover {
    background: none !important; }
    .OverviewButton > a:hover .OverviewImage {
      opacity: 1;
      box-shadow: lightgray 2px 2px 1px 1px; }
  .OverviewButton svg {
    display: block;
    width: 48px;
    height: 48px;
    align-self: center; }
  .OverviewButton .OverviewImage {
    background-color: var(--theme-primary-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    opacity: 0.7;
    height: 120px;
    width: 120px;
    transition: 0.2s;
    align-self: center; }
    .OverviewButton .OverviewImage svg.primary {
      position: relative;
      left: 20px; }
    .OverviewButton .OverviewImage svg.secondary {
      position: relative;
      top: 20px;
      height: 40px;
      width: 40px; }
      .OverviewButton .OverviewImage svg.secondary path {
        stroke: var(--theme-primary-color);
        stroke-width: 0.5px; }
    .OverviewButton .OverviewImage svg.fillFirstPath path:first-child {
      fill: var(--theme-primary-color); }
    .OverviewButton .OverviewImage svg.smaller {
      width: 36px;
      height: 36px;
      top: 18px; }
  .OverviewButton .OverviewButtonText {
    align-self: center;
    font-weight: bolder;
    padding-top: 16px;
    text-align: center;
    line-height: 18px;
    white-space: normal;
    width: min-content;
    min-width: 150px; }

.overview-badge {
  position: absolute;
  margin-left: 36px;
  margin-top: 67px;
  background-color: var(--theme-secondary-color);
  line-height: 26px;
  padding: 0px 6px;
  color: white;
  border-radius: 10px;
  z-index: 2;
  width: 22px;
  text-align: center;
  align-self: center; }

.hamburger-menu-icon {
  width: 40px;
  height: 40px;
  cursor: pointer; }
  .hamburger-menu-icon svg {
    padding: 2px;
    width: 36px;
    height: 36px;
    fill: var(--theme-primary-color-text); }

.account-icon {
  width: 48px;
  height: 48px; }
  .account-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--theme-primary-color-text); }

img {
  image-rendering: -webkit-optimize-contrast; }

.TRVal {
  font-weight: bold;
  color: #f00; }

.marginLabelCheckbox label {
  margin-right: 5px; }

.labelMarginRight {
  margin-right: 5px; }

.table-filter-correction {
  padding-top: 22px; }

.flexdatalist-results li.item {
  padding-left: 5px;
  font-size: 13px;
  line-height: 15px; }

.flexdatalist-results li.item .highlight {
  font-weight: normal;
  text-decoration: none; }

.customer-settings-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr .5fr;
  padding: 20px 0; }

#divBaitFilters {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
  gap: 20px;
  padding-top: 10px; }
  #divBaitFilters div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 5px; }
  #divBaitFilters #ddlTypeFilter {
    height: 27px; }

#divWorkOrders {
  margin-top: -5px; }

.alarm-status-legend {
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0; }
  .alarm-status-legend .asl-item {
    display: flex;
    font-weight: 500; }

.customerAdvicesCustomerLocation {
  width: 300px; }
  .customerAdvicesCustomerLocation > input {
    width: 100%;
    box-sizing: border-box; }

.accountAuthenticatePopup > .popup-footer {
  display: grid;
  grid-template-columns: calc(50% - 2.5px) calc(50% - 2.5px);
  margin: 5px 0px;
  width: 100%;
  gap: 5px;
  box-sizing: border-box; }

.no-pointer {
  cursor: auto; }
  .no-pointer a:hover {
    cursor: auto; }

.popup-center-title {
  padding: 6.5px 0 0 0 !important;
  margin: 0 !important; }
  .popup-center-title > span {
    width: 100% !important;
    text-align: center; }

.ui-datepicker a:not(.ui-corner-all) {
  border: 1px solid white;
  text-align: center; }
  .ui-datepicker a:not(.ui-corner-all).ui-state-active, .ui-datepicker a:not(.ui-corner-all):hover {
    border: 1px solid gray; }

textarea {
  resize: none; }

.textarea-with-btn {
  display: grid;
  grid-template-columns: auto 20px; }

.openTextarea {
  cursor: pointer;
  filter: invert(90%) sepia(0%) saturate(569%) hue-rotate(211deg) brightness(87%) contrast(81%);
  transition: .4s;
  cursor: pointer;
  height: 16px;
  transform: translateX(15px); }
  .openTextarea:hover {
    filter: invert(14%) sepia(0%) saturate(73%) hue-rotate(138deg) brightness(94%) contrast(98%); }

#tbContractDetails .ps_ai-end-h100 {
  align-items: flex-start; }

#tvLog_SkipLink {
  display: none; }

#pnlBaittype td {
  padding: 5px; }
  #pnlBaittype td input[type="text"] {
    width: 100%;
    box-sizing: border-box; }
  #pnlBaittype td select {
    width: 60%;
    padding: 3px; }

#divOSEditBaitReg, #divEditBaitstation {
  min-width: 500px;
  width: auto; }

#lbPrintAdvices img {
  width: 46px;
  height: 46px;
  margin-left: -3px;
  margin-top: -3px; }

#cblVisitTypeTaskBatches {
  display: block;
  width: 310px; }

#divSelectContactPerson {
  min-height: 200px;
  max-height: 650px;
  max-width: 650px;
  width: 650px;
  padding: 30px 10px; }
  #divSelectContactPerson #tblSelectableContactPersons thead {
    top: -30px; }
  #divSelectContactPerson .dt-buttons {
    margin-bottom: 15px; }

.PSDataTable.empty {
  margin-top: 20px; }

#alphabetWrapper {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  padding-bottom: 30px; }
  #alphabetWrapper #alphabets {
    display: flex;
    gap: 6px; }

.customer-search-panel {
  display: grid;
  grid-template-columns: 500px auto;
  width: 85%;
  gap: 10px; }
  .customer-search-panel .column {
    display: flex;
    gap: 4px;
    flex-direction: column; }
    .customer-search-panel .column > div {
      display: grid;
      grid-template-columns: 250px auto;
      gap: 20px;
      min-height: 30px; }
      .customer-search-panel .column > div *:first-child {
        align-self: center; }
        .customer-search-panel .column > div *:first-child#btnSearch {
          grid-column: 2;
          justify-self: start;
          margin: 10px 0;
          min-width: 70px; }
      .customer-search-panel .column > div *:last-child {
        justify-self: start; }
      .customer-search-panel .column > div select {
        width: 200px; }
      .customer-search-panel .column > div input[type=text] {
        width: calc(200px - 12px); }
      .customer-search-panel .column > div input[type="checkbox"] {
        -webkit-appearance: none;
        appearance: none;
        background-color: #fff;
        margin: 5px 0 0 0;
        font: inherit;
        color: var(--theme-primary-color);
        width: 20px;
        height: 20px;
        border: 2px solid #bbb;
        border-radius: 2px;
        display: grid;
        place-content: center;
        cursor: pointer; }
      .customer-search-panel .column > div input[type="checkbox"]::before {
        content: "";
        width: 10px;
        height: 10px;
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
        transform: scale(0);
        transform-origin: bottom left;
        transition: 120ms transform ease-in-out;
        background-color: var(--theme-primary-color); }
      .customer-search-panel .column > div input[type="checkbox"]:checked::before {
        transform: scale(1); }
      .customer-search-panel .column > div input[type="checkbox"]:focus {
        border-color: var(--theme-primary-color); }
      .customer-search-panel .column > div input[type="checkbox"]:disabled {
        --form-control-color: #ddd;
        color: var(--form-control-disabled);
        cursor: not-allowed; }

.log_table {
  margin-top: 25px; }

#imgStamp {
  max-height: 200px;
  max-width: 200px; }

.triggerTable tr:not(.deleted) a.restore-button {
  display: none; }
.triggerTable tr.deleted {
  text-decoration: line-through; }
  .triggerTable tr.deleted a.delete-button {
    display: none; }

.select-spacing {
  margin: 0 7px; }

.margins {
  display: block;
  margin-bottom: 10px; }

.display {
  display: block; }

.marginsTopAndBottom {
  margin-top: 10px;
  margin-bottom: 10px; }

.dllCountryCallingCode {
  width: 168px;
  display: inline-block;
  margin-bottom: 3px; }

.border {
  border: 1px solid #767676 !important; }

/*
 * This combined file was created by the DataTables downloader builder:
 *   https://datatables.net/download
 *
 * To rebuild or modify this file with the latest versions of the included
 * software please visit:
 *   https://datatables.net/download/#dt/jszip-2.5.0/pdfmake-0.1.36/dt-1.10.21/b-1.6.2/b-flash-1.6.2/b-html5-1.6.2/fh-3.1.7
 *
 * Included libraries:
 *   JSZip 2.5.0, pdfmake 0.1.36, DataTables 1.10.21, Buttons 1.6.2, Flash export 1.6.2, HTML5 export 1.6.2, FixedHeader 3.1.7
 */
/*
 * Table styles
 */
.PSDataTable thead {
  position: sticky;
  top: 48px;
  z-index: 10; }

table.dataTable {
  width: 100%;
  margin: 0 auto;
  clear: both;
  border-collapse: separate;
  border-spacing: 0;
 /*
* Header and footer styles
*/
 /*
* Body styles
*/ }

table.dataTable thead th,
table.dataTable tfoot th {
  font-weight: bold; }

table.dataTable thead th,
table.dataTable thead td {
  padding: 10px 18px;
  border-bottom: 1px solid #111; }

table.dataTable thead th:active,
table.dataTable thead td:active {
  outline: none; }

table.dataTable tfoot th,
table.dataTable tfoot td {
  padding: 10px 18px 6px 18px;
  border-top: 1px solid #111; }

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  cursor: pointer;
  *cursor: hand;
  background-repeat: no-repeat;
  background-position: center right; }

table.dataTable tbody tr {
  background-color: #ffffff; }

table.dataTable tbody tr.selected {
  background-color: #B0BED9; }

table.dataTable tbody th,
table.dataTable tbody td {
  padding: 8px 10px; }

table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
  border-top: 1px solid #ddd; }

table.dataTable.row-border tbody tr:first-child th,
table.dataTable.row-border tbody tr:first-child td, table.dataTable.display tbody tr:first-child th,
table.dataTable.display tbody tr:first-child td {
  border-top: none; }

table.dataTable.cell-border tbody th, table.dataTable.cell-border tbody td {
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd; }

table.dataTable.cell-border tbody tr th:first-child,
table.dataTable.cell-border tbody tr td:first-child {
  border-left: 1px solid #ddd; }

table.dataTable.cell-border tbody tr:first-child th,
table.dataTable.cell-border tbody tr:first-child td {
  border-top: none; }

table.dataTable.stripe tbody tr.odd, table.dataTable.display tbody tr.odd {
  background-color: #f9f9f9; }

table.dataTable.stripe tbody tr.odd.selected, table.dataTable.display tbody tr.odd.selected {
  background-color: #acbad4; }

table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover {
  background-color: #f6f6f6; }

table.dataTable.hover tbody tr:hover.selected, table.dataTable.display tbody tr:hover.selected {
  background-color: #aab7d1; }

table.dataTable.order-column tbody tr > .sorting_1,
table.dataTable.order-column tbody tr > .sorting_2,
table.dataTable.order-column tbody tr > .sorting_3, table.dataTable.display tbody tr > .sorting_1,
table.dataTable.display tbody tr > .sorting_2,
table.dataTable.display tbody tr > .sorting_3 {
  background-color: #fafafa; }

table.dataTable.order-column tbody tr.selected > .sorting_1,
table.dataTable.order-column tbody tr.selected > .sorting_2,
table.dataTable.order-column tbody tr.selected > .sorting_3, table.dataTable.display tbody tr.selected > .sorting_1,
table.dataTable.display tbody tr.selected > .sorting_2,
table.dataTable.display tbody tr.selected > .sorting_3 {
  background-color: #acbad5; }

table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
  background-color: #f1f1f1; }

table.dataTable.display tbody tr.odd > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd > .sorting_2 {
  background-color: #f3f3f3; }

table.dataTable.display tbody tr.odd > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd > .sorting_3 {
  background-color: whitesmoke; }

table.dataTable.display tbody tr.odd.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_1 {
  background-color: #a6b4cd; }

table.dataTable.display tbody tr.odd.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_2 {
  background-color: #a8b5cf; }

table.dataTable.display tbody tr.odd.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.odd.selected > .sorting_3 {
  background-color: #a9b7d1; }

table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
  background-color: #fafafa; }

table.dataTable.display tbody tr.even > .sorting_2, table.dataTable.order-column.stripe tbody tr.even > .sorting_2 {
  background-color: #fcfcfc; }

table.dataTable.display tbody tr.even > .sorting_3, table.dataTable.order-column.stripe tbody tr.even > .sorting_3 {
  background-color: #fefefe; }

table.dataTable.display tbody tr.even.selected > .sorting_1, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_1 {
  background-color: #acbad5; }

table.dataTable.display tbody tr.even.selected > .sorting_2, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_2 {
  background-color: #aebcd6; }

table.dataTable.display tbody tr.even.selected > .sorting_3, table.dataTable.order-column.stripe tbody tr.even.selected > .sorting_3 {
  background-color: #afbdd8; }

table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.order-column.hover tbody tr:hover > .sorting_1 {
  background-color: #eaeaea; }

table.dataTable.display tbody tr:hover > .sorting_2, table.dataTable.order-column.hover tbody tr:hover > .sorting_2 {
  background-color: #ececec; }

table.dataTable.display tbody tr:hover > .sorting_3, table.dataTable.order-column.hover tbody tr:hover > .sorting_3 {
  background-color: #efefef; }

table.dataTable.display tbody tr:hover.selected > .sorting_1, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_1 {
  background-color: #a2aec7; }

table.dataTable.display tbody tr:hover.selected > .sorting_2, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_2 {
  background-color: #a3b0c9; }

table.dataTable.display tbody tr:hover.selected > .sorting_3, table.dataTable.order-column.hover tbody tr:hover.selected > .sorting_3 {
  background-color: #a5b2cb; }

table.dataTable.no-footer {
  border-bottom: 1px solid #111; }

table.dataTable.nowrap th, table.dataTable.nowrap td {
  white-space: nowrap; }

table.dataTable.compact thead th,
table.dataTable.compact thead td {
  padding: 4px 17px; }

table.dataTable.compact tfoot th,
table.dataTable.compact tfoot td {
  padding: 4px; }

table.dataTable.compact tbody th,
table.dataTable.compact tbody td {
  padding: 4px; }

table.dataTable th.dt-left,
table.dataTable td.dt-left {
  text-align: left; }

table.dataTable th.dt-center,
table.dataTable td.dt-center,
table.dataTable td.dataTables_empty {
  text-align: center; }

table.dataTable th.dt-right,
table.dataTable td.dt-right {
  text-align: right; }

table.dataTable th.dt-justify,
table.dataTable td.dt-justify {
  text-align: justify; }

table.dataTable th.dt-nowrap,
table.dataTable td.dt-nowrap {
  white-space: nowrap; }

table.dataTable thead th.dt-head-left,
table.dataTable thead td.dt-head-left,
table.dataTable tfoot th.dt-head-left,
table.dataTable tfoot td.dt-head-left {
  text-align: left; }

table.dataTable thead th.dt-head-center,
table.dataTable thead td.dt-head-center,
table.dataTable tfoot th.dt-head-center,
table.dataTable tfoot td.dt-head-center {
  text-align: center; }

table.dataTable thead th.dt-head-right,
table.dataTable thead td.dt-head-right,
table.dataTable tfoot th.dt-head-right,
table.dataTable tfoot td.dt-head-right {
  text-align: right; }

table.dataTable thead th.dt-head-justify,
table.dataTable thead td.dt-head-justify,
table.dataTable tfoot th.dt-head-justify,
table.dataTable tfoot td.dt-head-justify {
  text-align: justify; }

table.dataTable thead th.dt-head-nowrap,
table.dataTable thead td.dt-head-nowrap,
table.dataTable tfoot th.dt-head-nowrap,
table.dataTable tfoot td.dt-head-nowrap {
  white-space: nowrap; }

table.dataTable tbody th.dt-body-left,
table.dataTable tbody td.dt-body-left {
  text-align: left; }

table.dataTable tbody th.dt-body-center,
table.dataTable tbody td.dt-body-center {
  text-align: center; }

table.dataTable tbody th.dt-body-right,
table.dataTable tbody td.dt-body-right {
  text-align: right; }

table.dataTable tbody th.dt-body-justify,
table.dataTable tbody td.dt-body-justify {
  text-align: justify; }

table.dataTable tbody th.dt-body-nowrap,
table.dataTable tbody td.dt-body-nowrap {
  white-space: nowrap; }

table.dataTable,
table.dataTable th,
table.dataTable td {
  box-sizing: content-box; }

/*
 * Control feature layout
 */
.dataTables_wrapper {
  position: relative;
  clear: both;
  *zoom: 1;
  zoom: 1; }

.dataTables_wrapper .dataTables_length {
  float: left; }

.dataTables_wrapper .dataTables_filter {
  float: right;
  text-align: right; }

.dataTables_wrapper .dataTables_filter input {
  margin-left: 0.5em; }

.dataTables_wrapper .dataTables_info {
  clear: both;
  float: left;
  padding-top: 0.755em; }

.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em; }

.dataTables_wrapper .dataTables_paginate .paginate_button {
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  margin-left: 2px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
  *cursor: hand;
  color: #333 !important;
  border: 1px solid transparent;
  border-radius: 2px; }

.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #333 !important;
  border: 1px solid #979797;
  background-color: white;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #dcdcdc));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, white 0%, #dcdcdc 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, white 0%, #dcdcdc 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, white 0%, #dcdcdc 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, white 0%, #dcdcdc 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, white 0%, #dcdcdc 100%);
  /* W3C */ }

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #666 !important;
  border: 1px solid transparent;
  background: transparent;
  box-shadow: none; }

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white !important;
  border: 1px solid #111;
  background-color: #585858;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #585858), color-stop(100%, #111));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #585858 0%, #111 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #585858 0%, #111 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #585858 0%, #111 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #585858 0%, #111 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #585858 0%, #111 100%);
  /* W3C */ }

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: #2b2b2b;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2b2b2b), color-stop(100%, #0c0c0c));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* Chrome10+,Safari5.1+ */
  background: -moz-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* FF3.6+ */
  background: -ms-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* IE10+ */
  background: -o-linear-gradient(top, #2b2b2b 0%, #0c0c0c 100%);
  /* Opera 11.10+ */
  background: linear-gradient(to bottom, #2b2b2b 0%, #0c0c0c 100%);
  /* W3C */
  box-shadow: inset 0 0 3px #111; }

.dataTables_wrapper .dataTables_paginate .ellipsis {
  padding: 0 1em; }

.dataTables_wrapper .dataTables_processing {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 40px;
  margin-left: -50%;
  margin-top: -25px;
  padding-top: 20px;
  text-align: center;
  font-size: 1.2em;
  background-color: white;
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.9)), color-stop(75%, rgba(255, 255, 255, 0.9)), color-stop(100%, rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.9) 75%, rgba(255, 255, 255, 0) 100%); }

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
  color: #333; }

.dataTables_wrapper .dataTables_scroll {
  clear: both; }

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
  *margin-top: -1px;
  -webkit-overflow-scrolling: touch; }

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td {
  vertical-align: middle; }

.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > thead > tr > td > div.dataTables_sizing, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > th > div.dataTables_sizing,
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody > table > tbody > tr > td > div.dataTables_sizing {
  height: 0;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important; }

.dataTables_wrapper.no-footer .dataTables_scrollBody {
  border-bottom: 1px solid #111; }

.dataTables_wrapper.no-footer div.dataTables_scrollHead table.dataTable,
.dataTables_wrapper.no-footer div.dataTables_scrollBody > table {
  border-bottom: none; }

.dataTables_wrapper:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0; }

@media screen and (max-width: 767px) {
  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    float: none;
    text-align: center; }

  .dataTables_wrapper .dataTables_paginate {
    margin-top: 0.5em; } }
@media screen and (max-width: 640px) {
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_filter {
    float: none;
    text-align: center; }

  .dataTables_wrapper .dataTables_filter {
    margin-top: 0.5em; } }
@keyframes dtb-spinner {
  100% {
    transform: rotate(360deg); } }
@-o-keyframes dtb-spinner {
  100% {
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-ms-keyframes dtb-spinner {
  100% {
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-webkit-keyframes dtb-spinner {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-moz-keyframes dtb-spinner {
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg); } }
div.dt-button-info {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  margin-top: -100px;
  margin-left: -200px;
  background-color: white;
  border: 2px solid #111;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  text-align: center;
  z-index: 21; }

div.dt-button-info h2 {
  padding: 0.5em;
  margin: 0;
  font-weight: normal;
  border-bottom: 1px solid #ddd;
  background-color: #f3f3f3; }

div.dt-button-info > div {
  padding: 1em; }

div.dt-button-collection-title {
  text-align: center;
  padding: 0.3em 0 0.5em;
  font-size: 0.9em; }

div.dt-button-collection-title:empty {
  display: none; }

button.dt-button,
div.dt-button,
a.dt-button {
  border: 0; }

.dt-button embed {
  outline: none; }

div.dt-buttons {
  position: relative;
  float: left; }

div.dt-buttons.buttons-right {
  float: right; }

div.dataTables_layout_cell div.dt-buttons {
  float: none; }

div.dataTables_layout_cell div.dt-buttons.buttons-right {
  float: none; }

div.dt-button-collection {
  position: absolute;
  top: 0;
  left: 0;
  width: 150px;
  margin-top: 3px;
  padding: 8px 8px 4px 8px;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background-color: white;
  overflow: hidden;
  z-index: 2002;
  border-radius: 5px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  box-sizing: border-box; }

div.dt-button-collection button.dt-button,
div.dt-button-collection div.dt-button,
div.dt-button-collection a.dt-button {
  position: relative;
  left: 0;
  right: 0;
  width: 100%;
  display: block;
  float: none;
  margin-bottom: 4px;
  margin-right: 0; }

div.dt-button-collection button.dt-button:active:not(.disabled), div.dt-button-collection button.dt-button.active:not(.disabled),
div.dt-button-collection div.dt-button:active:not(.disabled),
div.dt-button-collection div.dt-button.active:not(.disabled),
div.dt-button-collection a.dt-button:active:not(.disabled),
div.dt-button-collection a.dt-button.active:not(.disabled) {
  background-color: #dadada;
  /* Fallback */
  background-image: -webkit-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  /* Chrome 10+, Saf5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  /* FF3.6 */
  background-image: -ms-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  /* IE10 */
  background-image: -o-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
  /* Opera 11.10+ */
  background-image: linear-gradient(to bottom, #f0f0f0 0%, #dadada 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f0f0f0', EndColorStr='#dadada');
  box-shadow: inset 1px 1px 3px #666; }

div.dt-button-collection.fixed {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-left: -75px;
  border-radius: 0; }

div.dt-button-collection.fixed.two-column {
  margin-left: -200px; }

div.dt-button-collection.fixed.three-column {
  margin-left: -225px; }

div.dt-button-collection.fixed.four-column {
  margin-left: -300px; }

div.dt-button-collection > :last-child {
  display: block !important;
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  -ms-column-gap: 8px;
  -o-column-gap: 8px;
  column-gap: 8px; }

div.dt-button-collection > :last-child > * {
  -webkit-column-break-inside: avoid;
  break-inside: avoid; }

div.dt-button-collection.two-column {
  width: 400px; }

div.dt-button-collection.two-column > :last-child {
  padding-bottom: 1px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  -ms-column-count: 2;
  -o-column-count: 2;
  column-count: 2; }

div.dt-button-collection.three-column {
  width: 450px; }

div.dt-button-collection.three-column > :last-child {
  padding-bottom: 1px;
  -webkit-column-count: 3;
  -moz-column-count: 3;
  -ms-column-count: 3;
  -o-column-count: 3;
  column-count: 3; }

div.dt-button-collection.four-column {
  width: 600px; }

div.dt-button-collection.four-column > :last-child {
  padding-bottom: 1px;
  -webkit-column-count: 4;
  -moz-column-count: 4;
  -ms-column-count: 4;
  -o-column-count: 4;
  column-count: 4; }

div.dt-button-collection .dt-button {
  border-radius: 0; }

div.dt-button-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Fallback */
  background: -ms-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  /* IE10 Consumer Preview */
  background: -moz-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  /* Firefox */
  background: -o-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  /* Opera */
  background: -webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, rgba(0, 0, 0, 0.3)), color-stop(1, rgba(0, 0, 0, 0.7)));
  /* Webkit (Safari/Chrome 10) */
  background: -webkit-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  /* Webkit (Chrome 11+) */
  background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  /* W3C Markup, IE10 Release Preview */
  z-index: 2001; }

button.dt-button.processing,
div.dt-button.processing,
a.dt-button.processing {
  color: rgba(0, 0, 0, 0.2); }

button.dt-button.processing:after,
div.dt-button.processing:after,
a.dt-button.processing:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  box-sizing: border-box;
  display: block;
  content: ' ';
  border: 2px solid #282828;
  border-radius: 50%;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: dtb-spinner 1500ms infinite linear;
  -o-animation: dtb-spinner 1500ms infinite linear;
  -ms-animation: dtb-spinner 1500ms infinite linear;
  -webkit-animation: dtb-spinner 1500ms infinite linear;
  -moz-animation: dtb-spinner 1500ms infinite linear; }

table.fixedHeader-locked {
  position: absolute !important;
  background-color: white; }

.dataTables_filter {
  position: absolute;
  right: 0px;
  top: -30px; }

/*
    PestScan Web 2016 redesign
    Joel Meijering
*/
/* Homepage */
.pnlButtons {
  margin: 0 auto;
  margin-top: 40px;
  width: 100%; }

.pnlButtons table {
  margin: 0 auto; }

.tblButton a {
  color: #555;
  color: #333; }

.tblButton img {
  position: relative;
  left: -6px; }

.tblButton img:hover {
  opacity: 0.6; }

.tblButton > table table {
  width: 150px !important;
  height: 200px;
  display: block;
  margin: 10px;
  overflow: hidden;
  border-radius: 0px;
  padding-top: 10px;
  border: 0 !important; }

.tblButton > table table tr:first-child {
  height: 130px; }

.tblButton > table table tr:last-child {
  height: 10px !important; }

#companyInfo {
  border: 1px solid var(--theme-primary-color-text);
  border-collapse: collapse;
  padding: 5px; }

#companyInfo th {
  border: 1px solid var(--theme-primary-color-text);
  padding: 5px;
  background: var(--theme-primary-color-text); }

#companyInfo td {
  border: 1px solid var(--theme-primary-color-text);
  text-align: left;
  padding: 5px; }

.companyInfo--text {
  font-weight: bold;
  margin-right: 5px; }

.companyInfo--header {
  font-size: 14px;
  font-weight: bold; }

.loginform {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-width: 1100px; }

.ps_color-red {
  color: red; }

.ps_reset-control {
  margin-bottom: 10px; }

.login-section {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  position: absolute; }

#loadIconWrapper {
  text-align: center;
  margin: 10px; }

.login {
  background: #FFFFFF;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25); }

.loginPage {
  background-color: black; }
  .loginPage #postHeader {
    align-self: center; }
  .loginPage input[type="text"], .loginPage input[type="password"] {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 5px 0;
    width: 100%;
    box-sizing: border-box; }
  .loginPage .login-button {
    border-radius: 5px;
    background-color: var(--theme-primary-color);
    color: var(--theme-primary-color-text);
    width: 100%;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    margin: 10px 0; }
  .loginPage .login-button:hover {
    background-color: #ff822e; }
  .loginPage .LoginHeader {
    line-height: 40px;
    font-size: 18px;
    color: var(--theme-primary-color); }
  .loginPage .version {
    margin: 0 0 0 auto;
    padding: 0 20px 18px 0;
    color: #C7C7C7;
    font-size: 14px; }
  .loginPage .line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, gainsboro, transparent);
    opacity: 0.6; }
  .loginPage .footer {
    height: 80px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    min-width: 500px; }
    .loginPage .footer .copyright {
      display: inline;
      position: relative;
      color: white;
      left: 10%;
      top: 35%;
      transform: translate(0, -50%); }
    .loginPage .footer .language {
      display: inline;
      position: relative;
      left: calc(90% - 120px);
      transform: translate(0, -50%);
      color: white; }
      .loginPage .footer .language .languageEntry {
        color: white;
        display: flex; }
    .loginPage .footer .languages {
      transform: translate(-6px, calc(-100% - 46px));
      display: none;
      background-color: white;
      position: sticky;
      border: solid 1px black;
      box-sizing: border-box;
      z-index: 1000;
      gap: 3px; }
      .loginPage .footer .languages .languageEntry {
        color: black;
        overflow: hidden;
        gap: 0px;
        justify-content: start; }
        .loginPage .footer .languages .languageEntry:hover {
          cursor: pointer; }
        .loginPage .footer .languages .languageEntry img {
          width: 36px;
          border: solid 1px black;
          border-radius: 30px;
          box-sizing: border-box;
          transition: box-shadow 0.3s ease-in-out; }
          .loginPage .footer .languages .languageEntry img:hover {
            box-shadow: inset 0 0 1000px 1000px var(--theme-primary-color-faded); }
    .loginPage .footer .language:hover .languages {
      display: block; }
    .loginPage .footer .CountryTitle {
      margin-left: 10px;
      align-self: center; }
  .loginPage input[type=text].loginInvalid, .loginPage input[type=password].loginInvalid {
    border: solid 1px red; }

.loginBackground {
  height: 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(15px);
  -webkit-filter: blur(15px); }

#pnlLoginPanel {
  height: 650px;
  width: 400px;
  display: flex;
  flex-direction: column; }
  #pnlLoginPanel > .ps_post-header {
    padding: 30px 0px 0px 0px; }
  #pnlLoginPanel > #LoginWelcome {
    text-align: center; }
  #pnlLoginPanel > .line {
    margin: 20px 0px; }

#pnlPasswordPanel {
  height: 250px;
  width: 400px;
  display: flex;
  justify-content: center;
  margin-top: 20px; }

.LoginSection {
  align-self: center;
  max-width: 329px; }

.LoginSectionFull {
  width: 329px; }

#WrongPasswordSection {
  color: red;
  font-weight: bold; }

.LoginMessagesSection {
  flex-grow: 100; }

.center {
  display: block;
  margin-left: auto;
  margin-right: auto; }

#btnResetPassword {
  opacity: 0.6;
  display: none; }

#twoFactorSection, #twoFactorSetupSection {
  display: none; }

#lblResetPasswordMessage {
  width: 329px; }

.login-header {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px; }

#EditUserControlBody {
  display: flex;
  gap: 5px;
  flex-direction: column; }
  #EditUserControlBody:not(.validation-summary) div {
    grid-template-columns: 20% 30% 50%; }
  #EditUserControlBody.validation-summary div {
    grid-template-columns: 40% 60%; }
    #EditUserControlBody.validation-summary div div:nth-child(n+3) {
      display: none; }
  #EditUserControlBody a, #EditUserControlBody .button {
    text-decoration: none;
    padding: 3px 4px 4px 4px;
    border: 1px solid #ccc;
    text-align: center;
    display: inline-block; }
    #EditUserControlBody a:hover, #EditUserControlBody .button:hover {
      background: #EAEAEA;
      text-decoration: none;
      cursor: pointer; }
  #EditUserControlBody #divTwoFactorAuthentication, #EditUserControlBody #divRemoveTwoFactorAuthentication, #EditUserControlBody #divSetupTwoFactorAuthentication {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    display: grid;
    grid-template-columns: 20% 30% 50%;
    align-items: center;
    gap: 5px 0; }
    #EditUserControlBody #divTwoFactorAuthentication .freshdesk-link, #EditUserControlBody #divRemoveTwoFactorAuthentication .freshdesk-link, #EditUserControlBody #divSetupTwoFactorAuthentication .freshdesk-link {
      border: none; }
      #EditUserControlBody #divTwoFactorAuthentication .freshdesk-link svg, #EditUserControlBody #divRemoveTwoFactorAuthentication .freshdesk-link svg, #EditUserControlBody #divSetupTwoFactorAuthentication .freshdesk-link svg {
        margin-bottom: -7px;
        margin-left: 200px; }
    #EditUserControlBody #divTwoFactorAuthentication img, #EditUserControlBody #divRemoveTwoFactorAuthentication img, #EditUserControlBody #divSetupTwoFactorAuthentication img {
      margin-left: -10px; }
    #EditUserControlBody #divTwoFactorAuthentication > div, #EditUserControlBody #divRemoveTwoFactorAuthentication > div, #EditUserControlBody #divSetupTwoFactorAuthentication > div {
      justify-self: end;
      margin-right: 10px; }
    #EditUserControlBody #divTwoFactorAuthentication span, #EditUserControlBody #divRemoveTwoFactorAuthentication span, #EditUserControlBody #divSetupTwoFactorAuthentication span {
      word-wrap: break-word; }
    #EditUserControlBody #divTwoFactorAuthentication input, #EditUserControlBody #divTwoFactorAuthentication #ManualSetupCode, #EditUserControlBody #divRemoveTwoFactorAuthentication input, #EditUserControlBody #divRemoveTwoFactorAuthentication #ManualSetupCode, #EditUserControlBody #divSetupTwoFactorAuthentication input, #EditUserControlBody #divSetupTwoFactorAuthentication #ManualSetupCode {
      width: calc(100% - 20px); }
    #EditUserControlBody #divTwoFactorAuthentication #btnVerifyTwoFactor, #EditUserControlBody #divTwoFactorAuthentication #btnRemoveTwoFactor, #EditUserControlBody #divRemoveTwoFactorAuthentication #btnVerifyTwoFactor, #EditUserControlBody #divRemoveTwoFactorAuthentication #btnRemoveTwoFactor, #EditUserControlBody #divSetupTwoFactorAuthentication #btnVerifyTwoFactor, #EditUserControlBody #divSetupTwoFactorAuthentication #btnRemoveTwoFactor {
      grid-column: 2;
      width: 10%;
      min-width: 85px; }
    #EditUserControlBody #divTwoFactorAuthentication #btnShow2FASetup, #EditUserControlBody #divRemoveTwoFactorAuthentication #btnShow2FASetup, #EditUserControlBody #divSetupTwoFactorAuthentication #btnShow2FASetup {
      grid-column: 2;
      width: 250px; }
    #EditUserControlBody #divTwoFactorAuthentication #divManualCodeSpan, #EditUserControlBody #divTwoFactorAuthentication #ManualSetupCode, #EditUserControlBody #divRemoveTwoFactorAuthentication #divManualCodeSpan, #EditUserControlBody #divRemoveTwoFactorAuthentication #ManualSetupCode, #EditUserControlBody #divSetupTwoFactorAuthentication #divManualCodeSpan, #EditUserControlBody #divSetupTwoFactorAuthentication #ManualSetupCode {
      grid-row: 2; }
    #EditUserControlBody #divTwoFactorAuthentication #divSetupCodeSpan, #EditUserControlBody #divTwoFactorAuthentication #txtSetupCode, #EditUserControlBody #divTwoFactorAuthentication #Verify2FAWarning, #EditUserControlBody #divTwoFactorAuthentication #rfvSetupTwoFactorValidation, #EditUserControlBody #divRemoveTwoFactorAuthentication #divSetupCodeSpan, #EditUserControlBody #divRemoveTwoFactorAuthentication #txtSetupCode, #EditUserControlBody #divRemoveTwoFactorAuthentication #Verify2FAWarning, #EditUserControlBody #divRemoveTwoFactorAuthentication #rfvSetupTwoFactorValidation, #EditUserControlBody #divSetupTwoFactorAuthentication #divSetupCodeSpan, #EditUserControlBody #divSetupTwoFactorAuthentication #txtSetupCode, #EditUserControlBody #divSetupTwoFactorAuthentication #Verify2FAWarning, #EditUserControlBody #divSetupTwoFactorAuthentication #rfvSetupTwoFactorValidation {
      grid-row: 3; }
    #EditUserControlBody #divTwoFactorAuthentication #rfvRemoveTwoFactorValidation, #EditUserControlBody #divRemoveTwoFactorAuthentication #rfvRemoveTwoFactorValidation, #EditUserControlBody #divSetupTwoFactorAuthentication #rfvRemoveTwoFactorValidation {
      grid-row: 1;
      grid-column: 3; }
  #EditUserControlBody #divRemoveTwoFactorAuthentication {
    grid-template-columns: 20% 30% 50%; }
    #EditUserControlBody #divRemoveTwoFactorAuthentication input {
      width: calc(100% - 20px); }
    #EditUserControlBody #divRemoveTwoFactorAuthentication #btnVerifyTwoFactor, #EditUserControlBody #divRemoveTwoFactorAuthentication #btnRemoveTwoFactor {
      width: 30%; }

#lblSaveUserText {
  display: block; }

#divTwoFactorAuthentication {
  padding-top: 10px; }

#twoFactorSetupSection {
  text-align: center; }
  #twoFactorSetupSection #ManualSetupCode {
    display: inline;
    word-wrap: break-word;
    font-size: 11px; }

/*! jQuery UI - v1.10.3 - 2013-05-03
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana%2CArial%2Csans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright 2013 jQuery Foundation and other contributors Licensed MIT */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none; }

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none; }

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse; }

.ui-helper-clearfix:after {
  clear: both; }

.ui-helper-clearfix {
  min-height: 0;
  /* support: IE7 */ }

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0); }

.ui-front {
  z-index: 100; }

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important; }

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat; }

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.ui-accordion .ui-accordion-header {
  display: block;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  padding: .5em .5em .5em .7em;
  min-height: 0;
  /* support: IE7 */ }

.ui-accordion .ui-accordion-icons {
  padding-left: 2.2em; }

.ui-accordion .ui-accordion-noicons {
  padding-left: .7em; }

.ui-accordion .ui-accordion-icons .ui-accordion-icons {
  padding-left: 2.2em; }

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  left: .5em;
  top: 50%;
  margin-top: -8px; }

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  overflow: auto; }

.ui-autocomplete {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default; }

.ui-button {
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  overflow: visible;
  /* removes extra width in IE */ }

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none; }

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2.2em; }

/* button elements seem to need a little more width */
button.ui-button-icon-only {
  width: 2.4em; }

.ui-button-icons-only {
  width: 3.4em; }

button.ui-button-icons-only {
  width: 3.7em; }

/* button text element */
.ui-button .ui-button-text {
  line-height: normal; }

.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
  padding: .4em;
  text-indent: -9999999px; }

.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: .4em 1em .4em 2.1em; }

.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: .4em 2.1em .4em 1em; }

.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em; }

/* no icon support for input elements, provide padding by default */
input.ui-button {
  padding: .4em 1em; }

/* button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px; }

.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px; }

.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
  left: .5em; }

.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
  right: .5em; }

/* button sets */
.ui-buttonset {
  margin-right: 7px; }

.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -.3em; }

/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0; }

.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none; }

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0; }

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em; }

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px; }

.ui-datepicker .ui-datepicker-prev {
  left: 2px; }

.ui-datepicker .ui-datepicker-next {
  right: 2px; }

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px; }

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px; }

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px; }

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center; }

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0; }

.ui-datepicker select.ui-datepicker-month-year {
  width: 100%; }

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 49%; }

.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em; }

.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0; }

.ui-datepicker td {
  border: 0;
  padding: 1px; }

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none; }

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0; }

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible; }

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left; }

#ui-datepicker-div.ui-datepicker {
  z-index: 101 !important; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto; }

.ui-datepicker-multi .ui-datepicker-group {
  float: left; }

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em; }

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%; }

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%; }

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%; }

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0; }

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left; }

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0; }

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl; }

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto; }

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto; }

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left; }

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
  float: right; }

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px; }

.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: .2em;
  outline: 0; }

.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative; }

.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis; }

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  margin: -10px 0 0 0;
  padding: 1px; }

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto; }

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: .5em;
  padding: .3em 1em .5em .4em; }

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right; }

.ui-dialog .ui-resizable-se {
  width: 12px;
  height: 12px;
  right: -5px;
  bottom: -5px;
  background-position: 16px 16px; }

.ui-draggable .ui-dialog-titlebar {
  cursor: move; }

.ui-menu {
  list-style: none;
  padding: 2px;
  margin: 0;
  display: block;
  outline: none; }

.ui-menu .ui-menu {
  margin-top: -3px;
  position: absolute; }

.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  width: 100%;
  /* support: IE10, see #8844 */
  list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7); }

.ui-menu .ui-menu-divider {
  margin: 5px -2px 5px -2px;
  height: 0;
  font-size: 0;
  line-height: 0;
  border-width: 1px 0 0 0; }

.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  padding: 2px .4em;
  line-height: 1.5;
  min-height: 0;
  /* support: IE7 */
  font-weight: normal; }

.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
  font-weight: normal;
  margin: -1px; }

.ui-menu .ui-state-disabled {
  font-weight: normal;
  margin: .4em 0 .2em;
  line-height: 1.5; }

.ui-menu .ui-state-disabled a {
  cursor: default; }

/* icon support */
.ui-menu-icons {
  position: relative; }

.ui-menu-icons .ui-menu-item a {
  position: relative;
  padding-left: 2em; }

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: .2em;
  left: .2em; }

/* right-aligned */
.ui-menu .ui-menu-icon {
  position: static;
  float: right; }

.ui-progressbar {
  height: 2em;
  text-align: left;
  overflow: hidden; }

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%; }

.ui-progressbar .ui-progressbar-overlay {
  background: url("images/animated-overlay.gif");
  height: 100%;
  filter: alpha(opacity=25);
  opacity: 0.25; }

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none; }

.ui-resizable {
  position: relative; }

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  display: block; }

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none; }

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0; }

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0; }

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%; }

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%; }

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px; }

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px; }

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px; }

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px; }

.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black; }

.ui-slider {
  position: relative;
  text-align: left; }

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default; }

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0; }

/* For IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit; }

.ui-slider-horizontal {
  height: .8em; }

.ui-slider-horizontal .ui-slider-handle {
  top: -.3em;
  margin-left: -.6em; }

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%; }

.ui-slider-horizontal .ui-slider-range-min {
  left: 0; }

.ui-slider-horizontal .ui-slider-range-max {
  right: 0; }

.ui-slider-vertical {
  width: .8em;
  height: 100px; }

.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-left: 0;
  margin-bottom: -.6em; }

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%; }

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0; }

.ui-slider-vertical .ui-slider-range-max {
  top: 0; }

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle; }

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0;
  margin: .2em 0;
  vertical-align: middle;
  margin-left: .4em;
  margin-right: 22px; }

.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: .5em;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0; }

/* more specificity required here to overide default borders */
.ui-spinner a.ui-spinner-button {
  border-top: none;
  border-bottom: none;
  border-right: none; }

/* vertical centre icon */
.ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0; }

.ui-spinner-up {
  top: 0; }

.ui-spinner-down {
  bottom: 0; }

/* overrides */
.ui-spinner .ui-icon-triangle-1-s {
  /* need to fix icons sprite */
  background-position: -65px -16px; }

.ui-tabs {
  position: relative;
  /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
  padding: .2em; }

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0; }

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px .2em 0 0;
  border-bottom-width: 0;
  padding: 0;
  white-space: nowrap; }

.ui-tabs .ui-tabs-nav li a {
  float: left;
  padding: .5em 1em;
  text-decoration: none; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px; }

.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
  cursor: text; }

.ui-tabs .ui-tabs-nav li a,
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
  cursor: pointer; }

.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none; }

.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 300px;
  -webkit-box-shadow: 0 0 5px #aaa;
  box-shadow: 0 0 5px #aaa; }

body .ui-tooltip {
  border-width: 2px; }

/* Component containers
----------------------------------*/
.ui-widget {
  font-size: 1.1em; }

.ui-widget .ui-widget {
  font-size: 1em; }

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-size: 1em; }

.ui-widget-content {
  border: 1px solid #aaaaaa;
  color: #222222; }

.ui-widget-content a {
  color: #222222; }

.ui-widget-header {
  border: 1px solid #aaaaaa;
  background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;
  color: #222222;
  font-weight: bold; }

.ui-widget-header a {
  color: #222222; }

/* Interaction states
----------------------------------*/
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: #555555;
  text-decoration: none; }

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid #999999;
  /*background: #dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;*/
  font-weight: normal;
  color: #212121; }

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
  color: #212121;
  text-decoration: none; }

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid #aaaaaa;
  background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;
  font-weight: normal;
  color: #212121; }

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #212121;
  text-decoration: none; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #fcefa1;
  background: #fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;
  color: #363636; }

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #363636; }

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;
  color: #cd0a0a; }

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #cd0a0a; }

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #cd0a0a; }

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold; }

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  font-weight: normal; }

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  background-image: none; }

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
  /* For IE8 - See #6059 */ }

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px; }

/*
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url(images/ui-icons_222222_256x240.png);
}
.ui-widget-header .ui-icon {
	background-image: url(images/ui-icons_222222_256x240.png);
}
.ui-state-default .ui-icon {
	background-image: url(images/ui-icons_888888_256x240.png);
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
	background-image: url(images/ui-icons_454545_256x240.png);
}
.ui-state-active .ui-icon {
	background-image: url(images/ui-icons_454545_256x240.png);
}
.ui-state-highlight .ui-icon {
	background-image: url(images/ui-icons_2e83ff_256x240.png);
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url(images/ui-icons_cd0a0a_256x240.png);
}
*/
/* positioning */
.ui-icon-blank {
  background-position: 16px 16px; }

.ui-icon-carat-1-n {
  background-position: 0 0; }

.ui-icon-carat-1-ne {
  background-position: -16px 0; }

.ui-icon-carat-1-e {
  background-position: -32px 0; }

.ui-icon-carat-1-se {
  background-position: -48px 0; }

.ui-icon-carat-1-s {
  background-position: -64px 0; }

.ui-icon-carat-1-sw {
  background-position: -80px 0; }

.ui-icon-carat-1-w {
  background-position: -96px 0; }

.ui-icon-carat-1-nw {
  background-position: -112px 0; }

.ui-icon-carat-2-n-s {
  background-position: -128px 0; }

.ui-icon-carat-2-e-w {
  background-position: -144px 0; }

.ui-icon-triangle-1-n {
  background-position: 0 -16px; }

.ui-icon-triangle-1-ne {
  background-position: -16px -16px; }

.ui-icon-triangle-1-e {
  background-position: -32px -16px; }

.ui-icon-triangle-1-se {
  background-position: -48px -16px; }

.ui-icon-triangle-1-s {
  background-position: -64px -16px; }

.ui-icon-triangle-1-sw {
  background-position: -80px -16px; }

.ui-icon-triangle-1-w {
  background-position: -96px -16px; }

.ui-icon-triangle-1-nw {
  background-position: -112px -16px; }

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px; }

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px; }

.ui-icon-arrow-1-n {
  background-position: 0 -32px; }

.ui-icon-arrow-1-ne {
  background-position: -16px -32px; }

.ui-icon-arrow-1-e {
  background-position: -32px -32px; }

.ui-icon-arrow-1-se {
  background-position: -48px -32px; }

.ui-icon-arrow-1-s {
  background-position: -64px -32px; }

.ui-icon-arrow-1-sw {
  background-position: -80px -32px; }

.ui-icon-arrow-1-w {
  background-position: -96px -32px; }

.ui-icon-arrow-1-nw {
  background-position: -112px -32px; }

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px; }

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px; }

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px; }

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px; }

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px; }

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px; }

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px; }

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px; }

.ui-icon-arrowthick-1-n {
  background-position: 0 -48px; }

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px; }

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px; }

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px; }

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px; }

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px; }

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px; }

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px; }

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px; }

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px; }

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px; }

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px; }

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px; }

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px; }

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px; }

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px; }

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px; }

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px; }

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px; }

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px; }

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px; }

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px; }

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px; }

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px; }

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px; }

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px; }

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px; }

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px; }

.ui-icon-arrow-4 {
  background-position: 0 -80px; }

.ui-icon-arrow-4-diag {
  background-position: -16px -80px; }

.ui-icon-extlink {
  background-position: -32px -80px; }

.ui-icon-newwin {
  background-position: -48px -80px; }

.ui-icon-refresh {
  background-position: -64px -80px; }

.ui-icon-shuffle {
  background-position: -80px -80px; }

.ui-icon-transfer-e-w {
  background-position: -96px -80px; }

.ui-icon-transferthick-e-w {
  background-position: -112px -80px; }

.ui-icon-folder-collapsed {
  background-position: 0 -96px; }

.ui-icon-folder-open {
  background-position: -16px -96px; }

.ui-icon-document {
  background-position: -32px -96px; }

.ui-icon-document-b {
  background-position: -48px -96px; }

.ui-icon-note {
  background-position: -64px -96px; }

.ui-icon-mail-closed {
  background-position: -80px -96px; }

.ui-icon-mail-open {
  background-position: -96px -96px; }

.ui-icon-suitcase {
  background-position: -112px -96px; }

.ui-icon-comment {
  background-position: -128px -96px; }

.ui-icon-person {
  background-position: -144px -96px; }

.ui-icon-print {
  background-position: -160px -96px; }

.ui-icon-trash {
  background-position: -176px -96px; }

.ui-icon-locked {
  background-position: -192px -96px; }

.ui-icon-unlocked {
  background-position: -208px -96px; }

.ui-icon-bookmark {
  background-position: -224px -96px; }

.ui-icon-tag {
  background-position: -240px -96px; }

.ui-icon-home {
  background-position: 0 -112px; }

.ui-icon-flag {
  background-position: -16px -112px; }

.ui-icon-calendar {
  background-position: -32px -112px; }

.ui-icon-cart {
  background-position: -48px -112px; }

.ui-icon-pencil {
  background-position: -64px -112px; }

.ui-icon-clock {
  background-position: -80px -112px; }

.ui-icon-disk {
  background-position: -96px -112px; }

.ui-icon-calculator {
  background-position: -112px -112px; }

.ui-icon-zoomin {
  background-position: -128px -112px; }

.ui-icon-zoomout {
  background-position: -144px -112px; }

.ui-icon-search {
  background-position: -160px -112px; }

.ui-icon-wrench {
  background-position: -176px -112px; }

.ui-icon-gear {
  background-position: -192px -112px; }

.ui-icon-heart {
  background-position: -208px -112px; }

.ui-icon-star {
  background-position: -224px -112px; }

.ui-icon-link {
  background-position: -240px -112px; }

.ui-icon-cancel {
  background-position: 0 -128px; }

.ui-icon-plus {
  background-position: -16px -128px; }

.ui-icon-plusthick {
  background-position: -32px -128px; }

.ui-icon-minus {
  background-position: -48px -128px; }

.ui-icon-minusthick {
  background-position: -64px -128px; }

.ui-icon-close {
  background-position: -80px -128px; }

.ui-icon-closethick {
  background-position: -96px -128px; }

.ui-icon-key {
  background-position: -112px -128px; }

.ui-icon-lightbulb {
  background-position: -128px -128px; }

.ui-icon-scissors {
  background-position: -144px -128px; }

.ui-icon-clipboard {
  background-position: -160px -128px; }

.ui-icon-copy {
  background-position: -176px -128px; }

.ui-icon-contact {
  background-position: -192px -128px; }

.ui-icon-image {
  background-position: -208px -128px; }

.ui-icon-video {
  background-position: -224px -128px; }

.ui-icon-script {
  background-position: -240px -128px; }

.ui-icon-alert {
  background-position: 0 -144px; }

.ui-icon-info {
  background-position: -16px -144px; }

.ui-icon-notice {
  background-position: -32px -144px; }

.ui-icon-help {
  background-position: -48px -144px; }

.ui-icon-check {
  background-position: -64px -144px; }

.ui-icon-bullet {
  background-position: -80px -144px; }

.ui-icon-radio-on {
  background-position: -96px -144px; }

.ui-icon-radio-off {
  background-position: -112px -144px; }

.ui-icon-pin-w {
  background-position: -128px -144px; }

.ui-icon-pin-s {
  background-position: -144px -144px; }

.ui-icon-play {
  background-position: 0 -160px; }

.ui-icon-pause {
  background-position: -16px -160px; }

.ui-icon-seek-next {
  background-position: -32px -160px; }

.ui-icon-seek-prev {
  background-position: -48px -160px; }

.ui-icon-seek-end {
  background-position: -64px -160px; }

.ui-icon-seek-start {
  background-position: -80px -160px; }

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px; }

.ui-icon-stop {
  background-position: -96px -160px; }

.ui-icon-eject {
  background-position: -112px -160px; }

.ui-icon-volume-off {
  background-position: -128px -160px; }

.ui-icon-volume-on {
  background-position: -144px -160px; }

.ui-icon-power {
  background-position: 0 -176px; }

.ui-icon-signal-diag {
  background-position: -16px -176px; }

.ui-icon-signal {
  background-position: -32px -176px; }

.ui-icon-battery-0 {
  background-position: -48px -176px; }

.ui-icon-battery-1 {
  background-position: -64px -176px; }

.ui-icon-battery-2 {
  background-position: -80px -176px; }

.ui-icon-battery-3 {
  background-position: -96px -176px; }

.ui-icon-circle-plus {
  background-position: 0 -192px; }

.ui-icon-circle-minus {
  background-position: -16px -192px; }

.ui-icon-circle-close {
  background-position: -32px -192px; }

.ui-icon-circle-triangle-e {
  background-position: -48px -192px; }

.ui-icon-circle-triangle-s {
  background-position: -64px -192px; }

.ui-icon-circle-triangle-w {
  background-position: -80px -192px; }

.ui-icon-circle-triangle-n {
  background-position: -96px -192px; }

.ui-icon-circle-arrow-e {
  background-position: -112px -192px; }

.ui-icon-circle-arrow-s {
  background-position: -128px -192px; }

.ui-icon-circle-arrow-w {
  background-position: -144px -192px; }

.ui-icon-circle-arrow-n {
  background-position: -160px -192px; }

.ui-icon-circle-zoomin {
  background-position: -176px -192px; }

.ui-icon-circle-zoomout {
  background-position: -192px -192px; }

.ui-icon-circle-check {
  background-position: -208px -192px; }

.ui-icon-circlesmall-plus {
  background-position: 0 -208px; }

.ui-icon-circlesmall-minus {
  background-position: -16px -208px; }

.ui-icon-circlesmall-close {
  background-position: -32px -208px; }

.ui-icon-squaresmall-plus {
  background-position: -48px -208px; }

.ui-icon-squaresmall-minus {
  background-position: -64px -208px; }

.ui-icon-squaresmall-close {
  background-position: -80px -208px; }

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px; }

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px; }

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px; }

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px; }

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px; }

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px; }

/* Misc visuals
----------------------------------*/
.drg-drp {
  margin: 15px;
  border: 1px dashed var(--theme-primary-color);
  border-radius: 10px;
  height: 150px;
  text-align: center; }

.drg-drp-dragover {
  background-color: #f7f7f7; }

.drg-drp-message {
  font-size: 1.5em; }

.drg-drp-img-preview {
  width: 100%;
  height: 100%; }

.drg-drp-img-container {
  width: 150px;
  height: 150px;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  border-radius: 12px;
  box-shadow: 0 0 8px 0 #888888; }
  .drg-drp-img-container img {
    height: 150px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto; }
  .drg-drp-img-container .drg-drp-img-container-details {
    position: absolute;
    top: 0;
    padding-top: 20px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.7);
    z-index: 2;
    opacity: 0; }
    .drg-drp-img-container .drg-drp-img-container-details span {
      width: 140px;
      display: block;
      word-wrap: break-word; }

.btn-remove {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  border-radius: 15px;
  font-size: 15px;
  line-height: 0;
  font-weight: 700;
  padding-bottom: 7px;
  padding-left: 4px;
  z-index: 3; }

.green {
  color: green; }

.red {
  color: red; }

.DocVal {
  color: red;
  font-weight: 900;
  font-size: large; }

.Red {
  color: Red; }

.Yellow {
  color: #F9CC3B; }

.Orange {
  color: orange; }

.Green {
  color: green; }

.White {
  color: white; }

.Navy {
  color: navy; }

.BurlyWood {
  color: burlywood; }

.Purple {
  color: purple; }

.Black {
  color: black; }

.Transparent {
  color: transparent; }

.bold {
  font-weight: bold; }

.pt14 {
  font-size: 14pt; }

.circle {
  font-size: 72px;
  line-height: 12pt; }
  .circle span {
    font-size: 12px; }

.ps_mch-container {
  position: relative;
  width: fit-content;
  min-width: 250px;
  margin: 5px 0px 3px 0px; }
  .ps_mch-container .ps_mch-list {
    list-style: none;
    border: 1px solid #ccc;
    padding: 3px;
    padding-bottom: 0;
    position: relative;
    cursor: pointer;
    height: 22px; }
    .ps_mch-container .ps_mch-list li {
      display: inline-block; }
    .ps_mch-container .ps_mch-list .ps_mch-list--item:not(.ps_mch-list--toggle) {
      background-color: #ededed;
      border-radius: 3px;
      padding: 0px 3px;
      margin-right: 5px;
      max-width: 60px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis; }
    .ps_mch-container .ps_mch-list .ps_mch-list--toggle {
      float: right; }
      .ps_mch-container .ps_mch-list .ps_mch-list--toggle .toggle-icon {
        height: 25px;
        width: 25px;
        position: relative; }
      .ps_mch-container .ps_mch-list .ps_mch-list--toggle .toggle-icon:after {
        content: '\25bc';
        position: absolute;
        left: 10px;
        color: #777; }
  .ps_mch-container .ps_mch-items-panel {
    position: absolute;
    top: 27px;
    z-index: 49;
    background-color: #fff;
    width: 100%;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.5);
    max-height: 250px;
    overflow-x: auto;
    display: none; }
    .ps_mch-container .ps_mch-items-panel .checkBoxList {
      padding: 5px 10px; }
      .ps_mch-container .ps_mch-items-panel .checkBoxList td {
        border: none;
        padding: 0;
        white-space: nowrap; }
    .ps_mch-container .ps_mch-items-panel .applicable label {
      font-weight: 600; }
    .ps_mch-container .ps_mch-items-panel .notApplicable label {
      font-weight: 100; }
    .ps_mch-container .ps_mch-items-panel .neverApplicable label {
      font-weight: 100;
      font-style: italic; }

/* Accordion styles */
.ps_tabs {
  overflow: hidden; }

.ps_tab {
  width: 100%;
  color: #333;
  overflow: hidden; }
  .ps_tab-label {
    display: flex;
    justify-content: space-between;
    padding: 0.5em;
    background: #eee;
    font-family: 'Open Sans', arial, sans-serif;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #ddd;
    /* Icon */ }
    .ps_tab-label:hover {
      background: #d5d5d5; }
    .ps_tab-label::after {
      transform: rotate(90deg);
      transform-origin: 9.666px 11.666px;
      content: "\276F";
      width: 1em;
      height: 1em;
      text-align: center;
      transition: all .35s; }
  .ps_tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #333;
    background: white;
    border: 1px solid white; }
    .ps_tab-content:not(.preload) {
      transition: all .35s; }
  .ps_tab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #eee;
    cursor: pointer; }
    .ps_tab-close:hover {
      background: #d5d5d5; }
  .ps_tab .ps_tab-content {
    overflow: hidden;
    border-top: none; }

.service_subHeader {
  background: #f6f6f6; }

#ps_chckFilters:checked + .ps_tab-label, #ps_chckColumns:checked + .ps_tab-label {
  background: #d5d5d5; }
  #ps_chckFilters:checked + .ps_tab-label::after, #ps_chckColumns:checked + .ps_tab-label::after {
    transform: rotate(-90deg); }
#ps_chckFilters:checked ~ .ps_tab-content, #ps_chckColumns:checked ~ .ps_tab-content {
  max-height: 100vh;
  padding: 1em;
  border: 1px solid #ddd;
  border-top: none;
  opacity: 1; }

#ps_chckFilters:not(:checked) ~ .ps_tab-content, #ps_chckColumns:not(:checked) ~ .ps_tab-content {
  opacity: 0; }
  #ps_chckFilters:not(:checked) ~ .ps_tab-content .ps_advice_filter-reset, #ps_chckColumns:not(:checked) ~ .ps_tab-content .ps_advice_filter-reset {
    opacity: 0; }

#tabs {
  margin-bottom: 55px;
  border-radius: 4px; }

#tabs .ui-tabs-panel {
  min-height: 0; }

#tabs a.ui-tabs-anchor {
  border: none; }

.ui-tabs {
  border: 1px solid var(--theme-primary-color); }

.ui-tabs-nav {
  background: var(--theme-primary-color-faded);
  border: 1px solid var(--theme-primary-color);
  border-radius: 4px 4px 0px 0px; }

.ui-tabs-tab.ui-tabs-active a {
  font-weight: 600; }

.ui-tabs-tab {
  border: 1px solid transparent; }

.ui-tabs-tab a {
  font-weight: 500; }

.ui-tabs .ui-tabs-panel {
  padding: 16px; }

.ui-state-hover {
  border-top: 1px solid var(--theme-primary-color) !important;
  border-left: 1px solid var(--theme-primary-color) !important;
  border-right: 1px solid var(--theme-primary-color) !important;
  border-radius: 4px 4px 0px 0px; }

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
  border-top: 1px solid var(--theme-primary-color) !important;
  border-left: 1px solid var(--theme-primary-color) !important;
  border-right: 1px solid var(--theme-primary-color) !important;
  border-radius: 4px 4px 0px 0px; }

.ui-state-hover a {
  background: transparent !important;
  color: var(--theme-primary-color) !important; }

.ps_btn {
  padding: 7px 25px !important;
  line-height: 1rem !important;
  border-radius: 8px; }

.ps_btn-primary {
  background: var(--theme-primary-color);
  color: var(--theme-primary-color-text); }
  .ps_btn-primary:hover {
    box-shadow: inset 0 0 100px 100px rgba(255, 255, 255, 0.1); }

.ps_btn-secondary {
  background: var(--theme-secondary-color);
  color: var(--theme-primary-color-text); }
  .ps_btn-secondary:hover {
    background-color: var(--theme-primary-color-lightend) !important;
    color: #efefef; }

.ps_btn-success {
  background: #5cb85c;
  color: #fff; }

.ps_btn-danger {
  background: #dc3545;
  color: #fff; }

.ps_btn-lg {
  width: 100%; }

.button-list-button {
  display: block; }

.button-list a {
  display: block; }

#pnlNewRelationOrJob {
  display: flex;
  gap: 10px;
  margin-bottom: 16px; }

.ps_form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 5px;
  flex-wrap: wrap; }
  .ps_form-group .ps_form-field {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 11rem; }
    .ps_form-group .ps_form-field label {
      font-weight: 500; }
    .ps_form-group .ps_form-field select {
      width: 100% !important;
      padding: 3px; }

.horizontal {
  flex-direction: row !important; }

/* Used in GroupBox.ascx */
.ps_group-box--layout {
  display: flex;
  width: 100%; }
  .ps_group-box--layout[data-layout="Left"] {
    justify-content: flex-start; }
  .ps_group-box--layout[data-layout="Center"] {
    justify-content: center; }
  .ps_group-box--layout[data-layout="Right"] {
    justify-content: flex-end; }
  .ps_group-box--layout[data-layout="Fill"] {
    display: block; }
  .ps_group-box--layout .ps_group-box {
    border: 1px solid #aaa;
    padding: 10px; }
    .ps_group-box--layout .ps_group-box legend {
      font-size: 14px; }
    .ps_group-box--layout .ps_group-box > div {
      margin-left: 10px; }

.ps_toggle-switch {
  margin-top: 3px; }
  .ps_toggle-switch input {
    position: relative;
    width: 50px;
    height: 25px;
    margin: 0;
    vertical-align: top;
    background: #ffffff;
    border: 1px solid #bbc1e1;
    border-radius: 30px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2); }
    .ps_toggle-switch input::after {
      content: "";
      position: absolute;
      left: 3px;
      top: 1.5px;
      width: 20px;
      height: 20px;
      background-color: var(--theme-primary-color);
      border-radius: 50%;
      transform: translateX(0);
      transition: all 0.3s cubic-bezier(0.2, 0.85, 0.32, 1.2); }
    .ps_toggle-switch input:checked::after {
      transform: translateX(calc(100% + 3px));
      background-color: #fff; }
    .ps_toggle-switch input:checked {
      background-color: var(--theme-primary-color); }
  .ps_toggle-switch label {
    position: relative;
    top: 5px;
    left: 5px;
    cursor: pointer; }

.mt-1 {
  margin-top: 5px; }

.mb-1 {
  margin-bottom: 5px; }

.ml-1 {
  margin-left: 5px; }

.mr-1 {
  margin-right: 5px; }

.my-1 {
  margin: 5px 0; }

.mx-1 {
  margin: 0 5px; }

.m-1 {
  margin: 5px; }

.pt-1 {
  padding-top: 5px; }

.pb-1 {
  padding-bottom: 5px; }

.pl-1 {
  padding-left: 5px; }

.pr-1 {
  padding-right: 5px; }

.py-1 {
  padding: 5px 0; }

.px-1 {
  padding: 0 5px; }

.p-1 {
  padding: 5px; }

.mt-2 {
  margin-top: 10px; }

.mb-2 {
  margin-bottom: 10px; }

.ml-2 {
  margin-left: 10px; }

.mr-2 {
  margin-right: 10px; }

.my-2 {
  margin: 10px 0; }

.mx-2 {
  margin: 0 10px; }

.m-2 {
  margin: 10px; }

.pt-2 {
  padding-top: 10px; }

.pb-2 {
  padding-bottom: 10px; }

.pl-2 {
  padding-left: 10px; }

.pr-2 {
  padding-right: 10px; }

.py-2 {
  padding: 10px 0; }

.px-2 {
  padding: 0 10px; }

.p-2 {
  padding: 10px; }

.mt-3 {
  margin-top: 15px; }

.mb-3 {
  margin-bottom: 15px; }

.ml-3 {
  margin-left: 15px; }

.mr-3 {
  margin-right: 15px; }

.my-3 {
  margin: 15px 0; }

.mx-3 {
  margin: 0 15px; }

.m-3 {
  margin: 15px; }

.pt-3 {
  padding-top: 15px; }

.pb-3 {
  padding-bottom: 15px; }

.pl-3 {
  padding-left: 15px; }

.pr-3 {
  padding-right: 15px; }

.py-3 {
  padding: 15px 0; }

.px-3 {
  padding: 0 15px; }

.p-3 {
  padding: 15px; }

.mt-4 {
  margin-top: 20px; }

.mb-4 {
  margin-bottom: 20px; }

.ml-4 {
  margin-left: 20px; }

.mr-4 {
  margin-right: 20px; }

.my-4 {
  margin: 20px 0; }

.mx-4 {
  margin: 0 20px; }

.m-4 {
  margin: 20px; }

.pt-4 {
  padding-top: 20px; }

.pb-4 {
  padding-bottom: 20px; }

.pl-4 {
  padding-left: 20px; }

.pr-4 {
  padding-right: 20px; }

.py-4 {
  padding: 20px 0; }

.px-4 {
  padding: 0 20px; }

.p-4 {
  padding: 20px; }

.mt-5 {
  margin-top: 25px; }

.mb-5 {
  margin-bottom: 25px; }

.ml-5 {
  margin-left: 25px; }

.mr-5 {
  margin-right: 25px; }

.my-5 {
  margin: 25px 0; }

.mx-5 {
  margin: 0 25px; }

.m-5 {
  margin: 25px; }

.pt-5 {
  padding-top: 25px; }

.pb-5 {
  padding-bottom: 25px; }

.pl-5 {
  padding-left: 25px; }

.pr-5 {
  padding-right: 25px; }

.py-5 {
  padding: 25px 0; }

.px-5 {
  padding: 0 25px; }

.p-5 {
  padding: 25px; }

.clean-popup {
  display: none; }

.ui-widget-content {
  background: #ffffff; }

.ui-dialog {
  padding: 0;
  border-radius: 4px !important;
  -webkit-box-shadow: 0px 0px 80px -24px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 80px -24px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 80px -24px rgba(0, 0, 0, 0.75);
  display: grid;
  grid-template: "header" 60px "content" 1fr "footer" 60px; }
  .ui-dialog .modalCloseBtn {
    cursor: pointer;
    filter: invert(90%) sepia(0%) saturate(569%) hue-rotate(211deg) brightness(87%) contrast(81%);
    transition: .2s; }
    .ui-dialog .modalCloseBtn:hover {
      filter: invert(14%) sepia(0%) saturate(73%) hue-rotate(138deg) brightness(94%) contrast(98%); }
  .ui-dialog .ui-dialog-titlebar, .ui-dialog .ui-dialog-content, .ui-dialog .ui-dialog-buttonpane {
    padding: 0 !important;
    margin: 0 !important; }
  .ui-dialog .ui-dialog-titlebar {
    grid-area: header;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    border-bottom: 2px solid #ddd !important;
    border-image-slice: 1 !important;
    border-image-source: linear-gradient(to right, transparent 0%, gainsboro 50%, transparent 100%) !important; }
    .ui-dialog .ui-dialog-titlebar span {
      width: 100%;
      padding-left: 20px; }
    .ui-dialog .ui-dialog-titlebar svg {
      margin-right: 20px; }
  .ui-dialog .ui-dialog-content {
    padding: 24px 20px 20px 20px !important;
    grid-area: content; }
    .ui-dialog .ui-dialog-content input[type="date"], .ui-dialog .ui-dialog-content input[type="text"], .ui-dialog .ui-dialog-content input[type="number"], .ui-dialog .ui-dialog-content input[type="time"], .ui-dialog .ui-dialog-content select {
      border-radius: 4px;
      border: 2px solid #bbb;
      transition: .2s; }
      .ui-dialog .ui-dialog-content input[type="date"]:focus, .ui-dialog .ui-dialog-content input[type="text"]:focus, .ui-dialog .ui-dialog-content input[type="number"]:focus, .ui-dialog .ui-dialog-content input[type="time"]:focus, .ui-dialog .ui-dialog-content select:focus {
        border: 2px solid var(--theme-primary-color); }
    .ui-dialog .ui-dialog-content select {
      padding: 3px; }
    .ui-dialog .ui-dialog-content input[type="time"] {
      padding: 3px 3px 2.5px 3px; }
    .ui-dialog .ui-dialog-content textarea {
      border-radius: 4px;
      height: calc(100% - 28px) !important;
      width: calc(100% - 25px);
      border: 2px solid #bbb;
      transition: .2s;
      padding: 10px 10px; }
      .ui-dialog .ui-dialog-content textarea:focus {
        border: 2px solid var(--theme-primary-color); }
    .ui-dialog .ui-dialog-content table.PSDetails td {
      border: none;
      padding: 4px 6px; }
  .ui-dialog .ui-dialog-buttonpane {
    display: flex;
    height: 100%;
    align-items: center;
    position: absolute;
    border-top: solid 2px #ddd;
    width: 100%;
    grid-area: footer;
    border-radius: 0 0 4px 4px;
    border-image-slice: 1 !important;
    border-image-source: linear-gradient(to right, transparent 0%, gainsboro 50%, transparent 100%) !important; }
    .ui-dialog .ui-dialog-buttonpane div {
      padding: 0 20px;
      display: flex;
      justify-content: space-between; }
      .ui-dialog .ui-dialog-buttonpane div button, .ui-dialog .ui-dialog-buttonpane div input {
        border: 1px solid #ccc;
        border-radius: 4px;
        padding: 6px 20px;
        transition: .2s;
        min-width: 80px; }
      .ui-dialog .ui-dialog-buttonpane div .dialog-submit-btn, .ui-dialog .ui-dialog-buttonpane div input[type="submit"] {
        background-color: var(--theme-primary-color);
        color: #fff;
        border-color: var(--theme-primary-color);
        margin-right: 5px; }
        .ui-dialog .ui-dialog-buttonpane div .dialog-submit-btn:hover, .ui-dialog .ui-dialog-buttonpane div input[type="submit"]:hover {
          background-color: var(--theme-primary-color-faded);
          color: #666; }

#FollowUpModal > div:not(:last-of-type) {
  margin-bottom: 10px; }
#FollowUpModal > div {
  width: 100%;
  display: grid;
  grid-template-columns: 150px auto;
  height: auto;
  align-content: center; }
  #FollowUpModal > div div {
    width: auto; }
    #FollowUpModal > div div select {
      width: 238px; }
    #FollowUpModal > div div textarea {
      width: calc(100% - 20px); }

.validation {
  border-color: red !important; }

.ui-widget-overlay {
  background: #1a1a1a;
  opacity: .6; }

.sidebar {
  min-height: calc(-156px + 100vh);
  background: var(--theme-primary-color);
  width: 255px; }
  .sidebar .sidebar-top-padding {
    height: 5px; }
  .sidebar svg > path {
    fill: var(--theme-primary-color-text); }
  .sidebar img {
    filter: invert(100%); }
  .sidebar a, .sidebar span {
    color: var(--theme-primary-color-text); }

.sidebar ul > li {
  margin-left: 9px;
  border-radius: 6px 0px 0px 6px;
  border-width: 1px 0px 1px 1px;
  border-style: solid none solid solid;
  border-color: var(--theme-primary-color); }

.sidebar ul > li:not(:first-child) {
  margin-top: 2px; }

.sidebar ul > li:not(:first-child).ps_active-item {
  background: #f5f5f5; }
  .sidebar ul > li:not(:first-child).ps_active-item svg > path {
    fill: black; }
  .sidebar ul > li:not(:first-child).ps_active-item img {
    filter: invert(100%); }
  .sidebar ul > li:not(:first-child).ps_active-item a, .sidebar ul > li:not(:first-child).ps_active-item span {
    color: black; }
  .sidebar ul > li:not(:first-child).ps_active-item * {
    transition: background ease 0.2s;
    transition: fill ease 0.2s;
    transition: filter ease 0.2s;
    transition: color ease 0.2s; }

.sidebar ul > li:not(:first-child):not(.ps_active-item):hover {
  background: #f5f5f5; }
  .sidebar ul > li:not(:first-child):not(.ps_active-item):hover svg > path {
    fill: black; }
  .sidebar ul > li:not(:first-child):not(.ps_active-item):hover img {
    filter: invert(100%); }
  .sidebar ul > li:not(:first-child):not(.ps_active-item):hover a, .sidebar ul > li:not(:first-child):not(.ps_active-item):hover span {
    color: black; }

.sidebar ul > li a {
  color: var(--theme-primary-color-text);
  display: block;
  padding: 5px 0 5px 14px;
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 200px;
  font-size: 14px;
  float: left; }

.sidebar ul {
  position: sticky;
  top: 48px;
  list-style-type: none;
  padding: 0;
  margin: 0; }

.sidebar ul > li {
  transition: background-color 0.2s ease;
  align-items: center;
  display: flex; }
  .sidebar ul > li > div {
    margin: 0;
    height: 30px;
    padding: 12px 2px 12px 14px;
    align-items: center;
    display: flex;
    overflow: hidden; }

.sidebar ul > li:first-child {
  padding: 5px 0px; }

.sidebar ul > li > span {
  color: #333;
  font-size: 22px; }

.sidebar {
  transition: width 0.4s ease-in-out; }
  .sidebar #ps_collapseControl {
    color: var(--theme-primary-color-text);
    position: sticky;
    top: calc(100vh - 60px);
    cursor: pointer;
    transition: 0.4s ease-in-out left, 0.4s ease-in-out transform;
    left: 205px;
    transform: rotate(-180deg);
    margin-top: 5px; }

.sidebar-sm {
  width: 65px; }
  .sidebar-sm #ps_collapseControl {
    left: 10px;
    transform: rotate(0deg); }
  .sidebar-sm .SuggestionsControl {
    width: 0px; }
  .sidebar-sm .ps_recommendation-badge {
    opacity: 0; }

.SuggestionsControl {
  padding: 0 0 0 8px;
  /*    margin-top: -4px;*/
  line-height: 0;
  width: 180px;
  overflow: hidden;
  transition: width ease-in-out 0.4s; }

.SuggestionsControl #SuggestionsInput {
  width: 110px;
  padding: 5px 15px;
  border-radius: 20px;
  border-width: 0px;
  transition: width ease-in-out 0.4s; }
  .SuggestionsControl #SuggestionsInput:focus {
    width: 150px; }
  .SuggestionsControl #SuggestionsInput:active {
    width: 150px; }
  .SuggestionsControl #SuggestionsInput:focus-within {
    width: 150px; }
  .SuggestionsControl #SuggestionsInput:hover {
    width: 150px; }

.SuggestionsControl a.freshdesk-link {
  line-height: 0; }

.suggestionDropDown {
  z-index: 1000;
  border: 1px solid black;
  position: fixed;
  background-color: white;
  left: 270px;
  top: 170px;
  grid-template-columns: 1fr auto auto auto;
  min-width: 400px;
  max-width: 600px;
  padding: 5px;
  gap: 2px 10px; }

.suggestionDropDown .links {
  display: flex; }

.suggestionDropDown div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

.suggestionDropDown .description {
  max-width: 200px; }

.suggestionDropDown .type {
  background-color: var(--theme-primary-color);
  color: white;
  border-radius: 5px;
  text-align: center;
  border: solid 1px #000000;
  padding: 0px 10px; }

#ctl00_ctl00_liMenuQuickSearch > div.sideIcon {
  min-width: 26px;
  height: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center; }

#locationsOfSelectedEmployee {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 49%; }

#systemSettings {
  white-space: nowrap;
  vertical-align: top;
  padding: 10px; }

.unselectable {
  /*user-drag: none;*/
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none; }

.container {
  width: 100%; }

.align-left {
  float: left;
  width: 80% !important; }

.align-right {
  float: right;
  width: 18%; }

.no-padding-top-bottom {
  padding-bottom: 0;
  padding-top: 0; }

#optimizeResultsLoading {
  height: 100vh;
  width: 99vw;
  background-color: rgba(25, 25, 25, 0.9);
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  text-align: center; }

#optimizeResultsLoading > img {
  position: fixed;
  left: 50%;
  top: 50%;
  margin-left: -75px;
  margin-top: -75px; }

#divEmployees p {
  font-weight: bold;
  margin-top: 0px; }

#btnClearSelected {
  margin-bottom: 50px; }

.clear-left {
  clear: left; }

.clear-both {
  clear: both; }

#lblDate {
  padding-left: 1em;
  padding-right: 1em; }

#pnlMultiDayVisits {
  border: 1px solid black;
  float: right;
  padding: 0 5px 5px;
  margin: 0 0 10px 0;
  width: 49% !important; }

#pnlMultiDayVisits p {
  font-weight: bold;
  padding-left: 10px; }

#pnlLocationsWithoutCoordinates {
  border: 1px solid black;
  float: right;
  padding: 0 5px 5px;
  margin: 0 0 10px 0;
  width: 49% !important; }

#pnlLocationsWithoutCoordinates p {
  font-weight: bold;
  padding-left: 10px; }

#pnlUpdateOrderManually {
  border: 1px solid black;
  float: left;
  padding: 0 5px 5px;
  margin: 0 10px 10px 0;
  width: 99% !important; }

#pnlUpdateOrderManually p {
  font-weight: bold;
  padding-left: 10px; }

#pnlSystemSettings {
  border: 1px solid black;
  float: left;
  padding: 0 5px 5px;
  margin: 0 10px 10px 0;
  width: 48% !important; }

#pnlSystemSettings p {
  font-weight: bold;
  padding-left: 10px; }

#locationsOfSelectedEmployee {
  width: auto;
  padding: 10px; }

#optimizeResultsLoading {
  height: 100vh;
  display: none; }

#optimizeResultsLoading img {
  width: 150px;
  height: 150px; }

.alertError, #alertMessageNoCoordinates {
  color: red; }

.warning {
  color: #FF8800; }

input:disabled {
  cursor: default !important; }

html, body {
  min-height: 100%; }

body.calendar {
  font-size: 12px;
  background: white; }

#btnCVSaveVisit, #btnCVCancelEditVisit {
  background: white; }

.calendar #pnlNavigate {
  padding-left: 10px; }

.calendar #pnlHorNav {
  background: var(--theme-primary-color);
  height: 29px;
  padding: 5px;
  padding-top: 10px;
  line-height: 24px; }

.calendar #pnlHorNav img {
  display: block;
  float: left;
  height: 25px;
  margin-left: 20px; }

.calendar #pnlHorNav a {
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 4px;
  padding-top: 3px;
  border: 1px solid white;
  color: white; }

.UnplannedVisitsStyle {
  width: 100%;
  max-width: 15%; }

.ForceDlgCheck {
  background-color: #EEE;
  border-style: solid;
  border-color: var(--theme-primary-color);
  height: 25px;
  width: 100%;
  padding: 5px 5px 0 5px;
  display: inline-block; }

.UnplannedContainer {
  height: calc(100% - 47px);
  background-color: #EEE;
  border-style: solid;
  border-color: var(--theme-primary-color);
  overflow: auto;
  padding: 5px 5px 0 5px;
  width: 100%; }

.CalendarStyle {
  width: 100%;
  border-spacing: 0;
  float: left;
  position: relative; }
  .CalendarStyle tr {
    height: 28px; }

.CalendarHeader {
  height: 30px;
  color: #FFFFFF;
  background-color: var(--theme-primary-color);
  text-align: center;
  font-size: 14px;
  width: 100%;
  line-height: 28px; }

.WeekNumberHeader {
  width: 15%;
  background-color: #EEE; }

.WeekNumber {
  width: 15%;
  text-align: center;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center; }

/* CALENDAR LAYOUT */
.CalendarDay {
  width: 100%;
  border-bottom: 1px dotted var(--theme-primary-color);
  border-right: 1px dotted var(--theme-primary-color);
  border-left: 1px dotted var(--theme-primary-color); }

.CalendarSmallDay {
  border-bottom: 1px dotted var(--theme-primary-color);
  border-right: 1px dotted var(--theme-primary-color);
  border-left: 1px dotted var(--theme-primary-color); }

.CalendarDay span.header, .CalendarSmallDay span.header {
  color: #FFFFFF;
  background-color: var(--theme-primary-color);
  top: 0;
  height: 24px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  display: block;
  font-size: 14px;
  line-height: 25px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 4px;
  box-sizing: border-box; }

.CalendarDayBorder {
  border-right: 1px dotted var(--theme-primary-color); }

.CalendarDay.Month {
  border-top: 1px dotted var(--theme-primary-color);
  display: grid;
  grid-template-rows: 24px auto; }
  .CalendarDay.Month > span {
    text-align: center; }

.Today .VisitSection {
  border: 2px solid var(--theme-primary-color);
  box-sizing: border-box;
  border-top: 0;
  border-bottom: 0;
  box-shadow: inset 0 0 1000px 1000px var(--theme-primary-color-faded); }

.VisitSection {
  background-color: white;
  width: 100%;
  display: block;
  overflow-x: hidden;
  overflow-y: auto; }

.Visit, .Appt {
  z-index: 1;
  border: 1px solid var(--theme-primary-color);
  width: 100%;
  box-sizing: border-box; }
  .Visit > div, .Appt > div {
    padding: 2px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    gap: 0px 5px; }
    .Visit > div > div, .Appt > div > div {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }

/*Single day view:*/
.VisitsContainer {
  height: 0;
  top: 15px;
  left: 7px;
  position: relative;
  width: calc(100% - 15px); }

.VisitSingleDay, .ApptSingleDay {
  display: inline;
  position: absolute;
  border: thin solid #000000; }
  .VisitSingleDay > div, .ApptSingleDay > div {
    padding: 2px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    gap: 0px 5px; }
    .VisitSingleDay > div > div, .ApptSingleDay > div > div {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }

.Hour {
  background-color: #EEE;
  width: 60px;
  vertical-align: top;
  height: 29px;
  border-bottom: 1px dotted var(--theme-primary-color); }

.Hour span {
  padding: 0 10px;
  float: right; }

.Night {
  border-bottom: 1px dotted silver; }

.Daylight {
  border-bottom: 1px dotted var(--theme-primary-color); }

/* SCHEMA VIEW */
.YearCrit {
  margin: 10px 20px; }

.SchemaStyle {
  margin: 10px 20px; }

.SchemaHeader {
  font-weight: bold; }

#cellID {
  width: 100px; }

#cellWk {
  width: 200px; }

#cellVT {
  width: 200px; }

#CVButtons input {
  background-color: white !important; }

#cellEmp {
  width: 200px; }

.SchemaFooter {
  margin: 10px 20px; }

/* CONTEXT MENU */
.ctx-menu-edit-visit, .ctx-menu-edit-appt, .ctx-menu-new, .ctx-menu-edit-unplanned, .ctx-menu-edit-job {
  display: none;
  z-index: 10;
  position: absolute;
  background-color: white;
  border: 1px solid #AAA;
  overflow: hidden;
  width: 200px;
  white-space: nowrap;
  list-style: none;
  padding-left: 0;
  margin-left: 0; }

.ctx-menu-edit-visit li, .ctx-menu-edit-appt li, .ctx-menu-new li, .ctx-menu-edit-unplanned li, .ctx-menu-edit-job li {
  border-width: 1px;
  border-color: #808080 #FFFFFF #FFFFFF #FFFFFF;
  padding: 5px 5px 5px 20px;
  cursor: pointer; }

.ctx-menu-edit-visit li:hover, .ctx-menu-edit-appt li:hover, .ctx-menu-new li:hover, .ctx-menu-edit-unplanned li:hover, .ctx-menu-edit-job li:hover {
  background-color: #DDD; }

/* OVERLAY */
.CVOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 51;
  opacity: 0.5;
  background-color: black; }

/* POPUP FORM FOR EDIT VISIT & APPOINTMENT */
.CalendarDlg {
  display: none;
  z-index: 100;
  position: fixed;
  background-color: white;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 350px;
  padding: 10px;
  background: #f5f5f5; }

.CalendarDlg table {
  width: 580px;
  margin: 10px 10px 10px 10px; }

.CalendarDlg .CVComments {
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  border: solid 1px black; }

.CalendarDlg .DialogTitle {
  height: 20px;
  font-size: 18px;
  padding-left: 10px; }

.CalendarDlg .CVButtons {
  text-align: center; }

.CalendarDlg .CVButtons input {
  width: 100px;
  height: 30px;
  background: white; }

.CalendarDlg .TimeEntry {
  width: 25px;
  text-align: center; }

.CalendarDlg .DefaultCtrl {
  width: 250px; }

.CalendarDlg .CVVal {
  display: none;
  text-align: left;
  font-weight: bold;
  font-size: 14px; }

/* JH 22-03-16 Styles for the Edit/Create Appointment Dialog (Calendar) */
.CalendarDlg #divCVApptEmployees {
  width: 100%;
  height: 120px;
  border-color: lightgray;
  border-style: solid;
  border-width: thin;
  overflow-y: scroll; }

.CalendarDlg #cblCVApptEmployees {
  width: 525px; }

#divCVEditAppt {
  left: 50%;
  min-height: 360px; }

#divCVEditJob {
  left: 50%;
  min-height: 360px; }

div.dot {
  border-width: 1px;
  border-style: solid;
  border-radius: 50%;
  display: inline-block; }

div.dot_mini {
  width: 12px;
  height: 12px;
  vertical-align: baseline;
  margin-right: 2px;
  margin-left: 2px;
  position: relative;
  top: 2px; }

div.dot_maxi {
  border-width: 2px;
  width: 15px;
  height: 15px;
  float: left;
  margin-left: 2px;
  margin-top: 2px; }

div.dot_med {
  border-width: 2px;
  width: 15px;
  height: 15px; }

div.dot_unplanned {
  background-color: transparent;
  border-color: red; }

div.dot_planned {
  background-color: red;
  border-color: red; }

div.dot_completed {
  background-color: green;
  border-color: green; }

div.dot_inProgress {
  background-color: orange;
  border-color: orange; }

div.dot_appt::before,
div.dot_appt::after {
  content: ""; }

div.dot_appt::after {
  border-style: solid;
  background: transparent;
  width: 3px;
  height: 4px;
  border-width: 0px 0px 1px 1px;
  margin-top: 1px;
  margin-left: 4.5px;
  display: block; }

div.dot_maxi.dot_appt::after {
  width: 4px;
  height: 5px;
  border-width: 0 0 1px 1px;
  margin-top: 3px;
  margin-left: 6px; }

.Appt > div, .ApptDayCalendarItem {
  background-color: #9cf;
  line-height: 20px; }

.CellSelected {
  box-shadow: inset 0 0 1000px 1000px var(--theme-primary-color-faded); }
  .CellSelected > .VisitSection {
    box-shadow: inset 0 0 1000px 1000px var(--theme-primary-color-faded); }

.bar {
  text-align: center; }

#pnlEmp.higherPanel {
  height: 100px; }

#tblContainer, #tblNavigate {
  width: 100%; }

#tdDaySelector {
  width: 25%;
  min-width: 355px; }

#tdCalHeader {
  width: 50%;
  text-align: center; }

#tdNavView {
  width: 25%;
  text-align: center;
  min-width: 175px; }

#divViewMode {
  text-align: right; }

.NotInActiveView {
  background-color: LightGrey; }

.Hour .spnRevealNight {
  float: left; }

.HideArrowButton {
  display: none; }

.tdTime {
  width: 40px; }

.MultipleViewWeekHeader {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  height: 40px; }

.CalendarBorder {
  border-style: solid;
  border-width: 1px;
  border-color: #368ee0;
  border-bottom-width: 2px;
  border-top-width: 2px; }

.ui-datepicker-next {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAABYlAAAWJQFJUiTwAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAQpJREFUeNq0liFvQjEUhT8ICW5qCgUKtV9ApjZHZuYnYQkLwe0/7Cn+AmpmyQzBzC1I1AQBQ7JkC/glC6gzsScKvPd4fW1Pck3bnNPTe9vbkiRCokxgpAnsgGcvG5CUFF/6x1LSVcqaXJE2sdA+It8CSx3jQ1LLVsDmjC+AKRABVdccJDkwsZJ07duBiQbwBgxPVZprGQ6AOXAZ8qI1gXfgKfRNfgS+gbuQT0UNODcHKh7JX4EHYO3bwRboALeH5D4cTIAe8Om7in6BPtDOIi/q4CUm3+RZbCPwExOPbHaTV2AMdJOSWLSjlY3Odg/cFCHPek0laSap7tLNshpOT9KZK7kkSqG/LX8DAI2T6ElTz68UAAAAAElFTkSuQmCC) !important;
  background-size: contain; }

.ui-datepicker-prev {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAACXBIWXMAABYlAAAWJQFJUiTwAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAgY0hSTQAAeiUAAICDAAD5/wAAgOkAAHUwAADqYAAAOpgAABdvkl/FRgAAAQVJREFUeNq01rEuREEUBuDv3ki8gEJUVDSeQDToRCPRkWhEpfUOtlmdBI1KodCIRidKD2A7ErJ6iVAdhVuwmQ17750/mWbmzH8yc+b8/xQRISdKmVG2xHGOz+RqRDQZyxHRi288p2KakHfiNx5ScWM1rmQBR5gfmC+a1mAcHdwlyIfivydYwTFm2n5FJQ5xU4f8rxMs4gSzOfrgALdNyVMJtvCC/VydPIGpnFLRrRJc5tSiPtaxg4+cYneKOVznVNMnrGIP77UyjCBukxFxEcPRS+0bRYtesYFtvOU0nLOqAa9yOlofa9j94WRlDkcTEdMRcV/VoRXDGcQjlrCZWixyf1u+BgCMWlD2PnQO/AAAAABJRU5ErkJggg==) !important;
  background-size: contain; }

.SmallVisitSingleDay, .SmallVisitSingleDay table {
  width: 100px; }

.SmallVisitSingleDay td {
  display: inline-block; }

.SmallVisitSingleDay td br {
  display: none; }

.SmallVisitSingleDay span {
  display: none; }

.SmallVisitSingleDay b {
  display: inline-block; }

.SmallVisitSingleDay td div {
  margin-right: 3px; }

.SmallApptSingleDay td {
  display: inline; }

.SmallApptSingleDay td br {
  display: none; }

.SmallApptSingleDay .first {
  display: block; }

.SmallApptSingleDay span {
  display: none; }

.SmallApptSingleDay td div {
  margin-right: 3px; }

.SmallApptSingleDay, .SmallApptSingleDay table {
  width: 100px; }

.SmallVisitSingleDay tr, .SmallVisitSingleDay td, .SmallVisitSingleDay tbody, .SmallVisitSingleDay table, .SmallVisitSingleDay {
  box-sizing: border-box; }

.SmallVisitSingleDay i {
  display: none; }

.detailsPopup {
  position: absolute;
  padding: 5px;
  border-color: black;
  border-style: solid;
  border-width: 1px; }

.detailsPopup ul {
  margin: 0px;
  padding-left: 15px; }

.multipleVisitsInfo {
  position: absolute;
  border: 1px solid black;
  padding: 2px; }

.multipleVisitsInfo :hover {
  cursor: pointer;
  cursor: hand; }

.relInstance {
  width: 100%;
  display: inline-block;
  box-sizing: border-box; }

#linkEmployee {
  text-decoration: underline; }

#linkEmployee:hover {
  cursor: pointer; }

.CV_tab-navigators {
  height: 30px;
  background: #ccc;
  margin-bottom: 3px;
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: flex-start; }

#lblCVComments, #lblCVTask, #lblCVJobTask {
  background: #cccccc;
  padding: 4px 20px;
  cursor: pointer;
  font-weight: 600;
  border: 2px solid transparent; }

#txtCVComments, #txtCVTask {
  display: none; }

.tab-memo #lblCVComments {
  background: white;
  padding: 4px 20px;
  border: 2px solid #808080;
  border-radius: 3px;
  cursor: default; }
.tab-memo #txtCVComments {
  display: block; }

.tab-task #lblCVTask, .tab-task #lblCVJobTask {
  background: white;
  padding: 4px 20px;
  border: 2px solid #808080;
  border-radius: 3px;
  cursor: default; }
.tab-task #txtCVTask {
  display: block; }

.CalendarRelationBox {
  box-sizing: border-box; }

.MultiSelected {
  border: 3px solid var(--theme-primary-color);
  border-top: 3px solid linear-gradient(to right, rgba(255, 0, 0, 0), red); }
  .MultiSelected > div:first-child {
    padding: 0px; }

.DayCalendarItem {
  width: 100%;
  overflow: clip;
  z-index: 2; }

.DayCalendarItemToolTip {
  min-width: 200px;
  min-height: 150px;
  z-index: 3; }

.DayCalendarItem .dot_med {
  float: left;
  margin-left: 1px;
  margin-top: 1px; }

.DayCalendarItem .SmallInfo {
  margin-left: 5px;
  white-space: nowrap;
  overflow: hidden; }

.DayCalendarItem > div > div.text {
  margin-top: 2px; }
.DayCalendarItem > div > span {
  margin-top: 2px; }

.DayCalendarItem .VisitType {
  margin-left: 5px;
  line-height: 21px;
  font-style: italic; }

.DayCalendarItem .TimeSeparator {
  line-height: 21px;
  margin-left: 5px;
  margin-right: 3px; }

.DayCalendarItem .Information {
  margin-top: 4px;
  margin-left: 2px; }

.DayCalendarItem .Information .General {
  margin-left: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.DayCalendarItem .Information .General span {
  display: block; }

.CalendarSmallDay.CellHeight1 {
  height: 50px; }

.CalendarSmallDay.CellHeight3 {
  height: 150px; }

.CalendarSmallDay.CellHeight5 {
  height: 250px; }

.CalendarSmallDay.CellHeight7 {
  height: 350px; }

.CalendarSmallDay.CellHeight9 {
  height: 450px; }

.CalendarDay.CellHeight1 {
  height: 100px; }

.CalendarDay.CellHeight3 {
  height: 300px; }

.CalendarDay.CellHeight5 {
  height: 500px; }

.CalendarDay.CellHeight7 {
  height: 700px; }

.CalendarDay.CellHeight9 {
  height: 900px; }

.WeekCalendarCell {
  display: grid;
  grid-template-rows: 24px auto; }

.CalendarMonthRow {
  display: flex;
  justify-content: space-between; }

.DayCalendarItem div.ui-resizable-s {
  bottom: 0px;
  height: 5px; }

.DayCalendarItem div.ui-resizable-n {
  top: 0px;
  height: 5px; }

.CalendarContainerStyle {
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between; }

.EmployeeBorder {
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between; }

.EmployeeCalendarContainer {
  width: 100%; }

.EmployeeCalendarContainer.Day {
  display: grid; }

.EmployeeCalendarContainer .Multiple1 {
  display: grid; }

.EmployeeCalendarContainer .Multiple2 {
  display: grid;
  grid-template-columns: 50% 50%; }

.EmployeeCalendarContainer .Multiple3 {
  display: grid;
  grid-template-columns: 33% 33% 34%; }

.EmployeeCalendarContainer .Multiple4 {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%; }

.EmployeeCalendarContainer .Multiple5 {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%; }

.EmployeeCalendarContainer .Multiple6 {
  display: grid;
  grid-template-columns: 16% 17% 17% 17% 17% 16%; }

.EmployeeCalendarContainer .Multiple7 {
  display: grid;
  grid-template-columns: 14% 15% 14% 14% 14% 15% 14%; }

.CalendarStyle td {
  height: 29px; }

.CalendarStyle td {
  padding: 0 0 0 0; }

#cblEmployee, #cblManager {
  width: 400px;
  column-count: 2;
  list-style-type: none;
  padding-left: 10px; }
  #cblEmployee li, #cblManager li {
    width: 200px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }

.hidden {
  display: none; }

.CalendarWeek {
  color: #FFFFFF;
  background-color: var(--theme-primary-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 2px 5px;
  font-weight: bold;
  font-size: 14px;
  text-align: center; }

.FilterTechniciansWrapper {
  display: flex;
  justify-content: center; }

.HourHeader {
  display: list-item; }

.btnRevealNight {
  height: 10px; }

#txtCVRelations {
  box-sizing: border-box; }

#txtGotoDate {
  line-height: 19px; }

.ui-dialog-buttonset button.FloatLeft {
  float: left; }

.FilterCell {
  width: 100%;
  height: auto;
  padding-bottom: 10px; }

.FilterCell:last-child {
  display: flex;
  justify-content: space-around;
  align-items: center; }

#ActiveEmployeeFilter {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  padding: 0; }

#ActiveEmployeeFilter > li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  list-style-position: inside; }

.NamedFilter {
  padding-bottom: 5px; }
  .NamedFilter > *:nth-child(1) {
    width: 30%;
    display: inline-block;
    padding-left: 4px; }
  .NamedFilter > *:nth-child(2) {
    width: auto; }

#txtRelation {
  width: 60%; }

#cmdRender {
  float: right; }

#lblCalendarFilters {
  margin-right: 5px; }

.CalendarPage .ps_tab-content {
  margin-right: 5px;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 20px; }

.HiddenItems {
  background-color: var(--theme-primary-color); }

#tdCalHeader input {
  min-width: 70px; }
#tdCalHeader #lblCalHeader {
  margin: 6px; }

.ddlDayHeightWrapper {
  margin-top: 8px; }

.button-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between; }

#pnlNavigate.month {
  margin-left: 2.7%; }

#employeeFilterContainer {
  display: flex;
  flex-direction: row;
  align-items: start;
  width: 100%;
  margin-top: 20px;
  gap: 20px;
  border-top: 2px solid #ddd !important;
  border-image-slice: 1 !important;
  border-image-source: linear-gradient(to right, transparent 0%, gainsboro 50%, transparent 100%) !important; }

#employeesFilterSection {
  height: 100%;
  border-left: 2px solid #ddd !important;
  border-image-slice: 1 !important;
  border-image-source: linear-gradient(to bottom, transparent 0%, gainsboro 50%, transparent 100%) !important;
  padding-left: 20px; }

#planning-detail #services-box {
  border: 1px solid #eee;
  margin: 10px auto;
  min-height: 500px; }
  #planning-detail #services-box .services-header {
    background: #eee;
    margin: 0;
    padding: 10px 5px;
    margin-bottom: 20px; }
#planning-detail #services {
  width: 100%;
  padding: 0 14px 4px;
  box-sizing: border-box; }
  #planning-detail #services .services-card {
    margin: 0 5px; }
    #planning-detail #services .services-card h3 {
      background: #eee;
      margin: 0;
      padding: 5px; }
  #planning-detail #services #services-criteria {
    flex-grow: 1;
    flex: 1; }
    #planning-detail #services #services-criteria .services-card-content {
      align-items: stretch; }
      #planning-detail #services #services-criteria .services-card-content .tab-container, #planning-detail #services #services-criteria .services-card-content .content-container {
        height: 100%; }
  #planning-detail #services #services-searched {
    flex-grow: 1;
    flex: 1; }
  #planning-detail #services #services-selected {
    flex-grow: 1;
    flex: 1; }
#planning-detail .ps_btn-container .ps_btn {
  margin-left: 5px; }
#planning-detail #searchType-customerLocation-customer,
#planning-detail #searchType-customerLocation-routeCode,
#planning-detail #service-searchType-routeCode {
  width: 100%;
  box-sizing: border-box; }
#planning-detail .highlighted {
  background: aliceblue; }

.tab-container {
  font-size: 0;
  overflow: hidden; }
  .tab-container input.tab-radio {
    display: none; }
    .tab-container input.tab-radio:checked + label {
      background: #eee; }
    .tab-container input.tab-radio#searchTypeRouteCode:checked ~ .content-container #content1 {
      display: block; }
    .tab-container input.tab-radio#searchTypeCustomerLocation:checked ~ .content-container #searchType-customerLocation {
      display: block; }
  .tab-container label {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    line-height: 36px;
    width: auto;
    padding: 0 10px;
    background: #f4f4f4;
    transition: 0.25s background ease;
    cursor: pointer;
    width: 50%;
    box-sizing: border-box;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600; }
  .tab-container .content-container {
    background: #eee;
    position: relative;
    font-size: 13px; }
    .tab-container .content-container .tab-content {
      padding: 10px;
      display: none;
      transition: 0.25s ease; }
    .tab-container .content-container .tab-content-label {
      margin: 12px 0 4px; }
    .tab-container .content-container .mt-0 {
      margin-top: 0; }

.p-4 {
  padding: 4px; }

#services, #services-searched, #services-selected {
  min-height: inherit; }
  #services .service, #services-searched .service, #services-selected .service {
    border: none;
    border-bottom: 1px solid #eee; }

.services-card {
  border: none; }
  .services-card .services-card-content {
    height: 100%;
    overflow: hidden;
    border: 1px solid #eee;
    max-height: 450px; }
  .services-card .card-scroll-content {
    overflow-y: auto; }

.psPlanningOverviewFilterHolder {
  display: flex;
  min-width: 100%;
  border: 1px solid #ddd;
  padding: 5px 10px;
  box-sizing: border-box; }

.lblFilterControl {
  margin-bottom: 5px; }

.ps_filter-element {
  margin-right: 10px; }

.ps_filter-button-holder {
  margin-top: 20px; }

.buttonTrayRow {
  margin: 10px 0;
  display: flex;
  justify-content: space-between; }

#PlanningBlueprint {
  min-width: 1000px;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: auto;
  grid-template-rows: 30px auto; }
  #PlanningBlueprint #options {
    height: 100%;
    width: 100%;
    grid-area: 1 / 1; }
    #PlanningBlueprint #options > * {
      margin: 0 3px; }
    #PlanningBlueprint #options .freshdesk-link {
      padding: 4px; }
  #PlanningBlueprint #planning {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    grid-area: 2 / 1; }
  #PlanningBlueprint .survey {
    display: flex;
    flex-direction: column; }
  #PlanningBlueprint .survey-planning {
    display: flex;
    width: 99%;
    box-sizing: border-box; }
  #PlanningBlueprint .service-scope {
    display: none;
    transform: translateX(calc(20px));
    background: white;
    border: 1px solid black;
    z-index: 100;
    position: absolute;
    padding: 10px;
    box-shadow: lightgray 2px 2px 1px 1px; }
    #PlanningBlueprint .service-scope > div:first-child {
      text-align: center;
      font-weight: bold; }
  #PlanningBlueprint .service-scope-wrapper > span {
    cursor: default;
    width: 35px;
    line-height: 26px;
    text-align: left;
    display: block; }
  #PlanningBlueprint .service-scope-wrapper:hover .service-scope {
    display: block; }
  #PlanningBlueprint .service-date-range {
    display: flex;
    justify-content: end;
    gap: 10px;
    padding: 4px; }
    #PlanningBlueprint .service-date-range > input {
      width: 80px;
      text-align: center; }
  #PlanningBlueprint .planning-grid {
    width: 100%;
    box-sizing: border-box; }
  #PlanningBlueprint .line {
    width: 100%;
    box-sizing: border-box; }
  #PlanningBlueprint .lineHeaders {
    display: grid;
    grid-gap: 0; }
  #PlanningBlueprint .lineHeader {
    width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
    display: flex;
    justify-content: space-between; }
  #PlanningBlueprint .points {
    margin-top: 12px;
    display: grid;
    grid-gap: 0; }
  #PlanningBlueprint .point {
    position: relative;
    width: 1px;
    height: 100%;
    background-color: black;
    grid-row: 1;
    grid-row-start: 1; }
  #PlanningBlueprint .point.last {
    margin-left: auto;
    margin-right: 0; }
  #PlanningBlueprint .pointTitle {
    margin-top: -25px;
    margin-left: 4px; }
  #PlanningBlueprint .visitLine {
    grid-column-start: 1;
    border-bottom: 1px solid black; }
  #PlanningBlueprint .visitLine-scope-range {
    border-top: 2px solid green;
    z-index: 20; }
  #PlanningBlueprint .visitLine-scope-begin, #PlanningBlueprint .visitLine-scope-end {
    border-left: 2px solid green;
    height: 20px;
    margin-top: -10px;
    z-index: 20; }
  #PlanningBlueprint .visitLineHeader {
    width: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 26px; }
  #PlanningBlueprint .visit {
    position: relative;
    width: 10px;
    height: 10px;
    margin-top: 20px;
    margin-left: -5px;
    top: -26px;
    border: 1px solid black;
    border-radius: 10px;
    z-index: 30; }
  #PlanningBlueprint .visit.highlight {
    background-color: aquamarine !important;
    border: 1px solid blue; }
  #PlanningBlueprint .visit.weekend {
    border: 1px solid orange !important; }
  #PlanningBlueprint .visit.holiday {
    border: 1px solid red !important; }
  #PlanningBlueprint .visit.same-date {
    border: 1px solid red !important;
    background-color: red !important; }
  #PlanningBlueprint .visit.moved {
    border-radius: 0px !important; }
  #PlanningBlueprint .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    position: fixed;
    z-index: 1;
    margin-left: -62px;
    box-sizing: border-box;
    padding: 4px;
    margin-top: 4px; }
  #PlanningBlueprint .tooltip:hover .tooltiptext, #PlanningBlueprint .tooltip.showTooltip > .tooltiptext {
    visibility: visible; }
  #PlanningBlueprint .drawline {
    position: relative;
    height: 100%;
    grid-row-start: 1;
    grid-row-end: 100;
    border-left: 1px solid lightseagreen;
    display: none; }
  #PlanningBlueprint .outside-contract {
    background-color: #b2b2b2;
    z-index: -10; }
  #PlanningBlueprint .outside-contract.entire-year {
    grid-area: 1 / 1 / max / max; }
  #PlanningBlueprint .field {
    display: flex;
    flex-direction: column; }
  #PlanningBlueprint .activeOption {
    border: solid 1px blue; }
  #PlanningBlueprint #optionsBar {
    display: flex;
    flex-direction: column;
    align-items: end; }
  #PlanningBlueprint #options {
    width: auto;
    display: flex; }
  #PlanningBlueprint .dayIndicator {
    border-left: solid 1px blue;
    z-index: 10;
    height: calc(100% + 20px);
    margin-top: -10px; }
  #PlanningBlueprint .last-existing-visit-indicator, #PlanningBlueprint .last-existing-visit-indicator-full {
    background-color: #f42929;
    opacity: 0.5;
    z-index: -9; }
  #PlanningBlueprint .survey-header {
    display: flex;
    align-items: center;
    gap: 10px; }
  #PlanningBlueprint .full-reset, #PlanningBlueprint .calendar-reset, #PlanningBlueprint .calendar-calculate {
    cursor: pointer; }
  #PlanningBlueprint #ShowLegend {
    line-height: 30px;
    font-size: 24px;
    color: #2C6397;
    padding: 0 5px; }
    #PlanningBlueprint #ShowLegend img {
      max-width: 24px;
      max-height: 24px;
      padding-top: 4px; }
  #PlanningBlueprint .PlanningLegend {
    position: absolute;
    background-color: white;
    border: black 1px solid;
    width: 500px;
    display: grid;
    border: 1px solid black;
    padding: 4px;
    margin: 10px 0;
    z-index: 40; }
    #PlanningBlueprint .PlanningLegend .leftCell {
      justify-self: right; }
    #PlanningBlueprint .PlanningLegend .rightCell {
      justify-self: left; }
    #PlanningBlueprint .PlanningLegend .legendVisit {
      margin-top: 0px;
      top: 4px;
      margin-right: 5px; }
    #PlanningBlueprint .PlanningLegend .fakeExample {
      margin-top: 2px;
      height: 14px;
      margin-right: 5px; }
    #PlanningBlueprint .PlanningLegend .fakeDayCursor {
      border-right: solid blue 1px; }
    #PlanningBlueprint .PlanningLegend .fakeBackground {
      width: 20px; }
  #PlanningBlueprint a.ui-datepicker-prev, #PlanningBlueprint a.ui-datepicker-next {
    padding: 0; }
  #PlanningBlueprint a.ui-datepicker-prev-hover, #PlanningBlueprint a.ui-datepicker-next-hover {
    background: none;
    border: 1px solid darkgray;
    margin: 1px; }

.blueprint-visit-dialog {
  border: solid 1px black !important;
  background: #fcfcfc !important; }
  .blueprint-visit-dialog .ui-dialog-titlebar {
    background: var(--theme-primary-color) !important;
    border: 1px solid #aaaaaa !important;
    padding: .4em 1em !important;
    color: white; }
  .blueprint-visit-dialog .visitDialogElements {
    display: grid;
    grid-template-columns: max-content auto;
    grid-auto-rows: auto;
    grid-column-gap: 10px;
    grid-row-gap: 4px; }

@keyframes left-7 {
  0% {
    margin-left: 6px; }
  20% {
    margin-left: 6px; }
  80% {
    margin-left: -162px; }
  100% {
    margin-left: -162px; } }
@keyframes left-6 {
  0% {
    margin-left: 6px; }
  20% {
    margin-left: 6px; }
  80% {
    margin-left: -138px; }
  100% {
    margin-left: -138px; } }
@keyframes left-5 {
  0% {
    margin-left: 6px; }
  20% {
    margin-left: 6px; }
  80% {
    margin-left: -114px; }
  100% {
    margin-left: -114px; } }
@keyframes left-4 {
  0% {
    margin-left: 6px; }
  20% {
    margin-left: 6px; }
  80% {
    margin-left: -90px; }
  100% {
    margin-left: -90px; } }
@keyframes left-3 {
  0% {
    margin-left: 6px; }
  20% {
    margin-left: 6px; }
  80% {
    margin-left: -66px; }
  100% {
    margin-left: -66px; } }
@keyframes left-2 {
  0% {
    margin-left: 6px; }
  20% {
    margin-left: 6px; }
  80% {
    margin-left: -42px; }
  100% {
    margin-left: -42px; } }
@keyframes left-1 {
  0% {
    margin-left: 6px; }
  20% {
    margin-left: 6px; }
  80% {
    margin-left: -18px; }
  100% {
    margin-left: -18px; } }
@keyframes right-1 {
  0% {
    margin-left: 6px; }
  20% {
    margin-left: 6px; }
  80% {
    margin-left: 30px; }
  100% {
    margin-left: 30px; } }
@keyframes right-2 {
  0% {
    margin-left: 6px; }
  20% {
    margin-left: 6px; }
  80% {
    margin-left: 54px; }
  100% {
    margin-left: 54px; } }
@keyframes right-3 {
  0% {
    margin-left: 6px; }
  20% {
    margin-left: 6px; }
  80% {
    margin-left: 78px; }
  100% {
    margin-left: 78px; } }
@keyframes right-4 {
  0% {
    margin-left: 6px; }
  20% {
    margin-left: 6px; }
  80% {
    margin-left: 102px; }
  100% {
    margin-left: 102px; } }
@keyframes right-5 {
  0% {
    margin-left: 6px; }
  20% {
    margin-left: 6px; }
  80% {
    margin-left: 126px; }
  100% {
    margin-left: 126px; } }
@keyframes right-6 {
  0% {
    margin-left: 6px; }
  20% {
    margin-left: 6px; }
  80% {
    margin-left: 150px; }
  100% {
    margin-left: 150px; } }
@keyframes right-7 {
  0% {
    margin-left: 6px; }
  20% {
    margin-left: 6px; }
  80% {
    margin-left: 174px; }
  100% {
    margin-left: 174px; } }
#pnlCalendar {
  padding-top: 20px; }
  #pnlCalendar .gap {
    margin-bottom: 100px; }
  #pnlCalendar .row {
    display: flex; }
  #pnlCalendar .cell-gap-10 {
    gap: 10px; }
  #pnlCalendar .template {
    display: none; }
  #pnlCalendar .holidays {
    display: flex;
    flex-direction: column; }
    #pnlCalendar .holidays .holiday {
      display: flex;
      gap: 10px;
      align-items: center; }
  #pnlCalendar .planning-week-selects {
    display: flex;
    flex-direction: column; }
    #pnlCalendar .planning-week-selects .weekendDay {
      display: grid;
      grid-template-columns: 500px auto;
      grid-auto-rows: auto;
      gap: 10px 20px; }
      #pnlCalendar .planning-week-selects .weekendDay .setting {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4px; }
      #pnlCalendar .planning-week-selects .weekendDay .example {
        display: grid;
        grid-template-columns: repeat(21, 24px);
        align-items: center; }
        #pnlCalendar .planning-week-selects .weekendDay .example .text {
          display: none; }
      #pnlCalendar .planning-week-selects .weekendDay .example.last .text {
        display: block; }
      #pnlCalendar .planning-week-selects .weekendDay .newyear-example {
        display: grid;
        grid-template-columns: repeat(21, 24px);
        align-items: center; }
      #pnlCalendar .planning-week-selects .weekendDay .day {
        border-top: 1px solid black;
        border-left: 1px solid black;
        border-bottom: 1px solid black;
        height: 25px; }
        #pnlCalendar .planning-week-selects .weekendDay .day .text {
          writing-mode: vertical-rl;
          text-orientation: mixed;
          position: absolute;
          margin-top: 30px; }
      #pnlCalendar .planning-week-selects .weekendDay .day.weekend {
        background-color: orange; }
      #pnlCalendar .planning-week-selects .weekendDay .day.unavailable {
        background-color: lightcoral; }
      #pnlCalendar .planning-week-selects .weekendDay .day.last {
        border-right: 1px solid black; }
      #pnlCalendar .planning-week-selects .weekendDay .visit {
        z-index: 3; }
      #pnlCalendar .planning-week-selects .weekendDay .visit, #pnlCalendar .planning-week-selects .weekendDay .visit-ghost, #pnlCalendar .planning-week-selects .weekendDay .visit-target {
        border: 1px solid blue;
        border-radius: 100px;
        width: 10px;
        height: 10px;
        background-color: lightblue;
        margin-left: 6px; }
      #pnlCalendar .planning-week-selects .weekendDay .visit-ghost {
        opacity: 0.5;
        z-index: 2; }
      #pnlCalendar .planning-week-selects .weekendDay .visit-target {
        z-index: 3;
        background-color: forestgreen; }

.color-1 {
  color: #35cd96 !important; }

.color-2 {
  color: #6bcbef !important; }

.color-3 {
  color: #e542a3 !important; }

.color-4 {
  color: #91ab01 !important; }

.color-5 {
  color: #ffa97a !important; }

.color-6 {
  color: #1f7aec !important; }

.color-7 {
  color: #dfb610 !important; }

.color-8 {
  color: #029d00 !important; }

.color-9 {
  color: #8b7add !important; }

.color-10 {
  color: #fe7c7f !important; }

.color-11 {
  color: #ba33dc !important; }

.color-12 {
  color: #59d368 !important; }

.color-13 {
  color: #b04632 !important; }

.color-14 {
  color: #fd85d4 !important; }

.color-15 {
  color: #8393ca !important; }

.color-16 {
  color: #ff8f2c !important; }

.color-17 {
  color: #a3e2cb !important; }

.color-18 {
  color: #b4876e !important; }

.color-19 {
  color: #c90379 !important; }

.color-20 {
  color: #ef4b4f !important; }

.bubble {
  padding: 6px 7px 8px 9px; }

.bubble .quoted-msg {
  margin-left: -6px;
  margin-right: -4px;
  margin-top: -3px; }

.bubble-text .message-meta, .bubble-doc .message-meta, .bubble-ciphertext .message-meta, .bubble-location .message-meta {
  bottom: 3px;
  right: 7px; }

.bubble-doc .quoted-msg, .bubble-text .quoted-msg {
  margin-bottom: 6px; }

.message-meta .icon {
  height: 15px;
  width: 16px;
  margin-left: 3px;
  vertical-align: top; }

.message-out .tooltip-container {
  position: absolute;
  top: 50%;
  right: -14px;
  z-index: 10000; }

@media screen and (min-width: 901px) and (max-width: 1024px) {
  .message-out .tooltip-container {
    right: -10px; } }
@media screen and (max-width: 900px) {
  .message-out .tooltip-container {
    right: 9px; } }
.pane-preview .message-out .tooltip-container {
  right: 9px; }

@media screen and (min-width: 1025px) and (max-width: 1300px) {
  .three .message-out .tooltip-container {
    right: 9px; } }
.message-text a, .contents a {
  color: #039be5;
  text-decoration: underline; }

.msg-enter .message-in, .msg-enter .message-out {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0); }

.msg-enter.msg-enter-active .message-in, .msg-enter.msg-enter-active .message-out {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.message-meta .icon-s {
  margin-right: 2px;
  height: 15px; }

.message-in, .message-out {
  border-radius: 7.5px;
  position: relative;
  box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13); }

.message-code {
  max-width: 99% !important; }

.message-chat {
  margin-top: 13px;
  min-width: 200pt; }

@media screen and (max-width: 900px) {
  .message-chat {
    max-width: 95%; } }
@media screen and (min-width: 901px) and (max-width: 1024px) {
  .message-chat {
    max-width: 85%; } }
@media screen and (min-width: 1025px) and (max-width: 1300px) {
  .message-chat {
    max-width: 75%; } }
@media screen and (min-width: 1301px) {
  .message-chat {
    max-width: 65%; } }
.message-in {
  background-color: #ffd; }

.message-in:not(.message-psa) {
  float: left; }

.message-out {
  background-color: #dcf8c6;
  float: right; }

.message-author {
  font-family: 'Open Sans',sans-serif;
  font-size: 12.5px;
  line-height: 20px;
  height: 20px;
  font-weight: 600;
  margin-bottom: 1px;
  color: #74cff8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.message-author .emoji {
  vertical-align: -4px;
  margin-top: -1px; }

.message-psa .message-text {
  padding-bottom: 12px; }

.message-psa .bubble-image-caption .message-text, .message-psa .bubble-location-caption .message-text {
  padding-bottom: 20px; }

.bubble-image .message-author {
  padding: 3px 0 5px 7px; }

.bubble-image .message-meta {
  bottom: 6px;
  right: 8px; }

.bubble-image .message-meta, .bubble-location .message-meta {
  color: rgba(255, 255, 255, 0.9);
  z-index: 2; }

.message-psa .message-text::after {
  content: ""; }

.message-ciphertext, .message-text, .document-body {
  font-size: 13.6px;
  line-height: 19px;
  font-family: 'Open Sans',sans-serif;
  word-wrap: break-word;
  color: #262626; }

.message-text {
  position: relative; }

.message-text .message-pre-text {
  position: absolute;
  width: .1px;
  height: .1px;
  opacity: 0;
  overflow: hidden; }

.message-text strong {
  font-weight: 700; }

.message-text em {
  font-style: italic; }

.message-text code {
  font-family: Consolas,Menlo,Monaco,"Lucida Console",Liberation Mono,DejaVu Sans Mono,Bitstream Vera Sans Mono,"Courier New",Courier,monospace;
  font-size: 13px; }

.message-divider {
  height: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin: 6px 0;
  width: 25%; }

.message-text-multi {
  position: relative; }

.message-meta {
  position: absolute;
  bottom: -5px;
  right: 0;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 15px;
  height: 15px; }

.message-text-multi .message-meta {
  bottom: -5px !important;
  right: 0 !important; }

.message-text::after {
  content: " \00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0";
  display: inline; }

.bubble-broadcast .message-text::after, .bubble-star .message-text::after {
  content: " \00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0";
  display: inline; }

.bubble-broadcast.bubble-star .message-text::after {
  content: " \00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0\00a0";
  display: inline; }

.tail.message-in > .tail-container {
  content: '';
  position: absolute;
  left: -11px;
  bottom: 3px;
  width: 12px;
  height: 19px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain; }

.tail.message-out > .tail-container {
  right: -11px; }

.tail.message-out > .tail-container, .tail-override-left > .tail-container {
  content: '';
  position: absolute;
  bottom: 3px;
  width: 12px;
  height: 19px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain; }

msg-group .message-in .bubble-attach .wrapper {
  min-height: 98px; }

.msg-group .message-in .bubble-location .wrapper {
  min-height: 0;
  margin-top: 3px; }

.msg-group .message-in .bubble-contact .preview, .msg-group .message-in .preview-vcard {
  top: 38px !important; }

.msg-group .message-in .preview {
  top: 33px !important; }

.msg-group .message-in .bubble-location .preview {
  top: 0 !important; }

.msg-group .message-in .bubble-contact .quoted-msg-bubble-vcard {
  top: auto !important; }

.bubble-attach .message-author {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 4px; }

.bubble-attach .message-meta {
  bottom: 3px;
  right: 83px; }

.message-out .btn-download {
  margin: 8px 0 0 8px; }

.message-in .btn-download {
  margin: 10px 0 0 8px; }

.message .message-text .emojitext {
  cursor: text;
  white-space: pre-line; }

.safari-fix .message .message-text .emojitext {
  white-space: pre-line; }

.message .message-text .emojitext .emoji {
  cursor: text;
  pointer-events: none; }

.message .message-text .inverse-text-direction {
  display: inline-block;
  width: 100%; }

.message .shade {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 28px;
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.3), transparent);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px; }

.message-in .bubble-location .wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.bubble-location .message-author {
  padding-top: 3px;
  padding-left: 6px;
  padding-right: 4px; }

.message-in .bubble-contact .message-meta {
  right: 7px !important; }

.message-in .bubble-attach {
  padding-top: 6px; }

.message-out .preview {
  top: 3px;
  left: 3px;
  right: auto; }

.message-out .bubble-attach {
  padding-top: 8px;
  min-height: 0; }

.message-out .bubble-attach .quoted-msg {
  margin-top: -5px; }

.message-out .bubble-attach .wrapper {
  min-height: 65px; }

.message-out .bubble-attach .contents {
  margin-left: 78px; }

.message-out .bubble-attach .message-meta {
  right: 7px; }

.message-out .bubble-attach .image-caption {
  margin-top: 10px; }

.message-out .bubble-contact .wrapper {
  min-height: 49px; }

.message-out .bubble-contact .contents {
  position: relative;
  margin: 0; }

.message-out .bubble-contact .button-contact {
  height: 58px;
  line-height: 56px; }

.message-in .bubble-contact .contents {
  position: relative; }

.message-in .bubble-attach .wrapper {
  min-height: 68px; }

.message-in .bubble-contact .wrapper {
  min-height: 49px !important; }

.message-in .bubble-attach .image-caption {
  margin-top: 14px; }

.message-out .icon-error-container {
  position: absolute;
  top: 50%;
  right: -14px; }

.message .btn-context {
  position: absolute;
  right: 5px;
  cursor: pointer;
  height: 22px;
  width: 24px;
  background-image: none !important;
  margin: 0;
  z-index: 2;
  top: 6px; }

.message .btn-context:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 18px;
  opacity: .8;
  top: 2px;
  right: 0;
  left: auto; }

.message .btn-context:after {
  content: '';
  height: 22px;
  width: 24px;
  position: absolute;
  left: -24px;
  top: 0; }

.message-in .btn-context {
  background-color: #fff; }

.message-in.focused-msg .btn-context {
  background-color: #ccc; }

.message-in .btn-context:after {
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #fff);
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #fff); }

.message-in.focused-msg .btn-context:after {
  background: -webkit-linear-gradient(left, rgba(204, 204, 204, 0), #ccc);
  background: linear-gradient(to right, rgba(204, 204, 204, 0), #ccc); }

.message-out .btn-context {
  background-color: #dcf8c6; }

.message-out.focused-msg .btn-context {
  background-color: #b3cba1; }

.message-out .btn-context:after {
  background: -webkit-linear-gradient(left, rgba(220, 248, 198, 0), #dcf8c6);
  background: linear-gradient(to right, rgba(220, 248, 198, 0), #dcf8c6); }

.message-out.focused-msg .btn-context:after {
  background: -webkit-linear-gradient(left, rgba(179, 203, 161, 0), #b3cba1);
  background: linear-gradient(to right, rgba(179, 203, 161, 0), #b3cba1); }

.msg:not(.msg-group) .message-in .btn-context-image, .msg:not(.msg-group) .message-in .btn-context-video, .msg:not(.msg-group) .message-in .btn-context-audio, .message-out .btn-context-image, .message-out .btn-context-video, .message-out .btn-context-audio {
  background-color: transparent !important;
  right: 3px;
  top: 3px;
  width: 22px; }

.msg:not(.msg-group) .message-in .btn-context-image:before, .msg:not(.msg-group) .message-in .btn-context-video:before, .msg:not(.msg-group) .message-in .btn-context-audio:before, .message-out .btn-context-image:before, .message-out .btn-context-video:before, .message-out .btn-context-audio:before {
  opacity: 1;
  top: 5px;
  right: 5px;
  left: auto;
  z-index: 2; }

.msg:not(.msg-group) .message-in .btn-context-image:after, .msg:not(.msg-group) .message-in .btn-context-video:after, .msg:not(.msg-group) .message-in .btn-context-audio:after, .message-out .btn-context-image:after, .message-out .btn-context-video:after, .message-out .btn-context-audio:after {
  background: -webkit-linear-gradient(75deg, transparent 0%, transparent 45%, rgba(0, 0, 0, 0.12) 70%, rgba(0, 0, 0, 0.33) 100%);
  background: linear-gradient(15deg, transparent 0%, transparent 45%, rgba(0, 0, 0, 0.12) 70%, rgba(0, 0, 0, 0.33) 100%);
  border-top-right-radius: 6px;
  height: 40px;
  width: 140px;
  left: auto;
  right: 0;
  z-index: 1;
  pointer-events: none; }

.message .btn-context-ptt, .message .btn-context-ptt:after {
  height: 18px; }

.message-in .btn-context-ptt {
  right: 74px;
  top: 5px; }

.msg-group .message-in .btn-context-ptt {
  right: 81px; }

.msg:not(.msg-group) .message-in .btn-context-location {
  right: 99px; }

.message-out .btn-context-ptt {
  top: 5px; }

.message-in .btn-context-url {
  background-color: #f2f2f2; }

.message-out .btn-context-url {
  background-color: #d1ecbc; }

.message-in .btn-context-url:after {
  background: -webkit-linear-gradient(left, rgba(242, 242, 242, 0), #f2f2f2);
  background: linear-gradient(to right, rgba(242, 242, 242, 0), #f2f2f2); }

.message-out .btn-context-url:after {
  background: -webkit-linear-gradient(left, rgba(209, 236, 188, 0), #d1ecbc);
  background: linear-gradient(to right, rgba(209, 236, 188, 0), #d1ecbc); }

.message-out .bubble-actions {
  border-top: 1px solid rgba(0, 0, 0, 0.1); }

quoted-msg-info .message-author {
  height: 18px;
  margin-bottom: auto;
  border: none; }

.quoted-msg-info .message-text, .quoted-msg-info .message-author {
  padding: 0 !important;
  line-height: 20px; }

.quoted-msg-info .message-text .emojitext, .quoted-msg-info .message-author .emojitext {
  cursor: inherit; }

.quoted-msg-info .message-text::after {
  display: none; }

.message-out .bubble-audio .wrapper {
  min-height: 50px !important; }

.message-out .bubble-audio .contents {
  margin-left: 64px; }

.message-out .bubble-audio .quoted-msg {
  margin-bottom: 8px; }

.message-in .bubble-audio .wrapper {
  min-height: 53px !important; }

.message-in .bubble-audio .contents {
  margin-right: 64px; }

.message-in .bubble-audio .message-meta {
  right: 80px; }

.message-in .bubble-audio .quoted-msg {
  margin-bottom: 5px; }

.message-out .audio {
  margin-left: 8px;
  margin-right: 7px;
  padding-top: 8px; }

.message-in .audio {
  margin-left: 7px;
  margin-right: 8px;
  padding-top: 11px; }

.pane-preview-resize .message {
  width: 100%; }

.pane-preview-resize .message .image-thumb, .pane-preview-resize .message .bubble-attach {
  width: 100% !important; }

.messageBoubleClass {
  margin-top: 50px; }

.MessageRowItem {
  display: inline-block;
  width: 98%;
  margin: 0 1% 0 1%; }

.bubble * {
  cursor: default; }

.contextMenu {
  position: absolute;
  display: block;
  z-index: 1000;
  background-color: white; }

.contextMenu ul {
  border: solid;
  border-width: 2px;
  border-color: lightgray;
  margin: 0;
  padding: 0 0 0 0; }

.contextMenu ul li {
  background-color: white;
  min-width: 80px;
  list-style: none;
  margin: 0 1px;
  padding: 3px 10px 3px 20px; }

.contextMenu ul li:hover {
  background-color: Highlight;
  color: white;
  cursor: default; }

.contextMenuHidden {
  top: 0;
  left: 0;
  visibility: collapse; }

.contextMenuVisible {
  visibility: visible; }

td.myautoscroll {
  max-height: 700px;
  width: 205px;
  overflow: hidden;
  display: block; }

td.myautoscroll:hover {
  overflow: auto; }

td.myautoscroll > div > div > input {
  width: 188px; }

td.myautoscroll:hover > div > div > input {
  width: 176px; }

div.myautoscroll {
  max-height: 700px;
  overflow: hidden;
  display: block; }

div.myautoscroll:hover {
  overflow: auto; }

div.myautoscroll > div > div > input {
  width: 188px; }

div.myautoscroll:hover > div > div > input {
  width: 176px; }

.message-textarea {
  border-radius: 15px;
  width: 85%;
  max-width: 85%;
  outline-width: 0;
  min-height: 100px;
  box-sizing: border-box;
  margin-top: 10px;
  margin-left: 10px;
  margin-bottom: 10px;
  padding: 7px;
  border: 1px solid #ccc;
  float: left; }

.message-textarea::-webkit-scrollbar {
  display: none; }

.im-showMore {
  align-content: center;
  left: 50%;
  right: 50%;
  position: relative;
  border-radius: 10px !important;
  margin-top: 5px;
  opacity: 0.7; }

.im-addContact {
  width: 275px;
  display: block; }

.im-contactDate {
  display: block;
  text-align: right;
  font-size: 11px;
  color: grey;
  margin-top: 5px; }

.im-btnSend {
  height: 40px;
  box-sizing: border-box;
  width: 11%;
  float: left;
  margin-left: 1%;
  position: absolute;
  bottom: 1px; }

.message-textarea, .im-btnSend {
  display: inline-block;
  margin-bottom: 10px; }

.ar-editPopup {
  height: auto;
  max-height: none !important;
  top: 40% !important;
  min-height: 100px; }

.ar-editPopup input {
  height: 15px;
  padding: 5px;
  width: 200px; }

.ar-editPopup select {
  width: 212px;
  height: 27px; }

.ar-editPopup input[type=checkbox] {
  width: 15px; }

#linkedDocumentPanel td {
  padding-right: 50px; }

.ar-lblRisk {
  position: relative;
  bottom: 5px; }

.position-save-button {
  margin: 15px 0px 5px 5px; }

#divArticlesFilters a {
  margin-left: 5px; }

.formViewLabel.disable-transition label:before {
  transition-duration: 0s; }

@media print {
  form {
    display: none !important; }

  #printWarning {
    display: block !important; } }
#buttonBar {
  margin-bottom: 10px; }

.floorplan #pnlHorNav {
  background: var(--theme-primary-color);
  height: 29px;
  padding: 5px;
  padding-top: 10px;
  line-height: 24px; }

.floorplan #pnlHorNav img {
  display: block;
  float: left;
  height: 25px;
  margin-left: 20px; }

.floorplan #pnlHorNav a {
  padding-left: 4px;
  padding-right: 4px;
  padding-bottom: 4px;
  padding-top: 3px;
  border: 1px solid white;
  color: white; }

.floorplan h2 {
  font-size: 18px; }

#fp-body {
  padding-left: 20px; }

.floorplan #pnlHorNav a:hover {
  background: #67A8E4;
  text-decoration: none; }

.floorplan {
  min-width: 820px; }

#filterBar input, #buttonBar input {
  position: relative;
  top: 2px; }

#filterBar input[type=checkbox] {
  position: relative;
  top: 1px; }

#filterBar label, #filterBar input, #filterBar span {
  display: block;
  float: left; }

.floorplan h2 {
  margin-bottom: 10px; }

#filterBar label, #filterBar input[type="text"], #filterBar span {
  width: 200px; }

#filterBar td {
  line-height: 20px; }

#filterBar {
  display: none;
  margin-bottom: 10px; }

#filterBar input[type=submit] {
  float: left; }

#filterBar input[type=submit]:hover {
  cursor: pointer;
  background: #EAEAEA; }

#filterBar, #buttonBar {
  width: 100%;
  float: left;
  vertical-align: bottom;
  margin-top: 20px; }

#floorplan-map-container, .floorplan-map-container {
  z-index: 0;
  top: 5px;
  bottom: 0;
  left: 0;
  height: 700px;
  background: #f0f0f0;
  overflow: hidden; }

floorplan-container {
  width: 100%;
  clear: both; }

.floorplan-container-1col .map {
  width: 100%; }

.floorplan-container-1col .checkpoints {
  display: none; }

.floorplan-container-2col .map {
  width: 75%;
  float: left; }

.floorplan-container-2col .checkpoints {
  float: left;
  width: 24%; }

.floorplan-container-2col .checkpoints #fp-content, #is-content {
  overflow-y: auto;
  height: 600px; }

#floorplan-container .info div {
  width: 50%;
  float: left;
  height: 100%; }

#floorplan-container .info {
  height: 34px; }

#floorplan-container .info .buttons {
  text-align: right; }

#floorplan-container .info #fp-info-content, #floorplan-container .info .buttons {
  display: none; }

#tooltip {
  display: flex;
  max-width: 450px;
  flex-wrap: wrap;
  max-height: 350px;
  overflow: auto;
  padding: 3px 6px;
  justify-content: space-between; }
  #tooltip .tooltip-content {
    width: auto;
    min-width: 200px;
    padding: 2px 3px;
    box-sizing: border-box; }

#tooltip, #checkpointPopup {
  position: absolute;
  z-index: 100;
  display: none;
  color: white;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.8); }

#checkpointPopup {
  max-width: 500px;
  max-height: 400px;
  overflow-y: auto; }

#checkpointPopup a:visited {
  color: white; }

#checkpointPopup a:hover {
  color: white; }

#checkpointPopup a:link {
  color: white; }

.checkpoints h2 {
  margin-top: 0; }

.checkpoints a {
  display: block;
  border: 1px solid silver;
  text-decoration: none;
  color: var(--theme-primary-color);
  width: 43%;
  float: left;
  margin-bottom: 5px;
  padding: 5px;
  min-width: 100px;
  line-height: 1; }

#floorplan-container .info .buttons a span {
  display: block;
  float: right;
  height: 28px;
  width: 20px;
  text-align: center;
  color: #FFF;
  background: var(--theme-primary-color);
  font-weight: 700;
  line-height: 27px;
  font-size: 17px;
  margin: -5px; }

#floorplan-container .checkpoints span {
  display: block;
  float: left;
  width: 46%;
  line-height: 25px; }

#floorplan-container .checkpoints a span {
  display: block;
  float: right;
  height: 28px;
  width: 20px;
  text-align: center;
  color: #FFF;
  background: var(--theme-primary-color);
  font-weight: 700;
  line-height: 28px;
  font-size: 17px;
  margin: -5px; }

#floorplan-container .info .buttons a {
  margin-left: 5px;
  border: 1px solid silver;
  text-decoration: none;
  margin-bottom: 5px;
  padding: 5px;
  vertical-align: middle;
  width: 200px;
  text-align: left;
  display: block;
  float: right; }

#floorplan-container .checkpoints a:hover, #floorplan-container .info .buttons a:hover {
  color: #000;
  background: #EAEAEA;
  text-decoration: none; }

#floorplan-container .info #fp-info-content {
  line-height: 30px; }

#legend, #detectionlegend {
  margin-bottom: 10px;
  margin-right: 10px;
  display: none;
  min-width: 820px; }

.legendItem {
  width: 30%;
  height: 30px;
  float: left;
  line-height: 30px;
  vertical-align: middle;
  margin: 5px; }

.legendItem img {
  vertical-align: middle;
  margin-right: 10px; }

.legendShape {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  float: left; }

.legendText {
  margin-left: 25px;
  padding: 2px 0; }

.RoundTable {
  border-collapse: collapse; }

.RoundTable td {
  border: 1px solid silver;
  padding: 6px; }

.RoundTable div {
  padding: 2px 0; }

#printWarning {
  display: none; }

.marker-popup {
  position: absolute;
  background-color: white;
  -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
  padding: 5px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  bottom: 12px;
  left: -25px; }

.auditFloorplanH2 {
  font-weight: 700;
  font-size: initial;
  padding-top: 25px;
  padding-bottom: 25px; }

#fp-body {
  margin-bottom: 13px; }

.audit-floorplan {
  margin-bottom: 75px;
  border: 1px solid #ddd; }

.sliderContainer {
  display: table-cell;
  vertical-align: middle;
  height: 50px; }

.sliderContainer .sliderLabel, .sliderContainer input[type='range'] {
  vertical-align: middle; }

.sliderLabel {
  display: inline-block; }

#btnFloorplan {
  color: var(--theme-primary-color); }

#floorplan-container.ps_floorplan-container .map {
  padding-right: 1%;
  box-sizing: border-box; }

.work-order-content .ps_manager-holder {
  display: inline-flex;
  width: 200px;
  overflow: hidden;
  padding-right: 30px; }
.work-order-content .workOrderRow span {
  color: #333;
  font-family: 'Open Sans', arial, sans-serif;
  font-size: 13px; }
.work-order-content .PSForm.SingleColumn {
  display: flex;
  justify-content: center;
  height: calc(100vh - 160px); }
  .work-order-content .PSForm.SingleColumn .workorder-general, .work-order-content .PSForm.SingleColumn .job-general {
    min-width: 50%;
    grid-template-columns: 1fr;
    align-self: center;
    max-height: 100%; }
  .work-order-content .PSForm.SingleColumn .workorder-aftercare-area, .work-order-content .PSForm.SingleColumn .job-aftercare-area {
    display: none; }
  .work-order-content .PSForm.SingleColumn div#pnlHMSStatistics {
    margin-bottom: 80px; }
.work-order-content .workorder-general, .work-order-content .job-general {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; }
  .work-order-content .workorder-general > div, .work-order-content .job-general > div {
    background-color: #f7f7f7;
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 15px; }
  .work-order-content .workorder-general .workorder-plan-area, .work-order-content .job-general .workorder-plan-area {
    grid-area: 2 / 1; }
  .work-order-content .workorder-general .workorder-aftercare-area, .work-order-content .job-general .workorder-aftercare-area {
    grid-area: 1/2; }
  .work-order-content .workorder-general .workorder-info-area, .work-order-content .job-general .workorder-info-area {
    grid-area: 1 / 1; }
  .work-order-content .workorder-general .workorder-worktimes, .work-order-content .job-general .workorder-worktimes {
    grid-area: 2 / 2; }
  .work-order-content .workorder-general #hmsPanel, .work-order-content .job-general #hmsPanel {
    grid-area: 3 / 1 / span 1 / -1; }
  .work-order-content .workorder-general .workorder-radio-list span, .work-order-content .job-general .workorder-radio-list span {
    white-space: nowrap; }
  .work-order-content .workorder-general .workorder-radio-list > input:first-child, .work-order-content .job-general .workorder-radio-list > input:first-child {
    margin-left: 0; }
  .work-order-content .workorder-general .workorder-radio-list > span:first-child > input:first-child, .work-order-content .job-general .workorder-radio-list > span:first-child > input:first-child {
    margin-left: 0; }
  .work-order-content .workorder-general .workorder-radio-list label, .work-order-content .job-general .workorder-radio-list label {
    max-width: max-content; }
  .work-order-content .workorder-general table.PSTable > tbody > tr td:first-child, .work-order-content .job-general table.PSTable > tbody > tr td:first-child {
    white-space: nowrap; }
  .work-order-content .workorder-general table.PSTable > tbody > tr td, .work-order-content .job-general table.PSTable > tbody > tr td {
    padding-bottom: 2px;
    border: 0;
    min-height: 33px; }
  .work-order-content .workorder-general table.PSTable > tbody > tr td.employees, .work-order-content .job-general table.PSTable > tbody > tr td.employees {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center; }
    .work-order-content .workorder-general table.PSTable > tbody > tr td.employees span, .work-order-content .job-general table.PSTable > tbody > tr td.employees span {
      padding: 0px 10px; }
    .work-order-content .workorder-general table.PSTable > tbody > tr td.employees div.spacer, .work-order-content .job-general table.PSTable > tbody > tr td.employees div.spacer {
      width: 155px;
      flex-grow: 1; }
  .work-order-content .workorder-general table.PSTable > tbody > tr td:first-child, .work-order-content .job-general table.PSTable > tbody > tr td:first-child {
    padding-left: 5px;
    width: 25%; }
    .work-order-content .workorder-general table.PSTable > tbody > tr td:first-child > span, .work-order-content .job-general table.PSTable > tbody > tr td:first-child > span {
      display: block;
      min-width: 190px;
      max-width: 205px;
      margin-right: 12px; }
.work-order-content input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: var(--theme-primary-color);
  width: 20px;
  height: 20px;
  border: 1px solid #bbb;
  border-radius: 2px;
  display: grid;
  place-content: center;
  cursor: pointer; }
.work-order-content input[type="checkbox"]::before {
  content: "";
  width: 10px;
  height: 10px;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  background-color: var(--theme-primary-color); }
.work-order-content input[type="checkbox"]:checked::before {
  transform: scale(1); }
.work-order-content input[type="checkbox"]:focus {
  border-color: var(--theme-primary-color); }
.work-order-content input[type="checkbox"]:disabled {
  --form-control-color: #ddd;
  color: var(--form-control-disabled);
  cursor: not-allowed; }
.work-order-content .checkboxlist_container {
  height: 80px;
  overflow-y: auto;
  background-color: #ffffff;
  max-width: 646px; }
  .work-order-content .checkboxlist_container table {
    margin-top: -10px; }
    .work-order-content .checkboxlist_container table tr {
      height: 25px; }
.work-order-content input[type=text]:not(.numeric), .work-order-content textarea, .work-order-content input[type=time], .work-order-content select, .work-order-content .checkboxlist_container {
  min-width: 192px;
  border-radius: 4px;
  border: 2px solid var(--theme-primary-color-faded);
  transition: border .2s;
  padding: 5px; }
  .work-order-content input[type=text]:not(.numeric):focus, .work-order-content textarea:focus, .work-order-content input[type=time]:focus, .work-order-content select:focus, .work-order-content .checkboxlist_container:focus {
    border: 2px solid var(--theme-primary-color); }
.work-order-content .job-radio-list, .work-order-content .pl-15, .work-order-content #cblTaskBatches td {
  display: grid;
  grid-template-columns: 30px auto;
  grid-template-rows: auto;
  align-items: center;
  grid-gap: 5px 0; }
.work-order-content .workorder-radio-list li, .work-order-content .workorder-radio-list > span {
  display: grid !important;
  grid-template-columns: 30px auto;
  grid-template-rows: auto;
  align-items: center;
  margin: 0 0 5px 0; }
.work-order-content input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 20px;
  height: 20px;
  border: 1px solid #bbb;
  border-radius: 50%;
  transform: translateY(-0.075px);
  display: grid;
  place-content: center;
  cursor: pointer; }
.work-order-content input[type="radio"]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: var(--theme-primary-color);
  box-shadow: inset 1px 1px var(--theme-primary-color);
  cursor: pointer; }
.work-order-content input[type="radio"]:checked::before {
  transform: scale(0.8); }
.work-order-content input[type="radio"]:focus {
  border: 1px solid var(--theme-primary-color); }
.work-order-content .job-general {
  display: grid;
  gap: 15px 10px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto; }
  .work-order-content .job-general .job-info-area {
    grid-area: 1 / 1 / span 1 / span 1; }
  .work-order-content .job-general .job-plan-area {
    grid-area: 2 / 1 / span 1 / span 1; }
  .work-order-content .job-general .job-aftercare-area {
    grid-area: 1 / 2 / span 1 / span 1; }
  .work-order-content .job-general .job-totals-area {
    grid-area: 2 / 2 / span 1 / span 1; }
  .work-order-content .job-general #hmsPanel {
    grid-area: 3 / 1 / span 1 / -1; }
  .work-order-content .job-general table.PSTable tr > td {
    white-space: nowrap;
    padding-bottom: 2px;
    border: 0; }
  .work-order-content .job-general table.PSTable tr > td:first-child > span {
    display: block;
    min-width: 300px; }
  .work-order-content .job-general div:not(.job-totals-area) table.PSTable tr > td:first-child {
    padding-left: 5px;
    width: 35%; }
  .work-order-content .job-general div:not(.job-totals-area) table.PSTable tr > td:last-child {
    width: 65%; }
  .work-order-content .job-general .job-totals-area table {
    table-layout: fixed;
    min-width: 800px; }
    .work-order-content .job-general .job-totals-area table thead td {
      font-weight: 600; }
    .work-order-content .job-general .job-totals-area table tbody > tr:last-child td:first-child {
      font-weight: 600; }
    .work-order-content .job-general .job-totals-area table tbody > tr:last-child td {
      border-top: solid 1px darkgray; }
    .work-order-content .job-general .job-totals-area table tbody > tr:last-child td:last-child {
      width: 200px;
      border-top: 0 !important; }
.work-order-content .sticky-bottom {
  position: fixed;
  bottom: 10px;
  height: 55px;
  margin-left: -20px;
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100%;
  pointer-events: none;
  z-index: 99; }
  .work-order-content .sticky-bottom * {
    pointer-events: initial; }
  .work-order-content .sticky-bottom .job-menu-items, .work-order-content .sticky-bottom .workorder-menu-items {
    background: var(--theme-primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 60px;
    padding: 0 20px;
    min-width: max-content; }
    .work-order-content .sticky-bottom .job-menu-items > div, .work-order-content .sticky-bottom .workorder-menu-items > div {
      display: inline; }
    .work-order-content .sticky-bottom .job-menu-items a, .work-order-content .sticky-bottom .workorder-menu-items a {
      border: none; }
    .work-order-content .sticky-bottom .job-menu-items > a:not(.btn-reviewed, .btn-required), .work-order-content .sticky-bottom .workorder-menu-items > a:not(.btn-reviewed, .btn-required) {
      background: white;
      border-radius: 4px;
      padding: 3px 6px 4px 6px; }
  .work-order-content .sticky-bottom #pnlQuickLinks {
    margin-right: 6px; }
    .work-order-content .sticky-bottom #pnlQuickLinks a {
      background: none !important; }
.work-order-content textarea {
  width: calc(100% - -5px); }
.work-order-content .job-general div table tbody tr textarea {
  width: calc(100% - 13px); }
.work-order-content .job-general input[type="text"] {
  width: 50%; }
.work-order-content h3 {
  font-weight: 600;
  background-color: var(--theme-primary-color-faded);
  border: 1px solid var(--theme-primary-color);
  border-radius: 4px;
  padding: 4px 0;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 0px; }
.work-order-content #pnlHMSStatistics {
  display: flex;
  justify-content: center; }
.work-order-content .hmsOrderTasks {
  margin-bottom: 20px; }
.work-order-content .hmsOrderTasks input {
  width: 100%;
  box-sizing: border-box; }
.work-order-content #imgCRMStatus {
  height: 14px;
  width: 14px;
  display: inline-block;
  margin-bottom: -2px; }
.work-order-content #imgCRMStatus.synced {
  background-color: green;
  border-radius: 20px; }
.work-order-content #imgCRMStatus.not-synced {
  background-color: red;
  border-radius: 20px; }
.work-order-content .worktimestable {
  margin-bottom: 20px; }
.work-order-content .grandTotalPlusSign {
  transform: translate(-10px, -20px);
  display: block; }
.work-order-content .job-radio-list input:first-child {
  margin-left: 0; }
.work-order-content .reviewed-cell a {
  margin-left: 0px;
  flex-grow: 1; }
.work-order-content .reviewed-cell div.spacer {
  width: 150px; }
.work-order-content .status ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column; }
  .work-order-content .status ul li {
    display: block; }
.work-order-content .invoice-time input {
  margin-left: 0px; }
.work-order-content input[type="checkbox"] {
  margin-left: 0px; }
.work-order-content .freshdesk-link {
  border: 0 !important; }
  .work-order-content .freshdesk-link:hover {
    background: transparent; }
  .work-order-content .freshdesk-link svg {
    margin-top: -2px;
    vertical-align: middle; }
.work-order-content .freshdesk-link {
  margin: 0;
  margin-top: -2px;
  padding: 0; }

.checkboxlist_container {
  max-width: 639px; }
  .checkboxlist_container #cblTaskBatches {
    table-layout: fixed;
    width: 100%; }
    .checkboxlist_container #cblTaskBatches tbody {
      display: grid;
      grid-template-columns: 50% 50%; }
      .checkboxlist_container #cblTaskBatches tbody label {
        width: 230px;
        overflow: hidden; }

#lblGeneralRemark {
  white-space: pre-wrap; }

.compact #tabs .tab h3 {
  display: none; }
.compact textarea {
  height: 55px !important; }

.detailed textarea {
  resize: vertical;
  min-height: 100px; }
.detailed #tabs > ul {
  display: none; }
.detailed #tabs .tab {
  background-color: #f7f7f7;
  border-radius: 4px;
  border: 1px solid #ccc;
  padding: 15px;
  margin-bottom: 20px;
  display: block !important; }
  .detailed #tabs .tab.hidden {
    display: none !important; }
  .detailed #tabs .tab h3 {
    font-weight: 600;
    background-color: var(--theme-primary-color-faded);
    border: 1px solid var(--theme-primary-color);
    border-radius: 4px;
    padding: 4px 0;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 0px; }

#trDoInvoice td:last-of-type span {
  display: flex; }
  #trDoInvoice td:last-of-type span label {
    margin-left: 5px; }

#divActivityDiagram {
  min-width: 1200px; }
  #divActivityDiagram #divPresets {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 1rem; }
  #divActivityDiagram #divOptions {
    display: grid;
    grid-template-columns: .9fr .9fr 1.1fr 1.1fr;
    gap: .5rem; }
    #divActivityDiagram #divOptions #divPeriodsWrapper {
      overflow: auto;
      min-width: 250px; }
      #divActivityDiagram #divOptions #divPeriodsWrapper #divPeriods {
        display: flex;
        flex-direction: column;
        gap: 2px; }
        #divActivityDiagram #divOptions #divPeriodsWrapper #divPeriods input {
          width: 100px; }
    #divActivityDiagram #divOptions > div {
      max-height: 180px;
      border-right: 1px solid #aaa;
      padding-right: .5rem;
      display: flex;
      flex-direction: column;
      row-gap: 5px; }
    #divActivityDiagram #divOptions > div:last-child {
      border-right: none; }
      #divActivityDiagram #divOptions > div:last-child > div {
        display: flex; }
        #divActivityDiagram #divOptions > div:last-child > div > label {
          flex: 2; }
        #divActivityDiagram #divOptions > div:last-child > div > select {
          flex: 5; }
    #divActivityDiagram #divOptions #divRoomsWrapper {
      display: flex;
      flex-direction: row; }
      #divActivityDiagram #divOptions #divRoomsWrapper > label {
        flex: 2;
        margin-top: 7px; }
      #divActivityDiagram #divOptions #divRoomsWrapper #listRooms {
        flex: 10;
        margin-top: -10px; }
      #divActivityDiagram #divOptions #divRoomsWrapper .ps_mch-items-panel {
        top: 40px; }
    #divActivityDiagram #divOptions #divCheckpointTypesWrapper > div {
      display: flex; }
      #divActivityDiagram #divOptions #divCheckpointTypesWrapper > div > label {
        flex: 3; }
      #divActivityDiagram #divOptions #divCheckpointTypesWrapper > div > select {
        flex: 5; }
      #divActivityDiagram #divOptions #divCheckpointTypesWrapper > div > input {
        flex: 5; }

.activityPopup .activityPopupOrderSheet .activityPopupHeader, .activityPopup .activityPopupDetections .activityPopupHeader {
  font-weight: 300;
  margin-bottom: 10px; }
  .activityPopup .activityPopupOrderSheet .activityPopupHeader span, .activityPopup .activityPopupDetections .activityPopupHeader span {
    margin-right: 20px; }
.activityPopup .activityPopupOrderSheet .activityPopupTable, .activityPopup .activityPopupDetections .activityPopupTable {
  width: 100%; }
  .activityPopup .activityPopupOrderSheet .activityPopupTable td, .activityPopup .activityPopupDetections .activityPopupTable td {
    text-align: center;
    overflow: auto; }
.activityPopup div.activityPopupOrderSheet:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: dashed 1px black; }
.activityPopup a {
  color: #2C6397; }

.ps_filters-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between; }

#ps_chckFilters, #ps_chckColumns, #ps_chckServices {
  position: absolute;
  opacity: 0;
  z-index: -1; }

.ps_row {
  display: flex;
  width: 100%; }
  .ps_row .ps_col {
    flex: 1; }

#lblFilters, #lblColumns, #lblServiceShowHide {
  margin-top: 5px; }

#ddlPopupStatus option:disabled {
  background: #ccc;
  color: #a7a7a7; }

#resultsDefiningAccesses {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 11111; }

.disabled-control {
  opacity: 0.4;
  pointer-events: none; }

#ddlSelectLocation {
  max-width: 370px; }

/*# sourceMappingURL=stylePS.css.map */
