/* 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);
}

/* Space out content a bit */
body {
  /*-ms-overflow-style: scrollbar !important;*/
  font-family: "Open Sans", sans-serif;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  overflow: auto;
}

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

.app {
  height: 90vh;
}

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

/* 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;
  }
}
.title_text {
  font-family: "Open Sans Condensed", sans-serif;
  font-weight: bold;
  letter-spacing: 0.01em;
}

.btn-sm {
  font-size: 0.75rem;
}

/* FA custom icons */
.fa-cx {
  font-size: 18px;
}

/* Modal styling */
.accordion > .card .card-header {
  background-color: #9CCADE;
}
.accordion > .card .card-header h5 {
  font-weight: 600;
}

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

.jstree-default > .jstree-container-ul > .jstree-node,
.jstree-default > .jstree-no-dots .jstree-node {
  margin-top: -0.2em;
  margin-bottom: -0.3em;
}

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

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

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

.app_title {
  display: block;
  color: white;
  background-color: #c55a11;
}

.main_title {
  font-weight: 300;
}

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

.wrapper {
  min-height: 85vh;
}

.show_hide_query_pnl_2 {
  position: absolute;
  top: calc(50% - 60px);
  z-index: 99;
}
.show_hide_query_pnl_2 a {
  width: 13px;
  height: 60px;
  padding: 0;
  padding-top: 18px; /*(a.height/2) - (.fas.font-size/2) - nudge of 2px*/
}
.show_hide_query_pnl_2 .fas {
  font-size: 20px;
  color: white;
  transition: 0.3s transform ease-in-out;
}
.show_hide_query_pnl_2 .collapsed .fas {
  transform: rotate(180deg);
}
.show_hide_query_pnl_2 > span > .btn {
  border-radius: 0;
  background-color: #094074 !important;
}
.show_hide_query_pnl_2 > span > .btn:hover {
  background-color: #E29666 !important;
}

.collapse.show {
  visibility: visible;
}

