@font-face {
  font-family: "Paperlogy";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-8ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Paperlogy";
  src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-3Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
input[type=number] {
  box-sizing: border-box;
  height: 30px;
  border-width: 1px;
  border-style: solid;
  padding: 0 10px;
  max-width: 100%;
  font-size: 12px;
  line-height: 1.2;
  width: 100px;
}

@keyframes fadeIn {
  0% {
    display: block !important;
    opacity: 0;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes fadeOut {
  0% {
    transform: scaleY(1);
    opacity: 1;
    display: block;
  }
  99% {
    display: block;
  }
  to {
    opacity: 0;
    transform: scaleY(0);
    display: none !important;
  }
}
.btn_confirm {
  text-align: center;
  margin: 30px 0;
}

#bo_list {
  position: relative;
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

#bo_list::before {
  content: "";
  background: var(--c-sub);
  width: 10px;
  height: calc(100% - 40px);
  position: absolute;
}
#bo_list.auto-hide .chro-content {
  display: none;
  transform-origin: top;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: fadeOut;
}
#bo_list.auto-hide .each-item.active .chro-content {
  display: block;
  animation-fill-mode: backwards;
  animation-name: fadeIn;
}
#bo_list.right-align {
  align-items: flex-end;
}
#bo_list.right-align .chro-pointer {
  right: 0;
}
#bo_list.right-align .each-item * {
  text-align: right;
}
#bo_list.right-align .chro-title {
  justify-content: flex-end;
}
#bo_list.right-align .chro-btn-box {
  order: -1;
}

.each-item {
  position: relative;
  margin: 0 30px;
}
.each-item .chro-time {
  font-family: "Paperlogy";
  font-size: 20px;
  font-weight: 300;
  color: var(--c-font);
  margin-bottom: 6px;
}
.each-item .chro-title {
  font-family: "Paperlogy";
  font-size: 36px;
  font-weight: 800;
  color: var(--c-title);
  height: auto;
  display: flex;
  align-items: center;
  margin-block: 6px 10px;
  line-height: 1;
}
.each-item .chro-title > .chro-icon svg {
  width: 36px;
  height: 36px;
  margin-right: 6px;
}
.each-item .chro-btn-box {
  margin: 0 16px;
  display: none;
  transform-origin: top;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-name: fadeOut;
  transform-origin: center;
}
.each-item .chro-btn-box a.chro-icon {
  display: inline-block;
  color: inherit;
  transition-duration: 0.1s;
}
.each-item .chro-btn-box a.chro-icon svg {
  width: 18px;
  height: 18px;
  transition-duration: 0.1s;
}
.each-item .chro-btn-box a.chro-icon:hover, .each-item .chro-btn-box a.chro-icon:focus, .each-item .chro-btn-box a.chro-icon:active {
  color: var(--c-font);
}
.each-item.active .chro-btn-box {
  display: block;
  animation-fill-mode: backwards;
  animation-name: fadeIn;
}
.each-item .chro-content {
  color: var(--c-font);
  background: var(--c-box-bg);
  padding: 10px;
  backdrop-filter: blur(10px);
  word-break : break-all;
}
.each-item .chro-pointer {
  position: absolute;
  width: 24px;
  height: 3px;
  top: 8px;
  margin: 0 -30px;
  background: var(--c-sub);
}