@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;500;700&display=swap');
html, body {
  padding: 0;
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 300;
}
div, header {
  box-sizing: border-box;
}
header {
  position: fixed;
  height: 64px;
  width: 100%;
  -webkit-box-shadow: 0px 5px 5px -1px rgba(0,0,0,0.22);
  box-shadow: 0px 5px 5px -1px rgba(0,0,0,0.22);
  padding: 16px;
}
#left-pane, #right-pane {
  position: fixed;
  top: 64px;
  width: 50vw;
  bottom: 0;
  border: 2px solid #949494;
}
#left-pane {
  left: 0;
}
#right-pane {
  right: 0;
  background: url('chessboard.png') repeat top left;
  overflow: scroll;
}
.tools {
  position: absolute;
  width: 100%;
  height: 48px;
  left: 0;
  top: 0;
}
.image-pane {
  position: absolute;
  width: 100%;
  left: 0;
  top: 48px;
  bottom: 64px;
  background: url('chessboard.png') repeat top left;
  border: 1px solid #bdbdbd;
  overflow: scroll;
  image-rendering: pixelated;
  /* Safari seems to support, but seems deprecated and does the same thing as the others. */
  image-rendering: -webkit-crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
}
.grid {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.properties {
  position: absolute;
  height: 64px;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 10px;
}
h2 {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  margin: 0;
}
p {
  padding: 0;
  margin: 0;
}

.zoom-pane {
  display: inline-block;
  width: 150px;
  position: relative;
  padding: 8px;
}
.zoom-pane span {
  position: absolute;
  font-size: 12px;
  line-height: 12px;
  bottom: 2px;
}
.zoom-pane span.x1 {
  left: 11px;
}
.zoom-pane span.x10 {
  right: 10px;
}

button {
  cursor: pointer;
  border: none;
  height: 32px;
  border-radius: 16px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #2980B9;
  color: #ffffff;
}
button:hover {
  background-color: #1970A9;
}

.styled-select {
  display: inline-block;
  border: 1px solid #2980B9;
  border-radius: 16px;
  height: 32px;
  padding-left: 12px;
  padding-right: 12px;
  appearance: none;
  text-align: center;
}
