.help-nav {
  display:flex;
  flex-direction: column;

  flex-wrap:wrap;
}

mark {
    background-color: rgba(68, 124, 255, 0.2);
    color: #6ea8fe;
    border-radius: 3px;
    padding: 0 3px;
}

.action-table ul {
  margin: 15px 0
}
.action-table ul li {
  font-size:14px;
  line-height:22px;
}
.help-nav .col-section {
  border: 1px solid rgba(68,124,255,0.5);
    padding: 5px;
  color:#fff;
    transition:0.3s ease-out;
    text-align: center;
}
.help-nav .col-section:not(:first-child) {
  margin-top: 5px;
}
.help-nav .col-section:hover {
  background: transparent;
  color:#447cff
}
.help-nav  a {
  min-width:100px;
  font-size:14px;
}

body {
  font-size:14px;
}

.two-col tr:not(:first-child) td:first-child {
  width:33%;
}
.four-col tr:not(:first-child) td:first-child {
  width:33%;
}

table tr:first-child {
  text-align: center;
  font-size: 18px;
  font-weight:bold;
}


#go-top {
  display:none;
  position:fixed;
  bottom:60px;
  z-index:999;
  font-size:40px;
  right:30px;
  cursor:pointer;
}
#go-top:hover {
  animation-name: goTop;
  animation-duration:0.7s;
  animation-iteration-count: infinite
}
@keyframes goTop {
  from { transform: translate(0,  0px); }
  65%  { transform: translate(0, -10px); }
  to   { transform: translate(0, 0px); }    
}