.container {
  display: flex;

  .item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    width: 90px;
    height: 30px;
    line-height: 30px;
    margin-right: 16px;
  }

  .selectedItem {
    color: #6874e2;
    border: 1px solid #6874e2;
  }
}
