/*body {*/
/*  color: #2c3e50;*/
/*  background: #ecf0f1;*/
/*  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;
}
/* Accordion styles */
.tabs {
  border-radius: 10px;
  overflow: hidden;
  /*box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);*/
}
.tab {
  border-radius: 10px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  color: var(--text-darker);
  overflow: hidden;
}
.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background: var(--careers-span);
  font-weight: bold;
  cursor: pointer;
  /* Icon */
}
.tab-label::after {
  content: url("plus.svg");
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 1s;
}
.tab-content {
  max-height: 0;
  height: 100%;
  padding: 0 1em;
  background: var(--careers-span);
  transition: all 1s ease-in-out;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: var(--careers-span);
  cursor: pointer;
}
input:checked + .tab-label {
  background: var(--careers-span);
}
input:checked + .tab-label::after {
  content: url("minus.svg");
}
input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}
