﻿.reg-popup {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 100;
    display: none;
    overflow: auto;
    top: 0;
    left: 0;
}


    .reg-popup.selected {
        display: inline-grid;
/*        transform: scale(1.5);
        animation-name: pop_up;*/
        animation-duration: 0.5s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-in-out;
    }


    .reg-popup .close-button {
        position: relative;
        top: -20px;
        right: 40px;
        overflow: hidden;
        padding: 7px 5px 0;
        width: 36px;
        height: 36px;
        border-radius: 100%;
        float: right;
        background-color: #00000000;
        cursor: pointer;
    }

    .reg-popup .reg-popup-container {
    width: 100%;
        max-width: 800px;
        margin-left: auto;
        text-align: center;
        height: auto;
        padding:0 10px;
        margin-right: auto;
        align-self: center;
        z-index: 5;
        
    }

    .reg-popup .close-button:hover {
        background-color: #0000002b;
    }