@charset "utf-8";

header {
	position: relative;
	margin: 10px 0;
	text-align: center;
}
#page-title {
	font-size: 40px;
}
#lang-switch {
	position: absolute;
	top: 5px;
	right: 0;
	border-radius: 5px;
}
#lang-switch a {
	float: left;
	width: 80px;
}
#lang-switch div.d-sm-none a {
	width: 35px;
}

#page-nav {
	margin: 0 -15px;
	border-radius: 5px;
	text-align: center;
}
#page-nav div.dropdown-menu {
	margin: 0;
	padding: 0;
	border: 1px solid white;
}

#lang-switch a, #page-nav a {
	padding: 8px;
	display: block;
	font-size: 14px;
	color: white;
	text-decoration: none;
	border-radius: 5px;
}
#page-nav > div > a {
	display: inline-block;
}
#page-nav a.dropdown-item {
	width: 100%;
}
#lang-switch > div a:nth-child(1) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
#lang-switch > div a:nth-child(2) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
#lang-switch a:hover, #lang-switch a.curr-lang, #page-nav a:hover {
	color: yellow;
	background-color: red;
}

article h1 {
	margin-bottom: 1rem;
}

footer {
	margin: 0 -15px;
	padding: 8px 0;
	text-align: center;
	font-size: 14px;
	color: white;
	border-radius: 5px;
}

details {
	margin-bottom: 1rem;
}
details p {
	margin: 0;
}

/* test */
#article-pane {
	margin: 0 -15px;
	padding: 0 15px 48px 15px;
/*	background-color: rgba(192, 255, 192, 0.8);
*/}
.side-pane {
	position: relative;
	margin: 0 -15px;
	padding: 0;
/*	background-color: rgba(240, 240, 240, 1.0);
*/}
.side-pane.fixed {
	position: fixed;
	margin: 0;
}
.side-pane > .tab-view {
	height: 100%;
}
.side-pane > .tab-view > .tab-content {
	padding-bottom: 20px;
	height: -webkit-calc(100% - 33px);
	height: calc(100% - 33px);
	box-sizing: border-box;
	overflow: scroll;
}
.front-pane {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10000;
}
.front-pane > .side-pane.fixed {
	width: 240px;
}
.side-switch {
	position: fixed;
	width: 48px;
	height: 48px;
	text-align: center;
	line-height: 48px;
	border-top-left-radius: 24px;
	border-bottom-left-radius: 24px;
	background-color: #f0f0f0;
	border: 1px solid #c0c0c0;
	color: #c0c0c0;
	border-right: none;
}
.side-switch > span:after {
	font-family: serif;
	font-size: 36px;
	content: "\02190";
	-webkit-font-smoothing: antialiased;
}
.side-switch.left {
	transform: scaleX(-1);
}