/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Dec 12 2022 | 18:25:12 */
#glossary-filter{
	margin: 0 0 64px 0;
}
.glossary-filter__filters{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.glossary-filter__filters span{
	font-family: DM Sans, sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 26px;
	letter-spacing: 0em;
	text-align: left;
	color: #6C408D;
    flex: 1;
    text-align: center;
	margin:0 1px;
}
.glossary-filter__filters span:hover{
	color: #494949;
	cursor: pointer;
}
.glossary-filter__filters span:first-child{
	border-right: 1px solid #6C408D;
	padding-right: 25px;
}
.glossary-filter__filters span:first-child:hover{
	color: #6C408D;
}

#filter-form{
	width: 100%;
	margin: 0 0 24px 0;
}
#filter-form h3{
	color: #6C408D;
	font-family: Gotham, sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 30px;
	letter-spacing: 0em;
	text-align: left;
}
#filter-form form{}
#filter-form form .glossary-search{
	border: 1px solid #D2D2D2;
	font-family: DM Sans, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;
}

#gossary-items__container{
	border: 1px solid #6C408D;
	width: 100%;
	margin: 0 auto;
	padding:20px;
	border-radius:10px;
	-webki-border-radius:10px;
	-moz-border-radius:10px;
	background-color: rgba(255,255,255,0.35);
}

#glossary-items input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

/* Child Accordion styles */
#glossary-items .tabs {
  overflow: hidden;
}
#glossary-items [class*="filter"].tabs {
	border-bottom: 0.01em solid rgba(108,64,141,.25);
}
#glossary-items .tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
#glossary-items .tab-label {
  display: flex;
  justify-content: space-between;

	padding: 1em;
  background: #ffffff;
	color: #6C408D;
  font-weight: bold;
  cursor: pointer;
	border-bottom: 1px solid #EBE9F1;
  /* Icon */
}
#glossary-items .tab-label:hover {
  background: #1a252f;
}
#glossary-items .tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
#glossary-items .tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #6C408D;
  background: #F8F6F4;
  transition: all 0.35s;
}
#glossary-items .tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  background: #2c3e50;
  cursor: pointer;
}
#glossary-items .tab-close:hover {
  background: #1a252f;
}

#glossary-items input:not(:checked) + .tab-label {
	background: #ffffff;
	color: #6C408D;
}
#glossary-items input:checked + .tab-label {
	color: #ffffff;
	background: #6C408D;
}
#glossary-items input:checked + .tab-label::after {
	transform: rotate(90deg);
}
#glossary-items input:checked ~ .tab-content {
	max-height: 100%;
	padding: 34px 32px;
}

/* Content Styles */
#glossary-items .glossary-item-content{
	font-family: DM Sans, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	letter-spacing: 0em;
	text-align: left;
    color: #6C408D;
}
#glossary-items .glossary-item-link,
#glossary-items .glossary-item-link:visited{
	font-family: DM Sans, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    color: #6C408D;
    text-decoration: underline;
}
#glossary-items .glossary-item-link:hover{
	color: #494949;
}

/* Parent Accordion styles */
#glossary-items .filter-content{
	transition: all 0.35s;
}
#glossary-items .filter-title{
	color: #6C408D;
	font-family: Gotham, sans-serif;
	font-size: 36px;
	font-weight: 700;
	line-height: 44px;
	letter-spacing: 0em;
	text-align: left;
	padding: 0;
	margin: 12px 0;
	border: none;
	transition: all 0.35s;
}
#glossary-items input:not(:checked) + .filter-title{
	background: rgba(255,255,255,0);
	transition: all 0.35s;
}
#glossary-items input:checked + .filter-title{
	color: #6C408D;
	background: rgba(255,255,255,0);
	transition: all 0.35s;
}
#glossary-items input:not(:checked) + .filter-title::after {
    content: "+";
    transition: all 0.35s;
    transform: none;
    font-weight: normal;
}
#glossary-items input:checked + .filter-title::after {
    content: "-";
    transition: all 0.35s;
    transform: scaleX(1.5);
}
#glossary-items input:not(:checked) ~ .filter-content{
	padding: 0;
	transition: all 0.35s;
}
#glossary-items input:checked ~ .filter-content {
	max-height: 100%;
	padding: 0;
	transition: all 0.35s;
}

@media (min-width: 576px){
	#gossary-items__container{
		padding: 30px; 
	}
	#filter-form{
		width: 60%;
	}
}
@media (min-width: 768px){
	#gossary-items__container{
		padding: 40px;
	}
	#filter-form{
		width: 50%;
	}
}
@media (min-width: 922px){
	#gossary-items__container{
		padding: 50px;
		width: 95%;
	}
	#filter-form{
		width: 40%;
	}
}
@media (min-width: 1200px){
	#gossary-items__container{
		width: 95%;
		margin: 0 auto;
		padding:64px;
	}
	#filter-form{
		width: 35%;
	}
}
