.pop-up-notification {
    display: none;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #212529;
    background-color: rgba(0, 0, 0, 0.5);
}

.pop-up-notification-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 1.5rem;
    max-width: 674px;
    border-radius: 1.25rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.pop-up-notification-content .pop-up-notification-body  {
    margin-top: 0.5rem;
    margin-bottom: 1rem;

    p {
        font-family: Arial, sans-serif;
        margin-bottom: 0.5rem;

        strong {
            font-weight: bold !important;
        }
    }
}

.pop-up-notification-close-button {
    color: #4A4C56;
    float: right;
    font-size: 1.25rem;
    cursor: pointer;
}