@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Amaranth:400,400i,700');

/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}


/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	14;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

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

/* Centres the form within the page */
.form-check {
    clear: none;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
}
.form-check-label {
  padding-left: 5px;
  margin-bottom: 0px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 14pt;
}
/* Create a custom checkbox */
.form-check .form-check-input {    
  left: 0;
  bottom: 0;
  height: 15px;
  width: 20px;
  border-radius: 8px;
  background-color: #F6F6F6;
}

form {
    margin:0;
    width:100%;
}
form fieldset {
  float: left;
  width: 38%;
  margin-left:8%
}

/* Styles the text boxes */
select {
    width: 100%; height: 2.4em;
	font-family: 'Parkinsans', sans-serif;
	font-weight: 100;
	font-size: 13pt;
	color: #231f20;
	background-color: #F6F6F6;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border: 0px;
	padding: 1% 1.5%;
	margin-top:5px;
	outline:none;
}

input, textarea, file {
	width: 96%;
	height: 2em;
	font-family: 'Parkinsans', sans-serif;
	font-weight: 100;
	font-size: 13pt;
	color: #231f20;
	background-color: #F6F6F6;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border: 0px;
	padding: 1% 2%;
	margin-top:5px;
	outline:none;
    border: 0.5px solid #F6F6F6;
}
input.form-check-input {
    width: auto;
	font-family: 'Parkinsans', sans-serif;
	color: #231f20;
	background-color: #F6F6F6;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border: 0px;
	padding: 1% 2%;
	margin-top:5px;
	outline:none;
}
label {
	width: 100%;
	font-family: 'Parkinsans', sans-serif;
	font-weight: 200;
	font-size: 15pt;
	color: #ff754e;
	outline:none;
    text-align: left;
    line-height: 35pt;
}
label.form-check-label {
    font-weight: 200;
    color: #000;
    font-size: 12pt;
    line-height: 25pt;
}
input:required { background: #F6F6F6;}
input:focus, textarea:focus {
		border:0.5px solid #ccc;
		background: #fff;
}

/* Styles the text area boxes (message field) */	
textarea  {
	height: 5.8em;
	background-color: #F6F6F6;
    border: 0.5px solid #F6F6F6;
}

/* Styles the submit button */
.sus-btn {
	background-color: #ff85eb;
	font-family: 'Parkinsans', sans-serif;
	font-weight:400;
	font-size: 16pt;
	color: #fff;
	line-height: 20pt;
	width: 100%;
	height: 6vw;
    padding: 0 10%;
    margin: 0;
	text-align: center;
	/* text-indent:-9999px; */
	border:none;
    border-radius: 50px;
	cursor:pointer;
    transition: 0.5s ease;
}

/* Styles the submit hover */	
.sus-btn:hover {
	color:#fff;
	background-color: #ff2dab;
	opacity: 1;
    transition: 0.5s ease;
}

@media (max-width: 800px) {
    .sus-btn {
	height: 8vw;
    }
}

@media (max-width: 681px) {
	form fieldset {
  float: left;
  width: 100%;
}
.sus-btn {
	font-size: 16pt;
	line-height: 20pt;
	height:13vw;
}
input, textarea, file, select {
	width:96%;
	height:2em;
	font-size: 13pt;
	font-weight: 100;
	padding: 1% 2%;
}
textarea  {
	height:5.8em;
	background-color: #F6F6F6;
}
select { width: 100%; height: 2.4em;}

}
