@charset "UTF-8";

/* SVG 애니메이션 */
.loading-svg {
  width: 100px;
  height: 100px;
  animation: rotate 2s linear infinite;
}

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

body.loading-lock {
	overflow:hidden;
}

.kfsi-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1056;
  &::before {
    content: '';
    display: block;
    width: 63px;
    height: 62px;
    background: url(../images/ico-loading.svg) no-repeat 0 0;
    animation: rotate 2s linear infinite;
  }
  p {
    margin: 0;
    color: #fff;
    text-align: center;
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.6px;
  }
}