:root {
    --scroll: 3px;
}

::-webkit-scrollbar {
    width: var(--scroll);
    height: var(--scroll);
}
::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}
::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border: 0px none #ffffff;
    border-radius: 0px;
    transition: background 0.25s;
}

::-webkit-scrollbar-track {
    background: var(--dark-sec-col);
    border: 0px none #ffffff;
    border-radius: 0px;
}
::-webkit-scrollbar-corner {
    background: transparent;
}

body, html {
    margin: 0; padding: 0;
    width: 300%; height: 300%;
    overflow: hidden;
}

body {
    color: var(--text-col);
    font-weight: 300;
	font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

* {
    color: var(--text-col);
    font-weight: 300;
	font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

a {
    font-weight: 400;
    transition: color 0.25s;
    color: var(--bluelight);
    cursor: pointer;
    text-decoration: underline;
}

/* unvisited link */
a:link {
    color: var(--bluelight);
}

/* visited link */
a:visited {
    color: var(--bluelight);
}

/* mouse over link */
a:hover {
    color: var(--blue);
}

/* selected link */
a:active {
    color: var(--blue);
}

hr {
    border: 0;
    border-top: 1px solid rgb(155,155,155,0.25);
    border-bottom: 1px solid #000;
}
  
.text-center {
    text-align: center;
}

b {
    font-weight: 600;
}

b * {
    font-weight: 600;
}

.icontext * {
    color: inherit;
}

.icontext>*:first-child {
    margin-right: 0.1em;
}

svg, svg path {
    color: inherit;
}


table {
    border-collapse: collapse;
}

table, th, td {
    border: 1px solid var(--dark-sec-col);
}

th {
    font-weight: 600;
}

td, th {
    padding: 5px;
}

button {
    user-select: none;
}

.badge {
    background: var(--text-col);
    color: var(--dark-col);
    display: inline-block;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 500;
}

.badgemt {
    margin: 0.3em 0;
}

.badges {
    display: inline-block;
}

.badges .badge {
    margin: 0 0.3em;
}

.badges .badge:first-child {
    margin-left: 0;
}

.badges .badge:last-child {
    margin-right: 0;
}