@import url(https://fonts.googleapis.com/css?family=Nunito);#tv-report .heading {
  font-size: 1.5vw;
}

@media (min-width: 1919px) {
  #tv-report .amount {
    font-size: 3.2em;
    margin-top: -7%;
  }
}

@media (max-width: 1918px) {
  #tv-report .amount {
    font-size: 2em;
    margin-top: -7%;
  }
}

#tv-report .number {
  font-size: 1.5vw;
}

#tv-report .adjusted-number {
  font-size: 1.2vw;
}

#tv-report .small-number {
  font-size: 0.9vw;
}

#tv-report .number-title {
  font-size: 1vw;
}

#tv-report .progress {
  background-color: transparent;
}

#tv-report .progress-td {
  padding-bottom: 0;
}

#tv-report .progress-td .row .col-md-12:nth-child(2) {
  padding-right: 0;
}

#tv-report #group-logo {
  opacity: 0.5;
  width: 80%;
  margin-top: 67%;
}

#tv-report #last-refresh-time {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: #fff;
  opacity: 0.6;
}

#tv-report #cct-table-footer-text {
  bottom: 0;
  color: #fff;
  text-align: right;
  margin-bottom: -2%;
}

#tv-report .animated {
  font-family: "Open Sans";
}

#tv-report .list-group-item:not(:first-child) {
  max-height: 3.25vw;
}

#tv-report .list-group-item > img {
  max-height: 3vw;
}

#tv-report .antenna .list-group-item:first-child,
#tv-report .pest .list-group-item:first-child,
#tv-report .gutter .list-group-item:first-child {
  padding-bottom: 0;
  padding-top: 0;
}

#tv-report .antenna .list-group-item:first-child img,
#tv-report .pest .list-group-item:first-child img,
#tv-report .gutter .list-group-item:first-child img {
  max-height: 4vw;
}

#tv-report .cct-table {
  bottom: 0;
  position: absolute;
  right: 15px;
  width: 100%;
}

#tv-report .table {
  color: #fff;
  margin-bottom: 0;
}

#tv-report .table tbody tr:last-child td {
  font-weight: 900;
}

#tv-report .table tbody tr td,
#tv-report .table thead tr th {
  font-size: 1.3em;
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
}

#tv-report .table th,
#tv-report .table td {
  vertical-align: middle !important;
}

#tv-report .table tr.total {
  font-size: 1.5em;
  font-weight: 900;
}

#tv-report .antenna li {
  background-color: #20a8d8;
  color: #fff;
}

#tv-report .antenna li:nth-child(even) {
  background-color: #6EC0DD;
}

#tv-report .pest li {
  background-color: #2d5393;
  color: #fff;
}

#tv-report .pest li:nth-child(even) {
  background-color: #768EB4;
}

#tv-report .gutter li {
  background-color: #526165;
  color: #fff;
}

#tv-report .gutter li:nth-child(even) {
  background-color: #8C9699;
}

#tv-report .today li {
  background-color: #CEA51A;
  color: #fff;
}

#tv-report .today li:nth-child(even) {
  background-color: #D7BE6C;
}

#tv-report .this-week li {
  background-color: #EEC025;
  color: #fff;
}

#tv-report .this-week li:nth-child(even) {
  background-color: #EACF71;
}

#tv-report .this-month li {
  background-color: #D16C74;
  color: #fff;
}

#tv-report .this-month li:nth-child(even) {
  background-color: #D89CA1;
}

#cct-performance-report .cct-table {
  bottom: 0;
  right: 15px;
  width: 100%;
}

#cct-performance-report .table {
  margin-bottom: 0;
}

#cct-performance-report .table tbody tr td,
#cct-performance-report .table thead tr th {
  font-size: 1.3em;
  border: 0;
}

#cct-performance-report .table th,
#cct-performance-report .table td {
  vertical-align: middle !important;
}

#cct-performance-report .table tr.total {
  font-size: 1.5em;
}

#cct-performance-report .progress-td .row .col-md-12:nth-child(2) {
  padding-right: 0;
}

#cct-activity-report #on_call {
  padding-top: 1%;
  background-image: url("/img/cct-activity-report/green.jpg");
  background-repeat: no-repeat;
  min-height: 100%;
  background-size: cover;
  max-height: 100%;
  overflow-y: auto;
}

#cct-activity-report #on_call > .row {
  padding-top: 1rem;
}

#cct-activity-report #on_call .flashing {
  border: solid #8FD55D 7px;
  -webkit-animation: switch-on-call-animation 1s infinite linear;
          animation: switch-on-call-animation 1s infinite linear;
}

@-webkit-keyframes switch-on-call-animation {
  0%, 50% {
    border-color: #829040;
  }

  50.1%, 100% {
    border-color: #8FD55D;
  }
}

@keyframes switch-on-call-animation {
  0%, 50% {
    border-color: #829040;
  }

  50.1%, 100% {
    border-color: #8FD55D;
  }
}

#cct-activity-report #on_call .heading {
  font-size: 3.6vw;
  font-weight: bold;
}

#cct-activity-report #ready {
  padding-top: 1%;
  background-image: url("/img/cct-activity-report/orange.jpg");
  background-repeat: no-repeat;
  min-height: 100%;
  background-size: cover;
  max-height: 100%;
  overflow-y: auto;
}

