.donate_to_option:has(input:checked) .radio_btn {
    background-image: url('../imgs/check_active.svg');
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.cards_animate_1 {
    background-color: #C9BCA6;
    background-image: radial-gradient(circle at bottom right,
            rgba(62, 54, 40, 0.15) 0%,
            rgba(62, 54, 40, 0) 60%);
    background-repeat: no-repeat;
    background-size: cover;
}

.cards_animate_2 {
    background-color: #97bf0d;
    background-image: radial-gradient(circle at bottom right,
            rgba(62, 54, 40, 0.15) 0%,
            rgba(62, 54, 40, 0) 60%);
    background-repeat: no-repeat;
    background-size: cover;
}

.cards_animate_3 {
    background-color: #E2DBC9;
    background-image: radial-gradient(circle at bottom right,
            rgba(62, 54, 40, 0.15) 0%,
            rgba(62, 54, 40, 0) 60%);
    background-repeat: no-repeat;
    background-size: cover;
}


.cards_animate_4 {
    background-color: #781268;
    background-image: radial-gradient(circle at bottom right,
            rgba(62, 54, 40, 0.15) 0%,
            rgba(62, 54, 40, 0) 60%);
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.cards_animate_5 {
    background-color: #ffffff;
    background-image: radial-gradient(circle at bottom right,
            rgba(62, 54, 40, 0.15) 0%,
            rgba(62, 54, 40, 0) 60%);
    background-repeat: no-repeat;
    background-size: cover;
}

.cards_animate {
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 205px;
    transition: all 0.6s ease-in-out;
}

.cards_animate>li {
    position: relative;
    transition: transform 0.6s ease-in-out;
}


.cards_animate>li>figure::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3E362899;

}

.cards_animate>li:nth-child(1) {
    transform: translateX(100%);
    z-index: 1;
}

.cards_animate>li:nth-child(2) {
    transform: translateX(60%);
    z-index: 2;
}

.cards_animate>li:nth-child(3) {
    transform: translateX(20%);
    z-index: 3;
}

.cards_animate>li:nth-child(4) {
    transform: translateX(-20%);
    z-index: 4;
}

.cards_animate>li:nth-child(5) {
    transform: translateX(-60%);
    z-index: 5;
}

.cards_animate>li:nth-child(6) {
    transform: translateX(-100%);
    z-index: 6;
}

.cards_animate.is-expanded>li {
    position: relative;
    transform: none !important;
    z-index: auto !important;
}

.also_can_donate_modal_list li {
    display: flex;
    align-items: center;
}

.also_can_donate_modal_list li::before {
    content: "";
    width: 16px;
    height: 32px;
    background-image: url('../imgs/leaf.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: inline-flex;
    margin-right: 8px;
}