@keyframes hovers{from {bottom: -20px;opacity:.4;}to{bottom: 0px;opacity: 1;}}
.container {
	margin: 0 auto;	
	vertical-align: baseline;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.content-episode {
	background: transparent;
}
.link-to-app {
	display: flex;
	padding: 5px 10px;
}
.link-to-app a {
	display: block;
	padding: 10px;
	width:100%;
	background: #333;
	text-align: left;
	color: #fff;
	border-radius: .25em;
	font-weight: bold;
	max-width: 100%;
	margin: 5px;
}
.filling {
    padding: 10px;
}
.info-text {
    width: 100%;
    margin: 5px auto;
    height: 30px;
    line-height: 30px;
    border-bottom: none;
    color: #fff;
}
.episode {
    margin-left: -5px;
    margin-right: -5px;
}
.episode ul{
    animation: hovers 5s;
    display: flex;
    flex-wrap: wrap;
	/*justify-content: space-between;*/
}
.episode ul li {
    position: relative;
    animation: hovers 2s;
    border-radius: .25em;
    transition: .7s;
    margin: 5px;
    background: none;
}
.episode ul li a{
	display:block;
}
.episode ul li:hover{
	box-shadow:0 0 6px rgba(0,0,0,.3);
	transition: 1s;
	top: -2px;
}
.episode ul li a img{
	width: 100%;
	transition: .3s;
}
.episode ul li a span{
	display: block;
	height: 1.3rem;
	line-height: 1.3;
	margin: 0 auto;
	font-size: .8em;
	width: 95%;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color:#fff;
	font-weight:bold;
}
.notice {
	font-size: .8em;
	color: #333;
}
.content-article {
	margin: 10px 0;
	padding: 10px;
	float: right;
	min-height: 0;
	height: 100%;
	background: #fff;
    box-shadow: 0 0 7px rgba(0,0,0,.2);
    text-align: center;
    border-radius: .25em;
    overflow: hidden;
}
.content-comment {
	width: 100%;
	clear: both;
}
.comment-back {
	background: #303d4f;
	padding: 15px 0;
}
.comment {
    width: 100%;
	display: block;
}
footer {
	width: 100%;
	background: #222;
}
.title-footer {
	text-align: center;
	padding: 15px 10px;
	font-size: .875em;
	color: #fff;
}
