/*PEN TOOL OPTIONS*/
#penToolBtn{
position: relative;
    z-index: 1001;
    pointer-events: auto;
}
#penToolOptions
{
    position: absolute;
    z-index: 1001;
    top: 65px;
    right: 0px;
    visibility: hidden;
    float: left;
    width: 24em;
    height: 4.5em;
    padding: .5em;
    border: 1px solid #eaa82e;
    background-color: #eaa82e;
    box-shadow: 0 0 20px #ccc;
	border-radius: 5px 0px 0px 5px;
}

#penToolOptions .penActive
{
    z-index: 1000;

    visibility: visible;
}

.penColourOption
{
    width: 32px;
    height: 32px;
    padding: 0;

    border: 1px solid #fff;
    border-radius: 20px;

}

#penToolOptions button
{
    background-position: center;
    background-size: 100% 100%;
     cursor: pointer;
    /*-moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;*/
}

/* Pen tool buttons */

#penBLACK{
	margin-top:5px;
}

button#ptClearAll, button#ptErase, button#ptLock {
	background-color: #0085b4;
	color: #ddd;
}

button#ptClearAll:hover, button#ptClearAll:focus, button#ptErase:hover, button#ptErase:focus, button#ptHide:hover, button#ptLock:focus {
	background-color: #0085b4;
	color: #eaa82e; 
}

.penColourOption{
    width: 32px;
    height: 32px;
    position: relative;
    top: 10px;
    padding: 0;
    border: 1px solid #fff;
    border-radius: 20px;
}

#penToolOptions button{
    background-position: center;
    background-size: 100% 100%;
    /*-moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;*/
}

.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;        
}


