@charset "UTF-8";
body {
  padding: 0 1em 1em;
}
h1 {
  margin: 0;
  line-height: 2;
  text-align: center;
}
h2 {
  margin: 0 0 0.5em;
  font-weight: normal;
}
input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.row {
  display: flex;
}
.row .col {
  flex: 1;
}
.row .col:last-child {
  margin-left: 1em;
}
/* Accordion styles */
.tabs {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 2px 4px 4px rgba(0, 0, 0, 0.5);
}
.tab {
  width: 100%;
  color: #0b5394;
  overflow: hidden;
}
.tab-label {
  display: flex;
  height: 16px;
  justify-content: space-between;
  padding: 16px;
  background: #abc123;
  font-family:Verdana,Geneva,sans-serif;
  font-size:16px;
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.tab-label:hover {
  background: #6aa84f;
  height: 14px;
}
.tab-label::after {
  content: "<<";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.tab-content {
  max-height: 0;
  font-family:Verdana,Geneva,sans-serif;
  font-size:14px;
  padding: 0 1em;
  color: #0202ba;
  background: #f6f7f8;
  transition: all 0.35s;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #93c47d;
  cursor: pointer;
}
.tab-close:hover {
  background: #45818e;
}
input:checked + .tab-label {
  background: #b6d7b8;
}
input:checked + .tab-label::after {
  transform: rotate(-404deg);
}
input:checked ~ .tab-content {
  max-height: 1234vh;
  padding: 2em;
}