#popupContainer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
}
.popup > div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: ghostwhite;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid black;
}
.popup > div {
    width: 500px;
}
.popup > div > p {
    margin: 0;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    color: rgb(113, 134, 180);
}
.popup h6 {
    margin: 0;
    font-weight: normal;
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
}
.popup hr {
    margin-bottom: 10px;
}