diff --git a/src/client/containers/MapApp.js b/src/client/containers/MapApp.js
index b506ab57795b91193b6947bdf48c66ec5607b5a5..45c0e2d7e79d1aa74b1fb8a8a6188f2500451f2f 100644
--- a/src/client/containers/MapApp.js
+++ b/src/client/containers/MapApp.js
@@ -62,7 +62,11 @@ const styles = theme => ({
   },
   map: {
     marginLeft: theme.spacing.unit,
-    height: '50%'
+    //marginBotto: theme.spacing.unit * 3,
+    height: '65%'
+  },
+  statistics: {
+    height: '35%'
   }
 });
 
@@ -128,7 +132,7 @@ let MapApp = (props) => {
             <Paper className={classes.map}>
               {map}
             </Paper>
-            <div className={classes.map}>
+            <div className={classes.statistics}>
               <Pie data={props.results} groupBy={props.search.groupBy} query={props.search.query} />
             </div>
           </Grid>