/*
* Desenvolvedor Gabriel Afonso
* www.gabrielafonso.dev
*/

@charset "UTF-8";

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000;
}
select {
    background: url(https://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png) no-repeat right #fff !important;
	-webkit-appearance: none;
	background-position: right 20px center !important;
}

a, input {
	outline: none;
}

:root {
	--cor-primaria: #282a36;
	--cor-secundaria: #5dce43;
}

html {
	height: 100%;
	width: 100%;
}

body {
	font-family: 'Montserrat', sans-serif;
	min-height: 100%;
	width: 100%;
	align-items: center;
    text-align: center;
    background-image: linear-gradient(to right bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.76)), url('../imagens/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#home-1 {
	width: 100%;
}

/* Animação de entrada */
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  	opacity:0;
	-webkit-animation:fadeIn ease-in 1;
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;

	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	animation-duration:1s;
}
.fadeIn.first {
	-webkit-animation-delay: 0.4s;
	-moz-animation-delay: 0.4s;
  	animation-delay: 0.4s;
}
.fadeIn.second {
	-webkit-animation-delay: 0.6s;
	-moz-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.fadeIn.third {
	-webkit-animation-delay: 0.8s;
	-moz-animation-delay: 0.8s;
	animation-delay: 0.8s;
}
.fadeIn.fourth {
	-webkit-animation-delay: 1s;
	-moz-animation-delay: 1s;
	animation-delay: 1s;
}

/* Animação Loading */
#loadingProcess {
	width: 100%;
	height: 100%;
	position: fixed;
	background: rgba(0,0,0,.85);
	z-index: 10;
	display: flex;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	-webkit-animation:fadeIn ease-in 1;
	-moz-animation:fadeIn ease-in 1;
	animation:fadeIn ease-in 1;

	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;

	-webkit-animation-duration:1s;
	-moz-animation-duration:1s;
	animation-duration:1s;
}
#loadingProcess .loader {
	border: 16px solid #f3f3f3; /* Light grey */
	border-top: 16px solid var(--cor-secundaria); /* Blue */
	border-radius: 50%;
	width: 120px;
	height: 120px;
	animation: spin 2s linear infinite;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* =============================================
* RADIO BUTTONS
=============================================== */
#paymentSection .selectPayment label {
    cursor: pointer;
	position: relative;
	width: 100%;
	height: 150px;
	background: var(--cor-primaria);
	margin: 0;
	border-radius: 10px;
    box-shadow: 0 6px 4px rgba(0,0,0,.12);
    -o-box-shadow: 0 6px 4px rgba(0,0,0,.12);
    -moz-box-shadow: 0 6px 4px rgba(0,0,0,.12);
    -webkit-box-shadow: 0 6px 4px rgba(0,0,0,.12);
    
}
#paymentSection .selectPayment span p {
	margin: 0;
	font-size: 16px;
}

input[name="paymentMethod"] {
	opacity: 0;
	position: relative;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

input[name="paymentMethod"] + span {
	font-size: 50px;
	color: #fff;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	padding: 10px;
	border-radius: 10px;
}

input[name="paymentMethod"]:checked + span {
	color: #fff;
	background-color: var(--cor-secundaria);
}

input[name="paymentMethod"]:focus + span {
	color: #fff;
}

/* =============================================
* RADIO BUTTONS TITULARCARTAO
=============================================== */
#sectionTitular {
	margin-bottom: 60px;
}
#sectionTitular label {
    cursor: pointer;
	position: relative;
	width: 230px;
	height: 60px;
	background: var(--cor-primaria);
	margin: 0;
	border-radius: 10px;
    box-shadow: 0 6px 4px rgba(0,0,0,.12);
    -o-box-shadow: 0 6px 4px rgba(0,0,0,.12);
    -moz-box-shadow: 0 6px 4px rgba(0,0,0,.12);
    -webkit-box-shadow: 0 6px 4px rgba(0,0,0,.12);
}
#sectionTitular label + label {
	margin-left: 15px;
}
#sectionTitular span p {
	margin: 0;
	font-size: 18px;
}

.bandeirasaceitas, .bancosaceitos {
    margin: 0 0 60px;
    background: #f0f0f0;
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #e1e1e1;
}

