/** Overlay CSS **/

.opencloseLayerContainer{
  display: none;
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-animation: fadeIn 0.7s;
  animation: fadeIn 0.7s;
}
.overlayBackground{
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0,0,0,0.8);
  top:0;
  left: 0;
  //border: 1px solid #00FF00;
}
.overlayFormBackground{
  min-width: 300px;
  width: 60%;
  background-color: #EFEFEF;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  position: absolute;
  //border: 1px solid #0000FF;
  padding-bottom: 25px;
  padding-top: 25px;
}
.closeButton{
  position: absolute;
  right: 0;
  top: 0;
  margin-right: 3%;
  margin-top: 15px;
  height: 30px;
  width: 30px;
  text-align: center;
  display: table;
}

a.closeIcon{
  text-decoration: none;
  color: #333333;
  font-size: 40px;
  border: 1.5px solid #333333;
  border-radius: 50%;
  display: table-cell;
  vertical-align: middle;
  line-height: 0em;

}

.overlayForm{
  //border: 1px solid #85ac54;
}
.formData{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  //border: 1px solid #FF00FF;
  padding-top: 25px;
  padding-bottom: 25px;
}
.jobHeaderFont{
  font-family: 'Aldrich', sans-serif;
  font-size: 24px;
}
.jobSubHeaderFont{
  font-family: 'Aldrich', sans-serif;
  font-size: 20px;
  margin-top: 40px;
}
.jobDescriptionFont{
  font-family: 'Electrolize', sans-serif;
  font-size: 16px;
  margin-top: 15px;
  line-height: 1.4em;
}
.jobMotivatorFont{
  font-family: 'Electrolize', sans-serif;
  font-size: 16px;
  margin-top: 80px;
}
.jobMotivatorSpacer{
  margin-top: 100px;
}
.formHeaderFont{
  font-family: 'Aldrich', sans-serif;
  font-size: 20px;
}

.formHeadingsFont{
  font-family: 'Aldrich', sans-serif;
  font-size: 18px;
}

.formInputFont{
  height: 35px;
  font-family: 'Electrolize', sans-serif;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
 -webkit-box-sizing:border-box;
 -moz-box-sizing: border-box;
}

.greyOut{
  background: #DDDDDD;
}

.formMessage{
  font-family: 'Electrolize', sans-serif;
  font-size: 16px;
  width: 100%;
  height: 150px;
  resize: none;
  box-sizing: border-box;
 -webkit-box-sizing:border-box;
 -moz-box-sizing: border-box;
 overflow: auto;
}

.inputfile{
  display: none;
}
.uploadButtonContainer{
  width: 100%;
  height: 35px;
}

.fileUploadName{
  height: 35px;
  font-family: 'Electrolize', sans-serif;
  font-size: 16px;
  padding-top: 5px;
  padding-bottom: 5px;
  box-sizing: border-box;
 -webkit-box-sizing:border-box;
 -moz-box-sizing: border-box;
 float: left;
 margin-left: 10px;
}
.fileUploadButton{
  font-family: 'Aldrich', sans-serif;
  font-size: 16px;
  height: 35px;
  float: left;
  border: 1px solid #AAAAAA;
  padding: 5px;
  box-sizing: border-box;
 -webkit-box-sizing:border-box;
 -moz-box-sizing: border-box;
 cursor: pointer;
}

table.overlayFormTable {
  table-layout: fixed;
  width: 100%;
  margin-top:  20px;
  border-top: 2px solid #404040;
}

.overlayFormTable td{
  padding-top: 35px;
  //border: 1px solid #99f501;
}

.borderline{
  border-bottom: 2px solid #404040;
  width: 100%;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.centerAlign{
  text-align: center;
  margin-top: 30px;
}

.formactionButton {
  background-color: inherit;
  border: 2px solid #6ACA25;
  -webkit-border-radius: 10;
  -moz-border-radius: 10;
  border-radius: 10px;
  font-family: 'Aldrich', sans-serif;
  color: #6ACA25;
  font-size: 15px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  cursor: pointer;
}

.formactionButton:hover {
  border: 2px solid #67971A;
  color: #67971A;
  text-decoration: none;
}

.maxfilesizefont{
  font-size: 16px;
  font-family: 'Electrolize', sans-serif;
}

@media only screen and (min-width: 790px) {

  .formMessage{
    height: 300px;
  }

  .jobHeaderFont{
    font-size: 28px;
  }
  .jobSubHeaderFont{
    font-size: 22px;
  }
  .jobDescriptionFont{
    font-size: 18px;
  }
  .jobMotivatorFont{
    font-size: 18px;
  }

  .formHeaderFont{
    font-size: 26px;
  }

  .formHeadingsFont{
    font-size: 20px;
  }

  .formInputFont{
    font-size: 18px;
  }

  .formMessage{
    font-size: 18px;
  }

  .fileUploadName{
    font-size: 18px;

  }
  .fileUploadButton{
    font-size: 18px;

  }




}

@-webkit-keyframes fadeIn {
from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}
