/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/*
    Created on : Feb 11, 2020, 1:58:48 PM
    Author     : png
*/
/* Media Definitions */
@media screen and (max-width: 575px) {
  .main_title {
    font-size: 20px;
  }
  .main_title .sub_title {
    font-size: 16px;
  }
}
@media screen and (min-width: 576px) {
  .main_title {
    font-size: 30px;
  }
  .main_title .sub_title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .main_title {
    font-size: 20px;
  }
  .main_title .sub_title {
    font-size: 16px;
  }
  .vis_ctrl_group .vis_nav_icon_lbl {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .main_title {
    font-size: 40px;
  }
  .main_title .sub_title {
    font-size: 32px;
  }
  .vis_ctrl_group .vis_nav_icon_lbl {
    display: inline;
  }
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
  overflow-x: auto;
  overflow-y: auto;
}

/* Bootstrap-defined Device Sizes
Extra small (portrait phones): < 576px
Small (landscape phones): 576px
Medium (tablets): 768px
Large (desktops): 992px
Extra large (large desktops): 1200px
*/
/* Bootstrap Overrides */
.text-primary {
  color: #094074 !important;
}

.bg-highlight {
  background-color: #f2d1bc !important;
}

.bg-primary {
  background-color: #729cc7 !important;
}

.bg-highlight-contrast {
  background-color: #F9E2B6 !important;
}

label.btn-primary {
  background-color: rgb(176, 196, 224);
  color: white;
  border: none;
  box-shadow: none;
}
label.btn-primary:hover {
  background-color: rgb(193, 199, 209);
}
label.btn-primary.active {
  background-color: rgb(117, 146, 190) !important;
  font-weight: bold;
}
label.btn-primary.active:hover {
  background-color: rgb(193, 199, 209);
}

.rbtn_grp label.btn {
  background-color: transparent;
}

/* Navigation bar - main */
.main_navbar {
  background-color: #00264C !important;
}
.main_navbar a:hover {
  font-weight: bold;
}
.main_navbar ul .dropdown-menu {
  background-color: #00264C !important;
}

.navbar-dark {
  color: white !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #E29666;
}

.nav-item {
  border-bottom: 3px solid transparent;
}
.nav-item.active {
  opacity: 1;
  border-bottom-color: #E29666;
  background-color: rgba(255, 255, 255, 0.36);
}

.dropdown-menu a.dropdown-item {
  color: white;
}
.dropdown-menu a.dropdown-item:hover {
  color: #E29666;
  background-color: transparent;
}
.dropdown-menu a.dropdown-item:active, .dropdown-menu a.dropdown-item.active {
  background-color: rgba(255, 255, 255, 0.36);
  border-bottom-color: #E29666;
}

/* Custom controls */
.spinner-border {
  color: rgb(117, 146, 190);
  transition: 0.3s transform ease-in-out;
}

.custom-select {
  height: 25px;
  color: black;
  background-color: rgb(117, 146, 190);
  border: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='white' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
  /*
  height: 25px;
  color: black;
  background-color: $color_fill;
  border: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='white' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");

  &:hover {
      color: black;
      background-color: $color_hover;
      font-weight: bold;
      cursor: pointer;
  }

  &:active, &:focus {
      border: none;
      box-shadow: none;
  }

  option {
      color: $color_fill;
      background-color: black;
  }
  */
}
.custom-select:hover {
  color: black;
  background-color: rgb(193, 199, 209);
  cursor: pointer;
}
.custom-select:active, .custom-select:focus {
  border: none;
  box-shadow: none;
}
.custom-select option {
  color: rgb(117, 146, 190);
  background-color: black;
}

.custom-checkbox .custom-control-label:before {
  background-color: white;
}
.custom-checkbox .custom-control-label:hover {
  color: rgb(193, 199, 209);
  cursor: pointer;
}
.custom-checkbox .custom-control-input:hover ~ .custom-control-label::before {
  border-color: #6082b4;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: rgb(117, 146, 190);
  border-color: #6082b4;
}
.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
  border-color: #6082b4;
}
.custom-checkbox .custom-control-input:active ~ .custom-control-label::before {
  border-color: #6082b4;
}
.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}

