/*PEN TOOL OPTIONS*/
#penToolBtn {
    position: absolute;
    z-index: 1001;
    pointer-events: auto;
    top: 305px;
    right: 1px;
    height: 75px;
}

#penToolBtn .glyphicon {
    font-size: 140%
}

#penToolBtn h1.glyphicon {
    border-radius: 100%;
    font-size: 40px;
    height: 63px;
    width: 63px;
    padding: 12px 14px;
    background-color: #FFF;
    color: #87CAE0;
}

#penToolBtn h1.glyphicon:hover {
    background-color: #4A8193
}

#penToolBtn:hover {
/*  background:none*/
}

#penToolOptions {
    position: absolute;
    z-index: 1001;
    top: 390px;
    right: 1px;
    visibility: hidden;
    float: left;
    padding: .2em .2em 0;
    border: 1px solid #ccc;
    background-color: rgba(256, 256, 256, 0.8);
    border: 1px solid #666;
    display: inline-block;
}

#penToolOptions .penActive {
    z-index: 1000;
    visibility: visible;
}


#penToolOptions button {    
    display: block;
    width: 100%;
    margin: 4px 0px;
    background-position: center;
    background-size: 100% 100%;
    cursor: pointer;
    /*-moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;*/
}


#penToolOptions .penColourOption {  
    display:block;
    width:40px;
    height:40px;
    margin: 4px auto;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 100%;
}

.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;  /* Chrome all / Safari all */
      -moz-user-select: none;     /* Firefox all */
      -ms-user-select: none;      /* IE 10+ */
      user-select: none;        
}

#erasing_canvas {
    position: absolute;
    z-index: 998;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    cursor: url(images/eraser_cursor.png), auto;
    /* pointer-events: none; */
}

#drawing_canvas {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    cursor: crosshair;

    /* pointer-events: none; */
}

.no-select {
      -webkit-user-select: none;  /* Chrome all / Safari all */
      -moz-user-select: none;     /* Firefox all */
      -ms-user-select: none;      /* IE 10+ */
      user-select: none;        
}