.form-container {
  display: flex;
  flex-direction: column;
}

.form-container > * {
  width: 100%;
}

.group-panel {
  cursor: pointer;
  display: contents;
  color: #777;
}

.left-col {
  white-space: nowrap;
}

.group-panel-content {
  padding-top: 10px;

  opacity: 0;

  transition: 0.3s;
  animation: show 0.3s 1;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;

  @keyframes show {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }
}

.group-panel-wrapper {
  padding-top: 30px;
}

.field {
  padding-top: 5px;
}

.feed-edit-options {
  td {
    padding: 15px;
  }
}