.custom-radio label {
  padding-top: 3px;
  color: black;
}
.custom-radio label.inverse {
  color: white;
}
.custom-radio .custom-control-label:before {
  color: rgb(176, 196, 224);
  background-color: white;
}
.custom-radio .custom-control-label:hover {
  color: rgb(193, 199, 209);
  cursor: pointer;
}
.custom-radio .custom-control-input:hover ~ .custom-control-label::before {
  border-color: #6082b4;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: rgb(117, 146, 190);
  border-color: #6082b4;
}
.custom-radio .custom-control-input:focus ~ .custom-control-label::before {
  border-color: #6082b4;
}
.custom-radio .custom-control-input:active ~ .custom-control-label::before {
  border-color: #6082b4;
}
.custom-radio .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}

.custom-accordion .card {
  background: white;
  border-radius: 0.15;
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  border: none;
}
.custom-accordion .card-header {
  border: none;
  background: transparent;
  padding: 1px 0;
  margin: 0;
}
.custom-accordion .fa-stack {
  font-size: 12px;
}
.custom-accordion .fa-transparent {
  color: transparent;
}
.custom-accordion .btn-link {
  width: 100%;
  color: black;
  background-color: rgba(156, 202, 222, 0.6);
  padding: 0;
  padding-left: 5px;
  border-radius: 0;
}
.custom-accordion .btn-link.btn-link-lighter {
  background-color: white;
}
.custom-accordion .btn-link:hover, .custom-accordion .btn-link:focus {
  text-decoration: none;
}
.custom-accordion .card-body {
  background-color: transparent;
  border-left: 1px solid rgb(224, 224, 224);
  border-right: 1px solid rgb(224, 224, 224);
  border-bottom: 1px solid rgb(224, 224, 224);
}
.custom-accordion .card-body.card-body-color {
  color: rgb(117, 146, 190);
}
.custom-accordion .card-body.card-body-color-inverse {
  color: white;
}

.toggle_switch {
  font-style: italic;
  /* Basic Rules */
  /* The handle */
}
.toggle_switch label:hover {
  cursor: pointer;
}
.toggle_switch .switch input {
  display: none;
}
.toggle_switch .switch {
  display: inline-block;
  width: 30px;
  height: 15px;
  margin: 8px;
  transform: translateY(75%);
  position: relative;
}
.toggle_switch .slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 16px;
  box-shadow: 0 0 0 2px #777, 0 0 4px #777;
  /*cursor:pointer;*/
  border: 1px solid transparent;
  overflow: hidden;
  transition: 0.4s;
  background: white;
}
.toggle_switch .slider:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(193, 199, 209);
  border-radius: 16px;
  transform: translateX(-16px);
  transition: 0.4s;
}
.toggle_switch input:checked + .slider:before {
  transform: translateX(16px);
  background: rgb(117, 146, 190);
}
.toggle_switch input:checked + .slider {
  box-shadow: 0 0 0 2px rgb(117, 146, 190), 0 0 2px rgb(117, 146, 190);
}

.disabled {
  pointer-events: none;
  opacity: 0.4;
}

.sticky_top {
  background-color: black;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  z-index: 9999;
}

.tooltip.show {
  opacity: 0.8 !important;
}

.carousel_image {
  width: 100%;
  height: 400px;
}

.main_title {
  font-weight: 300;
}

.sub_title {
  color: black;
  font-size: 1.5rem;
  font-weight: 300;
}

.fa-angle-down-animated {
  animation-name: collapse-icon-animation;
  animation-duration: 0.15s;
  animation-direction: normal;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.fa-angle-up-animated {
  animation-name: collapse-icon-animation-reverse;
  animation-duration: 0.25s;
  animation-direction: normal;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes collapse-icon-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes collapse-icon-animation-reverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.text-highlight {
  color: #E29666;
}

.modal-header {
  background-color: #3C6997;
  color: white;
}
.modal-header .close {
  color: white;
}

.modal-title {
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: bold;
  letter-spacing: 0.01em;
}

.modal-footer .btn {
  background-color: #094074;
}

.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

.material-icons.md-64 {
  font-size: 64px;
}

.fa-circle-background {
  background: white;
  border-radius: 50%;
}

/* Rules for using icons as black on a light background. */
.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54);
}

.material-icons.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}

/* Rules for using icons as white on a dark background. */
.material-icons.md-light {
  color: rgb(255, 255, 255);
}

.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}

