@charset "UTF-8";
.content-wrapper .steps {
  display: flex;
  line-height: 1;
}
.content-wrapper .steps .item {
  height: 50px;
  display: flex;
  align-items: center;
  font-size: 18px;
  padding: 0 3.5%;
  border: 1px solid #ae7e5a;
  color: #ae7e5a;
  cursor: pointer;
  margin-right: 5px;
}
.content-wrapper .steps .item:last-child {
  border-right: 1px solid #ae7e5a;
  margin-right: 0;
}
.content-wrapper .steps .item:hover,
.content-wrapper .steps .item.active {
  color: #fff;
  background-color: #ae7e5a;
}
.content-wrapper .steps .item:hover span,
.content-wrapper .steps .item.active span {
  border-color: #fff;
}
.content-wrapper .steps .item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 2px solid #ae7e5a;
  border-radius: 50%;
  margin-right: 8px;
}
@media (max-width: 1280px) {
  .content-wrapper .steps {
    flex-wrap: wrap;
  }
  .content-wrapper .steps .item {
    margin-bottom: 5px;
  }
}
@media (max-width: 980px) {
  .content-wrapper .steps {
    line-height: normal;
  }
  .content-wrapper .steps .item {
    height: 10vw;
    margin-bottom: 1vw;
    font-size: 5vw;
    margin-right: 1vw;
  }
  .content-wrapper .steps .item span {
    width: 6vw;
    height: 6vw;
    margin-right: 1vw;
    font-size: 4vw;
    border-width: 0.5vw;
  }
}
