#app-popup-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    overflow-y: scroll;
    background-color: rgba(0, 0, 0, .5);
}

.app-popup-header {
    position: absolute;
    top: 0;
    right: 0;
    padding: .5em 1em;
    text-align: right;
}

.app-popup-footer {
    text-align: right;
    padding: 1em 2em;
}

.app-popup-wrapper {
    position: relative;
    width: 45%;
    margin: 2rem auto;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}

.app-popup-close-x {
    cursor: pointer;
    font-size: 2em;
    color: #CCCCCC;
}

.app-popup-close-x:hover {
    font-weight: bold;
    color: #AAAAAA;
}

.app-popup-wrapper button {
    padding: .5em 1em;
    color: #00377B;
    border: 1px solid #00377B;
    border-radius: 5px;
}

@media (max-width: 700px) {

    .app-popup-wrapper {
        width: 100%;
        margin: 0;
        border: none;
        border-radius: 0;
    }

    .app-popup-header {
        padding: 0 1em;
    }
}
