@media only screen and (min-width: 0rem) {
  .steps-container {
    display: block;
    padding-left: 1rem;
    padding-top: 1.5rem;
    padding-right: 1rem;
    /* Scroll */
    /* List */
    /* Step item */
    /* Circle */
    /* Active / Completed */
    /* Inactive */
    /* Label */
    /* Active label */
    /* Inactive label */
    /* Connector */
  }
  .steps-container .steps-scroll {
    width: 100%;
    overflow-x: auto;
  }
  .steps-container .steps-scroll::-webkit-scrollbar {
    display: none;
  }
  .steps-container .steps-list {
    list-style: none;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .steps-container .step-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .steps-container .step-circle {
    border-radius: 50%;
    width: 29px;
    height: 29px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 16px;
    font-weight: 600;
  }
  .steps-container .step-active {
    color: #fff;
    position: relative;
    border: 2px solid var(--secondary);
  }
  .steps-container .step-completed {
    background-color: var(--secondary);
    color: #fff;
    position: relative;
  }
  .steps-container .step-completed::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 5px;
    width: 7px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 1;
  }
  .steps-container .step-inactive {
    border: 2px solid #6c7689;
    color: #737373;
  }
  .steps-container .step-label {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .steps-container .label-active {
    color: var(--secondary);
  }
  .steps-container .label-inactive {
    color: #737373;
    display: none;
  }
  .steps-container .step-connector {
    width: 24px;
    height: 1px;
    background-color: #d4d4d4;
    margin: 0 8px;
  }
}
@media only screen and (min-width: 48rem) {
  .steps-container {
    display: block;
    padding-left: 4rem;
    padding-top: 2.5rem;
    padding-right: 1rem;
  }
  .steps-container .label-inactive {
    color: #737373;
    display: block;
  }
  .steps-container .steps-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .steps-container .step-connector {
    display: none;
  }
}
