.m_step{
 @extend %panel;

 &__wrapper{
    
    height: 380px;
    display: flex;
    align-items: flex-start;
    overflow: auto;
    position: relative;
    margin: 0;
    max-width: none;
    padding-left: 20px;
    width  : calc(100vw - 46px);
    transform: translateX(-20px);
    @include media-min(lg) {
        padding-left: 50px;
        transform: translateX(-50px);
        width  : calc(100vw - 106px);
      }
    @include media-min(xl) {
        padding-left: 186px;
        margin-left: auto ;

        transform: translateX(calc(50% - 850px));
        width     : calc(100vw - 106px);
    }
 }
 &__block{
     flex:  0 0 auto;
     @include set-wCol(3);
     max-width: 250px !important;

     position: relative;

     &::before{
        content: '';
        display: none;
        width: 115%;
        height: 4px;
        background: $black;

        position: absolute;
        
        right: 100%;
    }
     &:nth-child(even){
        align-self: flex-end;  
        .m_step__number{
            bottom: calc(100% - 5px);
        }
        &::before{
            bottom: calc(100% + 34px);
        }
     }
     &:nth-child(odd){
        .m_step__number{
            top: calc(100% + 18px);
        }
        &::before{
            top: calc(100% + 36px);
        }
     }
     + .m_step__block{
         margin-left : 50px;
         &::before{display: block;}
     }
 }
 &__number{
    @extend %h4;
    width: 40px;
    height: 40px;

    background: $white;
    border-radius: 50%;
    border: 3px solid $black;

    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    left: 0;
    z-index: 1;
  }
}