/*PEN TOOL OPTIONS*/
#penToolBtn{
position: relative;
    z-index: 1001;
    pointer-events: auto;
}

#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: 140px;
    right: 0;
    visibility: hidden;
    float: left;
    padding: .5em;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 0 20px #ccc;
	display:inline-block;

}
#penToolOptions .penActive
{
    z-index: 1000;

    visibility: visible;
}


#penToolOptions button
{	
	display:block;
	width:100%;
	margin:2px 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:80px;
	height:80px;
	margin: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;        
}


