.imageStrip
{
	position:relative;
	user-select:none;
	-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
}

.imageStrip .divImageStripIcon
{
	background-position:center left;
	background-repeat:no-repeat;
    background-size: 30px 30px;
	float:left;
	height:40px;
    margin-right: 5px;
    will-change: opacity;
	width:36px;
}

.imageStrip .h3ImageStripLabel
{
	height:40px;
    left: 40px;
	line-height:40px;
}

.imageStrip .divButtonBar
{
	position:absolute;
	right:0px;
	top:0px;
}

.imageStrip .btnPrevious
{
	background-color:#292a2f;
    border:2px solid #3f4656;
    border-radius:50%;
	color:#888b90;
    cursor:pointer;
    float:left;
    height:36px;
	line-height:36px;
    margin-right:15px;
	text-align:center;
    transition:border 0.25s, box-shadow 0.25s, color 0.25s;
    width:36px;
}

.imageStrip .btnNext
{
	background-color:#292a2f;
    border:2px solid #3f4656;
    border-radius:50%;
	color:#888b90;
    cursor:pointer;
    float:left;
    height:36px;
	line-height:36px;
	text-align:center;
    transition:border 0.25s, box-shadow 0.25s, color 0.25s;
    width:36px;
}

.imageStrip .btnPrevious:hover, .imageStrip .btnPrevious:focus, .imageStrip .btnNext:hover, .imageStrip .btnNext:focus
{
	border:2px solid #cffdff;
    box-shadow:inset 0px 0px 5px #01eff9, 0px 0px 5px #01eff9;
	color:#ffffff;
}

.imageStrip .btnButton
{
	float:left;
}

.imageStrip .divImagesContainer
{
	position:relative;
}

.imageStrip .divImageScroller
{
	overflow-x:scroll;
	overflow-y:hidden;
	position:relative;
	scroll-behavior:smooth;
	-webkit-overflow-scrolling:touch;
}

.imageStrip .divImageScroller::-webkit-scrollbar
{
	background:transparent;
	height:0px;
	width:0px;
}

.imageStrip .divImages
{
    margin: 20px 0;
	white-space:nowrap;
}

.imageStrip .divImages:after
{
	clear:both;
	content:"";
	display:block;
}

.imageStrip .divImage
{
	background-color:#292a2f;
	background-position:center;
	background-repeat:no-repeat;
	background-size:60%;
	border:2px solid #3f4656;
	border-radius:10px;
    cursor: pointer;
	display:inline-block;
	height:60px;
	margin-right:15px;
	overflow:hidden;
	position:relative;
	transition:border 0.25s, box-shadow 0.25s, transform 0.25s;
	vertical-align: top;
	width:150px;
}

.imageStrip .divImage:last-child
{
	margin-right:50px;
}

.imageStrip .divImage:hover, .imageStrip .divImage:focus
{
	border:2px solid #cffdff;
	box-shadow:inset 0px 0px 5px #01eff9, 0px 0px 5px #01eff9;
	transform:scale(1.1);
	z-index: 10;
}

.imageStrip .divImage:nth-child(2n):hover, .imageStrip .divImage:nth-child(2n):focus
{
	border:2px solid #fbd3ff;
	box-shadow:inset 0px 0px 5px #e600ff, 0px 0px 5px #e600ff;
	transform:scale(1.1);
	z-index: 10;
}

/* Text display when no image is available */
.imageStrip .divImage.divImageText
{
	align-items: center;
	color: #ffffff;
	display: inline-flex;
	font-size: 12px;
	font-weight: bold;
	justify-content: center;
	line-height: 1.2;
	padding: 0 10px;
	text-align: center;
	text-transform: uppercase;
	vertical-align: top;
	white-space: normal;
	word-break: break-word;
}

/* MEDIA QUERIES */
@media (max-width: 800px)
{
	.imageStrip .divImagesContainer
	{
		left:-30px;
		width:calc(100% + 60px);
	}

	.imageStrip .divImagesContainer:before, .imageStrip .divImagesContainer:after
	{
		width:10px;
	}

	.imageStrip .divImageScroller
	{
		padding:0px 30px;
	}
}

@media (max-width: 600px)
{
	.imageStrip .divImagesContainer
	{
		left:-20px;
		width:calc(100% + 40px);
	}

	.imageStrip .divImagesContainer:before, .imageStrip .divImagesContainer:after
	{
		width:5px;
	}

	.imageStrip .divImageScroller
	{
		padding:0px 20px;
	}

	.imageStrip .divImage
	{
		margin-right:20px;
	}

	.imageStrip .divImage:last-child
	{
		margin-right:20px;
	}
}

@media (max-width: 420px)
{
	.imageStrip .divImage
	{
		margin-right:15px;
	}

	.imageStrip .divImage:last-child
	{
		margin-right:15px;
	}
}
