@charset "utf-8";
//PRELOADER FOR BLOG LOAD
/*
-webkit-
-moz-
-ms-
-o-



*/
#preloader{
	padding:0;
    margin:0;
    width:100%;
    height:100%;  /*height: 100vh;*/
	//background:radial-gradient(#9b59b6, #8e44ad); 
	z-index: 897;
}
.wrapper{
    width:150px;
    height:60px;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
}
.circle{
    width:20px;
    height:20px;
    position: absolute;
    background-color: #CD3E0E;	/*#fff*/
    left:15%;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
    transform-origin: 50%;
	-webkit-transform-origin: 50%;
	-moz-transform-origin: 50%;
	-ms-transform-origin: 50%;
	-o-transform-origin: 50%;
    animation: circle .5s alternate infinite ease;
	-webkit-animation: circle .5s alternate infinite ease;
	-moz-animation: circle .5s alternate infinite ease;
	-ms-animation: circle .5s alternate infinite ease;
	-o-animation: circle .5s alternate infinite ease;
}

@keyframes circle{
    0%{
        top:60px;
        height:5px;
        border-radius: 50px 50px 25px 25px;
		-webkit-border-radius: 50px 50px 25px 25px;
		-moz-border-radius: 50px 50px 25px 25px;
		-ms-border-radius: 50px 50px 25px 25px;
		-o-border-radius: 50px 50px 25px 25px;
        transform: scaleX(1.7);
		-webkit-transform: scaleX(1.7);
		-moz-transform: scaleX(1.7);
		-ms-transform: scaleX(1.7);
		-o-transform: scaleX(1.7);
    }
    40%{
        height:20px;
        border-radius: 50%;
		-webkit-border-radius: 50%;
		-moz-border-radius: 50%;
		-ms-border-radius: 50%;
		-o-border-radius: 50%;
        transform: scaleX(1);
		-webkit-transform: scaleX(1);
		-moz-transform: scaleX(1);
		-ms-transform: scaleX(1);
		-o-transform: scaleX(1);
    }
    100%{
        top:0%;
    }
}
.circle:nth-child(2){
    left:42.5%;
    animation-delay: .2s;
	-webkit-animation-delay: .2s;
	-moz-animation-delay: .2s;
	-ms-animation-delay: .2s;
	-o-animation-delay: .2s;
}
.circle:nth-child(3){
    left:auto;
    right:15%;
    animation-delay: .3s;
	-webkit-animation-delay: .3s;
	-moz-animation-delay: .3s;
	-ms-animation-delay: .3s;
	-o-animation-delay: .3s;
}
.shadow{
    width:20px;
    height:4px;
    border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
    background-color: rgba(0,0,0,.5);
    position: absolute;
    top:62px;
    transform-origin: 50%;
	-webkit-transform-origin: 50%;
	-moz-transform-origin: 50%;
	-ms-transform-origin: 50%;
	-o-transform-origin: 50%;
    z-index: -1;
    left:15%;
    filter: blur(1px);
    animation: shadow .5s alternate infinite ease;
	-webkit-animation: shadow .5s alternate infinite ease;
	-moz-animation: shadow .5s alternate infinite ease;
	-ms-animation: shadow .5s alternate infinite ease;
	-o-animation: shadow .5s alternate infinite ease;
}

@keyframes shadow{
    0%{
        transform: scaleX(1.5);
		-webkit-transform: scaleX(1.5);
		-moz-transform: scaleX(1.5);
		-ms-transform: scaleX(1.5);
		-o-transform: scaleX(1.5);
    }
    40%{
        transform: scaleX(1);
		-webkit-transform: scaleX(1);
		-moz-transform: scaleX(1);
		-ms-transform: scaleX(1);
		-o-transform: scaleX(1);
        opacity: .7;
    }
    100%{
        transform: scaleX(.2);
		-webkit-transform: scaleX(.2);
		-moz-transform: scaleX(.2);
		-ms-transform: scaleX(.2);
		-o-transform: scaleX(.2);
        opacity: .4;
    }
}
.shadow:nth-child(4){
    left: 42.5%;
    animation-delay: .2s;
	-webkit-animation-delay: .2s;
	-moz-animation-delay: .2s;
	-ms-animation-delay: .2s;
	-o-animation-delay: .2s;
}
.shadow:nth-child(5){
    left:auto;
    right:15%;
    animation-delay: .3s;
	-webkit-animation-delay: .3s;
	-moz-animation-delay: .3s;
	-ms-animation-delay: .3s;
	-o-animation-delay: .3s;
}
.wrapper span{
    position: absolute;
    top:75px;
    font-family: 'Tahoma';
    font-size: 14px;
    letter-spacing: 4px;
    color: #CD3E0E;
    left: 15%;
}