.faq input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.faq .row {
  display: flex;
}
.faq .row .col {
  flex: 1;
}
.faq .row .col:last-child {
  margin-left: 1em;
}

/* Accordion styles */
.tabs {
  
  overflow: hidden;
  
}

.tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
.tab-label {
      display: flex;
    color: #1e283c;
    justify-content: space-between;
        padding: 15.2px 13px;
    border: 1px solid #dfdfdf;
    background: #efefef;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
  /* Icon */
}

.tabs:hover {
  box-shadow: 1px 1px 20px 0 rgba(149,149,177,.4);

}
.tab-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all .35s;
}
.tab-content {
      line-height: 1.7;
    font-weight: 400;
    text-align: left;
  max-height: 0;
  font-size: 15px;
 
  padding: 0 1em;
  color: #5f6366;
  background: #f2f2f2;
  transition: all .10s;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
/*.tab-close:hover {
  background: #1a252f;
}*/

/*input:checked + .tab-label {
  box-shadow: 1px 1px 20px 0 rgba(149,149,177,.4);
}*/
input:checked + .tab-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
input:checked ~ .tabs {}
input:checked ~ .tab-content {
  border-left: 5px solid #1e283c;
   
  max-height: 100vh;
  padding: 1em;
}