/* Pen Options */

#penToolBtn {
  position: relative;
  z-index: 1001;
  pointer-events: auto;
}

#penToolOptions {
  background: rgba(255,255,255, 0.8);
  border-radius: 2px 0 0 2px;
  height: 290px;
  padding: 6px;
  position: absolute;
  right: 0;
  top: 96px;
  visibility: hidden;
  width: 44px;
  z-index: 1002;
}

#penToolOptions .penActive {
  visibility: visible;
  z-index: 1003;
}

.penColourOption {
  border-radius: 20px;
  border: 1px solid #fff;
  height: 32px;
  margin-top: 10px;
  padding: 0;
  width: 32px;
}

#penToolOptions button {
  background-position: center;
  background-size: 100% 100%;
  cursor: pointer;
}

.penColourOption:hover {
   transition: .2s;
  -webkit-transform: scale(1.1);
}

#penBLACK {
  background-color: black;
}

#penRED {
  background-color: red;
}

#penGREEN {
  background-color: green;
}

#penBLUE {
  background-color: blue;
}

/* Canvas */

canvas {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#erasing_canvas {
  cursor: url(images/eraser_cursor.png), auto;
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 998;
}

#drawing_canvas {
  cursor: crosshair;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 999;
}

.no-select{
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}