@import url('https://fonts.googleapis.com/css?family=Open+Sans');


* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


body {
	font-family: 'Open Sans', sans-serif;
    line-height: 1.7em;
    font-size: 13px;
	background-color: #ECEFF4;
}

#eg-text-3:focus { background: #f4eb42; 
		   border: 2px solid #ed3434; }

h1,
h2,
h3,
h4,
h5,
h6,
label {
    color: black;
}

.pure-img-responsive {
    max-width: 100%;
    height: auto;
}


.l-box {
    padding: 1em;
}

.l-box-lrg {
    padding: 2em;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.is-center {
    text-align: center;
}

.pure-form label {
    margin: 1em 0 0;
    font-weight: bold;
    font-size: 100%;
}

.pure-form select{ height: auto}

.pure-form input[type],.pure-form select, .pure-form textarea, .pure-form input[type=tel] {
    border: 2px solid #ddd;
    box-shadow: none;
    font-size: 14px;
    margin-bottom: 1em;
	font-family: 'Open Sans', sans-serif;
}

.pure-button {
    background-color: #1f8dd6;
    color: white;
    /* padding: 0.5em 2em; */
    border-radius: 5px;
    font-size: 115%;
	font-family: 'Open Sans', sans-serif;
}

a.pure-button-primary {
    background: white;
    color: #1f8dd6;
    border-radius: 5px;
    font-size: 120%;
}

#form-main-container {
    display: block;
    position: relative;
    background-color: #fff;
    border-color: #d8e2e7;
    border: 1px solid #e5e5e5;
    border-radius: .25rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1%;
}

.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 60px;
}
.file-upload-wrapper:after {
  content: attr(data-text);
  font-size: 14px;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 7px 10px;
  display: block;
  width: calc(100% - 40px);
  pointer-events: none;
  z-index: 20;
  height: 24px;
  line-height: 24px;
  /* color: #999; */
  border-radius: 5px 10px 10px 5px;
  font-weight: 300;
  border: 2px solid #ddd;
}
.file-upload-wrapper:before {
  content: 'Upload';
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  height: 42px;
  background: #1f8dd6;
  color: #fff;
  font-weight: 700;
  z-index: 25;
  font-size: 12px;
  line-height: 44px;
  padding: 0 15px;
  text-transform: uppercase;
  pointer-events: none;
  border-radius: 0 5px 5px 0;
}
.file-upload-wrapper:hover:before {
  background: #3d8c63;
}
.file-upload-wrapper input {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  height: 40px;
  margin: 0;
  padding: 0;
  display: block;
  cursor: pointer;
  width: 100%;
}
.content-wrapper {
    position: absolute;
    top: 87%;
    width: 100%;
    min-height: 12%;
    z-index: 2;
    background: white;

}

.content {
    padding: 1em 1em 3em;
}



/*
 * -- TABLET (AND UP) MEDIA QUERIES --
 */
@media (min-width: 48em) {

    /* We increase the body font size */
    body {
        font-size: 16px;
    }
}

