@charset "UTF-8";

/* Mobile Layout: 480px and below. */


/* Style inputs, select elements and textareas */

.input{
  width: 100%;
  padding: 1%;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 76%;
}

.input-error {
	width: 98%;
	box-sizing: border-box;
	border: 1px solid #FC0101;
    font-weight: 600;
}

.input2-error {
	box-sizing: border-box;
	border: 1px solid #FC0101;
}

.error {
	color: #FC0101;
	font-weight: 600;
}

textarea {
	rows: 5;
}

/* Style the label to display next to the inputs */
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 76%;
}

/* Style the submit button */
input[type=submit] {
  font-family: 'Encode Sans Condensed', sans-serif;
  background-color: #147BAB;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: left;
}

/* Style the container & title bars */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

/* Floating column for labels: 10% width */
.col-10 {
  float: left;
  width: 10%;
  margin-top: 6px;
}
/* Floating column for labels: 25% width */
.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
  float: left;
  width: 100%;
  margin-top: 6px;
}

/* Floating column for labels: 45% width */
.col-45 {
  float: left;
  width: 100%;
  margin-top: 6px;
}

/* Floating column for inputs: 55% width */
.col-55 {
  float: left;
  width: 100%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.zeroMargin_mobile {
    margin-left: 0;
}
.hide_mobile {
    display: none;
} 


/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {


/* Style inputs, select elements and textareas */
    
.input {
  width: 100%;
  padding: 1%;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 80%;
}

.input-error {
	width: 98%;
	box-sizing: border-box;
	border: 2px solid #FC0101;
}

.input2-error {
	box-sizing: border-box;
	border: 2 px solid #FC0101;
}

.error {
}
    
textarea {
	rows: 5;
}

/* Style labels to display next to the inputs */
    
label {
  padding: 1%;
  display: inline-block;
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 80%;
}

/* Style the submit button */
input[type=submit] {
  font-family: 'Encode Sans Condensed', sans-serif;
  background-color: #147BAB;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: left;
}

/* Style the container & Title Bars*/
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

/* Floating column for labels: 10% width */
.col-10 {
  float: left;
  width: 10%;
  margin-top: 6px;
}

/* Floating column for labels: 25% width */
.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

/* Floating column for labels: 45% width */
.col-45 {
  float: left;
  width: 45%;
  margin-top: 6px;
}

/* Floating column for inputs: 55% width */
.col-55 {
  float: left;
  width: 55%;
  margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.zeroMargin_mobile {
    margin-left: 0;
}
.hide_mobile {
    display: none;
} 


/* Desktop Layout: 769px to a max of 1400px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {


/* Style inputs, select elements and textareas */
    

.input {
  width: 100%;
  padding: 1%;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 92%;
}

.input-error {
	width: 98%;
	box-sizing: border-box;
	border: 2px solid #FC0101;
}

.input2-error {
	box-sizing: border-box;
	border: 2px solid #FC0101;
}
 
.error {
}

textarea {
	rows: 2;
}

/* Style labels to display next to the inputs */
label {
  padding: 1%;
  display: inline-block;
  font-family: 'Encode Sans Condensed', sans-serif;
  font-size: 92%;
}

/* Style the submit button */
input[type=submit] {
  font-family: 'Encode Sans Condensed', sans-serif;
  background-color: #147BAB;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: left;
}

/* Style the container & Title Bars*/
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

/* Floating column for labels: 10% width */

.col-10 {
  float: left;
  width: 10%;
  margin-top: 6px;
}

/* Floating column for labels: 25% width */
.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

/* Floating column for labels: 45% width */
.col-45 {
  float: left;
  width: 45%;
  margin-top: 6px;
}

/* Floating column for inputs: 55% width */
.col-55 {
  float: left;
  width: 55%;
  margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.zeroMargin_mobile {
    margin-left: 0;
}
.hide_mobile {
    display: none;
} 
    }

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, .col-45, .col-55, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}
