.skills-item {
  margin-bottom: 2em;
  text-align: center;
}
.skills-item > .badge {
  font-size: 16px;
  margin: 2px;
}

/* Modified from: https://codepen.io/Nuke66/pen/LgzRLW */
.readmore {
  position: relative;
  max-height: 80px;
  overflow: hidden;
  margin-bottom: 20px;
  transition:max-height 0.15s ease-out;
}
.has-readmore {
  margin-bottom: 24px;
}
.readmore.expand {
  max-height: 5000px !important;
  transition: max-height 0.35s ease-in-out;
  margin-bottom: 0px;
}
.readmore > ul {
  margin-bottom: 12px
}
.readmore-link{
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width:100%;
  height: 60px;
  text-align: center;
  color: #11ABB0;
  font-weight: bold;
  font-size: 16px;
  padding-top: 40px;
  background-image: linear-gradient(to bottom, transparent, white);
  cursor: pointer;
}

.readmore-link.expand {
  position: relative;
  background-image: none;
  padding-top: 10px;
  height: 40px;
}

.readmore-link:after {
  content: "Read more";
}
.readmore-link.expand:after{
  content: "Read less";
}
