@use './variables' as vars;
@use './mixins' as mix;

html {
	height: 100%;
	min-height: 100%;
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	height: 100%;
	min-height: 100%;
	background: var(--background);
	color: var(--font-color);
}

.pointer-event-all {
  pointer-events: all;
}

[hidden] {
	display: none !important;
}

.settings-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 32px;
}

.beta_logo {
	position: absolute;
	left: 4px;
	font-size: 11px;
	bottom: 4px;
	transform: translateY(100%);
	font-weight: 400;
	font-style: italic;
	opacity: .2;

	@include mix.tablet-low {
		left: 52px;
		opacity: .3;
	}

	@include mix.desktop {
		left: 8px;
		opacity: .4;
	}
}

*:not(input):not(textarea) {
	caret-color: transparent !important;
}

.d-hidden {
	display: none !important;
}
.no-wrap {
	white-space: nowrap !important;
}
.text-align-center {
	text-align: center;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}
