.skin-board {
  height: 100vh;
  width: 100vw;
  position: fixed;
  left: 0;
  top: 0;
  font-family: var(--skin-default-font);
  overflow-y: auto;
}

.skin-board-inner {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.skin-board-inner > div {
  height: auto;
}

.skin-board-times {
  display: flex;
  min-width: 50px;
  width: 5%;
  box-sizing: border-box;
  background: var(--skin-base-color-d);
  border-right: 1px solid var(--skin-base-color-dd);
  pointer-events: none;
  z-index: 1;
}

.node_active .skin-board-times {
  display: none;
}

.timeline-time-btn {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: visible;
}

.timeline-time-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 200px;
}

.timeline-time {
  display: flex;
  align-items: center;
  flex-direction: row;
  position: absolute;
  width: 200px;
  left: calc(100% - 10px);
  justify-content: flex-start;
  min-height: 200px;
  position: relative;
}

.timeline-time-icon {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: var(--skin-point-color);
  margin-right: 25px;
  position: relative;
}

.timeline-time-icon::after {
  content: '';
  width: 20px;
  height: 1px;
  background: linear-gradient(to right, var(--skin-text-color), var(--skin-text-color-t));
  position: absolute;
  left: 20px;
  top: 10px;
}

.timeline-time-name {
  color: var(--skin-text-color);
  font-size: 12px;
  text-align: center;
}

.skin-board-timelines {
  display: flex;
  width: 95%;
  box-sizing: border-box;
  background: var(--skin-base-color);
  overflow-x: auto;
  overflow-y: hidden;
}

.timeline-timeline-wrapper {
  display: flex;
  height: 100%;
  gap: 4px;
}

.timeline-timeline {
  min-width: 280px;
  width: 280px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--skin-ani);
}

.timeline-timeline-background {
  background: var(--skin-base-color);
  width: 100%;
  height: 100%;
  position: absolute;
}

.timeline-timeline-background-header {
  background-image: var(--back-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: var(--skin-point-color);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
  mask-image: linear-gradient(to bottom, black 0%, transparent 90%);
}

.timeline-timeline-btns {
  position: absolute;
  top: 0;
  left: 0;
  margin: 10px;
  display: none;
  opacity: 0;
  transition: var(--skin-ani);
}

.timeline-timeline-background-active {
  background-image: var(--back-image);
  background-color: var(--skin-point-color);
  width: 500px;
  height: 500px;
  position: fixed;
  bottom: 0;
  background-position: 25% 25%;
  background-size: 200%;
  background-repeat: no-repeat;

  mask-image: radial-gradient(circle at 100% 100%, black 0%, black 0%, transparent 60%);
  -webkit-mask-image: radial-gradient(circle at 100% 100%, black 0%, black 0%, transparent 60%);

  right: -500px;
  transition: var(--skin-ani);
}

.timeline-timeline-header {
  height: 300px;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--skin-text-color);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding: 20px;
}

.timeline-timeline-header-btns {
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.timeline-timeline-header-name {
  font-size: 14px;
  font-family: var(--skin-title-font);
  margin-top: 120px;
}
.timeline-timeline-header-desc {
  font-size: 12px;
  font-family: var(--skin-point-font);
  height: calc(1.5em * 5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  text-overflow: ellipsis;
  margin-top: 5px;
}
.timeline-timeline-inner {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.timeline-node {
}

.timeline-node-casual {
  padding: 12px 15px;
  text-shadow: 0px 0px 3px var(--skin-base-color);
  opacity: 0;
  pointer-events: none;
}

.timeline-node-name {
  color: var(--skin-text-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.timeline-node-summary {
  color: var(--skin-text-color);
  font-size: 12px;
  line-height: 1.4;
}

.skin-board-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  z-index: 5;
  pointer-events: none;
  font-family: var(--skin-default-font);
}

.timeline-node-detail {
  padding: 15px;
  display: none;
  animation: node var(--skin-ani);
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--skin-base-color);
  pointer-events: visible;
}

@keyframes node {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.timeline-node-background-wrapper{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--skin-base-color);
  z-index: -1;
}
.timeline-node-background {
}
.timeline-node-image{}
.timeline-node-image2{}

.timeline-node-detail .timeline-node-name {
  margin-top: 50px;
  font-family: var(--skin-title-font);
  font-size: 16px;
  margin-bottom: 20px;
}

.timeline-node-content {
  color: var(--skin-text-color);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.timeline-node-comment {
  border-top: 1px solid var(--skin-base-color);
  padding-top: 12px;
}

.timeline-comment {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  padding: 8px;
  background: var(--skin-base-color);
}

.timeline-comment-thumb {
  width: 24px;
  height: 24px;
  background: var(--skin-point-color);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--skin-text-color);
  font-size: 10px;
  font-weight: 600;
}

.timeline-comment-name {
  color: var(--skin-text-color);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 3px;
}

.timeline-comment-content {
  flex: 1;
  color: var(--skin-text-color);
  font-size: 11px;
  line-height: 1.3;
}

/* 작성 관련 */

.skin-board .skin-board-writes {
  position: fixed;
  top: 0;
  width: 500px;
  height: 100vh;
  box-shadow: 0px 0px 21px 4px rgba(0, 0, 0, 0.1);
  height: 100vh;
  color: var(--skin-text-color);
  background: var(--skin-base-color-d);
  overflow-y: auto;
  right: -100%;
  transition-duration: var(--skin-ani);
  z-index: 10;
}

.skin-board-writes.active {
  right: 0;
}

.skin-board-writes > * {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition-duration: var(--skin-ani);
  padding: 20px;
  top: 0;
}

.skin-board-writes > .active {
  pointer-events: visible;
  opacity: 1;
  position: relative;
}

.skin-table-time {
  display: flex;
  width: calc(100% - 10px);
  color: var(--skin-text-color);
  background: var(--skin-base-color);
  border-radius: 5px;
  justify-content: space-between;
  align-items: center;
  padding: 0px 10px;
  box-sizing: border-box;
  margin: 5px;
  gap: 20px;
}

.skin-table-time-name {
  width: 100%;
  flex: 1;
}

.skin-table-time-name input {
  width: 100%;
  border-radius: 5px;
}
