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

#back-to-top {position: fixed;display: none;text-decoration: none;bottom: 30px;right: 30px;overflow: hidden;width: 60px;height: 60px;border: none;text-indent: 100%;z-index: 9;text-indent: 0;border-radius: 50%;-webkit-border-radius: 50%;font-size: var(--wdtFontSize_H6);}
.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 span#back-to-top-text {font-size: var(--wdtFontSize_H6);color: var(--wdtPrimaryColor);width: 100%;height: 100%;display: inline-flex;justify-content: center;align-items: center;font-family: var(--wdtFontTypo_Alt);font-style: italic;letter-spacing: var(--wdtLetterSpacing_3X);}
#back-to-top:active,
#back-to-top:focus {outline: none;}
#back-to-top:before {content: "";-webkit-mask-image: url(../images/totop.png);-webkit-mask-repeat: no-repeat;-webkit-mask-position: center center;-webkit-mask-size: 60px;mask-image: url(../images/totop.png);mask-repeat: no-repeat;mask-position: center center;mask-size: 60px;position: absolute;top: 0;bottom: 0;left: 0;right: 0;margin: auto;background: var(--wdtPrimaryColor);animation: RotateInBG 2s infinite;-webkit-animation: RotateInBG 2s infinite;-moz-animation: RotateInBG 2s infinite;-o-animation: RotateInBG 2s infinite;-ms-animation: RotateInBG 2s infinite;}

@keyframes RotateInBG
{
0% {-webkit-transform-origin: center;transform-origin: center;-webkit-transform: rotate3d(0, 0, 1, -200deg);transform: rotate3d(0, 0, 1, -200deg);opacity: 0;}
100% {-webkit-transform-origin: center;transform-origin: center;-webkit-transform: none;transform: none;opacity: 1;}
}




/*--------------------------------------------------------------
    Accents
--------------------------------------------------------------*/


    /* Primary */
    #back-to-top { background-color: transparent; }

    /* Secondary */
    #back-to-top:hover { background-color: transparent; }


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

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

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