::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
 	background: black;
}
::-webkit-scrollbar-thumb {
	background: var(--primary);
	transition: background .6s;
	box-shadow: 0 0 3px aqua;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--alternate);
}
::backdrop {
	backdrop-filter: blur(3px);
	background-color: rgb(0 0 0 / .5);
}
html {
  --primary: #0b325c;
  --alternate: #977f00;
  --bg: #f7f7f7;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
	color: black;
	user-select: text;
  background-color: white;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: normal;
	margin: 25px 10px 15px;
	padding: 0;
	text-align: center;
}
h1 {
	color: var(--primary);
}
h2,h3,h4 {
  color: var(--alternate);
}
a {
	text-decoration: none;
  cursor: pointer;
	color: var(--alternate);
}
b {
  color: var(--primary);
}
select, option {
	color: white;
	background-color: var(--primary);
	border-radius: 5px 0 5px 0;
  cursor: pointer;
  user-select: none;
  text-align: center;
  min-width: 44px;
  min-height: 44px;
  padding: 3px 8px;
  margin: 5px;
}
button, button.invert:hover, .button {
  font-size: clamp(15px, 3vw, 20px);
  color: var(--bg);
	background-color: var(--primary);
  min-width: 44px;
  min-height: 44px;
	box-sizing: border-box;
	padding: 3px 5px;
  margin: 0 5px;
	border-radius: 5px 0 5px 0;
	display: inline-flex;
	align-items: center;
  justify-content: center;
  border: none;
	cursor: pointer;
  transition: all .6s;
}
button.invert, button:hover, .button.invert {
	box-shadow: 0 0 3px black;
  background-color: var(--bg);
  color: var(--primary);
}
flex {
  display: flex;
	justify-content: center;
	align-items: center;
}
grow, .grow, [grow] {
  display: block;
	flex-grow: 1;
}
header {
	position: fixed;
  align-items: center;
  justify-content: center;
	display: flex;
  transition: .6s all;
  font-size: 20px;
  background-color: var(--bg);
	backdrop-filter: blur(10px) opacity(.3);
	top: 0;
	left: 0;
  right: 0;
  z-index: 1;
  padding: 0 5px;
  height: 52px;
}

#logo {
	width: 40px;
	height: 40px;
	padding: 3px;
	cursor: pointer;
}

.loading {
  color: var(--bg);
	user-select: none;
	display: inline-flex;
	position: relative;
	height: 40px;
	width: 40px;
	font-size: 35px;
	background-color: black;
	border-radius: 50%;
	box-shadow: 0 0 3px aqua;
  justify-content: center;
  align-items: center;
}
.loading div {
	position: absolute;
	width: 50%;
	height: 50%;
	background-color: #460000;
  border-radius: 50%;
	animation: move 1s linear infinite;
}
@keyframes move {
	0% {
		background: linear-gradient(to bottom right, var(--primary), transparent);
		top: 0;
		left: 0;
	}
	25% {
		background: linear-gradient(to bottom left, var(--primary), transparent);
		top: 0;
		left: 50%;
	}
	50% {
		background: linear-gradient(to top left, var(--primary), transparent);
		top: 50%;
		left: 50%;
	}
	75% {
		background: linear-gradient(to top right, var(--primary), transparent);
		top: 50%;
		left: 0;
	}
	100% {
		background: linear-gradient(to bottom right, var(--primary), transparent);
		top: 0;
		left: 0;
	}
}
#apps {
  height: 37px;
  position: relative;
  cursor: pointer;
}

#apps > svg {
  height: 35px;
}

#apps-menu {
  position: absolute;
  left: -53px;
  display: none;
  text-align: center;
  width: 125px;
  margin: 5px;
  background: var(--bg);
  box-shadow: 0 0 3px black;
  padding: 4px;
}


#apps-menu a:hover {
  color: var(--primary);
}

#apps-menu svg {
  width: 40px;
  height: 40px;
  vertical-align: top;
}

#apps-menu div {
  display: inline-flex;
  flex-direction: column;
  font-size: 12px;
  text-align: center;
  align-items: center;
}
#login {
  border: none;
  box-shadow: 0 0 3px black;
  border-radius: 10px;
}
#login iframe {
  width: 375px;
  height: 325px;
  border: none;
}
