html {
    scrollbar-width: none;
    -webkit-tap-highlight-color: transparent;
}
    
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #FFF;
}

text, input, textarea {
    letter-spacing: -0.01em;
}

::selection {
    background-color: #DFDFDF;
}

::-webkit-scrollbar {
    display: none;
}

.l-u[data-elem-type="text"] a {
    border: 0 !important;
    display: inline-block !important;
    width: auto !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

.l-u[data-elem-type="text"] a::after {
    content: '';
    position: absolute;
    transition: all 0.3s ease;
    margin: auto;
    margin-bottom: -2px;
    height: 1px;  
    background-color: currentColor; 
    opacity: 1;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    width: 0;
}

.l-u[data-elem-type="text"] a:hover::after {
    opacity: 1;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
}