/*
	Common 
*/

.wizard,
.tabcontrol {
	display: block;
	width: 100%;
	overflow: hidden;
}

.wizard a,
.tabcontrol a {
	outline: 0;
}

.wizard ul,
.tabcontrol ul {
	list-style: none !important;
	padding: 0;
	margin: 0;
}

.wizard ul > li,
.tabcontrol ul > li {
	display: block;
	padding: 0;
}


*,*::before,*::after{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.flex{
	display: flex;
}

.rinput{
	-webkit-appearance:none;
	border: 0px solid #ccc !important;
}

.rlabel{
	height: 70px;
	width: 100px;
	border:2px solid #18f98d;
	position: relative;
	margin: auto;
	border-radius: 10px;
	color: #18f98d;
	transition: 0.5s;
	background-color: #f7f7f7;
}

.fa{
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-80%);
}

label > span{
	font-size: 20px;
	position: absolute;
	top:10%;
	left: 50%;
	transform: translate(-50%,80%);
	font-family: "Poppins",sans-serif;
	font-weight: 500;
}

input[type="radio"]:checked + label {
	color: #4b8632 !important;
	color: white;
	box-shadow: 0 15px 45px rgba(24,249,141,0.2);
}



/* Accessibility */

.wizard > .steps .current-info,
.tabcontrol > .steps .current-info {
	position: absolute;
	left: -999em;
}

.wizard > .content > .title,
.tabcontrol > .content > .title {
	position: absolute;
	left: -999em;
}


/*
	Wizard
*/

.wizard > .steps {
	position: relative;
	display: block;
	width: 100%;
}

.wizard.vertical > .steps {
	display: inline;
	float: left;
	width: 30%;
}

.wizard > .steps .number {
	font-size: 1.429em;
}

.wizard > .steps > ul > li {
	width: 20%;
}

.wizard > .steps > ul > li,
.wizard > .actions > ul > li {
	float: left;
}

.wizard.vertical > .steps > ul > li {
	float: none;
	width: 100%;
}

.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active {
	display: block;
	width: auto;
	margin: 0 0.5em 0.5em;
	padding: 1em 1em;
	text-decoration: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active {
	background: #eee;
	color: #aaa;
	cursor: default;
}

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active {
	background: #4b8632;
	color: #fff;
	cursor: default;
}

.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active {
	background: #9dc98a;
	color: #fff;
}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active {
	background: #df1616;
	color: #fff;
}

.wizard > .content {
	background: #eee;
	display: block;
	margin: 0.5em;
	min-height: 650px;
	overflow: hidden;
	position: relative;
	width: auto;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;

}




@media (max-width: 560px) {
	

	.wizard > .content {
		min-height: 800px;
	
	}
	
	.steps {}


	.wizard > .steps > ul > li {
		display:none;
	}

}









.wizard.vertical > .content {
	display: inline;
	float: left;
	margin: 0 2.5% 0.5em 2.5%;
	width: 65%;
}

.wizard > .content > .body {
	float: left;
	position: absolute;
	width: 95%;
	height: 95%;
	/* padding: 2.5%; */
}

.wizard > .content > .body ul {
	list-style: disc !important;
}

.wizard > .content > .body ul > li {
	display: list-item;
}

.wizard > .content > .body > iframe {
	border: 0 none;
	width: 100%;
	height: 100%;
}

.wizard > .content > .body input {
	display: block;
	border: 1px solid #ccc;
}

.wizard > .content > .body input[type="checkbox"] {
	display: inline-block;
}

.wizard > .content > .body input.error {
	background: rgb(251, 227, 228);
	border: 1px solid #fbc2c4;
	color: #8a1f11;
}

.wizard > .content > .body label {
	display: inline-block;
	margin-bottom: 0.5em;
}

.wizard > .content > .body label.error {
	color: #8a1f11;
	display: inline-block;
	margin-left: 1.5em;
}

.wizard > .actions {
	position: relative;
	display: block;
	text-align: right;
	width: 100%;
}

.wizard.vertical > .actions {
	display: inline;
	float: right;
	margin: 0 2.5%;
	width: 95%;
}

.wizard > .actions > ul {
	display: inline-block;
	text-align: right;
}

.wizard > .actions > ul > li {
	margin: 0 0.5em;
}

.wizard.vertical > .actions > ul > li {
	margin: 0 0 0 1em;
}

.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
	background: #4b8632;
	color: #fff;
	display: block;
	padding: 0.5em 1em;
	text-decoration: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active {
	background: #eee;
	color: #aaa;
}

.wizard > .loading {}

.wizard > .loading .spinner {}


/*
	Tabcontrol
*/

.tabcontrol > .steps {
	position: relative;
	display: block;
	width: 100%;
}

.tabcontrol > .steps > ul {
	position: relative;
	margin: 6px 0 0 0;
	top: 1px;
	z-index: 1;
}

.tabcontrol > .steps > ul > li {
	float: left;
	margin: 5px 2px 0 0;
	padding: 1px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.tabcontrol > .steps > ul > li:hover {
	background: #edecec;
	border: 1px solid #bbb;
	padding: 0;
}

.tabcontrol > .steps > ul > li.current {
	background: #fff;
	border: 1px solid #bbb;
	border-bottom: 0 none;
	padding: 0 0 1px 0;
	margin-top: 0;
}

.tabcontrol > .steps > ul > li > a {
	color: #5f5f5f;
	display: inline-block;
	border: 0 none;
	margin: 0;
	padding: 10px 30px;
	text-decoration: none;
}

.tabcontrol > .steps > ul > li > a:hover {
	text-decoration: none;
}

.tabcontrol > .steps > ul > li.current > a {
	padding: 15px 30px 10px 30px;
}

.tabcontrol > .content {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 35em;
	overflow: hidden;
	border-top: 1px solid #bbb;
	padding-top: 20px;
}

.tabcontrol > .content > .body {
	float: left;
	position: absolute;
	width: 95%;
	height: 95%;
	padding: 2.5%;
}

.tabcontrol > .content > .body ul {
	list-style: disc !important;
}

.tabcontrol > .content > .body ul > li {
	display: list-item;
}

#parcial{
	padding-top: 5px;
}

@media (max-width: 600px){
	.wizard > .steps > ul > li{
		width: 50%;
	}

	.wizard > .steps a,
	.wizard > .steps a:hover,
	.wizard > .steps a:active{
		margin-top: 0.5em;
	}

	.wizard.vertical > .steps,
	.wizard.vertical > .actions{
		display: block;
		float: none;
		width: 100%;
	}

	.wizard.vertical > .content{
		display: block;
		float: none;
		margin: 0 0.5em 0.5em;
		width: auto;
	}

	#parcial{
		padding-top: 5px;	
	}
}

