/* Style the tab */
.tab {
  overflow: hidden;
  border: 2px solid #666;
  background: var(--base-skin);
}

/* Style the buttons inside the tab */
.tab span {
  background-color: inherit;
  float: left;
  border: none;
  color:#fff;
  outline: none;
  cursor: pointer;
  padding: 15px;
  box-sizing:border-box;
  width:33.333%;
  transition: 0.3s;
  font-size: 22px;
  text-align:center;
}

/* Change background color of buttons on hover */
.tab span:hover {
  background-color: ;
}

/* Create an active/current tablink class */
.tab span.active {
  font-weight:900;
  font-style:italic;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 15px;
  border: 2px solid #666;
  border-top: none;
}

.styled-list {padding-left:25px;position:relative;}
.styled-list li:before{
  content: "\f00c";
  font-family: 'FontAwesome';
  color:#fff;
  position:absolute;
  left:0;
}
.styled-list li a{
	font-weight:700;
  color:#1891dc!important;
}