* {
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-family: 'helvetica', sans-serif;
}
svg, img, object {
	width: 100%;
}
a {
	color: inherit;
}


/*------------- form --------------*/

header, main, footer {
	width: 100%;
	float: left;
	font-family: 'helvetica', sans-serif;
}
header {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 10vh;
	margin-top: 5%;
}
header h1 {
	width: 47%;
	max-width: 800px;
}

main section  {
	width: 90%;
	margin: auto;
	max-width: 800px;
	/*margin-bottom: 1%;*/
}

main section form {
	width: 60%;
	font-size: 2.5em;
	margin: auto;
	
}
main section form p {
	font-weight: 600;
	margin: 5% 0px 0% 0px;
	letter-spacing: 3px;
}


main section form input {
	width: 100%;
	/*height: 5vh;*/
	font-size: 0.5em;
	border: 1px solid black;
	padding: 1%;
	border-radius: 0;
}

/*Gabriela*/
.checkbox{
	margin-top: 5%;
}
.checkbox input{
	width: 15px;
	height: 15px;
}

/*Fin Gabriela*/


main section form .customCheckBox {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	height: 100px;
}
main section form .customCheckBox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;

}
main section form .checkmark{
	position: absolute;
	top: 0;
	left: 0;
	height: 70px;
	width: 70px;
	background-color: #fff;
	border: 1px solid black;
	margin-top: 2%;
	
}

.customCheckBox .text{
	margin-left: 8%;
}
/* When the checkbox is checked, add a blue background */
.customCheckBox input:checked ~ .checkmark {
  background-color: black;  
  color: white;
}
.customCheckBox input:checked ~ .checkmark:after {
  display: block;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Create the checkmark/indicator (hidden when not checked) */
.customCheckBox .checkmark:after {
    left: 25px;
    top: 15px;
    width: 15px;
    height: 30px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

section#perfumes{
	width: 50%;
	display: flex;
	max-height: 200px;
	margin-top: 1%;
}

section#perfumes img{
	float: left;
	width: 10%;
	margin:auto;
	height: auto;
}
section#perfumes img:first-child{
	margin-left: 2%;
}

section#perfumes img:nth-child(4) {
	margin-right: 0%;
}

footer .content {
	max-width: 800px;
	display: flex;
	justify-content: flex-end;
	margin: auto;
	margin-right: 100px;
	position: relative;
	top: -57px;
	text-transform: uppercase;
}
footer .button {
	background-color: inherit;
	border: 1px solid black;
	box-shadow: 0;	
	display: flex;
	justify-content: flex-end;    
    font-size: 1em;
    font-weight: 600;
    display: flex;    
    align-items: center;
    padding-right: 3%; 
    width: auto;
    float: right;
    padding: 2%;
    text-decoration: none;
    color: inherit;
}
footer .button img {
	width: 12%;
	margin-left: 10%;

}

/*------------- questuions -------------*/

section.full {
	width: 100%;
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3%;
}
section.full h2 {
	font-size: 3em;
	font-weight: 300;
}
section#options {
	display: flex;
	flex-direction: column;
}

section#option.dress {
	
}
section#options .imgs, section#options .texts{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2% 0;
}
section#options .imgs label{		
	height: auto;
	width: 33.33%;
	display: flex;
	max-height: 200px;
	justify-content: center;

}

.check input {
  display: none;
}
section#options.dress .check input:checked  + img {
	height: 200px;	
}
.check input:checked  + img {
  width: auto;;
  height: 150px;
}

/*------------------VESTIDOS ----------------------*/
section#option.dress .imgs{
	margin: 0;
}
section#option.dress .imgs{
	height: 280px;
}
section#options.dress .check img{
	height: 280px;
}

.check img {
	height: 200px;
	width: auto;
}
section#options.dress .texts {
	margin-top: 3%;
}
section#options.dress .imgs label {
	max-height: inherit;
}

