.donate-form {
    color: #054678;
    font-family: Museo Sans Cyrl\ 500,Helvetica,Arial,sans-serif;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.donate-form .select-block {
    margin-bottom: 20px;
}

.donate-form .form-element input {
    font-family: Museo Sans Cyrl\ 500,Helvetica,Arial,sans-serif;
    font-size: 14px;
    padding: 7px 22px;
}

.donate-form .form-element input::placeholder {
    font-size: 80%;
}

.donate-form__section {
    display: grid;
    gap: 17px;
    margin-bottom: 20px;
}

.donate-form .form-element__caption {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-family: Museo Sans Cyrl\ 500,Helvetica,Arial,sans-serif;
}

.donate-form .donate-form__close {
    background: #027500;
}

.donate-form .donate-form__close:hover {
    background: #fff;
    color: #027500;
    border-color: #027500;
}

.donate-form .cb-label__text {
    text-align: left;
}

.donate-form .donation-preset {
    padding: 0.2em 0.6em 0.25em 0.6em;
}

.donate-form .donation-amount__presets {
    display: flex;
    flex-direction: column;
    gap: 5px 10px;
}

#donation_amount__close {
    width: auto;
}

@media screen and (min-width: 768px) {
    .donate-form .form-element input { font-size: 16px; }
    .donate-form__section { gap: 20px; margin-bottom: 30px; }
}

@media screen and (min-width: 1024px) {
    .donate-form .form-element__caption { font-size: 20px; }
}

@media screen and (min-width: 1280px) {
    .donate-form .form-element input { font-size: 20px; }
    .donate-form .donation-presets { gap: 11px 22px; }
    .donate-form .donation-amount__presets { gap: 11px 22px; }
}

@media screen and (min-width: 1600px) {
    .donate-form .form-element input { font-size: 30px; }
}

/* donate progress bar */

.donate-progress {
    display: flex;
    flex-direction: column;
    gap: 4px;

    margin: 1.5em 0;
}

.donate-progress__info {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.donate-progress__amount--current {
    text-align: left;
}

.donate-progress__amount--total {
    text-align: right;
}

.donate-progress__amount-title {
    font-size: 16px;
    line-height: 1.2;

    color: #054678;
    opacity: 0.4;
}

.donate-progress__amount-value {
    font-size: 21px;
    line-height: 1.2;

    color: #054678;
}

.donate-progress__bar {
    height: 37px;
    position: relative;
}

.donate-progress__bar-bg {
    position: absolute;
    top: 13px;
    left: 0;
    width: 100%;
    height: 11px;

    background: #D9D9D9;
    border-radius: 13px;
}

.donate-progress__bar-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: 37px;
}

.donate-progress__bar-slider-bg {
    position: absolute;
    top: 13px;
    left: 0;
    width: 100%;
    height: 11px;

    background: #054678;
    border-radius: 13px;
}

.donate-progress__bar-label {
    margin-left: 90px;
    height: 37px;
}

.donate-progress__bar-label-wrapper {
    position: relative;
    height: 37px;
}

.donate-progress__bar-label-value {
    position: absolute;
    top: 0;
    right: 0;
    height: 37px;

    color: #FFF;
    background: #E7650C;
    border-radius: 10px;

    font-size: 22px;
    line-height: 37px;
    text-align: center;

    width: 90px;
}

@media screen and (min-width: 1024px) {
    .donate-progress__amount-title { font-size: 18px; }
    .donate-progress__bar-bg { top: 12px; height: 13px; }
    .donate-progress__bar-slider-bg { top: 12px; height: 13px; }
}


/* donate form status */

.donate-form__status {
    text-align: right;
    margin-bottom: 2em;
}

.donate-form__status-label {
    display: inline-block;
    padding: 8px 20px;
    font-size: 150%;
    line-height: 1.3;
    color: #fff;
    background: #ccc;
    border-radius: 20px;
}

.donate-form__status-label--is-closed {
    background: #027500;
}

.donate-form__status-label--is-open {
    background: #E7650C;
}

@media (max-width: 768px) {
    .donate-form__status {
        margin-bottom: 1.5em;
    }

    .donate-form__status-label {
        padding: 6px 15px;
        font-size: 130%;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .donate-form__status {
        margin-bottom: 1em;
    }

    .donate-form__status-label {
        padding: 4px 10px;
        font-size: 110%;
        border-radius: 10px;
    }
}
