/*--------------------------------------------------------------
    Totop
--------------------------------------------------------------*/

    #back-to-top {
        position: fixed !important; text-decoration: none; bottom: 20px; right: 20px; 
        overflow: hidden; width: 50px; height: 50px; border: none; text-indent: 100%; z-index: 9; text-indent: -9999px; border-radius: var(--wdtRadius_Full); }

    .back-to-top-icon {
        display: block; position: absolute; left: 0; right: 0; margin: 0 auto; top: 50%; transform: translateY(-50%); 
        -moz-transform: translateY(-50%); -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); 
        color: var(--wdtAccentTxtColor); -webkit-transition: all .3s linear; -moz-transition: all .3s linear; 
        -o-transition: all .3s linear; -ms-transition: all .3s linear; transition: all .3s linear; text-indent: 0; 
        text-align: center; font-size: var(--wdtFontSize_H5); line-height: 1; }

    .back-to-top-icon i {     
        position: relative; display: flex; align-items: center; justify-content: center; }
    .back-to-top-icon i:before {
        content: '' !important; position: absolute; width: 25px; height: 25px; top: 0; right: 0; bottom: 0; left: 0; mask-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' style='enable-background:new 0 0 100 100;' xml:space='preserve'%3E%3Cpath d='M50.1,2.8c2.6,3.7,9.1,14.3,14.4,23.4c8.6,14.9,15.1,27.7,18.7,36.9c3.1,7.8,3.7,9.3,5.1,12.1c0.9,1.8,1.7,3.3,2.3,4.2 c0.4,0.6,0.7,0.9,1.1,1.2c0.6,0.5,0.1,0.4-2.1-0.1c-1-0.2-2.2-0.6-2.7-0.7c-4.5-1.4-9-4.1-13-7.6c-6.2-5.4-12.4-13.8-16.6-22.5 c-0.4-0.7-0.6-1.3-0.6-1.2s0.1,0.7,0.2,1.5c0.5,3.8,1.2,10.9,1.5,14.9c0.4,6.3,0.5,7.1,0.5,16.1c0,5.5,0,8.3,0.1,9.1 c0.3,4.3,0.6,6.3,1.1,7c0.4,0.6,0.2,0.7-0.5,0.2c-2.9-1.8-4.6-3.1-6.4-4.8c-4.2-4.1-7.5-9.7-9.9-16.8c-1.6-4.7-2.8-10.2-3.4-15.3 c-0.1-1.1-0.4-4.4-0.4-4.9c0-0.2,0-0.2-0.1,0.1c-3.1,5.1-5.9,8.8-9.2,12.5c-5.3,5.7-11,9.7-16.9,11.7C12.1,80.2,9,81,8.4,81.1 c-0.5,0-0.5-0.1-0.1-0.4c0.6-0.5,1.6-2,2.9-4.6c1.4-2.9,2.2-4.6,5.4-12.7c1.9-4.7,3.7-8.7,7-15.4c4.7-9.3,10.4-19.5,17.3-31.1 c4-6.9,8.7-14.3,9-14.4C49.9,2.5,50,2.6,50.1,2.8L50.1,2.8z'/%3E%3C/svg%3E%0A"); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: left bottom; mask-position: left bottom; -webkit-mask-size: contain; mask-size: contain; background-color: var(--wdtAccentTxtColor); margin: auto; transition:var(--wdtAltTransition); }

    #back-to-top:active, #back-to-top:focus { outline: none; }

    #back-to-top:hover i:before { background:var(--wdtSecondaryColor) }


/*--------------------------------------------------------------
    Accents
--------------------------------------------------------------*/


    /* Primary */
    #back-to-top { background-color: var(--wdtPrimaryColor); box-shadow: 0 0 0px 1px var(--wdtPrimaryColor); }

    /* Secondary */
    #back-to-top:hover { background-color: var(--wdtAccentTxtColor); }


/*--------------------------------------------------------------
    Responsive
--------------------------------------------------------------*/

    @media only screen and (max-width: 1280px) {

        .nav-is-visible #back-to-top {
            opacity: 0;
        }
    }