/**********************************************/
/***** SASS VARIABLES *************************/
/**********************************************/
/* Fonts */
/* Colors */
/* Backgrounds */
/* Borders */
/* Rgba */
/* Mixins */
/**********************************************/
/***** DEFAULTS *******************************/
/**********************************************/
html {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.4; }
  html body {
    overflow-x: hidden; }
  html * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  html h1, html h2, html h3, html h4 {
    font-family: "Open Sans Condensed", sans-serif;
    line-height: 1.4;
    margin: 15px 0; }
  html h1 {
    text-transform: uppercase; }
  html h2 {
    font-size: 24px; }
    html h2:first-child {
      margin-top: 0; }
  html input,
  html textarea,
  html select {
    width: 100%;
    border: 1px solid #CCCCCC;
    padding: 10px 15px;
    display: block; }
  html input[type="checkbox"],
  html input[type="radio"] {
    display: inline-block; }
  html .container {
    max-width: 1400px;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto; }
  html .clearfix:after {
    content: "";
    display: table;
    width: 0;
    height: 0;
    overflow: hidden;
    clear: both; }
  html .main-content {
    padding: 50px 0; }
  html .centered {
    text-align: center; }

.contact_form_container {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto; }
  .contact_form_container .form_row {
    margin-top: 15px; }
    .contact_form_container .form_row:first-child {
      margin-top: 0; }
    .contact_form_container .form_row input[type="submit"] {
      cursor: pointer; }

/**********************************************/
/***** HEADER *********************************/
/**********************************************/
/* Visual identity */
.vi_container {
  margin: 0 -10px; }
  .vi_container .visual_identity_tbl {
    display: table;
    table-layout: fixed;
    width: 100%;
    padding: 15px 0; }
    .vi_container .visual_identity_tbl > div {
      padding: 0 10px;
      display: table-cell;
      vertical-align: top;
      width: 33%; }
      .vi_container .visual_identity_tbl > div.is {
        text-align: right; }
  .vi_container a {
    display: block;
    border: 1px solid #CCCCCC;
    text-align: center;
    padding: 5px 0; }
  .vi_container img {
    display: inline-block;
    height: 80px;
    font-size: 0;
    line-height: 0; }

/* Menu */
.main_menu_container {
  background-color: #F0F0F0;
  padding: 15px 0; }
  .main_menu_container ul.main-menu {
    margin: 0;
    padding-left: 0;
    list-style: none;
    text-align: center; }
    .main_menu_container ul.main-menu > li {
      display: inline-block;
      border-right: 1px solid #CCCCCC; }
      .main_menu_container ul.main-menu > li:last-child {
        border-right: 0; }
      .main_menu_container ul.main-menu > li a {
        display: block;
        padding: 5px 15px;
        text-decoration: none;
        font-family: "Open Sans Condensed", sans-serif;
        text-transform: uppercase;
        font-weight: 600;
        font-size: 18px;
        color: #333333; }
        .main_menu_container ul.main-menu > li a:hover {
          text-decoration: underline; }

/**********************************************/
/***** FOOTER *********************************/
/**********************************************/
footer {
  background-color: #282A2B;
  text-align: center;
  color: #FFFFFF;
  padding: 5px 0; }
  footer p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto; }
  footer hr {
    border: 0;
    border-bottom: 1px solid #F0F0F0; }

/**********************************************/
/***** HOME PAGE ******************************/
/**********************************************/
.home_banner {
  height: 500px;
  background-image: url("/assets/img/home-bkg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }

/**********************************************/
/***** MAP PAGE *******************************/
/**********************************************/
/* Page */
.projects_container {
  display: table;
  table-layout: fixed;
  width: 100%; }
  .projects_container * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .projects_container .cbnp_map_cell {
    display: table-cell;
    vertical-align: top; }
  .projects_container .map_sidebar {
    width: 250px; }
  .projects_container .sidebar_title {
    background-color: #F0F0F0;
    padding: 10px 15px;
    text-transform: uppercase;
    margin: 20px 0; }
    .projects_container .sidebar_title:first-child {
      margin-top: 0; }
  .projects_container .single_layer,
  .projects_container .single_project {
    margin-top: 15px; }
    .projects_container .single_layer input[type="checkbox"],
    .projects_container .single_project input[type="checkbox"] {
      width: 20px;
      height: 20px;
      vertical-align: middle;
      margin-right: 5px; }
    .projects_container .single_layer label,
    .projects_container .single_project label {
      display: inline-block;
      line-height: 20px;
      vertical-align: middle;
      cursor: pointer; }
  .projects_container .center_content {
    padding: 0 20px; }
    .projects_container .center_content .map_layers {
      text-align: center; }
      .projects_container .center_content .map_layers .map_layer {
        display: inline-block;
        border: 2px solid #CCCCCC;
        height: 60px;
        width: 100px;
        margin-bottom: 10px;
        cursor: pointer;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat; }
        .projects_container .center_content .map_layers .map_layer.layer1 {
          margin-right: 10px;
          background-image: url("/assets/img/terrain.png"); }
        .projects_container .center_content .map_layers .map_layer.layer2 {
          background-image: url("/assets/img/satellite.png"); }
    .projects_container .center_content #map-container {
      height: 500px;
      border: 2px solid #CCCCCC;
      border-radius: 2px; }

/* Info Window */
.map_info_window .info_window_overlay {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8); }
.map_info_window .info_window_container {
  position: fixed;
  z-index: 1000;
  padding: 20px;
  top: 10%;
  left: 50%;
  margin-left: -200px;
  width: 400px;
  background-color: #FFFFFF;
  border: 2px solid #486F38; }
.map_info_window .cwi_date {
  margin: 10px 0;
  font-size: 12px;
  font-weight: 600;
  font-style: italic; }
.map_info_window .cwi_image_container {
  margin-top: 10px; }

/**********************************************/
/***** LOGIN **********************************/
/**********************************************/
.forgotten_pwd {
  margin-top: 15px; }

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