body {
    background: rgb(50, 50, 50);
    color: white;
    font-size: 20px;
}

/* .block {
    position: fixed;
    bottom: 100px;
    min-height: 100px;
    min-width: 50%;
    left: 50%;
    /* background-color: yellow; */
/*
}

.block__inner {
    background: white;
    border-radius: 10px;
    min-height: 100px;
    min-width: 100%;
    position: absolute;
    right: 50px; 
}   */

.block {
    position: fixed;
    bottom: 100px;
    min-height: 100px;
    min-width: 50%;
    left: 50%;
    box-sizing: content-box;
    /* background-color: yellow; */
}

.block__inner {
    display: flex;
    background: white;
    border-radius: 10px;
    min-height: 100px;
    margin-right: 50px;
}

.block__circle {
    min-width: 100px;
    min-height: 100px;
    border-radius: 100px;
    background: red;
    position: absolute;
    bottom: 50%;
    left: 100px;
}