/* Code */

.landing.code .content {
  position: relative;
  border: 1px solid #ba9a5a;
  max-width: 35em;
  padding: 2em 1em;
  margin: auto;
  margin-top: 3rem;
}

@keyframes landing-code-content {
  from {
    opacity: 0;
    display: none;
  }
  to {
    opacity: 1;
    display: block;
  }
}

.landing.code .content .code {
  border-left: 1px solid #103050;
  display: none;
  opacity: 0;
  padding: 0;
  margin: 2em;
}

.landing.code .content .active {
  display: block;
  opacity: 1;
  animation-name: landing-code-content;
  animation-timing-function: ease-in-out;
  animation-duration: 1s;
}

.landing.code li {
  padding-left: 1em;
  text-indent: 0;
  word-break: break-word;
}

.landing.code li:before {
  padding-right: 0;
  content: "";
}

.landing.code .withnav .code {
  margin-bottom: 4em;
}

.landing.code .navbottom i.fa {
  position: relative;
  display: inline-block;
  background-color: #ffffff;
  border: 1px solid #ba9a5a;
  border-radius: 50%;
  font-size: 350%;
  color: #ba9a5a;
  padding: 0.25em;
  margin: 0 0.5em;
  top: -2.75rem;
}

@keyframes landing-code-navbottom {
  from {
    box-shadow: 0 0 #c2e0ff;
    top: -2.75rem;
  }
  to {
    box-shadow: -8px 6px #c2e0ff;
    top: calc(-2.75rem - 6px);
  }
}

.landing.code .navbottom a.active i.fa {
  animation-name: landing-code-navbottom;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-duration: .4s;
  background-color: #ba9a5a;
  color: #ffffff;
}
