ul {
	line-height:200%
}
ul.checkmark li {
    font-size: 16px;
    margin-bottom: 0.2em;
    list-style-type: none;
    padding: 0.02em 0 0 2.5em;
    position: relative;
    font-weight: 400;
}

ul.checkmark li:before {
  content: " ";
  display: block;
  border-radius: 0.8em;
  height: 0;
  width: 0;
  position: absolute;
  left: 0.5em;
  top: 45%;
  margin-top: -0.5em;
}
ul.checkmark li:after {
  content: " ";
  display: block;
  width: 0.3em;
  height: 0.6em;
  border: solid #fff;
  border-width: 0 0.2em 0.2em 0;
  position: absolute;
  left: 1em;
  top: 38%;
  margin-top: -0.2em;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}	
li{
	text-align:left;
	line-height:1.5em;
	font-weight:400;
	color:#FFF;
	padding-left:0;
	margin-left:0;
	}

.pdfbtn {
  font-family: "Rubik";
  background-color: #4CAF50; /* Green */
  border: none;
  float:left;
  color: white;
  padding: 7px 9px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  font-weight:400;
  font-style:normal;
  margin: 3px 3px;
  cursor: pointer;
  transition-duration: 0.4s;
}
.pdfbtn:hover {
  background-color:#3aa73f; /* Green */
  color: white;
}


/*we need to style the popup with CSS so it is placed as a popup does*/
#popup {
    display:none;
    position:absolute;
    margin:30% auto;
	background-color:#FFF;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 50px 2px #000;
}