.button {
	font-size: 1em;
	padding: 10px;
	color: #fff;
	border: 2px solid orange;
	border-radius: 20px/50px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease-out;
}
.button:hover {
	background: orange;
}
.popup_container {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.3);
	transition: opacity 500ms;
	z-index:9999;
}
.popup {

	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	padding: 20px;
	background: #fff;
	width: 200px;
	height: 200px;
	box-shadow: rgb(136, 136, 136) 1px -1px 16px !important;
	border-radius: 2px !important;
	transition: all 5s ease-in-out;
}

.popup h2 {
	margin-top: 0;
	color: #333;
	font-family: Tahoma, Arial, sans-serif;
}
.popup .popup_close {
	position: absolute;
	top: 4px;
	right: 15px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}
.popup .popup_close:hover {
	 color: orange;
}
.popup .popup-content {
	position: absolute;
	top:50px;
	left:15px;
	right:15px;
	bottom:15px;
	overflow-y:auto;
}
.popup li {
	list-style: none;
	margin: 0;
	padding: 5px;
	border-bottom: 1px solid #f1f1f1;
	display: block;
	cursor: pointer;
}
.popup ul {
    margin: 0;
    padding: 0;
}

.popup li:hover {
    background-color: #E6F3FB;
    color: #000;
}

#popup_search{
	display:block;
	position:absolute;
	left:20px;
	top:20px;
	right:50px;
	height:30px;
	margin:0;
}


