@font-face {
  font-family: "NanumSquare";
  src: url(/font/NanumSquareL.ttf) format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "NanumSquare";
  src: url(/font/NanumSquareR.ttf) format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "NanumSquare";
  src: url(/font/NanumSquareB.ttf) format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: NanumSquare;
  src: url(/font/NanumSquareEB.ttf) format("truetype");
  font-weight: 800;
}
html,
body,
#root {
  font-family: "Pretendard", "sans-serif";
  height: 100%;
}
body {
  margin: 0px;
}
.flex {
  display: flex;
  flex-flow: column;
}
.flex .spacer {
  flex-grow: 1;
}
.flex.row {
  flex-flow: row;
}
.flex.between {
  justify-content: space-between;
}
.title,
h1 {
  font-family: "NanumSquare";
  font-weight: 800;
}
pre {
  font-family: "NanumSquare";
}
.loading {
  margin: calc(50% - 25px) calc(50% - 25px);
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  border: 3px solid rgba(0, 0, 0, 0.3);
  border-top-color: #000000;
  border-radius: 100%;
  animation: spin 1s ease-in-out infinite;
}
.ant-drawer-content-wrapper {
  width: 70% !important;
}
.ant-drawer .ant-drawer-body {
  padding: 0px;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

