html,
body,
h1,
h2,
h3,
h4,
h5,
p,
div,
span,
li,
label,
input[type='text'],
input[type='number'],
select,
option {
  font-family: "Gowun Dodum", sans-serif;
  scrollbar-width: none;
}

hr {
  height: 1px;
  border-width: 0;
  color: lightgray;
  background-color: lightgray;
}

.login-bg {
  background-image: url("../images/blue-bg.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #999;
}

.loader {
  border: 20px solid #f3f3f3;
  /* Light grey */
  border-top: 20px solid #3498db;
  /* Blue */
  border-radius: 50%;
  /* width: 120px;
  height: 120px; */
  animation: spin 2s linear infinite;
}

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

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

.level0 {
  font-size: 2rem;
}

.level1 {
  font-size: 1.75rem;
}

.level2 {
  font-size: 1.5rem;
}

.level3 {
  font-size: 1.25rem;
}

.level4 {
  font-size: 1rem;
}

.level5 {
  font-size: 0.75rem;
}


.font-6 {
  font-size: 6pt;
}

.font-7 {
  font-size: 7pt;
}

.font-8 {
  font-size: 8pt;
}

.font-9 {
  font-size: 9pt;
}

.font-10 {
  font-size: 10pt;
}

.font-11 {
  font-size: 11pt;
}

.font-12 {
  font-size: 12pt;
}

.font-13 {
  font-size: 13pt;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.v-bottom {
  vertical-align: bottom;
}

.v-middle {
  vertical-align: middle;
}

.centered {
  margin: auto;
}