/*
$color_gwd_n111: #253494;
$color_gwd_0: #2c7fb8;
$color_gwd_1: #41b6c4;
$color_gwd_102: #a1dab4;
$color_gwd_205: #ffffcc;
*/
body {
  overflow-x: auto;
  overflow-y: auto;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
}
body::-webkit-scrollbar {
  width: 8px;
  display: none;
  /*box-shadow: inset 0 0 5px grey;*/
}
body::-webkit-scrollbar-track {
  background: rgb(193, 199, 209);
  border-radius: 4px;
}
body::-webkit-scrollbar-thumb {
  background: rgb(117, 146, 190);
  border-radius: 4px;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: #6082b4;
}

/* Bootstrap tooltip styling */
.tooltip.show {
  opacity: 0.9 !important;
}

.tooltip-inner {
  font-size: 0.8rem;
  color: #fff;
  background-color: #E29666 !important;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^=top] .arrow::before {
  border-top-color: #E29666 !important;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  border-bottom-color: #E29666 !important;
}

/* Bootstrap Popover */
.popover {
  background-color: #E29666;
}
.popover.bs-popover-right .arrow::after {
  border-right-color: #E29666 !important;
}
.popover.bs-popover-left .arrow::after {
  border-left-color: #E29666 !important;
}
.popover.bs-popover-top .arrow::after {
  border-top-color: #E29666 !important;
}
.popover.bs-popover-bottom .arrow::after {
  border-bottom-color: #E29666 !important;
}

.popover-header {
  font-size: 12px;
}

.popover-body {
  color: white;
  font-size: 12px;
}
.popover-body span.shape-gwd-n111 {
  color: #253494;
}
.popover-body span.shape-gwd-0 {
  color: #41b6c4;
}
.popover-body span.shape-gwd-1 {
  color: #f8ef94;
}
.popover-body span.shape-gwd-102 {
  color: #efd27f;
}
.popover-body span.shape-gwd-205 {
  color: #bba07b;
}
.popover-body span.shape-slr-0 {
  color: #253494;
}
.popover-body span.shape-slr-25 {
  color: #253494;
}
.popover-body span.shape-slr-50 {
  color: #253494;
}
.popover-body span.shape-slr-75 {
  color: #253494;
}
.popover-body span.shape-slr-100 {
  color: #253494;
}
.popover-body span.shape-slr-150 {
  color: #253494;
}
.popover-body span.shape-slr-200 {
  color: #253494;
}
.popover-body span.shape-slr-300 {
  color: #253494;
}

#dashboardNav {
  border-bottom: solid 1px gray;
}
#dashboardNav button.btn.btn-link {
  color: #E29666;
  padding: 0;
}
#dashboardNav .dropdown-menu {
  background-color: #00264C !important;
}
#dashboardNav .dropdown-item {
  color: white !important;
}
#dashboardNav .dropdown-item:hover {
  color: #E29666 !important;
}
#dashboardNav .toggle-button .btn-group-xs > .btn, #dashboardNav .toggle-button .btn-xs {
  padding: 0.45rem 1.6rem 0.15rem 0.4rem;
  font-size: 0.8rem;
  line-height: 0.5;
  border-radius: 20rem;
}
#dashboardNav .toggle-button .btn-primary {
  color: #fff !important;
  background: rgb(117, 146, 190) !important;
  border-color: gray !important;
}
#dashboardNav .toggle-button .btn-primary.scale_type {
  height: 10px !important;
  width: 7rem !important;
}
#dashboardNav .toggle-button .btn-primary:hover {
  background: #E29666 !important;
}
#dashboardNav .toggle-button .btn-primary .toggle-handle {
  border-radius: 20rem;
}

.custom-control-label {
  font-size: 0.8rem;
}
.custom-control-label:hover {
  color: #E29666 !important;
}

