@media (max-width: 767px) {
	.placePosWrap
	{
		margin-top: 15px !important;
	}
	
	.paginate a
	{
		margin-top: 15px !important;
	}
}

.gm-style-iw { width: 100% !important; }


.loader {
  //display:grid;
  //grid-template-columns: 1fr;
  align-items: center;
  height: 350px;
  display:none;
  padding-top:200px;
}

.loader-wheel {
  animation: spin 1s infinite linear;
  border: 2px solid rgba(30, 30, 30, 0.5);
  border-left: 4px solid #fff;
  border-radius: 50%;
  height: 50px;
  margin-bottom: 10px;
  width: 50px;
  margin:0 auto;
}

.loader-text {
  color: #474747;
  font-family: arial, sans-serif;
  margin: 0 0 0 30%;
  float: left;
  padding-top:30px;
}

.loader-text:after {
  content: 'Loading';
  animation: load 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    content: '교통정보를 가져오고 있습니다 ';
  }
  33% {
    content: '교통정보를 가져오고 있습니다.';
  }
  67% {
    content: '교통정보를 가져오고 있습니다..';
  }
  100% {
    content: '교통정보를 가져오고 있습니다...';
  }
}