#crop_container .cropMain {
	height: 500px;
	margin: 20px 0px;
	width: 750px;
}


.cropMain {
    background: #c0c0c0;
    box-shadow:inset 0 0 6px rgba(0, 0, 0, 0.5);
}

.cropMain .crop-img {
    position: absolute;
    -webkit-transform-origin: center center 0;
    -moz-transform-origin: center center 0;
    -o-transform-origin: center center 0;
    -ms-transform-origin: center center 0;
    transform-origin: center center 0;
}

.cropMain .crop-container {
	overflow: hidden;
	position: relative;
}

.cropMain .crop-container:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	opacity: .75;
	filter: alpha(opacity=7);
			-webkit-box-shadow: inset 0 0 0 20px white,inset 0 0 0 21px rgba(0,0,0,.1),inset 0 0 10px 21px rgba(0,0,0,.2);
	box-shadow: inset 0 0 0 20px white,inset 0 0 0 21px rgba(0,0,0,.1),inset 0 0 10px 21px rgba(0,0,0,.2);
	
}

.cropMain .crop-overlay {
	position: absolute;
	cursor: move;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    background: url('/img/ctc.png') center center no-repeat;
}

.cropMain .cropping-overlay {
	position: absolute;
	cursor: wait;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    opacity: 0.9;
    background-color: #CCCCCC;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('/images/elements/loaders/1.gif');
    z-index: 2000;
}

/*---------------------------------------------------------*/
/*	slider bar styling
/*---------------------------------------------------------*/

.cropSlider .noUi-target * {
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
    -webkit-touch-callout:none;
    -ms-touch-action:none;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    cursor:default
}
.cropSlider .noUi-base {
	margin: 25px 10px;
	height: 7px;
	border-radius: 4px;
	background-color: #bbb;
	cursor:pointer;
	position:relative;
	z-index:1
}
.cropSlider .noUi-handle {
	width: 20px;
	height: 20px;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4), inset 0 -4px 8px rgba(0,0,0,0.10);
	cursor: move;
	border-radius: 4px;
	margin:-7px 0 0 -10px
}
.cropSlider .noUi-active {

}
.cropSlider .noUi-connect {
    background:Teal
}
.cropSlider .noUi-background {
    background:#fbc93d
}
.cropSlider .noUi-origin-lower {
	background:#eee;
}
.cropSlider .noUi-origin {
    position:absolute;
    right:0;
    top:0;
    bottom:0;
    z-index:0;
    border-radius:inherit
}
.cropSlider .noUi-origin-upper {
    background:inherit !important
}
.cropSlider .noUi-z-index {
    z-index:10
}
.cropSlider .noUi-vertical {
    width:40px;
    height:100%
}
.cropSlider .noUi-vertical .noUi-origin {
    bottom:0;
    left:0
}
.cropSlider .noUi-vertical .noUi-handle {
    margin:-23px 0 0 -3px
}
.cropSlider .noUi-target[disabled] .noUi-base {
	background: #ccc;
	box-shadow: none;
}
.cropSlider .noUi-target[disabled] .noUi-connect {
	background: #ccc;
	box-shadow: none;
}
.cropSlider .noUi-state-tap .noUi-origin {
    -webkit-transition:left .3s, top .3s;
    transition:left .3s, top .3s
}

#crop_container .controls {
    width: 60%;
}

#crop_container .control-label {
    margin-top: 10px;
}

.result img {
    margin-top: 25px;
    border: 20px solid #ddd;
}

.progress {
    display: inline-block;
    width: 303px;
}

#progress-number {
    display: inline-block;
    margin-bottom: 20px;
}

#progress div {
	vertical-align: top;
}

.recrop {
    margin-top: 40px;
}

.recrop-user, #crop-buttons-user {
    margin-bottom: 30px;
}

#crop-wrapper {
    width: 900px;
}

/** from jquery-fileupload **/
/*
 * jQuery File Upload Plugin CSS 1.3.0
 * https://github.com/blueimp/jQuery-File-Upload
 *
 * Copyright 2013, Sebastian Tschan
 * https://blueimp.net
 *
 * Licensed under the MIT license:
 * http://www.opensource.org/licenses/MIT
 */

.fileinput-button {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  display: inline;
}
.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  -ms-filter: 'alpha(opacity=0)';
  font-size: 200px;
  direction: ltr;
  cursor: pointer;
}

/* Fixes for IE < 8 */
@media screen\9 {
  .fileinput-button input {
    filter: alpha(opacity=0);
    font-size: 100%;
    height: 100%;
  }
}
