
/* single use accordions */

  
  .row {
	display: flex;
  }
  .row .col {
	flex: 1;
  }
  .row .col:last-child {
	margin-top: 0.5em;
  }
  
  /* Accordion styles */
  .tabs {
	border-radius: 3px;
	overflow: hidden;
	border: 1px solid #c5c5c5;
  }
  
  .tab {
	width: 100%;
	color: white;
	overflow: hidden;
  }
  .tab-label {
	display: flex;
	justify-content: space-between;
	padding: 0.5em 1em;
	background:  #f6f6f6;
	color: #454545;
	font-weight: normal;
	cursor: pointer;
	/* Icon */
  }
  .tab-label:hover {
	background: #ededed;
  }
  .tab-label::after {
	content: "+";
	width: 1em;
	height: 1em;
	text-align: center;
	transition: all 0.35s;
	font-weight: bold;
	color: #454545;
  }
  .tab-content {
	max-height: 0;
	padding: 0 1em;
	color: #333333;
	background: white;
	transition: all 0.35s;
  }
  .tab-close {
	display: flex;
	justify-content: flex-end;
	padding: 1em;
	font-size: 0.75em;
	background: #033003;
	cursor: pointer;
  }
  .tab-close:hover {
	background: #033003;
  }


.tab input {
	position: absolute;
	opacity: 0;
	z-index: -1;
  }
  
 .tab input:checked + .tab-label {
	background: #033003;
	color: #ffffff;
  }
  .tab input:checked + .tab-label::after {
	content: "-";
	font-weight: bold;
	color: #ffffff;
  }
  .tab input:checked ~ .tab-content {
	/* max-height: 100vh; */
	/* update max-height to 100% for full height based on length of content body in text area field */
	max-height: 100%;
	padding: 1em;
  }