form {
	padding: 40px;
	box-shadow: 0 10px 25px 0 rgba(6, 12, 34, 0.1);
}
.form h4,h5 {
	color: #141414;
	padding:10px;
	font-size:16px;
}

hr {
	background-color: #fff;
	height: 1px;
}

.feedback-input {
	color:#53575a;
	font-size: 12px;
	border-radius: 5px;
	line-height: 18px;
	background-color: #fbfbfb;
	padding: 13px 13px 13px 13px;
	margin-top: 5px;
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    border: 2px solid #fff;
	box-shadow: 0 10px 20px rgba(210,35,42,.4);
}

.feedback-input:focus{
	background: #fff;
	box-shadow: 0;
	border: 2px solid #d2232a;
	color: #d2232a;
	outline: none;
}

/*RADIO BUTTON*/
.containers {
  display: block;
  position: relative;
  padding-left: 35px;
  padding-bottom:20px;
  margin-bottom: 0px;
  color: #141414;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.containers input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #53575a;
  border-radius: 50%;
}

.containers:hover input ~ .checkmark {
  background-color: #ccc;
}

.containers input:checked ~ .checkmark {
  background-color: #d2232a;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.containers input:checked ~ .checkmark:after {
  display: block;
}

.containers .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
/*FIM RADIO BUTTON*/

.label h2 {
	background-color: #53575a;
	width: 100%;
	font-size: 18px;
	text-align: left;
	color: #ffffff;
	padding: 5px;
	margin-bottom: -10px;
	border-bottom: solid 2px #d2232a;
}

.caixa {
	min-height: 100px;
	border-left: solid 2px #d2232a;
	margin-bottom: 30px;
}

.caixa .thumb {
	width: 80px;
	margin-left: -10px;
	
}

.caixa .h4 {
	color:#53575a;
	font-size: 20px;
}

.caixa p {
	color:#53575a;
	font-size: 12px;
	margin-top: -8px;
	padding-bottom: 10px;
}

.caixa .select {
	background-color:#d2232a;
	color: #ffffff;
	font-size: 12px;
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 10px;
}

.caixa .selectblue {
	background-color:#009bdf;
	color: #ffffff;
	font-size: 12px;
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 10px;
}

.select-geral {
	background-color:#ffffff;
	color: #d2232a;
	font-size: 12px;
	padding: 10px;
	margin-top: 5px;
	width: 100%;
}

.select-geral:focus{
	border: 1px solid #d2232a;
}