/*
Originates at https://modelearth.github.io/localsite/css/base.css 
Used in localsite, modelearth, io, neighborhood, trees
*/
@font-face {
  font-family:'Amaze';font-weight:300;
  src:url("/localsite/css/fonts/ember.woff2") format("woff2"), url("/localsite/css/fonts/ember.woff") format("woff")
}
* {box-sizing: border-box;}
.hideMobile, .hideMobileWide {display:inline-block;}
.showMobile, .showMobileWide {display:none;}
.showGit {display:none;}
.local, .localonly {
  display:none !important; 
  background-image: linear-gradient(45deg, rgba(0,0,0,0.1) 25%, transparent 25%), linear-gradient(-45deg, rgba(0,0,0,0.1) 25%, transparent 25%), linear-gradient(45deg, transparent 95%, rgba(0,0,0,0.1) 75%), linear-gradient(-45deg, transparent 95%, rgba(0,0,0,0.1) 75%);
  background-size: 3px 3px;
}
.localonly {padding:20px; }
svg{max-width:none;} /* Fix for embedding material icon map points in Drupal */

@media (max-width: 800px) {
  .hideMobile {display:none;}
  .showMobile {display:inline-block !important;}
}
@media (max-width: 900px) {
  .hideMobileWide {display:none;}
  .showMobileWide {display:inline-block;}
}
html,body { /* both are needed for map height in iframe */
  height: 100%;
}
body {
  margin: 0px;
  -webkit-font-smoothing: antialiased;
  font-family: 'Nunito Sans', Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
  line-heightX:0; /* prevents gaps betweet images, but 0 caused text to overlap on start and nav icons. */
}
.flexbody {
  display: flex; /* for footer */
  flex-direction: column; /* for footer */
}
main, .flexmain {
    flex-grow: 1; /* for footer */
}
header, main, .flexfooter {
    flex-shrink: 0; /* prevent shrinking if content is larger than the screen. */
}

table {
  border-spacing: 0px;
}
td {
  padding: 0px;
  vertical-align: top;
}
input {
  /* padding-left:5px; */
  /* margin-right:2px; */
}
input, select {
  /* margin-bottom:8px; */
}

/*
input, textarea {
Creates gap on some image buttons. Might reactivate after search page graphic button and others changed.
*/
textarea {
    /* border:solid 1px #777; */
    border-color: rgb(238, 238, 238);
}
a {
  text-decoration: none;
}
/* conflicts with buttons */
a:link {
  color: #0366d6;
}
a:visited {
  color: #0366d6;
}
/* Lighter: #4091dd */
p {
  margin-top: 0px;
  margin-bottom: 16px;
  /*
  font-family: 'Open Sans', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  */
  font-sizeX: 15px;
}
h1,h2,h3,h4 {
  font-family: Raleway;
  line-height: 1.5;
  overflow: auto;
}
h2, h3, h4 {
    font-family: 'PT Sans', sans-serif;
    font-family: Raleway, Lato, "Helvetica Neue", Helvetica, "Lato", sans-serif;
}
h1 {
  font-weight: 300;
  color: #444;
  line-height: 1.3;
  margin-top: 10px;
  font-size: 31px;
  font-family: "Amaze", "Helvetica Neue", Helvetica, "Lato", sans-serif;
}
.h1-home {
  font-size: 28pt;
  font-family: "Helvetica Neue", Helvetica, "Lato", sans-serif;
  font-weight: 700;
}
h2 {
  margin-top: 0px;
  font-weight: 500;
  font-weight: 800;
  font-size: 1.4em;
  padding-top: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
  color: rgb(77, 82, 89);
  color: #333;
  overflow: auto;
}
h2::before { /* Avoids hashtag headbutting browser window */
  display: block; 
  content: " "; 
  margin-top: -120px; 
  height: 120px; 
  visibility: hidden; 
  pointer-events: none;
}
section::before { /* Avoids hashtag headbutting browser window */
  display: block; 
  content: " "; 
  margin-top: -120px; 
  height: 120px; 
  visibility: hidden; 
  pointer-events: none;
}
#footer .container section::before { /* Correct Drupal Footer */
  margin-top: auto;
  height: auto;
}
h3 {
  font-weight: 600; 
  font-size: 1.3em;
  line-height: 1.3em;
  margin-top: 20px;
  margin-bottom: 16px;
  color: #000;
  font-family: "Amaze", 'PT Sans', sans-serif;
}
h4 {
  margin-top: 20px;
  font-weight: 600;
  font-size: 1em;
  line-height: 26px;
  margin-top: 15px;
  margin-bottom: 12px;
  color: #333;
}
h5 {
  font-weight: 300;
  font-size: 1.1em;
  margin-top: 20px;
  margin-bottom: 10px;
}
h6 {
  font-weight: 600;
  font-size: 0.95em;
  color: #333;
  margin-top: 10px;
  margin-bottom: 0px;
}
sup {
  line-height: 0.8em;
  font-size: 0.6em;
}
hr {
    border: 0px;
    border-top: 1px solid #ddd;
}
details {
  display:inline;
}
summary { /* a button */
  display: inline;
  padding:0 5px;
  floatX:left;
  margin-right:8px;
  border: 1px solid #ccc;
}
summary::-webkit-details-marker {
  display: none
}
@media print 
{
  .noprint {display: none; }
  /*
  body{margin-top:30px; color: #000; }
  */
}
@media screen {.printonly {display: none; }}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}
.flexright {
  max-width: 350px;
  padding-left: 40px;
}
@media (max-width: 500px) {
  .mobileWide {
    width: 100%;
    display: block;
  }
  .flexright {
    max-width: 100%;
    padding-left: 0px;
    display: block;
  }
}

