.cwt--donation svg {
    width: 1em;
    height: 1em;
}

.cwt--donation-item .content {
    padding: 30px;
    position: relative;
    box-shadow: 5px 4px 30px rgba(212, 205, 205, 0.3);
}

.cwt--donation-item .image img {
    width: 100%;
    height: 288px;
    object-fit: cover;
}

.cwt--donation-item .category {
    gap: 5px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
}

.cwt--donation-item .category a {
    display: inline-block;
    padding: 8px 15px;
    background: #34A3D5;
    border-radius: 2px;
    color: #fff;
    transform: translateY(-50%);
}

.cwt--donation-item .goal-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cwt--donation-item .donate-btn {
    display: block;
    background: #34A3D5;
    text-align: center;
    padding: 10px 15px;
    color: #fff;
}

.cwt--donation-item .progress {
    position: relative;
    margin-top: 30px;
    margin-bottom: 15px;
}

.cwt--donation-item .percentage {
    display: flex;
    position: absolute;
    bottom: 11px;
    left: var(--barWidth, 0%);
}

.cwt--donation-item .bar {
    width: 100%;
    height: 8px;
    background: #F4F4F4;
    position: relative;
}

.cwt--donation-item .bar::before {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    bottom: -3px;
    left: calc(var(--barWidth, 0%) - 1%);
    background: #34A3D5;
    border-radius: 100px;
    z-index: 1;
}

.cwt--donation-item .bar::after {
    position: absolute;
    content: "";
    width: var(--barWidth, 0%);
    height: 8px;
    left: 0;
    top: 0;
    background: #34A3D5;
}

.cwt--donation-item img {
    object-fit: cover;
}

.cwt--donation .d-items {
    display: grid;
}


/* Slider Style */
.cwt--donation-navigation {
    display: flex;
    align-items: center;
    z-index: 1;
}

.cwt--donation-navigation .cwt-arrow {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cwt-donation-hrp-right  .cwt--donation-navigation {
    right: var(--arrows-hr-offset, 0);
}

.cwt-donation-hrp-left  .cwt--donation-navigation {
    left: var(--arrows-hr-offset, 0);
}

.cwt-donation-vrp-top  .cwt--donation-navigation {
    top: var(--arrows-vr-offset, 0);
}

.cwt-donation-vrp-bottom  .cwt--donation-navigation {
    bottom: var(--arrows-vr-offset, 0);
}

.cwt--donation-pagination .swiper-pagination {
    bottom: unset;
    left: unset;
    top: unset;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
}

.cwt--donation-pagination .swiper-pagination-progressbar {
    overflow: hidden;
}

.cwt-donation-pg-hr-right  .swiper-pagination {
    right: var(--pg-hr-offset, 0);
}

.cwt-donation-pg-hr-left  .swiper-pagination {
    left: var(--pg-hr-offset, 0);
}

.cwt-donation-pg-vr-top  .swiper-pagination {
    top: var(--pg-vr-offset, 0);
}

.cwt-donation-pg-vr-bottom  .swiper-pagination {
    bottom: var(--pg-vr-offset, 0);
}


/* Filterable Style */
.cwt--donation-filterable .filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 50px;
}

.cwt--donation-filterable .filter button {
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: capitalize;
}

.cwt--donation-filterable .filter .active {
    color: #fff;
    background-color: #E5AC1B;
}

