
.audition-dates-list ul {
  margin: 0;
  list-style-type: none;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.date-card {
  float: left;
  position: relative;
  /*margin: 0px 40px 40px 0px;*/
  height: 200px;
  -webkit-perspective: 1000;
          perspective: 1000;
}
.date-card .card__front {
  background: #000;
}

.date-card:nth-child(odd) .card__front {
  background: #f3f3f3;
  color: #fff;
}
.date-card:nth-child(odd) .card__front .card__name,.date-card:nth-child(odd) .card__front .card__num
{
  color: #000;
}

.card__flipper {
  cursor: pointer;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.card__front, .card__back {
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
}
.card__front {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
  z-index: 2;
  overflow: hidden;
}
.card__back {
  -webkit-transform: rotateY(180deg) scale(1.1);
          transform: rotateY(180deg) scale(1.1);
  background: rgba(255,0,0,0.5);
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.card__back span {
  position: absolute;
}
.card__back p{
  position: absolute;
    bottom: 0px;
    color: #fff;
    background: black;
    width: 100%;
    font-size: 10px;
}
@media (max-width: 700px) {
  .date-card{
    /*width: 100%;*/
    height: 150px;
    margin-right: 0;
    float: none;
  }
  .date-card .card__front,
  .date-card .card__back {
    height: 150px;
  }
}

/* Demo */
/*main {
  text-align: center;
}
main h1, main p {
  margin: 0 0 12px 0;
}
main h1 {
  margin-top: 12px;
  font-weight: 300;
}

.fa-twitter {
  color: white;
  font-size: 30px;
}*/
