

/* Start:/local/components/bustlers/donate/templates/new/style.css?17697076929288*/
:root {
    --red: #DA352C;
    --red-soft: rgba(218, 53, 44, 0.08);
    --dark-red: #AA1D1D;
    --grey-line: #E0E0E0;
    --text-main: #141412;
    --text-light: #888;
    --white: #FFF;

    --radius-xl: 24px;
    --radius-sm: 12px;
    --anim-speed: 0.2s;

    /* Mapping Legacy vars if needed */
    --focus-glow-color: var(--red-soft);
}

.donate-block .bustlers-donate {
    background: none !important;
    padding: 0 !important;
}


/* 1. CONTAINER & RESET */
.fbl-form {
    background: var(--white);
    width: 100%;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
    color: var(--text-main);
    font-size: var(--font-size);
}

.fbl-form h2 {
    font-weight: 400;
    font-size: 2rem;
    text-align: center;
    margin: 0 0 1.5rem 0;
    color: var(--text-main);
}

/* 2. TABS (TYPE GROUP) */
.fbl-form__type-group {
    display: flex;
    background: transparent;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--grey-line);
    position: relative;
    gap: 0;
    /* Reset legacy gap */
}

.fbl-form__type-group input[type="radio"] {
    display: none;
}

.fbl-form__type-group label {
    flex: 1;
    text-align: center;
    padding: 1rem 0;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-light);
    transition: color var(--anim-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    /* Reset legacy borders */
    background: none;
    /* Reset legacy bg */
    border-radius: 0;
    height: auto;
}

.fbl-form__type-group label:hover {
    background: transparent;
    color: var(--red);
}

/* Tab Indicator (New Element Logic via Sibling Selector) */
.tab-indicator {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--red);
    transition: transform var(--anim-speed) ease;
    pointer-events: none;
}

/* Logic for Indicator Position based on checked input */
/* Assuming "Monthly" is the left tab visually, but IDs are specific */
#type-monthly:checked~.tab-indicator {
    transform: translateX(0%);
}

#type-once:checked~.tab-indicator {
    transform: translateX(100%);
}

/* Active State Text */
#type-monthly:checked+label,
#type-once:checked+label {
    background: transparent;
    color: var(--red);
    font-weight: 600;
}

/* Pulsing Heart for Monthly */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    14% {
        transform: scale(1.3);
    }

    28% {
        transform: scale(1);
    }

    42% {
        transform: scale(1.3);
    }

    70% {
        transform: scale(1);
    }
}

.heart-icon {
    display: inline-block;
    animation: heartbeat 2s infinite;
    color: var(--red);
}

/* 3. AMOUNTS GROUP */
.fbl-form__amount-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.2fr;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.fbl-form__amount-group input[type="radio"] {
    display: none;
}

.fbl-form__amount-group label {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2.2rem;
    border: 1px solid var(--grey-line);
    border-radius: var(--radius-sm);
    background: var(--white);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    color: var(--text-main);
    padding: 0;
    width: 100%;
    /* Ensure fill */
}

.fbl-form__amount-group input[type="radio"]:checked+label {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    box-shadow: 0 4px 12px rgba(218, 53, 44, 0.3);
}

.fbl-form__amount-group label:hover {
    border-color: var(--red);
    background: var(--white);
    color: var(--red);
}

.fbl-form__amount-group input[type="radio"]:checked+label:hover {
    background: var(--red);
    color: var(--white);
}

/* Custom Amount Input */
.fbl-form__custom-amount {
    width: 100%;
    height: 2.2rem;
    border: 1px solid var(--grey-line);
    border-radius: var(--radius-sm);
    padding: 0 10px;
    text-align: center;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: inherit;
    -moz-appearance: textfield;
    background: var(--white);
    color: var(--text-main);
}

.fbl-form__custom-amount:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
}

.fbl-form__custom-amount::placeholder {
    color: var(--text-light);
}

/* 4. IMPACT BOX (New) */
.impact-box {
    background: #F9F9F9;
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border-left: 3px solid var(--red);
    font-size: 0.9rem !important;
    line-height: 1.4;
}

.impact-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* 5. FIELDS (Floating Labels) */
.fbl-form__field {
    position: relative;
    margin-bottom: 1rem;
}

.fbl-form__input {
    width: 100%;
    height: 3rem;
    padding: 1.2rem 1rem 0.4rem 1rem;
    border: 1px solid var(--grey-line);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    box-sizing: border-box;
    font-family: inherit;
    background: transparent;
    transition: 0.2s;
    color: var(--text-main);
}

.fbl-form__input:focus {
    outline: none;
    border-color: var(--text-main);
    background: var(--white);
}

/* Floating Label Logic */
.fbl-form__label {
    position: absolute;
    top: 0.9rem;
    left: 1rem;
    font-size: 1rem;
    color: var(--text-light);
    pointer-events: none;
    transition: 0.2s ease all;
    background-color: transparent;
    padding: 0;
    margin: 0;
    border: none;
    height: auto;
}

.fbl-form__input:focus~.fbl-form__label,
.fbl-form__input:not(:placeholder-shown)~.fbl-form__label {
    top: 0.5rem;
    font-size: 0.7rem;
    color: var(--red);
    font-weight: 500;
    transform: none;
    /* Reset legacy transform */
}

