@keyframes zipSearchFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
#zipSearchWrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 99999;
	opacity: 0;
	animation: zipSearchFadeIn .15s forwards;
}
#zipSearchWrapper #zipSearchInner {
	display: inline-block;
	margin: 0;
	padding: .5em 1em;
	background-color: #fff;
	border-radius: 4px;
	font-size: 14px;
	opacity: 0;
	animation: .4s zipSearchFadeIn .15s forwards;
	pointer-events: none;
}
#zipSearchWrapper #zipSearchList {
	display: inline-flex;
	flex-direction: column;
	position: fixed;
	margin: auto;
	padding: 10px 0;
	min-width: 200px;
	max-width: calc(100vw - 20px);
	width: auto;
	max-height: calc(100vh - 50px);
	height: auto;
	overflow-x: hidden;
	overflow-y: scroll;
	box-shadow: 0 0 10px rgba(0, 0, 0, .5);
	background-color: #fff;
	border: 5px solid #fff;
}
#zipSearchWrapper #zipSearchList a {
	display: inline-block;
	padding: 1px 10px 1px 5px;
	width: 100%;
	font-size: 14px;
	line-height: 1.5;
	white-space: nowrap;
}
#zipSearchWrapper #zipSearchList a:hover {
	background-color: #eee;
}
#zipSearchWrapper #zipSearchList::-webkit-scrollbar {
    width: 10px;
}
#zipSearchWrapper #zipSearchList::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 100px;
}
#zipSearchWrapper #zipSearchList::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 5px;
}
#zipSearchWrapper #zipSearchList {
	scrollbar-width: thin;
    scrollbar-color: #aaa #fff;
}
