.nut-cell {
  position: relative;
  display: flex;
  width: 100%;
  line-height: $cell-line-height;
  padding: $cell-padding;
  background-color: $cell-background-color;
  border-radius: $cell-border-radius;
  box-shadow: $cell-box-shadow;
  font-size: $cell-title-font-size;
  color: $cell-title-color;
  margin: 16px 0;
  box-sizing: border-box;
  &--has__press {
    &:active {
      background-color: $cell-active-background-color;
    }
  }
  &__left {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: $cell-title-padding;
    box-sizing: content-box;
  }
  &__has-extra {
    width: $cell-title-width;
    flex: none;
  }
  &__title {
    line-height: $cell-title-line-height;
    font-weight: $cell-title-font-weight;
  }
  &__description {
    font-size: $cell-description-font-size;
    color: $cell-description-color;
    line-height: $cell-description-line-height;
    margin: $cell-description-margin;
  }

  &__extra {
    display: inline-flex;
    justify-content: $cell-extra-justify-content;
    align-items: $cell-extra-align-items;
    flex: 1;
    min-width: 0;
    word-break: break-all;
    font-size: $cell-extra-font-size;
    line-height: $cell-extra-line-height;
    color: $cell-extra-color;
  }
}
