/*--------------------------------------------------------------
    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;
    border-radius: 7px;
}

.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(--DTWhiteColor);
    -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
}

#back-to-top:hover .back-to-top-icon {
    margin-top: -6px;
}

#back-to-top:after {
    background-color: #fff;
    content: "";
    display: block;
    height: 15px;
    margin: 0 auto;
    opacity: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    text-align: center;
    text-indent: 0;
    width: 2px;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

#back-to-top:hover:after {
    margin-top: 1px;
    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;
    }
}