/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

#top .donate-form .donate-methods label:nth-child(3) {
  grid-column-start: 1;
  grid-column-end: 5;
}

#top .donate-form .donate-methods label:nth-child(4) {
  grid-column-start: 5;
  grid-column-end: 8;
}

#top .donate-form { background-color: #fff; }


#top .donate-form .organisation-data {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 0 20px;
  margin-bottom: 0;
}
#top .donate-form .organisation-data > div {
  position: relative;
}
#top .donate-form .organisation-data > div label {
  position: absolute;
  left: 13px;
  top: 14px;
  line-height: 17px;
  background: #fff;
  font-size: 13px;
  transition: transform 0.3s, font-size 0.3s, color 0.3s;
  padding: 0 5px;
  pointer-events: none;
}
#top .donate-form .organisation-data > div.focused label {
  transform: translateY(-23px);
  font-size: 12px;
}
#top .donate-form .organisation-data > div .error-message {
  font-size: 12px;
  padding: 0 5px;
  bottom: 10px;
  position: absolute;
  background: #fff;
  left: 14px;
  color: #ff0000;
}
#top .donate-form .organisation-data > div.error input {
  border-color: #ff0000;
}
#top .donate-form .organisation-data > div.error label {
  color: #ff0000;
}
#top .donate-form .organisation-data > div:nth-child(2n-1) {
  grid-column-start: 1;
  grid-column-end: 5;
}
#top .donate-form .organisation-data > div:nth-child(2n) {
  grid-column-start: 5;
  grid-column-end: 8;
}
#top .donate-form .organisation-data > div:nth-child(1) {
  grid-column-end: 8;
}
#top .donate-form .organisation-data > div:nth-child(2) {
  grid-column-start: 1;
}
#top .donate-form .organisation-data .form-recurring-phone {
  display: none;
}
#top .donate-form .organisation-data span.form-recurring-phone-tooltip {
  cursor: pointer;
  position: absolute;
  right: 14px;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ab0f04;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
}
#top .donate-form .organisation-data span.form-recurring-phone-tooltip-content {
  display: none;
  background: #474747;
  color: #fff;
  font-size: 12px;
  line-height: 18px;
  position: absolute;
  top: -75px;
  padding: 18px;
  border-radius: 3px;
  box-shadow: 10px 10px 10px rgba(71, 71, 71, 0.3);
  width: 300px;
  right: -1px;
}
#top .donate-form .organisation-data span.form-recurring-phone-tooltip-content:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 100%;
  width: 20px;
  height: 20px;
  background: #474747;
  margin-top: -13px;
  transform: scaleX(0.7) rotateZ(45deg);
}
#top .donate-form .organisation-data span.form-recurring-phone-tooltip-content:before {
  content: "x";
  position: absolute;
  right: 6px;
  top: 0px;
  color: #fff;
  content: "×";
  cursor: pointer;
  font-size: 16px;
}


#top .donate-form .form-amounts-org {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 15px;
  border-right: 1px solid #333;
}

#top .donate-form .form-amounts-org > div:nth-child(5) {
  grid-column-start: 1;
  grid-column-end: 3;
  margin-top: -1px;
}
#top .donate-form .form-amounts-org > div:nth-child(6) {
  grid-column-start: 3;
  grid-column-end: 5;
  margin-top: -1px;
}

#top .donate-form .form-amounts-org > div {
  color: #ab0f04;
  height: 45px;
  font-size: 16px;
  background: transparent;
  border: 1px solid #333;
  border-right: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
#top .donate-form .form-amounts-org > div:before {
  content: "";
  position: absolute;
  left: -5px;
  top: -5px;
  right: -5px;
  bottom: -5px;
  background: #ab0f04;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  transform: scale(0.8);
}
#top .donate-form .form-amounts-org > div.selected-amount:before {
  opacity: 1;
  transform: scale(1);
}
#top .donate-form .form-amounts-org > div:after {
  content: attr(data-display);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
#top .donate-form .form-amounts-org > div.selected-amount:after {
  opacity: 1;
}
#top .donate-form .form-amounts-org > div input[name=custom-amount] {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9;
  color: #fff;
  border: none;
  background: transparent !important;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  padding: 0;
  outline: none;
  opacity: 0;
  cursor: pointer;
  height: 100%;
}
#top .donate-form .form-amounts-org > div.form-amount-other:after {
  content: "";
}
#top .donate-form .form-amounts-org > div.selected-amount.form-amount-other input {
  opacity: 1;
  cursor: text;
}



#top .donate-form .donate-renewal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 20px 28px;
  margin-bottom: 20px;
}
#top .donate-form .donate-renewal img {
  height: 15px;
  margin-left: 8px;
  margin-right: 5px;
  vertical-align: middle;
  position: relative;
  transition: filter 0.3s;
}
#top .donate-form .donate-renewal input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #707070;
  border-radius: 50%;
  margin: 0;
  transition: border-color 0.3s, background-color 0.3s;
  position: relative;
}
#top .donate-form .donate-renewal label:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 5;
}
#top .donate-form .donate-renewal label:nth-child(2) {
  grid-column-start: 5;
  grid-column-end: 8;
}
#top .donate-form .donate-renewal label {
  height: 45px;
  font-size: 13px;
  color: #606060;
  border: 1px solid #606060;
  padding: 0 17px 0 17px;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, color 0.3s;
  line-height: 1.18;
  position: relative;
  display: flex;
  align-items: center;
}
#top .donate-form .donate-renewal label:after {
  content: "";
  background: #fff;
  position: absolute;
  height: 6px;
  width: 6px;
  left: 22px;
  top: 19px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}
#top .donate-form .donate-renewal label.selected {
  background: #ab0f04;
  color: #fff;
  border-color: #ab0f04;
}
#top .donate-form .donate-renewal label.selected input {
  border: 2px solid #fff;
}
#top .donate-form .donate-renewal label.selected img {
  filter: saturate(0) brightness(4.5);
}
#top .donate-form .donate-renewal label.selected:after {
  opacity: 1;
}


.rdz-declaration-summary { background-color: #fff; padding: 44px; overflow: hidden; border-radius: 35px; border: 1px solid #dd0200; }

.rdz-declaration-summary button.rdz-declaration-summary-button { font-size: 18px; line-height: 18px; padding: 12px 30px 14px; color: #fff; border-radius: 4px; box-shadow: 4px 6px 6px 0 rgba(0, 0, 0, 0.16); border: solid 1px #a50e03; background-color: #a50e03; cursor: pointer; position: relative; overflow: hidden; margin-top: 30px;}

.rdz-declaration-summary > div { display: flex; }
.rdz-declaration-summary > div strong { flex: 0 0 200px; }