/* The Modal (background) */
.pop {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2000; /* Sit on top */
    left: 0;
    top: 0;
    padding-top: 50px;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
    -webkit-animation-duration: 0.7s;
	   -moz-animation-duration: 0.7s;
	     -o-animation-duration: 0.7s;
	        animation-duration: 0.7s;
}

/* Modal Content/Box */
.content-pop li:before{
    content: "•";
    padding-right: 8px;
    color: #a5478e;
}
.content-pop ul{
    text-align: left;
    list-style: none
    
}
.content-pop h1{
    font-size: 1.4em;
}
.content-pop{
    font-family: "lato";
    line-height: 2;
    font-weight: 300;
    color: #415767;
    text-align: center;
    padding: 10px;
    border: 1px solid #a5478e;
}
.content-pop p{
    text-align: left;
    font-size: 1em;
    line-height: 2;
}
.pop-content {
      background-color: rgba(255,255,255,0.9); /* Black w/ opacity */
    padding: 20px;
    width: 90%;
    margin: auto;
    /* Could be more or less, depending on screen size */
}

/* The Close Button */
.pop-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    bottom: 8px;
    position: relative;
    left: -4px;
}

.pop-close:hover,
.pop-close:focus {
    color: #a5478e;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (min-width:574px) {
    .content-pop ul{
        line-height: 2.2
    }
    .content-pop p{
        line-height: 2.2; 
    }
}
@media only screen and (min-width:768px) {
    .pop-content {
        width: 80%;
    }
}