.col-tab1 body {
  color: #2c3e50;
  background: #ecf0f1;
  padding: 0 1em 1em;
}

.col-tab1 h1 {
  margin: 0;
  line-height: 2;
  text-align: center;
}

.col-tab1 h2 {
  margin: 0 0 .5em;
  font-weight: normal;
}

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

.col-tab1 {
  flex: 1;
}
.col-tab1:last-child {
  margin-left: 1em;
  margin-right: 1em;  
}

/* Accordion styles */
.tabs1 {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
}

.tab {
  width: 100%;
  color: #282828;
  border-bottom:1px solid #dbdfe9;
  overflow: hidden;
}
.tab-label {
   color:#3b3a3a;
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: #fff;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.tab-label:hover {
  background: #f9b81f;
}
.tab-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all .35s;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all .35s;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #fff;
  cursor: pointer;
}
.tab-close:hover {
  background: #f9b81f;
}

.col-tab1 input:checked + .tab-label {
  background: #f9b81f;
}

.col-tab1 input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}
