@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root{
  --blue : #012169;
  --green : #115D5D;
  --red:#ba272d;
  --red-hover: #8B251C;
  --purple: #223a7b;
  --yellow: #fcde1e;
  --black: #000;
  --green: #115d5d;

}

body{
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #000;
  background: #0000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.wait {opacity: 0.6;pointer-events: none;}

/*.inputDate{padding: 0!important;position: relative;}
.inputDate input{border: 0!important;padding: 10px 15px!important;width: 100%!important;background: transparent !important;}
.inputDate input:focus{box-shadow: unset!important;}
.inputDate:after{content: '';background-image: url(../img/calendar.png); background-position: center; background-size: contain; background-repeat: no-repeat;position: absolute;right: 14px;top: 0;bottom: 0;width: 16px;height: 16px;margin: auto;}
*/

/* Wrapper for positioning the icon */
.inputDateWrapper {
    position: relative;
    width: 40%;
    background:white;
    border:1px solid black; 
    
}

/* The actual input */
.inputDate {
    padding: 10px 40px 10px 15px !important; /* space for icon */
    border: 0 !important;
    background: transparent !important;
    width: 100% !important;
    box-shadow: none !important;
}

/* Remove flatpickr default input arrow icon */
.inputDate.flatpickr-input {
    background-image: none !important;
}

/* Position your custom calendar icon */
.inputDateWrapper::after {
    content: '';
    background-image: url(../img/calendar.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 14px;
    top: 0;
    bottom: 0;
    width: 16px;
    height: 16px;
    margin: auto;
    pointer-events: none; /* allow clicks through the icon */
}



.form-control:focus, .form-control-inline:focus {
  box-shadow: unset;
  outline: 0;
  border-color: #012169;
}
.f-14 {
  font-size: 14px;
}

/* hr{
  max-width: 70%;
} */

.sticky-column {
  position: sticky;
  top: 20px; /* or whatever distance you want from the top */
  height: 100%;
}

.text-purple{
  color: var(--purple);
}

header{
  background-color: #ECF6F3;
 padding: 10px 0px;
 box-shadow: 0px 0px 8px 1px #e5e5e5;
}

header .logo{
  /*margin-bottom: -54px;*/
}

header h1{
  color: #fff;
}

.radio-option {
  display: block;
  background-color: #fff;
  border: 1px solid #898989;
  border-radius: 6px;
  padding: 10px 16px;
  margin-bottom: 10px;
  position: relative;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
}

.radio-option:hover {
  background-color: var(--green);
  color: #fff;
  border-color: var(--green);
}

.radio-option:hover input[type="radio"] {
  border-color: #fff;
}

.radio-option input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #5d5d5d;
  border-radius: 50%;
  outline: none;
  margin-right: 4px;
  position: relative;
  top: 2px;
}
.radio-option input[type="radio"]:checked {
  border: 2px solid #fff;
}

label.radio-option:has(input[type="radio"]:checked) {
  background-color: var(--green);
  color: #fff;
  border-color: var(--green);
}

.radio-option input[type="radio"]:checked:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn-list-wrap {
  list-style-type: none;
  margin: 0px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

.btn-list-wrap input[type="radio"] {
  opacity: 0.011;
  z-index: 100;
  height: 0px;
  visibility: hidden;
  top: -20px;
  left: -20px;
  position: absolute;
}

.btn-list-wrap label {
  
  text-align: center;
  width: 18%;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #898989;
  border-radius: 6px;
  padding: 10px 16px;
  margin-bottom: 10px;
  position: relative;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0px 3px 5px 2px #0000001c;
}

.btn-list-wrap label:hover{
  background-color: var(--green);
  color: #fff;
  border-color: var(--green);
}

.btn-list-wrap input[type="radio"]:checked + label {
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
}

.form-select:focus {
  box-shadow: unset;
  outline: 0;
}

.subscribe-btn {
  display: block;
  background-color: var(--red);
  border: 1px solid var(--red);
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
}

.subscribe-btn:hover{
  background-color: var(--red-hover);
}

.appeal-box{
  background-color: #ededed;
  border: 1px solid var(--purple);
  border-radius: 10px;
  padding: 24px;
}

.appeal-box .radio-option input[type="radio"]{
  display: none;
}

.appeal-box .radio-option{
  text-align: center;
  margin-bottom: 3px;
  padding: 8px 16px;
}

.appeal-box label.radio-option:has(input[type="radio"]:checked) {
    background-color: var(--yellow);
    color: #000;
    border-color: #000;
}

.appeal-box .radio-option:hover {
    background-color: var(--yellow);
    color: #000;
    border-color: #000;
}

.appeal-box .radio-option span{
  font-weight: bold;
}

.appealImg{
  border-radius: 10px;
  margin-bottom: 20px;
}

.cart-box{
  background-color: var(--green);
  border: 1px solid var(--green);
  border-radius: 10px;
  padding: 30px 24px 24px 24px;
}

.cart-box .ptx{
  color: #000;
  background-color: var(--yellow);
  padding: 5px 10px;
  border-radius: 6px;
  width: max-content;
  margin-top: 7px;

}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #898989;
  border-radius: 10px;
  font-size: 16px;
  background: #fff;
  color: #000;
  font-weight: 600;
}

.form-control-inline {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #898989;
  border-radius: 10px;
  font-size: 16px;
}

.card-expiry {
  display: flex;
  gap: 10px;
}

.checkbox-option {
  display: block;
  margin-bottom: 20px;
}

.checkbox-option label{
  display: flex;
  align-items: center;
}

.checkbox-option label span{
  width: 80%;
}

.checkbox-option input {
  margin-right: 10px;
  position: relative;
  top: 1px;
}

.cart-box .donation-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.cart-box p, .cart-box h6, .cart-box span{
  color: #fff;
}

.cart-box p{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.cart-box .cartTotalRow{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 5px 0px;
  margin-top: 10px;
}

.cart-box .cartTotalRow h6, .cart-box .cartTotalRow span{
  font-weight: bold;
  font-size: 20px;
}

.donation-info p {
  margin-bottom: 5px;
}

.remove-btn {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
}

.donate-btn {
  display: block;
  margin: 20px auto;
  background-color: var(--red);
  border: none;
  border-radius: 10px;
  padding: 7px 42px;
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  border: 1px solid var(--red);
  width: 100%;
}

.donate-btn:hover{
  background-color: var(--red-hover);
}

/* Country select dropdown with chevron */
.country-select {
  position: relative;
}

.country-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px;
}

.country-select:after {
  content: "\25bc";
  font-size: 12px;
  position: absolute;
  right: 22px;
  top: 47px;
  transform: translateY(-50%);
  pointer-events: none;
}
/* Fix layout */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-left {
  width: 50%;
  float: left;
  padding: 0 15px;
}

.col-right {
  width: 50%;
  float: right;
  padding: 0 15px;
}

.clearfix {
  clear: both;
}
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  margin-top: 2px;
  accent-color: #115d5d;
  cursor: pointer;
}
.cartText {
  margin-bottom: 20px;
  text-align: center;
}
.hund strong {
  position: relative;
  right: 35px;
  font-size: 20px;
}
button.donate-btn:hover {
  background: #8b251c;
  color: #fff;
  transition: 0.3;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border: 2px solid #115d5d;
  border-radius: 5px;
  background-color: white;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}
