body{
  line-height: 1.5;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins;
  font-size: 14px;
}
body *{
  box-sizing: border-box;
}

header{
  width: 100%;
  height: 160px;
  background-color: #2eb872;
  text-align: center;
  color: #FFF;
}
header h1{
  margin: 0;
  padding: 30px 0 0 0;
}
header p{
  padding-top: 0;
  margin-top: 0;
  color: #eee;
}

.container{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.step-title{
  position: relative;
  min-height: 40px;
}
.step-title span{
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border:solid 2px #2eb872;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  font-weight: 700;
  color: #2eb872;
}
.step-title h3{
  margin: 0;
  color: #2eb872;
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  padding-bottom: 5px;
  margin-left: 60px;
  line-height: 34px;
  border-bottom: solid 3px #2eb872;
}
.step-title.with-margin{
  margin: 30px 0;
}
code{
  font-size: 16px;
  line-height: 1.2;
}
table{
  width: 100%;
}
table thead{
  text-align: left;
  background-color: #2eb872 !important;
  color: #FFF;
}
table thead th{
  padding: 5px 10px;
}
table td{
  padding: 10px 10px;
}
table tbody tr:nth-child(odd){
  background-color: #f9f9f9;
}
table tbody tr:nth-child(even){
  background-color: #ffffff;
}
table table{
  border:solid 1px #CCC;
}
table .first{
  color: #2eb872;
}

.expandProperties{
  color: #00C;
  text-decoration: underline;
  cursor: pointer;
}
#startValues, #finishValues, #dataValues{
  display: none;
}
.show-table{
  display: table-row !important;
}
.examples-button{
  border: solid 2px #2eb872;
  color: #2eb872;
  display: inline-block;
  padding: 8px 26px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 3px;
}
.examples-button:hover{
  color: #FFF;
  background-color: #2eb872;
}

footer{
  text-align: center;
  margin: 30px 0;
}