body {
	--bottom-bar-background-color: #888;
	--bottom-bar-color: #dcddde;
	--bottom-bar-height: 160px;
	--bottom-bar-font-size: 65px;
	--bottom-bar-weather-font-size: 30px;
	--bottom-bar-border-color: rgba(0, 0, 0, 0);
}

.admirror-player.has-bottom-bar .admirror-slide .image-container,
.admirror-player.has-bottom-bar .admirror-slide .html-container,
.admirror-player.has-bottom-bar .admirror-slide .video-player {
	height: calc(100% - var(--bottom-bar-height));
}

#bottom-bar {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;

	height: var(--bottom-bar-height);

	display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;

    font-family: Arial, Helvetica, sans-serif;
    color: var(--bottom-bar-color);
    background-color: var(--bottom-bar-background-color);
}

#bottom-bar #weather {
	width: 15vw;
	height: 100%;

	flex-basis: 15%;
	border: 5px solid var(--bottom-bar-border-color);
	box-sizing: border-box;
	
	text-align: center;
	font-size: var(--bottom-bar-weather-font-size);
}

#bottom-bar #weather:only-child {
	width: 100vw;
	flex-basis: 100%;
}

#bottom-bar #weather > div:first-of-type {
	height: 100px;
}

#bottom-bar #news {
	width: 100vw;
	height: 100%;

	flex-basis: 100%;
    border: 5px solid var(--bottom-bar-border-color);
    box-sizing: border-box;
    
    font-size: var(--bottom-bar-font-size);
    vertical-align: middle;
}

#bottom-bar #weather + #news {
	width: 85vw;
	flex-basis: 85%;
	border-left-width: 0;
}

#bottom-bar #news #marquee {
	vertical-align: middle;
	overflow: hidden;
	white-space: nowrap;
	line-height: var(--bottom-bar-height);
}

.admirror-player .admirror-slide .slide-news-weather {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;

	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 33px;
	background-color: #fff;
	padding: 40px;
}

.admirror-player .admirror-slide .slide-news-weather > img {
	flex-grow: 0;
	display: block;
	margin-top: 30px;
	max-height: 100px;
}

.admirror-player .admirror-slide .slide-news-weather ul {
	display: inline-block;
	margin: 0 auto;
	max-width: 100%;
	flex-basis: 100%;
}

.admirror-player .admirror-slide .slide-news-weather li {
	margin-bottom: 16px;
	max-width: 100%;
}

.admirror-player .admirror-slide .slide-news-weather .weather {
	flex-grow: 0;
	width: 120px;
	text-align: center;
}

body > a, body > webview {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

body > webview {
	background-color: #fff;
}

body > button {
	position: absolute;
	left: 0;
	margin: 20px;
	bottom: 75px;
	width: 6rem;
	height: 6rem;
	background-color: #000;
	color: #fff;
	border: none;
	font-size: 22px;
	border-radius: 100%;
}

body > button:active {
	transform: scale(1.1);
}

body > button#print {
	bottom:  185px;
}

body > button > svg {
	width: 80%;
	height: 80%;
}