#header {
	z-index: 10001;
}
.displayOnload {
  display:block !important; /* hidden until css loaded */
}
.content {
  max-width: 1100px;
  margin:0 auto;
  font-size: 15px;
  line-height: 1.55;
  position: relative;
}
@media (min-width: 1800px) {
	.content {
	  max-width: 1500px;
	  font-size: 18px;
	}
}
.contentpadding {
  padding-top: 25px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 45px;
}
.contentwide {
  max-width: 1400px;
  padding-left: 10px;
  padding-right: 10px;
}
.contentfull {
  max-width: 2000px;
  padding-left: 34px;
  padding-right: 20px;
}
.content li {
  margin-left: -10px;
}
@media (max-width: 1400px) {
  .contentwide {
    max-width: 1350px;
  }
}
@media (max-width: 1200px) {

  .content li {
    /* Caused 10+ to be half hidden. Tried overflow: visible */
    /* margin-left: -20px; */
  }
}
@media (max-width: 500px) {
  .content {
    line-height: 1.2;
  }
  .contentpadding {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.container {
  position: relative;
  margin: 0 auto;
  /* max-width: 1200px; */ /* makes video in rotation to short */ /* max-width will conflict with sites that use bootstrap */
  /* Conflicts with Drupal footer
  padding-left: 55px;
  padding-right: 55px;
  */
}
.lead {
    font-family: 'PT Sans', sans-serif;
    font-weight: normal;
    color: rgb(66, 72, 79);
    font-size: 17px;
    font-weight: 100;
    line-height: 1.5;
}
.caption {
  font-size: 12.5px;
  margin-bottom:27px;
}

.pageColumns {
  overflowX: hidden; /* Allows bottom padding to apply after float:left columns */
  overflowX: scroll; /* Allows large number of naics columns to be viewed */
  margin-right:-30px;
}
.pageColumn {
  width:33.33%;
  float:left;
  margin-bottom: 0px;
}
.full .pageColumn {
  width:100%;
}
.two .pageColumn {
  width:50%;
}
.pageColumnInside {
  position: relative;
  margin-right:40px;
  line-height: 1.55;
  border: 1px solid rgba(255,255,255,0);
  font-size: 16px;
  /* overflow: hidden; */ /* Covers indicator bar */
}
.pageColumns > .pageColumn:last-child {
	margin-right:0px;
}
.pageColumnTitle {
  font-size: 1.27em;
  line-height: 1.3em;
  margin-top: 20px;
  margin-bottom: 16px;
}
@media (max-width:980px) {
  .pageColumn, .two .pageColumn {
    width:100%;
    float:none;
  }
  .pageColumnOverflow {
    width:100%;
  }

}
.contentArea {
    margin: 0px; padding: 0px; 
    padding-left: 20px; padding-right: 20px;
    line-height: 1.4em;
}
.rightside, .floatright {
  float:right;
  max-width:400px;
  margin-left:30px;
  margin-bottom:30px;
  /* font-size: 18px; */
}
@media (max-width: 1120px) {
  .rightside {
    max-width:auto;
    margin-left:0px;
    margin-bottom:30px;
    float:none;
  }
}

.floatRight {
  float:right;
  margin-left:40px;
}
@media (max-width: 800px) {
  .floatRight {
    float:none !important;
    width:100%;
    margin-left:0px;
    margin-bottom:40px;
  }
}

@media (max-width: 800px) {
  .floatright {
    max-width:auto;
    margin-left:0px;
    margin-bottom:30px;
    float:none;
  }
  .fullMobile {
    float:none;
    width:100% !important;
    max-width:100% !important;
    margin-left:0px !important;
  }
}
.litePanel {
    background-color: #fff;
    overflow:auto;
}
.darkPanel {
    background-color: #ddd;
}
mark {
  padding:4px 8px 4px 8px;
  background-color: #ffc;
}
code {
  background-color: #eee;
  padding: 2px  5px;
  overflow: scroll;
}
content .js, pre code { /* Prevents .js from impacting js class within Drupal body tag */
  background-color: #eee;
  padding:15px;
  border-left: 4px solid #137AD1;
  margin-bottom: 22px;
  display: block;
  unicode-bidi: embed;
  font-family: monospace;
  /* white-space: pre-wrap; */ /* Causes Drupal to have large empty div's at top */
}
.link {
  color:#4091dd;
  /*
  font-family: 'Open Sans', 'Helvetica Neue', HelveticaNeue, calibri, arial, sans-serif; 
  */ /* thicker, darker */
  font-weight: 600;
}

#hero-content {
  /*
  position: absolute;
  top: 60px;
  left: 60px;
  right: 60px;
  */
  padding: 60px;
  padding-bottom: 40px;
}
#hero-mini {
  float: right;
  background-color: rgba(33, 33, 33, 0.85);
  border-radius: 20px;
  padding-bottom: 0px;
  color: #fff;
  margin-bottom: 0px;
  max-width:140px;
  overflow: hidden;
}
#hero-rect {
  float: left;
  background-color: rgba(255, 255, 255, 0.90);
  background-color: rgba(33, 33, 33, 0.90);
  border-radius: 40px;
  max-width: 600px;
  padding: 30px 50px 25px 50px;
  margin-bottom: 30px;
  /* marginX: 0 auto; */ /* To Center */
  color: #fff;
}
#hero-rect h3 {
  color: #fff;
}
#hero-rect a:link, #hero-rect a:visited {
  color: #66CF79;
}
#hero-rect:hoverX {
  background-color: rgba(255, 255, 255, 0.9);
  background-color: rgba(33, 33, 33, 0.95);
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    border-radius: 2rem;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    cursor: pointer;
    margin-right:4px;
    margin-bottom:8px;
}
.btn:link, .btn:visited {
  color: #fff;
}
#hero-rect .btn:link, #hero-rect .btn:visited {
  color: #fff;
}
.btn:hover {
    background-color: #b9da79;
    border-color: #b9da79;
    text-decoration: none;
}
.btn-lg {
  height: 52px;
  font-size: 1.1rem;
  line-height: 2.15;
  border-radius: 1.5rem;
  padding: 0.375rem 1.3rem;
}
.btn-primary {
    color: #fff;
    background-color: #6fa1d8;
    border-color: #6fa1d8;
}
.btn-primary:hover {
    background-color: #91bbef;
    border-color: #91bbef;
}
.btn-success {
    color: #fff;
    background-color: #a6c36e;
    border-color: #a6c36e;
}
.btn-warning {
    color: #fff;
    background-color: #e6853d;
    border-color: #e6853d;
}
.btn-warning:hover {
    background-color: #ef954d;
    border-color: #ef954d;
}
.btn-danger {
    color: #fff;
    background-color: #d34564;
    border-color: #d34564;
}
.btn-danger:hover {
    background-color: #f15a7f;
    border-color: #f15a7f;
}
.btn-white {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.btn-white:hover {
    background-color: #b9da79;
    border-color: #b9da79;
}
.btn-white:link {
  color: #333;
}
.btn-white:visited {
  color: #333;
}
@media (max-width: 500px) {
  .btn {
    width:100%;
  }
}
.nav {
  list-style: none;
}
.nav>li>a {
  padding: 8px;
  margin-top: 2px;
  margin-bottom: 2px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.nav>li>a:hover {
  background: #ddd;
}
.nav-right {
  float:right;
}
.nav-right ul li {
  float:left;
}
.header-navigation {
  background-color:#eceaeb;
  margin-bottom:0px; 
  -webkit-box-shadow: 0 4px 4px -2px #999;
  -moz-box-shadow: 0 4px 4px -2px #999;
  box-shadow: 0 4px 4px -2px #999;
  z-index:10; 
}
.topLinks b {
  font-weight: 800;
}
.main-content {
  /* margin-top: 40px; */
  /* overflow:hidden; */  /* prevents footer from residing beside columns, but caused menu/accordion to be cut off. */
}
/*
#mainColumn img {
  width:100%;
}
*/
#rightColumn img {
  /* messed up /account page */
  /*
  width:100%;
  */
}
#showSide {
	padding: 8px;
	padding-top: 8px;
	position: fixed;
	z-index: 10000;
	pointer-events: auto;
	cursor: pointer;

	padding-right: 6px;
	margin-top:2px;
	margin-left:-12px;
	border:1px solid #aaa;
	background-color: #fff;
	border-radius: 8px;
	height: 34px;
}
.close-X-sm {
  cursor:pointer;
  margin:6px 6px 11px 22px;
  font-size:18px;
  color:#444;
}
.close-X-sm:hover {
  color:#777;
}
.pagecard {
    clear:both;
    overflow: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 28px;
    margin-bottom: 30px;
}
.cardstyle {
    background: #fff;
    min-height: 50px;
    position: relative;
    border-radius: 28px;
    padding: 20px;
}
@media (max-width: 1200px) {
    .pagecard {
        paddingX:40px;
        margin-rightX:20px;
    }
}
@media (max-width: 500px) {
    .pagecard {
        padding:0px;
    }
}
.leftLogo {
    float:left;
    margin:20px;
    margin-right:40px;
    min-width: 210px;
}
@media (max-width: 800px) {
  .leftLogo {
      float:none;
      margin-right:20px;
      max-width: 150px;
  }
  .narrowscreen {
    width:100% !important;
    max-width: 100% !important;
    float:none !important;
    padding:0 !important;
    margin:0 0 30px 0;
  }
}

