/* Hide on screen */
.print-only-current-url {
  display: none;
}
@media screen {
  .print-only-current-url {
    display: none !important;
  }
}
@media print {
  /* Hide the entire AddToAny kit */
  .a2a_kit,
  .print__wrapper--pdf,
  .follow-links,
  .ear-links,
  .flag-follow-content,
  .search-content-form,
  .rate-widget,
  .region--sidebar-second,
  .navbar,
  .footer-outer-wrap,
  #block-footertoplinks,
  #block-opensocialtwp-footermenu-2,
  #block-footerfollowsocial-2
   {
    display: none !important;
  }

  /* remove the auto-generated URL text */
  a[href]:after {
    content: none !important;
  }

  /* force visible link styling */
  a {
    color: blue !important;
    /*text-decoration: underline !important;*/
  }
  .header-top {
    display: block !important;
    width: 350px !important;
    height: 60px !important;
  }
  .twp-desktop-logo {
    display: block !important;
    width: 350px !important;
    height: 52px !important;
  }
  /* Append the site URL at the bottom */
/*  body::after {
    content: attr(data-current-url);
    display: block;
    text-align: center;
    margin-top: 2em;
    font-size: 1.4em;
  }*/
  .print-only-current-url {
    display: block !important;
    position: static !important;
    visibility: visible !important;
    text-align: center;
    /*margin-top: 1em;*/
    font-size: 1.25em;
  }
  .print-only-current-url a {
    color: blue !important;
    /*text-decoration: underline;*/
  }
}