html {
    overflow: scroll;
    overflow-x: hidden;
}

@-moz-document url-prefix() { /* Disable scrollbar Firefox */
            html{
              scrollbar-width: none;
            }
          }
          body {
            margin: 0; /* remove default margin */
            scrollbar-width: none; /* Also needed to disable scrollbar Firefox */
            -ms-overflow-style: none;  /* Disable scrollbar IE 10+ */
            overflow-y: scroll;
          }
          body::-webkit-scrollbar {
            width: 0px;
            background: transparent; /* Disable scrollbar Chrome/Safari/Webkit */
          }

::-webkit-scrollbar {
    width: 0px;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    background: #FF0000;
}

body::-webkit-scrollbar {
display: none;
}
    
html, body {
-ms-overflow-style: none;
overflow: auto;
}

.hide-scrollbar
{
    overflow: auto;
    -ms-overflow-style: none; /* IE 11 */
    scrollbar-width: none; /* Firefox 64 */
}

/* Links */
a:link {
	color: #c00729!important;
	text-decoration: none;
}

a:active {
	color: #ddbb11!important;
	text-decoration: none;
}

a:visited {
	color: #c00729!important;
	text-decoration: none;
}

a:hover {
	color: #ddbb11!important;
	text-decoration: underline;
}

.background-our-price-column:hover {
	background-color: #dbe9d3;
}

.background-statistics-column:hover {
	background-color: #dbe9d3;
}

.background-topic-column:hover {
	background-color: #dbe9d3;
}
