/**
 * Buttons block style for backend.
 */
.styble-container-variation-picker {
    text-align: center;
    padding: 30px 75px;
    border: 1px solid #cccccc;
    width: 620px;
    margin: auto;
    background: #fff;
    &-label{
        span{
            margin: 0;
            font-size: 26px;
            font-weight: 600;
            color: #2F2F2F;
            letter-spacing: 0px;
        }
        p{
            margin: 0;
            font-size: 14px;
            color: #949494;
            margin-top: 6px;
            margin-bottom: 40px;
        }
    }
    ul{
        padding: 0;
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        row-gap: 40px;
        li{
            flex: 0 0 33.33%;
            button{
                width: 65%;
                height: 60px;
                border: none;
                background: transparent;
                cursor: pointer;
                svg{
                    fill: #008DB4;
                    width: 100%;
                    height: 100%;
                }
            }
        }
    }
}
.editor-styles-wrapper .styble-container-variation-picker ul{
    list-style: none;
}
