/* HTML/scss/_elements.scss */
.section-top-border {
  padding: 20px 0;
  border-top: 1px dotted #eee;
}

/* HTML/scss/_elements.scss */
.generic-blockquote {
  padding: 30px 50px 30px 30px;
  background: #f9f9ff;
  border-left: 2px solid #110847;
}

/* Read More */
.show-hide {
  text-align:center;
}
.read-more-wrap {
  opacity:1;
  -moz-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
}
.show-hide p {
  margin-top:10px;
  max-width:400px;
  margin:0 auto;
  text-align:left;
}
.read-more-state {
  display: none;

}

.read-more-target {
  margin-top:2rem;
  opacity: 0;
  max-height: 0;
  font-size: 0;
  -moz-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
}

.read-more-state ~ .read-more-trigger:before {
  content: 'Read More';
}

.read-more-state:checked ~ .read-more-trigger:before {
  content: 'Read Less';
}

.read-more-trigger {
  cursor: pointer;
  display: inline-block;
  padding: 0 .5em;
  color: #666;
  font-size: .9em;
  line-height: 2;
  border: 1px solid #0067a7;
  border-radius: .25em;
  margin-top:15px;
  margin-bottom:15px;
}
.read-more-trigger:hover {
  background:#666;
  color:white;
}

@media screen and (max-width: 780px) {
  div..show-hide > p {
    font-size: 13;
  }
  div.read-more-wrap > label:before {
    margin: 0;
    font-size: 13px;
  }
}

@media screen and (max-width: 780px) {
  div.read-more-wrap > p {
    padding: 15px;
  }
}



