form {
	padding: 0 5px;
	border-radius:5px;
}
.form h5 {
	font-size:13px;
	font-weight:600;
	margin-bottom:5px;
}
h4,h5 {
	color: #fff;
	padding:10px;
}

.dark {
	background-color:#141414;
}

hr {
	background-color: #fff;
	height: 1px;
}

/* Classe exclusiva dos campos */
.feedback-input {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 10px !important;
  outline: none;
  background: #141414 !important;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.feedback-input::placeholder {
  color: #777;
  opacity: 1;
}

.feedback-input:hover {
  background-color: #fafafa;
}

.feedback-input:focus {
  border-color: #e63232;
  box-shadow: 0 0 0 3px rgba(230, 50, 50, 0.22);
}

.form-contato__observacoes {
  margin-top: 32px;
}

.form-contato__observacoes label {
  display: block;
  margin: 0 0 14px 10px;
  color: #111;
  font-size: 13px;
  font-weight: 600;
}

textarea.feedback-input {
  min-height: 68px;
  padding: 12px 14px;
  resize: vertical;
}

/*RADIO BUTTON*/
.containers {
  margin-left:20px;
  display: block;
  position: relative;
  padding-left: 35px;
  padding-bottom:0px;
  margin-bottom: 0px;
  color: #141414;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  -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;
}