.popup-container
{
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 30px #333;
    min-width: 40%;
    min-height: 40%;
    max-width: 95%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.popup-container .popup-close
{
    border-bottom: solid 1px #d3d3d3;
    padding: 10px;
    text-align: right;
    max-height: 20px;
    font-weight: bold;
}

.popup-container .popup-close a
{
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    font-size: 18px;
}

.popup-container > div
{
    flex-grow: 1;
}

.popup-container > div.popup-message
{
    align-items: flex-end;
    padding: 15px;
}

.popup-container .popup-ok
{
    max-height: 30px;
    text-align: center;
    padding: 10px;
}

.popup-container .popup-ok button
{
    text-transform: uppercase;
    display: inline-block;
    padding: 5px 20px 5px 20px;
    background-color: #d3d3d3;
    border: solid 1px #000;
    color: #000;
    cursor: pointer;
}

.popup-container .popup-ok button:hover
{
    background-color: #918a8a;
    color: #fff;
}

@media all and (max-width: 800px)
{
    .popup-container
    {
        min-width: 90%;
        min-height: 60%;
    }
}
