@charset "utf-8";

/* CSS Document */


/*###########################################################################################*/
								/* código de formatação de select boxes */

								/*

								código a aplicar na seguinte estrutura:

								<div class="desktop-select mobile-select">
								  <select>
									<option value="">Mensagem de informação</option>
									<option value="">Opção 1</option>
									<option value="">Opção 2</option>
									<option value="">Opção 2</option>
								  </select>
								</div>

								*/
/*###########################################################################################*/
@media(min-width:768px) {
.desktop-select {
	border-radius: 0px;
	-webkit-appearance: menulist;
	box-sizing: border-box;
	align-items: center;
	white-space: normal;
	-webkit-rtl-ordering: logical;
	background-color: #fff;
	cursor: default;
	border-width: thin;
	border-style: solid;
	border-image: initial;
	border-color: #7f7f7f;
	text-rendering: auto;
	letter-spacing: normal;
	word-spacing: normal;
	text-indent: 0px;
	text-shadow: none;
	text-align: start;
	position: relative;
	color: #999;
	font: 14px Arial;
	line-height: 14px;
	text-decoration: none;
}
.desktop-select select {
	display: none; /*hide original SELECT element:*/
}
.select-selected {
	background-color: #fff;
}
/*style the arrow inside the select element:*/
.select-selected:after {
	position: absolute;
	content: "";
	top: 17px;
	right: 20px;
	border: solid black;
	border-width: 0 1px 1px 0;
	display: inline-block;
	/*	opacity:1;/**/
	padding: 3px;
	transform: rotate(405deg);
	-webkit-transform: rotate(405deg);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	transition: all 500ms ease;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
}
/*style the items (options), including the selected item:*/
.select-items div, .select-selected {
	color: #000;
	padding: 14px 18px;
	border: 1px solid transparent;
	cursor: pointer;
	user-select: none;
}
.select-items {
	position: absolute;
	background-color: #fff;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 99;
	border-style: solid;
	border-width: 0px 1px 1px 1px;
	border-color: #7f7f7f;
	margin-left: -1px;
	margin-right: -1px;
	border-bottom-style: solid;
}
.select-selected div {
	color: #999;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(0, 0, 0, 0.1);
}
/*hide the items when the select box is closed:*/
.select-hide {
	opacity: 0;
	height: 0px;
	overflow: hidden;
}
.select-items div:hover, .same-as-selected {
	color: #000!important;
 border
}
.select-items div:hover:after {
	border-color: rgba(0, 0, 0, 1)!important;
}
.select-items div {
	color: #999;
}
.animacao {
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	transition: all 200ms ease;
}
.select-items div:after {
	content: "";
	border-bottom-style: solid;
	border-bottom-color: rgba(0, 0, 0, 0.1);
	border-bottom-width: 1px;
	margin-top: 14px;
	display: block;
	position: absolute;
	margin-left: -2%;
	width: 90%;
}
.select-items div:hover:after {
	border-bottom-color: rgba(0, 0, 0, 1)!important;
}
.ultima-linha-dropdown:after, .ultima-linha-dropdown:hover:after {
	display: none!important;
}
}




/*ecrã menor que 768px*/
@media(max-width:767px) {
.mobile-select .select-items, .mobile-select .select-selected {
	display: none;
}
.mobile-select {
	position: relative;
	font-family: Arial;
}
.mobile-select select {
	border-radius: 1px!important;
	width: 100%;
	-webkit-appearance: menulist;
	box-sizing: border-box;
	align-items: center;
	white-space: pre;
	-webkit-rtl-ordering: logical;
	background-color: white;
	cursor: default;
	border-width: thin;
	border-style: solid;
	border-image: initial;
	text-rendering: auto;
	letter-spacing: normal;
	word-spacing: normal;
	text-indent: 0px;
	text-shadow: none;
	display: inline-block;
	text-align: start;
	padding: 14px 18px;
	font-size: 16px;
	line-height: 1;
	border-width: thin;
	border-radius: 0px;
	border-style: solid;
	background: none;
	-webkit-appearance: none;
}
.mobile-select:after {
	position: absolute;
	content: "";
	top: 18px;
	right: 21px;
	float: right;
	border: solid black;
	border-width: 0 1px 1px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(405deg);
	-webkit-transform: rotate(405deg);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	transition: all 500ms ease;
}
}
/*fim mobile select*/
	
.desktop-select:active, .desktop-select:hover {
	border-color: #7f7f7f;
}

select::-ms-expand{
    display: none;
}
select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

