.hero-image {
  /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
  background-image: url("/images/betkitten/hero-image.png");

  /* Set a specific height */
  height: 120px;

  /* Position and center the image to scale nicely on all screens */
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

body {
  margin: 0;
}

p {font-size: 1.1em; line-height: 1.3;}
td {text-align: right;}
.gameinfo {
  /* border: 1px solid red; */
  padding-bottom: 4rem;
}

#accordion h5 + div {
  height: 0px;
  padding: 0px;
  overflow: hidden;
  display: block !important;
  transform: translateZ(0);
  -webkit-transition: all 0.3s ease;
  moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition:all 0.3s ease;
  transition: all 0.3s ease;
}

#accordion h5.open + div {
  height: auto;

}