@charset "UTF-8";
/* CSS Document */
.nbs-flexisel-container {
    position:relative;
    max-width:100%;
}
.nbs-flexisel-ul {
    position:relative;
    width:99999px;
    margin:0px;
    padding:0px;
    list-style-type:none;   
    text-align:center;  
    overflow: auto;
	overflow-y: hidden;
}

.nbs-flexisel-inner {
    position: relative;
    overflow: hidden;
    float:left;
    width:100%;
}

.nbs-flexisel-item {
    float:left;
    margin:0px;
    padding:0 0 20px;
    /*cursor:pointer;*/
    position:relative;
    line-height:0px;
}

.nbs-flexisel-item h3{
	padding: 0; margin: 15px 0; font-size: 18px; color: #d40075; line-height: initial;
}

.nbs-flexisel-item p{
	 font-size: 16px;
}

.nbs-flexisel-item img {
    max-width: 100%;
    /*cursor: pointer;*/
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
}

.nbs-flexisel-item a{
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	top: 0; left: 0;
}

.nbs-flexisel-item a span{
	font-size: 60px;
	color: rgba(255,255,255,0.4);
	margin: 0 auto;
	-webkit-transition: all 0.5s ease 0s; -moz-transition: all 0.5s ease 0s; -o-transition: all 0.5s ease 0s;	transition: all 0.5s ease 0s;
	margin-top: -60px;
}

.nbs-flexisel-item a:hover span{
	font-size: 70px;
	color: #d40075;
}

/*** Navigation ***/

.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
    padding:5px 10px;
    position: absolute;
    cursor: pointer;
    z-index: 4;
    top: 50%;
    transform: translateY(-50%);
	width: 30px;
	height: 58px;
	margin-top: -27px;
}

.nbs-flexisel-nav-left {
    left: 10px;
	background: url("../images/flexisel_prev.png") no-repeat 50% 50%;
}

.nbs-flexisel-nav-left:before {
    /*content: "<"*/
}

.nbs-flexisel-nav-left.disabled {
    opacity: 0.4;
	background: none;
}

.nbs-flexisel-nav-right {
    right: 10px;
	background: url("../images/flexisel_next.png") no-repeat 50% 50%;
}

.nbs-flexisel-nav-right:before {
    /*content: ">"*/
}

.nbs-flexisel-nav-right.disabled {
    opacity: 0.4;
}

