@charset "utf-8";
/*
***********************
widget.css 파일은 변수 설정이 불가하기 때문에 이곳에 설정한 css는
widget.rows.php 에도 id와 class를 동일하게 지정해줘야합니다.
id 및 class가 겹치지 않도록 적절한 고유 코드를 삽입해주시기 바랍니다.
***********************
*/
.page-load-status {
	border-top: 1px solid #ddd;
	padding-top: 20px;
	margin-top: 20px;
	text-align: center;
	display: none;
	color: #777;
}
.loader-ellips {
	font-size: 20px; /* change size here */
	position: relative;
	width: 4em;
	height: 1em;
	margin: 10px auto;
}
.loader-ellips__dot {
	display: block;
	width: 1em; height: 1em;
	border-radius: 0.5em;
	background: #555; /* change color here */
	position: absolute;
	animation-duration: 0.5s;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
}
.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) { left: 0; }
.loader-ellips__dot:nth-child(3) { left: 1.5em; }
.loader-ellips__dot:nth-child(4) { left: 3em; }
.loader-ellips__dot:nth-child(1) { animation-name: reveal; }
.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) { animation-name: slide; }
.loader-ellips__dot:nth-child(4) {
  animation-name: reveal;
  animation-direction: reverse;
}
@keyframes reveal {
  from { transform: scale(0.001); }
  to { transform: scale(1); }
}
@keyframes slide {
  to { transform: translateX(1.5em) }
}