/*section#options .imgs input:first-child{
	margin: 0;
}*/

section#options .texts {
	margin-bottom: 4%;
}
section#options .texts p{
	flex-grow: 1;
	font-size: 2.1em;
	text-align: center;
	width: 33.33%;
	font-weight: 300;
}

footer .content_pregunta {
	max-width: 800px;
	display: flex;
	justify-content: flex-end;
	margin: auto;
	margin-right: 100px;
	position: relative;	
}

footer .content_pregunta .button{
	background-color: inherit;
	border: 1px solid black;
	box-shadow: 0;
	display: flex;
	justify-content: flex-end;
	font-size: 1em;
	font-weight: 600;
	display: flex;
	align-items: center;
	padding-right: 2%;
	width: auto;
	float: right;
	width: 200px;
	height: 30px;
}

/*---------------- RESULTADO ---------------------------*/

.grid {
	display: grid;
	grid-template-rows: repeat(9, 1fr);
	grid-template-columns: repeat(6, 1fr);
	height: 60vh;
}	
.grid .gray{
	background-color: gray;
	grid-column: 1 /span 1;
	grid-row: auto /span 3;
	margin-bottom: 15%;
}

.grid .gray img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.grid .center {
	grid-row: 1 /span 1;	
	grid-column: 2 /span 4;
}
.grid .center.body {
	grid-row: 3 /span 7;
	padding: 2%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.grid .center.body .nameImages{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.grid .center.body img,  .grid .center.body p{
	width: 27%;
	display: inline-block;
	font-size: 150pt;
	justify-content:  center;
	text-align: center;
	padding: 3%;
} 
.grid .center.body p.nameImage {
	font-size: 20pt;
	width: 100%;
}
.grid .center.body img{
	justify-content: flex-end;
	width: auto;
	height: 100%;
	max-height: 300px;
}
.grid .center.body img .nameImage {
	font-size: 25pt;
}
.grid .center.middle {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 3.5em;
	font-weight: 300;
	
}
.grid .right {
	grid-row: 1 /span 3;
	grid-column: 6 /span 1;
}
.grid .right.pos2 {
	grid-row: 4 /span 3;
	grid-column: 6 /span 1;
}
.grid .right.pos3 {
	grid-row: 7 /span 3;
	grid-column: 6 /span 1;
}
footer .content_resultado {
	max-width: 800px;
	display: flex;
	justify-content: flex-end;
	margin: 10% auto;
	margin-right: 100px;
	position: relative;

}

footer .content_resultado button{
	background-color: inherit;
	border: 1px solid black;
	box-shadow: 0;
	display: flex;
	justify-content: flex-end;
	font-size: 1em;
	font-weight: 600;
	display: flex;
	align-items: center;
	padding-right: 2%;
	width: auto;
	float: right;
	text-transform: uppercase;

}
/*--------------- PERFIL ---------------------*/


section#options.profile .imgs label {
	/*max-height: 100%;*/
}
section#options.profile .texts {
	display: flex;
	justify-content: center;
	align-items: center;

}
section#options.profile .texts p {
	width: 33.33%;
	flex-grow: 0;
}
/*--------------- INTRO ----------------*/
 #title {
 	font-size: 3em;
 	width: 100%;
 	text-align: center;
 	padding: 5% 0; 	
 	font-weight: 300;
 }
 #subtitle {
 	font-size: 2em;
 	width: 100%;
 	text-align: center;
 	padding: 0 0 1% 0; 	
 	font-weight: 300;
 }
.items {
	width: 80%;	
	margin: auto;
	margin-top: 3%;
	margin-bottom: 3%;
}
.items .item {
	list-style: none;
	width: 20%;
	margin: 0 2%;
	display: inline-block;
	text-align: center;	
}
.items .item img{
	max-height: 250px;
	width: auto;
	margin: auto;
}
#gracias{
	width: 100%;	
	margin: auto;
	margin-top: 3%;
	margin-bottom: 1%;
}