/* Pasos de compra */
.container-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 70%;
  margin: 0 auto;
  max-height: 108px;
}
.step-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
}
.step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 5px;
}
.step__number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--complementary-color-30);
  color: #ffffff;
  font-style: normal;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.125rem;
  padding: 25px;
}
.step__number-select {
  background-color: var(--secondary-color);
}
.step__text {
  margin-top: 8px;
  text-align: center;
  width: 150;
  color: var(--main-color-light);
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.step__line {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 1px;
  border-radius: 10px;
  background-color: var(--secondary-color);
  border: 3px solid var(--secondary-color);
  margin: 0 0 15 0;
}

/* Media queries */
@media (max-width: 768px) {
  .container-steps {
    display: none;
  }
}