@charset "UTF-8";
input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.row .col {
  flex: 1;
}

.row .col:last-child {
  margin-left: 1em;
}

/* Accordion styles */
.tabs {
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0);
}

.tab {
  width: 100%;
  color: white;
  overflow: hidden;
}

.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  background-color: rgba(0, 33, 71, 0.25);
  color: #000;
  font-size: 16px;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 1rem;
  /* Icon */
}

.tab-label:hover {
  background: rgba(0, 33, 71, 0.35);
}

.tab-label::after {
  content: "❯";
  color: #000;
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}

.tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background-color: rgba(0, 33, 71, 0.35);
  transition: all 0.35s;
}

.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 {
  background:  rgba(0, 33, 71, 0.35);
  color: #000;
  margin-bottom: 0px;
  font-weight: 600;
}

input:checked + .tab-label::after {
  transform: rotate(90deg);
}

input:checked ~ .tab-content {
  background:  rgba(0, 33, 71, 0.35);
  max-height: 100vh;
  padding: 1em;
  margin-bottom: 1rem;
}