/* Some of these styles you can override, things like colors,
 * however some styles are required for the structure, and are critical to this module behaving properly!
 */

/* Core component styles */
.ng-image-crop {
  text-align: center;
  margin: 0 auto;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
/* Each of the 3 steps in the process are contained within sections */
.ng-image-crop > section {
  background: #ccc;
}
/* The cropping button */
.ng-image-crop .crop-buttons {position: absolute;
  right: 0;
  top: 0;
  padding: 10px;
}
  
.ng-image-crop .crop-buttons button{
background-color: rgba(0,0,0,0.7);
  -webkit-border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, .12);
  color: #fff;
  display: inline;
  font-size: 13px;
  font-weight: bold;
  border: none;
  padding: 8px 10px;
}

/* The dashed cropping guideline */
.ng-image-crop .cropping-guide {
  display: block;
  background: rgba(255, 255, 255, .3);
  border: 2px dashed white;
  position: absolute;
  pointer-events: none;
}
/* The circular themed cropping guideline */
.ng-image-crop--circle .cropping-guide {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
/* The canvas where the user positions the image via dragging and zooming */
.ng-image-crop .canvas-section .cropping-canvas {
  background: rgba(255, 255, 255, .3);
  margin: 0 auto;
  cursor: move;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.ng-image-crop .canvas-section {
width: 100%;
height: 100%;
}

/* The overlayed draggable zoom handle in the corner of the module */
/*.ng-image-crop .zoom-handle {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
    background: url("../../images/data-zoom-in-icon.png") no-repeat scroll center center / 20px 20px rgba(255,255,255,0.7);
  width: 40px;
  height: 40px;
  cursor: move;
  text-indent: -99999px;
  border-radius: 50%;
}
 The text within the zoom handle 
.ng-image-crop .zoom-handle > span {
  color: rgba(0, 0, 0, 0.5);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  display: block;
  position: relative;
  top: 32px;
}*/

.ng-image-crop .zoom-handle {
  display: block;
  position: absolute;
/*  bottom: 1px;
  left: 1px;*/
  background: rgba(255,255,255,0.7);
  width: 80px;
  height: 80px;
  cursor: move;
  border-radius: 200px 50px;
  top: 20px;
  right: 20px
}
/* The text within the zoom handle */
.ng-image-crop .zoom-handle > span {
  color: rgba(0, 0, 0, 0.5);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  display: block;
  position: relative;
  top: 32px;
}

.drag-text{
  background: #000 url(../../images/drag.png) 9px 8px no-repeat;
  background-color: rgba(0,0,0,0.7);
  -webkit-border-radius: 2px;
  -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, .12);
  color: #fff;
  display: inline;
  font-size: 13px;
  font-weight: bold;
  position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
  padding: 4px 9px 6px 29px;
  width: 200px;
  height: 30px;
  margin: auto;
}

@media screen and (max-width: 991px) and (min-width: 769px){
  .ng-image-crop button{
  background: rgba(0,0,0,0.7);
}

.cover-links-outer .cover-links.user-cover-button .profile-cover-dp{
  padding: 6px 12px 7px;
  position: absolute;
  right: 0;
  bottom: 0; 
}
}

@media screen and (max-width:768px){
.ng-image-crop button{
  background: rgba(0,0,0,0.7);
}
}
@media screen and (min-width:480px) and (max-width:640px){
.drag-text{
	background: #000 url(../../images/drag-icon.png) center center no-repeat;
	background-color: rgba(0,0,0,0.7);
	text-indent: -9999px;
  background-size: 25px auto;
  width: 36px;
  height: 36px;
  padding: 0;
}
}
@media screen and (max-width:479px){
.ng-image-crop button{
  bottom: auto;
right: auto;
left: 0;
top: 122px;
background: rgba(0,0,0,0.7);
}

.ng-image-crop button:nth-child(2n+1){
  margin: 0 !important;
  left: 101px;
}

.drag-text{}

.drag-text{
	background: #000 url(../../images/drag-icon.png) center center no-repeat;
	background-color: rgba(0,0,0,0.7);
	text-indent: -9999px;
  background-size: 25px auto;
  width: 36px;
  height: 36px;
  padding: 0;
    left: 10px;
  right: auto;
  top: 10px;
  bottom: auto;
}
}
