.youtube-button{
  width: 100%;
  display: inline-block;
  cursor: pointer;
  position: relative;
}

.youtube-button span {
  font-size: 36px;
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}

@media(max-width: 600px){
  .youtube-button{
    width: 100%;
  }
  .youtube-button span {
    font-size: 24px;
  }
}

/* BEGIN LIGHTBOX STYLES */
.lbb{
  position:fixed;
  top:0;
  left:0;
  height:100%;
  width:100%;
  background-color:rgba(0,0,0,0.6);
  opacity:0;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-ext{
  position:relative;
  top:50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
  padding: 0 10%;
  height:auto;
  max-width:500px;
  border-radius: 2px;
}

.lb-int{
  height: auto;
  background-color: black;
  text-align: center;
  border-radius: 2px;
  -webkit-box-shadow: 0 0 70px 30px rgba(0,0,0,0.3);
          box-shadow: 0 0 70px 30px rgba(0,0,0,0.3);
}

.lb-info-block{
  margin: 0 0 20px;
}