#log_display {
  position:fixed;
  z-index: 999999;
  top:70%;
  left:50px;
  max-height:200px;
  padding: 8px 8px 8px 8px;
  color:#fff;
  background: rgba(0,0,0,.8);
  border:1px solid #ccc;
  border-radius: 10px 10px 10px 10px;
}
#log_display textarea {
  color:#fff;
  background: rgba(0,0,0,0);
  min-width: 400px;
  min-height: 150px;
  overflow:scroll;
  border:1px solid #ccc;
}
.bgimg {
    position: relative;
    opacity: 0.65;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-sizeX: cover;
    background-position: 0 100px; /* adjust for page banner - BUGBUG */
    background-size: 100% auto;
    borderX: 2px solid blue;

    opacityX: 0.2;
}
@media(max-width:1022px) {
  .bgimg {
    background-position: 0 0;
  }
}
@media(max-width:800px) {
  .bgimg {
    width: 200%; /* taller on mobile */
  }
}
/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
    .bgimg {
        background-attachment: scroll;
    }
}
.herocenter {
  position: absolute;
  left: 0;
  top: 48.5%;
  width: 100%;
  text-align: center;
  color: #000;
}
.herocenter-text {
  font-size: 18px;
  border: 1px solid #aaa;
  display: inline-block;
  padding: 4px 10px 4px 10px;
  letter-spacing: .1em;
  marginX: 20px 0px 20px 0px;
  color: #fff;
  text-decoration: none;

  border: 0px;
  background: rgba(55,55,55,0.7);
  padding: 20px 25px 20px 25px;

  /*
  border: 0px;
  padding: 18px 25px 18px 25px;
  color: #000;
  background: rgba(255,255,255,0.8);
  */
}
.herocenter-text a {
  color: #fff;
}
.herocenter span.border {
  background-color: #111;
  background-color: #000;
  opacity: 0.85;
  color: #fff;
  padding: 18px;
  padding-left: 25px;
  font-size: 25px;
  font-size:18px;
  letter-spacing: 10px;
  display: inline-block;
}

