.nbsEl {
	position: relative;
}
.nbsElImg {
	display: inline-block;
}
/*Blocks settings*/
.nbsBlock {
	background-color: transparent;
	/*position: relative;*/
}
#wpadminbar {
	display: none;
}
/*bootstrap spin class*/
.glyphicon-spin {
	-webkit-animation: spin 1000ms infinite linear;
	animation: spin 1000ms infinite linear;
}
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
/*Blocks loader*/
#nbsBlockLoader {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	font-family: 'PT Sans';
	width: 100%;
	/*height: 100%;*/
	text-align: center;
	vertical-align: middle;
	z-index: 99999;
	display: table;
	
	top: 0;
	left: 0;
}
.nbsLoaderContent {
	display: table;
	table-layout: fixed;
	width: 100%;
	height: 100%;
}
.nbsLoaderContentCell {
	display: table-cell; 
	vertical-align: middle; 
	text-align: center;
}
.nbsBlockLoaderIcon,
.nbsBlockLoaderTxt {
	display: inline;
}
.nbsBlockLoaderIcon {
	
}
.nbsShowSmooth {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s linear 0.2s, opacity 0.2s linear;
}
.nbsShowSmooth.active {
	visibility: visible;
	opacity: 1;
	transition-delay: 0s;
}
/*Block Elements*/
.nbsEl {
	position: relative;
}
.nbsElInput,
.nbsInputShell {
	display: inline-block;
}
/*Common bg style for all grid elements*/
.nbsGridElement {
  	background: url("") no-repeat center center; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.nbsElOverlay {
	position: absolute;
  	width: 100%;
  	height: 100%;
  	top: 0;
  	left: 0;
  	display: none;
}
#nbsCanvasBG {
	
	background-size: 100% 100%;
}
#nbsCanvasBG {
  min-height: 100%;
  min-width: 1024px;

  width: 100%;
  height: auto;

  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
	#nbsCanvasBG {
		left: 50%;
		margin-left: -512px;
	}
}
.nbsCoverOverlay {
	position: absolute;
  	width: 100%;
  	height: 100%;
  	top: 0;
  	left: 0;
}
.nbsAlign_center .nbsContent {
	text-align: center;
}
.nbsAlign_left .nbsContent {
	text-align: left;
}
.nbsAlign_right .nbsContent {
	text-align: right;
}
.nbsContent p {
	margin: 0;
}