﻿
.loading {
    position: fixed;
    background: #cccccc;
    width: 100vw;
    height: 100vh;
    z-index: 999999999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    animation: fadeOut 2s ease 2s forwards;
}

.loading-img, .loading-img .img {
    display: block;
    width: 100px;
    height: 260px;
    position: relative;
}

@keyframes shine {
    from {
        background: red;
    }

    to {
        background: yellow;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
        display: none;
    }
}
