/*--------------------------------------------------------------
    Totop
--------------------------------------------------------------*/

    #back-to-top {
        border-width: 0;
        display: none;
        height: 60px;
        margin: 0;
        overflow: hidden;
        position: fixed;
        bottom: 20px;
        right: 20px;
        text-decoration: none;
        text-indent: 100%;
        text-indent: -9999px;
        width: 60px;
        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);
    }

    .back-to-top-icon i:before { content: ""; height: 48px; margin: auto; width: 48px; 
        background-image: -webkit-linear-gradient(-45deg, var(--wdtPrimaryColor) 0%, var(--wdtSecondaryColor) 100%); 
        background-image: linear-gradient(-45deg, var(--wdtPrimaryColor) 0%, var(--wdtSecondaryColor) 100%);         
        -webkit-mask-image: url("../images/butterfly-top-view-black-shape.png"); -webkit-mask-position: center center; -webkit-mask-repeat: no-repeat; -webkit-mask-size: contain;
        mask-image: url("../images/butterfly-top-view-black-shape.png"); mask-position: center center; mask-repeat: no-repeat; mask-size: contain;
    }

    #back-to-top:hover {
        transform: translateY(-5px);
    }

    #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;
        }
    }