.dropdown {
    position: relative;
    display: block;
		text-align: left;
		font-size:12px;
		color:#666;
		width:70% !important;
}
.dropdown::after {
    content: "▼";
    position: absolute;
    right: 20px;
    top: 30px;
    transform: translateY(-50%);
}

.dropdown-content {
	position:absolute;
	display: block;
	left:0;
	background: white;
	padding: 0px 20px 0px 20px; 
	max-height: 0px;
	transition: all 0.2s ease;
	overflow:hidden;
}

.dropdown:hover .dropdown-content {
	max-height: 200px;
	padding:10px 20px 40px 20px; 
	overflow:auto;
}

label {
  display: inline-block;
	width:220px;
	cursor: pointer;
	
}