/*//model css after */


.post-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.post-modal.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  background-image: url('https://godni.world/wp-content/uploads/2024/12/Final-Silver-Background-min.webp');
  background-size: cover;
  background-position: center;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  /*border-radius: 10px;*/
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transform: scale(0.95);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: 1;
}
.post-modal.active .modal-content {
  transform: scale(1);
  opacity: 1;
}

.close-modal {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
}
.m-c-overla-for-content {
	padding: 14px;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,0.55) 3%,rgba(255,255,255,0.55) 98%,rgba(255,255,255,0) 100%);
	color: #505d6d;
}
.modal-body p {
	text-align: left;
}
@media only screen and (max-width: 600px) {
.m-c-overla-for-content h2 {
	font-size: 24px;
	font-weight: 600;
}
.m-c-overla-for-content p {
	font-size: 16px;
}
}
/*//model css after */