


#jspc-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-container {
    perspective: 1000px;
}

.cube {
    width: 200px;

    height: 200px;

    position: relative;
    transform-style: preserve-3d;
    animation: rotate 20s linear infinite;
}

.face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 140, 0.934);
    border: 2px solid #f2f2f3;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: visible;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.face img {
    width: 180px;

    height: 180px;

    object-fit: contain;
    border-radius: 10px;
}

.front {
    transform: rotateY(0deg) translateZ(100px);

}

.right {
    transform: rotateY(90deg) translateZ(100px);
}

.back {
    transform: rotateY(180deg) translateZ(100px);

}

.left {
    transform: rotateY(-90deg) translateZ(100px);

}

.top {
    transform: rotateX(90deg) translateZ(100px);

}

.bottom {
    transform: rotateX(-90deg) translateZ(100px);

}

#loading-text {
    margin-top: 30px;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 22px;
    animation: fadeInOut 1.5s ease-in-out infinite alternate;
}

@keyframes rotate {
    0% {
        transform: rotateY(0);
    }

    100% {
        transform: rotateY(360deg);
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}
