.pluse-play-button {
    position:relative;
    display:flex;
  }
  
  .pluse-play-button i{
    font-size:20px;
    top:0%;
    display:flex;
    align-items:center;
    justify-content:center;
    height:27px;
    width:27px;
    border-radius:50%;
    background-color:rgba(255,54,70,1);
    z-index:2;
  }
  .pluse-play-button:before, .pluse-play-button:after{
    position:absolute;
    content:'';
    height:27px;
    width:27px;
    border-radius:50%;
    background-color:rgba(255,54,70,1);
  }
  
  .pluse-play-button:before {
    animation: pulse 1.5s linear infinite;
  }
  
  .pluse-play-button:after {
    animation: pulse 1.5s 1s linear infinite;
  }
  
  @keyframes pulse {
    0% {
      opacity:0.5;
      transform:scale(0.50);
    }
    
    100% {
      opacity:0;
      transform:scale(3);
    }
  }


  .number{
display: none;
  }

  .number:hover{
    display:block;
    
  }

  /* ----------------------- Email Responsive --------------------------*/

  @media screen and (max-width: 500px) {
    .email_us clearfix, p, a{
      font-size: 15px;
    }
  }


  /*----------------- click room ------------------------  */

  #clickRoom{
    color:white;
    font-size: 12px;
  }

  /* ------------------------- popup button---------------------------- */

  @media screen and (max-width: 500px) {
    #popup-button{
      padding-left: 26px; 
    }
  }


 
 