.croppie-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.browse-candidate-profile-drag-msg{
    order:2;
}
.croppie-container .cr-image {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    max-height: none;
    max-width: none;
}

.croppie-container .cr-boundary {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    z-index: 1;
    width: 100%;
    height: 100%;
    order:1;
}
@media (min-width: 320px) and (max-width: 768px)
{
    .cr-boundary{
        width: 300px !important;
        height: 300px !important;
     }
}
.cr-slider-wrap{
    order:3;
}
.croppie-container .cr-viewport,
.croppie-container .cr-resizer {
    position: absolute;
    border: 2px solid #fff;
    border-radius:50%;
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.croppie-container .cr-resizer {
  z-index: 2;
  box-shadow: none;
  pointer-events: none;
}

.croppie-container .cr-resizer-vertical,
.croppie-container .cr-resizer-horisontal {
  position: absolute;
  pointer-events: all;
}

.croppie-container .cr-resizer-vertical::after,
.croppie-container .cr-resizer-horisontal::after {
    display: block;
    position: absolute;
    box-sizing: border-box;
    border: 1px solid black;
    background: #fff;
    width: 10px;
    height: 10px;
    content: '';
}

.croppie-container .cr-resizer-vertical {
  bottom: -5px;
  cursor: row-resize;
  width: 100%;
  height: 10px;
}

.croppie-container .cr-resizer-vertical::after {
    left: 50%;
    margin-left: -5px;
}

.croppie-container .cr-resizer-horisontal {
  right: -5px;
  cursor: col-resize;
  width: 10px;
  height: 100%;
}

.croppie-container .cr-resizer-horisontal::after {
    top: 50%;
    margin-top: -5px;
}

.croppie-container .cr-original-image {
    display: none;
}

.croppie-container .cr-vp-circle {
    border-radius: 50%;
}

.croppie-container .cr-overlay {
    z-index: 1;
    position: absolute;
    cursor: move;
    touch-action: none;
}

.croppie-container .cr-slider-wrap {
    width: 100%;
    margin: 15px auto;
    text-align: center;
}

.croppie-result {
    position: relative;
    overflow: hidden;
}

.croppie-result img {
    position: absolute;
}

.croppie-container .cr-image,
.croppie-container .cr-overlay,
.croppie-container .cr-viewport {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

/*************************************/
/***** STYLING RANGE INPUT ***********/
/*************************************/
/*http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */
/*************************************/


/*
.cr-slider:focus::-webkit-slider-runnable-track {
background: #ccc;
}
*/


/*-------------------------------------*/
/*******************************************/

/***********************************/
/* Rotation Tools */
/***********************************/
.cr-rotate-controls {
	position: absolute;
	bottom: 5px;
	left: 5px;
	z-index: 1;
}
.cr-rotate-controls button {
	border: 0;
	background: none;
}
.cr-rotate-controls i:before {
	display: inline-block;
	font-style: normal;
	font-weight: 900;
	font-size: 22px;
}
.cr-rotate-l i:before {
	content: '↺';
}
.cr-rotate-r i:before {
	content: '↻';
}

.croppie-container .cr-vp-circle::after {
    height: 100%;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    width: 3rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 7%;
}


.croppie-container .cr-vp-circle::before, .croppie-container .cr-vp-circle::after {
    position: absolute;
    content: '';
}


.croppie-container .cr-vp-circle::before {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    width: 100%;
    height: 3rem;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 7%;
}





input[type=range] {
  margin: auto;
  outline: none;
  padding: 0;
  width: 50%;
  height: 8px;
  background-color: #EBEBEE;
 
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #087af5), color-stop(100%, #087af5));
  background-image: -webkit-linear-gradient(#AA0285, #AA0285);
  background-image: -moz-linear-gradient(#AA0285, #AA0285);
  background-image: -o-linear-gradient(#AA0285, #AA0285);
  background-image: linear-gradient(#AA0285, #AA0285);
  background-size: 50% 100%;
  background-repeat: no-repeat;
  border-radius: 8px;
  cursor: pointer;
  -webkit-appearance: none;
  /* track */
  /* thumb */ }
  input[type=range]:focus-visible {
    outline: 4px solid #FF5858;
    outline-offset:8px;
    }
  input[type=range]::-webkit-slider-runnable-track {
    box-shadow: none;
    border: none;
    background: transparent;
    -webkit-appearance: none; }
  input[type=range]::-moz-range-track {
    box-shadow: none;
    border: none;
    background: transparent; }
  input[type=range]::-moz-focus-outer {
    border: 0; }
  input[type=range]::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
    border: 0;
    background: white;
    border:8px solid #7A005F;
    border-radius: 100%;
    box-shadow: 0 1px 2px 0px #7A005F;
    -webkit-appearance: none; }
  input[type=range]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border: 0;
    background: white;
    border:8px solid #7A005F;
    border-radius: 100%;
    box-shadow: 0 1px 2px 0px #7A005F; }