
/* GO UP */

html {
    scroll-behavior: smooth;
}
html.noscroll {
    overflow: hidden;
}
#scrolltop:after{
    content: "";
    display: inline-block;
    border-right: 2px solid var(--zb-black);
    border-bottom: 2px solid var(--zb-black);
    padding: 5px;
    cursor: pointer;
    border-radius: 2px;
    position: relative;
    top: 2px;
    transform: rotate(-135deg);
}
#scrolltop{
    position: fixed;
    right:  15px;
    bottom: -100px;
    z-index: 1;
    padding: 8px;
    cursor: pointer;
    border: solid 1px var(--zb-box-shadow);
    border-radius: 50%;
    line-height:0;
}
#scrolltop:hover{
    padding: 9px;
}
#scrolltop{
    transition: bottom 0.3s ease 0s, font-size 0.3s ease 0s, padding 0.3s;
}
#scrolltop.active{
    bottom: 20px;
}
