
.user-button {
	position: fixed;
	top: 0;
	right: 0;
	height: 50px;
	background: var(--main-color);
	border: none;
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.user-button:hover {
	background: rgba(255,255,255,0.25);
}
.user-button:focus {
	outline: 0;
}
.hamburger {
	width: 50px;
	font-size: 20px !important;
}
.active-hamburger {
	background: rgba(255,255,255,0.25);
}
.user-menu {
	position: fixed;
	top: 50px;
	right: 0;
	padding: 5px;
	cursor: pointer;
	z-index: 1039;
	background: white;
	border-style: solid;
	border-width: 0px 1px 1px 1px;
	border-color: lightgray;
	box-shadow: 0px 3px 6px rgba(0,0,0,0.25);
	max-height: calc(100vh - 105px);
	overflow-y: auto;
}
.user-menu .item {
	padding: 7px 15px 7px 7px;
}
.user-menu .item:hover {
	background: #eee;
}
.user-menu span {
	padding: 0px 10px 0px 10px;
}
.user-menu .splitter {
	position: relative;
	left: -5px;
	width: calc(100% + 10px);
	height: 1px;
	background: lightgray;
	margin: 7px 0px 7px 0px;
	padding: 0px !important;
}
.user-menu a {
	text-decoration: none;
	font-weight: normal;
	color: #1e3948;
}
.toggler-off {
	color: #335070;
}
.xbar-headroom {
	position:relative;
	height:50px;
}
.xbar-backdrop {
	position:fixed;
	top: 0;
	left: 0;
	height:50px;
	background:var(--main-color);
	width: 100%;
	z-index: 1037;
}
.xbar {
	position: fixed;
	top: 0;
	left: 0;
	padding-left: 10px;
	width: 100%;
	height: 50px;
	z-index: 1039;
	font-weight: bold;
	color: white;
	user-select: none;
	/* box-shadow: 0px 4px 4px -4px rgba(0,0,0,0.2); */
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
.xbar .tab .glyphicon {
	padding: 2px;
}
.xbar .tab {
	color: white;
	min-width: 100px;
	background: none;
	border: none;
	height: 50px;
	font-size: 16px;
    text-decoration: none;
	display: inline-block;
}
.xbar .bookmarks-button {
	min-width: 50px;
	width: 50px;
}
.xbar .tab:hover {
	background: rgba(255,255,255,0.25);
}
.xbar .tab:focus {
	outline: 0;
}
.xbar a:hover {
    text-decoration: none;
}
.xbar a:focus {
    text-decoration: none;
}
.xbar .logo {
	position: relative;
	top: -3px;
	max-height: 48px;
}
.xbar .logo-mbl {
	position: relative;
	top: -2px;
	left: -1px;
	max-height: 48px;
	display: none;
}
.xbar .active-tab {
	background: var(--background-color);
	color: var(--main-color);
	box-shadow: none;
	border-bottom: none;
}
.xbar .active-tab:hover {
	background: var(--background-color);
}

@media(max-width:1024px) {
	.xbar .logo {
		display: none;
	}
	.xbar .logo-mbl {
		display: inline-block;
	}
}

@media(max-width:850px) {
	.xbar .tab {
		min-width: 60px;
		font-size: 15px;
	}
}


.bookmarks-container {
	background: var(--background-color);
	position: fixed;
	top: 50px;
	left: 10%;
	max-width: 80%;
	min-height: 30px;
	max-height: 80vh;
	z-index: 1037;
	border-style: solid;
	border-width: 2px;
	border-color: lightgray;
	overflow-x: hidden;
	overflow-y: auto;
}
.bookmarks-container a {
	padding-left: 20px;
	padding-right: 20px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow-x: hidden;
    display: block;
}
