.mapSearchContainer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: #ffffff;
	z-index: 1;
	padding: 12px 16px;
	padding-top: 0;
	transform-origin: bottom;
	z-index: 111;
	box-sizing: border-box;
}

.searchHeader {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid #e0e0e0;
	position: sticky;
	top: 0;
	background: white;
	padding-top: 12px;
	margin-bottom: 10px;
}

.searchTextbox {
	width: 100%;
	padding-left: 10px;
	height: 40px;
	outline: none;
	border: none;
}

.show {
	animation-name: SearchShowAnim;
	animation-duration: .3s;
}

.hide {
	transition-duration: .3s;
	transform: translateY(100px);
	opacity: 0;
}

@keyframes SearchShowAnim {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
  }
}