#cct-activity-report #ready > .row {
  padding-top: 1rem;
}

#cct-activity-report #ready .flashing {
  border: solid #E9B448 7px;
  -webkit-animation: switch-animation 1s infinite linear;
          animation: switch-animation 1s infinite linear;
}

@-webkit-keyframes switch-animation {
  0%, 50% {
    border-color: #A76833;
  }

  50.1%, 100% {
    border-color: #E9B448;
  }
}

@keyframes switch-animation {
  0%, 50% {
    border-color: #A76833;
  }

  50.1%, 100% {
    border-color: #E9B448;
  }
}

#cct-activity-report #ready .heading {
  font-size: 3.6vw;
  font-weight: bold;
}

#cct-activity-report #unavailable {
  padding-top: 1%;
  background-image: url("/img/cct-activity-report/red.jpg");
  background-repeat: no-repeat;
  min-height: 100%;
  background-size: cover;
  max-height: 100%;
  overflow-y: auto;
}

#cct-activity-report #unavailable > .row {
  padding-top: 1rem;
}

#cct-activity-report #unavailable .heading {
  font-size: 3.6vw;
  font-weight: bold;
}

#cct-activity-report #offline {
  padding-top: 1%;
  background-image: url("/img/cct-activity-report/gray.jpg");
  background-repeat: no-repeat;
  min-height: 100%;
  background-position: center;
  background-size: cover;
  max-height: 100%;
  overflow-y: auto;
}

#cct-activity-report #offline > .row {
  bottom: 0;
  position: absolute;
  width: 100%;
  padding-top: 1rem;
}

#cct-activity-report #offline .heading {
  font-size: 3.6vw;
  font-weight: bold;
}

#cct-activity-report .offline-card {
  background-color: #7F8081;
}

#cct-activity-report .unavailable-card {
  background-color: #9C3C35;
  color: white;
  text-align: center;
}

#cct-activity-report .unavailable-card .card-icon {
  background-color: #fff;
  width: 65px !important;
  height: 65px !important;
}

#cct-activity-report .ready-card {
  background-color: #A76833;
}

#cct-activity-report .on-call-card {
  background-color: #829040;
}

#cct-activity-report .card-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  right: -11px;
  top: -11px;
}

#cct-activity-report span.card-icon {
  color: #f94a05;
}

#cct-activity-report .heading {
  color: #fff;
  opacity: 52% !important;
}

#cct-activity-report .card-body,
#cct-activity-report .card {
  border-radius: 15px;
}

#cct-activity-report .card-body {
  padding: 0.4rem !important;
}

#cct-activity-report h1 {
  font-size: 4.2rem;
}

#cct-activity-report h1,
#cct-activity-report h2,
#cct-activity-report h3,
#cct-activity-report h4,
#cct-activity-report h5,
#cct-activity-report h6 {
  margin-bottom: 0.5rem;
  font-weight: 800;
  line-height: 1.2;
}

#cct-activity-report .card {
  border: none;
}

#cct-activity-report #cct-row-container {
  height: 100vh;
  width: 100%;
  position: absolute;
}

#siggen #details {
  padding-top: 2%;
  background-color: #3C4C64;
  background-repeat: no-repeat;
  min-height: 100%;
  background-size: cover;
}

#siggen #details input {
  background-color: #3C4C64;
  color: #fff;
}

#siggen #editor {
  padding-top: 2em;
  padding-bottom: 2em;
  padding-left: 2%;
  padding-right: 2%;
  background-color: #D5D5D5;
  background-repeat: no-repeat;
  min-height: 100%;
  background-position: center;
  background-size: cover;
}

#siggen #editor .card-header {
  background-color: #3C4C64;
}

#siggen #editor .grayscale_image {
  filter: grayscale(1);
}

#siggen #row-container {
  height: 100vh;
  width: 99%;
  position: absolute;
}

#siggen .btn.rounded-circle {
  height: 2.7em;
}

@font-face {
  font-family: "ChunkFiveEx";
  font-style: normal;
  font-weight: normal;
  src: local("ChunkFiveEx"), url("/fonts/custom/Chunkfive_Ex.woff") format("woff");
}

@font-face {
  font-family: "bebas_neueregular";
  src: url("/fonts/custom/bebasneuewebfont-webfont.woff2") format("woff2"), url("/fonts/custom/bebasneuewebfont-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

#cardgen .card-header {
  background-color: #3C4C64;
}

#cardgen #details {
  background-repeat: no-repeat;
  min-width: 100%;
  background-size: cover;
}

#cardgen #details input {
  background-color: #3C4C64;
  color: #fff;
}

#cardgen #editor {
  background-repeat: no-repeat;
  min-height: 100%;
  background-position: center;
  background-size: cover;
}

#cardgen #row-container {
  height: 100vh;
  width: 99%;
  position: absolute;
}

#cardgen .btn.rounded-circle {
  height: 2.7em;
}

#cardgen .page_1_title {
  font-family: "ChunkFiveEx";
  font-weight: 800;
}

#cardgen .page_2_main_title {
  font-family: "bebas_neueregular", "sans-serif";
  font-weight: 600;
  font-size: 4em;
}

#cardgen .page_2_sub_title {
  font-family: "bebas_neueregular", "sans-serif";
  font-weight: 600;
  font-size: 3em;
  color: #BDB9B6;
}

