.donation-report-container {
    --report-main-color: #8F31FFFF;
    --report-info-color: #8F31FFFF;
    --report-error-color: #dc3545;
    --report-border-color: #f8f7fa;
    --report-text-main-color: #333333FF;
    --report-text-second-color: #675C74FF;
    --report-text-size: 16px;
    --report-text-height: 28px;
}

.donation-report-container .hidden {
    display: none;
}

.donation-report-table-block {
    position: relative;
}

.donation-report-table-block-preloader-preloader {
    position: absolute;
    top: 50%;
    left: calc(50% - 32px);
    bottom: 0;
    transform: translate(-50%, -50%);
}

.donation-report-table-block-preloader-preloader-ring {
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.donation-report-table-block-preloader-preloader-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid;
    border-radius: 50%;
    animation: donation-report-preloader-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: var(--report-main-color) transparent transparent transparent;
}

.donation-report-table-block-preloader-preloader-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.donation-report-table-block-preloader-preloader-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.donation-report-table-block-preloader-preloader-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes donation-report-preloader-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.donation-report-table-block-information {
    background-color: var(--report-info-color);
    padding: 12px 18px;
    color: #ffffff;
    font-size: var(--report-text-size);
    line-height: var(--report-text-height);
    border-radius: 8px;
    margin-bottom: 12px;
}

.donation-report-table-block-information.donation-report-table-block-information-error {
    background-color: var(--report-error-color);
}

.donation-report-table-block table {
    width: 100%;
    margin-bottom: 18px;
}

.donation-report-table-block td, .donation-report-table-block th {
    font-style: normal;
    border-bottom: 2px solid var(--report-border-color);
}

.donation-report-table-block th {
    font-weight: 700;
    font-size: var(--report-text-size);
    line-height: var(--report-text-height);
    color: var(--report-text-second-color);
    text-align: left;
    padding: 4px 8px;
}

.donation-report-table-block tbody td {
    font-weight: 400;
    font-size: var(--report-text-size);
    line-height: var(--report-text-height);
    color: var(--report-text-main-color);
    padding: 4px 8px;
}

.donation-report-table-block th:last-child {
    text-align: right;
}

.donation-report-table-block tbody td:last-child {
    text-align: right;
}

.donation-report-table-block-button {
    text-align: center;
}

.donation-report-table-block-button span {
    text-decoration: none;
    color: white;
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--report-info-color);
    border: 1px solid var(--report-info-color);
    border-radius: 8px;
    cursor: pointer;
}

.donation-report-table-block-button span:hover, .donation-report-table-block-button span:focus {
    background-color: transparent;
    border: 1px solid var(--report-info-color);
    color: var(--report-info-color);
}

@media (max-width: 640px) {
    .donation-report-table-block table {
        border: 0;
    }

    .donation-report-table-block table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .donation-report-table-block table tr {
        border-bottom: 4px solid #d5d5d5;
        display: block;
        margin-bottom: 4px;
    }

    .donation-report-table-block table td {
        border-bottom: 1px solid var(--report-border-color);
        display: block;
        text-align: right;
        font-size: 12px;
        padding: 0 8px;
    }

    .donation-report-table-block table td::before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    .donation-report-table-block table td:last-child {
        border-bottom: 0;
    }
}
 
 .donation-report-container { 
 --report-main-color: #eb9e57ff;  
 --report-info-color: #eb9e57ff;  }
