/* 2020MAR24 */
/* 'css3prefix mixin' @see https://github.com/matthieua/sass-css3-mixins/blob/master/css3-mixins.scss */
/* 'keyframes' mixin @see http://zerosixthree.se/8-sass-mixins-you-must-have-in-your-toolbox/*/
/* 'animation' mixin from https://developer.mozilla.org/en-US/docs/Web/CSS/animation */
/* legacy-direction function @see http://www.sitepoint.com/building-linear-gradient-mixin-sass/ */
/* 'transition' mixin @see http://codepen.io/sawmac/pen/cayhK */
/* 'gradientanimation' mixin @see https://medium.com/@dave_lunny/animating-css-gradients-using-only-css-d2fd7671e759#.jlbdgs4jl */
/* 'animation' mixin @see http://zerosixthree.se/8-sass-mixins-you-must-have-in-your-toolbox/ */
summary {
  border: 0.125em solid black;
  overflow: hidden;
  opacity: 0.90;
  /*  border: 4px solid transparent; */
  outline: none;
  padding: 1rem;
  display: block;
  background: #006633;
  color: white;
  padding-left: 2.2rem;
  position: relative;
  cursor: pointer;
}
summary:focus {
  border-color: black;
}
summary h1 {
  margin: 0px;
  padding: 10px;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.4);
  background-image: linear-gradient(to left top, #006633, #005c2e);
  color: white;
  background-color: #006633;
}

details {
  /*  max-width: 500px; */
  box-sizing: border-box;
  margin-top: 5px;
  /*  background: white;*/
}

details summary::-webkit-details-marker {
  display: none;
}

details[open] > summary:before {
  transform: rotate(90deg);
}

summary:before {
  content: '';
  border-width: .4rem;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 1.3rem;
  left: 1rem;
  transform: rotate(0);
  transform-origin: .2rem 50%;
  transition: .25s transform ease;
}

.content {
  border-top: none;
  padding: 10px;
  border: 2px solid #888;
  border-top: none;
}

p {
  margin: 0;
  padding-bottom: 10px;
}
p:last-child {
  padding: 0;
}

img {
  max-width: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
}