@media only screen and (max-width: 1599px) {
  #cardgen .page_2_text {
    font-family: "Arial Narrow", "sans-serif";
    font-size: 1.2em;
  }

  #cardgen .page_2_website {
    font-family: "Arial Narrow", "sans-serif";
    font-size: 1.2em;
  }

  #cardgen #page_2 > .row {
    padding: 1.2rem 3.5rem 1.2rem 1.2rem;
  }
}

@media only screen and (min-width: 1600px) {
  #cardgen .page_2_text {
    font-family: "Arial Narrow", "sans-serif";
    font-size: 1.4em;
  }

  #cardgen .page_2_website {
    font-family: "Arial Narrow", "sans-serif";
    font-size: 1.4em;
  }

  #cardgen #page_2 > .row {
    padding: 2rem 4.5rem 2rem 2rem;
  }
}

.pdf {
  font-family: Arial, sans-serif;
}

.pdf .light-gray {
  background-color: #e9e9e9;
}

.pdf .heading {
  font-size: 2vw;
}

.pdf .subheading {
  font-size: 1.3em;
}

@media (min-width: 1919px) {
  .pdf .amount {
    font-size: 3.2em;
    margin-top: -7%;
  }
}

@media (max-width: 1918px) {
  .pdf .amount {
    font-size: 2em;
    margin-top: -7%;
  }
}

.pdf .number-title {
  font-size: 1em;
}

.pdf .number {
  font-size: 1em;
}

.pdf .animated {
  font-family: "Open Sans";
}

.pdf .table tbody tr:last-child td {
  font-weight: 900;
}

.pdf .tbody-text {
  font-size: 1.1em;
}

.pdf .table th,
.pdf .table td {
  vertical-align: middle !important;
}

.pdf .table tr.total {
  font-weight: 900;
}

.pdf .bg-light-gray {
  background: #6C7075;
}

.pdf .bg-dark-gray {
  background-color: #5E5E5E;
}

.pdf .bg-darkest-gray {
  background-color: #404246;
}

.pdf .list-group {
  margin-bottom: 1rem;
}

.pdf .col-md-6 {
  width: 50%;
}

.pdf .total-amount {
  font-size: 1.4em;
  font-weight: 900;
}

.pdf .total-text {
  font-size: 1.05em;
  font-weight: 900;
}

.pdf .primary-text {
  font-size: 1.2em;
  font-weight: 900;
}

.pdf .secondary-text {
  font-size: 1.1em;
  font-weight: 900;
}

.pdf .non-bold-secondary-text {
  font-size: 1.05em;
}

.pdf .border-total-td {
  border-top: 3px solid gray;
  border-bottom: 3px solid gray;
}

.pdf .footer {
  margin-top: 30%;
}

#disbursement-report-div #edit-modal .modal-header {
  background-color: #20a8d8;
  color: #fff;
}

#disbursement-report-div #edit-modal .modal-header .close {
  color: #fff;
}

#disbursement-table tbody tr.header th:nth-child(9),
#disbursement-table tbody tr.header td:nth-child(9) {
  background-color: #F7FD77;
}

#disbursement-table tbody tr.header th:nth-child(10),
#disbursement-table tbody tr.header td:nth-child(10) {
  background-color: #FCE979;
}

#disbursement-table tbody tr.header th:nth-child(11),
#disbursement-table tbody tr.header td:nth-child(11) {
  background-color: #D6FD78;
}

#disbursement-table tbody tr.subtotal th:nth-child(3),
#disbursement-table tbody tr.subtotal td:nth-child(3) {
  background-color: #F7FD77;
}

#disbursement-table tbody tr.subtotal th:nth-child(4),
#disbursement-table tbody tr.subtotal td:nth-child(4) {
  background-color: #FCE979;
}

#disbursement-table tbody tr.subtotal th:nth-child(5),
#disbursement-table tbody tr.subtotal td:nth-child(5),
#disbursement-table tbody tr.subtotal th:nth-child(6) {
  background-color: #D6FD78;
}

.fsor-table tbody tr.header th:nth-child(2),
.fsor-table tbody tr.header td:nth-child(9) {
  background-color: #F7FD77;
}

.fsor-table tbody tr.header th:nth-child(3),
.fsor-table tbody tr.header td:nth-child(10) {
  background-color: #FCE979;
}

.fsor-table tbody tr.header th:nth-child(4),
.fsor-table tbody tr.header td:nth-child(11) {
  background-color: #D6FD78;
}

.fsor-table tbody tr.subtotal th:nth-child(3),
.fsor-table tbody tr.subtotal td:nth-child(3) {
  background-color: #F7FD77;
}

.fsor-table tbody tr.subtotal th:nth-child(4),
.fsor-table tbody tr.subtotal td:nth-child(4) {
  background-color: #FCE979;
}

.fsor-table tbody tr.subtotal th:nth-child(5),
.fsor-table tbody tr.subtotal td:nth-child(5),
.fsor-table tbody tr.subtotal th:nth-child(6) {
  background-color: #D6FD78;
}

/*
  CUSTOM STYLES - START
*/

.daterangepicker .calendar-table td.week,
.daterangepicker .calendar-table th.week {
  color: #5790C1 !important;
}

.hover-scale:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.week-selection .bootstrap-datetimepicker-widget tbody tr:hover {
  background-color: #e4e5e6;
}

