@import url('https://fonts.googleapis.com/css?family=Lato');

body {
  font-family: 'Lato', sans-serif;
  color: #292F36;

}

a {
    color: #245894;
}

/* mouse over link */
a:hover {
    color: #6da7eb;
}
details {
  position: relative;
}

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

details summary::before {
  content: "";
  position: absolute;
  left: 0;
  background: url("../images/help-circleHN.svg")
    no-repeat 50% 50% / 1em 1em;
  width: 1.5em;
  height: 1.5em;
  transition: transform 0.1s linear;
}

.custom {
  cursor: url(../images/help-circleHN.svg), auto;
}

summary {
  width: 100%;
  padding: 20px;
  padding-left: 25px;
  border-bottom: 1px solid #ccc;
    
}

summary:hover {
  color: #245894;
  cursor: url(../images/help-circleHN.svg), auto;
}

summary:focus {
  outline: none;
}

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

details[open] > summary {
  color: #6da7eb;
}

details[open] > summary ~ * {
  animation: open 1s ease;
}

p {
  padding: 25px;
}

p.source {
  padding-top: 50px;
  font-size: 0.75em;
  text-align: center;
}

@keyframes open {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


