

/* Start:/local/components/bustlers/donate/templates/form26/style.css?177935676210463*/
:root {
    --red: #DA352C;
    --dark-red: #AA1D1D;
    --light-grey: #EFEFEF;
    --white: #FFF;
    --black: #141412;
    --text-light: #888;
    --anim-speed: 0.2s;
}

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

/* 1. CONTAINER */
.fbl-form {
    background: var(--light-grey);
    width: 100%;
    padding: 2.2rem 1.7rem 2rem;
    border-radius: 1.88rem;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
    color: var(--black);
}

.fbl-form h2 {
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.05;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: -0.005em;
    margin: 0 0 1.4rem 0;
    color: var(--black);
}

/* 2. TABS */
.fbl-form__type-group {
    display: flex;
    background: transparent;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--black);
    position: relative;
    gap: 0;
}

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

.fbl-form__type-group label {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0 0.7rem;
    cursor: pointer;
    color: var(--black);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: color var(--anim-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    background: none;
    border-radius: 0;
    height: auto;
    font-weight: 400;
}

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

.tab-indicator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--red);
    transition: transform var(--anim-speed) ease;
    pointer-events: none;
}

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

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

#type-monthly:checked+label,
#type-once:checked+label {
    background: transparent;
    color: var(--red);
    font-weight: 400;
}

@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);
    font-size: 0.85rem;
}

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

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

.fbl-form__amount-group label {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 0.6rem 0;
    border: 1px solid var(--black);
    border-radius: 2.5rem;
    background: var(--white);
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.15s;
    color: var(--black);
    width: 100%;
    box-sizing: border-box;
}

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

.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);
}

.fbl-form__custom-amount {
    width: 100%;
    height: auto;
    padding: 0.6rem 0.7rem;
    border: 1px solid var(--black);
    border-radius: 2.5rem;
    text-align: center;
    font-size: 0.8rem;
    box-sizing: border-box;
    font-family: inherit;
    background: var(--white);
    color: var(--black);
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
    transition: all 0.15s;
}

.fbl-form__custom-amount::-webkit-outer-spin-button,
.fbl-form__custom-amount::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

.fbl-form__custom-amount:focus,
.fbl-form__custom-amount:not(:placeholder-shown) {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.fbl-form__custom-amount:focus::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* 4. IMPACT */
.impact-box {
    margin: 0 0 1.2rem;
    background: transparent;
    border: none;
    padding: 0;
    display: block;
}

.impact-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.impact-text {
    font-size: 0.85rem;
    line-height: 1.3;
    margin: 0;
    color: var(--black);
}

.impact-text span {
    display: block;
    font-size: 0.65rem;
    color: #666;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.fbl-form__input {
    width: 100%;
    height: 3rem;
    padding: 1.15rem 1.1rem 0.45rem;
    border: 1px solid var(--black);
    border-radius: 2.5rem;
    font-size: 0.85rem;
    box-sizing: border-box;
    font-family: inherit;
    background: var(--white);
    color: var(--black);
    outline: none;
    transition: background 0.15s;
}

.fbl-form__input:focus {
    background: var(--white);
    border-color: var(--black);
}

.fbl-form__label {
    position: absolute;
    left: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: var(--text-light);
    pointer-events: none;
    transition: 0.18s ease;
    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.55rem;
    transform: none;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--black);
    font-weight: 400;
}

/* Email inline hint */
.fbl-form__email-hint {
    display: block;
    font-size: 0.65rem;
    margin-top: 4px;
    padding: 0 1.15rem;
    min-height: 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
    line-height: 1.4;
}

.fbl-form__email-hint:not(:empty) {
    max-height: 3rem;
    opacity: 1;
}

.fbl-form__email-hint--error { color: #c0392b; }
.fbl-form__email-hint--typo { color: #b7600a; }
.fbl-form__email-hint--checking { color: #888; }
.fbl-form__email-hint--checking .fbl-hint-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #ddd;
    border-top-color: #888;
    border-radius: 50%;
    animation: fblHintSpin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}
@keyframes fblHintSpin { to { transform: rotate(360deg); } }
.fbl-form__email-hint--ok { color: #2a9d3a; }
.fbl-form__email-hint--info { color: #6a6a6a; }

.fbl-hint-icon {
    margin-right: 4px;
    font-style: normal;
}

.fbl-hint-fix {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    font-size: inherit;
    color: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline dotted;
    text-underline-offset: 2px;
}

.fbl-hint-fix:hover {
    text-decoration: underline;
}

/* 6. OPTIONAL TOGGLES */
.optional-toggles {
    display: flex;
    gap: 0.9rem;
    margin: 0.7rem 0 1.1rem;
    justify-content: flex-start;
}

.toggle-link {
    font-size: 0.65rem;
    color: var(--black);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2rem;
    border: none;
    transition: color var(--anim-speed);
}

.toggle-link:hover {
    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: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.6rem;
    color: var(--black);
    cursor: pointer;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.1rem;
    accent-color: var(--black);
    cursor: pointer;
    width: 0.95rem;
    height: 0.95rem;
    appearance: auto;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.6rem;
    margin: 0;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.checkbox-group a {
    color: var(--black);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2rem;
    font-size: 0.6rem;
}

.fbl-form__wishes {
    width: 100%;
    height: 6rem;
    padding: 0.75rem 1.1rem;
    border: 1px solid var(--black);
    border-radius: 1.2rem;
    margin-top: 0.5rem;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 0.85rem;
    background: var(--white);
    color: var(--black);
    resize: vertical;
    display: none;
    outline: none;
}

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

.fbl-form__wishes:focus {
    border-color: var(--black);
}

/* 8. SUBMIT BUTTON */
.fbl-form__submit {
    width: 100%;
    background: var(--red);
    color: var(--white);
    height: 3rem;
    border: 1px solid var(--red);
    border-radius: 2.5rem;
    font-size: 0.84rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    margin-top: 0.7rem;
    font-family: inherit;
    transition: background var(--anim-speed);
}

.fbl-form__submit:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
}

/* Hide legacy note */
.fbl-form__subscription-note {
    display: none !important;
}

/* Adaptive */
@media (max-width: 990px) {
    .fbl-form {
        padding: 1.8rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .fbl-form {
        padding: 1.6rem 1.1rem;
    }

    .fbl-form__amount-group {
        gap: 0.3rem;
    }

    .fbl-form__amount-group label,
    .fbl-form__custom-amount {
        font-size: 0.75rem;
        padding: 0.55rem 0.4rem;
    }

    .fbl-form h2 {
        font-size: 1.6rem;
    }
}

/* End */


/* Start:/local/templates/.default/components/sprint.editor/blocks/.default/_style.css?17720471493514*/
/* Общие стили для блоков */
.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/form26/style.css?177935676210463 */
/* /local/templates/.default/components/sprint.editor/blocks/.default/_style.css?17720471493514 */
