ftb-photo-loader-crop {
  display: flex;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}
ftb-photo-loader-crop .backdrop {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
ftb-photo-loader-crop.closed {
  opacity: 0;
  pointer-events: none;
}
ftb-photo-loader-crop .new-img {
  border-radius: 10px;
}
ftb-photo-loader-crop .workbench {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  max-height: 800px;
  max-width: 800px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
}
ftb-photo-loader-crop .workbench canvas {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  background: black;
}
ftb-photo-loader-crop .workbench .crop-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-height: 80%;
  max-width: 80%;
  aspect-ratio: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 3;
  border-radius: 10px;
  box-shadow: 0 0 1000px 1000px rgba(0, 0, 0, 0.7);
}
ftb-photo-loader-crop .workbench .crop-frame .rail {
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
}
ftb-photo-loader-crop .workbench .crop-frame .rail.v {
  height: 100%;
  width: 1px;
  top: 0;
}
ftb-photo-loader-crop .workbench .crop-frame .rail.h {
  width: 100%;
  height: 1px;
  left: 0;
}
ftb-photo-loader-crop .workbench .crop-frame .rail:nth-child(1) {
  top: 33.3333333333%;
}
ftb-photo-loader-crop .workbench .crop-frame .rail:nth-child(2) {
  top: 66.6666666667%;
}
ftb-photo-loader-crop .workbench .crop-frame .rail:nth-child(3) {
  left: 33.3333333333%;
}
ftb-photo-loader-crop .workbench .crop-frame .rail:nth-child(4) {
  left: 66.6666666667%;
}
ftb-photo-loader-crop .control-panel {
  background: black;
  height: 70px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
ftb-photo-loader-crop .control-panel button {
  background: transparent;
  box-shadow: none;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
ftb-photo-loader-crop .control-panel button ftb-icon {
  height: 13px;
  width: 13px;
  fill: white;
  margin-right: 10px;
}
ftb-photo-loader-crop .control-panel button ftb-icon.checkmark {
  height: 16px;
  width: 16px;
}
ftb-photo-loader-crop ftb-spinner {
  --color: white;
  --size: 12px;
}