@import url("animate.css");

.tm-page-loader {  
    position: fixed;  
    background-color: #000000;
    /*background: linear-gradient(#ffffff 50%, #000000 50%);*/

    z-index: 1099;  

    animation: fadeout .5s linear 2.5s forwards;
    -moz-animation: fadeout .5s linear 2.5s forwards; /* Firefox */
    -webkit-animation: fadeout .5s linear 2.5s forwards; /* Safari and Chrome */
    -o-animation: fadeout .5s linear 2.5s forwards; /* Opera */
}
@keyframes fadeout {
    to {
        opacity:0;
        display: none;
        z-index: -1;
    }
}
@-moz-keyframes fadeout { /* Firefox */
    to {
        opacity:0;
        display: none;
        z-index: -1;
    }
}
@-webkit-keyframes fadeout { /* Safari and Chrome */
    to {
        opacity:0;
        display: none;
        z-index: -1;
    }
}
@-o-keyframes fadeout { /* Opera */
    to {
        opacity: 0;
        display: none;
        z-index: -1;
    }
}  

.tm-page-loader-content {  
    color: #000000 !important;  
    text-align: center;  
}

a.wk-button {
	padding: 0px !important; 
	border: 0px solid !important; 
	background: none !important;

}
