/* The Modal (background) */
.videomodal {
  display: none; 
  position: fixed; 
  z-index: 10000; 
  left: 0;
  top: 0;
  width: 100% !important; 
  height: 100% !important; 
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgb(0 0 0 / 85%)!important;
}

/* Modal Content/Box */
.videomodal-content {
  width: 80%;
  background-color: #fefefe;
  padding: 10px;
  border: 1px solid #888;
  border-radius: 10px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* The Close Button */
.close {
	background: var(--wpr-bg-2d80a408-070b-4f94-87b9-43e7d8b6bec2);
	background-repeat: no-repeat;
	background-size: 30px;
	  position: relative;
	  float: right;
	  font-weight: bold;
	  margin-bottom: -35px;
	  z-index: 100;
	  border-radius: 50px;
}

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

/* Tablet and larger screens */
@media only screen and (min-width: 1025px) {
  .videomodal-content {
    width: 55%;
    margin:auto; /* Maintain spacing */
  }
}