@media (max-width: 480px){
	.wizard > .steps > ul > li{
		width: 100%;
	}
}

.fundo-titulo-resumo{
	background-color:#ccc; 
	border-radius: 6px;
	margin: 0 0.5em 0.5em; 
	padding: 1.1em 1em; 
	font-family:arial; 
	font-size:18px;
}

.fundo-content-resumo{
	background-color:#ccc; 
	border-radius: 6px; 
	height:auto;
	padding: 2em 1em; 
	margin: 0 0.5em 0.5em;
	margin-bottom: 30px;
}

/* Start by setting display:none to make this hidden.
	 Then we position it in relation to the viewport window
	 with position:fixed. Width, height, top and left speak
	 for themselves. Background we set to 80% white with
	 our animation centered, and no-repeating 
*/

.modal {
	display:	none;
	position:	fixed;
	z-index:	1000;
	top:		0;
	left:		0;
	height:		100%;
	width:		100%;
	background: rgba( 255, 255, 255, .8 ) 
				url('http://i.stack.imgur.com/FhHRx.gif') 
				50% 50% 
				no-repeat;
}

/* When the body has the loading class, we turn
	 the scrollbar off with overflow:hidden 
*/

body.loading .modal {
	overflow: hidden;	 
}

/* Anytime the body has the loading class, our
	 modal element will be visible 
*/
body.loading .modal {
	display: block;
}

.resumo{
	color: #4b8632;
	;
}


/*
	pagamento form
*/

