<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.up-button {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: white;*/
    transform: translateX(100vw);
    border: 2px solid #6d6e7a;
    border-radius: 12px;
    position: fixed;
    bottom: 100px;
    right: 100px;
    z-index: 3;
    cursor: pointer;
    transition: all .3s ease-in-out;
    backdrop-filter: blur(4px);
    box-shadow: 0 0 100px 0 white!important;
}
.translate {
    transform: translateX(0vw);
}
@media(max-width: 768px){
    .up-button{
        display: none;
    }
}
</pre></body></html>