.tab {
  position: relative;
  margin-bottom: 1px;
  white-space: nowrap;
  color: #bcdc5d;
  background-color: black;
}

.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.smallMenu label {
  margin-left: 5px;
}

.tab-content {
  margin-left: 0px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
  background-color: black;
}

.tab-content p {
  padding-left: 8px;
  padding-right: 8px;
  margin: 2px;
}

.tab:hover {     
	color: #BA302B;
	border-left: 3px solid #BA302B;
	border-radius: 10px 0px 0px 0px;
}

.smallMenu a {
	color: #bcdc5d;
	text-decoration: none;
}

.smallMenu a:hover {
	color: #ffffff;
}

.smallMenu p:hover { 
	color: #ffffff; 
	border-color: #454545;
	border: inset;
	border-left: 3px solid;
}


/* :checked */
input:checked ~ .tab-content {
  max-height: 100em;
}

label {
  position: relative;
  display: block;
  line-height: 2;
  cursor: pointer;
}

/* Icon */
label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 2;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
input[type=checkbox] + label::after {
  padding-right: 20px;
  content: "\25BC";
}

input[type=checkbox]:checked + label::after {
  transform: rotate(180deg);
}

