/*--------------------------------------------------------------
    Totop
--------------------------------------------------------------*/

    #back-to-top {
        position: fixed; display: none; text-decoration: none; border-radius: 50%; bottom: 20px; transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); -ms-transform: rotate(180deg); right: 20px; overflow: hidden; width: 45px; height: 80px; border: none; z-index: 999; text-indent: -9999px; background-size: 100%; border-radius: 50px; border-width: 2px; border-style: dashed; border-color: var(--wdtPrimaryColor); text-align: center; text-transform: uppercase; line-height: 30px; margin-top: 0px; font-size: 0px; background: var(--wdtBodyBGColor);
    }
    #back-to-top:before {
        content: ""; display: block; width: 8px; height: 8px; margin-left: 17px; top: 8px; border-radius: 4px; -webkit-animation-duration: 1.5s; animation-duration: 1.5s; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-name: scroll; animation-name: scroll; display: block; background-color: var(--wdtPrimaryColor);
    }
    @keyframes scroll { 0% { opacity: 1; transform: translateY(0px); } 100% { opacity: 0; transform: translateY(80px); } }
    @-webkit-keyframes scroll { 0% { opacity: 1; -webkit-transform: translateY(0px); } 100% { opacity: 0; -webkit-transform: translateY(80px); } }

    #back-to-top:after { content: "To Top"; display: block; position: absolute; font-size: 12px; width: 40px; height: 67px; top: -8px; right: 0; text-indent: 0; line-height: 20px; transform: rotate(-180deg); -webkit-transform: rotate(-180deg); -ms-transform: rotate(-180deg); font-weight: 900; }

    /* .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: 20px;
        line-height: 1;
    }

    .back-to-top-icon i:before { margin: 0; }

    #back-to-top:hover .back-to-top-icon {
        margin-top: -4px;
    } */

    /* #back-to-top:after {
        background-color: var(--wdtAccentTxtColor);
        content: "";
        display: block;
        height: 15px;
        margin: 0 auto;
        opacity: 0;
        position: absolute;
        left: 50%;
        top: 50%;
        text-align: center;
        text-indent: 0;
        width: 2px;
        -webkit-transform: translate(-50%, 50%);
        transform: translate(-50%, 50%);
        -webkit-transition: all .3s linear;
        transition: all .3s linear;
    }

    #back-to-top:hover:after {
        margin-top: 2px;
        opacity: 1;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    } */

    #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(--wdtPrimaryColor); color: var(--wdtAccentTxtColor); }


/*--------------------------------------------------------------
    Responsive
--------------------------------------------------------------*/

    @media only screen and (max-width: 1280px) {

        .nav-is-visible #back-to-top {
            opacity: 0;
        }
    }