@keyframes revertBorder {
  0% {
    border-color: #fff5d3;
  }
  100% {
    border-color: #efc940;
  }
}

.listWrap li {
  cursor: pointer;
  padding: 1rem 0rem;
  font-size: 0.9rem;
  border-top: 3px solid #efc94000;
  transition: 0.6s all ease;
}

.listWrap li:hover {
  border-top: 3px solid #efc940;
}

.btnDonate {
  border: 1rem solid #efc940;
  transition: all 0.3s ease-in-out;
}

.btnDonate:hover {
  border: 1rem solid #fff5d3;
  animation: revertBorder 0.3s 0.3s forwards;
}

.newsInput,
.newsInput:autofill {
  width: 100%;
  background: #ffffff00;
  color: #ffffff;
  outline: none;
  resize: none;
  overflow: hidden;
  font-weight: 400;
  font-size: 1rem;
  line-height: 20px;
  border: 2px solid var(--Grey-Heading, #25252500);
  border-bottom: 2px solid var(--Grey-Heading, #4d4b84);
  margin-bottom: 1.8rem;
  padding: 4px 0px;
}

.footerTextHover {
  cursor: pointer;
  border-bottom: 2px solid #efc94000;
  transition: all 0.2s linear;
}

.footerTextHover:hover {
  border-bottom: 2px solid #efc940;
}