/* 6. OPTIONAL TOGGLES */
.optional-toggles {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.toggle-link {
    font-size: 0.85rem;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 1px dashed var(--grey-line);
    transition: 0.3s;
}

.toggle-link:hover {
    color: var(--red);
    border-color: var(--red);
}

/* Hidden Sections */
.hidden-section {
    display: none;
    animation: slideDown 0.3s ease;
}

.hidden-section.visible {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 7. CHECKBOXES & WISHES */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1.3;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--text-main);
    cursor: pointer;
    width: 1rem;
    height: 1rem;
    appearance: auto;
    /* Allow system checkbox or custom */
    border: 1px solid var(--grey-line);
}

.checkbox-group label {
    font-size: 0.75rem;
    margin: 0;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--text-main);
    text-decoration: underline;
    font-size: 0.75rem;
}

.fbl-form__wishes {
    width: 100%;
    height: 6rem;
    padding: 1rem;
    border: 1px solid var(--grey-line);
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
    box-sizing: border-box;
    font-family: inherit;
    resize: vertical;
    display: none;
    /* Controlled by toggle */
}

.fbl-form__wishes.visible {
    display: block;
    animation: slideDown 0.3s ease;
    margin-bottom: 1rem;
}

/* 8. SUBMIT BUTTON */
.fbl-form__submit {
    width: 100%;
    background: var(--red);
    color: var(--white);
    height: 3.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(218, 53, 44, 0.4);
}

.fbl-form__submit:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(218, 53, 44, 0.5);
}

/* Shine effect */
.fbl-form__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.fbl-form__submit:hover::before {
    left: 100%;
}

/* Hide legacy note by default, we use Impact box */
.fbl-form__subscription-note {
    display: none !important;
}

@media (max-width: 990px) {

    .fbl-form {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .fbl-form__label {
        top: 1.1rem;
    }

    .fbl-form__submit {
        font-size: 1.1rem !important;
    }

}

/* Mobile Adapt */
@media (max-width: 480px) {
    .fbl-form__amount-group {
        gap: 4px;
    }

    .fbl-form__amount-group label,
    .fbl-form__custom-amount {
        font-size: 0.9rem;
        padding: 0;
    }
}
/* End */


/* Start:/local/templates/.default/components/sprint.editor/blocks/.default/_style.css?17574603463514*/
/* Общие стили для блоков */
.sp-block-table table {
    width: 100%;
    border-collapse: collapse;
}

.sp-block-table table tr {
    background: #f7f7f7;
    color: #8a8a8a;
}

.sp-block-table table tr:nth-child(odd) {
    background: #e7e6e6;
}

.sp-block-table table tr:hover {
    background: #d4d4d4;
    color: #000;
}

.sp-block-table table td {
    text-align: left;
    border: 1px solid #ccc;
    padding: 5px;
}

.sp-block-table p {
    margin: 0;
}

.sp-image img {
    width: 100%;
}

.sp-video iframe,
.sp-video-gallery iframe {
    border-width: 0;
}

.sp-iblock-sections {
    padding: 10px;
    border: 1px solid #c3c3c3;
    margin: 10px 0;
}

.sp-iblock-elements {
    padding: 10px;
    border: 1px solid #c3c3c3;
    margin: 10px 0;
}

.sp-properties {
    width: 400px;
    border-collapse: collapse;
}

.sp-properties_title {
    border: 1px solid #ccc;
    padding: 0 5px;
    font-weight: bold;
}

.sp-properties_text {
    border: 1px solid #ccc;
    padding: 0 5px;
}

.sp-gallery-items {
    overflow: hidden;
}

.sp-gallery-item {
    float: left;
    height: 220px;
    padding: 5px;
    /*width: 20%;*/
}

.sp-gallery-item-img-wrapper {
    float: left;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
    display: block;
    color: inherit;
}

.sp-gallery-item img {
    display: block;
    max-width: 100%;
    left: 50%;
    max-height: 100%;
    max-width: none;
    position: relative;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) translateZ(0);
    -moz-transform: translate(-50%, -50%) translateZ(0);
    -o-transform: translate(-50%, -50%) translateZ(0);
    -ms-transform: translate(-50%, -50%) translateZ(0);
    transform: translate(-50%, -50%) translateZ(0);
}

.sp-gallery-item-text {
    background-color: rgba(255, 255, 255, .7);
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    width: 100%;
}

.sp-gallery-item-text:hover {
    opacity: 1;
}

.sp-gallery-item-text::after {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.sp-gallery-item-text-content {
    display: inline-block;
    vertical-align: middle;
    width: 90%;
}

.sp-button_link,
.sp-button_link:link,
.sp-button_link:visited {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 20px;
    text-decoration: none;
    background: #ccc;
    color: #333;
}

.sp-button_link:hover {
    text-decoration: none;
    background: #333;
    color: #ccc;
}

/*accordion*/
.sp-accordion {
    border: 1px solid #ccc;
    border-radius: 5px;
}

.sp-accordion-title {
    border-top: 1px solid #ccc;
    color: #444;
    cursor: pointer;
    padding: 10px;
    text-align: left;
}

.sp-accordion-title:first-child {
    border-top: none;
}

.sp-accordion-container {
    padding: 0 10px 10px;
    display: none;
    overflow: hidden;
}

.sp-accordion-title:after {
    content: '\02795';
    font-size: 12px;
    color: #777;
    float: right;
    margin: 2px 5px;
}

.sp-accordion-title__active:after {
    content: "\2796";
}

.sp-complex-table {
    display: table;
    table-layout: fixed;
    border-spacing: 10px;
}

.sp-complex-row {
    display: table-row;
}

.sp-complex-col {
    display: table-cell;
    vertical-align: top;
}

/* End */
/* /local/components/bustlers/donate/templates/new/style.css?17697076929288 */
/* /local/templates/.default/components/sprint.editor/blocks/.default/_style.css?17574603463514 */
