

.galleria-info-link {display: none;}

/*** Overall MovingBoxes Slider ***/
.mb-wrapper {
	/*border: 5px solid #ccc;*/
	margin: 0 auto 20px;
	position: relative;
	left: 0;
	top: 0;
	/*border-radius: 10px;*/
	/*box-shadow: inset 0 0 10px #888;*/
	height: 200px;

	/*background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 75%)*/
}

.mb-wrapper:before {

    content:"";
    display:block;
    position:absolute; 
    height: 200px; width: 22%;
    bottom: -20px; left: 0;
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0), #fff 75%);
    z-index: 2;
}

.mb-wrapper:after {

    content:"";
    display:block;
    position:absolute; 
    height: 200px; width: 22%;
    bottom: -20px; right: 0;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), #fff 75%);
    z-index: 2;
}



/* Panel Wrapper */
.mb-slider, .mb-scroll {
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0 auto;
	padding: 0;
	position: relative;
	left: 0;
	top: 0;

	/***(>'-')> Control Panel Font size here <('-'<)***/
	/*font-size: 18px;*/
}

/* active slider border highlight */
.mb-active-slider {
	/*border-color: #333;*/
}

/*** Slider panel ***/
.mb-slider .mb-panel {
	margin: 0;
	padding: 20px;
	display: block;
	cursor: pointer;
	float: left;
	list-style: none;
}

/* Cursor to arrow over current panel, pointer for all others,
change .current class name using plugin option, currentPanel : 'current' */
.mb-slider .mb-panel.current {
	cursor: auto;
}

/*** Inside the panel ***/
.mb-inside {
	/*padding: 10px;*/
	/*border: 1px solid #E0E0E0;*/
	height: 200px;
	border-radius: 200px;
	background: #f0f0f0;
}

.mb-inside * {
	max-width: 100%;
}

/*** Left & Right Navigation Arrows ***/
a.mb-scrollButtons {
	display: block;
	width: 30px;
	height: 30px;
	/*background: transparent url(../images/arrows.png) no-repeat;*/
	position: absolute;
	top: 50%;
	/*margin-top: -29px; */
	cursor: pointer;
	text-decoration: none;
	outline: 0;
	border: 0;


}
a.mb-scrollButtons.mb-left {
	background-position: left top;
	left: 20%;
	z-index: 3;
	/*border: red 1px solid;*/
}


a.mb-scrollButtons.mb-left:before{
content:"\f137";
font-family:'FontAwesome';
font-size: 30px;
margin-left: 3px;
background: white;
padding: 5px;
border-radius: 30px;

}



a.mb-scrollButtons.mb-right {
	background-position: right top;
	right: 20%;
	z-index: 3;
	margin-right:50px;
}


a.mb-scrollButtons.mb-right:before{
content:"\f138";
font-family:'FontAwesome';
font-size: 30px;
background: white;
padding: 5px;
border-radius: 30px;
}


/*a.mb-scrollButtons.mb-left:hover {
	background-position: left bottom;
}
a.mb-scrollButtons.mb-right:hover {
	background-position: right bottom;
}*/
a.mb-scrollButtons.disabled {
	display: none;
}

/*** Controls added below the panels ***/
.mb-controls {
	margin: 0 auto;
	text-align: center;
	background: #ccc;
	position: relative;
	z-index: 100;
}
.mb-controls a {
	color: #666;
	font: 18px/2.2 Georgia, Serif;
	display: inline-block;
	text-decoration: none;
	padding: 2px;
	margin: 0 5px 0 0;
	text-align: center;
	outline: 0;
}
.mb-controls a:hover {
	color: black;
}
.mb-controls a.current {
	color: white;
}
.mb-active-slider .mb-controls {
	/*background: #333;*/
}