/**
 * 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, 
.btn.is-inactive  {
  background-color:rgba(241,85,0,0.5);
}

.btn-inactive:hover, 
.btn.is-inactive:hover {
  background-color:rgba(241,85,0,0.5);
}

.btn-showtimes .btn-showtimes--text,
.btn-showtimes time {
  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 .btn-showtimes--text,
.btn-showtimes:hover time {
  -webkit-transform: translateY(300%);
  -moz-transform: translateY(300%);
  -ms-transform: translateY(300%);
  transform: translateY(300%);
}

.btn-ticket:before {
  background: transparent url(../img/icon-ticket-white.svg) 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%;
 }

.icon-share {
  background: transparent url(../img/icon-share.svg) no-repeat center center;
  float: left;
  margin-right: 8px;
  width: 16px;
  height: 15px;
  background-size: 16px 15px;
  vertical-align: middle;
}

.btn-share {
  border: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "proxima-nova", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 17px;
  margin: 0 0 1em 0;
  max-height: 40px;
  outline: none;
  padding: 13px 20px;
  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-share.is-active {
  background: rgba(74, 167, 246, 1);
  color: #fff;
}

.btn-share:before {
  background: rgba(74, 167, 246, 0.6);
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}

.btn-share:after {
  background: rgba(74, 167, 246, 1);
  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-share:hover {
  color: #fff;
}

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

.btn-secondary {
  background: #929292;
}
