/* Basic css */

div.row {
    margin-right: 10%;
    margin-left: 10%;
}

div.nested_row {
  margin-right: 0%;
  margin-left: 0%;
  flex-wrap: wrap;
}

.form_center {
    display:table;
    margin:auto;
}

/* Autocomplete css */

* { box-sizing: border-box; }
body {
  font: 16px Arial;
}
.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}
input[type=text] {
  background-color: #f1f1f1;
  width: 100%;
}
input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9;
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important;
  color: #ffffff;
}

/* Call out format */
.numberCallout {
    font-family: "Raleway";
    font-weight: "bold";
    /* font-size: 48px; */
    color: #34495e;
    text-align: center;
	margin: auto;
}

.quant_icon {
  position: absolute;
}

.textCallout {
    /*margin-left: 5px;*/
    font-family: 'Raleway';
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #535c68;
	margin: auto;
}


.statewide_button {
  background-color: white;
  border: solid rgb(211,211,211);
  width: 100%;
  font-family: "Rawline";
  font-size: 100%;
  border-radius: 6px;
}


#Statewide {
  height: 100%;
  padding: 0px;
}

#titleBox {
  color: white;
  opacity: .9;
  position: absolute;
  background-color: #9c9c9c;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 1% 1% 1% 1%;
  font-family: 'rawline';
  font-weight: bold;
}

.info_icon {
  left: 0;
  position: absolute;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.navbar-collapse > .navbar-nav {
    margin: auto; 
    font-size: 22px;
    font-weight: bold;
    background-color: #f8f9fa!important
  }
  
  @media (min-width: 550px) {
    .navbar-expand-lg .navbar-nav {
      -ms-flex-direction: row;
      flex-direction: row;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: .5rem;
      padding-left: .5rem;
    }
    .navbar-expand-lg .navbar-collapse {
        display: -ms-flexbox!important;
        display: flex!important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    } 
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
    .navbar-expand-lg {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    nav {
      font-size: 22px;
      font-weight: bold
    }
  }
  
  .team_member {
    font-size: 16px;
  }
  .team_title {
    font-size: 16px;
  }
  .team_header {
    font-size: 28px;
  }
  
  @media (min-width: 550px) {
    .team_member {
      font-size: 20px;
    }
    .team_title {
      font-size: 20px;
    }
    .team_header {
      font-size: 28px;
    }
  }
  
  
  #loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #fff;
    z-index: 99;
    text-align: center;
  }
  
  #loading-image {
    margin: auto;
    z-index: 100;
  }
  
  
#team {
  margin-left: 0%;
  margin-right: 0%
}

#project_team {
  margin-left: 0%;
  margin-right: 0%
}