﻿#popup_overlay {
    position: fixed;
    z-index: 99998;
    top: 0;
    left: 0;
    background-color: grey;
    opacity: .4;
    width: 100%;
    height: 100%;
}

area-input-container {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.area-input#popup_container {
    top: auto;
    left: auto;
    top: initial;
    left: initial;
    width: 30rem;
    height: auto;
}

.area-input#popup_container > * {
    display: block;
}

/* Content */
.area-input #popup_content {
    font-size: 1.2rem;
}

.area-input #popup_panel button {
    display: inline-block;
    width: 30%;
    margin-right: 1rem;
}

.area-input #popup_panel #popup_cancel {
    display: none;
}