input[type='checkbox'] {
  display: none;
}

.productpara {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  font-size: 14px;
  font-weight: normal;
  border: solid 0px red;
  }

.lbl-toggle {
  display: block;
font-weight: bold;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
 text-align: left;

  padding: 1rem;
border: solid 0px red;
  color: #333;
  background: #fff;

  cursor: pointer;

  border-radius: 7px;
  transition: all 0.25s ease-out;
}


.lbl-toggle:hover {
  color: #1d8cd8;
}

.lbl-toggle::after {
  content: ' ';
  display: inline-block;

  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid currentColor;

  vertical-align: middle;
  margin-left: .7rem;
  transform: translateY(-2px);

  transition: transform .2s ease-out;
}

.collapsible-content .content-inner {
/*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);*/
 /* background-color: #eef2f3;*/
  border-bottom: 1px solid #eeefef;
	margin-bottom: 3%;
  /*border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  padding: .5rem 1rem;*/
}

.collapsible-content {
  max-height: 0px;
  overflow: hidden;

  transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
  max-height: 490px;


.toggle:checked + .lbl-toggle::before {
  transform: rotate(90deg) translateX(-3px);
}

.toggle:checked + .lbl-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}