/* CSS Document */
/* tabs for the denominations page */

@charset "utf-8";

.bn-centered-tabs {
	border-bottom: 1px solid #eee;
	text-align: center;
}
.bn-centered-tabs > a {
  min-width: 200px;
	vertical-align: bottom;
	margin-top: 5px;
	margin-bottom: -1px;
	text-decoration: none;
	color: #333;
	border-left: 1px solid #eee;
	border-top: 1px solid #eee;
	border-right: 1px solid #eee;
	background: #eee;
	display: inline-block;
  padding: 7px 10px;
  box-shadow: inset 0px -5px 10px -5px #eee;
}
.bn-centered-tabs > a:hover {
  background: #f7f7f7;
  cursor: pointer;
}
.bn-centered-tabs > a.is-active {
	margin-top: 0px;
	padding: 10px 10px;
	color: #003299;
	background: #fff;
	box-shadow: none;
}

/* nested tabs */
.bn-centered-tabs.bn-nested-tabs {
	margin-top: -43px; 
	position: relative;
	border-bottom: 0px;
}
.bn-centered-tabs.bn-nested-tabs > a {
		min-width: 46%;
		position: relative;
}
.bn-centered-tabs.bn-nested-tabs > a.is-active {
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

.bn-nested-tabs > a:after {
	content: " ";
	background-color: #fff;
	height: 2px;
	width: calc(100% + 2px);
	position: absolute;
	top: 100%;
	left: -1px;
}

/*-- Tabs Content --*/
.bn-tabs-content > div {
  display:none;
}

.bn-tabs-content > div.is-active {
  display:block;
}

.bn-tabs-content.bn-nested-tabs-content > div {
	display: block;
}

.bn-tabs-content.bn-nested-tabs-content > div.bn-tab-content > div:last-child {
	display: none;
}

.bn-tabs-content.bn-nested-tabs-content > div.is-active > div:last-child {
	display: block;
}

.bn-tabs-content.bn-nested-tabs-content > div.is-active.hideAccordionContent > div:last-child {
	display: none;
}

.bn-centered-tabs {
	border-bottom: 1px solid #eee;
	text-align: center;
}

@media only screen and (max-width: 568px) {
	.bn-centered-tabs > a {
		min-width: 120px;
	}
}

/*-- Accordion --*/
.bn-accordion,
.bn-mobile .bn-centered-tabs.bn-nested-tabs {
	display: none;
}

.bn-mobile .bn-accordion {
	display: block;
}

.bn-mobile .bn-nested-tabs-content {
	background: #3c6baf;
	padding: 0 10px 15px;
}

.bn-tab-content {
	margin-bottom: 4px;
}

.bn-accordion {
	padding: 11px;
	background-color: rgba(255, 255, 255, 0.25);
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
	margin: -43px 15px 0px;
	margin: 0px 0px 4px;
	position: relative;
	cursor: pointer;
	transition: background-color ease 0.2s;
}

.bn-mobile .bn-tab-content:first-child {
	margin-top: -43px;
}

.bn-accordion:hover {
	background-color: #f7f7f7;
	color: rgba(25, 25, 25, 0.5);
}

.bn-tab-content.is-active .bn-accordion {
	background-color: #eee;
	margin-bottom: 0px;
	position: relative;
	color: #003299;
}

.bn-tab-content.is-active .bn-accordion::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	left: calc(50% - 10px);
	top: 43px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-top: 10px solid #eee;
}

.bn-tab-content.is-active.hideAccordionContent .bn-accordion {
	background-color: rgba(255, 255, 255, 0.25);
	color: rgba(255, 255, 255, 0.6);
}

.bn-tab-content.is-active.hideAccordionContent .bn-accordion::after {
	content: "";
	position: absolute;
	width: 0px;
	height: 0px;
	left: calc(50% - 10px);
	top: 43px;
	border: 0px solid transparent;
}

.bn-tab-content.is-active.hideAccordionContent .bn-accordion:hover {
	background-color: #f7f7f7;
	color: rgba(25, 25, 25, 0.5);
}

.bn-accordion-icon {
	display: block;
	position: absolute;
	top: 0;
	left: 20px;
	transform: translate(0%, 50%);
}

.bn-accordion-icon i {
	font-size: small;
}
	
