.wrapper {display: flex;  overflow-anchor: none; scroll-behavior: smooth;}
.left {
  /*flex: 1;
  max-height: 60vh;*/
}
.right {
    /*flex: 1;*/
}
	
.listParam {
  max-height: 55vh;
  overflow: hidden;
  overflow-y: scroll;
}

.accordion > input[type="checkbox"] {
  position: absolute;
  left: -100vw;
}

.accordion .content {
  overflow-y: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.accordion > input[type="checkbox"]:checked ~ .content {
  height: auto;
  overflow: visible;
}

.accordion label {
  display: block;
}

/*
 Styling
*/
.accordion {
  margin-bottom: 0.5em;
}

.accordion > input[type="checkbox"]:checked ~ .content {
  padding: 5px;
  border: 1px solid #e8e8e8;
  border-top: 0;
}

.accordion .handle {
  margin: 0;
  font-size: 1.125em;
  line-height: 1.0em;
}

.accordion label {
  color: #333;
  cursor: pointer;
  font-weight: normal;
  padding: 5px;
  background: #e8e8e8;
}

.accordion label:hover,
.accordion label:focus {
  background: #d8d8d8;
}

.accordion .handle label:before {
  font-family: 'fontawesome';
  display: inline-block;
  margin-right: 10px;
  font-size: .58em;
  line-height: 1.556em;
  vertical-align: middle;
}

.accordion > input[type="checkbox"]:checked ~ .handle label:before {
}