.load__icon {
    background-size: contain;
    width: 75px;
    height: 75px;
    animation: linear load 0.1s, fadeIn 0.5s ease-out forwards, shine 1s ease-out infinite;
    animation-fill-mode: forwards;
}

.load__icon-wrap {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.load {
    height: calc(100vh - 20px);
    width: 100%;
    display: flex;
    align-items: center;
}

.shine {
    position: relative;
    overflow: hidden;
}

.shine::before {
    background: linear-gradient(
            to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(255, 255, 255, 0) 100%
    );
    content: "";
    display: block;
    height: 100%;
    left: -75%;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
    animation: shine 2s ease-out infinite;
}

@keyframes shine {
    from {
        left: -75%;
    }
    to {
        left: 125%;
    }
}

@keyframes load {
    from {
        transform: scale(1.5);
    }
    to {
        transform: scale(2.5);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