/* Credit Card Form */
.usable-creditcard-form, .usable-creditcard-form * {
	font-size: 13px;
}
.usable-creditcard-form {
	position: relative;
	padding: 0px;
	width: 300px;
	margin-left: auto;
	margin-right: auto;
}
.usable-creditcard-form .wrapper {
	border: 1px solid #CCC;
	border-top: 1px solid #AAA;
	border-right: 1px solid #AAA;
	height: 74px;
	width: 300px;
	position: relative;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.usable-creditcard-form .input-group {
	position: absolute;
	top: 300px;
}
.usable-creditcard-form .input-group.nmb_a {
	position: absolute;
	width: 200px;
	top: 0px;
	left: 0px;
}
.usable-creditcard-form .input-group.nmb_b {
	position: absolute;
	width: 100px;
	top: 0px;
	right: 0px;
}
.usable-creditcard-form .input-group.nmb_b input,
.usable-creditcard-form .input-group.nmb_d input {
	text-align: center;
}
.usable-creditcard-form .input-group.nmb_c {
	position: absolute;
	width: 200px;
	top: 37px;
	left: 0px;
}
.usable-creditcard-form .input-group.nmb_d {
	position: absolute;
	width: 100px;
	top: 37px;
	right: 0px;
}
.usable-creditcard-form input {
	background: none;
	display: block;
	width: 100%;
	padding: 10px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin:0px;
	padding-left: 35px;
	border: none;
}
.usable-creditcard-form .input-group .icon {
	position: absolute;
	width: 22px;
	height: 22px;
	background: #CCC;
	left: 8px;
	top: 7px;
}
.usable-creditcard-form .input-group.nmb_a input {
	border-right: 1px solid #ECECEC;
}
.usable-creditcard-form .input-group.nmb_c input {
	border-top: 1px solid #ECECEC;
	border-right: 1px solid #ECECEC;
}

.usable-creditcard-form input::-webkit-input-placeholder {
	font-size: 12px;
	text-transform: none;
}
.usable-creditcard-form .input-group.nmb_d input {
	border-top: 1px solid #ECECEC;
}

.usable-creditcard-form .input-group.nmb_c input {
	text-transform: uppercase;
}
.usable-creditcard-form .accept {
	color: #999;
	font-size: 11px;
	margin-bottom: 5px;
}
.usable-creditcard-form .footer {
	margin-top: 3px;
	position: relative;
	margin-left: 5px;
	margin-right: 5px;
}
.usable-creditcard-form .footer img {
	padding: 0px;
	margin: 0px;
}
.usable-creditcard-form .iugu-btn {
	position: absolute;
	top: 0px;
	right: 0px;
}

/* Do not forget to store your images in a secure server */
.usable-creditcard-form .input-group .icon.ccic-name {
	background: url("https://s3-sa-east-1.amazonaws.com/storage.pupui.com.br/9CA0F40E971643D1B7C8DE46BBC18396/assets/ccic-name.1cafa1882fdd56f8425de54a5a5bbd1e.png") no-repeat;
}
.usable-creditcard-form .input-group .icon.ccic-exp {
	background: url("https://s3-sa-east-1.amazonaws.com/storage.pupui.com.br/9CA0F40E971643D1B7C8DE46BBC18396/assets/ccic-exp.05e708b1489d5e00c871f20ba33bbff3.png") no-repeat;
}
.usable-creditcard-form .input-group .icon.ccic-brand {
	background: url("https://s3-sa-east-1.amazonaws.com/storage.pupui.com.br/9CA0F40E971643D1B7C8DE46BBC18396/assets/ccic-brands.48dba03883007f86e118f683dcfc4297.png") no-repeat;
}
.usable-creditcard-form .input-group .icon.ccic-cvv { background: url("https://s3-sa-east-1.amazonaws.com/storage.pupui.com.br/9CA0F40E971643D1B7C8DE46BBC18396/assets/ccic-cvv.1fe78dcc390427094bdc14dedea10f34.png") no-repeat; }

.usable-creditcard-form .input-group .icon.ccic-cvv,
.usable-creditcard-form .input-group .icon.ccic-brand
{
	-webkit-transition:background-position .2s ease-in;
	-moz-transition:background-position .2s ease-in;
	-o-transition:background-position .2s ease-in;
	transition:background-position .2s ease-in;
}

.amex .usable-creditcard-form .input-group .icon.ccic-cvv {
	background-position: 0px -22px;
}

.amex .usable-creditcard-form .input-group .icon.ccic-brand {
	background-position: 0px -110px;
}

.visa .usable-creditcard-form .input-group .icon.ccic-brand {
	background-position: 0px -22px;
}

.diners .usable-creditcard-form .input-group .icon.ccic-brand {
	background-position: 0px -88px;
}

.mastercard .usable-creditcard-form .input-group .icon.ccic-brand {
	background-position: 0px -66px;
}

/* Non Credit Card Form - Token Area */
.token-area {
	margin-top: 20px;
	margin-bottom: 20px;
	border: 1px dotted #CCC;
	display: block;
	padding: 20px;
	background: #EFEFEF;
}

.loader{
	width:60px;
	height:60px;
	background:0 0;
	border:10px solid transparent;
	border-top-color:#f56;
	border-left-color:#f56;
	border-radius:50%;
	animation:loader .75s 10 ease forwards
}
@keyframes loader{
	100%{
		transform:rotate(360deg)
	}
}