/* General Styles 
------------------------- */



/* Jumbotron
------------------------- */
.jumbotron {
  position: relative;
  padding: 40px 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0,0,0,.4), 0 0 30px rgba(0,0,0,.075);
  background: #8cc126;
  background: -moz-linear-gradient(#8cc126 40%, #608911 100%);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(40%,#8cc126), color-stop(100%,#608911)); 
  background: -webkit-linear-gradient(#8cc126 40%,#608911 100%);
  background: -o-linear-gradient(#8cc126 40%,#608911 100%);
  background: -ms-linear-gradient(#8cc126 40%,#608911 100%);
  background: linear-gradient(#8cc126 40%,#608911 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8cc126', endColorstr='#608911',GradientType=1 );
  -webkit-box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
     -moz-box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
          box-shadow: inset 0 3px 7px rgba(0,0,0,.2), inset 0 -3px 7px rgba(0,0,0,.2);
}
.jumbotron h1 {
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
}
.jumbotron h2 {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1;
  text-align: left;
}
.jumbotron p {
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 30px;
  text-align: left;
}

/* Link styles (used on .masthead-links as well) */
.jumbotron a {
  color: #fff;
  color: rgba(255,255,255,.5);
  -webkit-transition: all .2s ease-in-out;
     -moz-transition: all .2s ease-in-out;
          transition: all .2s ease-in-out;
}
.jumbotron a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,.25);
}

/* Download button */
.masthead .btn {
  padding: 19px 24px;
  font-size: 24px;
  font-weight: 200;
  color: #fff; /* redeclare to override the `.jumbotron a` */
  border: 0;
  -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
          border-radius: 6px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25);
     -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25);
          box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25);
  -webkit-transition: none;
     -moz-transition: none;
          transition: none;
}
.masthead .btn:hover {
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25);
     -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25);
          box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 5px rgba(0,0,0,.25);
}
.masthead .btn:active {
  -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.1);
     -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.1);
          box-shadow: inset 0 2px 4px rgba(0,0,0,.1), 0 1px 0 rgba(255,255,255,.1);
}


/* Pattern overlay
------------------------- */
.jumbotron .container {
  position: relative;
  z-index: 2;
}
.jumbotron:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../images/main-bg-3.png) repeat center center;
  opacity: .15;
}
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1) {

  .jumbotron:after {
    background-size: 150px 150px;
  }

}

/* Masthead (docs home)
------------------------- */
.masthead {
  padding: 90px 0 100px;
  margin-bottom: 0;
  color: #fff;
}
.masthead h1 {
  font-size: 140px;
  line-height: 1.2;
  letter-spacing: -2px;
}
.masthead h3 {
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: -2px;
  font-weight: 300;
  padding: 0 8%;
}
.masthead p {
  font-size: 40px;
  font-weight: 200;
  line-height: 1.25;
  text-align: center;
}

/* Textual links in masthead */
.masthead-links {
  margin: 0;
  list-style: none;
}
.masthead-links li {
  display: inline;
  padding: 0 10px;
  color: rgba(255,255,255,.25);
}

/* Social proof buttons from GitHub & Twitter */
.bs-docs-social {
  padding: 15px 0;
  text-align: center;
  background-color: #f5f5f5;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #ddd;
}

/* Quick links on Home */
.bs-docs-social-buttons {
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.bs-docs-social-buttons li {
  display: inline-block;
  padding: 5px 8px;
  line-height: 1;
  *display: inline;
  *zoom: 1;
}

.cta {
  padding-top: 50px;
  text-align: center;
}
.cta h1 {
  text-align: center;
  padding-bottom: 35px;
  color: #222;
  font: 300 44px/1.5 'Ubuntu', sans-serif;
}
.cta h2 {
  font-size: 24px;
  color: #555;
}

.cta a:hover img {
	opacity: .5;
}

.subpage {
	padding: 40px 0;
}

/* OPEN NVM FORM */

.LV_validation_message {
	margin-left: 12px;
	padding: 7px 10px;
	border-radius: 6px;

}

.LV_valid {
	display: none;
	
}

.LV_invalid {
	color: #fff;
	background: #c00;
}

.opennvm-form {
	padding: 5px 30px;
	border-radius: 12px;
	background: #eee;
	border: 1px solid #ddd;
	display: inline-block;
	margin-top: 30px;
}
#thank-you {
	display: none;
}

/* FOOTER */

footer {
	padding: 30px 0;
	background: #e5e5e5;
	text-align: center;
	color: #999;
	margin-top: 40px;
}