.np_core_ui_loadbar {
    width: 100%;
    height: 100%;
    background: #fff;
    background-size: 100% 10px;
    background-repeat: repeat;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10000;
    color: #fff;
}

@keyframes logoani {
    0%   {  opacity: 1;}
    50%  {  opacity: 0.7;}
    100%  {  opacity: 1;}
}


.np_core_ui_loadbar .loadobj_logo {
    position: absolute;
    width: 250px;
    height: 50px;
    left: 50%;
    top: 45%;
    margin-top: -25px;
    transform: translateX(-50%);
    background-image: url(../img/core/mclogo.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 3px;
    opacity: 0.9;
  animation-name: logoani;
  animation-duration: 3s;
  animation-iteration-count:50;
}

.np_core_ui_loadbar .loadobj_gif {
    position: absolute;
    width: 60px;
    height: 60px;
    left: 50%;
    top: 50%;
    margin-left: -30px;
    margin-top: -15px;
    background-image: url(../img/core/loading_gray.gif);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

@media only screen and (max-width: 750px) {
    .np_core_ui_loadbar .loadobj_logo {
        position: absolute;
        width: 250px;
        height: 50px;
        left: 50%;
        top: 50%;
        margin-top: -90px;
        transform: translateX(-50%);
    }
    .np_core_ui_loadbar .loadobj_gif {
        width: 130px;
        height: 130px;
        left: 50%;
        top: 50%;
        margin-left: -65px;
        margin-top: -60px;
    }
}
