/* BrokenPinea Scroll Nav v1.1.0 */

.brokenpinea-scroll-bottom {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--bp-border, #dce8d8);
    border-radius: 999px;
    background: var(--bp-card, #ffffff);
    color: var(--bp-green-dark, #3f8f2f);
    box-shadow: 0 5px 18px rgba(47, 82, 40, 0.16);
    cursor: pointer;
    font-size: 21px;
    line-height: 1;
    transition: transform .15s ease, opacity .15s ease, background .15s ease, color .15s ease;
}

.brokenpinea-scroll-bottom:hover,
.brokenpinea-scroll-bottom:focus-visible {
    background: var(--bp-green, #65b545);
    color: #ffffff;
    transform: translateY(-2px);
    outline: none;
}

.brokenpinea-scroll-bottom.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
}

@media (max-width: 700px) {
    .brokenpinea-scroll-bottom {
        right: 12px;
        bottom: 12px;
        width: 40px;
        height: 40px;
        font-size: 19px;
    }
}
