﻿/* # The Rotating Marker # */
details summary::-webkit-details-marker { display: none; }
summary::before {
  font-family: "Hiragino Mincho ProN", "Open Sans", sans-serif;
  content: "▶";
  position: absolute;
  top: 1rem;
  left: 0.8rem;
  transform: rotate(0);
  transform-origin: center;
  transition: 0.2s transform ease;


  
}
details[open] > summary:before {
  transform: rotate(90deg);
  transition: 0.45s transform ease;
}

/* # The Sliding Summary # */
details { overflow: hidden; }
details summary {
  position: relative;
  z-index: 10;
}
@keyframes details-show {
  from {
    margin-bottom: -80%;
    opacity: 0;
    transform: translateY(-100%);
  }
}
details > *:not(summary) {
  animation: details-show 500ms ease-in-out;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  color: transparent;
  overflow: hidden;
}
details[open] > *:not(summary) { color: inherit; }


/* # Just Some Pretty Styles # */
body { font-family: "Open Sans", sans-serif; padding-bottom: 400px; }
img { max-width: 100%; }
p { margin: 0; padding-bottom: 10px; }
/*p:last-child { padding: 30px; }*/
details {
  max-width: 1100px;
  box-sizing: border-box;
  margin-top: 5px;
  background: white;
}
summary {
 border:1px solid #fff;

  outline: none;
  padding: 1rem;
  display: block;
  background: #e8dedb54;
  padding-left: 2.2rem;
  position: relative;
  cursor: pointer;
    color: #845C28;
    font-size:18px;

}
details[open] summary,
summary:hover {
  color: #ffa128;
  background: #bef4f429;
    font-size:18px;
    text-decoration: underline;

}
summary:hover strong,
details[open] summary strong,
summary:hover::before,
details[open] summary::before {
  color: #FFA128;
}
.content {
  padding: 10px;
  border: 1px solid #888;
 background: #fff;
  
  border-top: none;
}