/* checkbox Banks */
#checkBanks {
  width: 100%;
  text-align: center;
  margin: 0 0 60px;
}
#checkBanks h1 {
    color: #353535;
    font-size: 20px;
    margin-bottom: 20px;
}
#checkBanks input[type="radio"] {
    display: none;
}
#checkBanks input[type="radio"]:checked + .box {
    box-shadow: 0 10px 24px rgba(34, 33, 33, 0.1);
    -o-box-shadow: 0 10px 24px rgba(34, 33, 33, 0.1);
    -moz-box-shadow: 0 10px 24px rgba(34, 33, 33, 0.1);
    -webkit-box-shadow: 0 10px 24px rgba(34, 33, 33, 0.1);
    margin: 6px;
    border: 5px solid #282a36;
}
#checkBanks input[type="radio"]:checked + .box span {
  color: white;
  transform: translateY(70px);
}
#checkBanks input[type="radio"]:checked + .box span:before {
  transform: translateY(0px);
  opacity: 1;
}
#checkBanks .box {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  background-color: #fff;
  transition: all 250ms ease;
  will-change: transition;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  position: relative;
  font-family: "Dax", sans-serif;
  font-weight: 900;
}
#checkBanks .box:active {
  transform: translateY(10px);
}
#checkBanks .box span {
  position: absolute;
  transform: translate(0, 60px);
  left: 0;
  right: 0;
  transition: all 300ms ease;
  font-size: 1.5em;
  user-select: none;
  color: #96b8bd;
}
#checkBanks .box span:before {
  font-size: 1.2em;
  font-family: FontAwesome;
  display: block;
  transform: translateY(-80px);
  opacity: 0;
  transition: all 300ms ease-in-out;
  font-weight: normal;
  color: white;
}
#checkBanks .bb-bank {
  background-image: url('../imagens/bb-bank.png');
  background-size: cover;
  background-position: center;
}
#checkBanks .banrisul-bank {
  background-image: url('../imagens/banrisul-bank.png');
  background-size: cover;
  background-position: center;
}
#checkBanks .bradesco-bank {
    background-image: url('../imagens/bradesco-bank.png');
    background-size: cover;
    background-position: center;
}
#checkBanks .itau-bank {
    background-image: url('../imagens/itau-bank.png');
    background-size: cover;
    background-position: center;
}
  
#checkBanks p {
  color: #fff;
  font-family: "Dax", sans-serif;
  font-weight: 400;
}
#checkBanks p a {
  text-decoration: underline;
  font-weight: bold;
  color: #FFF;
}
#checkBanks p span:after {
  content: '\f0e7';
  font-family: FontAwesome;
  color: yellow;
}
/* FINISH checkbox banks */

input[name="titularCartao"] {
	opacity: 0;
	position: relative;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

input[name="titularCartao"] + span {
	font-size: 50px;
	color: #fff;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	padding: 10px;
	border-radius: 10px;
	align-items: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

input[name="titularCartao"]:checked + span {
	color: #fff;
	background-color: var(--cor-secundaria);
}

input[name="titularCartao"]:focus + span {
	color: #fff;
}

#infoPagamento .content {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0,0,0,.1);
	-o-box-shadow: 0 10px 20px rgba(0,0,0,.1);
	-moz-box-shadow: 0 10px 20px rgba(0,0,0,.1);
	-webkit-box-shadow: 0 10px 20px rgba(0,0,0,.1);
	background: #fff;
	padding: 40px;
	margin-bottom: 20px;
	margin: 40px 0 0;
}
#infoPagamento .content .vendedorLogo {
	width: 100%;
	padding: 20px 0;
	cursor: pointer;
	position: relative;
	background: var(--cor-primaria);
	margin: 0 0 20px;
	border-radius: 10px;
}
#infoPagamento .transactionValue {
  font-size: 20px;
  text-align: center;
	color: var(--cor-primaria);
}
#infoPagamento .transactionValue span {
	display: block;
  font-size: 40px;
  color: #5dce43;
  font-family: 'Nexa-Bold', sans-serif;
}

