/*---------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------This custom code is written by Nicolas Boileau--------------------------------------*/
/*--------------------------It may not be redistributed or reused without explicit written consent---------------------------*/
/*---------This code has been licensced to Assembly Line Technologies for use with a single client's WordPress theme.--------*/
/*------This licsence does not extend beyond the scope of this particular version of the theme for this specific client.-----*/
/*---------------------------------------------------------------------------------------------------------------------------*/

/*********************
TXIBLS ITEM SCROLLER STYLES
*********************/

.txibls.txibls-item-sroller {
	width: 100%;
	overflow-x: hidden;
	white-space: nowrap;
	font-size: 0px;
	position: relative;
}

.txibls.txibls-item-sroller .txibls-item {
	display: inline-block;
	white-space: normal;
}

.txibls.txibls-item-sroller .txibls-nav-button,
.txibls.txibls-item-sroller .txibls-nav-button span {
	width: 40px;
	height: 40px;
	line-height: 30px;
	padding: 5px;
	box-sizing: border-box;
	text-align: center;
	position: absolute;
	font-family: Verdana,sans-serif;
}

.txibls.txibls-item-sroller .txibls-nav-button {

	top: 50%;
	margin-top: -20px;
	background-color: rgba(0,0,0,0.75);
	z-index: 5;
    color: #ffffff;
    font-size: 30px;	
	cursor: pointer;
	opacity: 0.25;	
	transition: opacity .5s linear;
	-webkit-user-select: none; /* Safari */
	-ms-user-select: none; /* IE 10 and IE 11 */
	user-select: none; /* Standard syntax */	
}

body.txi-touch-enabled .txibls.txibls-item-sroller .txibls-nav-button {
	display: none;
}

.txibls.txibls-item-sroller .txibls-nav-button span {
	top: 0px;
	left: 0px;
	display: block;
}

.txibls.txibls-item-sroller .txibls-nav-button span.txibls-hollow,
.txibls.txibls-item-sroller .txibls-nav-button:hover span.txibls-solid {
	display: block;
}

.txibls.txibls-item-sroller .txibls-nav-button:hover span.txibls-hollow,
.txibls.txibls-item-sroller .txibls-nav-button span.txibls-solid {
	display: none;
}

body[data-txi-browser-id="microsoft-edge"] .txibls.txibls-item-sroller .txibls-nav-button span.txibls-hollow {
		/*-----edge shat the bed with the non hollow character, showed the wrong thing-----*/
		display: block !important;
	}
	
body[data-txi-browser-id="microsoft-edge"] .txibls.txibls-item-sroller .txibls-nav-button span.txibls-solid {
		/*-----edge shat the bed with the non hollow character, showed the wrong thing-----*/
		display: none !important;
	}

.txibls.txibls-item-sroller:hover .txibls-nav-button {
		opacity: .75;
}

.txibls.txibls-item-sroller .txibls-nav-button:hover {
		opacity: 1;
}

.txibls.txibls-item-sroller .txibls-nav-button:before,
.txibls.txibls-item-sroller .txibls-nav-button:after {
	width: 40px;
	height: 40px;
	position: absolute;
	box-sizing: border-box;
	content: " ";
	border-style: solid;
	border-width: 20px;
	border-color: rgba(0,0,0,0.75);	
}

.txibls.txibls-item-sroller .txibls-nav-button:before {
	top: -40px;
	left: 0px;	
	border-top-color: transparent !important;
}

.txibls.txibls-item-sroller .txibls-nav-button:after {
	bottom: -40px;
	left: 0px;	
	border-bottom-color: transparent !important;	
}

.txibls.txibls-item-sroller .txibls-nav-button.txibls-fwd-button:before,
.txibls.txibls-item-sroller .txibls-nav-button.txibls-fwd-button:after {
	border-right-color: transparent !important;
}

.txibls.txibls-item-sroller .txibls-nav-button.txibls-rev-button:before,
.txibls.txibls-item-sroller .txibls-nav-button.txibls-rev-button:after {
	border-left-color: transparent !important;	
}

.txibls.txibls-item-sroller .txibls-nav-button.txibls-rev-button {
	right:0px;
}

.txibls.txibls-item-sroller .txibls-nav-button.txibls-fwd-button {
	left:0px;
}

/*********************
TXIBLS ITEM GRID STYLES
*********************/

.txibls.txibls-item-grid {
	text-align: center;
}

.txibls.txibls-item-grid .txibls-item {
	display: inline-block;
}

