/*
Theme Name: Sunex Child
Template: sunex
Theme URI: https://1.envato.market/sunex-wp
Description: Sunex Child Theme
Author: AwaikenThemes
Author URI: https://awaikenthemes.com/
Version: 1.0.0
Text Domain: sunex-child
*/

/* =====================================
   Volnex Back To Top
===================================== */

:root{
    --volnex-backtop-offset: 100px;
}

#volnex-back-top{
    position: fixed;
    right: 30px;
    bottom: var(--volnex-backtop-offset);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #4AAB3D;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    z-index: 99999;
}

#volnex-back-top.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#volnex-back-top:hover{
    background: #001A29;
    transform: translateY(-4px);
}

#volnex-back-top svg{
    width: 18px;
    height: 18px;
}

html{
    scroll-behavior: smooth;
}

@media (max-width:768px){

    :root{
        --volnex-backtop-offset: 60px;
    }

    #volnex-back-top{
        width: 46px;
        height: 46px;
        right: 18px;
    }

    #volnex-back-top svg{
        width: 16px;
        height: 16px;
    }
}