/*--------------------------------------------------------------
    Totop
--------------------------------------------------------------*/

    #back-to-top {
        position: fixed;
        display: none;
        text-decoration: none;
        bottom: 20px;
        right: 20px;
        overflow: hidden;
        width: 40px;
        height: 40px;
        border: none;
        text-indent: 100%;
        z-index: 9;
        text-indent: -9999px;
    }

    #back-to-top {
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M74.36,73.43A37.53,37.53,0,0,1,59.1,87.85c-2.79,1.5-5.73,1.68-8.69,1.74-8.85.19-17.71.44-26.56.25A21.5,21.5,0,0,1,3,72.53a61.54,61.54,0,0,1-.83-10.16Q1.72,44,1.43,25.59A8.53,8.53,0,0,1,8.5,16.8q8-1.7,16-3.37c4.39-.91,7.73,1.32,8.59,5.71.43,2.18.83,4.35,1.21,6.53.76,4.3-2.15,7.3-6.5,6.76-2.45-.31-4.89-.57-7.34-.83-1.95-.2-2.45.42-1.79,2.25a98.41,98.41,0,0,1,4.44,17,31.71,31.71,0,0,1-.43,11.85c-.07.34-.12.68-.22,1.24C28.52,58.13,35,57.44,42.11,61.6c.35-.71.68-1.44,1.08-2.13,4.29-7.57,10.93-11.56,19.43-12.61a24.09,24.09,0,0,1,14.84,2.88,3,3,0,0,1,1.71,2.58A34.75,34.75,0,0,1,74.36,73.43Z'/%3E%3Cpath d='M97.33,65.85C93.41,79.58,84.83,88.77,70.7,92.21a34,34,0,0,1-13.44.45l-1-.23,1.39-.62C71.28,85.73,79.45,75.36,82,60.58c1.34-7.77-.63-14.62-5.4-20.77-1.88-2.43-3.77-4.85-5.74-7.37L60.18,39.18C61.93,28.34,63.63,17.77,65.37,7l31.32,9L86.54,22.5c.08.15.1.28.18.34,6.33,5.34,9.64,12.33,11,20.32C99.1,50.74,99.46,58.36,97.33,65.85Z'/%3E%3C/svg%3E");
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M74.36,73.43A37.53,37.53,0,0,1,59.1,87.85c-2.79,1.5-5.73,1.68-8.69,1.74-8.85.19-17.71.44-26.56.25A21.5,21.5,0,0,1,3,72.53a61.54,61.54,0,0,1-.83-10.16Q1.72,44,1.43,25.59A8.53,8.53,0,0,1,8.5,16.8q8-1.7,16-3.37c4.39-.91,7.73,1.32,8.59,5.71.43,2.18.83,4.35,1.21,6.53.76,4.3-2.15,7.3-6.5,6.76-2.45-.31-4.89-.57-7.34-.83-1.95-.2-2.45.42-1.79,2.25a98.41,98.41,0,0,1,4.44,17,31.71,31.71,0,0,1-.43,11.85c-.07.34-.12.68-.22,1.24C28.52,58.13,35,57.44,42.11,61.6c.35-.71.68-1.44,1.08-2.13,4.29-7.57,10.93-11.56,19.43-12.61a24.09,24.09,0,0,1,14.84,2.88,3,3,0,0,1,1.71,2.58A34.75,34.75,0,0,1,74.36,73.43Z'/%3E%3Cpath d='M97.33,65.85C93.41,79.58,84.83,88.77,70.7,92.21a34,34,0,0,1-13.44.45l-1-.23,1.39-.62C71.28,85.73,79.45,75.36,82,60.58c1.34-7.77-.63-14.62-5.4-20.77-1.88-2.43-3.77-4.85-5.74-7.37L60.18,39.18C61.93,28.34,63.63,17.77,65.37,7l31.32,9L86.54,22.5c.08.15.1.28.18.34,6.33,5.34,9.64,12.33,11,20.32C99.1,50.74,99.46,58.36,97.33,65.85Z'/%3E%3C/svg%3E");
        width: 50px;
        height: 50px;
        mix-blend-mode: difference;
        -webkit-mix-blend-mode: difference;
        filter: grayscale(1);
        -webkit-filter: grayscale(1);
        transform: scale(1);
        -webkit-transform: scale(1);
    }

    #back-to-top:hover {
        transform: scale(1.03);
        -webkit-transform: scale(1.03);
    }

    #back-to-top > * {
        display: none;
    }

    /* .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(--wdtPrimaryColor); }
a
    /* Secondary */
    #back-to-top:hover { background-color: var(--wdtPrimaryColor); }


/*--------------------------------------------------------------
    Responsive
--------------------------------------------------------------*/

    @media only screen and (max-width: 1280px) {

        .nav-is-visible #back-to-top {
            opacity: 0;
        }
    }