.week-selection .bootstrap-datetimepicker-widget tbody td.cw {
  color: #337ab7;
}

.bg-highlight-yellow {
  background-color: #FFF95F;
}

.bg-dark-gray {
  background-color: #a4a8ac;
  color: #fff;
}

.bg-light-gray {
  background-color: #cecece;
}

.bg-light-red {
  background-color: #FEE2E1;
  color: #210000;
}

.bg-custom-blue {
  background-color: #01A2FF !important;
  color: #fff;
}

.bg-light-blue {
  background-color: #01A2FF !important;
  opacity: 0.5;
  color: #fff;
}

.bg-lightest-blue {
  background-color: #D8E9F6 !important;
}

.bg-orange {
  background-color: #f5c66d !important;
  color: #fff;
}

.bg-light-orange {
  background-color: #f5c66d !important;
  opacity: 0.7;
  color: #fff;
}

.bg-light-orange-without-text-color {
  background-color: #f5c66d !important;
  opacity: 0.7;
}

.bg-green {
  background-color: #9BDE89 !important;
  color: #fff;
}

.bg-inquiry {
  background-color: #7db1ff !important;
  color: #fff;
}

#single-tech .complaints-widget {
  height: 8em;
}

#single-tech .half-filled-widget {
  height: 8em;
}

#single-tech .filled-widget {
  height: 8em;
}

.avg-jobs .main-icon {
  font-size: 3.2em !important;
  padding: 0.75em !important;
}

.tech-conversions .main-icon {
  font-size: 3.2em !important;
  padding: 0.6em 0.6em 0.9em 0.6em !important;
}

#all-tech .complaints-widget,
#appraisals .complaints-widget {
  height: 68%;
}

#all-tech .half-filled-widget,
#appraisals .half-filled-widget {
  height: 6em;
}

#all-tech .half-filled-widget .main-icon,
#all-tech .half-filled-widget .main-image,
#appraisals .half-filled-widget .main-icon,
#appraisals .half-filled-widget .main-image {
  padding: 1.2em !important;
}

@media (max-width: 320px) {
  .app-header.navbar {
    height: 130px;
  }

  .main,
  .aside-menu {
    margin-top: 70px !important;
  }

  .app-body .sidebar {
    z-index: 100000;
  }
}

@media (max-width: 580px) {
  .main,
  .aside-menu {
    margin-top: 40px !important;
  }

  .app-body .sidebar {
    z-index: 100000;
  }
}

@media (min-width: 1024px) {
  #brand-form {
    width: 40%;
  }

  #dark-mode {
    right: 4% !important;
    position: absolute !important;
  }

  .left-menu-toggle {
    left: 3%;
    position: absolute !important;
  }

  #date-range {
    left: 6%;
    position: absolute !important;
  }
}

@media (max-width: 1024px) {
  #dash-logo {
    display: none;
  }

  #brand-form {
    width: 40%;
  }

  #dark-mode {
    float: left;
  }

  .aside-menu {
    margin-right: 1px !important;
  }

  .aside-menu .list-group {
    overflow: auto !important;
    height: 800px !important;
  }
}

.cursor-pointer {
  cursor: pointer;
}

#payrun-main-table tbody tr.header th:nth-child(7),
#payrun-main-table tbody tr.header td:nth-child(7) {
  background-color: #F7FD77;
}

#payrun-main-table tbody tr.header th:nth-child(8),
#payrun-main-table tbody tr.header td:nth-child(8) {
  background-color: #FCE979;
}

#payrun-main-table tbody tr.header th:nth-child(9),
#payrun-main-table tbody tr.header td:nth-child(9) {
  background-color: #D6FD78;
}

#payrun-main-table tbody tr.subtotal th:nth-child(3),
#payrun-main-table tbody tr.subtotal td:nth-child(3) {
  background-color: #F7FD77;
}

#payrun-main-table tbody tr.subtotal th:nth-child(4),
#payrun-main-table tbody tr.subtotal td:nth-child(4) {
  background-color: #FCE979;
}

#payrun-main-table tbody tr.subtotal th:nth-child(5),
#payrun-main-table tbody tr.subtotal td:nth-child(5) {
  background-color: #D6FD78;
}

