/*--------------------------------------------------------------
    Totop
--------------------------------------------------------------*/

    #back-to-top {
        position: fixed;
        display: none;
        text-decoration: none;
        bottom: 20px;
        right: 20px;
        overflow: hidden;
        width: clamp(2.8125rem, 2.6035rem + 0.9554vw, 3.75rem);
        height: clamp(2.8125rem, 2.6035rem + 0.9554vw, 3.75rem);
        background: var(--wdtAccentTxtColor);
        border: 1px solid var(--wdtPrimaryColor);
        border-radius: var(--wdtRadius_Full);
        text-indent: 100%;
        z-index: 9;
        text-indent: -9999px;
    }

    .back-to-top-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        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 { display: inherit; overflow: hidden; }

    .back-to-top-icon i:before { 
        content: "";
        font-family: 'kothu-final-font';
        position: relative;
        display: inline-block;
        background: var(--wdtPrimaryColor);
        margin: 0;
        width: clamp(1.25rem, 1.1107rem + 0.6369vw, 1.875rem);
        height: clamp(1.25rem, 1.1107rem + 0.6369vw, 1.875rem);
        mask-repeat: no-repeat;
        -webkit-mask-repeat: no-repeat;
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 30 30' xml:space='preserve'%3E%3Cpath d='M25.1,20L24,14.7H7L5.9,20H25.1z'/%3E%3Cpath d='M30,30v-3.4c0-0.7-0.6-1.2-1.2-1.2h-2.5l-0.6-2.7H5.3l-0.6,2.7H2.2C1.5,25.4,1,26,1,26.6V30H30L30,30z'/%3E%3Cpath d='M20.7,0l2.4,10.7H7.9L10.3,0H20.7z'/%3E%3C/svg%3E");
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 30 30' xml:space='preserve'%3E%3Cpath d='M25.1,20L24,14.7H7L5.9,20H25.1z'/%3E%3Cpath d='M30,30v-3.4c0-0.7-0.6-1.2-1.2-1.2h-2.5l-0.6-2.7H5.3l-0.6,2.7H2.2C1.5,25.4,1,26,1,26.6V30H30L30,30z'/%3E%3Cpath d='M20.7,0l2.4,10.7H7.9L10.3,0H20.7z'/%3E%3C/svg%3E");
        transition: var(--wdtBaseTransition);
        -webkit-transition: var(--wdtBaseTransition);
     }

    /* #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); box-shadow: 0 0 10px 3px rgb(var(--wdtAccentTxtColorRgb), .5); } */

    /* 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;
        }
    }