#odsc-tickets .groups {
  display: table;
  width: 100%;
  text-align: center;
}

#odsc-tickets .groups__group {
  display: table-cell;
     background: #ece6e6;
  color: #000;
  padding: 25px;
  line-height: 90%;
  text-shadow: 0 1px 0 white;
  cursor: pointer;
}

@media screen and (max-width: 780px) {
  #odsc-tickets .groups__group {
    display: block;
    padding: 20px 25px;
  }
}

#odsc-tickets .groups__group span {
  text-transform: uppercase;
  font-weight: bold;

  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;

  -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
          transition: all 0.5s ease;
}

#odsc-tickets .groups__group:hover {
  color: #00bcdd;
}

#odsc-tickets .groups__group--active,
#odsc-tickets .groups__group--active:hover {
  background: #fff;
  border-bottom:5px solid  #00bcdd;
  color: #00bcdd;
}