.zipSearchOverflow {
	overflow: hidden;
}

#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);
	z-index: 99999;
	pointer-events: auto;
}

#zipSearchWrapper.mask {
	background-color: rgba(0, 0, 0, 0.3);
}

#zipSearchWrapper #zipSearchList {
	display: inline-flex;
	flex-direction: column;
	position: fixed;
	margin: auto;
	padding: 10px;
	width: 250px;
	height: 200px;
	max-width: 90vw;
	max-height: 90vh;
	overflow-x: hidden;
	overflow-y: scroll;
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

#zipSearchWrapper #zipSearchList a {
	display: inline-block;
	padding: 1px 5px;
	width: 100%;
	font-size: 12px;
	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: #FFCA28;
    border-radius: 5px;
}

#zipSearchWrapper #zipSearchList {
	scrollbar-width: thin;
    scrollbar-color: #FFCA28 #fff;
}
