@keyframes evpulse {
    0% {
      box-shadow: 0 0 0 0 rgba(245, 80, 0, 0.7);
    }
    70% {
      box-shadow: 0 0 0 10px rgba(245, 80, 0, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(245, 80, 0, 0);
    }
  }

/* div#installHint {
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    text-align: center;
    position: absolute;
    right: -260px;
    background: #fff;
    z-index: 2;
    opacity: 0.9;
    top: -15px;
    max-width: 250px;
}

div#installHint button {
    background: #f50;
    border-radius: 4px;
    border: #f60;
    padding: 5px 18px;
    color: white;
    animation: evpulse 2s infinite;
}

button#installButton:hover {
    filter: brightness(0.9);
}
div#installHint .close-hint {
    position: absolute;
    top: 0px;
    right: 0px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    text-transform: lowercase;
    padding: 5px 10px;
  }

  @media screen {
    
  } */

  div#installHint {
    position: relative;
    top: 0;
    width: 100vw;
    display: flex;
    background: #fff;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

#closeHint {
    position: absolute;
    right: 15px;
    padding: 8px 15px;
    color: #000;
    text-decoration: none;
    z-index: 2;
    cursor: pointer;
}

#installHint p {
    margin: 0 !important;
    display: flex;
}

button#installButton {
  background: #f60;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 4px 0;
  color: white;
  animation: evpulse 2s infinite;
}
button#installButton :hover{
  filter: brightness(0.5);
}

@media only screen and (max-width: 780px) {
  .desk-only {
    display:none;
  }
  .mobile-only {
    display: flex;
  }
}
@media only screen and (min-width: 781px) {
  #closeHint {
      right: 50px;
  }
  .desk-only {
    display: flex;
  }
  .mobile-only {
    display:none;
  }
}