@charset "UTF-8";
/* 로딩 style */
html.hidden {
  overflow: hidden !important;
  -ms-touch-action: none;
      touch-action: none;
}

.loading {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7176470588);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
}

/* 회전 로딩 스피너 */
.loading .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #dcdcdc;
  border-top-color: #0B7BBF;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear infinite;
          animation: spin 0.8s linear infinite;
  /* 0.8초마다 한 바퀴씩 계속 도는 애니메이션 */
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}/*# sourceMappingURL=loading.css.map */