/* stolen/bastardised from https://codepen.io/qiaoli116/pen/MqNObm/ */

/* .term-description {
  span {
    display: inline;
  }
} */
.m-show-more, .m-show-less {
    color: #6d010d;
    text-decoration:underline;
    cursor: pointer;
    font-style: italic;
}
.m-show-more:hover, .m-show-less:hover {
    color: #ec1c23;
}
.m-show-more:before{
    content: " ...more";
}
  .m-more-text {
    overflow: hidden;
    display: none;
}
.m-show-less {
    display: none;
}
.m-show-less:before{
    content: " less";
}

/* .term-description .m-display-more { } */
.m-display-more .m-show-more {
    display: none;
}
.m-display-more .m-more-text {
    display: inline;
}
.m-display-more .m-show-less {
    display: inline;
}