/* Temp until io renamed in useeio-widget */
.input-output input[type="text"], .input-output input[type="search"], .input-output select, select {
    font-size: 18px;
    border: 1px solid lightgray;
    border-radius: 4px;
    min-height: 34px;
    margin-right: 15px;
    padding: 0 5px 0 10px;
    padding-top: 4px; /* Firefox */
}


#logospace {
  float:left;
  borderX: 1px solid blue;
  line-heightX:32px;
  margin-leftX:-19px;
  vertical-align:middle;
}
/*
.logoholder {
  background-size: 100% 100%;
  background-position:center;
  height:50px;
    width:70px;
    margin-top: -40px;
}
*/
#logoholder {
  /*
  background-size: 100% 100%;
  margin:0 auto;
  */
  float:left;
  display: block;

  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}
#logoholderbar {
  padding: 6px 8px 0 0;
}
#headerLogo {
  margin-right: 4.5px;
  float: left;
}

/* phase out? */
.logoholder-state {
  background:url(img/logo/georgia-icon-on-gray.png) no-repeat;
  margin-top: 5px;
  height: 50px;
  width: 70px;
}
.logoholder-modelearth {
  background-image:url(../../../localsite/img/logo/partners/neighborhood-icon.png) no-repeat;
  margin-top: 15px;
  margin-right: 24px;
  height:25px; 
  width:25px;
}
.logolink:hover{
  text-decoration: none;
}

