/* One Click Scrool Top Button*/
.scroll-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--color-pri);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    color: var(--color-white) !important;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    border-radius: 4px;
}

.scroll-top:hover {
    -webkit-box-shadow: 0 1rem 3rem var(--box-shadow-color-sec) !important;
    box-shadow: 0 1rem 3rem var(--box-shadow-color-sec) !important;
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
    background-color: var(--color-pri-active);
}