.checkout-bg{
   background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url('../img/checkout-bg.jpg');
	
}

.checkout-bg2{
   background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url('../img/checkout-bg2.jpg');
	
}


.checkout-form-conteiner {
	background-color: #fff;
	padding: 30px;
	border-radius: 8px;
}


.checkout-check-documento {
	font-size: 0.8em;
	text-align: left;
	padding: 5px;
	padding-left: 0px;
        display: none;
}

.checkout-check-documento.valido {
	color: green;
}

.checkout-check-documento.invalido {
	color: red;
}


.checkout-check-email {
	font-size: 0.8em;
	text-align: left;
	padding: 5px;
	padding-left: 0px;
        display: none;
}

.checkout-check-email.valido {
	color: green;
}

.checkout-check-email.invalido {
	color: red;
}



.home{
   text-align: center;
}

.fixed-logo {
	position: relative;
	margin: 0 auto;
	width: 150px;
	margin-top: 20px;
	padding-bottom: 20px;
}

.fixed-logo > img{
    max-width: 100%;
}

.home {
	background-color: #fff;
	width: 80%;
	margin: 0 auto;
	padding: 15px;
	border-radius: 10px;
}

/*Steps*/
.stepper-wrapper {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 20px;
}
.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.stepper-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: -50%;
  z-index: 2;
}

.stepper-item::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 2;
}

.stepper-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccc;
  margin-bottom: 6px;
}

.stepper-item.active {
  font-weight: bold;
}

.stepper-item.completed .step-counter {
	background-color: var(--cor1);
	color: #fff;
	font-weight: 700;
}
.stepper-item.completed::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid var(--cor1);
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 3;
}

.stepper-item:first-child::before {
  content: none;
}
.stepper-item:last-child::after {
  content: none;
}
.step-name {
	font-size: 0.9em;
}
/*Steps*/

.documento{
    text-align: center;
    font-weight: 700;
}




@media only screen and (max-width : 768px) {
   .home {
	background-color: #fff;
	width: 90%;
        padding: 5px;
   }
   .step-name {
	font-size: 0.7em;
    }
 }
 
 
 /*Validacao de senha*/
 /* The message box is shown when the user clicks on the password field */
#message {
  display:none;
  background: #f1f1f1;
  color: #000;
  position: relative;
  padding: 10px;
  margin-top: 10px;
  padding-left: 20px;
  font-size: 0.8em;
  text-align: left;
}

#message p {
 padding-left: 5px;
 margin: 0px;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: green;
}

.valid:before {
  position: relative;
  left: -5px;
  content: "✓";
}

/* Add a red text color and an "x" icon when the requirements are wrong */
.invalid {
  color: red;
}

.invalid:before {
  position: relative;
  left: -5px;
  content: "☓";
}