/* Structure */
.lince-input {
	position: relative;
	width: 100%;
}
#formNewsInternas .lince-input {
	position: relative;
	width: 70%;
	margin: 0 !important;
	float: left;
}
.lince-input label {
	display: block;
	margin: 0;
}
/* Input Fields Style */
#newsletterDestaque textarea,
#newsletterDestaque input[type="text"],
#newsletterDestaque input[type="password"] {
	outline: none;
	border: solid 1px #ffad00;
	resize: none;
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	font-size: 14px;
	transition: 0.2s;
	margin-bottom: 10px;
	background: rgba(255,173,0,0);
	text-align: center;
	font-size: 18px;
	color: rgba(255,173,0,1);
}
#formNewsInternas input[type="text"]{
	outline: none;
	border: solid 1px #181818;
	resize: none;
	width: 100%;
	box-sizing: border-box;
	padding: 7px 10px;
	font-size: 14px;
	transition: 0.2s;
	margin-bottom: 10px;
	background: white;
	text-align: left;
	font-size: 18px;
	color: #181818
}
#formContato textarea, #formContato input[type="text"]{
	outline: none;
	resize: none;
	width: 100%;
	box-sizing: border-box;
	padding: 7px 10px;
	font-size: 14px;
	transition: 0.2s;
	margin-bottom: 10px;
	background: white;
	text-align: left;
	font-size: 18px;
	color: #181818;
	border: solid 1px #ffad00;
}

textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus {
	box-shadow: 0 3px 10px rgba(0,0,0,.1),0 3px 5px rgba(0,0,0,.1);
	border: solid 1px #ffad00;
	background: rgba(255,173,0,0);
}

/* Select */
.select {
	/*cursor: pointer;
	position: relative;
	background: white;
	padding: 10px;
	width: 100%;
	box-sizing: border-box;*/
	outline: none;
    resize: none;
    width: 100%;
    box-sizing: border-box;
    padding: 7px 10px;
    font-size: 14px;
    transition: 0.2s;
    margin-bottom: 10px;
    background: white;
    text-align: left;
    font-size: 18px;
    color: #181818;
    border: solid 1px #ffad00;
}
.select span:after {
	content:"";
	display: block;
	float: right;
}
.select ul {
	transition: 0.5s;
	position: absolute;
	opacity: 0;
	margin: 0;
	padding: 0;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: white;
	box-shadow: 0 3px 10px rgba(0,0,0,.1),0 3px 5px rgba(0,0,0,.1);
}
.select ul li {
	transition: 0.5s;
	list-style: none;
	padding: 10px;
}
.select ul li.checked {
	background: #333;
	color: white;
}
.select ul li:hover {
	background: #b4b4c4;
}
.select.open ul {
	opacity: 1;
	z-index: 10;
	height: auto;
}

/* Input File */
.lince-input .label-file {
	width: 100%;
    outline: none;
    cursor: pointer;
    border: none;
    background: #ffad00;
    color: white;
    padding: 5px 10px;
    font-size: 18px;
    transition: all .35s;
}
input[type="text"].file-archive {
	width: 80%;
}

/* Error Warning */
label.error {
	position: absolute;
	right: 11px;
	bottom: 20px;
	font-weight: normal;
	color: red;
	font-size: 10px
}
label.errorCaptcha{
	position: absolute;
	right: 38px;
	bottom: 18px;
	font-size: 10px;
	color: red;
}
label.errorCaptcha span{
	font-size: 9px;
}

/* Submit Button */
input[type="submit"] {
	width: 100%;
	outline: none;
	cursor: pointer;
	border: none;
	background: #ffad00;
	color: white;
	padding: 5px 10px;
	font-size: 18px;
	transition: all .35s;
}
#formNewsInternas input[type="submit"] {
	width: 30%;
	outline: none;
	cursor: pointer;
	border: none;
	background: #181818;
	color: white;
	padding: 8px 10px;
	font-size: 18px;
	transition: all .35s;
}
input[type="submit"]:hover{
	background: white;
	color: #ffad00;
}
#formNewsInternas input[type="submit"]:hover{
	background: #093976;
	color: white;
}
#formContato input[type="submit"]:hover{
	background: #093976;
	color: white;
}

/* Custom Placeholder */
::-webkit-input-placeholder {
	font-size: 18px;
	color: rgba(255,173,0,1);
	
}
:-ms-input-placeholder {
	color: rgba(255,173,0,1);
	font-size: 18px;
}
::-moz-placeholder {
	color: rgba(255,173,0,1);
	font-size: 18px;
}

#formNewsInternas ::-webkit-input-placeholder {
	font-size: 18px;
	color: #181818;
	
}

#formNewsInternas :-ms-input-placeholder {
	color: #181818;
	font-size: 18px;
}

#formNewsInternas::-moz-placeholder {
	color: #181818;
	font-size: 18px;
}

#formContato ::-webkit-input-placeholder {
	font-size: 18px;
	color: #181818;
	text-align: left;
}

#formContato :-ms-input-placeholder {
	color: #181818;
	font-size: 18px;
	text-align: left;
}

#formContato::-moz-placeholder {
	color: #181818;
	font-size: 18px;
	text-align: left;
}

/* Anti-Spam */
.url-form {
	display: none !important;
}
.erroCaptcha label.error{
	margin-bottom: 2px !important;
}
.input-captcha{
	width: 236px !important;
	margin-left: 49%;
	float: left;
	height: 35px;
}
@media (max-width: 1024px) {
	.input-captcha {
	    width: 245px !important;
	}
}
@media (max-width: 768px) {
	.input-captcha {
	    width: 100% !important;
	    margin-top: 10px;
	}
	#formContato textarea{
		height: 50px;
	}
}
@media (max-width: 480px) {
	.input-captcha {
	    width: 100% !important;
	}
	.erroCaptcha label.error {
	    margin-bottom: -8px !important;
	    font-size: 10px;
	}
	#formContato textarea{
		height: 50px;
	}
}