body .wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 60px auto 32px;
  overflow: hidden;
  min-height: 100vh;
  /* Changes in media query to double this */
  max-height: 100vh;
}

body .wrapper .sts-header {
  padding-bottom: 10px;
  padding-top: 10px;
  padding-left: 40px;
  text-align: start;
}

.sts-main {
  background: white;
  /* color: black; */
  flex-grow: 1;
  /* can grow as big as needed */
  overflow: auto;
}

.sts-main svg {
  width: 1.2rem;
  height: 2.4rem;
  fill: #0088C6;
}

.sts-footer {
  display: grid;
  place-items: center;
  color: #999999;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 14px;
}

.sts-main-content > h2 {
  font-size: 32px;
  line-height: 40px;
  font-family: "DaimlerCAC-Regular";
  margin-bottom: 40px;
  font-weight: 400;
}

.sts-main-content ol {
  font-weight: 800;
}
.sts-main-content ol p {
  font-weight: normal;
}
.sts-main-content ol ol {
  font-weight: normal;
}

body > .wrapper > .sts-main > .sts-main-content {
  padding-left: 20vw;
  padding-right: 20vw;
  padding-top: 60px;
  padding-bottom: 116px;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}

ol > li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}

ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;    
}

li ol > li {
  margin: 0;
} 

li ol > li:before {
  content: counters(item, ".") " ";
}

li ul.lower-roman-ul {
  list-style-type: lower-roman;
}

#scrollToTopBtn {
  height: 16px;
  width: 79px;
  color: #0088C6;
  font-family: "DaimlerCS-Regular";
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 18px;

  position: fixed;
  position: sticky;
  pointer-events: all;
  top: calc(100vh - 5rem);

  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  line-height: 3rem;
  text-align: center;
  width: 3rem;
  height: 3rem;
  padding: 0.25rem;
}

#scrollToTopBtn:hover,
#scrollToTopBtn:focus {
  transform: scale(1.1);
}

#scrollToTopBtn:focus {
  outline: none;
  box-shadow: 0 0 0 3px scale(#254568, 35%);
}
.scrollToTopBtn {
  font-family: "DaimlerCS-Regular";
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 100;
  display: none;
  padding: 8px 4px;
  cursor: pointer;
}

#back-to-top-btn {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 20px;
  font-size: 26px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: #00ADEF;
  cursor: pointer;
  outline: none;
  border: 3px solid #00ADEF;
  border-radius: 50%;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-property: background-color, color;
}

#back-to-top-btn:hover, #back-to-top-btn:focus {
  background-color: #0088C6;
  color: #fff;
  border: 3px solid #0088C6;
  color: #0088C6;
}

#back-to-top-btn:hover svg, #back-to-top-btn:focus svg {
  fill: #fff;
}

.btnEntrance {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: btnEntrance;
} 

/* fadeInUp */
@keyframes btnEntrance {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.btnExit {
  animation-duration: 0.25s;
  animation-fill-mode: both;  
  animation-name: btnExit;
}

/* fadeOutDown */
@keyframes btnExit {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}