.page-donation {
  display: grid;
  grid-template-columns: 400px 1fr 400px;
  gap: 40px;
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .page-donation {
    grid-template-columns: 1fr;
  }
}

.donation-widget-max {
  filter: url(#graphicBlur) drop-shadow(0px 2px 0px hsla(0, 0%, 6.3%, 0));
  display: flex;
  gap: 15px;
  border-radius: 15px;
  padding: 15px;
  flex-direction: column;
  background: var(--brand-light);
  background: #e6edf8;
}
.donation-widget-max .form-in {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.donation-widget-max textarea {
  border-radius: 11px;
  background: #fff;
  border: 2px solid #4f4c4c;
  border: 0;
  padding: 10px;
}
.donation-widget-max textarea::placeholder {
  color: #514b5a;
}
.donation-widget-max textarea:focus-visible {
  outline: 2px solid #4f4c4c;
  border: 0;
}
.donation-widget-max input {
  background: #fff;
  padding: 10px;
}
.donation-widget-max input::placeholder {
  color: #514b5a;
}
.donation-widget-total {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.donation-widget-total .title {
  font-size: 16px;
  font-weight: 500;
}
.donation-widget-total .nav-tabs {
  width: fit-content;
  border-radius: 20px;
  height: 40px;
  background: var(--brand-light);
  padding: 4px 5px;
  display: flex;
  gap: 10px;
  box-shadow: 0px -1px 0 0 hsla(0, 0%, 6.3%, 0.12);
}
.donation-widget-total .nav-tabs .nav-item.active {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 1px 0 0 hsla(0, 0%, 6.3%, 0.12);
}
.donation-widget-total .nav-tabs .nav-item .nav-link {
  padding: 4px 12px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.donation-widget-total .tab-content .tab-pane {
  margin-top: 0;
  padding: 0 0px;
}
.donation-widget-total .tab-content .tab-pane .nav-list .item {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.donation-widget-total .tab-content .tab-pane .nav-list .item .user-avatar {
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.donation-widget-total .tab-content .tab-pane .nav-list .item .user-avatar:hover {
  color: var(--target-default);
}
.donation-widget-total .tab-content .tab-pane .nav-list .item .sum {
  color: var(--target-default);
  font-weight: 600;
  padding: 2px 10px;
}