.givewp-donation-form-modal {
    width: fit-content;
    min-width: 552px;
    height: fit-content;
    max-height: calc(100% - 5rem);
    padding: 0;
    border: none;
    overflow-y: scroll;
    z-index: 999;

    &::backdrop {
        background-color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(3px);
    }

    &__close {
        border-radius: 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(255, 255, 255, 0.8);
        color: #555;
        font-size: 1.5rem;
        line-height: 1;
        width: 2.5rem;
        height: 2.5rem;
        position: absolute;
        top: .5rem;
        right: .5rem;
        cursor: pointer;
    }
}

.givewp-donation-form-display__button {
    font-size: 1rem;
    color: #fff;
    background: #2271b1;
    padding: .5rem 1rem;
    cursor: pointer;
    border: none;
    border-radius: 5px;

    &:hover {
        background: #1a5d8b;
    }
}


