.load_overlay {
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-color:#cca541;
    background-image:url('bg_loader.png');
    background-size:cover;
    background-repeat:no-repeat;
    background-attachment:fixed;
    background-position:center center;
    transition:all 1s;
    z-index:999;
}

.load_overlay .logo img {
    width:100px;
    display:block;
    opacity:0;
}

.load_overlay .logo img:first-of-type {
    margin-bottom:-20px;
}

.loadin .logo img {
    opacity:1;
}

.loadin .logo img:first-of-type {
    margin-bottom:5px;
}

.loadout {
    opacity:0;
    pointer-events:none;
}

.loadout .logo img:first-of-type {
    margin-bottom:25px;
}

.loader_anim {
    animation: logofloat 2s infinite;
}

@keyframes logofloat {
  0%   { margin-top: 0px; }
  50%  { margin-top: 15px; }
  100% { margin-top: 0px; }
}