    .crop-wrapper {
        background-color: rgba(255, 255, 255, 1);
        position: relative;
        width: 100%;
        height: 90vh;
        overflow: hidden;
    }
    
    .resize-container {
        position: relative;
        display: inline-block;
        cursor: move;
        margin: 0 auto;
    }
    
    .resize-container-ontop {
        position: absolute;
        cursor: move;
        background-color: rgba(5, 255, 5, 0);
        z-index: 1000;
        width: 100%;
        height: 100%;
    }
    
    .resize-container img {
        display: block;
    }
    
    .resize-container:hover img,
    .resize-container:active img {
        outline: 2px dashed rgba(0, 0, 0, .9);
    }
    
    .resize-handle-ne,
    .resize-handle-se,
    .resize-handle-nw,
    .resize-handle-sw {
        position: absolute;
        display: block;
        width: 10px;
        height: 10px;
        background: rgba(0, 0, 0, .9);
        z-index: 999;
    }
    
    .resize-handle-nw {
        top: -5px;
        left: -5px;
        cursor: nw-resize;
    }
    
    .resize-handle-sw {
        bottom: -5px;
        left: -5px;
        cursor: sw-resize;
    }
    
    .resize-handle-ne {
        top: -5px;
        right: -5px;
        cursor: ne-resize;
    }
    
    .resize-handle-se {
        bottom: -5px;
        right: -5px;
        cursor: se-resize;
    }
    
    .top-overlay {
        z-index: 990;
        background-color: rgba(222, 222, 222, .6);
        width: 100%;
        height: 50%;
        margin-top: -150px;
        position: absolute;
    }
    
    .bottom-overlay {
        z-index: 990;
        background-color: rgba(222, 222, 222, .6);
        width: 100%;
        height: 50%;
        margin-bottom: -150px;
        position: absolute;
        bottom: 0;
    }
    
    .right-overlay {
        z-index: 990;
        background-color: rgba(222, 222, 222, .6);
        width: 50%;
        height: 300px;
        top: 50%;
        margin-top: -150px;
        margin-left: -150px;
        position: absolute;
    }
    
    .left-overlay {
        z-index: 990;
        background-color: rgba(222, 222, 222, .6);
        width: 50%;
        height: 300px;
        top: 50%;
        right: 0px;
        margin-top: -150px;
        margin-right: -150px;
        position: absolute;
    }
    
    .top-overlay,
    .bottom-overlay,
    .right-overlay,
    .left-overlay {
        background: none;
    }
    
    .overlay {
        position: absolute;
        /* left: 50%; */
        /* top: 50%; */
        /* margin-left: -150px; */
        /* margin-top: -150px; */
        z-index: 999;
        width: 100%;
        height: 100%;
        border: solid 2px rgba(222, 222, 222, .9);
        box-sizing: content-box;
        pointer-events: none;
        /* background-color: rebeccapurple;*/
    }
    
    .overlay:before {
        top: 0;
        margin-left: -2px;
        margin-top: -40px;
    }
    
    .overlay:after {
        bottom: 0;
        margin-left: -2px;
        margin-bottom: -40px;
    }
    
    .overlay-inner:before {
        left: 0;
        margin-left: -40px;
        margin-top: -2px;
    }
    
    .overlay-inner:after {
        right: 0;
        margin-right: -40px;
        margin-top: -2px;
    }
    
    .btn-custom {
        padding: 6px 10px;
        background-color: #f00;
        border: none;
        border-radius: 5px;
        color: #FFF;
        margin: 10px 5px;
        line-height: 30px;
    }
    
    .btn-custom-crop img {
        vertical-align: middle;
        margin-left: 8px;
    }
	
	
@media screen and (max-width: 799px) {
	
	.ui-widget-content {
    border:none!important;
    background: #000000 url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;
    color: #222222;
}

 .crop-wrapper {
        background-color:#000;
        position: relative;
        width: 100%;
        height: 40vh;
        overflow: hidden;
    }
    

}