/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 2017-08-25, 18:56:23
    Author     : Patryk
*/
#crop-background{
    position: fixed;
    top:0;
    left:0;
    background: rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 100%;
    z-index:99999;
}
#crop-area{
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;     
    user-select: none;
}

#crop-area{
    position: absolute;
    /*transform: translate(-50%,-50%);*/
    z-index:999;
    border: 1px solid rgb(0, 100, 218);
    cursor: move;
    box-shadow: inset -1px -1px 10px 1px rgba(2, 58, 128, 0.51);
}

#crop-area:after{
    content: "";
    background: blue;
    opacity: 0.05;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
}
.crop-resize{
    position: absolute;
    width:5px;
    height:5px;
    background: #2196F3;
    border: 1px solid rgba(33, 81, 243, 0.95);
    z-index:9999;
}
.crop-resize:nth-child(4){
    top:0;
    left:0;
    margin-top: -3px;
    margin-left: -3px;
}
.crop-resize:nth-child(3){
    top:0;
    right:0;
    margin-top: -3px;
    margin-right: -3px;
}
.crop-resize:nth-child(2){
    bottom:0;
    left:0;
    margin-bottom: -3px;
    margin-left: -3px;
}
.crop-resize:nth-child(1){
    bottom:0;
    right:0;
    margin-bottom: -3px;
    margin-right: -3px;
    cursor:nw-resize;
}
