edit-dashboard-input {
  display: block;

  .config-line {
    display: flex;
    align-items: center;
    min-height: 34px;

    > :first-child {
      width: 120px;
    }

    > :nth-child(2):last-child {
      flex: 1;
    }
  }

  .checkbox-wrapper {
    columns: 2;

    label {
      display: block;
    }
  }

  input[type=checkbox] {
    pointer-events: none;
  }

  .static-option-list {
    dt, dd {
      display: flex;

      > .column-label, > .column-value {
        flex: 1;
        margin-right: 12px;
      }

      > .fa-times-circle-o {
        font-size: 20px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 20px;
      }
    }

    dt {
      margin-bottom: 4px;
    }
  }
}
