#pladge-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.modal-content {
    position: relative;
    text-align: center;
}

#close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

#pladge-thankyou-modal {
    position: fixed;
    z-index: 99999;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0.5);
	transition: all 0.3s ease;
}

#pladge-thankyou-modal.open {
	transform: scale(1);
}

#close-thankyou-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

#pladge-thankyou-modal h2 {
    margin-bottom: 20px;
}

#pladge-thankyou-modal p {
    margin-bottom: 20px;
}

.thankyou-content img {
    width: 100%;
    max-height: calc(100vh - 100px);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}
@media (max-width: 767px) {
	.thankyou-content img {
    height: auto;
}
.pladge-imp #close-thankyou-modal {
    top: -10px;
    right: -8px;
    padding: 0px 5px;
}
}
