﻿.EmptyState {
    position: absolute;
    width: 100%;
    height: 66vw;
    text-align: center;
    left: 0;
}

.EmptyState img {
    position: absolute;
    width: 50%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 25%;
    margin-bottom: 3vw;
}

.EmptyState::after {
    position: absolute;
    content: "";
    width: 6.6vw;
    height: 6.6vw;
    background: url(/Areas/Mobile/Templates/Default/Images/EmptyStateP2.png);
    background-size: 100% 100%;
    bottom: 47vw;
    left: 30%;
    animation: 3s P2 linear infinite;
}

.EmptyState::before {
    position: absolute;
    content: "";
    width: 8vw;
    height: 4vw;
    background: url(/Areas/Mobile/Templates/Default/Images/EmptyStateP1.png);
    background-size: 100% 100%;
    bottom: 47vw;
    right: 43vw;
    animation: 3s P1 linear infinite;
}

.EmptyState span {
    position: absolute;
    color: #5590f0;
    font-size: 4vw;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    letter-spacing: 1px;
}

@keyframes P1 {
    0% {
        right: 43vw;
    }

    50% {
        right: 38vw;
    }

    100% {
        right: 43vw;
    }
}

@keyframes P2 {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg);
    }
}