:root {
    --x-backtotop-stroke-width: 4px;
}

[data-x-backtotop] {
    position: fixed;
    background: none;
    border: none;
    box-shadow: none;
    z-index: 10;
    box-shadow: 10px 10px 30px 0 rgb(0 0 0 / 12%);
    transition: all .125s ease-in;
    text-align: center;
    opacity: 0;
    width: 60px;
    height: 60px;
    right: 40px;
    bottom: 40px;
    transform: translateY(10px);
}

[data-x-backtotop*=progress] {
    height: auto!important;
}

[data-x-backtotop*=progress] {
    border-radius: 1000px;
}

body.bricks-is-frontend [data-x-backtotop]:focus {
    outline: none;
}

body.bricks-is-frontend [data-x-backtotop]:focus-visible {
    outline: thin dotted currentcolor;
}

.x-back-to-top.brx-draggable.is-empty {
    min-height: 0;
    min-width: 0;
}

.x-back-to-top[aria-hidden=true] {
    pointer-events: none;
}

.x-back-to-top_progress {
    vertical-align: middle;
    overflow: visible;
    z-index: 1;
}

svg.x-back-to-top_progress:not(:root) {
    overflow: visible;
}

.x-back-to-top_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

[data-x-backtotop*=progress] .x-back-to-top_content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    border-radius: 1000px;
}

.x-back-to-top_progress-line {
    fill: transparent;
    stroke-width: calc( var(--x-backtotop-stroke-width) + 1px);
    stroke: #111;
    stroke-linecap: round;
}

.x-back-to-top_progress-background {
    stroke: #e5e5e5;
    fill: transparent;
    stroke-width: var(--x-backtotop-stroke-width);
}

/* oxyprops */
svg.x-back-to-top_progress {
    inline-size: auto;
}

.x-back-to-top_builder-preview {
    opacity: 1!important;
    transform: none!important;
}

.brx-body.iframe [data-x-backtotop].brx-draggable {
    transition: all .125s ease-in
}

.brx-body.iframe .x-back-to-top {
    transition-property: all!important;
}

.brx-body.iframe .brx-draggable.is-empty:not(.editing) {
    outline: none;
}
:root {
    --x-cursor-text-scale: 10;
    --x-cursor-trail-scale: 3;
    --x-cursor-transition: 500ms;
    --x-cursor-text-start: 0.7;
    --x-cursor-trail-start: 1;
    --x-cursor-text-end: 0;
    --x-cursor-trail-down: 0.8;
    --x-cursor-text-down: 0.3;
    --x-cursor-display: block;
    --x-cursor-ball-color: rgba(56, 76, 255, 0.88);
    --x-cursor-trail-color: rgba(56,56,56,0.05);
    --x-cursor-text-color: inherit;
}

.x-interactive-cursor {
    visibility: hidden;
}

.x-interactive-cursor.x-cursor_ready {
    visibility: visible;
}

.extras-inside-lightbox .x-interactive-cursor {
    display: none;
}

.x-cursor_ball {
    position: fixed;
    top: 300px;
    left: 300px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: 100001;
    pointer-events: none!important;
    -webkit-transform: translate3d(-50%, -50%,0);
            transform: translate3d(-50%, -50%,0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
}

.x-cursor_trail {
    background-color: var(--x-cursor-trail-color);
    position: fixed;
    top: 300px;
    left: 300px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none!important;
    -webkit-transform: translate3d(-50%, -50%,0) scale(calc(var(--x-cursor-trail-start)/10));
            transform: translate3d(-50%, -50%,0) scale(calc(var(--x-cursor-trail-start)/10));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: background-color var(--x-cursor-transition) ease, opacity var(--x-cursor-transition) ease, -webkit-transform var(--x-cursor-transition) ease;
    transition: background-color var(--x-cursor-transition) ease, opacity var(--x-cursor-transition) ease, -webkit-transform var(--x-cursor-transition) ease;
    will-change: transform,opacity;
}

[data-x-cursor] {
    color: #fff;
    font-size: 14px;
}


.x-cursor_text {
    opacity: 0;
    -webkit-transition: all var(--x-cursor-transition) ease;
    transition: all var(--x-cursor-transition) ease;
    color: var(--x-cursor-text-color);
}

.x-cursor_text-visible .x-cursor_text {
    opacity: 1;
}

.x-cursor_mousedown .x-cursor_text,
.x-cursor_text-visible.x-cursor_mousedown .x-cursor_text {
    opacity: 0;
}

.x-cursor_ball::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border-radius: 50%;
    right: 0;
    background-color: var(--x-cursor-ball-color);
    z-index: -1;
    -webkit-transform: translateZ(0) scale(calc(var(--x-cursor-text-start)/10));
            transform: translateZ(0) scale(calc(var(--x-cursor-text-start)/10));
    -webkit-transition: background-color var(--x-cursor-transition) ease, opacity var(--x-cursor-transition) ease, -webkit-transform var(--x-cursor-transition) ease;
    transition: background-color var(--x-cursor-transition) ease, opacity var(--x-cursor-transition) ease, transform var(--x-cursor-transition) ease;
    will-change: transform,opacity;
}

.x-cursor_trail-grow .x-cursor_trail {
    -webkit-transform: translate3d(-50%, -50%,0) scale(calc(var(--x-cursor-trail-scale)/10));
            transform: translate3d(-50%, -50%,0) scale(calc(var(--x-cursor-trail-scale)/10));
}

.x-cursor_trail-grow .x-cursor_ball::after {
    -webkit-transform: translateZ(0) scale(calc(var(--x-cursor-text-end)/10));
            transform: translateZ(0) scale(calc(var(--x-cursor-text-end)/10));
}

.x-cursor_grow .x-cursor_ball::after,
.x-cursor_text-visible .x-cursor_ball::after {
    -webkit-transform: translateZ(0) scale(calc(var(--x-cursor-text-scale)/10));
            transform: translateZ(0) scale(calc(var(--x-cursor-text-scale)/10));
}

.x-cursor_grow .x-cursor_trail,
.x-cursor_text-visible .x-cursor_trail {
    -webkit-transform: translate3d(-50%, -50%,0) scale(0);
            transform: translate3d(-50%, -50%,0) scale(0);
}

.x-cursor_mousedown .x-cursor_ball::after {
    -webkit-transform: translateZ(0) scale(calc(var(--x-cursor-text-down)/10));
            transform: translateZ(0) scale(calc(var(--x-cursor-text-down)/10));
}

.x-cursor_mousedown .x-cursor_trail {
    -webkit-transform: translate3d(-50%, -50%,0) scale(calc(var(--x-cursor-trail-down)/10));
            transform: translate3d(-50%, -50%,0) scale(calc(var(--x-cursor-trail-down)/10));
}


.x-cursor_text {
    z-index: 10;
}

.x-cursor_offpage .x-cursor_ball::after,
.x-cursor_iframe .x-cursor_ball::after {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
}

.x-cursor_offpage .x-cursor_trail,
.x-cursor_iframe .x-cursor_trail {
    opacity: 0;
    -webkit-transform: translate3d(-50%, -50%,0) scale(0);
            transform: translate3d(-50%, -50%,0) scale(0);
}

.brx-body.iframe .x-interactive-cursor {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    left: 0;
    top: 0;
    z-index: 999999;
}

.brx-body.iframe .x-cursor_ball,
.brx-body.iframe .x-cursor_trail {
    position: absolute;
    top: 50%;
    left: 50%;
}