 @charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
body {
	font-family: "Noto Sans", sans-serif;
}
.container {
	max-width: 1280px;
}
.header-section .container {
	display: inline-block;
}
a {
	transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}
#navbar {
	transition: top 0.8s;
}
li {
	list-style: none;
}
::-webkit-scrollbar {
 width:9px
}
::-webkit-scrollbar-track {
 background:#fff
}
::-webkit-scrollbar-thumb:hover {
 background:#2352a2
}
::-webkit-scrollbar-thumb {
 background-image:-webkit-linear-gradient(45deg, #ee4037, #ee4037);
 background-image:-o-linear-gradient(45deg, #ee4037, #ee4037);
 background-image:linear-gradient(45deg, #ee4037, #ee4037)
}
.steps-form-bg {
	background: #fff;
	padding: 17px;
	padding-bottom: 35px;
	border-radius: 10px;
}
.background-image-section {
	background-image: url(../images/banner-img.jpg);
	padding-top: 121px;
	padding-bottom: 70px;
	background-size: cover;
	background-position: center;
}
.input-row-div1 .input-row-div-lable {
	min-width: 94px;
	font-size: 18px;
	color: #000;
}
.form-title {
	font-size: 28px;
	margin-bottom: 8px;
	color: #000;
}
/* Tabs */
.tabs {
	display: flex;
	margin-bottom: 15px;
}
.tabs button {
	flex: 1;
	padding: 9px;
	border: none;
	background: #eee;
	cursor: pointer;
	font-size: 18px;
	letter-spacing: 3px;
}
.tabs button.active {
	background: #ee4039;
	color: #fff;
}
.input-row-div1 {
	margin-top: 17px;
	margin-bottom: 20px;
	display: none;
	align-items: center;
}
/* Steps */
.steps {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	margin-bottom: 15px;
	color: #999;
}
.steps span.active {
	color: #e53935;
}
/* Amount buttons */
.amounts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
.amounts button {
	padding: 8px 5px;
	border: none;
	background: #e8e9e5;
	cursor: pointer;
	border-radius: 5px;
	font-size: 27px;
	color: #9c9b94;
}
.amounts button.active {
	background: #e53935;
	color: #fff;
}
.amounts button span {
	font-size: 17px;
	margin-right: 4px;
}
.amounts .wide {
	grid-column: span 2;
}
/* Input */
.custom-input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	outline: 0;
}
/* Donate button */
.donate-btn {
	width: 100%;
	padding: 11px;
	background: #ee4039;
	border: none;
	color: #fff;
	font-size: 17px;
	border-radius: 5px;
	cursor: pointer;
	font-weight: bold;
	overflow: hidden;
    transition: transform 0.3s ease;
	position: relative;
    display: inline-block;
}
.donate-btn:hover {
	background: #ee4039;
}
.footer {
	padding-top: 13px;
	padding-bottom: 13px;
}
.footer-copy-right {
	text-align: center;
	font-size: 16px;
	color: #000;
	letter-spacing: 1px;
}
.language-box {
	display: inline-block;
	float: right;
}
.lang-switch {
	border: 1px solid #ee4039;
	background: transparent;
	color: #ee4039;
	padding: 8px 20px;
	border-radius: 25px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}
.lang-switch:hover {
	background: #ee4039;
	color: #fff;
}
.header-logo a {
	background: #fff;
	padding: 14px;
	display: inline-block;
	border-radius: 23px;
	position: relative;
	margin-bottom: -87px;
}
/*----------------------------------------*/
/*           Form-Step 2 css
/*----------------------------------------*/
.input-row1 {
	width: 100%;
	height: 37px;
	border: solid 1px #cccccc;
	border-radius: 5px;
	outline: 0;
	padding: 4px 6px;
}
.input-lable {
	font-size: 18px;
	margin-bottom: 3px;
	color: #000;
}
.input-lable .required {
	color: #ee4039;
	margin-left: 2px;
}
.row2 {
	margin-bottom: 16px;
}
.form-list-ul li {
	margin-bottom: 7px;
	color: #000;
	font-size: 14px;
	position: relative;
	padding-left: 12px;
}
.form-list-ul li:before {
	content: "";
	width: 5px;
	height: 5px;
	background: #000;
	display: inline-block;
	position: absolute;
	left: 0px;
	top: 8px;
}
.form-list-ul li a {
	color: #ed5443;
	text-decoration: none;
}
.step-wrapper {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 22px auto;
	margin-bottom: 24px;
}
/* Line */
.step-line {
	position: absolute;
	top: 6px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #ccc;
	z-index: 0;
}
/* Step */
.step {
	text-align: center;
	position: relative;
	z-index: 1;
}
/* Circle */
.circle {
	width: 14px;
	height: 14px;
	background: #ccc;
	border-radius: 50%;
	margin: 0 auto 6px;
}
/* Active Step */
.step.active .circle {
	background: #e53935;
}
/* Text */
.step p {
	font-size: 18px;
	color: #990000;
	margin: 0;
}
/*----------------------------------------*/
/*           Custom Checkbox css
/*----------------------------------------*/
.form-group {
	display: block;
}
.form-group-row2 {
	display: flex;
	margin-top: 19px;
	margin-bottom: 27px;
}
.form-group-row2 .form-group {
	margin-right: 30px;
}
.form-group input {
	padding: 0;
	height: initial;
	width: initial;
	margin-bottom: 0;
	display: none;
	cursor: pointer;
}
.form-group label {
	position: relative;
	cursor: pointer;
}
.form-group label:before {
	content: '';
	-webkit-appearance: none;
	background-color: transparent;
	border: 1px solid #cccccc;
	padding: 10px;
	display: inline-block;
	position: relative;
	vertical-align: middle;
	cursor: pointer;
	margin-right: 5px;
}
.form-group input:checked + label:after {
	content: '';
	display: block;
	position: absolute;
	top: 4px;
	left: 9px;
	width: 6px;
	height: 14px;
	border: solid #ee4039;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.donate-btn img {
	margin-right: 5px;
}
.form-list-ul ul {
	padding: 0;
}
.form-group-row2 .form-group:last-child {
	margin-right: 0px;
}



/* Shine effect */
.donate-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.6) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
}

