.ba {
    width: 100%;
    margin: 20px auto;
    padding: 10px;
    max-width: 1020px;
}

.ba__row,
.ba__row_progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ba__row_progress {
    margin: 20px 0px 30px;
    position: relative;
}

.ba__row_progress:after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 0.5em;
    border-top: 2px solid black;
    z-index: -1;
}

.ba__progress {
    flex: 1;
    text-align: center;
}

.ba__progress_point {
    background: #f1f1f1;
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid #000;
}

.ba__progress_point.ba__progress_active {
    background: #000;
}

.ba__cell {
    flex: 1;
    margin: 0px 10px;
}

.ba__image img {
    max-width: 260px;
    width: 100%;
}

.ba__image_blured img {
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
}

.ba__text_wrap {
    margin-top: 35px;
}

.ba__text {
    display: none;
}

.ba__text.ba__text_show {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    margin: 20px;
}

.ba__row_btns {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0px;
}

.ba__btn {
    border-radius: 5px;
    overflow: hidden;
    padding: 0 10px;
    position: relative;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    margin: 10px 0;
    max-width: 125px;
    cursor: pointer;
    min-height: 50px;
    background: #000;
    border-radius: 5px;
    flex: 1;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    opacity: 0.1;
    cursor: default;
}

.ba__btn.ba__btn_active {
    opacity: 1;
    cursor: pointer;
}

.ba__btn span {
    font-weight: 300;
    font-size: 20px;
    padding: 0px;
    font-family: "Antic Didone";
    text-align: center;
    position: relative;
    width: 100%;
    display: block;
    vertical-align: middle;
    line-height: normal;
    margin: 0;
    font-family: "Oswald";
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ba__image_enlarge {
    -webkit-transform: scale(2);
    transform: scale(2);
    cursor: pointer;
    z-index: 1;
}

.ba__image {
    transition: transform 0.25s ease;
}

.ba__image.ba__image_active.ba__image_enlarge {
    position: relative;
}