input[type="checkbox"]:checked {
  background-color: #115d5d;
  border-color: #115d5d;
}

/* Tick mark */
input[type="checkbox"]:checked::after {
  content: "\2713"; /* Unicode tick */
  color: #fff;
  font-size: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
}

/* ERROR TICKER START */
.toast {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: red;
  /* background-color: #ffc107; */
  color: #fff;
  /* color: #333; */
  padding: 16px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  width: fit-content;
  min-width: 300px;
  transition: top 0.5s ease;
  overflow: hidden;
}

.toast.show {
  top: 20px;
}

.toast.hidden {
  display: none;
}

.toast .icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  fill: #fff;
  /* fill: #333; */
}

.toast .message {
  flex-grow: 1;
}

.toast .close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #fff;
  /* color: #333; */
  margin-left: 12px;
  cursor: pointer;
}

.toast .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: #fff;
  /* background-color: #333; */
  width: 100%;
  animation: progressAnim 5s linear forwards;
}

@keyframes progressAnim {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

/* ERROR TICKER END */

/* FREQUENCY CSS START */
.frequency-row label {
  background: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 7px;
  border-radius: 10px;
  cursor: pointer;
  padding: 12px 15px;
  border: 1px solid #959595;
  transition: all 0.3s ease;
  box-shadow: 0px 2px 2px 0px #00000030;
}

.frequency-row label:hover {
  background: #c3e89f;
}
.frequency-row label .dot {
  height: 20px;
  width: 20px;
  background: transparent;
  border: 1px solid #115d5d;
  border-radius: 50%;
  position: relative;
}
.frequency-row label .dot::before {
  position: absolute;
  content: "";
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  background: #115d5d;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.3s ease;
}
.frequency-row label span {
  font-size: 16px;
  color: #115d5d;
  font-weight: 600;
  /* width: 84%; */
}
.frequency-row input[type="radio"] {
  display: none;
}
.frequency-row input[type="radio"]:checked + label.option {
  border-color: #115d5d;
  background: #115d5d;
}

.frequency-row input[type="radio"]:checked + label.option span {
  color: #fff;
}

.frequency-row input[type="radio"]:checked + label.option .dot {
  background: #c3e89f;
}

.frequency-row input[type="radio"]:checked + label.option .dot::before {
  opacity: 1;
  transform: scale(1);
}
.frequency-row {
  display: flex;
  align-items: center;
  gap: 0px 10px;
  flex-wrap: wrap;
}
/* FREQUENCY CSS END */

/* currency start */
.currency {
  font-size: 16px;
}
.currency li input {
  margin-right: 10px;
}
.currency [type="radio"]:checked,
.currency [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.currency [type="radio"]:checked + label,
.currency [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}
.currency [type="radio"]:checked + label:before,
.currency [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #a9a9a9;
  border-radius: 100%;
  background: #fff;
}
.currency [type="radio"]:checked + label:after,
.currency [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #115d5d;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.currency [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.currency [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* currency end */

/* expand breakup */
.expandBtn {
  color: var(--green);
  border: 0;
  padding: 6px 12px;
  font-size: 16px;
  width: max-content;
  margin: 18px auto auto;
  display: block;
  font-weight: 600;
  background: #fff;
  border-radius: 6px;
  text-decoration: underline;
}

.split-entry-bg {
  border: 1px solid #00000012;
  padding: 0 !important;
}

.split-entry-bg .split-entry {
  position: relative;
  padding: 10px 6px;
  background-color: transparent;
  box-shadow: unset;
  border-bottom: 1px solid rgb(165 165 165 / 13%);
  font-size: 16px;
  color: #212529;
  font-weight: 400;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.split-entry-bg .split-entry:nth-child(2n-1) {
  background: #01aef00d;
}

.split-entry-bg .split-entry:after {
  font: var(--fa-font-solid);
  font-family: "Font Awesome 6 free";
  content: "\f274";
  position: absolute;
  top: 20%;
  color: #023399;
  left: 5px;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  display: none;
}

/* modal css */
.modal {
  display: none;
  position: fixed;
  z-index: 1050;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* overflow: hidden; */
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-dialog {
  position: relative;
  margin: auto;
  max-width: 900px;
  pointer-events: none;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: all;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding-bottom: 20px;
}

.modal-header,
.modal-body,
.modal-footer {
  padding: 12px 16px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #00000047;
}

.modal-footer {
  border-top: 1px solid #dee2e6;
  text-align: right;
}

.btn-close {
  background: none;
  border: none;
  font-size: 2rem;
  position: relative;
  right: 0;
  top: -8px;
}

.btn-close:focus {
  box-shadow: unset;
}

.split-row .split-box {
  width: 15%;
}

.split-box {
  background: #115d5d14;
  box-shadow: 0px 2px 3px 1px #115d5d47;
  padding: 0px;
  text-align: center;
  border-radius: 12px;
  color: #000;
  padding-bottom: 10px;
}

.split-box h6 {
  color: #fff;
  background: var(--green);
  border-radius: 12px 12px 0px 0px;
  font-weight: 600;
  font-size: 19px;
  padding: 7px 5px;
  margin-top: -1px;
}

.split-box p {
  margin-bottom: 0;
  color: #000;
  font-size: 12px;
  padding: 0 10px;
}

.split-box span {
  display: block;
  padding: 0 10px;
  font-size: 13px;
}

.split-box span:last-child {
  font-weight: 600;
  font-size: 16px;
}

.endDtoggleBtn {
  border: 0;
  background: transparent;
  text-align: left;
  text-decoration: underline;
}

.radio-option span {
  font-weight: 600;
}

.mw-500 {
  max-width: 500px;
}

.gitaid-col{
  border: 1px solid #e9e3e3;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
}

.payment-box{
  border-radius: 10px;
  background-color: #ECF6F3;
  border: 1px solid #e9e3e3;
}

.payment-box .pymnt-header{
  border-radius: 10px 10px 0px 0px;
  background-color: var(--green);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-box .pymnt-body{
  padding: 20px;
}

.card-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 22px;
    border: 1px solid #e3e3e3;
    position: relative;
}

.funds {
    background-color: rgba(230, 238, 251, 1);
    border: 1px solid rgba(230, 238, 251, 1);
    padding: 10px 15px;
}

.funds h5 {
    width: 70%;
    color: var(--dark-blue);
    font-weight: 600;
}

.funds > div {
    width: 28%;
}
.currencySign {
    position: relative;
}

.currencySign > span {
    position: absolute;
    top: 7px;
    bottom: 0;
    left: 8px;
    margin: auto;
    font-size: 18px;
    font-weight: 700;
    opacity: 0.5;
    color: var(--dark-blue);
}

.currencySign > input {
    padding-left: 22px !important;
}
.step-second .funds input {
    border: 1px solid rgba(204, 222, 247, 1);
    font-weight: 900;
}

/* Responsive styles */
@media screen and (max-width: 991px) {
  .split-row .split-box {
    width: 18%;
  }
}
@media screen and (max-width: 768px) {
    .row.mob-r-reverse .col-md-7.col-lg-8{
        margin-top: 40px;
    }
  .headerTxt{
    display: none;
  }
  header .logo {
    /*margin-bottom: -38px;*/
    width: 74px;
  }
  .appealImg{
    margin-top: 20px;
  }
  /* .cart-box{
    margin-top: 24px;
  } */
  .sticky-column {
    position: static;
    display: flex;
    flex-direction: column-reverse;
  }
  .btn-list-wrap label{
    width: 26%;
    margin-bottom: 0;
  }
  .radio-option {
    padding: 10px 10px;
  }
  .section {
    padding: 30px 20px;
  }
  .radio-option span {
    font-size: 14px;
  }
  .frequency-row label {
    padding: 12px 10px;
  }

  .mob-r-reverse {
    flex-direction: column-reverse;
  }

  .frequency-row label span {
    font-size: 14px;
  }

  .split-entry-bg .split-entry {
    font-size: 14px;
  }

  .split-row .split-box {
    width: 47%;
  }

  .modal-dialog {
    width: 94%;
  }
  .hund strong {
    position: relative;
    right: 15px;
  }

  .col-left,
  .col-right {
    width: 100%;
    float: none;
    margin-bottom: 30px;
  }

  .card-expiry {
    flex-direction: column;
    gap: 0px;
  }

  .donate-btn {
    width: 100%;
  }
  /* input[type="checkbox"] {
    width: 43px;
  } */
}

.amount-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.amount-btn {
  flex: 1 0 calc(50% - 10px); /* Mobile par 2 buttons per row */
  min-width: 80px;
}

/* Desktop ke liye media query */
@media screen and (min-width: 768px) {
  .amount-buttons {
    flex-wrap: nowrap; /* Desktop par no wrapping */
  }

  .amount-btn {
    flex: 1; /* Equal width for all buttons */
  }
}

.error {
  font-size: 14px;
  color: #dc3545;
  padding-top: 6px;
  display: inline-block;
}

.warning{
  padding-top: 6px;
  display: inline-block;
}
.strt-over{
  border: 1px solid #898989;
  border-radius: 4px;
  padding: 6px 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: #ffffff;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s;
}
 
.strt-over svg{
  width: 16px;
}
 
.strt-over:hover{
  background: var(--red-hover);
  color: #fff;
  border-color: var(--red-hover);
  transform: scale(1.1);
}
 
.strt-over:hover svg{
  fill: #fff;
}
 

 