/*
 * Read More Plugin
 *  by Reece Como
 *  9 Jan 2018
 *
 * Expanded from: "Text Fade Out / Read More Link | CSS-Tricks"
 * https://css-tricks.com/text-fade-read-more/
 */

.content:not(.read-more) .prompt {
  display: none;
}

.content:not(.read-more) .truncated-content {
  display: none;
}

.content.read-more > div:not(.visible) {
  display: none;
}

.content.read-more > .visible {
  display: block !important;
}

.read-more .prompt {
  font-weight: 600;
  text-transform:uppercase;
  display: block;
  margin-bottom: 20px;
  cursor: pointer;
}

/*.read-more .prompt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
  padding-top: 60px;
  padding-bottom:9px;

  /* Fade to white */
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
}*/

.read-more .prompt .button {
  padding: 5px 30px;
  border-radius: 99px;
  text-transform: uppercase;
  font-weight: bold;
  color: #004874 !important;
}

/* Bigger prompt */
.read-more.big-preview {
  max-height: 240px;
}
.read-more.big-preview .prompt {
  padding-top: 140px;
}
/* ******************************** */
