body {
    font-family:Arial, Helvetica, sans-serif;
}

p {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
    color: #484848;
}

/* Popup Open button */	
.open-button{
    color:#FFF;
    background:#0066CC;
    padding:10px;
    text-decoration:none;
    border:1px solid #0157ad;
    border-radius:3px;
}

.open-button:hover{
    background:#01478e;
}

.popup {
    position:fixed;
    top:0px;
    left:0px;
    /*background:rgba(0,0,0,0.75);*/
    width:100%;
    height:100%;
    display:none;

    padding: 18px;
    box-shadow: 1px 1px 3px 0px rgba(2,2,2,0.23);
    background-color: rgba(249,249,249,1.00);
}

/* Popup inner div */
.popup-content {
    /*width: 700px;*/
    width: 70%;
    height: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 40px;
    /*margin-top: 100px;*/
    margin-top: 10px;
    box-shadow: 0px 2px 6px rgba(0,0,0,1);
    border-radius: 3px;
    /*background: #fff;*/
    box-shadow:'1px 1px 3px 0px rgba( 2, 2, 2, 0.23 )';
    background-color: rgba(249,249,249,1.00);
    position: relative;
}

/* Popup close button */
.close-button {
    /*
    width: 25px;
    height: 25px;
    */
    position: absolute;
    top: -10px;
    right: -10px;
    border-radius: 20px;
    /*background: rgba(0,0,0,0.8);*/
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-decoration:none;

    background-color: rgba(28,71,146,1.00);
    padding: 10px;
    width: auto;
    height: auto;
}

.close-button:hover {
    background: rgba(0,0,0,1);
}

@media screen and (max-width: 720px) {
.popup-content {
    width:90%;
    }	
}