.bingo-template {
    position: relative;
}

.bingo-template-6 hr {
    border-top: 5px solid #f90;
    width: 130px;
    margin-bottom: 3rem
}
.bingo-template-6 .rows {
    display: flex;align-items: center;justify-content: center;
}
.bingo-template-6 .rows .item{
    flex-grow: 1;text-align: center;
    box-sizing: border-box;
    padding: 50px 20px;
    background: #A08FC6;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    font-family: Mark-Bold;
    position: relative;
}

.bingo-template-6 .rows .item::after {
    content: '+';
    position: absolute;
    right: -30px;
    top: 50%;
    z-index: 99;
    margin-top: -80px;
    font-size: 95px;
}
.bingo-template-6 .rows .item:nth-last-child(2)::after {
    content: '=';
}
.bingo-template-6 .rows .item:last-child::after {
    display: none;
}
.bingo-template-6 .item .number {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 95px;
    margin: 10px auto;
    color: #A08FC6;
}


@media(max-width:768px) {
    .bingo-template-6 .rows {
        display: block!important;
    }
    .bingo-template-6 .rows .item::after{
        left:0;right:0;margin:0 auto;
        bottom: -50px;
        top:unset;
        z-index: 99;
        margin-top:unset;
    }
}