.google-search-box {
	width: 240px;
	height: 50px;
	border: 2px solid #dcdcdc;
	border-radius: 50px;
	display: flex;
	align-items: center;
	padding-left: 14px;
	padding-right: 6px;
	background: #fff;
	font-family: 'Noto Sans KR', 'Monaco', 'NanumGothic', sans-serif;
	font-size: 16px;
	

	animation-name:ani;
	animation-delay:0s;
	animation-duration:1s;	
	animation-timing-function:ease-in-out; 

	opacity:1.0;
	
	transform: rotateX(0deg);
}
@keyframes ani{
	from{
		/*padding-left: 0px;
		height:30px;*/
		
		opacity:0.1;
		transform: rotateX(180deg);
	}

	to{
		/*padding-left: 14px;
		height:50px;*/
		
		opacity:1.0;
		transform: rotateX(0deg);
	}

}


/* Google 글씨 */
.google-text {
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-right: 8px;
  letter-spacing: 1px;
  font-size:16.5pt;
  font-style:normal;

}

/* 내부 타원형 박스 */
.google-search-inner-box {
  display: flex;
  align-items: center;
  flex: 1;
  height: 34px; 
  border: 1.5px solid #dcdcdc;
  border-radius: 50px;
  padding: 0 10px;
  white-space: nowrap;

  border-top:gray 1px solid;
  border-left:gray 1px solid;
}

.google-search-keyword {
  flex: 1;
  margin-right: 6px;
  color:black;
  font-style:normal;
}

.google-search-inner-box i {
  
  font-size: 16px;
  color:blue;
}