.nav-item {
  border: none;
}
.nav-item a.nav-link {
  color: black;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-item a.nav-link:hover {
  color: #6082b4;
}
.nav-item a.nav-link:active, .nav-item a.nav-link.active {
  color: #094074;
  background-color: white;
  border-bottom: solid 2px black;
  font-weight: 700;
  border-radius: 0;
}

/* My Custom Paginator */
.paginator .paginatorNavLeft {
  display: inline-block;
  font-weight: 300;
}
.paginator .paginatorNavRight {
  display: inline-block;
  font-weight: 300;
}
.paginator .paginatorTitle {
  display: inline-block;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  margin: 0;
  padding: 0;
}
.paginator .paginatorCounter {
  color: grey;
  display: inline-block;
  font-weight: 300;
  text-align: center;
  margin: 0;
  padding: 0;
}
.paginator button {
  color: black;
  text-decoration: none;
  /*
  &:hover {
      color: $color_fill_darker_10;
      font-weight: bold;
  }
  */
}

/* Bootpag Overrides */
.page-item {
  font-size: 0.75em;
}

.page-item .page-link {
  color: rgb(117, 146, 190);
}

.page-item.active .page-link {
  color: white;
  background-color: rgb(117, 146, 190);
  border-color: #6082b4;
}

.page-link:focus, .page-link:hover {
  color: white;
  text-decoration: none;
  background-color: rgb(193, 199, 209);
  border-color: rgb(193, 199, 209);
}

/* d3.js Charting */
.disclaimer {
  font-size: 0.8rem;
}

.fuel_gauge svg path.arc_gauge {
  stroke: lightgray;
  fill: lightgray;
}
.fuel_gauge svg path.arc-indicator {
  stroke: #3C6997;
  fill: #3C6997;
}
.fuel_gauge svg path.arc-indicator-n111 {
  stroke: #253494;
  fill: #253494;
}
.fuel_gauge svg path.arc-indicator-0 {
  stroke: #41b6c4;
  fill: #41b6c4;
}
.fuel_gauge svg path.arc-indicator-1 {
  stroke: #f8ef94;
  fill: #f8ef94;
}
.fuel_gauge svg path.arc-indicator-102 {
  stroke: #efd27f;
  fill: #efd27f;
}
.fuel_gauge svg path.arc-indicator-205 {
  stroke: #bba07b;
  fill: #bba07b;
}
.fuel_gauge svg rect.bounding_rect {
  fill: rgba(255, 255, 255, 0);
}
.fuel_gauge svg text.label {
  fill: black;
  font-size: 10px;
}
.fuel_gauge svg tspan {
  font-size: 12px;
}
.fuel_gauge svg tspan.label {
  fill: black;
  font-size: 10px;
}
.fuel_gauge svg tspan.shape-gwd-n111 {
  fill: #253494;
}
.fuel_gauge svg tspan.shape-gwd-0 {
  fill: #41b6c4;
}
.fuel_gauge svg tspan.shape-gwd-1 {
  fill: #f8ef94;
}
.fuel_gauge svg tspan.shape-gwd-102 {
  fill: #efd27f;
}
.fuel_gauge svg tspan.shape-gwd-205 {
  fill: #bba07b;
}
.fuel_gauge .chart_legend span.label {
  font-size: 11px;
  color: black;
}
.fuel_gauge .chart_legend span {
  font-size: 18px;
}
.fuel_gauge .chart_legend span.shape-gwd-n111 {
  color: #253494;
}
.fuel_gauge .chart_legend span.shape-gwd-0 {
  color: #41b6c4;
}
.fuel_gauge .chart_legend span.shape-gwd-1 {
  color: #f8ef94;
}
.fuel_gauge .chart_legend span.shape-gwd-102 {
  color: #efd27f;
}
.fuel_gauge .chart_legend span.shape-gwd-205 {
  color: #bba07b;
}
.fuel_gauge .chart_main_title {
  font-size: 0.9em;
  color: black;
}
.fuel_gauge .chart_sub_title {
  font-size: 0.77em;
  color: black;
}

.vert_bar_chart svg .axis path, .vert_bar_chart svg .axis line {
  fill: none;
  stroke: none;
}
.vert_bar_chart svg .axis text {
  fill: black;
  font-size: 10px;
}
.vert_bar_chart svg rect.bounding_rect {
  fill: rgba(255, 255, 255, 0);
}
.vert_bar_chart svg rect.bar {
  fill: #dde9f7;
}
.vert_bar_chart svg rect.bar.current {
  fill: #3C6997;
}
.vert_bar_chart svg rect.popover {
  fill: transparent;
}
.vert_bar_chart svg g.bar-gwd-n111 {
  fill: #253494;
}
.vert_bar_chart svg g.bar-gwd-0 {
  fill: #41b6c4;
}
.vert_bar_chart svg g.bar-gwd-1 {
  fill: #f8ef94;
}
.vert_bar_chart svg g.bar-gwd-102 {
  fill: #efd27f;
}
.vert_bar_chart svg g.bar-gwd-205 {
  fill: #bba07b;
}
.vert_bar_chart svg g.bar-slr-0 {
  fill: #253494;
}
.vert_bar_chart svg g.bar-slr-25 {
  fill: #253494;
}
.vert_bar_chart svg g.bar-slr-50 {
  fill: #253494;
}
.vert_bar_chart svg g.bar-slr-75 {
  fill: #253494;
}
.vert_bar_chart svg g.bar-slr-100 {
  fill: #253494;
}
.vert_bar_chart svg g.bar-slr-150 {
  fill: #253494;
}
.vert_bar_chart svg g.bar-slr-200 {
  fill: #253494;
}
.vert_bar_chart svg g.bar-slr-300 {
  fill: #253494;
}
.vert_bar_chart svg text.label {
  /*fill: $color_tint2;*/
  fill: black;
  font-size: 10px;
  /*font-weight:bolder;*/
  text-anchor: middle;
}
.vert_bar_chart .chart_legend span.label {
  font-size: 11px;
  color: black;
}
.vert_bar_chart .chart_legend span {
  font-size: 18px;
}
.vert_bar_chart .chart_legend span.shape-gwd-n111 {
  color: #253494;
}
.vert_bar_chart .chart_legend span.shape-gwd-0 {
  color: #41b6c4;
}
.vert_bar_chart .chart_legend span.shape-gwd-1 {
  color: #f8ef94;
}
.vert_bar_chart .chart_legend span.shape-gwd-102 {
  color: #efd27f;
}
.vert_bar_chart .chart_legend span.shape-gwd-205 {
  color: #bba07b;
}
.vert_bar_chart .chart_legend span.shape-slr-0 {
  color: #253494;
}
.vert_bar_chart .chart_legend span.shape-slr-25 {
  color: #253494;
}
.vert_bar_chart .chart_legend span.shape-slr-50 {
  color: #253494;
}
.vert_bar_chart .chart_legend span.shape-slr-75 {
  color: #253494;
}
.vert_bar_chart .chart_legend span.shape-slr-100 {
  color: #253494;
}
.vert_bar_chart .chart_legend span.shape-slr-150 {
  color: #253494;
}
.vert_bar_chart .chart_legend span.shape-slr-200 {
  color: #253494;
}
.vert_bar_chart .chart_legend span.shape-slr-300 {
  color: #253494;
}
.vert_bar_chart .chart_main_title {
  font-size: 0.9em;
  color: black;
}
.vert_bar_chart .chart_sub_title {
  font-size: 0.77em;
  color: black;
}

.hort_bar_chart .svg_wrapper {
  height: 50vh;
  overflow-x: auto;
  overflow-y: auto;
}
.hort_bar_chart .svg_wrapper::-webkit-scrollbar {
  width: 8px;
  display: inline;
  /*box-shadow: inset 0 0 5px grey;*/
}
.hort_bar_chart .svg_wrapper::-webkit-scrollbar-track {
  background: rgb(193, 199, 209);
  border-radius: 4px;
}
.hort_bar_chart .svg_wrapper::-webkit-scrollbar-thumb {
  background: rgb(117, 146, 190);
  border-radius: 4px;
}
.hort_bar_chart .svg_wrapper::-webkit-scrollbar-thumb:hover {
  background-color: #6082b4;
}
.hort_bar_chart svg .axis path, .hort_bar_chart svg .axis line {
  fill: none;
  /*stroke: black;*/
  stroke: none;
}
.hort_bar_chart svg .axis text {
  fill: black;
  font-size: 12px;
}
.hort_bar_chart svg .axis text:hover {
  cursor: default;
  stroke: #E29666;
  stroke-width: 0.25px;
}
.hort_bar_chart svg rect.bounding_rect {
  fill: rgba(255, 255, 255, 0);
}
.hort_bar_chart svg rect.bar {
  fill: #3C6997;
}
.hort_bar_chart svg rect.shadow_bar {
  fill: lightgray;
}
.hort_bar_chart svg rect.popover {
  fill: transparent;
}
.hort_bar_chart svg g.bar-gwd-n111 {
  fill: #253494;
}
.hort_bar_chart svg g.bar-gwd-0 {
  fill: #41b6c4;
}
.hort_bar_chart svg g.bar-gwd-1 {
  fill: #f8ef94;
}
.hort_bar_chart svg g.bar-gwd-102 {
  fill: #efd27f;
}
.hort_bar_chart svg g.bar-gwd-205 {
  fill: #bba07b;
}
.hort_bar_chart svg text.label {
  fill: black;
  font-size: 10px;
  text-anchor: middle;
}
.hort_bar_chart .chart_legend span.label {
  font-size: 11px;
  color: black;
}
.hort_bar_chart .chart_legend span {
  font-size: 18px;
}
.hort_bar_chart .chart_legend span.shape-gwd-n111 {
  color: #253494;
}
.hort_bar_chart .chart_legend span.shape-gwd-0 {
  color: #41b6c4;
}
.hort_bar_chart .chart_legend span.shape-gwd-1 {
  color: #f8ef94;
}
.hort_bar_chart .chart_legend span.shape-gwd-102 {
  color: #efd27f;
}
.hort_bar_chart .chart_legend span.shape-gwd-205 {
  color: #bba07b;
}
.hort_bar_chart .chart_main_title {
  font-size: 0.9em;
  color: black;
}
.hort_bar_chart .chart_sub_title {
  font-size: 0.77em;
  color: black;
}

.data_table {
  font-size: 0.8rem;
}
.data_table .dropdown-menu {
  background-color: #00264C !important;
}
.data_table .dropdown-item {
  color: white !important;
  padding-left: 1em;
  padding-top: 0;
  padding-bottom: 0;
}
.data_table .dropdown-item:hover {
  color: #E29666 !important;
}
.data_table button.btn.btn-link {
  color: #E29666;
  padding: 0;
  padding-bottom: 5px;
}
.data_table table.dataTable {
  /*
  // DataTables RowGroup Extension Styles
  tr.dtrg-group td{
      background-color:#e0e0e0;
  }

  tr.dtrg-group.dtrg-level-0 td {
     font-weight:normal;
  }

  tr.dtrg-group.dtrg-level-1 td, tr.dtrg-group.dtrg-level-2 td{
      background-color:#f0f0f0;
      padding-top:0.25em;
      padding-bottom:0.25em;
      padding-left:2em;
      font-size:0.9em
  }

  tr.dtrg-group.dtrg-level-2 td {
      background-color:#f3f3f3
  }
  */
}
.data_table table.dataTable thead, .data_table table.dataTable th {
  color: white;
  background-color: #3C6997;
  font-weight: normal;
  white-space: nowrap;
  border-bottom: none;
}
.data_table table.dataTable thead:hover, .data_table table.dataTable th:hover {
  cursor: default;
  color: #E29666;
}
.data_table table.dataTable thead tr > .dtfc-fixed-start,
.data_table table.dataTable thead tr > .dtfc-fixed-end,
.data_table table.dataTable tfoot tr > .dtfc-fixed-start,
.data_table table.dataTable tfoot tr > .dtfc-fixed-end {
  color: white;
  font-weight: normal;
  background-color: #3C6997;
  border-bottom: none;
}
.data_table table.dataTable thead tr > .dtfc-fixed-start:hover,
.data_table table.dataTable thead tr > .dtfc-fixed-end:hover,
.data_table table.dataTable tfoot tr > .dtfc-fixed-start:hover,
.data_table table.dataTable tfoot tr > .dtfc-fixed-end:hover {
  cursor: default;
  color: #E29666;
}
.data_table table.dataTable tr.group,
.data_table table.dataTable tr.group:hover {
  background-color: lightgray;
  font-size: 14px;
}
.data_table table.dataTable td {
  font-weight: normal;
  white-space: nowrap;
}

.vis_nav_icon_lbl {
  font-size: 14px;
}

.tab-content {
  height: 80% !important;
}

.btn-outline-primary {
  border-color: gray !important;
}

.btn-outline-primary.active {
  background-color: rgba(156, 202, 222, 0.7) !important;
  color: #444444 !important;
}

.btn-outline-primary:hover {
  background-color: #E29666 !important;
  color: #444444 !important;
}

div.dashboard_alert {
  font-size: 0.8rem;
}

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