    .arjs-loader {
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .arjs-loader div {
        text-align: center;
        font-size: 1.25em;
        color: white;
    }
.ar-popup{
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);

    width:350px;
    max-width:90%;

    background:rgba(15,23,42,0.95);
    color:white;

    border:2px solid #22d3ee;
    border-radius:20px;

    padding:15px;

    z-index:9999;

    box-shadow:
        0 0 15px #22d3ee,
        0 0 30px rgba(34,211,238,.5);

    opacity:0;
    visibility:hidden;

    transition:.4s;
}

.ar-popup.show{
    opacity:1;
    visibility:visible;
}

#popupTitle{
    color:#22d3ee;
    font-size:18px;
    font-weight:bold;
    margin-bottom:8px;
}
