/****************** Cookiebar Colors *******************/
/****************** Color Stack *******************/
/****************** Background Color Stack *******************/
/****************** Font Color Stack *******************/
/****************** Font Stack *******************/
/****************** Default margins *******************/
h1, h2, h3, h4, h5 {
  margin-bottom: calc(20px - 5px);
  margin-top: 0;
}
h1 {
  font-size: 200%;
}
h2 {
  font-size: 150%;
}
h3 {
  font-size: 125%;
}
h4 {
  font-size: 115%;
}
h5 {
  font-size: 60%;
}
h6 {
  font-size: 110%;
}
p {
  margin-bottom: 20px;
}
ol, ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
ol li, ul li {
  list-style: circle;
}
ol {
  counter-reset: li;
}
ol li {
  list-style: none;
  counter-increment: li;
}
ol li:before {
  content: counter(li) ".";
  display: inline-block;
  color: green;
  width: 1em;
  margin-left: -1em;
}
