.giftaid-modal {
  position: fixed;
  background: #fff;
  padding: 20px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
  border-radius: 5px;
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 500px;
}
@media screen and (max-width: 767px) {
	.giftaid-modal {
		width: 90%;
		top: 20px;
		transform: translate(-50%,-0%);
	}
	.giftaid-modal .giftaid-contents {
		height: 50vh;
		overflow-y: auto;
	}
}
.giftaid-modal .giftaid-header {
  padding: 20px;
  text-align: center;
}
.giftaid-header img {
	height: 50px;
}
.giftaid-footer {
	text-align: center;
}

.giftaid-footer button {
	padding: 1px 10px;
	font-weight: normal;
	border-radius: 5px;
	margin: 10px;
}

@media screen and (max-width: 767px) {
	.giftaid-footer button {
		width: 100%;
		margin: 0px;
		margin-bottom: 10px;
	}
}

.giftaid-wall {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	z-index: 50;
}