/*CSS Layout bloque elementos de pasos / cronología */
.bk-bst-main{
    width: 100%;
    min-width: 100%;
    margin-bottom: 25px;
}
  .bk-bst-wrapper{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
  }
    .bk-bst-number-wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        margin-right: 45px;
        width: 55px;
    }
      .bk-bst-number{
        margin-bottom: 10px;
      }
      .bk-bst-number-scroll{
        flex-grow: 1;
        width: 6px;
      }
        .bk-bst-number-scroll-thumb{
            width: 100%;
            height: 0;
            display: block;
        }
    .bk-bst-content-wrapper{
        width: 718px;
        max-width: 718px;
    }
      .bk-bst-content-title{
        margin-bottom: 18px;
      }
      .bk-bst-content-body{
        margin-bottom: 22px;
      }
      .bk-bst-content-image{
        width: 100%;
        height: 135px;
        overflow: hidden;
      }
        .bk-bst-image{
            width: 100%;
            height: 100%;
        }
            .bk-bst-image img{
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        .bk-bst-main-active .bk-bst-number-scroll-thumb{
            height: 100%;
        }
@media (max-width:1199px) {
    .bk-bst-content-wrapper{
        width: 100%;
        max-width: 100%;
    }
}
@media (max-width:768px) {
    .bk-bst-number-wrapper{
        margin-right: 25px;
        width: 40px;
    }
      .bk-bst-number-scroll{
        width: 4px;
      }
      .bk-bst-content-image{
        height: 168px;
      }
      .bk-bst-content-title{
        margin-top: 10px;
      }
}