.progress {
    width: 100%;
    height: 35px;
  }
  .progress-wrap {
    background: #11c0f2;
    margin: 30px 0 10px;
    overflow: hidden;
    position: relative;
  }

  .progress-bar {
    background: #ddd;
    left: 0;
    position: absolute;
    top: 0;
  }

.progress-legend {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
}

.donate__option {
  display: flex;
}

.donate__wrap {
  background-color: #11c0f2;
  width: 100%;
  color: #fff;
  margin: 50px auto;
  text-align: center;
  font-weight: 500;
}

.donate__form {
  padding: 20px;
}

.donate__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -6px;
}

.donate__col {
  padding: 0 6px;
  margin: 6px auto;
  width: 100%;
}

.donate__col--half {
  width: 50%;
}

.donate__amount-btn, .donate__period-btn, .donate__payment-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  background-color: rgba(0,0,0,0.4);
  color: #003B50 !important;
  border: none;
  transition: 0.3s all ease-in-out;
  font-weight: 600;
  width: 100%;
  border-radius: 0;
  cursor: pointer;
}

.donate__amount-btn.donate__amount-input {
  border-radius: 0;
  padding: 0 5px;
  border: none;
  text-align: center;
}

.donate__amount-btn.incorrect, .donate__period-btn.incorrect, , .donate__payment-btn.incorrect {
  background-color: #fc4c71 !important;
}

.donate__amount-btn:hover, .donate__amount-btn:focus, .donate__amount-btn.active, .donate__period-btn:hover, .donate__period-btn:focus, .donate__period-btn.active, .donate__payment-btn:hover, .donate__payment-btn:focus, , .donate__payment-btn.active {
  background-color: rgba(255,255,255,1);
}

.donate__input {
  width: 100%;
  background-color: rgba(0,0,0,0.4);
  color: #003B50 !important;
  border-radius: 0 !important;
  border: none !important;
  text-align: center;
  font-weight: 600;
}

.donate__input.incorrect {
  background-color: #fc4c71 !important;
}

.donate__col--select .select2-container {
  width: 100% !important;
  max-width: 100%;
}

.donate__col--select .select2-container .select2-selection--single {
  height: 40px;
  width: 100%;
  background-color: #fff;
  color: #003B50;
  border-radius: 0;
  border: none;
  text-align: center;
  font-weight: 600;
  line-height: 40px;
}

.donate__col--select .select2-container .select2-selection--single .select2-selection__rendered {
  height: 100%;
  line-height: 40px;
  color: #003B50;
  padding: 0 30px;
}

.donate__col--select .select2-container--default .select2-selection--single .select2-selection__arrow {
  width: 26px;
  top: 6px;
  right: 3px;
}

.donate__col--select .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #003B50 transparent transparent transparent;
    border-style: solid;
    border-width: 6px 9px 0 9px;
    margin-left: -9px;
}

.donate__col--select .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #003B50 transparent;
  border-width: 0 9px 6px 9px;
}

.select2-results__options {
  background-color: #11c0f2;
}

.select2-results__option {
  text-align: center;
  background-color: rgba(0,0,0,0.4);
  color: #003B50;
}

.select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #fff;
  color: #003B50;
  font-weight: 600;
}

.donate__input:hover, .donate__input:focus, .donate__input:active {
  background-color: #fff;
}

.donate__checkbox {
  margin-top: 6px;
}

.donate__submit {
  margin: 10px auto;
}

.donate__form ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #003B50;
  opacity: 1; /* Firefox */
}

.donate__form :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #003B50;
}

.donate__form ::-ms-input-placeholder { /* Microsoft Edge */
  color: #003B50;
}

.donate__checkbox-label {
  display: block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 13px;
  user-select: none;
  text-align: left;
}

.donate__checkbox-text {
  display: inline-block;
  line-height: 1.2;
  font-size: 13px;
  margin-top: 1px;
}

