
.faq--checkbox {
  position: absolute;
  opacity: 0;
  z-index: -1;

}

.tabs {
  

  overflow: hidden;
    /* box-shadow: 0 1px 10px 0 rgb(0 0 0 / 5%), 0 6px 15px 0 rgba(0,0,0,.1); */
    border: 1px solid #dddddd;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tab {
  width: 100%;
  color: white;
  overflow: hidden;
    
}
.tab-label {
  display: flex;

  color: #2c3e50;
  cursor: pointer;
  /* Icon */
}
.tab-label:hover {
  color: #2c3e50;
}
.tab-label>h3{
      display: flex;
margin-bottom:0;
      flex: auto;
align-items: center;}
.tab-label>h3::before {
 
content: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.13 17.13'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-miterlimit: 10; stroke-width: 1.5px; %7D .cls-2 %7B fill: %2333424f; %7D %3C/style%3E%3C/defs%3E%3Crect class='cls-2' width='17.13' height='17.13'/%3E%3Cg%3E%3Cpath class='cls-1' d='m5.38,8.57h6.38'/%3E%3Cpath class='cls-1' d='m8.57,5.38v6.38'/%3E%3C/g%3E%3C/svg%3E");
  width: 1.2em;
  align-self:baseline;
  height: 1.2em;
  margin-right:.8em;
  text-align: center;
  transition: all 0.35s;
}
.tab-content {
  max-height: 0;
  padding: 0 2.8em;
  color: #2c3e50;
pointer-events:none;
  transition: all 0.35s ease-in-out;
  opacity:0;
    overflow: hidden;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
.tab-close:hover {

}
h3{
font-weight: 700;
letter-spacing: 0px;

}

input:checked + .tab-label {

}
input:checked + .tab-label>h3::before {
  content:  url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.13 17.13'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23fff; stroke-linecap: round; stroke-miterlimit: 10; stroke-width: 1.5px; %7D .cls-2 %7B fill: %2333424f; %7D %3C/style%3E%3C/defs%3E%3Crect class='cls-2' width='17.13' height='17.13'/%3E%3Cpath class='cls-1' d='m8.57,5.38v6.38'/%3E%3C/svg%3E");
  transform: rotate(90deg);
}
input:checked ~ .tab-content {
  max-height: 100vh;
  padding: .5em 2.8em 1em;
  opacity:1;
  pointer-events:auto;
}
span.tab-desc {
    font-weight: 700;
    letter-spacing: 0px;
  font-size:18px;
    width:100%;
}

@media (min-width: 320px) and (max-width: 480px){
  
  .tab-content {

  padding: 0 .5em;
    
  }
input:checked ~ .tab-content {
  max-height: 100%;
  padding: .5em .5em .5em ;
  opacity:1;
 
}
  
  
