.loading {
    width: 100%;
    height: 100%;
    background-color: #fdfdfd;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    opacity: 1;
    transition: .5s all;
}

.loading-content {
    width: 100%;
    height: 100%;
    background-color: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-content .logo {
    width: 190px;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s all;
    opacity: 1;
}

.loading-content .logo img {
    height: auto;
}

.loading-content .process {
    width: 100%;
    height: 3px;
    background-color: #eee;
    border-radius: 2px;
    margin-top: 1em;
    position: relative;
}

.loading-content .process span {
    background-color: #e1b132;
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    transition: .5s all;
    width: 0%;
}