﻿.jpopup {
    position: fixed; /* Stay in place */
    z-index: 10000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
}

/* Modal Container */
.jpopup-container {
    background-color: #fefefe;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #888;
    width: 33%;
    height: 25%;
}

    /* Set a style for button inside */
    .jpopup-container .btn {
        background-color: #4CAF50;
        color: white;
        padding: 8px 12px 8px 12px;
        border: none;
        cursor: pointer;
        opacity: 0.8;
    }

    /* Add a background color to the close button */
    .jpopup-container .btn-close {
        background-color: #ccc;
        color: #2C3E50;
        position: relative;
        margin: 0 auto;
    }

    /* Add some hover effects to buttons */
    .jpopup-container .btn-close:hover {
        background-color: #2C3E50;
        opacity: 1;
        color: white;
    }

.jpopup-content {
    height: 80%;
}

/******************************************************************************
.jdialog-body {
    max-width: 480px;
}

@media screen and (max-width: 420px) {
    .jdialog-body {
        max-width: 240px;
        font-size: 14px;
    }
    .jdialog-content {
        font-size: 14px;
    }
    .jdialog-header-left {
        margin-left: -8px;
    }
    .jdialog-header-right {
        margin-left: -12px;
    }
}

*/