/*--------------------------------------------------------------
    Totop
--------------------------------------------------------------*/

    #back-to-top {
        position: fixed;
        display: none;
        text-decoration: none;
        bottom: 20px;
        right: 20px;
        overflow: hidden;
        width: 54px;
        height: 54px;
        border: none;
        text-indent: 100%;
        z-index: 9;
        text-indent: -9999px;
        border-radius: var(--wdtRadius_Full);
        -webkit-border-radius: var(--wdtRadius_Full);
        box-shadow: 0 0 10px 2px rgb(var(--wdtAccentTxtColorRgb), .3);
    }

    .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: var(--wdt-Ad-Transition);
        -moz-transition: var(--wdt-Ad-Transition);
        -o-transition: var(--wdt-Ad-Transition);
        -ms-transition: var(--wdt-Ad-Transition);
        transition: var(--wdt-Ad-Transition);
        text-indent: 0;
        text-align: center;
        font-size: 20px;
        line-height: 1;
    }

    #back-to-top .back-to-top-icon svg .wdt-top-arrow-1{
        transform: translateY(-5px);     transition: var(--wdt-Ad-Transition);
    }
    #back-to-top:hover .back-to-top-icon svg .wdt-top-arrow-1{
        transform: translateY(0px);
    }

    #back-to-top .back-to-top-icon svg .wdt-top-arrow-2{
        opacity: 0;
        transform: translateY(10px);     transition: var(--wdt-Ad-Transition);
    }
    #back-to-top:hover .back-to-top-icon svg .wdt-top-arrow-2{
            opacity: 1;
            transform: translateY(0px);
    }

    /* .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: var(--wdt-Ad-Transition);
        transition: var(--wdt-Ad-Transition);
    } */

    #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(--wdtPrimaryColor); }

    /* 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;
        }
    }