.edit-figure-choice-field-option-container {
  border: none;
  cursor: pointer;
  color: #777777;
  background-color: #f2f2f2;

  transition: all .4s ease;
}

.edit-figure-choice-field-option-container:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.edit-figure-choice-field-option-container:last-of-type {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.edit-figure-choice-field-option-container--active {
  color: #000;
  background-color: #E3E4EB;
}

.edit-figure-choice-field-option-title {
  width: 95%;

  font-family: 'AzoSans-Regular';
  font-size: 15px;
}

.edit-figure-choice-field-option-checkmark {
  position: absolute;
  top: 15px;
  right: 16px;
  opacity: .7;

  width: 20px;
  height: 20px;

  color: #777777;

  font-size: 20px;

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

.edit-figure-choice-field-option-checkmark--active {
  opacity: 1;

  color: #08b58e;
}

