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

#back-to-top {
    text-decoration: none;
    right: -30px;
    overflow: hidden;
    border: none;
    text-indent: 100%;
    bottom: 80px;
    height: 21px;
    margin: 0;
    position: fixed;
    -webkit-transform: rotate( -90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate( -90deg);
    width: 113px;
    z-index: 999;
}

.back-to-top-icon {
    display: block;
    text-indent: 0;
    font-family: var(--DTFontTypo_Alt);
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    position: relative;
    padding-left: 3px;
}

.back-to-top-icon:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #1a1a1a;
    right: 0;
    margin: 0 auto;
    transition: all 300ms linear;
    -webkit-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
}

.back-to-top-icon:hover:after {
    width: 70%;
}

#back-to-top:hover:after {
    margin-top: 3px;
    opacity: 1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#back-to-top:active,
#back-to-top:focus {
    outline: none;
}


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


/* Primary */


/* #back-to-top {
    background-color: var(--DTPrimaryColor);
} */


/* Secondary */


/* #back-to-top:hover {
    background-color: var(--DTSecondaryColor);
} */


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

@media only screen and (max-width: 1280px) {
    .nav-is-visible #back-to-top {
        opacity: 0;
    }
}