/* Your custom css code goes here */
html{
	overflow-y: scroll;
}
body{
	width: 100%;
}
body.load{
	position: fixed;
	top:0;
	overflow: hidden;
}
.loading{
	width: 100%;
	height: 100vh;
    position: fixed;
	top: 0;
	left: 0;
	display: none;
    overflow: hidden;
	background-color: #fff;
	z-index: 9999;
}
.loading .loading-container{
	width: 140px;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: inline-block;
}
.loading .loading-img-wrap{
	width: 140px;
	height: 140px;
	background: url("../img/loading.jpg") no-repeat center center;
	background-size: cover;
}
.loading .loading-img-wrap img{
	width: 100%;
	height: auto;
}
.loading .loader,
.loading .loader:before,
.loading .loader:after {
	border-radius: 50%;
	width: 1em;
	height: 1em;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: loading-anime 1.8s infinite ease-in-out;
	animation: loading-anime 1.8s infinite ease-in-out;
}
.loading .loader{
	margin: 20px auto;
	position: relative;
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
	background-color: #999;
	border-radius: 50%;
}
.loading .loader:before,
.loading .loader:after {
	content: '';
	position: absolute;
	top: 0;
	background-color: #999;
	border-radius: 50%;
}
.loading .loader:before {
	left: -2em;
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.loading .loader:after {
	left: 2em;
}
@-webkit-keyframes loading-anime {
	0%,
	100% {
		background-color: #999;
	}
	50% {
		background-color: #666;
	}
}
@keyframes loading-anime {
	0%,
	100% {
		background-color: #999;
	}
	50% {
		background-color: #666;
	}
}
.probootstrap-header{
	position: fixed;
	top: 0;
	left: 0;
}
.probootstrap-section{
	background-color: #fff;
}
.probootstrap-footer{
	background-color: #666;
}
.probootstrap-footer.probootstrap-bg:before{
	content: none;
}

.media-item,
.product-item{
	background-color: #f9f9f9;
	-webkit-box-shadow: none;
	box-shadow: none;
}