* {
	font-family: sans-serif;
	font-size: 1em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.form {
  width: 100%;
	max-width: 800px;
	min-width: 360px;
	margin: 0 auto;
	
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: start;
}

.form > div {
  width: 100%;
  text-align: center;
  margin: 5px auto;
}

.logo {
  width: 200px;
  margin: 0 auto;
}

.banner {
  width: 100%;
}

.tabList {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	padding: 40;
	margin: 20;
}

.tabitem {
	display: flex;
	align-items: center;
	text-align: center;
	min-width: 150px;
	height: 50px;
	color: b4c1c8;
	cursor: default;
	text-align: center;
}

.tabitem:hover {
	cursor: pointer;
	border-bottom: 4px solid rgb(193, 188, 220);
}

.item {
	display: flex;
	align-items: center;
	margin: 0 auto;
	font-size: 1.8em; 
}
@media(max-width:600px){
  .tabitem {
    min-width: 100px;
  }
  .item {
    font-size: 1em;
  }
}

.active {
	border-bottom: 4px solid rgb(129, 118, 184);
	color: #3d525c;
}

.hide {
	display: none !important;
}

.formulario {
	display: flex;
	flex-direction: column;
}

.formLine {
	display: flex;
	height: 40px;
	margin-bottom: 10px;
}

.formLine>div {
	display: flex;
	height: 30px;
}

.formLineHalf {
	display: flex;
	height: 40px;
	margin-bottom: 10px;
	width: 48%;
}

.formLineLivre {
	display: flex;
	/* height: 40px; */
	margin-bottom: 10px;
	padding: 20px;
}

input {
	border: 0;
	outline: 0;
	width: 100%;
}

.boxBorder {
	border: 1px solid #ccc;
	border-radius: 4px;
}

.icon-input {
	margin: 4px;
}

header {
	margin-bottom: 40px;
}

.formLineFlex {
	display: flex;
	justify-content: space-between;
}

button {
	background-color: rgb(129, 118, 184);
	color: #fff;
	text-transform: uppercase;
	border: none;
	outline: none;
	min-width: 260px;
	height: 45px;
	font-size: 16px;
	margin-top: 10px;
	cursor: default;
	border-radius: 4px;
}

button:hover {
	background-color: rgb(193, 188, 220);
	cursor: pointer;
}

.footer h1 {
	color: #ffffff;
	text-transform: uppercase;
	text-align: center;
	font-size: 2em;
}

.footer {
	margin-top: 40px;
	min-height: 160px;
	padding-top: 20px;
	background-size: 100% 100%;
	background-color: rgb(222, 6, 19);
}

.green {
	border-color: rgb(129, 118, 184);	
}




.flexValores {
	display: flex;
	flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
}

.flexValores > div {
	width: 120px;
	margin-right: 8px;
	height: 80px;
	font-size: 1.8em;
	color: #ffffff;
	border-radius: 5px;
	text-align: center;
	vertical-align: middle;
	cursor: default;
	margin-bottom: 8px;
	display: table;
	padding: 0 5px;
}

.flexValores > div:nth-child(4) {
  width: 200px;
  height: 80px;
}

.flexValores > div > div {
  display: table-cell;
  vertical-align: middle;
}

.flexValores > div:hover {
  background-color: rgb(193, 188, 220);
  cursor: pointer;
}

.customValor {
  display: flex;
  flex-direction: row;
  border: 2px solid rgb(222, 6, 19);
  border-radius: 4px;
}

.labelInput {
  font-size: 1em;
  color: #333333;
}

.inputValor {
  border: 0;
  outline: 0;
  width: 100%;
  color: #666666;
}


.amarelo{
  background-color: rgb(247, 201, 0);
}
.laranja{
  background-color: rgb(232, 114, 18);
}
.vermelho{
  background-color: rgb(222, 6, 19);
}
.lilas{
  background-color: rgb(129, 118, 184);
}

/*
    background-color: #0B6B45; 
    Laranja: RGB (232, 114, 18)
    Vermelho: RGB (222, 6, 19)
    Lilás: RGB (129, 118, 184)
    Verde: RGB (79, 169, 53)
    Amarelo: RGB (247, 201, 0)  
*/




.selectedValor {
	background-color: rgb(129, 118, 184);
	color: #333333 !important;
}




.txtConteudo {
  color: #666666;
  font-size: 1em;
}

.txtSelecione {
	font-size: 1.2em;
	color: #333333;
	margin: 20px 0 !important;
}

.txtLegenda {
	color: #666666;
	font-size: 0.8em;
	margin: 5px 0 20px !important;
}



.txtValor {
  color: #666666;
  font-size: 1.5em;
}

.txtTitle {
  color: rgb(129, 118, 184);
  font-size: 1.5em;
  /* font-weight: bold; */
}


.input-alert::placeholder {
	/* border: 1px solid red !important; */
	color: red;
	opacity: 1;
}


@media(max-width:400px){
  .flexValores > div {
    width: 100%
  }
  .customValor {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
   }
   .inputValor{
     width: 150px !important;
     background-color: #ddd;
   }
}