 @media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

details {
    background-color: #001970;
    margin-bottom: 0.625em; 
    border-radius: 0.3125em;
    padding: 0.625em;
}

details p {
  background-color: white;
  padding: 0.625em;  
}

summary {
    color: white;
    cursor: pointer;          
    display: flex;
}

summary span {
  display: inline-block;
  padding: 0.25em;
  font-weight: bold;
  font-size: 1.5em;
  margin: 0.75em 0;
}

summary::marker {
    display: none;
}

summary {
    list-style: none;
}

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

details {
  padding: 10px;
}

details summary {
  transition: margin 250ms ease-out;
}

details[open] summary {
  margin-bottom: 0.625em;
}

.accordion-arrow {
    display: inline-block;
    padding: 0.01em;
    margin: 0 auto;
    position: absolute;
    right: 0.9em;
}




