#flexiselDemo1, #flexiselDemo2, #flexiselDemo3 {
display:none;
}

.nbs-flexisel-container {
    position:relative;
    max-width:100%;
}
.nbs-flexisel-ul {
    position:relative;
    width:9999px;
    margin:0px;
    padding:0px;
    list-style-type:none;   
    text-align:center;  
}

.nbs-flexisel-inner {
    overflow:hidden;
    width:100%;
	padding: 10px 0; 
}

.nbs-flexisel-item {
    float:left;
    margin:0px;
    padding:0px;
    cursor:pointer;
    position:relative;
    line-height:0px;
}
.nbs-flexisel-item img {
    width: auto;
    cursor: pointer;
    position: relative;
    max-width: 255px;
    max-height: 255px;
}

.nbs-flexisel-item img:hover {
    transform: scale(1.1);
	position: relative;
	z-index: 99;
}
.nbs-flexisel-item img {
    transform: scale(1);
    transition: all 0.5s ease-out 0s;
}

/*** Navigation ***/

.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
    width: 50px;
    height: 50px; 
    position: absolute;
    cursor: pointer;
    z-index: 100;
	top: 50% !important;
	margin-top: -25px;
}

.nbs-flexisel-nav-left {
    left: -80px;
    background: url(../images/prev-arrow.png) no-repeat;
}

.nbs-flexisel-nav-right {
    right: -80px;
    background: url(../images/next-arrow.png) no-repeat;
}

@media all and (max-width: 1220px) {
	.nbs-flexisel-nav-left { left: 10px; }
	
	.nbs-flexisel-nav-right { right: 10px; }
}

@media all and (max-width: 567px) {
	.nbs-flexisel-nav-left { left: 3px; }
	
	.nbs-flexisel-nav-right { right: 3px; }
}

@media all and (max-width: 413px) {
	.nbs-flexisel-nav-left, 
	.nbs-flexisel-nav-right {
		background-size: 40px 40px;
		width: 40px;
		height: 40px;
		margin-top: -20px;
	}
	
	.nbs-flexisel-nav-left { left: 0; }
	
	.nbs-flexisel-nav-right { right: 0; }
}

@media all and (max-width: 374px) {
	.nbs-flexisel-nav-left { left: 18px; }
	
	.nbs-flexisel-nav-right { right: 18px; }
}