/*
* KULE
*
* necteri.com
* 
* collaspible mobile descriptions
*
*/ 







.wrap-collabsible {
  margin-bottom: 20px 0;
}

input[type='checkbox'] {
 /* display: none;*/
}

.lbl-toggle {
  display: block;
  font-family: 'futura-pt', sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  border: solid #000 2px;
  cursor: pointer;
  padding: 12px;
  line-height: normal;
  height: 50px;
  letter-spacing: 1px;
  transition: all 0.25s ease-out;
  margin-bottom: 12px;
  margin-top: -16px;
}

.lbl-toggle:hover {
  color: #000;
}


.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;
}

.toggle:checked + .lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
  background: #fff;
 
}