#boletos {
  position: fixed;
  bottom: 0%;
  right: 3%;
  width: 11%;
  padding: 0;
  max-width: 232px;
  min-width: 100px;
  background-color: transparent;
  display: flex;
}
/* #boletos:hover { */
  /* -ms-transform: scale(1.2); /* IE 9 */ */
  /* -webkit-transform: scale(1.2); /* Safari 3-8 */ */
  /* transform: scale(1.2); */
/* } */

#chat {
  position: fixed;
  bottom: 2%;
  left: 0%;
  width: 5%;
  padding: 0;
  max-width: 129px;
  min-width: 40px;
  background-color: transparent;
}
/* #chat:hover { */
  /* -ms-transform: scale(1.2); /* IE 9 */ */
  /* -webkit-transform: scale(1.2); /* Safari 3-8 */ */
  /* transform: scale(1.2); */
/* } */

#videoArea{
  z-index: 2;
  position: absolute;
  top: 25%;
  left: 25%;
  width: 50%;
}

.boletosbtn {
  position: absolute;
  bottom: -5px;
  
  transition: bottom 0.5s;
  -moz-transition: bottom 0.5s; /* Firefox 4 */
  -webkit-transition: bottom 0.5s; /* Safari and Chrome */
  -o-transition: bottom 0.5s; /* Opera */
  -ms-transition: bottom 0.5s; /* Explorer 10 */
}
.boletosbtn:hover {
  bottom: 0px;
}

.chatbtn {
  max-width: 100px;
  min-width: 40px;
  min-height: 20px;
  max-height: 80px;
  
  position: absolute;
  left: -5px;
  bottom: 10%;
  
  transition: left 0.5s;
  -moz-transition: left 0.5s; /* Firefox 4 */
  -webkit-transition: left 0.5s; /* Safari and Chrome */
  -o-transition: left 0.5s; /* Opera */
  -ms-transition: left 0.5s; /* Explorer 10 */
}
.chatbtn:hover {
  left: 0px;
}