   
@media screen {

    .activities-headingslist-area {
      display: block;
    }


    .activities-headingslist-date {
      color: green;
    }

    .activities-headingslist {
      list-style: none; /* Remove default bullets */
    }

    .activities-headingslist li::before {
      content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
      color: gray; /* Change the color */
    /*  font-weight: bold; *//* If you want it to be bold */
     /*  display: inline-block; *//* Needed to add space between the bullet and the text */
     /*  width: 1em; *//* Also needed for space (tweak if needed) */
     /*  margin-left: -1em; *//* Also needed for space (tweak if needed) */
    }
    
    .activity-area{
      width: 100%;
      margin-top: 20px;
      padding-top: 10px;
      border-top: 1px solid rgba(175, 173, 173, 0.332);
      -webkit-background-clip: padding-box;
      background-clip: padding-box;
      display: inline-block;
    }

    .activity-heading {
      position: relative;
    }

    .activity-heading-date{
      font-style: italic;
      display: block;
      font-size: 75%;
      opacity: 0.75;
    }

    .activity-description {
      display: block;
    }
    /*
    .activity-heading input {
      float: right;
    
      width: 20 px;
      height: 20 px;
      margin: 5 px;
    }
    */

    .scroll-section {
      scroll-margin-top: 50px;
    }
  
    
}

@media print{
  .activity-area {
    display: block !important;
  }

  .activity-heading {
    display: block !important;
  }
  .activity-heading-date{
    display: block !important;
  }

  .activity-description{
    display: block !important;
  }
  

 

}