/**
 * @author Jaroslav Louma <xlouma00@stud.fit.vutbr.cz>
 * @brief This file is part of the ITU project - Music Player App.
 * @copyright Copyright (c) 2023
 */

:root {
	--text-color-rgb: 240, 240, 240;
	--background-color-rgb: 26, 28, 41;
	--background-color2-rgb: 35, 37, 52;
	--background-color3-rgb: 71, 69, 115;
	--primary-color-rgb: 168, 89, 242;
	--primary-color-light-rgb: 183, 115, 247;
	--primary-color2-rgb: 124, 105, 232;
	--primary-color2-light-rgb: 144, 128, 234;
	--text-color: rgba(var(--text-color-rgb), 1);
	--background-color: rgba(var(--background-color-rgb), 1);
	--background-color2: rgba(var(--background-color2-rgb), 1);
	--background-color3: rgba(var(--background-color3-rgb), 1);
	--primary-color: rgba(var(--primary-color-rgb), 1);
	--primary-color-light: rgba(var(--primary-color-light-rgb), 1);
	--primary-color2: rgba(var(--primary-color2-rgb), 1);
	--primary-color2-light: rgba(var(--primary-color2-light-rgb), 1);
}

* {
	margin: 0;
	padding: 0;
	outline: none;
	text-decoration: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

/* *:not(input):focus-visible {
	opacity: 1 !important;
	outline-offset: 0px;
	outline: 1px solid #d3dfe4;
} */

html {
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: transparent;
}

body {
	font-family: "Poppins";
	background-color: var(--background-color);
	color: var(--text-color);
}

html.noscroll,
html.noscroll body {
	position: relative !important;
	overflow: hidden !important;
}

/* a[href] {
	color: var(--main-color);
} */

button,
input {
	background: none;
	border: none;
	color: inherit;
	font: inherit;
}

button {
	cursor: pointer;
}


/* Utils */
.flex {
	display: flex;
}

.flex.row {
	flex-direction: row;
}

.flex.column {
	flex-direction: column;
}

.flex.center {
	align-items: center;
	justify-content: center;
}

.flex.h-center,
.flex.row.h-center,
.flex.column.v-center {
	justify-content: center;
}

.flex.v-center,
.flex.row.v-center,
.flex.column.h-center {
	align-items: center;
}

.dot {
	min-width: 3px;
	min-height: 3px;
	margin: 0 8px;
	border-radius: 50%;
	background-color: white;
	opacity: 0.4;
}