.loading {
    width: 100%;
    height: 100%;
    background-color: #fdfdfd;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    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: 100px;
}