.mobile-share-button {
    /* parent-button styling footer-round-button - in citygameseattle theme buttons.css */
  /*composes: mobile-round-button;*/

  /*3d effect */
  /*background: radial-gradient(circle at 30% 30%, #faedff, #f3dbff);*//*purple*/
  /*background: radial-gradient(circle at 30% 30%, #ffe8cc, #ffc999); /* slightly bolder peach-orange */
  background: radial-gradient(circle at 30% 30%, #ffeede, #ffdab3); 

  /*floating n the bottom right of the screen */
  left: 72%;
  transform: translateX(-50%);

}

.mobile-share-button:hover {
  background-color: #eac8ff;
}

.mobile-share-button:active {
  background-color: #eac8ff;
}

/*appear only on mobile */
@media (min-width: 768px) {
.mobile-share-button {
  display: none;
}
}