@charset "UTF-8";
/* CSS Document */

/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}

html {
	height: 100%;
	background: url(https://cadastro.g7assessoriajuridica.com/back-mae.jpg) no-repeat center;
	background-size: auto;
}


#next-2 {
	display: none;
}

#btvalide {
	display: inline-block;
}
#btvoltar {
	display: none;
}

#btindica {
	display: none;
}
#ok {
	display: block;
}
.yes {
	display: none;
	transition: all 0.5s;
}

.no {
	display: none;
	transition: all 0.5s;
}

.start {
	display: block;
}

body {
	font-family: 'Roboto', sans-serif;
	background-color: rgba(0,0,0,0.6);
	min-width: 100%;
	min-height: 120%;
	background-size: auto;
}

/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 25px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 25%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: #27AE60;
	color: white;
}

/*form styles*/
#form-id, #startform, #noform {
	width: 400px;
	margin: 20px auto;
	text-align: center;
	position: relative;
}
#form-id fieldset, #startform fieldset, #noform fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	box-sizing: border-box;
	width: 80%;
	margin: 0 10%;
	
	/*stacking fieldsets above each other*/
	position: relative;
}

#form-id h4 {
	margin: 5px;
}

#form-id h5 {
	margin-top: -15px;
    font-weight: 100;
    color: #555;
    margin-bottom: 20px;
    font-size: 10px;
}

#form-id label {
	font-weight: 300;
}
/*Hide all except first fieldset*/
#form-id fieldset:not(:first-of-type){
	display: none;
}
/*inputs*/
#form-id input, #form-id select, #form-id textarea {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 20px;
	box-sizing: border-box;
	font-family: montserrat;
	color: #2C3E50;
	font-size: 13px;
}
/*buttons*/
#form-id .action-button {
	width: 100px;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#form-id .action-button:disabled {
	width: 100px;
	background: #ccc;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#form-id .action-button:hover, #form-id .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}

#form-id .action-button:disabled:hover, #form-id .action-button:disabled:focus {
	box-shadow: 0 0 0 0px white, 0 0 0 0px #ccc;
}

#head {
	width: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

#head div {
	padding: 50px 0;
}

#head img {
	width: 250px;
}

/* Start Pop-up */

#info {
	width: 330px;
	padding: 10px 10px 0 10px;
	display: inline-flex;
    justify-content: center;
    align-items: center;
}

#info p {
	font-weight: 100;
	font-size: 15px;
	padding: 10px 0;
	text-align: left;
}

#info h4 {
	text-align: center;
	padding: 0 0 20px 0;
}


#btalerta {
	width: 350px;
    padding-top: 15px;
	display: flex;
	justify-content: center;
	border-top: solid 1px #ccc;
}

#btalerta button {
	width: 80px;
	height: 35px;
	background: #27AE60;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
}

.content {
	background-color: white;
	border-radius: 10px;
	width: 350px;
	padding: 20px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal {
	display:none;
	position: fixed;
	z-index: 2;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0,0,0,0.7);
}
.contain {
	position: relative;
}
.modal-content {
	width: 100%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 15% 0px;
}

.closex {
	position: absolute;
	right: 10px;
	top: 0;
	color: #aaa;
    font-size: 30px;
	font-weight: bold;
}

.closex:hover,.closex:focus {
	color: red;
	cursor: pointer;
}

.animate {
	animation: zoom 0.6s
}

@keyframes zoom {
	from {transform: scale(0)} 
	to {transform: scale(1)}
}

@media screen and (max-width: 500px)
{
	.content {
		width: 280px;
		padding: 10px;
	}

	.modal-content {
		width: 100%;
		display: inline-flex;
		justify-content: center;
		align-items: center;
		margin: 20% 0;
	}
	#info {
		width: 260px;
	}
	#btalerta {
		width: 280px;
	}
	.closex {
		right: 10px;
	}
}