.donate__checkbox-text svg {
  width: 12px;
  height: 12px;
  position: relative;
  top: 2px;
}

.donate__checkbox-text svg path {
  fill: #ffffff;
}



.donate__checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid #fff;
  transition: 0.5s all ease-in-out;
}

/* On mouse-over, add a grey background color */
.donate__checkbox-label:hover input ~ .checkmark {
  border-color: #ed2369;
}

/* When the checkbox is checked, add a blue background */
.donate__checkbox-label .donate__checkbox-input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.donate__checkbox-label .donate__checkbox-input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.donate__checkbox-label .checkmark:after {
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #003B50;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.donate__submit-btn {
  min-width: 140px;
  background-color: #ED2369;
  transition: all .3s;
  margin-top: 20px;
}

.donate__submit-btn:hover {
  background-color: #ED2369;
}

.donate__back {
  color: #fff;
  text-transform: uppercase;
  display: block;
  margin: 5px auto;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}

.donate__back:hover {
  opacity: 0.7;
}

.donate__transfer {
  border: 1px solid #fff;
  font-size: 12px;
  padding: 2px 5px 0;
  min-height: 40px;
}

.donate__transfer span {
  display: block;
}

.donate__counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 8px;
  height: 29px;
}

.donate__counter-wrap {
  margin-left: 5px;
}

.incremental-counter .num, .donate__counter-curency {
  color: #003B50;
  font-size: 14px;
  border-radius: 2px;
  box-shadow: none;
  height: auto;
  line-height: 26px;
  width: 17px;
  margin: 0 2px;
  z-index: 2;
}

.donate__counter-curency {
  border: 1px solid #fff;
  background-color: #fff;
  color: #003B50;
  display: inline-block;
  width: 17px;
  line-height: 26px;
  border-radius: 2px;
  position: relative;
  font-weight: 700;
  margin: 0 0.5px;
top: -1px;
}

.donate__counter-curency:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  background-color: #11c0f2;
  width: 100%;
  height: 1px;
  opacity: 0.7;
  z-index: -2;
}

.incremental-counter .num:after {
  content: '';
  background-color: #fff;
  border-radius: 2px;
  width: 17px;
  height: 28px;
  z-index: 1;
}

.incremental-counter .num:before {
  background-color: #11c0f2;
  opacity: 0.7;
  z-index: -2;
}

.donate__content-wrap {
  position: relative;
  height: 433px;
  overflow: hidden;
}

.donate__content {
  position: absolute;
  top: 0;
  height: 100%;
  max-width: 100%;
  width: 100%;
  right: calc(-100% - 20px);
}

.donate__content--start {
  display: block;
  left: 0;
  right: auto;
}

.incorrect {
  color: #fc4c71;
}

.donate__error {
  display: block;
  color: #ED2369;
  font-size: 12px;
  padding: 10px 0;
}

.shake {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}

@-webkit-keyframes shake {
  10%,
  90% {
    -webkit-transform: translate3d(0, -1px, 0);
    transform: translate3d(0, -1px, 0);
  }
  20%,
  80% {
    -webkit-transform: translate3d(0px, 2px, 0);
    transform: translate3d(0px, 2px, 0);
  }
  30%,
  50%,
  70% {
    -webkit-transform: translate3d(0px, -4px, 0);
    transform: translate3d(0px, -4px, 0);
  }
  40%,
  60% {
    -webkit-transform: translate3d(0px, 4px, 0);
    transform: translate3d(0px, 4px, 0);
  }
}
@keyframes shake {
  10%,
  90% {
    -webkit-transform: translate3d(0, -1px, 0);
    transform: translate3d(0, -1px, 0);
  }
  20%,
  80% {
    -webkit-transform: translate3d(0px, 2px, 0);
    transform: translate3d(0px, 2px, 0);
  }
  30%,
  50%,
  70% {
    -webkit-transform: translate3d(0px, -4px, 0);
    transform: translate3d(0px, -4px, 0);
  }
  40%,
  60% {
    -webkit-transform: translate3d(0px, 4px, 0);
    transform: translate3d(0px, 4px, 0);
  }
}

