/* 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 */
html {
  min-height: 100%;
}

body {
  /*-ms-overflow-style: scrollbar !important;*/
}

/* Main marketing message and sign up button */
.jumbotron {
  position: relative;
  padding-bottom: 20px;
}
.jumbotron .infobox {
  background-color: rgba(0, 0, 0, 0.5);
}
.jumbotron .infobox .infobox_content {
  color: white;
}

.icon-tools svg {
  fill: #094074;
  height: 48px;
}

.icon-color-tint svg {
  fill: #3C6997;
  height: 80px;
}

.icon-color-highlight2 svg {
  fill: #AB7767;
  height: 80px;
}

.icon-color-flooding {
  color: #3479a3;
}
.icon-color-flooding svg {
  fill: #3479a3;
  height: 80px;
}

.icon-color-groundwater {
  color: #AB7767;
}
.icon-color-groundwater svg {
  fill: #AB7767;
  height: 80px;
}

.icon-color-erosion {
  color: #c55a11;
}
.icon-color-erosion svg {
  fill: #c55a11;
  height: 80px;
}

.icon-color-multihazard {
  color: #00824a;
}
.icon-color-multihazard svg {
  fill: #00824a;
  height: 80px;
}

button.btn.btn-flooding {
  color: white;
  background: #3479a3;
}
button.btn.btn-flooding:hover {
  background-color: #6dabd0;
}

button.btn.btn-groundwater {
  color: white;
  background: #AB7767;
}
button.btn.btn-groundwater:hover {
  background-color: #cfb2a9;
}

button.btn.btn-erosion {
  color: white;
  background: #c55a11;
}
button.btn.btn-erosion:hover {
  background-color: #f08f4c;
}

button.btn.btn-multihazard {
  color: white;
  background: #00824a;
}
button.btn.btn-multihazard:hover {
  background-color: #00e884;
}

.jumbotron .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/sanGregorioBeach.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 65%;
}

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

.text-link:hover {
  color: #E29666;
  text-decoration: underline;
}

.content .card {
  border: 1px solid rgba(9, 64, 116, 0.8);
  border-radius: 15px;
}
.content .overview img {
  width: 300px;
  height: 200px;
}
.content .content_header {
  color: #3C6997;
}
.content .content_header i {
  font-size: 36px;
}
.content .content_body button {
  color: #094074;
  text-decoration: none;
  border: 0;
}
.content .content_body button:hover {
  color: #6082b4;
}
.content .content_body button i {
  color: rgb(117, 146, 190);
  font-size: 48px;
}
.content .content_body button div.label {
  color: grey;
  font-weight: bold;
}
.content .content_body button p.info {
  color: grey;
  font-size: 0.85rem;
}
.content .content_body .update_notification_pnl {
  color: black;
  height: 250px;
  overflow-x: auto;
  overflow-y: auto;
}
.content .content_body .update_notification_pnl::-webkit-scrollbar {
  width: 10px;
}
.content .content_body .update_notification_pnl::-webkit-scrollbar-track {
  background: rgb(193, 199, 209);
  border-radius: 5px;
}
.content .content_body .update_notification_pnl::-webkit-scrollbar-thumb {
  background: rgb(117, 146, 190);
  border-radius: 5px;
}
.content .content_body .update_notification_pnl::-webkit-scrollbar-thumb:hover {
  background-color: #6082b4;
}
.content .contact_us {
  /*
  button {
      color: white;
      background: $color_panel_bg;
      text-decoration: none; 

      &:hover {
          background: $color_panel_bg_darker;
      }

      i {
          color: white;
          font-size:36px;
      }

      div.label {
          color: white;
          font-weight: bold;
      }
  }
  */
}
.content .contact_us button {
  color: grey;
  text-decoration: none;
}
.content .contact_us button:hover {
  border: solid;
  border-color: rgb(193, 199, 209);
  border-width: thick;
}
.content .contact_us button i {
  color: white;
  font-size: 36px;
}
.content .contact_us button div.label {
  color: grey;
  font-weight: bold;
}

button.btn-submit {
  color: white;
  background: #3C6997;
  text-decoration: none;
}
button.btn-submit:hover {
  color: white;
  background: #6082b4;
}

.fill-tint {
  background-color: #3C6997;
  fill: #3C6997;
}
.fill-tint:hover {
  background-color: #729cc7;
}

.fill-highlight2 {
  background-color: #AB7767;
  fill: #AB7767;
}
.fill-highlight2:hover {
  background-color: #cfb2a9;
}

/* Navigation bar - main */
.app_title {
  display: block;
  color: white;
  background-color: #3D6998;
}

/* Footer */
.footer_navbar {
  font-size: 12px;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
.footer_content {
  background-color: rgb(63, 101, 158);
  font-size: 12px;
}
.footer_content a {
  color: white !important;
}
.footer_content a:hover {
  color: rgb(193, 199, 209) !important;
}

/* Data and Methods HTML Page */
.data_and_methods .toc_pnl .nav-item a.nav-link, .docs .toc_pnl .nav-item a.nav-link {
  color: white;
}
.data_and_methods .toc_pnl .nav-item a.nav-link:hover, .docs .toc_pnl .nav-item a.nav-link:hover {
  color: rgb(193, 199, 209);
}
.data_and_methods .toc_pnl .nav-item a.nav-link:active, .data_and_methods .toc_pnl .nav-item a.nav-link.active, .docs .toc_pnl .nav-item a.nav-link:active, .docs .toc_pnl .nav-item a.nav-link.active {
  color: rgb(176, 196, 224);
  background-color: transparent;
}

body {
  font-family: "Open Sans", sans-serif;
}

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

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

.text-tint {
  color: #3C6997;
}

.bg-tint {
  background-color: #3C6997;
}

.bg-main {
  background-color: #9CCADE;
}

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

.btn-white {
  background-color: transparent;
}

.btn-primary.disabled {
  background-color: gray;
}

.text-overflow-center {
  margin-left: -100%;
  margin-right: -100%;
  text-align: center;
}

.headerOutline {
  background-color: white;
}

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