.season-row {}
.season-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 5px 10px;
    background-color: #11212e;
    color: #fff;
    margin-bottom: 5px;
	border-radius: 3px;
}
.season-header__name {
	font-weight: 500;
}
.season-header__updown {
	font-size: 13px;
	opacity: 0.66;
	cursor: pointer;
	transition: 0.3s;
}
.season-header__updown:hover {
	opacity: 0.9;
}
.season-main {
	display: flex;
	flex-direction: column;
	margin-top: -5px;
}
.episode-row {}
.episode-item {
	display: flex;
	align-items: center;
	padding: 5px;
	background-color: #f3f3f3;
	transition: 0.3s;
	position: relative;
}
.episode-item:hover {
	box-shadow: 0 10px 26px rgba(0,0,0,0.15);
}
.episode-item:nth-child(2n) {
	background-color: #fff;
}
.episode-item > div {
	display: flex;
	align-items: center;
	font-weight: 500;
	padding-right: 10px;
}
.episode-item__number {
	color: #ff6600;
    min-width: 140px;
    font-size: 13px;
}
.episode-item__title {
	flex: 1;
	width: 100%;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
}
.episode-item__date {
	color: #9da5b1;
	font-size: 12px;
}
.episode-item__soon {
    font-size: 12px;
    font-weight: 700;
    color: #ff300a;
}
.episode-item__status {
    padding-right: 0;
}
.episode-showmore {
	margin: 5px 0;
}
.episode-showmore a {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    background-color: #ff6600;
    color: #fff;
    border-radius: 20px;
    box-shadow: none;
    letter-spacing: 2px;
}