.vnggames-loading-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 150px
}

.vnggames-loading-container .vnggames-loading {
    position: relative;
    border-radius: 50%;
    background: conic-gradient(from 180deg at 50% 50%, #fee1cd 180deg, #ed7c2b 300deg, #ed7c2b 1turn);
    animation: loadingKF .6s linear infinite
}

.vnggames-loading-container .vnggames-loading:before {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: #fff;
    top: 3px;
    bottom: 3px;
    left: 3px;
    right: 3px
}

.vnggames-loading-container .vnggames-logo {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center
}

@keyframes loadingKF {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}