@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: 13pt;
}
/* Create a custom checkbox */
.form-check .form-check-input {    
  left: 0;
  bottom: 0;
  height: 25px;
  width: 25px;
  border-radius: 15px;
  background-color: #ccc;
}

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: 'Poppins', sans-serif;
	font-weight: 300;
	font-size: 13pt;
	color: #3d3d3b;
	background-color: #F6F6F6;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border: 0px;
	padding: 1% 1.5%;
	margin-top:8px;
	outline:none;
}
input, textarea, file {
	width: 97%;
	height: 2em;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-size: 13pt;
	color: #3d3d3b;
	letter-spacing: 0pt;
	background-color: #F6F6F6;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border: 0px;
	padding: 1% 1.5%;
	margin-top:8px;
	outline:none;
}
input.form-check-input {
    width: auto;
	font-family: 'Poppins', sans-serif;
	color: #3d3d3b;
	letter-spacing: 0pt;
	background-color: #F6F6F6;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border: 0px;
	padding: 1% 1.5%;
	margin-top:5px;
	outline:none;
}
label {
	width: 100%;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 13pt;
    float: left;
    margin-top: 8px;
	color: #3d3d3b;
	outline:none;
    text-align: left;
    line-height: 20pt;
}
label.form-check-label {
    font-weight: 400;
    color: #3d3d3b;
    font-size: 13pt;
    line-height: 25pt;
}

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;
}
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
    *height: 13px; /* 3 */
    *width: 13px; /* 3 */
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: rgba(82,168,236,0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(82,168,236,0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(82,168,236,0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(82,168,236,0.6);
}

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  *margin-top: 0;
  line-height: normal;
}

input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
  width: auto;
}

.uneditable-input,
.uneditable-textarea {
  color: #999;
  cursor: not-allowed;
  background-color: #fcfcfc;
  border-color: #ccc;
  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.025);
  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.025);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.025);
}

.uneditable-input {
  overflow: hidden;
  white-space: nowrap;
}

.uneditable-textarea {
  width: auto;
  height: auto;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
}


/*CHECKBOX*/
.custom-checkbox {
  display: none;
}

.custom-checkbox + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
}

/* Caja del checkbox */
.custom-checkbox + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 0px;
  border-radius: 4px;
  background-color: #F6F6F6;
  transition: all 0.2s ease;
}

/* Checkmark (marca dentro del cuadro) */
.custom-checkbox:checked + label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 6px;
  height: 12px;
  vertical-align: middle;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Cambio de color cuando está marcado */
.custom-checkbox:checked + label::before {
  background-color: #f50036;
  border-color: #f50036;
}



/* Styles the submit button */
#send {
	background-color: #000;
	font-family: 'Unbounded', sans-serif;
	font-weight:600;
	font-size: 14pt;
	color: #fff;
    margin-top: 30px;
	letter-spacing: 1pt;
	line-height: 20pt;
	width:100%;
	height:6vw;
	text-align: center;
	/* text-indent:-9999px; */
	border:none;
	cursor:pointer;
    border-radius: 40px;
    transition: 0.5s ease;
}

/* Styles the submit hover */	
#send:hover {
	color:#fff;
	background-color: #f50036;
	opacity: 1;
    cursor: pointer;
    transition: 0.5s ease;
}

@media (max-width: 769px) {
    #send {
	font-size: 13pt;
	line-height: 20pt;
	height:10vw;
}   
}

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

}
