@charset "utf-8";
.form input:not(.form-control):not(.checkboxBS) {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.form textarea:not(.form-control):not(.checkboxBS) {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
}
#addAtivD input:not(.form-control):not(.checkboxBS) {
	padding: 5px;
	width: 100%;
	margin: 0 0 0 0;
}

.alternativa input[type="radio"] {
    display: none;
    cursor: pointer;
}
.alternativa input[type="radio"] + label {
	background-image:url(../_img/errado.svg);
	background-repeat:no-repeat;
	background-size:25px;
	width:25px;
	height:25px;
	display:inline-block;
	z-index:999;
	position:relative;
	top:1px;
	cursor: pointer;
}
.alternativa input[type="radio"]:checked + label {
	background-image:url(../_img/certo.svg);
}

.form select:not(.form-control):not(.checkboxBS) {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.form button:not(.form-control):not(.checkboxBS) {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #4CAF50;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}
.form button:not(.form-control):not(.checkboxBS):hover,.form button:not(.form-control):not(.checkboxBS):active,.form button:not(.form-control):not(.checkboxBS):focus {
  background: #43A047;
}