#sppbContainer {
	position: relative;
	width: 100%; /* Width */
	height: 400px; /* Height */
	overflow: hidden;
}

.sequence-fallback {
	overflow: hidden;
}

.sequence-canvas {
	height: 100%;
	margin: 0;
	padding: 0;
	list-style:none;
}

.sequence-canvas > li {
	position: absolute;
	height: 100%;
	width: 100%;
	display: block !important;
}

/* default + left animation */
.sppb-item {
	position: relative;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	transition: opacity 0.5s ease;
}

/* visibile animation */
.animate-in .sppb-item {
	opacity: 1;
}

/* right animation */
.animate-out .sppb-item {
	opacity: 0;
}

.sppb-content {
	position: absolute;
	z-index: 10;
}

.sppb-pagination {
	position: absolute;
	right: 15px;
	bottom: 13px;
	z-index: 10;
	line-height: 1;
}

.sppb-pagination > span {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 3px;
	text-indent: -9999px;
	background-color: #fff;
	border-radius: 6px;
	cursor: pointer;
}

.sppb-loading {
    position: absolute;
	top: 50%;
    left: 50%;
    z-index: 10;
    margin-top: -14px;
	margin-left: -14px;
}

.sppb-nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    font-size: 100px;
    margin-top: -50px;
    color: #fff;
    cursor: pointer;
}

.sppb-nav-left {
	left: 15px;
}

.sppb-nav-right {
	right: 15px;
}
