.xmodal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 9999;
}

.xmodal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(  "/css-assets/colorbackground-blue-gradient-4.jpg" )  !important;
    background-size: cover !important;
    height: auto !important;
    padding: 2.5rem;
    width: 28rem;
    border-radius: 0.5rem;
}

.xclose-button {
    font-size: 20px;
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    background-color: transparent;
    color: yellow;
}

.xclose-button:hover {
    background-color: darkgray;
}

.xshow-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.xmodal .modalHeadText {
    font-size: 20px;
    color: yellow;
    text-align: center;
    font-weight: bold;
}

.modalBodyText {
    color: yellow;
    text-align: center;
    font-size: 16px;
}

.xmodal p {
    margin-bottom: 0px;
}