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