/*PEN TOOL OPTIONS*/
#penToolBtn{
position: relative;
    z-index: 1001;
    pointer-events: auto;
}
#penToolOptions
{
	position: absolute;
	color: #ddd;
    z-index: 1001;
    top: 82px;
	right: -15px;
    visibility: hidden;
    width: 251px;
    height: 45px;
    padding: 0.5em;
    border: 0;
	border-radius: 3px;
    background-color: #00AEEF;
}
#penToolOptions .penActive
{
    z-index: 1000;

    visibility: visible;
}

.penColourOption
{
    width: 30px;
    height: 30px;
    padding: 0;
	margin: 0;
    border: 0;
    border-radius: 3px;
	vertical-align: bottom;
}

#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;*/
}

.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;
}
#ptLock, #ptErase, #ptClearAll {
	font-size: 0;
	width: 30px;
	height: 30px;
	padding: 0;
	margin:0;
	vertical-align: bottom;
}
.icon-bin {
	background-image: url(../img/bin.png)	
}
.icon-bin:hover {
	background-image: url(../img/bin-hover.png)	
}

.icon-erase {
	background-image: url(../img/erase.png)	
}
.icon-erase:hover {
	background-image: url(../img/erase-hover.png)	
}
.icon-lock {
	background-image: url(../img/lock.png)
}
.icon-lock:hover {
	background-image: url(../img/lock-hover.png)	
}
.icon-unlock {
	background-image: url(../img/unlock.png)
}
.icon-unlock:hover {
	background-image: url(../img/unlock-hover.png)
}

/*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(../img/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;        
}


