.ba-container {
    position: relative;
    overflow: hidden;
    display: grid;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.ba-container img {
    display: block;
    width: 100%;
    height: auto;
    grid-area: 1/-1;
}

.ba-handle {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 35px 30px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    user-select: none;
    position: absolute;
    z-index: 10;
    transition: none;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
