.skills-item {
  background-color: white;
  color: black;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.skills-item:before {
  	content: "\f0d7";
    padding-right: 10px;
  	font: normal normal normal 14px/1 FontAwesome;
  	font-weight: bold;
  	font-size: inherit;
  	text-rendering: auto;
  	-webkit-font-smoothing: antialiased;
  	-moz-osx-font-smoothing: grayscale;
}

.skills-item-active {
	padding-bottom: 0px;
}

.skills-item-active:before {
	content: "\f0d8";
}

.skills-item-content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: white;
}