.calendar-wrapper {
  margin-top: 140px;
}
.calendar-content {
  padding: 0 24px;
  border: 1px solid var(--color-divider-2);
  background-color: var(--color-card-2);
  box-shadow: 0 6px 20px rgba(19, 60, 158, 0.04);
  border-radius: 8px;
}
.calendar-title {
  font-size: 40rem;
  margin-bottom: 48px;
}
.calendar-title-sub {
  margin-bottom: 48px;
  display: flex;
  column-gap: 32px;
  font-size: 24rem;
}

.slot-status-default {
  position: relative;
  color: var(--color-text-4);
  cursor: pointer;
}

.slot-status-active {
  color: var(--color-text-1);
}

.slot-status-active::before {
  content: '';
  position: absolute;
  bottom: -16px;
  height: 8px;
  width: 8px;
  background-color: var(--color-funct-1);
  left: calc(50% - 4px);
}
.stage-open-title-wrapper {
  display: flex;
  column-gap: 24px;
  align-items: center;
}
.stage-open-title {
  font-size: 32rem;
}
.stage-close-title {
  font-size: 20rem;
}
.stage-open-tag {
  height: 28px;
  border-radius: 4px;
  font-weight: 400;
  font-size: 12rem;
  color: var(--color-funct-2);
  display: flex;
  align-items: center;
  padding: 0 12px;
  background-color: var(--color-tag-green);
}
.stage-open-desc-wrapper {
  display: flex;
  align-items: center;
  column-gap: 4px;
  margin: 16px 0 0;
}
.stage-open-desc-wrapper .iconfont-symbol {
  color: var(--color-text-1);
  cursor: pointer;
  margin-left: 4px;
}
.stage-open-desc {
  font-weight: 400;
  color: var(--color-text-3);
}

.stage-close {
  height: 80px;
  line-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stage-close-time {
  color: var(--color-text-2);
}
.bidding-progress {
  position: relative;
  padding: 48px 0 34px;
}
.progress-container {
  position: relative;
  background-color: var(--color-progress-bg);
  width: calc(100% - 16px);
  height: 2px;
  top: 40px;
}
.progress-container::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  top: calc(50% - 8px);
  border: 2px solid var(--color-brand-1);
  background-color: #fff;
  border-radius: 8px;
  z-index: 10;
}
.progress-container::after {
  content: '';
  position: absolute;
  right: -16px;
  width: 12px;
  height: 12px;
  top: calc(50% - 6px);
  background-color: var(--color-progress-bg);
  border-radius: 6px;
}

.progress-slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  background-color: var(--color-brand-1);
}
.progress-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.progress-content > div {
  display: flex;
  flex-direction: column;
  row-gap: 42px;
}
.progress-content-begin {
  align-items: flex-start;
}
.progress-content-begin2 {
  position: absolute;
  align-items: center;
}
.progress-content-begin2::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  right: calc(50% - 8px);
  top: calc(50% - 6px);
  border: 2px solid var(--color-brand-1);
  border-radius: 8px;
  background-color: #fff;
}
.progress-content-end {
  align-items: flex-end;
}

.progress-content-time {
  color: var(--color-text-3);
  font-weight: 400;
  font-size: 14rem;
}
.empty-rounds-desc {
  margin-top: 24px;
  margin-bottom: 48px;
}
