@charset "UTF-8";
*, *:before, *:after {
  box-sizing: inherit;
}

.accordion a:hover,
.accordion a:hover::after {
  cursor: pointer;
  font-weight: 800;
  color: #2f4f4f;
}
.accordion a:hover::after {
  border: 1px solid #00ff00;
}
.accordion a.active {
  color: #2f4f4f;
  border-bottom: 1px solid #00ff00;
}
.accordion a::after {
  position: absolute;
  float: right;
  right: 1rem;
  color: #00ff00;
  padding: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #00ff00;
  text-align: center;
}
.accordion a.active::after {
  color: #00ff00;
  border: 1px solid #00ff00;
}
.accordion .accordion-item-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  color: rgb(121, 121, 121);
  font-weight: 400;
  width: 100%;
  padding: 1rem 1rem 1rem 1rem;
  border-bottom: 1px solid #e5e5e5;
}
.accordion .accordion-item-content {
  opacity: 0;
  padding: 0 1rem;
  max-height: 0;
  overflow: hidden;
  clear: both;
  transition: all 0.2s ease 0.15s;
}
.accordion .accordion-item-content .my-bullet {
  list-style: none;
}
.accordion .accordion-item-content .my-bullet li a {
  padding: 0;
  border: 0;
}
.accordion .accordion-item-content .my-bullet li::before {
  content: "•";
  color: #00ff00;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.accordion .accordion-item-content .no-bullet li {
  list-style: none;
  padding-left: 0px;
  margin-left: -15px;
}
.accordion .accordion-item-content .skills-table-head {
  text-align: center;
}
.accordion .accordion-item-content .skills-table {
  width: 100%;
}
.accordion .accordion-item-content .skills-table .skills-table-icon {
  font-size: 55px;
  text-align: center;
}
.accordion .accordion-item-content .skills-table .skills-table-text {
  font-size: 15px;
  text-align: center;
  margin-top: 0;
}
.accordion .accordion-item-content.active {
  opacity: 1;
  padding: 1rem;
  max-height: 100%;
  transition: all 0.35s ease 0.15s;
}/*# sourceMappingURL=accordion.css.map */