/*
Theme Name: Socialink
Theme URI: https://socialink.co.il/
Description: Child theme for Hello Elementor
Author: RitaZinger
Template: hello-elementor
Version: 1.0.0
*/


.underline_anim {
    display: inline;
    padding-bottom: 0.2em;
    background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0 2px;
    box-sizing: border-box;
}

.underline_anim.underline_hover {
    -webkit-animation: underline_hover_on 0.8s cubic-bezier(0.25,0.8,0.25,1) both;
    animation: underline_hover_on 0.8s cubic-bezier(0.25,0.8,0.25,1) both
}

@-webkit-keyframes underline_hover_on {
    0% {
        background-size: 0 2px
    }

    100% {
        background-size: 100% 2px
    }
}

@keyframes underline_hover_on {
    0% {
        background-size: 0 2px
    }

    100% {
        background-size: 100% 2px
    }
}

.underline_anim.underline_hover:hover {
    -webkit-animation: underline_hover_off 0.8s cubic-bezier(0.25,0.8,0.25,1) both;
    animation: underline_hover_off 0.8s cubic-bezier(0.25,0.8,0.25,1) both
}

@-webkit-keyframes underline_hover_off {
    0% {
        background-size: 100% 2px
    }

    100% {
        background-size: 0 2px
    }
}

@keyframes underline_hover_off {
    0% {
        background-size: 100% 2px
    }

    100% {
        background-size: 0 2px
    }
}

.menu_hover_strike ul li a.elementor-item::after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 0.85em;
    right: 0.85em;
    height: 2px;
    background-color: currentColor;
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale3d(0, 1, 1);
    transform-origin: center left;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}
.menu_hover_strike ul li a.elementor-item:hover::after {
    transform: scale3d(1, 1, 1);
}
.menu_hover_strike ul li.current-menu-item a.elementor-item::after,
.menu_hover_strike ul li a.elementor-item-active::after {
    transform: scale3d(1, 1, 1) !important;
    transition: none !important;
}

/* Hide the strikethrough (and everything else) inside Elementor's hidden
   sticky spacer clone. Must out-specify the strike's own visibility:visible. */
.elementor-sticky__spacer .menu_hover_strike ul li a.elementor-item::after,
.elementor-sticky__spacer .menu_hover_strike ul li a.elementor-item-active::after,
.elementor-sticky__spacer.menu_hover_strike ul li a.elementor-item::after {
	visibility: hidden !important;
	opacity: 0 !important;
}
/* belt-and-suspenders: hide all spacer contents too */
.elementor-sticky__spacer,
.elementor-sticky__spacer *,
.elementor-sticky__spacer *::before,
.elementor-sticky__spacer *::after {
	visibility: hidden !important;
}


#back-to-top {
    position: fixed;
    right: 40px;
    bottom: -60px;
    width: 44px;
    height: 44px;
    background: #0d0d12;
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 9999;
    cursor: pointer;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 40px;
}

#back-to-top:hover {
    background: #e93314;
}

#back-to-top::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    margin-top: 4px;
}

/* Back to top button — mirror to left side on RTL page */
.slk-rtl-page #back-to-top {
    right: auto;
    left: 40px;
}