@charset "UTF-8";
@media (min-width: 768px) {
  .timeline {
    position: relative;
    /* 중앙선 */
  }
  .timeline .bottom-dot, .timeline .top-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    border: 3px solid #0070b4;
    background-color: #fff;
    left: 50%;
    transform: translateX(-50%);
  }
  .timeline .bottom-dot {
    bottom: 0px;
  }
  .timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 2px;
    background: #0070b4;
    left: 50%;
    transform: translateX(-50%);
  }
  .timeline .timeline-item {
    display: flex;
    width: 100%;
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .timeline .timeline-item:nth-child(odd) .events::before {
    left: -20px;
  }
  .timeline .timeline-item:nth-child(odd) .events ul {
    padding-left: 80px;
  }
  .timeline .timeline-item:nth-child(odd) .events ul li::before {
    left: -40px;
  }
  .timeline .timeline-item:nth-child(odd) .events ul li::after {
    left: -60px;
  }
  .timeline .timeline-item:nth-child(odd) .events ul li:not(:last-child) .vertical-line {
    left: -55px;
  }
  .timeline .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .timeline .timeline-item:nth-child(even) .events::before {
    right: -20px;
  }
  .timeline .timeline-item:nth-child(even) .events ul {
    padding-right: 80px;
    float: right;
  }
  .timeline .timeline-item:nth-child(even) .events ul li {
    text-align: right;
  }
  .timeline .timeline-item:nth-child(even) .events ul li::before {
    right: -40px;
  }
  .timeline .timeline-item:nth-child(even) .events ul li::after {
    right: -60px;
  }
  .timeline .timeline-item:nth-child(even) .events ul li:not(:last-child) .vertical-line {
    right: -55px;
  }
  .timeline .events {
    position: relative;
    margin-top: 30px;
  }
  .timeline .events ul {
    padding: 0px;
    counter-reset: item;
  }
  .timeline .events ul li {
    position: relative;
    margin-bottom: 20px;
  }
  .timeline .events ul li::before {
    content: attr(data-number) ". ";
    counter-increment: item; /* Increment the counter for each <li> */
    position: absolute;
    font-weight: bold;
    color: #0070b4;
    font-size: 16px;
  }
  .timeline .events ul li::after {
    content: "";
    position: absolute;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    border: 3px solid #0070b4;
    background-color: #fff;
  }
  .timeline .events ul li:not(:last-child) .vertical-line {
    display: block;
    position: absolute;
    top: 5px;
    width: 1px;
    height: calc(100% + 25px);
    background-color: #ddd;
  }
  .timeline .events::before {
    content: "";
    position: absolute;
    top: 8px;
    width: 50px;
    height: 1px;
    background-color: #0070b4;
  }
  .timeline .circle {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #e5f0f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0070b4;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }
  .timeline .events,
  .timeline .dummy {
    flex: 1;
  }
}
@media (max-width: 768px) {
  .timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
  }
  .circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #0070b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }
  .line {
    width: 3px;
    height: 100%;
    background-color: #ddd;
    position: relative;
    top: 0;
    left: -35px;
    z-index: 1;
  }
  .events {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-left: 20px;
    flex: 1;
    list-style: none;
    border-left: 3px solid #0070b4;
  }
  .events li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
  }
  .events li:last-child {
    margin-bottom: 0;
  }
  .events {
    position: relative;
    margin-top: 30px;
  }
  .events ul {
    padding: 0px;
    counter-reset: item;
  }
  .events ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
  }
  .events ul li::before {
    content: counter(item, decimal-leading-zero) ". ";
    counter-increment: item; /* Increment the counter for each <li> */
    position: absolute;
    top: 0px;
    left: 0px;
    font-weight: bold;
    color: #0070b4;
    font-size: 16px;
  }
}/*# sourceMappingURL=history.css.map */