#headerLocTitleHolder {
  float:left;
  /*
  padding:10px 0 0 0px;
  font-size: 22px;
  height:45px;
  */
}
/*
.headerLocTitleHolder-state {
  margin-top: 7px;
}

, #headerLocTitle
*/
#headerSiteTitle {
  font-size: 24px;
  font-family: Helvetica !important;
  font-weight: 100;
  color: #777;
  letter-spacing: 2px;
  padding-bottom: 6px;

  /* Align vertically */
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}

#headerLocTitle {
  float:left;
  padding-top:1px;
  color:#9c9c9c;
  font-size: 22px;
}
.headerbar {
  background:#fff;
  pointer-events: auto;
}
@media (max-width: 600px) {
  .headerbar {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 380px) {
  .showSearch {
    display: none;
  }
  #headerLogo {
    margin-left: 24px;
  }
}

.headerbarheight {
  height:100px;
}
.headeroffset { /* Does not include bar */
  height:100px;
}
.filters-margin {
  margin: 0 auto;
  max-width:1000px;
}

/* HEADER */
.upperIcons {
  margin-right: 18px;
}
.upperIcons > div {
  padding:32px 6px 32px 6px;
  padding-left:37px;
}
.upperIcons > div:hover {
  cursor: pointer;
}
.upperIcons > span:hover {
  color: #000; /* not working */
}
#menuHolder {
  height:100%;
  position:fixed;
  right:0px;
  overflow: auto;
  background: #fff;
  width:250px;
  margin-right:-250px;
  -webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-o-transition-duration: 0.3s;
	transition-duration: 0.3s;
	box-sizing: border-box;
	z-index: 99999;
  pointer-events: auto;
}
@media (max-width: 600px) {
	#menuHolder {
		width:100%;
	}
}
#menuTop {
  margin-left:20px;
}
#menuNav {
  margin-top:20px;
}
#menuNav a {
  display: block;
  padding-left: 40px !important;
  padding-top: 15px !important;
  min-height: 50px;
  box-sizing: border-box;
}
/*
#menuNav a:hover {
  background-color: #ddd;
}
*/
#menuNav a {
  font-size:16px;
  font-weight: 500;
  color: #ccc;
}
#menuNav a:hover {
  background-color: #000;
}
#menuNav b a {
  font-weight: 600;
}

@media (max-width: 600px) {
  #menuNav a {
    font-size:20px;
  }
}
#menuHolder a {
  padding: 10px;
  text-decoration: none;
}
.hideMenu {
  margin-top:30px;
  margin-right:17px;
  cursor:pointer;
  border: 2px solid #AEAEAE;
  border-radius: 30px;
  font-size: 32px;
  font-weight: 100;
  display: inline-block;
  line-height: 0px;
  padding: 11px 3px;
  width: 27px;
  position: relative;
  float: right;
}
.hideMenu:hover {
  color:#fff;
  border-color: #fff;
}
.hideMenuInner {
  position:absolute;
  top:3px;
  left:4px;
  color:#555;
  display: none;
  font-size: 20px;
  display: inline-block;
  line-height: 17px;
}
.hideMenuInner:hover {
  color:#fff;
}
/* @media handheld { */
@media only screen and (max-width: 479px) { /* Since Lato font not available on Android */
  .hideMenu:after {
      top: 12px;
      left: 4px;
  }
}
/* END HEADER */


/* json to html display */
.titlecell {
  margin-top:5px;
  float:left;
  clear:both;
  min-width: 200px;
  font-weight: 500;
}
.rightcell {
  margin-top:5px;
  overflow: auto;
  font-weight: 350;
  color: #000;
}
.rightlogo {
  width:100%;
  max-width:300px;
  margin-top:5px;
  margin-bottom:5px;
}
.hidden {
  displayX:none;
}
.bucketDesc {
  white-space: nowrap;
}
.json_to_html_table .titlecell:first-of-type {
  border-top: 0px #fff solid;
}
.json_to_html_table .rightcell:first-of-type {
  border-top: 0px #fff solid;
}
.level1 {
  color: #fff;
  background-color: #777;
  font-size: 11pt;
  padding:6px;
  margin-top:14px; /* margin-bottom breaks alignment of clear:both on titlecell div */
  cursor: pointer;
}
.level2 div:last-of-type {
  border-bottom: 0px #fff solid !important;
}