.navbar-laravel {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.dataTables_filter {
  float: right;
}

.pagination {
  float: right;
}

.aside-menu {
  width: 269px !important;
}

body:not(.aside-menu-lg-show) .aside-menu {
  margin-right: -269px !important;
}

.nvtooltip {
  font-family: "Open Sans", sans-serif !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  font-weight: normal !important;
  background: rgba(255, 255, 255, 0.8);
}

.nvtooltip table strong,
.nvtooltip table td.value,
.nvtooltip table td.key.total {
  font-weight: normal;
}

.app-header span.avatar {
  color: #fff;
  margin-right: 4px;
  margin-left: 12px;
}

body:not(.dark) .app-header {
  background-color: #20a8d8 !important;
  border-bottom: #20a8d8 !important;
}

body:not(.dark) .app-header button {
  color: #fff;
}

.green-option {
  background-color: #4dbd74 !important;
  color: #fff !important;
}

.green-option .close span {
  color: #fff !important;
}

.blue-option {
  background-color: #20a8d8 !important;
  color: #fff !important;
}

.blue-option .close span {
  color: #fff !important;
}

.bg-lightest-blue {
  background-color: #E8FFFD;
}

/*
  CUSTOM STYLES - END
*/

/**
  DARK COLOR - START
*/

body.dark {
  background-color: #2f353a;
  color: #f3f4f5;
}

body.dark .app-header {
  background-color: #3a4149;
  border-bottom: 1px solid #23282c;
}

body.dark .app-header button.dark-mode {
  color: #e4e7ea;
}

body.dark .app-header button.range-btn {
  color: #fff;
}

body.dark .sidebar {
  color: #f3f4f5;
  background: #3a4149;
  border-right: 1px solid #23282c;
}

body.dark .sidebar .nav-link.active {
  color: #fff;
  background: #343b41;
}

body.dark .breadcrumb {
  border-bottom: 1px solid #23282c;
  background-color: #3a4149;
}

body.dark .aside-menu {
  color: #f3f4f5;
  background: #3a4149;
  border-left: 1px solid #23282c;
}

body.dark .aside-menu .nav-tabs .nav-link.active {
  color: #20a8d8;
  background-color: #343b41;
  border-color: #23282c #23282c #23282c;
}

body.dark .aside-menu .nav-tabs .nav-link {
  color: #e4e7ea;
}

body.dark .aside-menu .nav-tabs .nav-link:hover {
  border-color: #23282c #23282c #23282c;
}

body.dark .card {
  background-color: #3a4149;
  border: 1px solid #23282c;
}

body.dark .card .card-footer {
  background-color: #343b41;
  border-top: 1px solid #23282c;
}

body.dark .card .card-header {
  background-color: #343b41;
  border-bottom: 1px solid #23282c;
}

body.dark .form-control {
  color: #e4e7ea;
  background-color: #515b65;
  border: 1px solid #23282c;
}

body.dark .table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #23282c;
}

body.dark .table td,
body.dark .table th {
  border-top: 1px solid #23282c;
}

body.dark .table-bordered th,
body.dark .table-bordered td {
  border: 1px solid #23282c;
}

body.dark .bg-light {
  background-color: inherit !important;
}

body.dark footer {
  background: #3a4149;
  border-top: 1px solid #23282c;
  color: #e4e7ea;
}

body.dark .modal-dialog .modal-header {
  background-color: #3a4149;
  border-bottom: 1px solid #23282c;
}

body.dark .modal-dialog .modal-content {
  background-color: #2f353a;
}

body.dark .modal-dialog .modal-footer {
  background-color: #3a4149;
  border-top: 1px solid #23282c;
}

body.dark .modal-dialog .close {
  text-shadow: 0 1px 0 #3a4149 !important;
}

body.dark .daterangepicker {
  background-color: #3a4149;
  border: 1px solid #23282c;
  color: #f3f4f5;
}

body.dark .daterangepicker.show-ranges .drp-calendar.left {
  border-left: 1px solid #23282c;
}

body.dark .daterangepicker .drp-buttons {
  border-top: 1px solid #23282c;
}

body.dark .daterangepicker .calendar-table {
  border: 1px solid #23282c;
  border-radius: 4px;
  background-color: #2f353a;
}

body.dark .daterangepicker td.off {
  background-color: #2f353a;
  border-color: transparent;
  color: #f3f4f5;
}

body.dark .dropdown-menu {
  color: #e4e7ea;
  background-color: #3a4149;
  border: 1px solid #23282c;
}

body.dark .dropdown-header {
  color: #e4e7ea;
  background: #2f353a;
  border-bottom: 1px solid #23282c;
}

body.dark .dropdown-item {
  color: #e4e7ea;
  text-decoration: none;
  background-color: #3a4149;
  border-bottom: 1px solid #23282c;
}

body.dark .dropdown-item:hover {
  color: #e4e7ea;
  background-color: #2f353a;
}

body.dark .brand-card {
  background-color: #3a4149;
  border: 1px solid #23282c;
}

body.dark .darkable-table tbody tr td:not(.bg-highlight-yellow),
body.dark .darkable-table tbody tr th:not(.bg-highlight-yellow) {
  color: #fff;
}

body.dark .darkable-table thead tr th {
  color: #fff;
}

body.dark #payrun-main-table tbody tr td,
body.dark #payrun-main-table tbody tr th,
body.dark #disbursement-table tbody tr td,
body.dark #disbursement-table tbody tr th {
  color: #fff;
}

body.dark #payrun-main-table tbody tr.header th:nth-child(9),
body.dark #payrun-main-table tbody tr.header td:nth-child(9),
body.dark #disbursement-table tbody tr.header th:nth-child(9),
body.dark #disbursement-table tbody tr.header td:nth-child(9) {
  color: black;
}

body.dark #payrun-main-table tbody tr.header th:nth-child(10),
body.dark #payrun-main-table tbody tr.header td:nth-child(10),
body.dark #disbursement-table tbody tr.header th:nth-child(10),
body.dark #disbursement-table tbody tr.header td:nth-child(10) {
  color: black;
}

body.dark #payrun-main-table tbody tr.header th:nth-child(11),
body.dark #payrun-main-table tbody tr.header td:nth-child(11),
body.dark #disbursement-table tbody tr.header th:nth-child(11),
body.dark #disbursement-table tbody tr.header td:nth-child(11) {
  color: black;
}