/* =============================================
* CENTERING, CONTAINER STYLING ETC || IGNORE
=============================================== */
#formPagamento .contentform {
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0,0,0,.1);
	-o-box-shadow: 0 10px 20px rgba(0,0,0,.1);
	-moz-box-shadow: 0 10px 20px rgba(0,0,0,.1);
	-webkit-box-shadow: 0 10px 20px rgba(0,0,0,.1);
	background: #fff;
	padding: 40px;
	margin-bottom: 20px;
	margin: 40px 0;
}
#formPagamento h1 {
    font-size: 28px;
}
#formPagamento h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color:#424242;
    font-family: 'Nexa-Book', sans-serif;
}

#paymentSection {
	padding: 0 0 60px;
}

#resultadoTransacao {
	position: relative;
    padding: 0 5px;
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    display: none;
    margin-bottom: 40px;
}
#resultadoTransacao #erroForm, #resultadoTransacao #sucessoForm{
	display: none;
}
#resultadoTransacao #erroForm {
	background: #756c6c;
    color: #fff;
    padding: 30px;
    border-radius: 5px;
    text-align: left;
}
#resultadoTransacao #erroForm h1 {
    margin-bottom: 30px;
    text-align: center;
}
#resultadoTransacao #erroForm p {
    margin: 0 0 5px;
    padding-left: 20px;
}
#resultadoTransacao #erroForm p::before {
    content: "•";
    color: #f0f0f0;
    font-size: 40px;
    position: absolute;
    margin-top: -22px;
    margin-left: -20px;
}

#headerPagInform {
	background: #fff;
	height: 100%;
	max-height: 200px;
    box-shadow: 0 0 20px rgba(0,0,0,.12);
    box-shadow: 0 6px 4px rgba(0,0,0,.12);
    -o-box-shadow: 0 6px 4px rgba(0,0,0,.12);
    -moz-box-shadow: 0 6px 4px rgba(0,0,0,.12);
    -webkit-box-shadow: 0 6px 4px rgba(0,0,0,.12);
}
#headerPagInform .content {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100px;
}
#headerPagInform .content .row div {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: right;
	text-align: right;
}
#headerPagInform span {
	background: #eaeaea;
	padding: 10px 15px;
	border-radius: 10px;
	font-size: 16px;
}
#headerPagInform span i {
	font-size: 18px;
	color: #5dce43;
	margin-right: 8px;
}
#headerPagInform img.pagseguroprocess {
	position: absolute;
	height: 100%;
	left: 0;
}

#headerPagInform h1 {
	font-weight: 300;
	color: #fff;
	text-align: center;
	margin: 0;
}

#paymentSection .selectPayment {
	display: inline-grid;
    grid-template-columns: 25% 25% 25% 25%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-width: 100%;
}
#paymentSection .selectPayment .payment-class {
    padding: 0 5px;
}

section#sectionCredit {
    position: relative;
    text-align: left;
}

#formularioTotal {
	position: relative;
	align-items: center;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}
#formularioTotal .content {
	width: 100%;
}
#formularioTotal .content input[type="text"]{
    display: block;
    width: 100%;
    font-size: 22px;
    padding: 12px 20px;
    border: 1px solid #d9d9d9;
    line-height: 1.5;
    margin-bottom: 20px;
    box-shadow: none;
}
#formularioTotal .content .ddd {
	text-align: center;
	padding: 12px 20px 8px!important;
}

select {
	display: block;
	width: 100%;
	font-size: 18px;
	padding: 17px 20px 15px 20px;
	border: 1px solid #d9d9d9;
	line-height: 1.5;
	box-shadow: 0 5px 10px rgba(0,0,0,.1);
	margin-bottom: 20px;
	outline: none;
	cursor: pointer;
}

#dadosComprador {
    text-align: left;
}

#btnComprar {
    margin-top: 30px;
	padding: 10px 30px;
	font-family: 'Nexa-Heavy', sans-serif;
	font-size: 26px;
	border-radius: 50px;
	background: #5dce43;
	color: #fff;
	border: 0;
    box-shadow: 0 10px 10px rgba(0,0,0,.12);
    -o-box-shadow: 0 10px 10px rgba(0,0,0,.12);
    -moz-box-shadow: 0 10px 10px rgba(0,0,0,.12);
    -webkit-box-shadow: 0 10px 10px rgba(0,0,0,.12);
}
#btnComprar:hover {
    background: #282a36;
}
  
.input{
	border: none;
	flex: 1;
}

