#ElementsContainer {
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.ElementContainer {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	color: white;
}
.ElementContainer:first-child {
	margin-top: 0;
}

.TitleContainer {
	border-radius: 10px 10px 0 0;
	background-color: #007F1F;
	display: flex;
	flex-direction: row;
	justify-content: start;
	font-size: 120%;
}
.TitleTextJa {
	font-weight: bold;
	text-align: left;
	margin: 5px;
	margin-left: 10px;
}
.TitleTextEn {
	text-align: right;
	margin: 5px;
	align-self: end;
}

.Column {
	width: 100%;
	display: flex;
	flex-direction: row;
	border-radius: 0 0 10px 10px;
}
.LeftColumn {
	width: calc(100% - 200px);
	background-color: #3F3F3F;
	border-radius: 0 0 0 10px;
}
.RightColumn {
	font-size: 0;
	text-align: center;
	text-decoration: none;
	margin: 0;
	padding: 0;
	background-color: #000000;
	border-radius: 0 0 10px 0;
	width: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.RightColumn IMG {
	display: inline-block;
	width: 200px;
	height: 200px;
}

.DetailsContainer {
	margin-bottom: 10px;
}
.DetailsTitle {
	text-align: center;
	text-decoration: underline;
	user-select: none;
	background: rgba(0, 0, 0, 0.5);
	padding: 5px;
}

.Date {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 10px auto;
}
.DateSince {
	padding: 5px;
}
.DateBetween {
	padding: 5px;
}
.DateBetween::after {
	content: '\25B6';
}
.DateUntil {
	padding: 5px;
}

.Download {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 10px 0;
}
.Download .btn {
	width: 50%;
}
.FileSize {
	color: rgba(255, 255, 255, 0.5);
	font-size: 80%;
}

@media screen and (max-width: 799px){
	.Column {
		flex-direction: column-reverse;
	}
	.LeftColumn {
		width: 100%;
		border-radius: 0 0 10px 10px;
	}
	.RightColumn {
		width: 100%;
		border-radius: 0;
	}
	.RightColumn IMG {
		display: inline-block;
		width: 100%;
		height: auto;
	}
	
	.Date {
		flex-direction: column;
		margin: 5px auto;
	}
	.DateSince {
		padding-bottom: 0;
	}
	.DateBetween {
		padding: 0;
	}
	.DateUntil {
		padding-top: 0;
	}
	.DateBetween::after {
		content: '▼';
	}
}
