/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 01 2019 | 00:51:18 */
.expand-button-history, .expand-button-herstory {
  cursor: pointer;
  display: block;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 22px;
  text-transform: none;
  font-size: 16px;
  font-family: Arial, sans-serif;
  font-weight: normal;
  text-decoration: none;
}

.expand-button-history:hover, .expand-button-history:active, .expand-button-history:focus, .expand-button-herstory:hover, .expand-button-herstory:active, .expand-button-herstory:focus {
  background-color: #f4b37a;
}

.expandable-text-history {
  position: relative;
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  font-size: 18px;
  text-align: justify;
  hyphens: auto;
}

.expandable-text-herstory {
  position: relative;
  max-height: 500px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  font-size: 18px;
  text-align: justify;
  hyphens: auto;
}

.expandable-text-history.-expanded, .expandable-text-herstory.-expanded {
  max-height: 100%;
}

.expandable-text-history:not(.-expanded)::after, .expandable-text-herstory:not(.-expanded)::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  pointer-events: none;
}