.tp-back-to-top-wrap {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tp-back-to-top-wrap.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tp-back-to-top {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #187719;
    border-radius: 0;
    background: #187719;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 2px 2px 6.8px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.tp-back-to-top:hover {
    background: #ffffff;
    color: #187719;
}

.tp-back-to-top:focus-visible {
    background: #ffffff;
    color: #187719;
    outline: 2px solid #187719;
    outline-offset: 3px;
}

.tp-back-to-top svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (max-width: 575.98px) {
    .tp-back-to-top-wrap {
        right: 16px;
        bottom: 16px;
    }

    .tp-back-to-top {
        width: 44px;
        height: 44px;
    }
}
