/*--------------------------------------------------------------
    Totop
--------------------------------------------------------------*/

    #back-to-top {
        border-width: 0;
        display: none;
        height: 46px;
        margin: 0;
        overflow: hidden;
        position: fixed;
        bottom: 20px;
        right: 20px;
        text-decoration: none;
        text-indent: 100%;
        text-indent: -9999px;
        width: 46px;
        border-radius: var(--wdtRadius_Full);
        /* box-shadow: 0px 10px 20px -10px rgba(var(--wdtHeadAltColorRgb), 0.15); */
        z-index: 9;
    }

    .back-to-top-icon, .back-to-top-icon i {
        display: flex;
        font-size: 20px;
        height: 100%;
        line-height: 1;
        text-align: center;
        text-indent: 0;
        width: 100%;
        -webkit-transition: var(--wdtBaseTransition);
        transition: var(--wdtBaseTransition);
        background: var(--wdtSecondaryColor);
    }

    .back-to-top-icon i:before { content: ''; height: 46px; margin: auto; width: 46px;      
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='25px' height='40px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EArrow-Up%3C/title%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Arrow-Up'%3E%3Crect id='Rectangle' fill-rule='nonzero' x='0' y='0' width='24' height='24'%3E%3C/rect%3E%3Cline x1='12' y1='6.5' x2='12' y2='18' id='Path' stroke='%230C0310' stroke-width='2' stroke-linecap='round'%3E%3C/line%3E%3Cpath d='M16,10 L12.7071,6.70711 C12.3166,6.31658 11.6834,6.31658 11.2929,6.70711 L8,10' id='Path' stroke='%230C0310' stroke-width='2' stroke-linecap='round'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); -webkit-mask-position: center center; -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain;
        mask-image: url("data:image/svg+xml,%3Csvg width='25px' height='40px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3EArrow-Up%3C/title%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Arrow-Up'%3E%3Crect id='Rectangle' fill-rule='nonzero' x='0' y='0' width='24' height='24'%3E%3C/rect%3E%3Cline x1='12' y1='6.5' x2='12' y2='18' id='Path' stroke='%230C0310' stroke-width='2' stroke-linecap='round'%3E%3C/line%3E%3Cpath d='M16,10 L12.7071,6.70711 C12.3166,6.31658 11.6834,6.31658 11.2929,6.70711 L8,10' id='Path' stroke='%230C0310' stroke-width='2' stroke-linecap='round'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); mask-position: center center; mask-repeat: no-repeat; mask-size: contain; background-color: var(--wdtHeadAltColor);
    }

    /* #back-to-top:hover {
        transform: translateY(-5px);
    } */
    .back-to-top-icon:hover, .back-to-top-icon i:hover {
        background: var(--wdtPrimaryColor);
    }
    .back-to-top-icon i:hover:before { background-color: var(--wdtAccentTxtColor);}

    #back-to-top:active,
    #back-to-top:focus {
        outline: none;
    }


/*--------------------------------------------------------------
    Accents
--------------------------------------------------------------*/


    /* Primary */
    #back-to-top { background-color: var(--wdtBodyBGColor); }

    /* Secondary */
/*     #back-to-top:hover { background-color: var(--wdtSecondaryColor); } */


/*--------------------------------------------------------------
    Responsive
--------------------------------------------------------------*/

    @media only screen and (max-width: 1280px) {

        .nav-is-visible #back-to-top {
            opacity: 0;
        }
    }