body.dark #payrun-main-table tbody tr.subtotal th:nth-child(3),
body.dark #payrun-main-table tbody tr.subtotal td:nth-child(3),
body.dark #disbursement-table tbody tr.subtotal th:nth-child(3),
body.dark #disbursement-table tbody tr.subtotal td:nth-child(3) {
  color: black;
}

body.dark #payrun-main-table tbody tr.subtotal th:nth-child(4),
body.dark #payrun-main-table tbody tr.subtotal td:nth-child(4),
body.dark #disbursement-table tbody tr.subtotal th:nth-child(4),
body.dark #disbursement-table tbody tr.subtotal td:nth-child(4) {
  color: black;
}

body.dark #payrun-main-table tbody tr.subtotal th:nth-child(5),
body.dark #payrun-main-table tbody tr.subtotal td:nth-child(5),
body.dark #disbursement-table tbody tr.subtotal th:nth-child(5),
body.dark #disbursement-table tbody tr.subtotal td:nth-child(5) {
  color: black;
}

/**
    DARK COLOR - END
*/

/**
    START - NVD3 CHART STYLES
 */

.nvd3 .nv-axis {
  pointer-events: none;
  opacity: 1;
}

.nvd3 .nv-axis path {
  fill: none;
  stroke: #000;
  stroke-opacity: 0.75;
  shape-rendering: crispEdges;
}

.nvd3 .nv-axis path.domain {
  stroke-opacity: 0.75;
}

.nvd3 .nv-axis.nv-x path.domain {
  stroke-opacity: 0;
}

.nvd3 .nv-axis line {
  fill: none;
  stroke: #e5e5e5;
  shape-rendering: crispEdges;
}

.nvd3 .nv-axis .zero line,
.nvd3 .nv-axis line.zero {
  stroke-opacity: 0.75;
}

.nvd3 .nv-axis .nv-axisMaxMin text {
  font-weight: 700;
}

.nvd3 .x2 .nv-axis .nv-axisMaxMin text,
.nvd3 .x3 .nv-axis .nv-axisMaxMin text,
.nvd3 .x .nv-axis .nv-axisMaxMin text {
  text-anchor: middle;
}

.nvd3 .nv-axis.nv-disabled {
  opacity: 0;
}

.nvd3 .nv-bars rect {
  fill-opacity: 0.75;
  transition: fill-opacity 0.25s linear;
}

.nvd3 .nv-bars rect.hover {
  fill-opacity: 1;
}

.nvd3 .nv-bars .hover rect {
  fill: #add8e6;
}

.nvd3 .nv-bars text {
  fill: transparent;
}

.nvd3 .nv-bars .hover text {
  fill: #000;
}

.nvd3 .nv-discretebar .nv-groups rect,
.nvd3 .nv-multibar .nv-groups rect,
.nvd3 .nv-multibarHorizontal .nv-groups rect {
  stroke-opacity: 0;
  transition: fill-opacity 0.25s linear;
}

.nvd3 .nv-candlestickBar .nv-ticks rect:hover,
.nvd3 .nv-discretebar .nv-groups rect:hover,
.nvd3 .nv-multibar .nv-groups rect:hover,
.nvd3 .nv-multibarHorizontal .nv-groups rect:hover {
  fill-opacity: 1;
}

.nvd3 .nv-discretebar .nv-groups text,
.nvd3 .nv-multibarHorizontal .nv-groups text {
  font-weight: 700;
  fill: #000;
  stroke: transparent;
}

.nvd3 .nv-boxplot circle {
  fill-opacity: 0.5;
}

.nvd3 .nv-boxplot circle:hover,
.nvd3 .nv-boxplot rect:hover {
  fill-opacity: 1;
}

.nvd3 line.nv-boxplot-median {
  stroke: #000;
}

.nv-boxplot-tick:hover {
  stroke-width: 2.5px;
}

.nvd3.nv-bullet {
  font: 10px sans-serif;
}

.nvd3.nv-bullet .nv-measure {
  fill-opacity: 0.8;
}

.nvd3.nv-bullet .nv-measure:hover {
  fill-opacity: 1;
}

.nvd3.nv-bullet .nv-marker {
  stroke: #000;
  stroke-width: 2px;
}

.nvd3.nv-bullet .nv-markerTriangle {
  stroke: #000;
  fill: #fff;
  stroke-width: 1.5px;
}

.nvd3.nv-bullet .nv-markerLine {
  stroke: #000;
  stroke-width: 1.5px;
}

.nvd3.nv-bullet .nv-tick line {
  stroke: #666;
  stroke-width: 0.5px;
}

.nvd3.nv-bullet .nv-range.nv-s0 {
  fill: #eee;
}

.nvd3.nv-bullet .nv-range.nv-s1 {
  fill: #ddd;
}

.nvd3.nv-bullet .nv-range.nv-s2 {
  fill: #ccc;
}

.nvd3.nv-bullet .nv-title {
  font-size: 14px;
  font-weight: 700;
}

.nvd3.nv-bullet .nv-subtitle {
  fill: #999;
}

.nvd3.nv-bullet .nv-range {
  fill: #bababa;
  fill-opacity: 0.4;
}

