#header-outer {
z-index: 398!important;
} #cursor-cont {
z-index: 399!important;
position: absolute; }
#cursor {
--size: 8px;
position: fixed;
top: calc(calc(var(--size) / 2) * -1);
left: calc(calc(var(--size) / 2) * -1);
width: var(--size);
height: var(--size);
background-color: var(--secundario);
border-radius: 50%;
pointer-events: none;
z-index: 999;
}
#cursor-border {
--size: 40px;
position: fixed;
top: calc(var(--size) / -2);
left: calc(var(--size) / -2);
width: var(--size);
height: var(--size);
border-radius: 50%;
box-shadow: 0 0 0 1px var(--principal);
pointer-events: none;
transition: top 0.15s ease-out, left 0.15s ease-out, width 0.15s ease-out,
height 0.15s ease-out, background-color 0.15s ease-out;
z-index: 999;
}