html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

a {
  color: #666666;
}

#map-canvas {
  height: 100%;
  z-index: 0;
}

#search-form {
  width: 300px;
  margin-left: 12px;
  margin-top: 10px;
}

#search-box {
  width: 100%;
  height: 50px;
  background-color: #fff;
  font-family: Roboto;
  font-size: 14px;
  font-weight: bolder;
  padding: 0 32px 0 13px;
  text-overflow: ellipsis;
  border: 1px solid transparent;
  border-radius: 2px 0 0 2px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

#search-box:focus {
  border-color: #4d90fe;
}

#search-close {
  position: absolute;
  display: none;
  cursor: pointer;
  top: 17px;
  right: 13px;
}

#place-view {
  position: fixed;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 0px;
  background-color: #fff;
}

#place-image {
  position: absolute;
  left: 0px;
  width: 100px;
  height: 100px;
}

#place-info {
  margin-left: 100px;
  padding: 15px;
  padding-top: 2px;
  height: 100px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#place-name {
  margin: 0px;
  width: 100%;
  /* IE6 needs any width */
  white-space: nowrap;
  overflow: hidden;
  /* "overflow" value must be different from  visible"*/
  -o-text-overflow: ellipsis;
  /* Opera < 11*/
  text-overflow: ellipsis;
  /* IE, Safari (WebKit), Opera >= 11, FF > 6 */
}

#place-mapcode {
  margin-top: 5px;
  margin-bottom: 5px;
}

#place-mapcode-value {
  color: #610b21;
}

#ad {
  text-align: center;
}

/* css animation
.place-ani-in {
	animation-duration: 0.3s;
	animation-name: slidein;
	animation-iteration-count: 1;
}
.place-ani-out {
	animation-duration: 0.3s;
	animation-name: slideout;
	animation-iteration-count: 1;
}

@keyframes slidein {
	from {
		height: 0px;
	}

	to {
		height: 100px;
	}
}

@keyframes slideout {
	from {
		height: 100px;
	}

	to {
		height: 0px;
	}
}
*/
