@charset "utf-8";
/* CSS Document */
.form{
	background-color: rgba(255, 255, 255, 0.15);
	border:solid 2px rgba(255, 255, 255, 0.2);
	background-image:url(../img/form-logo.png);
	background-repeat:no-repeat;
	background-position:50% 55%;
	display: -webkit-flex;
	display:flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: -o-flex;
	flex:1;
	flex-direction:row;
    -webkit-flex-wrap: wrap;
	flex-wrap:wrap;
	padding:10;
	margin:20px;
	max-width:520px;
	box-sizing:revert;
}
.form-header{
	width:100%;
	display:block;
	color:#fff;
	font-size:15px;
	margin-bottom:15px;
	border-bottom:solid 2px rgba(255,255,255,0.6);
}
.form-header h2{
	color:#fff;
	font-size:23px;
	opacity:0.8;
}
.col-lg-6 .form-header p,.col-lg-6 .form-header h2{
	margin-bottom:15px;
	margin-top:10px;
	text-align:center;
}
input{
	margin-top:10px;	
	margin-bottom:10px;				
}
.col-lg-6 p,.col-lg-6 h1, .col-lg-6 h2 {
	text-align:center;
	margin-bottom:20px;
}
.col-lg-6 p{
	text-align:justify;
	margin-left:15px;
	margin-right:15px;
	margin-bottom:30px;
	font-size:14px;	
	line-height:20px;
}
.col-lg-6 h2{
	text-align:left;
	margin-left:15px;	
}
.col-lg-6 h3{
	text-align:left;
	margin-left:15px;
}
.col-lg-6 ul{
	text-align:left;
	margin-left:15px;
	font-size:14px;
	padding:10px;
	list-style-type:ordered;
	padding:10 20 10 20;
}
.col-lg-6 ul li{
	line-height:25px;
	margin-bottom:5px;
}
.col-lg-6 p a:link,.col-lg-6 p a:visited{
	text-decoration:none;
	color:#fff;	
}
.col-lg-6 p a:hover{
	text-decoration:underline;
	color:#fff;	
}
input[type="text"]{
	font-family:'Comfortaa', cursive;
	font-weight:700;
	background-color: rgba(255, 255, 255, 0.1);
	border:solid 2px rgba(255, 255, 255, 0.5);
	color: #fff;
	height:38px;
	width:100%;
	padding:10px;
	box-sizing:border-box;
	-webkit-flex:1;
	flex:1;
}
input[type="email"]{
	font-family:'Comfortaa', cursive;
	font-weight:700;
	background-color: rgba(255, 255, 255, 0.1);
	border:solid 2px rgba(255, 255, 255, 0.5);
	color: #fff;
	height:38px;
	width:100%;
	padding:10px;
	box-sizing:border-box;
	-webkit-flex:1;
	flex:1;
}
input[type="text"]:focus{
    background-color: rgba(255, 255, 255, 0.2);
	border:solid 2px rgba(255, 255, 255, 0.8);
	outline:none;
}
input[type="email"]:focus{
    background-color: rgba(255, 255, 255, 0.2);
	border:solid 2px rgba(255, 255, 255, 0.8);
	outline:none;
}
textarea{
	font-family:'Comfortaa', cursive;
	font-weight:700;
	font-size:15px;
	background-color: rgba(255, 255, 255, 0.1);
	border:solid 2px rgba(255, 255, 255, 0.5);
	color: #fff;
	resize:none;
	overflow:auto;
	outline:none;
	width:100%;
	min-height:100px;
	padding:10 5 10 5px;
	margin-top:10px;	
}
textarea:focus{
    background-color: rgba(255, 255, 255, 0.2);
	border:solid 2px rgba(255, 255, 255, 0.8);
}
textarea::placeholder{
	color:#fff;
	font-weight:400;
	opacity:0.8;	
}
input::-moz-placeholder{
   color:#fff;  
   opacity:1;
}
::placeholder{
	font-family:'Comfortaa', cursive;
	font-weight:300;
	color:#fff;
	font-size:15px;
	margin-left:5px;
}
textarea::-webkit-input-placeholder
input[type="text"]::-webkit-input-placeholder,
input[type="button"]::-webkit-input-placeholder,
input[type="submit"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,

textarea{
    font-family:'Comfortaa', cursive;
	font-weight:300;
	font-size:15px;
	line-height:15px;
	color:#fff;
}
:focus::-webkit-input-placeholder{
    color:#fff;
}
::-webkit-input-placeholder{
	font-family:'Comfortaa', cursive;
	font-weight:300;
	font-size:15px;
    color:#fff;
}
:-ms-input-placeholder{ /* Internet Explorer 10-11 */
	font-family:'Comfortaa', cursive;
	font-weight:300;
	font-size:15px;
	color: #fff;	
}
::-ms-input-placeholder{ /* Microsoft Edge */
	font-family:'Comfortaa', cursive;
	font-weight:300;
	font-size:15px;
    color: #fff;	
}
/*the container must be positioned relative:*/
.custom-select{
  position: relative;
  margin-left:10px;
  margin-right:10px;
  font-family: 'Comfortaa', cursive;
  font-weight:300;
  font-size:15px; 
  border:solid 2px rgba(255, 255, 255, 0.5);
  line-height:15px;
  height:38px; 
  margin-top:10px;
  margin-bottom:10px;
  text-align:left;
  /*box-shadow: 0px 0px 10px rgba(255,255,255, 0.6);*/
  width:100%;  
}
.custom-select select{
  display: none; /*hide original SELECT element:*/  
}
.select-selected{
  background-color: rgba(255, 255, 255, 0.1);
  outline:none;
  padding-left:5px;
  padding-top:10px;   
}
/*style the arrow inside the select element:*/
.select-selected:after{
  position: absolute;
  content: "\25BC";
  top: 10px;
  right: 17px;
  width: 0;
  height: 0;
  font-size:15px;  
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected{
  color: #ffffff;
  border: none;
  user-select: none;
  height:38px;
  padding-left:10px;
  padding-top:10px; 
}
/*style items (options):*/
.select-items{
  position: absolute;
  background: rgba(255,182,28,0.8); 
  border:solid 2px rgba(255, 255, 255, 0.8);
  top: 100%;
  left: -2;
  right: -2;
  z-index: 99;
  width:auto; 
}
/*hide the items when the select box is closed:*/
.select-hide{
  display: none;
}
.select-items div:hover, .same-as-selected{
  background-color: rgba(255, 255, 255, 0.2);
  cursor:pointer;
}
 /* Customize the label (the container) */
 .checkbox-container{
	 display:flex;
	 flex:1;
	 display: -webkit-flex;
	 display: -moz-flex;
	 display: -ms-flexbox;
	 display: -o-flex;
	 -webkit-flex-direction:column;
	 flex-direction:column;
    -webkit-flex-wrap: wrap;;
	 flex-wrap:wrap;
 }
.checkbox{
  display: block;
  position: relative;
  padding-left:25px;
  margin-top: 20px;
  align-content:center;
  font-size: 15px;
  font-weight:700;
  color:#fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align:left;
  max-width:450px;
}
/* Hide the browser's default checkbox */
.checkbox input{
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* Create a custom checkbox */
.checkmark{
  position: absolute;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  border:solid 2px rgba(255, 255, 255, 0.5);
}
/* On mouse-over, add a grey background color */
.checkbox:hover input ~ .checkmark{
  background-color: rgba(255, 255, 255, 0.5);
  cursor:pointer;
}
/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark{
  background-color: #fff;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after{
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after{
  display: block;
}
/* Style the checkmark/indicator */
.checkbox .checkmark:after{
  left: 4px;
  top: 0px;
  width: 5px;
  height: 10px;
  border: solid rgba(0, 0, 0, 0.8);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.checkbox a{
	color:#FFF;
}
input[type=submit]{
	font-family: 'Comfortaa', cursive;
	font-weight: 700;
	font-size: 15px;
	color: #fff;
	padding:10px;
	width: 150px;
	margin: 20 auto 10 auto;
	background-color: rgba(255, 255, 255, 0.1);
	border:solid 2px rgba(255, 255, 255, 0.4);
}
input[type=submit]:hover{
	background-color: rgba(255, 255, 255, 1);
	color:#000;
}
.checkbox-row{
	width:100%;
	padding:0 10 0 10;
}
.thanks{
	text-align:center;
	margin:15 auto 0 auto;
	color:#fff;	
}
.row.form-row{
	width:100%;		
}
@media (max-width: 500px){
.row.form-row{
	-webkit-flex-direction:column;	 
}
input[type=text]{
	-webkit-flex:1;
	flex:auto;
}
}