.nvd3.nv-bullet .nv-range:hover {
  fill-opacity: 0.7;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick {
  stroke-width: 1px;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick.hover {
  stroke-width: 2px;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick.positive rect {
  stroke: #2ca02c;
  fill: #2ca02c;
}

.nvd3.nv-candlestickBar .nv-ticks .nv-tick.negative rect {
  stroke: #d62728;
  fill: #d62728;
}

.with-transitions .nv-candlestickBar .nv-ticks .nv-tick {
  transition: stroke-width 0.25s linear, stroke-opacity 0.25s linear;
}

.nvd3.nv-candlestickBar .nv-ticks line {
  stroke: #333;
}

.nv-force-node {
  stroke: #fff;
  stroke-width: 1.5px;
}

.nv-force-link {
  stroke: #999;
  stroke-opacity: 0.6;
}

.nv-force-node text {
  stroke-width: 0px;
}

.nvd3 .nv-check-box .nv-box {
  fill-opacity: 0;
  stroke-width: 2;
}

.nvd3 .nv-check-box .nv-check {
  fill-opacity: 0;
  stroke-width: 4;
}

.nvd3 .nv-series.nv-disabled .nv-check-box .nv-check {
  fill-opacity: 0;
  stroke-opacity: 0;
}

.nvd3 .nv-controlsWrap .nv-legend .nv-check-box .nv-check {
  opacity: 0;
}

.nvd3.nv-linePlusBar .nv-bar rect {
  fill-opacity: 0.75;
}

.nvd3.nv-linePlusBar .nv-bar rect:hover {
  fill-opacity: 1;
}

.nvd3 .nv-groups path.nv-line {
  fill: none;
}

.nvd3 .nv-groups path.nv-area {
  stroke: none;
}

.nvd3.nv-line .nvd3.nv-scatter .nv-groups .nv-point {
  fill-opacity: 0;
  stroke-opacity: 0;
}

.nvd3.nv-scatter.nv-single-point .nv-groups .nv-point {
  fill-opacity: 0.5 !important;
  stroke-opacity: 0.5 !important;
}

.with-transitions .nvd3 .nv-groups .nv-point {
  transition: stroke-width 0.25s linear, stroke-opacity 0.25s linear;
}

.nvd3 .nv-groups .nv-point.hover,
.nvd3.nv-scatter .nv-groups .nv-point.hover {
  stroke-width: 7px;
  fill-opacity: 0.95 !important;
  stroke-opacity: 0.95 !important;
}

.nvd3 .nv-point-paths path {
  stroke: #aaa;
  stroke-opacity: 0;
  fill: #eee;
  fill-opacity: 0;
}

.nvd3 .nv-indexLine {
  cursor: ew-resize;
}

svg.nvd3-svg {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 100%;
  height: 100%;
}

.nvtooltip.with-3d-shadow,
.with-3d-shadow .nvtooltip {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.nvd3 text {
  font: normal 12px Arial, sans-serif;
}

.nvd3 .title {
  font: 700 14px Arial, sans-serif;
}

.nvd3 .nv-background {
  fill: #fff;
  fill-opacity: 0;
}

.nvd3.nv-noData {
  font-size: 18px;
  font-weight: 700;
}

.nv-brush .extent {
  fill-opacity: 0.125;
  shape-rendering: crispEdges;
}

.nv-brush .resize path {
  fill: #eee;
  stroke: #666;
}

.nvd3 .nv-legend .nv-series {
  cursor: pointer;
}

.nvd3 .nv-legend .nv-disabled circle {
  fill-opacity: 0;
}

.nvd3 .nv-brush .extent {
  fill-opacity: 0 !important;
}

.nvd3 .nv-brushBackground rect {
  stroke: #000;
  stroke-width: 0.4;
  fill: #fff;
  fill-opacity: 0.7;
}

@media print {
  .nvd3 text {
    stroke-width: 0;
    fill-opacity: 1;
  }
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick {
  stroke-width: 1px;
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick.hover {
  stroke-width: 2px;
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick.positive {
  stroke: #2ca02c;
}

.nvd3.nv-ohlcBar .nv-ticks .nv-tick.negative {
  stroke: #d62728;
}

.nvd3 .background path {
  fill: none;
  stroke: #eee;
  stroke-opacity: 0.4;
  shape-rendering: crispEdges;
}

.nvd3 .foreground path {
  fill: none;
  stroke-opacity: 0.7;
}

.nvd3 .nv-parallelCoordinates-brush .extent {
  fill: #fff;
  fill-opacity: 0.6;
  stroke: gray;
  shape-rendering: crispEdges;
}

.nvd3 .nv-parallelCoordinates .hover {
  fill-opacity: 1;
  stroke-width: 3px;
}

.nvd3 .missingValuesline line {
  fill: none;
  stroke: #000;
  stroke-width: 1;
  stroke-opacity: 1;
  stroke-dasharray: 5, 5;
}

.nvd3.nv-pie path {
  stroke-opacity: 0;
  transition: fill-opacity 0.25s linear, stroke-width 0.25s linear, stroke-opacity 0.25s linear;
}

.nvd3.nv-pie .nv-pie-title {
  font-size: 24px;
  fill: rgba(19, 196, 249, 0.59);
}

.nvd3.nv-pie .nv-slice text {
  stroke: #000;
  stroke-width: 0;
}

.nvd3.nv-pie path {
  stroke: #fff;
  stroke-width: 1px;
  stroke-opacity: 1;
  fill-opacity: 0.7;
}

.nvd3.nv-pie .hover path {
  fill-opacity: 1;
}

.nvd3.nv-pie .nv-label {
  pointer-events: none;
}

.nvd3.nv-pie .nv-label rect {
  fill-opacity: 0;
  stroke-opacity: 0;
}

.nvd3 .nv-groups .nv-point.hover {
  stroke-width: 20px;
  stroke-opacity: 0.5;
}

.nvd3 .nv-scatter .nv-point.hover {
  fill-opacity: 1;
}

.nv-distx,
.nv-disty,
.nv-noninteractive {
  pointer-events: none;
}

.nvd3.nv-sparkline path {
  fill: none;
}

.nvd3.nv-sparklineplus g.nv-hoverValue {
  pointer-events: none;
}

.nvd3.nv-sparklineplus .nv-hoverValue line {
  stroke: #333;
  stroke-width: 1.5px;
}

.nvd3.nv-sparklineplus,
.nvd3.nv-sparklineplus g {
  pointer-events: all;
}

.nvd3 .nv-hoverArea {
  fill-opacity: 0;
  stroke-opacity: 0;
}

.nvd3.nv-sparklineplus .nv-xValue,
.nvd3.nv-sparklineplus .nv-yValue {
  stroke-width: 0;
  font-size: 0.9em;
  font-weight: 400;
}

.nvd3.nv-sparklineplus .nv-yValue {
  stroke: #f66;
}

.nvd3.nv-sparklineplus .nv-maxValue {
  stroke: #2ca02c;
  fill: #2ca02c;
}

.nvd3.nv-sparklineplus .nv-minValue {
  stroke: #d62728;
  fill: #d62728;
}

.nvd3.nv-sparklineplus .nv-currentValue {
  font-weight: 700;
  font-size: 1.1em;
}

.nvd3.nv-stackedarea path.nv-area {
  fill-opacity: 0.7;
  stroke-opacity: 0;
  transition: fill-opacity 0.25s linear, stroke-opacity 0.25s linear;
}

.nvd3.nv-stackedarea path.nv-area.hover {
  fill-opacity: 0.9;
}

.nvd3.nv-stackedarea .nv-groups .nv-point {
  stroke-opacity: 0;
  fill-opacity: 0;
}

.nvtooltip {
  position: absolute;
  background-color: #fff;
  color: #000;
  padding: 1px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  z-index: 10000;
  display: block;
  font-family: Arial, sans-serif;
  font-size: 13px;
  text-align: left;
  pointer-events: none;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: hsla(0, 0%, 100%, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}

.nvtooltip.with-transitions,
.with-transitions .nvtooltip {
  transition: opacity 50ms linear;
  transition-delay: 0.2s;
}

.nvtooltip.x-nvtooltip,
.nvtooltip.y-nvtooltip {
  padding: 8px;
}

.nvtooltip h3 {
  margin: 0;
  padding: 4px 14px;
  line-height: 18px;
  font-weight: 400;
  background-color: hsla(0, 0%, 97%, 0.75);
  color: #000;
  text-align: center;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}

.nvtooltip p {
  margin: 0;
  padding: 5px 14px;
  text-align: center;
}

.nvtooltip span {
  display: inline-block;
  margin: 2px 0;
}

.nvtooltip table {
  margin: 6px;
  border-spacing: 0;
}

.nvtooltip table td {
  padding: 2px 9px 2px 0;
  vertical-align: middle;
}

.nvtooltip table td.key {
  font-weight: 400;
}

.nvtooltip table td.key.total {
  font-weight: 700;
}

.nvtooltip table td.value {
  text-align: right;
  font-weight: 700;
}

.nvtooltip table td.percent {
  color: #a9a9a9;
}

.nvtooltip table tr.highlight td {
  padding: 1px 9px 1px 0;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-top-width: 1px;
}

.nvtooltip table td.legend-color-guide div {
  width: 8px;
  height: 8px;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  border: 1px solid #999;
}

.nvtooltip .footer {
  padding: 3px;
  text-align: center;
}

.nvtooltip-pending-removal {
  pointer-events: none;
  display: none;
}

.nvd3 .nv-interactiveGuideLine {
  pointer-events: none;
}

.nvd3 line.nv-guideline {
  stroke: #ccc;
}

/**
    END - NVD3 CHART STYLES
 */

/*
    CUSTOM - STYLES
 */

.bg-coral-blue {
  background-color: #20a8d8;
}

.text-coral-blue {
  color: #20a8d8;
}

.text-star {
  color: #FFCF54;
}

.bg-light-cyan {
  background-color: #E9FEFA;
}

.bg-light-green {
  background-color: #E4F6DA;
}

.bg-light-red {
  background-color: #F8DDDB;
}

.overlay {
  position: inherit;
  /* Sit on top of the page content */
  display: block;
  /* Hidden by default */
  background-color: rgba(200, 200, 200, 0.1);
  /* Black background with opacity */
  z-index: 2;
  /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer;
  /* Add a pointer on hover */
  color: #CCCCCC;
}

.c-app:not(.c-dark-theme) table.service_numbers .bg-light {
  color: #3c4b64 !important;
}

.bolt-app-switcher li .dropdown-item {
  display: block;
}

