html {
  font-size: 1vh;
  font-family: "NotoSansKr", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
}

body {
  position: relative;
  overflow: hidden;
}

.container {
  font-size: 12px;
  min-width: 1920px;
  width: 100vw;
  height: 100vh;
  background-color: #0d0b66;
  background-image: radial-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 6, 0.6));
}
.container:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 80px;
  background: url("/static/img/viewer/logo/bglogo.png") center no-repeat;
  background-size: 100%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.scroll::-webkit-scrollbar {
  width: 6px;
  background: transparent;
}

.scroll::-webkit-scrollbar-thumb {
  width: 6px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.scrollx::-webkit-scrollbar {
  height: 6px;
  background: transparent;
}

.scrollx::-webkit-scrollbar-thumb {
  height: 6px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.dim {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 3;
}
.dim.on {
  bottom: 0;
}
.dim.fire {
  background: radial-gradient(85.19% 85.19% at 50% 50%, rgba(255, 0, 0, 0) 0%, rgba(255, 0, 0, 0.9) 100%);
  animation: aniopacity 1s linear infinite;
}

.dim3 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 4;
}
.dim3.on {
  bottom: 0;
}

button {
  font-family: "NotoSansKr";
  font-weight: 400;
  padding: 0;
  margin: 0;
}

input {
  font-family: "NotoSansKr";
  font-weight: 400;
}
input:focus-visible {
  outline: none;
}

::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

@keyframes aniopacity {
  0% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.9;
  }
}
@media screen and (max-height: 749px) {
  html {
    font-size: 7.5px;
  }
}