/* 
    Document   : p_pop_style
    Created on : 30-Mar-2016, 15:53:29
    Author     : Abdul Samad
    Description:
        Purpose of the stylesheet follows.
*/



/* Outer */
.popup {
    width:100%;
    height:100%;
    display:none;
    position:fixed;
    top:0px;
    left:0px;
    background:rgba(0,0,0,0.75);
    z-index: 1;
}

/* Inner */
.popup-inner {
    width:50%;
    /* width:90%; */
    padding:40px;
    position:relative;
    top:50%;
    left:50%;
    -webkit-transform:translate(-50%, -50%);
    transform:translate(-50%, -50%);
    box-shadow:0px 2px 6px rgba(0,0,0,1);
    border-radius:3px;
    background:#fff;
    text-align: justify;
    font-size: 13px;
    line-height: 1.4;
}

/* Close Button */
.popup-close {
    width:30px;
    height:30px;
    padding-top:10px;
    display:inline-block;
    position:absolute;
    top:0px;
    right:0px;
    transition:ease 0.25s all;
    -webkit-transform:translate(50%, -50%);
    transform:translate(50%, -50%);
    border-radius:1000px;
    background:rgba(0,0,0,0.8);
    /*    font-family:Arial, Sans-Serif;
        font-size:20px;*/
    text-align:center;
    line-height:100%;
    color:#fff;
}

.popup-close:hover {
    -webkit-transform:translate(50%, -50%) rotate(180deg);
    transform:translate(50%, -50%) rotate(180deg);
    background:rgba(0,0,0,1);
    text-decoration:underline;
}
@media screen and (min-width:481px) and (max-width:804px){
	.popup-inner{
		font-size: 9px;
	}
	.pop_content1 {
		font-size: 9px;
        /* top:24%; */
    }
}
@media screen and (min-width:320px) and (max-width:480px){
   
    .popup {
        width:100%;
        height:100%;
        display:none;
        /* position:absolute; */
        top:0px;
        left:0px;
        background:rgba(0,0,0,0.75);
        z-index: 2;
    }
	.popup-inner{
		font-size: 9px;
	}
    .pop_content1 {
		font-size: 9px;
        /* top:24%; */
    }
}