body button.vozeando-back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--e-global-color-accent, #76D802) !important;
    color: var(--e-global-color-primary, #010E29) !important;
    box-shadow: 0 10px 28px rgba(1, 14, 41, .22);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease, background-color .22s ease, color .22s ease, box-shadow .22s ease;
    font-size: 0;
    line-height: 0;
}

.vozeando-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.vozeando-back-to-top svg {
    display: block;
    position: absolute !important;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: translate(-50%, -50%) !important;
}

body button.vozeando-back-to-top:hover,
body button.vozeando-back-to-top:focus-visible {
    background: var(--e-global-color-secondary, #0B64E7) !important;
    color: #fff !important;
    box-shadow: 0 12px 32px rgba(11, 100, 231, .3);
}

.vozeando-back-to-top:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 767px) {
    body button.vozeando-back-to-top {
        right: 16px;
        bottom: 16px;
        width: 46px;
        height: 46px;
    }

    .vozeando-back-to-top svg {
        width: 22px;
        height: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vozeando-back-to-top {
        transition-duration: .01ms;
    }
}
