.MyInformation{
    .steps {
        .step {
          flex: 1;
          button {
            width: 45px;
            height: 45px;
            background-color:#EFF0F5;
            transition: background-color 250ms;
            
          }
          h6 {
            color: #BCC1D7;
            font-size: 12px;
            font-weight: 700;
            transition: background-color 250ms;
          }
          &.active {
            button {
              background-color: #15CF74;
            }
            h6 {
              color: #15CF74;
            }
          }
        }
      }
      .stepLine {
        width: 80%;
        height: 5px;
        top: 20px;
        left: 10%;
        background-color: #EFF0F5;
        &::before {
          content: "";
          position: absolute;
          top: 0;
          right: 0;
          height: 100%;
          width: var(--width);
          background-color: #15CF74;
          transition: width 250ms;
        }
      }
      .cart-item {
        width: 200px;
      }
}