.showtime {
  display: block; 
  border: 1px solid #0c234b; 
  border-radius: 7px; 
  background-color: #ffffff; 
  text-align: center; 
  padding: .5rem;
}
.date, .day {
  font-family: 'Proxima Nova Condensed Bold', Helvetica, Arial, Lucida, sans-serif;
  text-transform: uppercase;

}
.date {
  font-size: 29px; 
  line-height: 1;
}
.day {
  font-size: 23px;  
}
.showtimes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 7px;
  grid-row-gap: 7px;
}

a.ticket-btn {
  margin: 1rem 0;
}
/* Base button style */
.ticket-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25em 0.75em;
  border: 2px solid #0c234b;
  border-radius: 20px;
  background: #1e5288;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: padding-right 0.3s ease;
}

/* Icon placeholder */
.ticket-btn::after {
  content: attr(data-icon);
  font-family: FontAwesome;
  font-weight: 900;
  margin-left: 0.5em;
  font-size: 1.1em;
  line-height: 1;
  display: inline-block;
  
/*  opacity: 0;
  transform: translateX(-8px);
*/  
}

/* Hover state */
.ticket-btn:hover {
  border: 2px solid #0c234b;
  background-color: rgba(0,0,0,.05);
  color: #1e5288;
  transition: all 0.3s ease;
} 
