#backgroundPopUp {
    background-color: rgba(237,237,237,0.72);
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}

#genericPopUp {
    background-color: #ededed;
    border: 3px solid #009de0;
    margin: auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 37%;
    z-index: 10001;
    padding: 5px 20px;
    border-radius: 20px;
    max-height: 100%;
    max-height: -moz-available;
    max-height: -webkit-fill-available;
    max-height: fill-available;
    max-width: 100%;
    max-width: -moz-available;
    max-width: -webkit-fill-available;
    max-width: fill-available;
    overflow-x: auto;
}

#backgroundPopUp.displayPopUp {
    display: block;
}

.close-popup {
    position: absolute;
    right: 9px;
    font-size: x-large;
    color: #e3001b;
    cursor: pointer;
}

#genericPopUp h2 {
    color: #000;
    margin: 10px 50px;
    font-size: xx-large;
    font-family: 'Gilligans Island', 'Open Sans', sans-serif;
    letter-spacing: 5px;
    text-shadow: none;
    text-transform: uppercase;
    font-style: normal;
    position: initial;
    height: initial;
    text-align: center;
    border-bottom: #ffd966 dashed 2px;
    border-top: #ffd966 dashed 2px;
    padding: 5px;
    width: initial;
}

#genericPopUp h2::before {
    content: none;
}

#genericPopUp h3 {
    border: none;
    font-size: 20px;
}

#genericPopUp.imagePopUp {
    max-height: 75%;
    max-width: 75%;
    display: flex;
    justify-content: center;
    padding: 0;
    width: auto;
}

.imagePopUp img {
    max-width: 100%;
    max-height: 100%;
    align-self: center;
}

#genericPopUp p {
	margin: 1px 0;
}



/* RESPONSIVE */
@media (max-width: 1120px) {
    #genericPopUp {
        width: 55%;
    }
}

@media (max-width: 530px) {
    #genericPopUp {
        width: 80%;
    }
}

@media (max-width: 375px) {
    #genericPopUp {
        width: 85%;
    }

    #genericPopUp h2 {
        font-size: 20px;
    }

    #genericPopUp h3 {
        font-size: 17px;
    }
}
