/* white you custom css code here. only css code will work */

/* rprogressbar */
.progressbar {
    width: 100%;
    position: relative;
    background-color: #f4f4f4;
}

.proggress {
    height: 8px;
    width: 0%;
    background-color: #ff0;
}

.percentCount {
    margin-top: -44px;
    clear: both;
    font-weight: 700;
    font-size: 14px;
    background-color: var(--main-color-one);
    color: #fff;
    padding: 5px;
    display: inline-block;
    position: absolute;
    text-align: center;
    border-radius: 5px;
}

.percentCount:after {
    position: absolute;
    left: 0;
    bottom: -6px;
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid var(--main-color-one);
    border-right: 15px solid transparent;
}

.contribute-single-item {
    margin-bottom: 30px;
}

.contribute-single-item .thumb {
    position: relative;
    z-index: 0;
    width: 100%;
}

.contribute-single-item .thumb img {
    width: 100%;
}

.contribute-single-item .thumb .thumb-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.contribute-single-item .thumb .thumb-content .goal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 30px;
}

.contribute-single-item .thumb .thumb-content .goal .raised {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--body-font);
}

.contribute-single-item .content {
    margin-top: 30px;
}

.contribute-single-item .content.style-01 {
    border: none;
    padding: 35px 0 0px;
}

.contribute-single-item .content .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 23px;
}

.contribute-single-item .content p {
    margin-bottom: 23px;
}

.contribute-single-item .content .btn-wrapper .boxed-btn {
    padding: 12px 20px;
}


.donation_wrapper {
    padding: 40px 45px 45px;
    background: #f5f5f5;
}

.donation_wrapper .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.donation_wrapper .single_amount_wrapper {
    display: flex;
    align-items: center;
}

.donation_wrapper .single_amount_wrapper .single_amount {
    padding: 5px 10px;
    margin: 0 5px;
    border-radius: 5px;
    color: #fff;
    background: var(--main-color-one);
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 300ms;
}

.donation_wrapper .single_amount_wrapper .single_amount:hover {
    background: var(--main-color-two);
}

.donation_wrapper .amount_wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.donation_wrapper .amount_wrapper input,
.donation_wrapper .amount_wrapper .suffix {
    padding: 8px;
    border: 0;
    font-weight: bold;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
    background: transparent;
    width: 100%;
}

.donation_wrapper .amount_wrapper input {
    border-radius: 0 8px 8px 0;
    border-right: 0;
    outline: none;
}

.donation_wrapper .single_amount_wrapper .single_amount:first-child {
    margin-left: 0;
}

.donation_wrapper .amount_wrapper .suffix {
    border-radius: 5px 0 0 5px;
    width: 10%;
}

.donation_wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    padding: 15px 25px;
    border: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0) inset, 0 0 0 0 rgba(0, 0, 0, 0) inset;
    background: var(--main-color-one);
    transition: all 0.3s;
}

.donation_wrapper a:hover {
    background: var(--main-color-two);
}

.donation_wrapper a:active {
    box-shadow: 0 -2px 2px 0 rgba(255, 255, 255, 0.2) inset, 0 2px 2px 0 rgba(0, 0, 0, 0.5) inset;
}

.donation_wrapper .payment-gateway-wrapper ul {
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.donation_wrapper .payment-gateway-wrapper ul li {
    width: calc(100% / 2 - 30px);
    margin-bottom: 20px;
}

.donation_wrapper .payment-gateway-wrapper ul li + li {
    margin-left: 0px;
}

.donation-form-wrapper .form-group .form-control {
    border: 1px solid #e2e2e2;
    font-size: 14px;
    padding: 15px 20px;
}

.donation-form-wrapper .form-group .label {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.donation-form-wrapper .form-group {
    margin-top: 20px;
}

.manual_payment_transaction_field.show {
    display: block;
}

.manual_payment_transaction_field {
    display: none;
}

@media only screen and (max-width: 768px) {
    .tablet-center {
        text-align: center;
    }

    .tablet-left {
        text-align: left;
    }

    .tablet-right {
        text-align: right;
    }
}

@media only screen and (max-width: 414px) {
    .mobile-center {
        text-align: center;
    }

    .mobile-left {
        text-align: left;
    }

    .mobile-right {
        text-align: right;
    }
}