.newsupport {
    display: flex;
    flex-direction: column;
}

.newsupport .fundraiserImage {
    min-width: 84px;
    min-height: 84px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    margin: auto;
}

.newsupport .hide {
    display: none;
}

.newsupport .title {
    font-family: "Metropolis Bold";
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.24px;
    text-align: center;
}

.newsupport .message {
    text-align: center;
    font-family: "Metropolis Regular";
    font-size: 18px;
    line-height: 21px;
    letter-spacing: 0.18px;
    color: #333333;
    margin-block: 7%;
}
.newsupport .donationUrl {
    width: 100%;
    max-width: 800px;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f0f0f0;
    font-family: inherit;
    font-size: 14px;
    color: #333333;
    margin: 20px 0;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.newsupport .donationUrl.hide {
    display: none;
}

.copy-popup {
    position: fixed;
    top: calc(22vh - 43px);
    right: calc(50% - 211px);
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    animation: fadeInOut 2s ease-in-out;
    z-index: 1050;
}

@media (min-width: 1024px) {
    .copy-popup {
        top: calc(29vh - 43px);
    }
}
/* DARK MODE */
.dark .newsupport .title,
.dark .newsupport .message {
    color: rgba(255, 255, 255, 0.87);
}
