@charset "UTF-8";

.pup {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 9999;
    user-select: none;
}

.pup img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    vertical-align: top;
    pointer-events: none;
}

.pup .pup-screen {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: #000000a3;
}

.pup .pup-flex {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
}

.pup .pup-border {
    margin: auto;
    z-index: 9999;
    position: relative;
}

.pup .pup-content-border {
    background: #f9f9f9;
    color: #444;
    text-shadow: none;
    border-radius: 4px;
    margin: 5px;
    padding: 15px;
    max-height: 85vh;
}

.pup .pup-close-icon {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 8040;
}

.pup img {
    max-height: 85vh;
}

.pup .pup-title {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-bottom: -30px;
    z-index: 8050;
    text-align: center;
    display: flex;
    justify-content: center;
}

.pup .pup-title-border {
    font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-right: -100%;
    padding: 2px 20px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    color: #FFF;
    font-weight: bold;
    line-height: 24px;
    white-space: nowrap;
}


@media screen and (max-width: 670px) {
    .pup .pup-content-border {
        margin: 25px;
    }

    .pup .pup-close-icon {
        top: 7px;
        right: 7px;
    }

    .pup .pup-title {
        margin-bottom: -10px;
    }
}