/* mobile style */
.donation-wrap{
	position: fixed;
	display:none;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index:999;
	background-color: #ECB91D;
	border-top: 1px solid #473F3A;
}
.donation-container{
	padding:30px;
	padding-bottom: 70px;
	    max-height: 400px;
    overflow-y: scroll;
}
.donation-body{
	display:flex;
	flex-direction:column;
	align-items:center;
	padding-top: 20px;
}
.donation-header img{
	display:block;
	margin-left:auto;
}
.donation-para{
	text-align:center;
	font-weight: 500;
	font-size: 13.3px;
	padding-bottom:25px;
	color: #333;
	max-width: 276px;
}
.donation-page-link {
	padding: 7px 35px;
	display: block;
	background-color: #473F3A;
	margin: 20px 0px;
	border: none;
	font-size: 14px;
	font-weight: 800 !important;
	color: #fff !important;
	letter-spacing: 2px;
}
.donation-heading{
	color: #473F3A;
	font-weight:bold;
	font-size: 16.8px;
	font-weight: 800;
	margin-bottom: 12px;
	text-align:center;
	max-width: 263px;
}
.donation-remind{
	font-weight: 500;
	font-size: 14.28px;
	padding: 0 5px;
	position:relative;
	color: #333;
	cursor:pointer;
}
.donation-remind::after{
	position:absolute;
	content:'';
	border-bottom:1px solid  #473F3A;
	width: 100%;
	bottom: 0;
	left: 0;
}
.donation-header img{
	width:auto;
	height: 25px;
	cursor:pointer;
	margin-bottom: 20px;
}
/* donation wait loader */
body.donation-wait{
	position:relative;
	overflow:hidden;
}
body.donation-wait::after {
	position: absolute;
	content: '';
	width: 100%;
	left: 0;
	height: 100%;
	background: #ffffff99;
	top: 0;
	z-index: 9999;
}
.donation-wait-loader {
	width: 48px;
	height: 48px;
	border: 5px solid #000;
	border-bottom-color: transparent;
	border-radius: 50%;
	animation: rotation 1s linear infinite;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.donation-wait-div{
	position: fixed;
	text-align: center;
	z-index: 99999;
	display: flex;
	flex-direction: column;
	align-items: center;
	top: 50%;
	left: 50%;
	gap: 20px;
	transform: translate(-50%, -50%);
	font-weight: 600;
}
.donation-container::-webkit-scrollbar {
    width: 4px;
}

.donation-container::-webkit-scrollbar-thumb {
   background-color: rgba(0, 0, 0, 0.4);
    border-radius: 3px; 
}

.donation-container::-webkit-scrollbar-track {
    background: transparent;
}

/* For Firefox */
.donation-container {
    scrollbar-width: thin; /* Thin scrollbar */
   scrollbar-color: rgba(0, 0, 0, 0.4) transparent;/* Thumb color and track color */
}
/* donation wait loader end */


@media screen and (min-width: 768px) {
		.donation-para{
		max-width: unset;
	}
	.donation-heading{
		max-width: unset;
	}
}


@media screen and (min-width: 992px){
	.donation-container{
		padding:30px 50px;
		max-height: 370px;
	}
	.donation-page-link {
		padding: 10px 35px;
	}
	.donation-body {
		max-width: 836px;
		margin: auto;
	}
	.donation-heading {
		max-width: unset;
		font-size: 19.2px;
	}
	.donation-para{
		font-size: 17.28px;
		max-width: unset;
	}
	.donation-header img{
		margin-bottom:unset;
		height:40px;
	}
	
}
@media screen and (min-width: 1500px) {
    .donation-container {
        max-height: unset;
        overflow-y: unset;
    }
}
