.fg-batch-row {
  display: flex;
}

.fg-batch-row-image-tile {
  flex: 0 0 253px;

  overflow: hidden;

  border-radius: 5px;

  background-color: #2D2F31;
}

.fg-batch-row-image-container {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 253px;
  height: 253px;

  cursor: pointer;
}

.fg-batch-row-image {
  width: 100%;
}

.fg-batch-row-image-button {
  position: absolute;

  padding: 0;
  margin: 0;

  background: rgba(45, 47, 49, 0.8);
  outline: none;
  border: none;
  color: #999999;

  line-height: 1;

  transition: color .4s ease;
}

.fg-batch-row-image-crop-button {
  top: 50%;
  left: 50%;

  width: 35px;
  height: 35px;

  font-size: 35px;

  transform: translate(-50%, -50%);
}

.fg-batch-row-image-delete-button {
  top: 10px;
  right: 10px;

  width: 40px;
  height: 40px;

  border-radius: 50%;

  font-size: 20px;
}

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

.fg-batch-row-image-info-container {
  display: flex;
  align-items: center;

  height: 50px;

  padding: 12px 15px;
}

.fg-batch-row-image-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  flex: 0 0 calc(100% - 20px);
  height: 26px;

  font-family: 'AzoSans-Regular';
  font-size: 12.5px;
  line-height: 12.5px;
  text-align: center;
}

.fg-batch-row-image-info-search-button {
  width: 20px;
  height: 20px;

  padding: 0;

  border: none;
  background: none;
  outline: none;
  color: #999999;

  font-size: 20px;
  line-height: 1;

  transition: color .4s ease;
}

.fg-batch-row-image-info-search-button:hover {
  color: #FFFFFF;
}

.fg-batch-row-image-suggestions {
  display: flex;
  align-items: center;

  flex: 0 0 calc(100% - 253px);
  overflow-x: auto;
}

.fg-batch-row-image-suggestion {
  max-width: 177px;

  margin-left: 4px;

  color: #999999;
  cursor: pointer;

  transition: color .4s ease;
}

.fg-batch-row-image-suggestion:hover,
.fg-batch-row-image-suggestion--active {
  color: #FFFFFF;
}

.fg-batch-row-image-suggestion-image-container {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  width: 177px;
  height: 177px;
}

.fg-batch-row-image-suggestion-image-container:after {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: transparent;
  border: 0px solid transparent;

  content: '';

  transition: border .4s ease;
}

.fg-batch-row-image-suggestion:hover .fg-batch-row-image-suggestion-image-container:after,
.fg-batch-row-image-suggestion--active .fg-batch-row-image-suggestion-image-container:after {
  border: 5px solid #66AFFF;
}

.fg-batch-row-image-suggestion-image {
  width: 177px;
}

.fg-batch-row-image-no-suggestion {
  margin: 0 0 0 4px;

  color: #999999;
}

.fg-batch-row-category-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  height: 34px;

  padding-top: 10px;

  font-family: 'AzoSans-Regular';
  font-size: 12px;
  line-height: 12px;
  text-align: center;
}

.fg-batch-row-image-category-info {
  align-items: flex-start;

  flex: 0 0 calc(100% - 20px);
  max-width: calc(100% - 20px);
  height: 26px;

  padding: 0;

  font-size: 12.5px;
  line-height: 12.5px;
  text-align: left;
}

.fg-batch-row-category-info-text {
  overflow: hidden;
  width: 90%;

  margin: 0;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.fg-batch-row-category-subtitle {
  font-size: 10px;
}

.fg-batch-row-suggestions-loader {
  margin-left: 90px;
}

@media screen and (max-width: 530px) {
  .fg-batch-row-image-tile {
    flex: 0 0 164px;
  }

  .fg-batch-row-image-container {
    width: 164px;
    height: 164px;
  }

  .fg-batch-row-image {
    width: 100%;
  }

  .fg-batch-row-image-suggestions {
    flex: 0 0 calc(100% - 164px);
  }

  .fg-batch-row-image-suggestion {
    max-width: 115px;
  }

  .fg-batch-row-image-suggestion-image-container {
    width: 115px;
    height: 115px;
  }

  .fg-batch-row-image-suggestion-image {
    width: 100%;
  }
}
