/* 
///-----Donation-form -----/// */
#nextButton {
    padding: 8px 15px;
    font-size: 16px;
    cursor: pointer;
    background: #D01C00;
    color: #ffff;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    border-radius: 0px;
	gap:8px;
	margin-left: auto;
	
}
#mak_prevButton {
	position: absolute;
    bottom: 88px;
    left: 40px;
	border-radius:0px;
	background: rgba(32, 32, 32, 0.10);
	color:#4D5869;
	display: flex;
    align-items: center;
	border:none;
	width: auto;
    text-transform: uppercase;
    font-size: 16px;
}
#mak_prevButton img
{
	vertical-align:middle;
}
.timetable thead tr {
  
    background: #000;
    color: #fff;
}
#prevButton {
	 padding: 8px 15px;
    font-size: 16px;
    cursor: pointer;
	background: rgba(32, 32, 32, 0.10);
    color: #4D5869;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    border-radius: 0px;
	gap:8px;
	border:0px;
	margin-left: auto;
	position: absolute;
    justify-content: end;
    bottom: 72px;
    left: 38px;
	display:flex !important;
	height:40px;
	align-items:center;
	line-height:22px;
}
#currency-step-wrapper {
	background: rgba(255, 255, 255, 0.98);
	display: flex;
	width: 660px;
	height: auto;
	padding: 30px;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	font-family: Sora !important;
}
#currency-step-wrapper h2 {
	color: var(--Dark-Grey, #202020);
font-family: Sora !important;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.donation-frst {
	display:flex;
}
.donation-frst label {
	background: rgba(244, 244, 244, 0.60);
	padding:17px;
}

.donation-frst {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.donation-frst {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.donation-frst {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.currency-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Each box */
.currency-box {
  flex: 1;
  display: flex;
	flex-direction:column;
  align-items: flex-start;
  gap: 30px;
  padding: 26px 24px;
  background: #fff;
  border: 2px solid #e5e5e5;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

/* Hide default radio */
.currency-box input[type="radio"] {
  display: none;
}

/* Custom circle */
.currency-box span {
  width: 32px;
  height: 32px;
  border: 2px solid #f5a623;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  margin-top: 4px;
  transition: all 0.3s ease;
}

/* Checked circle */
.currency-box input[type="radio"]:checked + span {
  background-color: #FF9F0D;
  border-color: #FF9F0D;
}

.currency-box input[type="radio"]:checked + span::after {
	
	content:"";
	background-image: url('https://sandbox.united-muslims.org/wp-content/uploads/2025/10/Subtract.svg'); /* put your image link */
  background-size: contain;
  background-repeat: no-repeat;
	width: 15px;
    height: 11px;
	  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Highlight selected box */
.currency-box:has(input[type="radio"]:checked) {
  border-color: #FF9F0D;
/*   background-color: #FF9F0D; */
}

/* Text styles */
.currency-box strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
	font-family: Sora;
}
#currency-step-wrapper .givewp-form {
	max-width:600px !important;
	width:100% !important;
}
.currency_detail {
  font-size: 16px;
  line-height: 22px;
	margin-top:10px;
  color: #4D5869;
  font-weight: 400;
	
}

.currency_detail a {
  color: #f5a623;
  font-weight: 600;
  text-decoration: none;
}

.currency_detail a:hover {
  text-decoration: underline;
}

/* Full-width Crypto box */
.currency-box.full {
  width: 100%;
  flex: none;
}

/* Responsive */
@media (max-width: 768px) {
  .currency-row {
    flex-direction: column;
  }
}
/****Progress Bar******/
    .progress-container {
      display: flex;
      justify-content: space-between;
      position: relative;
      width: 660px;
      margin-bottom: 40px;
    }
.steps_container {
      display: flex;
      justify-content: space-between;
      position: relative;
      width: 660px;
}
.progress-container::before {
  content: "";
  background-color: #dcdcdc;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  height: 4px;
  width: 80%;
/*   z-index: -1; */
  border-radius: 5px;
}

    
.progress {
  background-color: #00a76f;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  height: 4px;
  width: 0%;
  border-radius: 5px;
  transition: width 0.4s ease;
}
    .step {
      display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    position: relative;
    margin-top: 48px;
}

    .circle {
      background-color: #fff;
      color: #999;
      border-radius: 50%;
      height: 40px;
      width: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 3px solid #dcdcdc;
      transition: all 0.3s ease;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .circle.active {
      border-color: #00a76f;
      background-color: #0E926B;
      color: #fff;
    }

    .label {
      font-size: 0.9rem;
      color: #777;
      font-weight: 500;
      width: 100px;
    }

    .step.active .label {
      color: #000;
      font-weight: 600;
    }

    .buttons {
      display: flex;
      justify-content: space-between;
      width: 700px;
      margin-bottom: 20px;
    }

    button {
      background-color: #00a76f;
      color: white;
      border: none;
      border-radius: 8px;
      padding: 10px 25px;
      font-size: 1rem;
      cursor: pointer;
      transition: 0.3s;
    }

    button:disabled {
      background-color: #ccc;
      cursor: not-allowed;
    }

    .content {
      width: 700px;
      background: white;
      padding: 25px;
      border-radius: 14px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: center;
      transition: all 0.3s ease;
      min-height: 160px;
    }

    .fade {
      animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
@media (max-width: 670px) {
	.progress-container {
   		 max-width:660px;
		width:100%;
}
	#currency-step-wrapper
	{
		 max-width:660px;
		width:100%;
	}
	.step.active .label
	{
		max-width:100px;
		width:100%
	}
	.step .label
	{
		max-width:100px;
		width:100%
	}
	.progress-container
	{
		 align-items: center;
        justify-content: center;
        margin: 0 auto 40px;
	}
	
}
