.available {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #0088cc;
    text-align: center;
  }

  * {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
  }

  .tgme_background_wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: #e4ffb9;
    background-image: url(https://telegram.org/img/tgme/pattern.svg);
}
  


html.theme_dark .tgme_background.default, body.bg_dark .tgme_background.default {
  opacity: 0.3;
  -webkit-mask-image: url(images/pattern.svg);
}



.tgme_background_pattern.default {
  opacity: 0.3;
  background-image: url(images/pattern.svg);
}


  a.tgme_action_button_new {
    -webkit-animation-name: 'play_down';
    -moz-animation-name: 'play_up';
    animation-duration: 2s;
    animation-iteration-count: infinite;
    box-shadow: 0 0 0 3px rgba(0, 0, 0,.5);
  }
  
  @keyframes play_up {
    0% {
      -webkit-box-shadow: 0 0 rgba(0,163,182,.6);
      -moz-box-shadow: 0 0 rgba(0,163,182,.6);
      box-shadow: 0 0 rgba(0,163,182,.6);
      transform: scale(1);
    }
    to {
      -webkit-box-shadow: 0 0 0 20px rgba(0,163,182,0);
      -moz-box-shadow: 0 0 0 20px rgba(0,163,182,0);
      box-shadow: 0 0 0 20px rgba(0,163,182,0);
      transform: scale(1.1);
    }   
  }
  
  @keyframes play_down {
    0% {
      -webkit-box-shadow: 0 0 rgba(55,55,55,.6);
      -moz-box-shadow: 0 0 rgba(55,55,55,.6);
      box-shadow: 0 0 rgba(55,55,55,.6); 
      transform: scale(1);
    }
    50% {
      transform: scale(1.1); 
    }
    100% {
      -webkit-box-shadow: 0 0 0 20px rgba(55,55,55,0);
      -moz-box-shadow: 0 0 0 20px rgba(55,55,55,0);
      box-shadow: 0 0 0 20px rgba(55,55,55,0); 
      transform: scale(1); 
    }
  }