.noselect {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.nolist {
    list-style: none;
    padding: 0;
    margin: 0;

    li {
        display: inline-block;
        padding: 0;
        margin: 0;
    }
}

.nolink {
	display: inline-block;
	color: inherit;
	text-decoration: none;
}

.nobar {
	scrollbar-width: none;
	-mis-overflow-style: none;

	&::-webkit-scrollbar {
		background: transparent;
		width: 0px;
		height: 0px;
	}
}

::-webkit-scrollbar {
	width: 14px;
	height: 14px;
}

::-webkit-scrollbar-thumb {
	background-color: var(--shadow-weak);
	border: none;
}

::-webkit-scrollbar-track {
	box-shadow: inset 0 0 3px var(--shadow-hint);
	border: solid 1px var(--shadow-hint);
	background-color: var(--shadow-touch);
}

.bar-inline::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

.bar-inline::-webkit-scrollbar-thumb {
	background-color: var(--shadow-hint);
}

.bar-strong::-webkit-scrollbar-thumb {
	background-color: var(--primary);
}

:focus {
    outline: none;
}

::-moz-focus-inner {
    border: 0;
}