/* Hover animation */
.donate-btn:hover::after {
    animation: shine 0.8s ease forwards;
}
@keyframes shine {
    100% {
        left: 125%;
    }
}

.donate-btn img.on-hover {display: none;}
.donate-btn img.on-hover {display: none;}
.donate-btn:hover .on-hover {
    display: inline-block;
}
.donate-btn:hover img.no-hover {
    display: none;
}
.input-row1:focus {border: solid 1px #ff8b86;}

.title-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.title-row .input-lable {
  margin-bottom: 0;
  white-space: nowrap;
}

.title-options {
  display: flex;
  gap: 20px;
}

.title-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.title-option input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.title-option input[type="radio"]:checked {
  border-color: #ee4039;
}

.title-option input[type="radio"]:checked::after {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #ee4039;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.title-option label {
  cursor: pointer;
  font-size: 16px;
  color: #333;
  margin: 0;
}

.donation-summary {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 16px !important;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.summary-value {
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.amount-display {
  display: flex;
  align-items: center;
  gap: 5px;
}

.amount-display span:first-child {
  color: #999;
  font-weight: normal;
}

.amount-display span:nth-child(2) {
  font-size: 20px;
  color: #ee4039;
}

.edit-amount-btn {
  background: none;
  border: none;
  color: #ee4039;
  cursor: pointer;
  padding: 5px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.edit-amount-btn:hover {
  color: #c9302c;
}

.back-to-amount-btn {
  background: #eee;
  border: none;
  color: #666;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-to-amount-btn:hover {
  background: #ddd;
  color: #333;
}
















/********* Mobile Layout *********/
@media only screen and (max-width: 767px) {
.amounts button {
	padding: 8px 9px;
	font-size: 13px;
}
.header-logo-div {
	width: 40%;
}
.header-logo a {
	padding: 0;
	margin-bottom: 0;
}
.header-menu-div {
	width: 60%;
}
.background-image-section {
	padding-top: 63px;
	padding-bottom: 80px;
	/*background-image: linear-gradient(135deg, #fef5f5 0%, #ffeaea 50%, #fce8e8 100%);*/
	background-image: linear-gradient(135deg, #bcdaef 0%, #7bbce9 50%, #cfe5ed 100%);
}
.footer-copy-right {
	font-size: 14px;
	letter-spacing: 0px;
}
.form-group-row2 {
	display: inline-block;
	margin-top: 0;
	margin-bottom: 23px;
}
.form-group-row2 .form-group {
	margin-right: 0;
	margin-bottom: 10px;
}
.step p {
	font-size: 13px;
}
.input-div-1 {
	margin-bottom: 21px;
}
.row2 {
	margin-bottom: 0;
}
.input-lable {
	font-size: 18px;
	margin-bottom: 11px;
}
.form-list-ul li {
	margin-bottom: 11px;
	font-size: 14px;
	padding-left: 12px;
}
}
 .box-hidden{
	 display: none;
 }
.success-content {
	text-align: center;
	padding: 30px 20px;
}
.success-icon {
	font-size: 80px;
	color: #28a745;
	margin-bottom: 20px;
}
.canceled-icon {
	font-size: 80px;
	color: #dc3545;
	margin-bottom: 20px;
}
.success-content h2 {
	font-size: 28px;
	color: #333;
	margin-bottom: 15px;
}
.success-message {
	font-size: 16px;
	color: #666;
	margin-bottom: 10px;
	line-height: 1.6;
}
.success-receipt {
	font-size: 14px;
	color: #888;
	margin-bottom: 30px;
}
.success-actions {
	margin-top: 20px;
}
/********* Mobile Layout *********/
@media only screen and (min-width: 768px) and (max-width: 991px) {
.new-width-div {
	width: 50%;
}
.input-lable {
	font-size: 17px;
	margin-bottom: 9px;
}
.amounts button {
	font-size: 22px;
}
}

/******** Medium Layout ********/
@media only screen and (min-width: 1400px) and (max-width: 2500px) {
.amounts button {
    padding: 19px 5px;
    font-size: 37px;
}
.amounts button span {
    font-size: 24px;
    margin-right: 4px;
}
.background-image-section {
    padding-top: 156px;
    padding-bottom: 122px;
}	
	
	
}
