@charset "utf-8";

.DB_Timeline {
  padding: 0;
  margin: 0 auto 40px auto;
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 1141px;
  max-width: 100%;
}
.DB_Timeline__item {
  position: relative;
  border-right-width: 1px;
  border-right-style: solid;
  border-color: currentColor;
  cursor: pointer;
  padding: 0 12px;
  color: #9d1917;
}
.DB_Timeline__item:hover {
  background: #efefef;
}
.DB_Timeline__item:after {
  content: "";
  position: absolute;
  left: 100%;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
}

.DB_Timeline__item:nth-child(2n+2) {
  color: #22bcb5;
}
.DB_Timeline__item:nth-child(odd) {
  border-bottom-width: 6px;
  border-bottom-style: solid;
  padding-bottom: 10px;
  margin-bottom: 1em;
}
.DB_Timeline__item:nth-child(odd):after {
  top: 0;
  border-width: 12px 12px 0 0;
  border-color: currentColor transparent transparent transparent;
}
.DB_Timeline__item:nth-child(even) {
  border-top-width: 6px;
  border-top-style: solid;
  padding-top: 10px;
  margin-top: calc(1em + 10px);
}
.DB_Timeline__item:nth-child(even):after {
  bottom: 0;
  border-width: 12px 0 0 12px;
  border-color: transparent transparent transparent currentColor;
}
.DB_Timeline__text {
  display: block;
  line-height: 1;
}
#tabs > div {
  display: none;
}

