.streamPopUp {
  opacity: 0;
  position: fixed;
  left: 50%;
  bottom: -100%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 340px;
  height: 165px;
  border-radius: 15px;
  padding: 15px 10px 20px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  z-index: 4;
}
.streamPopUp-shown {
  -webkit-animation: fadeIn 500ms forwards;
          animation: fadeIn 500ms forwards;
}
.streamPopUp-hidden {
  -webkit-animation: fadeOut 500ms forwards;
          animation: fadeOut 500ms forwards;
}
.streamPopUp-536 .popUpLogo .logo536 {
  display: block;
}
.streamPopUp-536 .streamTimer span {
  color: #F43A3B;
}
.streamPopUp-649 .popUpLogo .logo649 {
  display: block;
}
.streamPopUp-649 .streamTimer span {
  background: -webkit-linear-gradient(-90deg, #FFCA01, #FF8B01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.streamPopUp-tb .popUpLogo .logoTb {
  display: block;
}
.streamPopUp .closeStreamPopUp {
  display: block;
  width: 15px;
  height: 15px;
  font-size: 15px;
  line-height: 100%;
  position: absolute;
  top: 15px;
  right: 10px;
  cursor: pointer;
}
.streamPopUp .closeStreamPopUp:active {
  opacity: 0.5;
}
.streamPopUp .popUpLogo, .streamPopUp .streamTimer {
  padding-bottom: 10px;
}
.streamPopUp .streamTimer, .streamPopUp .streamButton {
  margin-top: 5px;
}
.streamPopUp .popUpLogo {
  width: 108px;
  height: 50px;
}
.streamPopUp .popUpLogo img {
  display: none;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}
.streamPopUp .streamTimer p {
  font-size: 18px;
  line-height: 20px;
  font-weight: 300;
}
.streamPopUp .streamTimer p span {
  font-weight: 700;
  font-size: 20px;
}
.streamPopUp .streamButton {
  display: block;
  width: 242px;
  height: 40px;
  background: #FF1741;
  -webkit-box-shadow: 0px 10px 30px rgba(254, 0, 91, 0.3);
          box-shadow: 0px 10px 30px rgba(254, 0, 91, 0.3);
  border-radius: 25px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.streamPopUp .streamButton:active {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #e2183d;
}
.streamPopUp .streamStarted {
  display: none;
}

@media only screen and (max-width: 350px) {
  .streamPopUp {
    width: 300px;
  }
}
@media only screen and (min-width: 1025px) {
  .streamPopUp {
    left: 15px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    bottom: -100%;
  }
  100% {
    opacity: 1;
    bottom: 15px;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    bottom: -100%;
  }
  100% {
    opacity: 1;
    bottom: 15px;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    bottom: 15px;
  }
  100% {
    opacity: 0;
    bottom: -100%;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    bottom: 15px;
  }
  100% {
    opacity: 0;
    bottom: -100%;
  }
}