/*
Theme Name: Enfold Child
Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold Wordpress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating will be much easier then.
Version: 1.0
Author: Kriesi
Author URI: http://www.kriesi.at
Template: enfold
*/



/*Add your own styles here:*/
.tracker {
  display: grid;
  padding: 16px;
  grid-template-columns: 1fr;
  row-gap: 24px;
}

.tracker-entry {
  padding: 12px;
  border-top: lightgrey 1px solid;
  border-bottom: lightgrey 1px solid;
}

.title-link {
  text-decoration: underline;
}

.title-link * {
  text-decoration: underline !important;
}

.entry__body {
  font-size: 1rem;
  display: grid; 
  grid-template-columns: auto 1fr; 
  column-gap: 8px;
}

.tracker > .tracker-entry > .entry__body > ul {
  list-style-type: none !important;
  margin: 0 !important
}

.tracker > .tracker-entry > .entry__body > ul>li {
  padding: 0 !important;
  margin: 0 !important
}

.entry__label {
  color: black;
  font-weight: bold;
  font-style: italic;
}

.--margin-text {
  margin-top: 8px;
}

.entry__body p {
  margin: 0;
}

.--full-span {
  grid-column: -1 / 1;
}

.--small-font {
  font-size: .8rem;
  line-height: 1.2rem;
}

.--four-columns {
  grid-template-columns: auto 1fr auto 1fr;
}

@media only screen and (max-width: 767px){
  .--four-columns {
    grid-template-columns: auto 1fr;
  }
}

@media only screen and (max-width: 479px){
  .entry__body {
    grid-template-columns: 1fr; 
  }
  .--margin-text {
    margin-top: 0;
  }
}