/* .App {
  text-align: center;
  height: 100%;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
} */

.loading_wrap .dim {
  position: fixed;
  top:0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
  z-index: 900;
}

.loading_wrap img {
  width: 140px;
}

.loading_wrap {
  position: fixed;
  height: 100vh;
  /* margin: -60px -50px 0 -50px; */
  width: '100%';
  z-index: 800;
}

.loading_wrap .loading img {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 920;
  /* margin-left: 35px; */
}

/* YourComponent.css */
.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  transition: height 3.5s ease; /* 높이에 대한 transition을 설정합니다. */
}

.loading-img {
  width: 56px;
}

/* 로딩이 완료되면 height를 0으로 설정하여 자연스러운 사라짐 효과를 줍니다. */
.loading-container:not(.loading) {
  height: 0;
  overflow: hidden;
}
