.accordion {
	background-color: #968C83;
	color: #FFFFFF;
	cursor: pointer;
	padding: 10px 20px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;	
	transition: 0.4s;
	font-family: 'Didact Gothic',sans-serif;
	font-style: normal;
	font-size: 16px;
	line-height: 20px;
	margin-top: 4px;
}

.accordion:hover {
	opacity: 0.5;
}

.accordion.active {
	background-color: #968C83;
	color: #FFFFFF !important;
}

.accordion:after {
	content: '\276E';
	font-size: 100%;
	color: #FFFFFF;
	float: right;
	margin-left: 5px;
	transform: rotate(-90deg);
}

.accordion.active:after {
	content: '\276E';
	color: #FFFFFF;
	transform: rotate(90deg);
}

.panel {
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	font-family: 'Didact Gothic',sans-serif;
	font-weight: 300;
	font-size: 14px;
	box-sizing: border-box;
}

div.panel.show {	
	opacity: 1;
	max-height: max-content;
}

div {
	box-sizing: border-box;
}

.table-container {
	display: block;
	width: 100%;
}
.flex-table {
	display: flex;
	flex-flow: row wrap;
	border-left: solid 1px #B6AEA5;
	transition: 0.5s;
}
.flex-table.header {
	border-left: solid 1px #B6AEA5;
}
.flex-table.header .flex-row {
	background: #FFFFFF;
	color: #968C83;
	border-color: #B6AEA5;
	padding: 10px 20px 10px 25px;
}

.flex-row {
	width: calc(100% / 2);
	text-align: left;
	padding: 0.5em 0.5em;
	border-right: solid 1px #B6AEA5;
	border-bottom: solid 1px #B6AEA5;
}

.flex-row a {
	font-family: 'Didact Gothic',sans-serif;
	font-weight: 300;
	font-size: 14px;
	color: #001489;
	text-decoration: none;
}

.flex-row a:hover {
	text-decoration: underline;
}

.flex-row p {
	line-height: 16px;
	color: #001489;
}

.flex-row p:before {
	color: #001489;
	font-size: 100%;
}

.column .flex-row {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	padding: 0;
	border: 0;
	border-bottom: solid 1px #B6AEA5;
}

#unavailable {
	color: #968C83;
	font-weight: 200;
	text-decoration: none;
}

#hide {
	visibility: collapse;
}

.sub-text{
	font-family: 'Didact Gothic',sans-serif;
	font-style: normal;
	font-size: 16px;
	line-height: 23px;
}

.breadcrumb a:last-child{
	font-weight: normal;
	color: #c7c7c7;
}

.breadcrumb a {
	color: #0058af;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    text-decoration: none;
	font-size: 16px;
}

@media all and (max-width: 767px) {
  .accordion {
	width: 100%;
  }
  
  .table-container {
	width: 100%;
  }
  
  .flex-row {
    width: 100%;
  }
  
  .flex-row.first {
    width: 100%;
  }
  
  .column {
	width: 100%;
  }
  
  .flex-table{
	display: flex;
	flex-direction: column;
  }
  
  #one {
	order: 1;
  }
  
  #two {
	order: 3;
  }
  
  #three {
	order: 2;
  }
  
  #four {
	order: 4;
  }
  
  #five {
	order: 5;
  }
  
  #six {
	order: 7;
  }
  
  #seven {
	order: 6;
  }
  
  #eight {
	order: 8;
  }
  
  #nine {
	order: 9;
  }
  
  #ten {
	order: 11;
  }
  
  #eleven {
	order: 10;
  }
  
  #twelve {
	order: 12;
  }
  
  #thirteen {
	order: 13;
  }
  
  #fourteen {
	order: 15;
  }
  
  #fifteen {
	order: 14;
  }
  
  #sixteen {
	order: 16;
  }
  
  #hide {
	display: none;
  }
}