/**
 * BUTTONS
 */

/* standard button style */
.btn {
  background: #f15500;
  border-radius: 4px;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  overflow: hidden;
  position: relative;
  padding: 10px 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.btn:hover {
  background: #ff7900;
  color: #fff;
}

.btn-showtimes, 
.btn-inactive {
  width: 89px;
  padding: 13px 0px;
  margin: 2px;
  text-align:center;
}

.btn-inactive {
  background-color:#f7bb99;
}

.btn-inactive:hover {
  background-color:#f7bb99;
}

.btn-showtimes span {
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  -webkit-backface-visibility: hidden;
  -moz-transition: all 0.3s;
  -moz-backface-visibility: hidden;
  transition: all 0.3s;
  backface-visibility: hidden;
}

.btn-showtimes:hover span {
  -webkit-transform: translateY(300%);
  -moz-transform: translateY(300%);
  -ms-transform: translateY(300%);
  transform: translateY(300%);
}

.btn-ticket:before {
  background: transparent url(../img/btn-tickets.png) no-repeat 50% 50%;
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: -100%;
  left: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-showtimes:hover {
  background: #ff7900;
}
.btn-showtimes:hover:before {
  top: 0;
}

.btn-cta {
  border: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 1em 0;
  outline: none;
  padding: 15px 15px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  z-index: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s; 
}

.btn-cta:before {
  background: rgba(74, 167, 246, 0.6);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}
.btn-cta:after {
  background: rgba(74, 167, 246, 1.0);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 0%;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-cta:hover {
  color: #fff;
}

.btn-cta:hover:after,
.btn-cta:active:after {
  width: 100%;
}