.conditions {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;

  &.expandable-wrapper.expanded {
    border: 1px solid;
  }

  > .expandable-toggle {
    min-height: 30px;
    min-width: 30px;

    &:after {
      content: 'Conditions';
      font-weight: bold;
    }
  }

  .expandable {
    border-top: 1px solid;
    padding: .1in;

    .condition {
      align-items: center;
      display: flex;
      justify-content: center;
    }
  }
}
