@charset "utf-8";
/* CSS Document */

@media (min-width: 768px){
.modal-dialog {
    width: 600px;
    margin: 95px auto;
}
}


/*OPTIONS BOX*/

#penToolBtn
{
    position: relative;
    z-index: 1001;
    pointer-events: auto;
    float: right;
}

#penToolOptions
{
    position: absolute;
    z-index: 1001;
    top: 75px;
    right: 0px;
    visibility: hidden;
    float: left;
    width: 25em;
    height: 4.5em;
    padding: .5em;
    /*border: 1px solid #ccc;*/
    background-color: #ddd;
    box-shadow: 0 0 20px #ccc;
	border-radius: 5px 0px 0px 5px;
}

/*PEN TOOL*/
#content{
    /* height: 100%; */
    position: relative;

    -webkit-user-select: none;/* Chrome all / Safari all */
       -moz-user-select: none;/* Firefox all */
        -ms-user-select: none;/* IE 10+ */
            user-select: none;
}
#penToolOptions .penActive{
    z-index: 1000;

    visibility: visible;
}
.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*/

#penToolCanvas{
    position: absolute;
    z-index: 998;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;
    /* pointer-events: none; */
}

#tmp_canvas{
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;

    cursor: crosshair;
    /* pointer-events: none; */	
}
canvas:hover{cursor: url(../images/eraser_cursor.png), pointer;}
/* Pen tool buttons */
button#ptClearAll, button#ptErase, button#ptHide {
	background-color: #1d4e89;
	color: #fff;
}

button#ptClearAll:hover, button#ptClearAll:focus, button#ptErase:hover, button#ptErase:focus, button#ptHide:hover, button#ptHide:focus {
	background-color: #1d4e89;
	color: #ddd; 
}

#penToolCanvas1{
position: absolute;
	top: 5%;
	left: 0;
	right: 0;
	bottom: 5%;
	z-index: 1000;
	
}



/* Information block style - SVG graphics */
/* HOVER COLOR */

svg {
    margin-right: 15px;
}

svg:hover #penTool,
svg:hover #infoButton { 
  fill: #aaa;
}

.btnOpen svg #penTool  { 
  fill: #888;
}

/* GENERAL STYLES */

#glyphs { 
  width: 100%; 
  margin: 2px auto; 
  text-align: center;
  zoom: 1.5;
  display: flex;
  padding-top: 5px;
}
a { 
  outline: none; 
  border: 0; 
  text-decoration: none; 
}
svg #penTool,
svg #infoButton { 
  transition: 200ms;
  transition-timing-function: ease-in-out;
  -webkit-transition: 200ms;
  -webkit-transition-timing-function: ease-in-out;
}

.modal-header{
	color:#fff;
	background-color:rgba(154,1,110,1.00);
	border-radius: 4px 4px 0px 0px;
}

.modal-footer{
	color:#fff;
	background-color:rgba(154,1,110,1.00);
	border-radius: 4px;
	border-radius: 0px 0px 4px 4px;
}


