.donate_popup {
  position: fixed;
  right: 1rem;
  bottom: 0;
  width: 300px;
  background: #000;
  color: #fff;
  z-index: 4;
  padding-bottom: 1.5rem;
  transform: translateY(100%);
  transition: transform 500ms;
}

@media (max-width: 767px) {
  .donate_popup {
    width: 100%;
    right: 0;
    bottom: 0;
  }
}

.donate_popup.active {
  transform: translateY(-1rem);
}

@media (max-width: 767px) {
  .donate_popup.active {
    transform: translateY(0);
  }
}

.donate_popup .close_button {
  background: url('./images/close_fill.svg') center/15px no-repeat;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
}

.donate_popup .title {
  font-weight: 600;
  text-align: center;
  margin: 1.5rem 1rem 0.8rem;
  line-height: 1.6rem;
}

.donate_popup .desc {
  text-align: center;
  margin: 0.8rem 1.5rem;
  line-height: 1rem;
}

.donate_popup .button_cont {
  margin-top: 1rem;
  text-align: center;
  filter: invert(1);
}
