
.page_loader {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    background-color: #0000009e;
    top: 0;
    left: 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.page_loader .loader-wrap{
    border: 5px solid #a88e44;
    border-radius: 50%;
    padding: 20px;
    overflow: hidden;
	animation-duration: 1.2s;
	animation-iteration-count: infinite;
	animation-name: glow;
	box-shadow: 0px -1px 25px #958e85;
	width: 125px;
	height: 125px;
	background-image: url(../../images/logo.png);
	background-position: center center;
	background-size: 75%;
	background-repeat: no-repeat;
}
.page_loader img{
	width: 75px;
	height: auto;
	align-self: flex-end;    
}
@keyframes glow {
	0%   { Opacity: 0.8; }
	50% { Opacity: 0.5; }
	100% { Opacity: 0.8; }
}