
/* ******************************************************************************* */
/* 
*******************************************************************************
Global tab container loader style
*******************************************************************************
*/
.display-post-as-tab {
	position: relative;
}
.bhs-tab-globalcontainer-loader-wrapper {
	width: 100%;
	position: absolute;
	text-align: center;
	height: 100%;
	background: #1a1a1a;
    z-index: 999;
}
.bhs-tab-globalcontainer-loader-wrapper .loader-container {
    position: relative;
    width: 30px;
    height: 30px;
    margin: auto;
}
.bhs-tab-globalcontainer-loader-wrapper .loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #bb4c00;
    border-radius: 30px;
    border-right: 0px;
    border-left: 0px;
    top: 80px;
    animation: bhs_tab_globalcontainer_loader 2s infinite ease;
}
.bhs-tab-globalcontainer-loader-wrapper .loader-inner {
    vertical-align: top;
    position: absolute;
    width: 100%;
    display: inline-block;
    border-radius: 100%;
    border-right: 0px;
    border-left: 0px;
    top: 80px;
    background-color: #e5e5e5;
    animation: bhs_tab_globalcontainer_loader-inner 2s infinite ease-in;
}
.bhs-tab-globalcontainer-loader-wrapper  .bhs-loader-wrapper-description {
	position: relative;
	display: block;
	color: #f5f5f5;
	font-size: 15px;
	font-weight: normal;
}
@keyframes bhs_tab_globalcontainer_loader {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bhs_tab_globalcontainer_loader-inner {
	0% {
		height: 0%;
		width: 0%;
		margin-left: 50%;
	}
	25% {
		height: 0%;
		width: 00%;
		margin-left: 50%;
	}
	50% {
		height: 100%;
		width: 100%;
		margin-left: 0%;
	}
	75% {
		height: 100%;
		width: 100%;
		margin-left: 0%;
	}
	100% {
		height: 0%;
		width: 0%;
		margin-left: 50%;
	}
}
/*
The globalcontainer is set to hidden to let the page load faster
and avoid that the user see the construction of the display_post_as_tab element.
The visibility will be set back from javascript when the document will be ready.
*/
.bhs-tab-globalcontainer {
	visibility:hidden;
}
/* 
*******************************************************************************
Global tab container style
*******************************************************************************
*/
.bhs-tab-globalcontainer {
	display: flex;
    margin-top: 0px;
    margin-bottom: 30px;
}
/* 
*******************************************************************************
Tab panel style
*******************************************************************************
*/
.bhs-tab-globalcontainer .bhs-tab {
	float: left;
	border: 1px solid #585858;
	border-right: none;
	background-color: #000000;
	width: auto;
    max-width: 275px;
    min-width: 175px;
	height: auto;
}
/* 
*******************************************************************************
Tab in normal mode style
*******************************************************************************
*/
.bhs-tab-globalcontainer .bhs-tab button {
	/* reset all theme syle for the button */
	all: unset;
}
/*
.bhs-tab-globalcontainer .bhs-tab button, .bhs-tab-globalcontainer .bhs-tab button:hover , .bhs-tab-globalcontainer .bhs-tab button.active {
	all: unset;
}
*/
.bhs-tab-globalcontainer .bhs-tab button {
	position: relative;
	display: flex;
	background-color: #1a1a1a;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	color: #ffffff;
	/*padding: 10px;*/
	padding: 0px;
	margin: 0px;
	width: 100%;
	outline: none;
	text-align: left;
	cursor: pointer;
	transition: 0.6s;
	border: none;
	border-bottom: 1px solid #585858;
	align-items: center;
}
.bhs-tab-globalcontainer .bhs-tab button:hover {
	background-color: #484848;
	color: #ffffff;
}
.bhs-tab-globalcontainer .bhs-tab button.active {
	background-color: #bb4c00;
	color: #fff;
}
.bhs-tab-globalcontainer .tablinks_normal.active:after {
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 100%;
    content: " ";
    height: 0;
    width: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
	border-left: 8px solid #bb4c00;
    z-index: 100;
}
.bhs-tab-globalcontainer .bhs-tab-button-thumbail {
	display: contents;
}
.bhs-tab-globalcontainer .bhs-tab-button-img {
	width: 60px;
    margin: 4px;
	margin-right: 0px;
}
.bhs-tab-globalcontainer .bhs-right-container {
	display: flex;
	margin: 10px;
}
.bhs-tab-globalcontainer .bhs-fontawesome-container {
	display: inline-block;
    margin-right: 10px;
}
.bhs-tab-globalcontainer .bhs-tab-title {
	display: inline-block;
	word-break: break-word;
}
/* 
*******************************************************************************
Tab content style
*******************************************************************************
*/
.bhs-tab-globalcontainer .tabcontent {
	display: none;
	float: left;
	padding: 0px 12px;
	border: 1px solid #585858;
	word-break: break-word;
	width: 100%;
	height: auto;
	padding: 24px;
	background-color: #f5f5f5;
}
/*
*******************************************************************************
to hide tab content that were displayed from button accordion mode
*/
.bhs-tab-globalcontainer .tabcontent.activ_from_accordion {
	display: none !important;
}
/* to hide tab  that are displayed only for accordion mode */
.bhs-tab-globalcontainer .bhs-accordion-button {
	display: none;
}
/*
*******************************************************************************
*/
.bhs-tab-globalcontainer .bhs-tab-globalcontainer-post-title h2 {
	text-align: center;
	font-size: 30px;
	margin-bottom: 24px;
	line-height: initial;
}
.bhs-tab-globalcontainer .bhs-tab-globalcontainer img.alignleft {
	margin-left: 0px;
}
.bhs-tab-globalcontainer .bhs-tab-globalcontainer img.alignrigth {
	margin-right: 0px;
}
.bhs-tab-globalcontainer .bhs-tab-globalcontainer-thumbail {
	margin-bottom: 25px;
	max-height: 250px;
	display: flex;
}
.bhs-tab-globalcontainer .bhs-tab-globalcontainer-img {
	object-fit: contain;
}
/* 
*******************************************************************************
WARNING/INFORMATION Message class
*******************************************************************************
*/
.bhs-display-posts-as-tab-warning {
	border: solid 2px #FFD893;
    padding: 5px 10px;
}
.bhs-display-posts-as-tab-warning .bhs-display-posts-as-tab-warningheader {
	display: flex;
	margin-bottom: 5px;
}
.bhs-display-posts-as-tab-warning  .bhs-display-posts-as-tab-warningicon {
	display: inline-block;
	margin-right: 10px;
	color: #ff7500;
	font-size: 20px;
}
.bhs-display-posts-as-tab-warning  .bhs-display-posts-as-tab-warningtitle{
	display: inline-block;
    margin-top: 4px;
	font-size: 15px;
	font-weight: 600;
    color: #555;
}
.bhs-display-posts-as-tab-warning  .bhs-display-posts-as-tab-warningtext {
	color: #929292;
    font-size: 14px;
}
/* 
*******************************************************************************
MEDIAS displaying
*******************************************************************************
The order of appareance for media displaying is :
NORMAL mode <=> HORIZONTAL BUTTON mode <=> FULL VERTICAL BUTTON mode
*******************************************************************************
*/
/* ******************************************************************************* */
/* Media switch to HORIZONTAL BUTTON mode */
/* ******************************************************************************* */
@media screen and (max-width: 768px) and (min-width: 481px) {
	.bhs-tab-globalcontainer {
		display: inline-block;
	}
	.bhs-tab-globalcontainer .bhs-tab {
		display: flex;
		width: 100%;
		max-width: unset;
		min-width: unset;
		margin-bottom: 0px !important;
		border-bottom: none;
	}
	.bhs-tab-globalcontainer .bhs-tab button {
		display: inline-grid;
		font-size: 10px;
		width: -webkit-fill-available;
		text-align: center;
		border-right: 1px solid #585858;
		border-bottom: none;
		
		position: relative;
		padding-top: 60px;
	}
	.bhs-tab-globalcontainer .tablinks_normal.active:after {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		margin: 0 auto;
		border-left: 8px solid transparent;
		border-right: 8px solid transparent;
		border-top: 8px solid #bb4c00;
	}
	.bhs-tab-globalcontainer .bhs-tab-button-thumbail {
		/*display: block;*/
		/*height: 100%;*/
		display: flex;
		position: absolute;
		height: 60px;
		top: 0px;
		width: 100%;
	}
	.bhs-tab-globalcontainer .bhs-right-container {
		margin-left: auto;
		margin-right: auto;
		padding: 0px 5px 0px 5px;
		
		display: block;
		height: 90%;
	}
	.bhs-tab-globalcontainer .tabcontent {
		width: 100%;
	}
	.bhs-tab-globalcontainer .tabcontent img {
		max-width: 40%;
	}
	.bhs-tab-globalcontainer .bhs-tab-button-img {
		/*max-width: 60px !important;*/
		margin: 4px;
		margin-left: auto;
		margin-right: auto;
	}
	.bhs-tab-globalcontainer .bhs-tab-globalcontainer-thumbail img {
		max-width: 100%;
	}
	.bhs-tab-globalcontainer .bhs-fontawesome-container {
		display: block;
		margin-right: 2px;
	}
	/* ******************************************************************************* */
	/* to hide tab content that were displayed from button accordion mode, as in NON-FULL VERTICAL BUTTON mode, we display only one tab content at a time */
	.bhs-tab-globalcontainer .tabcontent.activ_from_accordion {
		display: none !important;
	}
	/* to hide tab  that are displayed only for accordion mode */
	.bhs-tab-globalcontainer .bhs-accordion-button {
		display: none;
	}
	/* ******************************************************************************* */
	
}
/* ******************************************************************************* */
/* Media switch to FULL VERTICAL BUTTON mode */
/* ******************************************************************************* */
@media screen and (max-width: 480px) {
	.bhs-tab-globalcontainer {
		display: inline-block;
	}
	.bhs-tab-globalcontainer .bhs-tab {
		border: none;
		display: none;
		max-width: unset;
		min-width: unset;
	}
	.bhs-tab-globalcontainer .bhs-tab button {
		display: flex;
		font-size: 10px;
		width: -webkit-fill-available;
		text-align: center;
		border-right: 1px solid #585858;
		border-left: 1px solid #585858;
	}
	.bhs-tab-globalcontainer .bhs-tab-button-thumbail {
		display: inline-block;
	}
	.bhs-tab-globalcontainer .bhs-right-container {
		margin-left: auto;		/*margin-right: auto;*/
		margin: 10px !important;
		margin-right: 30px !important;
	}
	.bhs-tab-globalcontainer .bhs-tab-title {
		font-size: 10px !important;
		text-align: left;
	}
	.bhs-tab-globalcontainer .tabcontent {
		width: 100%;
		padding: 15px;
	}
	.bhs-tab-globalcontainer .tabcontent p {
		margin-bottom: 15px;
		font-family: open Sans;
		font-weight: 400;
		font-size: 12px;
		line-height: 16px;
	}
	.bhs-tab-globalcontainer .tabcontent div {
		margin-bottom: 15px;
		font-family: open Sans;
		font-weight: 400;
		font-size: 12px;
		line-height: 16px;
	}
	.bhs-tab-globalcontainer .bhs-tab p, .bhs-tab-globalcontainer .bhs-tab div {
		margin-bottom: 0px;
	}
	/*
	.bhs-tab-globalcontainer .bhs-right-container {
		margin: 10px !important;
	}
	*/
	.bhs-tab-globalcontainer .tabcontent h1 {
		font-size: 26px;
	}
	.bhs-tab-globalcontainer .tabcontent h2 {
		font-size: 24px;
	}
	.bhs-tab-globalcontainer .tabcontent h3 {
		font-size: 22px;
	}
	.bhs-tab-globalcontainer .tabcontent h4 {
		font-size: 20px;
	}
	.bhs-tab-globalcontainer .tabcontent img {
		max-width: 40%;
	}
	.bhs-tab-globalcontainer .bhs-tab-button-img {
		max-width: 60px !important;
		margin: 4px;
	}
	.bhs-tab-globalcontainer .bhs-tab-globalcontainer-thumbail img {
		max-width: 100%;
	}
	.bhs-tab-globalcontainer .bhs-fontawesome-container {
		display: inline-block;
		margin-right: 10px;
	}
	/* ******************************************************************************* */
	/* to let display tab content on button accordion mode, as in FULL VERTICAL BUTTON mode, we can display many tab content at a time */
	.bhs-tab-globalcontainer .tabcontent.activ_from_accordion {
		display: block !important;
	}
	/* to let display tab that are displayed only for accordion mode */
	.bhs-tab-globalcontainer .bhs-accordion-button {
		display: block;
		width: 100%;
		margin-bottom: 0px !important;
	}
	.bhs-tab-globalcontainer .tablinks_accordion_first {
		border-top: 1px solid #585858 !important;
	}
	.bhs-tab-globalcontainer .tablinks_accordion_first.active {
		/*border-top: none !important;*/
	}
	.bhs-tab-globalcontainer .tablinks_accordion.active {
		/*border-left: none;*/
		/*border-right: none;*/
		border-bottom: none;
	}
	.bhs-tab-globalcontainer .tablinks_accordion::after {
		content: "+";
		color: #ffffff;
		font-size: 14px;
		position: absolute;
		vertical-align: middle;
		display: inline-block;
		right: 0;
		margin-right: 15px;
		line-height: normal;
		top: unset;
		text-align: center;
		-webkit-transition: all 1s;
		-o-transition: all 1s;
		transition: all 1s;
	}
	.bhs-tab-globalcontainer .tablinks_accordion.active::after {
		content: "+";
		color: #fff;
		font-size: 14px;
		position: absolute;
		vertical-align: middle;
		display: inline-block;
		right: 0;
		margin-right: 15px;
		line-height: normal;
		top: unset;
		text-align: center;
		-webkit-transition: all 1s;
		-o-transition: all 1s;
		transition: all 1s;
		transform: rotate(315deg);
	}
}
/* 
*******************************************************************************
SPECIAL displaymodewidget
*******************************************************************************
*/
.bhs-tab-globalcontainer-widget {
	display: inline-block;
}
.bhs-tab-globalcontainer-widget .bhs-tab {
	display: none;
	border: none;
	width: 100%;
	margin-bottom: 0px !important;
	max-width: unset;
	min-width: unset;
}
.bhs-tab-globalcontainer-widget .bhs-tab button {
	display: flex;
	font-size: 10px;
	width: -webkit-fill-available;
	text-align: center;
	border-right: 1px solid #585858;
	border-left: 1px solid #585858;
	
	border-bottom: 1px solid #585858;
	padding-top: unset;
}
.bhs-tab-globalcontainer-widget  .tablinks_accordion_first {
	border-top: 1px solid #585858 !important;
}
.bhs-tab-globalcontainer-widget .tablinks_accordion_first.active {
	/*border-top: none !important;*/
}
.bhs-tab-globalcontainer-widget  .tablinks_accordion.active {
	/*border-left: none;*/
	/*border-right: none;*/
	border-bottom: none;
}
.bhs-tab-globalcontainer-widget .bhs-tab-button-thumbail {
	display: inline-block;
	
	position: unset;
    height: unset;
    top: unset;
    width: unset;
}
.bhs-tab-globalcontainer-widget .bhs-right-container {
	margin-left: auto;	margin-right: auto;
	padding: 0px 5px 0px 5px;
}
.bhs-tab-globalcontainer-widget .bhs-tab-title {
	font-size: 10px !important;
	text-align: left;
}
.bhs-tab-globalcontainer-widget .tabcontent {
	width: 100%;
	padding: 15px;
}
.bhs-tab-globalcontainer-widget .tabcontent p {
	margin-bottom: 15px;
    font-family: open Sans;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}
.bhs-tab-globalcontainer-widget .tabcontent div {
	margin-bottom: 15px;
    font-family: open Sans;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}
.bhs-tab-globalcontainer-widget .bhs-tab p, .bhs-tab-globalcontainer-widget .bhs-tab div {
	margin-bottom: 0px;
}
.bhs-tab-globalcontainer-widget .bhs-right-container {
	margin: 10px !important;
	margin-right: 30px !important;
}
.bhs-tab-globalcontainer-widget .tabcontent h1 {
	font-size: 26px;
}
.bhs-tab-globalcontainer-widget .tabcontent h2 {
	font-size: 24px;
}
.bhs-tab-globalcontainer-widget .tabcontent h3 {
	font-size: 22px;
}
.bhs-tab-globalcontainer-widget .tabcontent h4 {
	font-size: 20px;
}
.bhs-tab-globalcontainer-widget .tabcontent img {
	max-width: 40%;
}
.bhs-tab-globalcontainer-widget .bhs-tab-button-img {
	max-width: 60px !important;
	margin: 4px;
}
.bhs-tab-globalcontainer-widget .bhs-tab-globalcontainer-thumbail img {
	max-width: 100%;
}
.bhs-tab-globalcontainer-widget .bhs-fontawesome-container {
    display: inline-block;
    margin-right: 10px;
}
/* ******************************************************************************* */
/* to let display tab content on button accordion mode, as in WIDGET mode, we can display many tab content at a time */
.bhs-tab-globalcontainer-widget .tabcontent.activ_from_accordion {
	display: block;
}
/* to let display tab that are displayed only for accordion mode */
.bhs-tab-globalcontainer-widget .bhs-accordion-button {
	display: block;
	width: 100%;
	margin-bottom: 0px !important;
}
/* ******************************************************************************* */
.bhs-tab-globalcontainer-widget .tablinks_accordion::after {
	content: "+";
	color: #ffffff;
	font-size: 14px;
	position: absolute;
	vertical-align: middle;
	display: inline-block;
	right: 0;
	margin-right: 15px;
	line-height: normal;
	top: unset;
	text-align: center;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
}
.bhs-tab-globalcontainer-widget .tablinks_accordion.active::after {
	content: "+";
	color: #fff;
	font-size: 14px;
	position: absolute;
	vertical-align: middle;
	display: inline-block;
	right: 0;
	margin-right: 15px;
	line-height: normal;
	top: unset;
	text-align: center;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
	transform: rotate(315deg);
}
.bhs-tab-globalcontainer-widget .tabcontent.activ_from_accordion {
	display: block !important;
}