#livestream_bar {
  position: fixed;
  width: 100%;
  height: 60px;
  background: #333333;
  bottom: 0px;
  z-index: 3;
  line-height: 60px;
}

#livestream_bar_wrap {
  width: 970px;
  margin: 0px auto;
  position: relative;
}
#livestream_bar a {
  color: #fff;
  border-bottom: 1px dotted #f65002;
  padding-bottom: 2px;
}

#livenow_icon {
  display: inline-block;
  height: 30px;
  line-height: 30px;
  color: #fff;
  background: #f65002;
  padding: 0px 10px 0px 32px;
  position: relative;
  margin-right: 16px;
  font-size: 14px;
  font-weight: bold;
}
#live_bulb {
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 8px;
  /*
  -webkit-animation: pulsedot 2s linear infinite;
  animation: pulsedot 2s linear infinite;  
  */
}
#live_bulb_ring {
  border: 1px solid #fff;
  -webkit-border-radius: 50%;
  height: 12px;
  width: 12px;
  position: absolute;
  left: 8px;
  top: 8px;
  -webkit-animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite; 
  
  opacity: 0.0
}

@-webkit-keyframes pulsedot {
  0% { background: #fff; }
  50% {background: #d00;}
  100% { background: #fff; }
}

@keyframes pulsedot {
  0% { background: #fff; }
  50% {background: #d00;}
  100% { background: #fff; }
}

@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(1, 1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.8, 1.8); opacity: 0.0;}
}
@keyframes pulsate {
    0% {-webkit-transform: scale(1, 1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.8, 1.8); opacity: 0.0;}
}

#livenow_close {
  position: absolute;
  right: 0px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}
