/* The Modal (background) */
.vrspopupnotifications-modal {
    position: fixed;
    /* text-align: center; */
    z-index: 99999;
    padding: 100px;
    left: 0;
    top: 0;
    right: 0;
    /* width: 100vw; */
    /* height: 100vh; */
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    place-content: center;
    place-items: center;
    bottom: 0;
    margin: 0;
}

/* Modal Content */
.vrspopupnotifications-modal-content {
    display: inline-block;
    background-color: #FEFEFE;
    color: #021f46;
    /* margin: auto; */
    padding: 30px 40px 40px;
    border: 1px solid #888;
    text-align: left;
    max-height: 100%;
    max-width: 100%;
    overflow: auto;
    scroll-behavior: auto;
    overscroll-behavior: contain;
    overflow-wrap: break-word;
}

/* Image inside Modal Content */
.vrspopupnotifications-modal-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    position: relative;
}

.vrspopupnotifications-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-left: 40px;
}

.vrspopupnotifications-modal-close:hover,
.vrspopupnotifications-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .vrspopupnotifications-modal-content {
        min-width: 110%;
        padding: 15px 20px 20px;
    }
}

@media screen and (max-width: 600px) {
    .vrspopupnotifications-modal-content {
        min-width: 120%;
    }
}

@media screen and (max-width: 420px) {
    .vrspopupnotifications-modal-content {
        min-width: 140%;
    }
}

@media screen and (max-width: 360px) {
    .vrspopupnotifications-modal-content {
        min-width: 160%;
    }
}

.vrspopupnotifications-modal-content h1 {
  font-size: 3.5rem;
  line-height: 1.28;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: .5rem;
}

.vrspopupnotifications-modal-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.vrspopupnotifications-modal-content a {
  text-decoration: underline;
}

.vrspopupnotifications-modal-content a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .vrspopupnotifications-modal-content h1 {
    font-size: 2rem;
  }

  .vrspopupnotifications-modal-content p {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 420px) {
  .vrspopupnotifications-modal-content h1 {
    font-size: 1rem;
  }

  .vrspopupnotifications-modal-content p {
    font-size: 1rem;
  }
}
