.dropdown,
.dropdown div,
.dropdown li,
.dropdown div::after{
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}
.dropdown .selected::after,
.dropdown.scrollable div::after{
	-webkit-pointer-events: none;
	-moz-pointer-events: none;
	-ms-pointer-events: none;
	pointer-events: none;
}
.dropdown:not(.pltopnav) {
	position: relative;
	border: 1px solid #bec2c6;
	cursor: pointer;
	border-radius: 4px;
	/* background: #ededed; */
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}
.dropdown.open {
	z-index: 2;
}
.dropdown:hover {
	
}
.dropdown.focus {
	border: 1px solid #429dc9;
}
.dropdown .carat:before{	
	font-family: "rapid-group" !important;
	content: "f";
}
.dropdown .carat {
	position: absolute;
	right: 12px;
	top: 10px;
	color: #a1a1a1;
}
.dropdown.open .carat {
	
}
.dropdown.disabled .carat {
	border-top-color: #999;
}
.dropdown.open .carat:before{	
	font-family: "rapid-group" !important;
	content: "g";
}
.dropdown .old {
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}
.dropdown select {
	position: absolute;
	left: 0px;
	top: 0px;
}
.dropdown.touch .old {
	width: 100%;
	height: 100%;
}
.dropdown.touch select {
	width: 100%;
	height: 100%;
	opacity: 0;
}
.dropdown .selected,
.dropdown li {
	display: block;
	font-size: 18px;
	line-height: 1;
	color: #5c6770;
	padding: 10px 12px;
	overflow: hidden;
	white-space: nowrap;
	font-family: 'latobold', sans-serif; 
}
.dropdown.disabled .selected {
	color: #999;
}
.dropdown div:not(.pltopnav) {
	position: absolute;
	height: 0;
	left: -1px;
	right: -1px;
	top: 100%;
	margin-top: -1px;
	/* background: #ededed; */
	border: 1px solid #429dc9;
	border-top: 1px solid #bec2c6;
	overflow: hidden;
	opacity: 0;
}
.dropdown.open div {
	opacity: 1;
	z-index: 999;
}
.dropdown.scrollable div::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;
	box-shadow: inset 0 -50px 30px -35px #fff;
}
.dropdown.scrollable.bottom div::after {
	opacity: 0;
}
.dropdown ul {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	list-style: none;
	overflow: hidden;
}
.dropdown.scrollable.open ul {
	overflow-y: auto;
}
.dropdown li {
	list-style: none;
	padding: 8px 12px;
}
.dropdown li.focus {
	background: #429dc9;
	position: relative;
	z-index: 3;
	color: #fff;
}
.dropdown li.active {
	color: #429dc9;
}
.dropdown li.active:hover {
	color: #fff;
}