.donation-popup {
    box-sizing: border-box;
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    position: fixed;
    border-radius: 8px;
    bottom: 40px;
    min-width: 720px;
    z-index: 3;
    background-color: var(--white);
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 8px 20px 4px rgba(5, 33, 52, 0.3);
    column-gap: 1.5rem;
    overflow: hidden;
}

.donation-popup .btn {
    background-color: transparent;
    padding: 6px;
    width: 22px;
    height: 22px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 0px;
}

.donation-popup .btn svg {
    transform: translateY(-8px);
}

.donation-popup .btn:hover,
.open-button:hover {
    background-color: var(--sky);
}

.donation-popup .popup-title {
    font-size: 15px;
    color: black;
    line-height: 24px;
}

.donation-popup a {
    padding: 6px 15px;
    margin: 0;
    font-size: 16px;
    background-color: var(--green);
    color: var(--white);
    border-radius: 50px;
    box-shadow: 0px 8px 20px 4px rgba(5, 33, 52, 0.3);
}

.donation-popup a:hover {
    background: var(--sky);
}

.popup-bottom,
.popup-top {
    display: flex;
    position: relative;
    padding: 12px 34px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.popup-top {
    background: var(--green);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.popup-background-img {
    position: absolute;
    max-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    right: 50px;
}

.popup-background-img img {
    height: 230px;
    width: auto;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .donation-popup {
        width: calc(100vw - 3rem);
        min-width: calc(100vw - 3rem);
        bottom: 35px;
        flex-direction: column;
        padding: 16px;
        row-gap: 15px;
    }

    .popup-bottom {
        justify-content: left;
        text-align: left;
        flex-direction: column;
        padding: 0px;
    }

    .popup-background-img {
        display: none;
    }

    .popup-top {
        padding: 0 0 15px 0;
        border-bottom: 1px solid #D7DBDF;
        flex-direction: column;
        text-align: center;
        background-color: transparent;
    }

    .donation-popup a {
        padding: 6px 40px;
        box-shadow: 0px 8px 20px 4px rgba(5, 33, 52, 0.2);
        margin: 10px;
    }

}