
/* WebKit browsers */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.3) transparent;
}

html,
body {
	height: 100%;
	margin: 0;
	overflow: hidden;
}

body {
	background-color: #180052;
	color: white;
	font-family: "Segoe UI", sans-serif;
}
/* Header */
.app-header {
    padding: 32px 80px 20px;
    text-align: left !important;
	width: 100%;
	
}
.app-header h1.active {
	opacity: 1;
	transform: translateX(0);
	transition: 
		transform 0.3s cubic-bezier(0.1, 0.9, 0.2, 1),
		opacity 0.2s ease-out 0.05s;

}
.app-header h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
	width: 100%;
    text-align: left !important;
	opacity: 0;
	transform: translateX(100px); /* slight slide */
	transition: 
		transform 0.3s cubic-bezier(0.1, 0.9, 0.2, 1),
		opacity 0.2s ease-out 0.05s;
}

/* Main */
main {
	height: calc(100vh - 150px);
    width: 100%;
	
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding-top: 36px;
}
.tiles-area {
	max-width: none;
	opacity: 0;
	transform: translateX(100px); /* slight slide */
	transition: 
		transform 0.3s cubic-bezier(0.1, 0.9, 0.2, 1),
		opacity 0.2s ease-out 0.05s;
}

.tiles-area.active {
	opacity: 1;
	transform: translateX(0);
	transition: 
		transform 0.3s cubic-bezier(0.1, 0.9, 0.2, 1),
		opacity 0.2s ease-out 0.05s;
}


.tiles-area.resizing {
  opacity: 0.35;
}


.tiles-group {
	margin-left: 80px;
	height: 100% !important;
	/*transition: width 1s ease;*/
}

.icon-bar {	
	background-color: rgba(255, 255, 255, 0.08); /* subtle */
	backdrop-filter: blur(8px);
	border-top: 1px solid rgba(255,255,255,0.15);
}