

.popup{
    display: none;
    position: fixed;
    z-index:99999999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.7);
}


.popup-content{

    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    max-width: 768px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    color: black;
    z-index:99999999999999;
}


.popup-head{
	
          font-size: 11px;
    padding: 1px 16px;
    color: white;
    background: #009ECA;
}


.popup-main{
	padding: 5px 16px;
}


.popup-foot{
	font-size: 12px;
    padding: .5px 16px;
    color: #ffffff;
    background: #0080A3;
}


@-webkit-keyframes animatetop{
    from{
		top:-300px; opacity:0
	}
    to{
		top:0; opacity:1
	}
}


@keyframes animatetop{
    from{
		top:-300px; opacity:0
	}
    to{
		top:0; opacity:1
	}
}


.keluar{
	margin-top: 7px;
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}


.keluar:hover, .keluar:focus{
    color: #999999;
    text-decoration: none;
    cursor: pointer;
}