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

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

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

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

.claps2 .row {
  display: -webkit-box;
  display: flex;
}
.claps2 .row .col {
  -webkit-box-flex: 1;
          flex: 1;
}
.claps2 .row .col:last-child {
  margin-left: 1em;
}

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

.tab2 {
  width: 100%;
  color: white;
  overflow: hidden;
}


.tab2-label {
  text-align: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: left;
          justify-content: space-between;
  padding: 0.65em;
  background: #70b1b3;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}


.tab2-label:hover {
  background: #98d1dc;
}


.tab2-label::before {
  content: url(../images/play-icon-28px.png);
  text-align: center;
  -webkit-transition: all .35s;
  transition: all .35s;
  width: 20px;
  height: 20px;
}


.tab2-label::after {
  content: "\276F";
  width: 1em;
  height: 1em;
  text-align: center;
  -webkit-transition: all .35s;
  transition: all .35s;
}

.tab2-content {
  padding: 0 0 0 0;
  max-height: 0px;
  text-align: left;
  color: #2c3e50;
  background: white;
  -webkit-transition: all .35s;
  transition: all .35s;
}
.tab2-close {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #79acae;
  cursor: pointer;
}
.tab2-close:hover {
  background: #457d88;
}

input:checked + .tab2-label {
  background: #457d88;
}
input:checked + .tab2-label::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
input:checked ~ .tab2-content {
  max-height: 100vh;
  padding: 0px;
  margin-left:-5px;
  margin-right:-5px;
  margin-top:-7px;
}







