.popup-container {
    text-emphasis-position: center;
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    z-index: 1000;
    background: #000000b0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.popup-body {
    width: 350px;
    height: 200px;
    margin: 2% auto;
    background: #000000b0;
    border-radius: 0;
    color: #fff
}

@media(max-width: 512px) {
    .popup-body {
        width:310px;
        margin: 10% auto
    }
}

.popup-img {
    width: 450px;
    height: 555px;
    margin: 8% auto
}

.popup-img-close {
    cursor: pointer;
    width: 36px;
    height: 36px;
    background: #fff;
    color: #000;
    float: right;
    padding: 5px;
    border-radius: 100px;
    position: absolute;
    margin-left: -7px;
    margin-top: -20px
}

@media(min-width: 993px) {
    .popup-img-close {
        margin-left:42px;
        margin-top: -12px
    }
}

.popup-header {
    height: 48px;
    width: 100%;
    background: #3f93b1;
    float: left
}

.popup-header h6 {
    margin: 13px
}

.popup-content {
    width: 100%;
    height: auto;
    padding: 10px 12px 10px 20px;
    float: left;
    font-size: 14px;
    background-color: #000
}

.col2 {
    width: 50%
}

.left {
    text-align: left
}

.right {
    text-align: right
}

.mrtop10 {
    margin-top: 10px
}

.hr {
    width: 100%;
    height: 2px;
    background: #333;
    float: left
}

.popup-label {
    width: 100%;
    float: left;
    background: #333;
    padding: 10px 15px;
    font-size: 12px
}

.popup-close {
    cursor: pointer;
    width: 36px;
    height: 36px;
    background: #fff;
    color: #000;
    float: right;
    padding: 5px;
    border-radius: 100px;
    position: absolute;
    margin-top: -10px;
    margin-left: -9px
}

.bg-blue-button {
    background: #3f93b1
}

.bg-black-button {
    background: #535353
}

.popip-button {
    cursor: pointer;
    width: 50%;
    float: left;
    height: 50px
}

.popip-button:hover {
    background: #3f93b1
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* 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 */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    }

    /* Modal Content */
    .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    }

    /* The Close Button */
    .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    }

    .close:hover,
    .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    }