
body {
	background: #fff;
	background-size: 100%;
}

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.loader .loader-boundry li {
	display: block;
	position: absolute;
	opacity: .5;
	border-radius: 50%;
	width: 10px;
	height: 10px;
    top: -5px;
    left: -5px;
    -webkit-transform-origin: 30px 30px;
    -moz-transform-origin: 30px 30px;
    -ms-transform-origin: 30px 30px;
    -o-transform-origin: 30px 30px;
    transform-origin: 30px 30px;
	background: #333;
    -webkit-animation: 
        rota 2s ease-in-out infinite;
    -moz-animation: 
        rota 2s ease-in-out infinite;
    -ms-animation: 
        rota 2s ease-in-out infinite;
    -o-animation: 
        rota 2s ease-in-out infinite;
    animation: 
        rota 2s ease-in-out infinite;
}

.loader-boundry li:nth-child(1) {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
	display: block;
	list-style-type: disc;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.loader {
    display: none;
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    z-index: 1000;
}

#blur-background{
    position: fixed; 
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.5); 
    z-index: 999;
    display: none;
}

.loader-boundry {
	position: relative;
	margin: 100px auto;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid #333;
	list-style: none;
}

.loader-boundry li:nth-child(1) {
    -webkit-animation-delay: .25s;
    -moz-animation-delay: .25s;
    -ms-animation-delay: .25s;
    -o-animation-delay: .25s;
    animation-delay: .25s;
}

.loader-boundry li:nth-child(2) {
	-webkit-animation-delay: .5s;
    -moz-animation-delay: .5s;
    -ms-animation-delay: .5s;
    -o-animation-delay: .5s;
    animation-delay: .5s;
}

.loader-boundry li:nth-child(3) {
    -webkit-animation-delay: .75s;
    -moz-animation-delay: .75s;
    -ms-animation-delay: .75s;
    -o-animation-delay: .75s;
    animation-delay: .75s;
}

.loader-boundry li:nth-child(4) {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    -ms-animation-delay: 1s;
    -o-animation-delay: 1s;
    animation-delay: 1s;
}

.loader-boundry li:nth-child(5) {
    -webkit-animation-delay: 1.25s;
    -moz-animation-delay: 1.25s;
    -ms-animation-delay: 1.25s;
    -o-animation-delay: 1.25s;
    animation-delay: 1.25s;
}

@-webkit-keyframes rota {
    to { -webkit-transform: rotate(360deg); }
}

@-moz-keyframes rota {
    to { -moz-transform: rotate(360deg); }
}

@-ms-keyframes rota {
    to { -ms-transform: rotate(360deg); }
}

@-o-keyframes rota {
    to { -o-transform: rotate(360deg); }
}

@keyframes rota {
    to { transform: rotate(360deg); }
}