* {
  box-sizing: border-box;
}
html {
  background-color: #fff;
}
body {
  font-size: 16px;
  font-family: $font-family-body;
}

// select2 wrapper on map view page expands the page horizontally
// so that a horizontal scrollbar appears. The bold fix is to hide
// that empty space:
html,body {
    overflow-x:hidden;
}
