ul.menu2 li {
  list-style:none;
  position:relative;
  float:left;
  padding-right: 30px;
  width:130px;
}
ul.menu2 li a {
  text-decoration: none;
  font-size: 16px;
  color: #3e63c6;
  position:relative;
  display:block;
  width:120px;
  border: 1px solid #70a9f7;
  text-align: center;
  padding: 8.5px 0;
}

.wrap-collabsible {
  margin-bottom: 1.2rem 0;
}

.wrap-collabsible input[type='checkbox'] {
  display: none;
}

.lbl-toggle {
  display: block;
  padding: 1rem;
  background: #8eb6ff;
  cursor: pointer;
}

.lbl-toggle:hover {
  background: #6fa2ff;
}



.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
  max-height: 0px;
  overflow: hidden;
  transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: 350px;
}

.collapsible-content .content-inner {
  background: rgba(160, 178, 243, .2);
  border-bottom: 1px solid rgba(160, 178, 243, .45);
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  padding: .5rem 1rem;
}