   /*
*
* ToTop
*/

.ui-to-top {
    position: fixed;
    right: 15px;
    z-index: 100;
    width: 150px;
    height: 50px;
    font-size: 15px;
    line-height: 46px;
    color: #1d4090;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
    transition: .45s all ease-in-out;
    transform: translate3d(0, 100px, 0);
}

.ui-to-top::before {
    left: 25px;
    position: absolute;
    color: #1d4090;
}

.ui-to-top:hover {
    /*color: #ffffff;*/
    /*background: #111111;*/
    text-decoration: none;
}

.ui-to-top:focus,
.ui-to-top:visited {
    color: #1d4090;
}

.ui-to-top.active {
    transform: translate3d(0, 0, 0);
}

html.mobile .ui-to-top,
html.tablet .ui-to-top {
    display: none !important;
}

@media (min-width: 576px) {
    .ui-to-top {
        left: 10%;
        bottom: 40px;
    }
}