
.tabs input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}



/* Accordion styles */
.tabs {

  overflow: hidden;

}

.tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
.tab-label {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  color:#d1272c;
  font-weight: normal !important;
  
  font-size: 18px;
  padding:6px 5px 0px 14px;
  
 

  
  cursor: pointer;
  /* Icon */
}
.tab-label:hover {
  color:#000;
  
}
.tab-label::after {
  content: "\276F";
  width: 1em;
   
  height: 1em;
  padding-top:1px;
  text-align: center;
  -webkit-transition: all .35s;
  transition: all .35s;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  -webkit-transition: all .35s;
  transition: all .35s;
  border-bottom: 1px solid #efefef;
}
.tab-content li{ line-height: 33px; list-style: none; }

}

input:checked + .tab-label {
  
}
input:checked + .tab-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: 100vh;

}