.bonuses-table-wrap {
  background: #016cbc;
  border-radius: 5px;
  padding: 10px 20px 20px;
  color: #fff;
  text-align: center;
  margin: 30px 0;
}

.bonuses-table {
  font-size: 14px;
  line-height: 1;
  color: #fff;
  text-align: center;
  width: 100%;
}
.bonuses-table .table-head tr {
  display: flex;
  width: 100%;
}
.bonuses-table .head-item {
  flex: 1;
  display: block;
  margin-bottom: 10px;
}
.bonuses-table .bonus-item {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  color: #2c2e2e;
  font-weight: bold;
}
.bonuses-table .bonus-item:last-of-type {
  margin-bottom: 0;
}
.bonuses-table .bonus-item > td {
  flex: 1;
}
.bonuses-table .bonus-item a {
  display: inline-block;
  padding: 8px 60px;
  border-radius: 5px;
  background-color: #eac815;
  color: #000;
  width: 100%;
}
.bonuses-table .bonus-item a:hover {
  background-color: #d3b413;
}
.bonuses-table .bonus-size {
  color: #bc014f;
}

@media (max-width: 768px) {
  .bonuses-table-wrap {
    padding: 10px;
  }

  .bonuses-table .table-head,
.bonuses-table .bonus-match,
.bonuses-table .bonus-wager {
    display: none;
  }
  .bonuses-table .bonus-item {
    flex-direction: column;
  }
  .bonuses-table .bonus-type {
    font-size: 18px;
  }
  .bonuses-table .bonus-size {
    font-size: 24px;
    margin-top: 7px;
  }
  .bonuses-table .bonus-btn {
    margin-top: 10px;
  }
}

