@charset "utf-8";
@import url(//fonts.googleapis.com/earlyaccess/notosanskr.css);


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans KR', sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
  display: block;
}
img {
  max-width : 100%;
}
.overlay_loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.521);
  z-index: 9999999;
  display: none;
}
.xi-spinner-5 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.loading_active{
  display: block;
}
@media screen and (max-width : 680px ) {
  .xi-spinner-5 {
    position: absolute;
    top: 44%;
    left: 43%;
    transform: translate(-50%,-50%);
    color: white;
  }
}

.loadingIcon {
  animation: loading 3s ease-in-out infinite;
  transform-origin:center center;
}
@keyframes loading {
  0% {
    transform:  translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}