:root
{
    --TGUI_SysMenuInfo_Height: 60px;
    --TGUI_SysMenuInfo_Width: 250px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

html,body
{
    margin: 0px;
    padding:0px;
    width:  100%;
    height: 100%;
    font-size: 14px;
    font-family: inter, -apple-system, blinkmacsystemfont, san francisco, segoe ui, roboto, helvetica neue, sans-serif;
    color: black;
    overflow:hidden;
}

span
{
    white-space: break-spaces;
}

a
{
    color: black
}

a:link, a:visited 
{
	text-decoration: none
}
a:hover 
{
	text-decoration: underline;
}

a:active 
{
	text-decoration: none
}

/* width */
::-webkit-scrollbar
{
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track
{
    background: #f1f1f1;
    display: none;
}

/* Handle */
::-webkit-scrollbar-thumb
{
    background: #f1f1f1;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover
{
    background: #555;
}