#overlay {
    position:fixed;
    left:0;
    top:0;
    width:100vw;
    height:100vh;
    display:none;
    background-color:#000;
    opacity:0.3;
}

.modal-popup {
    display: none;
    position: fixed;
    top: 40%;
    left: 50%;
    width: 30%;
    transform:translate(-50%, -50%);
    border: 3px solid #f1f1f1;
    z-index: 99;
    min-width: 300px;
    background-color: #fff;
    color: #000;
    padding: 20px 20px 40px 20px;
    border-radius: 8px;
    border: 1.5px solid;
    border-color: #7e7e7e;
    text-align: center;
    font-size: 20px;
}

.close-button {
    all: unset;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    background-image: url('/static/img/close.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    cursor: pointer;
}

#modalPopupTitle {
    margin-top: 10px;
    font-weight: bold;
}

#modalPopupContent a {
    color: #9D081B;
}
