/* 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: 10px;
  background-color: #f6f6f6;
}

input[type="radio"] {
    height: 13px; /* 3 */
    width: 13px; /* 3 */
    margin-top: 15px;
}
input[type="radio"] { margin-top:5px;}
input[type="radio"] {width: 30px;}

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: 'Outfit', sans-serif;
	font-weight: 100;
	font-size: 13pt;
	color: #231f20;
	background-color: #f6f6f6;
	border-radius:14px;
	-moz-border-radius:14px;
	-webkit-border-radius:14px;
	border: 0px;
	padding: 1.2% 1.5%;
	margin-top:5px;
	outline:none;
}

input, textarea, file {
	width: 92%;
	height: 2em;
	font-family: 'Outfit', sans-serif;
	font-weight: 100;
	font-size: 13pt;
	color: #7c7b7b;
	letter-spacing: 0pt;
	background-color: #f6f6f6;
	border-radius:14px;
	-moz-border-radius:14px;
	-webkit-border-radius:14px;
	border: 0px;
	padding: 0.8% 4%;
	margin-top:5px;
    margin-bottom: 6px;
	outline:none;
}
input.form-check-input {
    width: auto;
	font-family: 'Outfit', sans-serif;
	color: #aaaa7f;
	letter-spacing: 0pt;
	background-color: #f6f6f6;
	border-radius:20px;
	-moz-border-radius:20px;
	-webkit-border-radius:20px;
	border: 0px;
	padding: 1% 1.5%;
	margin-top:5px;
	outline:none;
}
label {
	width: 100%;
	font-family: 'Outfit', sans-serif;
	font-weight: 300;
	font-size: 12pt;
	color: #aaaa7f;
	outline:none;
    text-align: left;
    line-height: 17pt;
    vertical-align: top;
}
label.form-check-label {
    font-weight: 400;
    color: #aaaa7f;
    font-size: 12pt;
    line-height: 25pt;
}

input:focus, textarea:focus {
		border:0.5px solid #f7e7ed;
		background: #f6f6f6;
}

/* Styles the text area boxes (message field) */	
textarea  {
	height:5.8em;
	background-color: #f6f6f6;
}

/* Styles the submit button */
#send {
	background-color: #8dd5f0;
	font-family: 'Montserrat Alternates', sans-serif;
	font-weight:400;
	font-size: 13pt;
    border-radius: 50px;
	color: #fff;
	letter-spacing: 5pt;
	line-height: 20pt;
	width:100%;
	height:6vw;
	text-align: center;
	/* text-indent:-9999px; */
	border:none;
	margin-top:0px;
	cursor:pointer;
}

/* Styles the submit hover */	
#send:hover {
	color:#f6f6f6;
	background-color: #7c7b7b;
	opacity: 1;
}

@media only screen and (max-width: 800px) {
    #send {
        height: 8vw;
    }
}

@media (max-width: 581px) {
	form fieldset {
  float: left;
  width: 100%;
}
#send {
	font-size: 16pt;
	line-height: 20pt;
	height:14vw;
}
input, textarea, file, select {
	width:96%;
	height:2em;
	font-size: 13pt;
	font-weight: 200;
	padding: 1% 2%;
    margin: 4px 0 10px;
}
textarea  {
	height:5.8em;
	background-color: #f6f6f6;
}
select { width: 100%; height: 2.4em;}

}
