﻿.arsasPopup {
    width: 400px;
    max-width:95%;
    background: #fff;
    position: absolute;
    border-radius: 6px;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    text-align: center;
    padding: 0;
    color: #333;
    z-index:99999;
    box-shadow: 0 5px 5px rgb(0,0,0, 0.2);
    visibility: hidden;
    transition: transform 1s, top 1s;
}

.arsasPopup .arsasContent {
    padding: 30px;
}

    .arsasPopup button {
        width: 70%;
        /*margin-top: 30px;*/
        padding: 10px 0;
        background: #058cf1;
        color: #fff;
        border: 0;
        outline: none;
        border-radius: 4px;
        cursor: pointer;
        box-shadow: 0 5px 5px rgb(0,0,0, 0.2);
    }

.open-arsas {
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
}

#arsas-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: black;
    opacity: 0.5;
    z-index: 99998;
}