.collapsing {
  visibility: visible;
  height: 0;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.collapsing.width {
  -webkit-transition-property: width, visibility;
  transition-property: width, visibility;
  width: 0;
  height: 100%;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.subheader {
  background-color: rgba(156, 202, 222, 0.6);
  color: black !important;
  font-size: 0.9rem !important;
  text-align: center;
}

.location_pnl {
  font-size: 14px;
}

.toggleMapViewer {
  text-decoration: underline !important;
}
.toggleMapViewer:hover {
  color: #E29666 !important;
  cursor: pointer;
}

.text-link {
  color: #E29666 !important;
  text-decoration: underline !important;
}
.text-link:hover {
  color: #3C6997 !important;
}

.text-highlight {
  color: #E29666 !important;
}

.asset-btn {
  font-size: 0.9rem;
  background-color: #9CCADE;
}

.sub-asset-btn {
  font-size: 0.9rem;
  background-color: rgb(245, 245, 245);
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.query_pnl {
  overflow: auto;
  color: white;
  background-color: white;
  border-right-color: #094074 !important;
  border-right-width: 4px !important;
}
.query_pnl::-webkit-scrollbar {
  width: 8px;
  display: none;
  /*box-shadow: inset 0 0 5px grey;*/
}
.query_pnl::-webkit-scrollbar-track {
  background: rgb(193, 199, 209);
  border-radius: 4px;
}
.query_pnl::-webkit-scrollbar-thumb {
  background: rgb(117, 146, 190);
  border-radius: 4px;
}
.query_pnl::-webkit-scrollbar-thumb:hover {
  background-color: #6082b4;
}
.query_pnl .grp_title_pnl {
  color: black;
  background-color: #3C6997;
}
.query_pnl .grp_title_label {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  margin-left: 1rem;
}
.query_pnl .grp_title_label.inverse {
  color: black;
}
.query_pnl .grp_subtitle_label {
  color: white;
  font-weight: 300;
  font-size: 0.8rem;
}
.query_pnl .grp_subtitle_label.inverse {
  color: black;
}
.query_pnl .info, .query_pnl .query_pnl_label:hover {
  cursor: pointer;
}
.query_pnl .custom-scrollbar-hover {
  height: 85vh;
  overflow: overlay;
  padding: 0;
  visibility: hidden;
}
.query_pnl .custom-scrollbar-hover::-webkit-scrollbar {
  width: 8px;
  display: none;
  /*box-shadow: inset 0 0 5px grey;*/
}
.query_pnl .custom-scrollbar-hover::-webkit-scrollbar-track {
  background: rgb(193, 199, 209);
  border-radius: 4px;
}
.query_pnl .custom-scrollbar-hover::-webkit-scrollbar-thumb {
  background: rgb(117, 146, 190);
  border-radius: 4px;
}
.query_pnl .custom-scrollbar-hover::-webkit-scrollbar-thumb:hover {
  background-color: #6082b4;
}
.query_pnl .custom-scrollbar-hover::-webkit-scrollbar-track, .query_pnl .custom-scrollbar-hover::-webkit-scrollbar-thumb {
  border-radius: 0;
}
.query_pnl .custom-scrollbar-hover .scrollbar-content {
  visibility: visible;
  padding-bottom: 65px;
}
.query_pnl .custom-scrollbar-hover:hover, .query_pnl .custom-scrollbar-hover:focus {
  visibility: visible;
}
.query_pnl .custom-scrollbar-hover:hover::-webkit-scrollbar, .query_pnl .custom-scrollbar-hover:focus::-webkit-scrollbar {
  display: inline;
}
.query_pnl .location_grp .location_pnl .location_pnl_header {
  /*background-color: $color_fill;*/
}
.query_pnl .location_grp .location_pnl .location_pnl_header .btn.btn-link {
  color: #3C6997;
}
.query_pnl .location_grp .location_pnl .location_pnl_body {
  color: black;
  height: 150px;
  overflow-x: auto;
  overflow-y: auto;
}
.query_pnl .location_grp .location_pnl .location_pnl_body::-webkit-scrollbar {
  width: 8px;
  display: inline;
  /*box-shadow: inset 0 0 5px grey;*/
}
.query_pnl .location_grp .location_pnl .location_pnl_body::-webkit-scrollbar-track {
  background: rgb(193, 199, 209);
  border-radius: 4px;
}
.query_pnl .location_grp .location_pnl .location_pnl_body::-webkit-scrollbar-thumb {
  background: rgb(117, 146, 190);
  border-radius: 4px;
}
.query_pnl .location_grp .location_pnl .location_pnl_body::-webkit-scrollbar-thumb:hover {
  background-color: #6082b4;
}
.query_pnl .location_grp .location_pnl .location_pnl_body .jstree-context {
  background: white;
}
.query_pnl #accordionAssets::-webkit-scrollbar {
  width: 8px;
  display: inline;
  /*box-shadow: inset 0 0 5px grey;*/
}
.query_pnl #accordionAssets::-webkit-scrollbar-track {
  background: rgb(193, 199, 209);
  border-radius: 4px;
}
.query_pnl #accordionAssets::-webkit-scrollbar-thumb {
  background: rgb(117, 146, 190);
  border-radius: 4px;
}
.query_pnl #accordionAssets::-webkit-scrollbar-thumb:hover {
  background-color: #6082b4;
}
.query_pnl .hazard_grp label input[type=radio] {
  display: none;
}
.query_pnl .hazard_grp label.btn {
  color: black;
}
.query_pnl .hazard_grp label.btn:hover {
  color: rgb(193, 199, 209);
}
.query_pnl .hazard_grp label.btn:active, .query_pnl .hazard_grp label.btn.active {
  color: rgb(117, 146, 190);
}
.query_pnl .hazard_grp .btn-grp-ss .btn-sm, .query_pnl .hazard_grp .btn-grp-slr .btn-sm {
  font-size: 0.75rem;
  height: 24px;
  padding-top: 2px;
}
.query_pnl .hazard_grp .btn-grp-ss .btn-outline-primary, .query_pnl .hazard_grp .btn-grp-slr .btn-outline-primary {
  border-color: gray;
}
.query_pnl .hazard_grp .btn-grp-ss .btn-outline-primary.active, .query_pnl .hazard_grp .btn-grp-slr .btn-outline-primary.active {
  color: white !important;
  background-color: rgb(117, 146, 190) !important;
  border-color: gray;
}
.query_pnl .hazard_grp .btn-grp-ss .btn-outline-primary:hover, .query_pnl .hazard_grp .btn-grp-slr .btn-outline-primary:hover {
  color: white !important;
  background-color: #E29666 !important;
}
.query_pnl .assets_grp .asset_alert_msg {
  color: black;
  font-size: 14px;
  font-style: italic;
}
.query_pnl .assets_grp button.btn {
  box-shadow: none !important;
}
.query_pnl .assets_grp button.btn_clear_selection_link {
  color: #3C6997;
}
.query_pnl .assets_grp button.btn_asset_code {
  color: rgb(25, 25, 25);
  border-color: gray !important;
}
.query_pnl .assets_grp button.btn_asset_code.active {
  background-color: rgb(117, 146, 190) !important;
  color: white !important;
  border-color: gray;
}
.query_pnl .assets_grp button.btn_asset_code:hover {
  background-color: #E29666 !important;
  color: white !important;
}
.query_pnl .toggle-button .btn-group-xs > .btn, .query_pnl .toggle-button .btn-xs {
  padding: 0.45rem 1.6rem 0.15rem 0.4rem;
  font-size: 0.8rem;
  line-height: 0.5;
  border-radius: 20rem;
}
.query_pnl .toggle-button .btn-primary {
  color: #fff !important;
  background: rgb(117, 146, 190) !important;
  border-color: gray !important;
}
.query_pnl .toggle-button .btn-primary.nourishment_type, .query_pnl .toggle-button .btn-primary.shoreline_infra, .query_pnl .toggle-button .btn-primary.extreme_storm {
  height: 10px !important;
  width: 10rem !important;
}
.query_pnl .toggle-button .btn-primary:hover {
  color: #fff !important;
  background: #E29666 !important;
  border-color: gray !important;
}
.query_pnl .toggle-button .btn-primary .toggle-handle {
  /*border-radius: 0px;*/
  border-radius: 20rem;
}
.query_pnl .toggle-button .btn-outline-primary {
  color: #000 !important;
  background: #fff !important;
  border-color: gray !important;
}
.query_pnl .toggle-button .btn-outline-primary .toggle-handle {
  /*border-radius: 0px;*/
  background-color: rgb(117, 146, 190);
  border-color: rgb(117, 146, 190);
}
.query_pnl .toggle-button .btn-outline-primary .toggle-handle:hover {
  background-color: #6082b4;
  border-color: #6082b4;
  opacity: 1;
}

.content_pnl {
  display: flex;
  flex-direction: column;
}
.content_pnl div {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}
.content_pnl div.static {
  flex: 0 0 auto;
  color: white;
  background-color: #3C6997;
  align-items: flex-start;
}
.content_pnl div.static button {
  color: white;
  text-decoration: none;
}
.content_pnl div.static button i.fas {
  transition: transform 0.3s linear;
}
.content_pnl div.static button:hover {
  color: rgb(193, 199, 209);
}

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