/*Padronizando Select nos navegadores -webkit-*/

.default-input {
	-webkit-appearance:none;
	-webkit-border-radius: 0;
}

@media screen and ( -webkit-device-pixel-ratio: 1 ) {
	.select:after {
		content: "▼";
		display: inline-block;
		position: absolute;
		right: 22%;
		font-size: 15px;
		float: right;
		margin-top: 10px;
		pointer-events:none;
	}
}

@media screen and ( -webkit-device-pixel-ratio: 1 ) and ( max-width: 1024px ) {
	.select:after {
		right: 15%;
	}
}

@media screen and ( -webkit-device-pixel-ratio: 1 ) and ( max-width: 768px ) {
	.select:after {
		right: 5%;
	}
}