.rad-google-shortcode-data.range .rad-g-row {
    display:flex;
}

/*
 * Bar Graphs
 */
.rad-google-shortcode-data.range[data-format='graph'] {
    min-height: 200px;
}
.rad-google-shortcode-data.range[data-format='graph'] .rad-g-row {
    display: flex;
    align-items: end;
    height: 100%;
    width: 100%;
}
.rad-google-shortcode-data.range[data-format='graph'] .rad-g-row .rad-g-col {
    display:flex;
    box-sizing: border-box;
    border:1px solid;
    overflow:hidden;
    position:absolute;
    bottom:0;
    color:transparent;
}

/*
 * Pie Charts
 */
.rad-google-shortcode-data.range[data-format='pie'] {}

.rad-google-shortcode-data.range[data-format='pie'] .rad-g-row {
    width:100%;
    height:0;
    padding-bottom:100%;
    border-radius: 50%;
    position: relative;
    box-sizing: border-box;
}
.rad-google-shortcode-data.range[data-format='pie'] .rad-g-row .rad-g-col {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 50%;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color:transparent;
}