.beneficiary__wrap {
  display: flex;
  margin: -10px;
  flex-wrap: wrap;
}

.beneficiary__col {
  width: 25%;
  padding: 10px;
}

.beneficiary__article {
  background-color: #F7F7F7;
  width: 100%;
  position: relative;
  cursor: pointer;
  min-height: 315px;
}

.beneficiary__thumbnail {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 90%;
  margin-bottom: 10px;
}

.beneficiary__img {
  width: 100%;
  height: 100% !important;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.beneficiary__badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #818a91;
  color: #fff;
  font-size: 12px;
  padding: .6em 1.2em;
  line-height: 1;
  font-weight: 400;
  border-radius: 0px;
  margin: 11px;
  text-transform: capitalize;
}

.beneficiary__text {
  padding: 0 11px;
}

.beneficiary__title {
  color: #003B50;
  font-size: 1em;
  padding-bottom: 10px;
  margin: 0;
}

.beneficiary__title a {
  color: #003B50;
}

.qtip {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  .beneficiary__col {
    width: 100%;
  }

  .beneficiary__article {
    min-height: inherit;
  }
}

.transfer-title {
  display: block;
}

.donate__tooltip-wrap {
  position: relative;
}

.donate__tooltip:hover ~ .donate__tooltip-txt {
  opacity: 1;
  visibility: visible;
}

.donate__tooltip-txt {
  visibility: hidden;
  width: calc(100% + 30px);
  background-color: #003B50;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 4px 0;
  position: absolute;
  left: -30px;
  z-index: 1;
  opacity: 0;
  transition: visibility 0.3s linear, opacity 0.3s linear;
  padding: 4px;
  font-size: 11px;
  top: 0;
  -webkit-transform: translateY(-107%);
  -ms-transform: translateY(-107%);
  transform: translateY(-107%);
  text-align: left;
}

.donate__wrap[max-width~="259px"] .donate__form {
  padding: 20px 10px;
}

.donate__wrap[max-width~="234px"] .incremental-counter .num, .donate__wrap[max-width~="234px"] .donate__counter-curency  {
  font-size: 12px;
  line-height: 22px;
  width: 14px;
}

.donate__wrap[max-width~="234px"] .donate__header, .donate__wrap[max-width~="234px"] .donate__footer {
  font-size: 14px;
}

.donate__wrap[max-width~="204px"] .donate__form {
  padding: 15px 7px;
}


.donate__wrap[max-width~="204px"] .incremental-counter .num, .donate__wrap[max-width~="204px"] .donate__counter-curency  {
  font-size: 11px;
  line-height: 19px;
  width: 11px;
}


.donate__wrap[max-width~="204px"] .donate__header, .donate__wrap[max-width~="234px"] .donate__footer {
  font-size: 12px;
}

.donate__wrap[max-width~="234px"] .donate__content-wrap {
  height: 450px;
}

.donate__wrap[max-width~="230px"] .donate__content-wrap {
  height: 452px;
}

.donate__wrap[max-width~="204px"] .donate__content-wrap {
  height: 467px;
}

.donate__wrap[max-width~="230px"] .donate__amount-btn, .donate__period-btn, .donate__payment-btn, .donate__wrap[max-width~="230px"] .donate__input, .donate__wrap[max-width~="230px"] .select2-selection__rendered, .select2-dropdown[max-width~="210px"] .select2-results__option {
  font-size: 14px;
}

.donate__wrap[max-width~="198px"] .donate__col--half {
  width: 100%;
}

.donate__wrap[max-width~="245px"] .donate__error {
  font-size: 11px;
}

.donate__wrap[max-width~="192px"] .donate__submit-btn {
  min-width: initial;
  width: 100%;
  padding: .5rem .5rem;
}