.input-icon-wrap .input-icon  {
	height: 55px;
	width: 65px;
	padding-left: 2px;
	align-items: center;
	display: flex;
	position: absolute;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	font-size: 24px;
	color: #6a6a6a;
}
.input-icon-wrap input {
	padding: 12px 20px 8px 60px!important;
}

.identificaCartao {
	height: 55px;
	width: 65px;
	padding-right: 2px;
	align-items: center;
	display: flex;
	position: absolute;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	right: 0;
}
.identificaCartao img {
	position: absolute;
	z-index: 1;
	right: 10px;
}

#dadosdoCartao {
	margin-bottom: 60px;
}

#responseResult {
	width: 100%;
}
#responseResult .content {
	width: 100%;
	margin-top: 40px;
	border: 1px solid;
	background: transparent;
	padding: 20px;
	color: transparent;
	text-align: left;
	box-shadow: 0 10px 20px rgba(0,0,0,.1);
	-o-box-shadow: 0 10px 20px rgba(0,0,0,.1);
	-moz-box-shadow: 0 10px 20px rgba(0,0,0,.1);
	-webkit-box-shadow: 0 10px 20px rgba(0,0,0,.1);
	border-radius: 10px;
}
#responseResult .success {
	color: #fff!important;
	border-color: #41b726!important;
	background: #5dce43!important;
}
#responseResult .content h1 {
	margin: 0;
	font-size: 40px;
}
#responseResult .content p {
	margin: 0;
	font-size: 20px;
}
#responseResult .paymentLink {
	margin: 40px 0;
}
#responseResult .paymentLink a {
	background: transparent;
	padding: 20px;
	font-size: 26px;
	color: transparent;
	border-radius: 10px;
	border: 1px solid transparent;
	text-decoration: none;
}
#responseResult .paymentLink a:hover {
	background: #4fc634 !important;
}

/* INPUT CSS */

#endDonoCartao, .dadosDonoCartao {
    padding: 60px 0 20px;
}
#endDonoCartao  {
    padding: 60px 0;
}
#endDonoCartao h1 {
    padding: 10px 0;
}
#endDonoCartao p.cobranca-titular {
    padding: 20px;
    background:#ffab2b;
    margin-bottom: 20px;
    color:#2d2d2d;
}

#formularioTotal .row.no-margin input {
    margin: 0;
}
#formularioTotal span.descricao-input {
    display: block;
    margin: 5px 5px 15px;
    font-size: 15px;
    color: #2d2d2d
}

#infoBoletoValue {
    display: block;
    background: #282a36;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    font-size: 18px;
}
#infoBoletoValue p {
    margin: 0;
}

#btnComprovante {
    line-height: 4;
    padding: 12px 20px;
    font-family: 'Nexa-Heavy', sans-serif;
    font-size: 26px;
    border-radius: 50px;
    background: #5dce43;
    color: #fff;
    border: 0;
    text-decoration: none;
    box-shadow: 0 10px 10px rgba(0,0,0,.12);
    -o-box-shadow: 0 10px 10px rgba(0,0,0,.12);
    -moz-box-shadow: 0 10px 10px rgba(0,0,0,.12);
    -webkit-box-shadow: 0 10px 10px rgba(0,0,0,.12);
}
#btnComprovante:hover {
    background: #282a36;
}

#sectionTransfer h1 {
    font-size: 20px;
    margin-bottom: 40px;
}
#sectionTransfer .transfer-dados {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,.1);
    -o-box-shadow: 0 10px 50px rgba(0,0,0,.1);
    -moz-box-shadow: 0 10px 50px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 10px 50px
    rgba(0,0,0,.1);
}
#sectionTransfer .transfer-dados .transfer-class{
    display: inline-grid;
    grid-template-columns: 40% 60%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-width: 100%;
}
#sectionTransfer .transfer-dados .transfer-class .info-class {
    background: #5dce43;
    border-bottom: 1px solid #49b330;
    color: #fff;
    font-size: 20px;
    font-weight: initial;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#sectionTransfer .transfer-dados .transfer-class .value-class {
    text-align: left;
    border-bottom: 1px solid #d2d1d1;
    padding: 25px 10px 20px 22px;
    display: flex;
    justify-content: left;
    align-items: center;
}
.value-class.noborder, .info-class.noborder {
    border: none!important;
}
