/*pop-up banner styling*/
.banner {
	position: relative;
	top: 0;
	left: 0;
	width: auto;
	padding: 15px;
	color: #000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1;
	border: 3px solid rgba(143,173,23,1);
	border-radius: 8px;
	border-style: dashed;
	margin-top: 20px;
}

.banner-close {
	cursor: pointer;
	font-size: 30px;
	position: absolute;
	top: 0px;
	right: 10px;
}

/*accordion styling*/
.accordion {
	background-color: rgba(91,127,149,1);
	color: #FFFFFF;
	cursor: pointer;
	padding: 10px 20px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;	
	transition: 0.4s;
	font-family: inherit;
	font-style: normal;
	font-size: 16px;
	line-height: 20px;
	margin-top: 4px;
}

.accordion:hover {
	opacity: 0.5;
}

.accordion.active {
	background-color: rgba(91,127,149,1);
	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: inherit;
	font-weight: 300;
	font-size: 16px;
	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: inherit;
	font-weight: 300;
	font-size: 16px;
	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 {
	display: none;
}

.sub-text{
	font-family: inherit;
	font-style: normal;
	font-size: 16px;
	line-height: 23px;
}

.resource-left {
	padding-right: 10px;
}

.resource-right {
	padding-left: 10px;
	padding-right: 10px;
}

.content__share-align {
	border-top: none;
	text-align: right;
}

.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;
  }
  
  .content__share-align {
	text-align: left;
}
}