.zbx-business-button-select {
  display: flex;
  flex-wrap: wrap;

  .option {
    box-sizing: border-box;
    width: 165px;
    height: 30px;
    color: #333;
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    background: #f2f3f7;
    border-radius: 15px;
    transition: 300ms;
    &.selected {
      color: #fff;
      background: #191919;
    }
  }

  :nth-child(2n) {
    margin-left: 15px;
  }

  :nth-child(n + 3) {
    margin-top: 16px;
  }
}

.zbx-business-button-select-inner {
  padding: 4px;
  border-radius: 4px;
  background: #f4f4f5;
  display: inline-flex;

  .option {
    padding: 4px 8px;
    border-radius: 4px;
    background: #f4f4f5;
    transition: 300ms;
    &.selected {
      background: #fff;
    }
  }
}
