@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');

#modal {
    position:fixed;
    font-family: 'Poppins', sans-serif;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    height: 100%;
    width: 100%;
	
}

.modalconent {
    width: 75%;
    max-width: : 1200px;
    height: 285px;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    
    padding: 10px;
	border-radius: 5px;
    box-shadow: 0 0 5px #CCC;
    overflow-y: auto;
    
}

.container-text{
    width: 100%;*/
    padding: 30px;
    overflow-y: auto;
}

.container-text h1{
    font-size: 20px;
	color:#000080;
	
}

.container-text p{
    margin-top: 10px;
    font-size: 14px;
	color:#000080;
	text-align:center
	
}

.btn-exit-popup{
    margin:auto;
    color:floralwhite;
    display: block;
    background: green;
    padding: 10px 40px;
    border-radius: 30px;
}
