/* ----------  Pop Up  ------------ */


#popUpBase{
    display: none;
}

#popUp{
    position: absolute;
    background: rgba(34,34,34,0.85);
    border: 1px solid rgba(108,201,59,1);
    z-index: 100;
    padding: 1.8%;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.5);
}

.popUpText{
    width: 100%;
    height: 100%;
}

.popUpText p{
    text-align: left;
    line-height: 1.2em;
    font-family: 'bpdotsdiamondlight';
    color: #6cc93b;
    font-size: 1em;
}

.popUpText a{
    text-align: left;
    line-height: 1.2em;
    font-family: 'bpdotsdiamondlight';
    color: #6cc93b;
    font-size: 1em;
    text-decoration: none;
}

.popUpText a:hover{
  color: white;
}

#closePopUp{
    font-family: 'bpdotsdiamondlight';
    color: white;
    font-size: 1em;
    height: 20px;
    width: 20px;
    line-height: 17px;
    text-align: center;
    position: absolute;
    border: 1px solid white;
    top: -1px;
    right: -1px;
    cursor: pointer;
}

#closePopUp:hover{
    color: #6cc93b;
    border-color: rgba(108,201,59,1);
}
