.bold {
  font-weight: 600;
  text-shadow: none;
}

.desc-b {
  color: #5699af;
}

.desc-c {
  color: darkorange;
}

.desc-d {
  color: purple;
}

.desc-e {
  font-weight: bold;
}

.desc-r {
  color: red; /* Used in quest dialogs and some items with warnings / dangerous */
}

.desc-g {
  color: green;
}

.desc-k {
  color: black; /* Nexon'd tag, but still need to add it so it's replaced. Used in some custom dialogs */
}

.content {
  margin-top: 115px;
}

.item-icon-float {
  display: block;
  margin: 0 auto;
  -webkit-animation: float 2s ease-in-out infinite;
          animation: float 2s ease-in-out infinite;
}

@-webkit-keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(30px);
  }
  100% {
    transform: translatey(0px);
  }
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(30px);
  }
  100% {
    transform: translatey(0px);
  }
}
.wiki-link {
  text-decoration: underline;
  -webkit-text-decoration-style: wavy;
          text-decoration-style: wavy;
  -webkit-text-decoration-color: #7eadd7;
          text-decoration-color: #7eadd7;
  font-weight: bold;
  transition: all 0.25s ease-in-out;
}

.wiki-link:hover {
  color: #000;
  text-decoration: underline;
  -webkit-text-decoration-style: wavy;
          text-decoration-style: wavy;
  -webkit-text-decoration-color: #000;
          text-decoration-color: #000;
  font-weight: bold;
  transition: all 0.25s ease-in-out;
}

.wiki-section {
  background: rgb(255, 255, 255);
  padding: 20px;
  border: 0;
  border-radius: 6px;
}

.wiki-badge {
  background: #488AC7;
  padding: 3px 8px;
  color: #FFF;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.25s ease-in-out;
}

.wiki-badge:hover {
  background: #3b73a7;
  color: #FFF;
  transition: all 0.25s ease-in-out;
}

.wiki-stats {
  background: #484848;
  padding: 16px;
  border-radius: 6px;
}
