.fg-image-crop-page {
  width: 100%;
  min-height: 100vh;

  background: #222426;
}

.fg-image-crop-control-button {
  position: absolute;
  top: 25px;

  width: 25px;
  height: 25px;

  padding: 0;

  background: transparent;
  border: none;

  font-size: 25px;
  line-height: 25px;

  transition: color 0.4s ease;
}

.fg-image-crop-close-button {
  left: 25px;

  color: #999999;
}

.fg-image-crop-close-button:hover,
.fg-image-crop-close-button:active,
.fg-image-crop-close-button:focus {
  color: #FFFFFF;
}

.fg-image-crop-submit-button {
  right: 25px;

  color: #66AFFF;
}

.fg-image-crop-page-content {
  padding-top: 75px;
}

.fg-image-crop-thumb-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  margin-top: 20px;

  transform: translateX(-10px);
}

.fg-image-crop-thumb {
  position: relative;

  order: 0;
  align-self: auto;

  width: 75px;
  height: 75px;
  flex: 0 1 auto;

  margin: 0 2px 4px 2px;

  background-color: transparent;

  transition: all ease .4s;
}

.fg-image-crop-thumb-image {
  display: block;

  width: 75px;
  height: 75px;

  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: cover;
  opacity: 0.2;

  transition: all .4s ease;
}

.fg-image-crop-thumb .fg-image-crop-thumb-image.active,
.fg-image-crop-thumb:hover .fg-image-crop-thumb-image {
  opacity: 1;
}

.fg-image-crop-thumb-spinner {
  position: absolute;
  top: 20px;
  left: 20px;

  opacity: 1;
  filter: alpha(opacity=100);

  transition: opacity .4s ease, visibility .4s;
}

.fg-image-crop-remove-button {
  position: absolute;

  display: none;

  padding: 0;

  background: transparent;
  border: none;

  font-size: 13px;
  line-height: 13px;

  transform: translateX(59px) translateY(-71px);
}

.fg-image-crop-thumb:hover .fg-image-crop-remove-button {
  display: block;
}

.fg-image-crop-not-ready-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;

  background: #222426;
}
