/* schedule list start */

.game-container * a
{
	color: initial;
}
.game-container
{
	width: 100%;
	overflow: hidden;
}
.game-container .calendar-content
{
	margin: 0 auto;
	box-shadow: 0 2px 2px #dcdcdc;
}
.game-container .schedule-score
{
	overflow: hidden;
	padding-top: 25px;
}
.game-container .schedule-score .score-on
{
	float: right;
	height: 26px;
	padding-right: 5px;
}
@media (max-width: 480px)
{
	.score-on .desc
	{
		padding-right: 6px;
	}
	.score-on.on .desc
	{
		padding-right: 7px;
	}
	.game-container .schedule-score .score-on .score-back
	{
		margin-top: 2px;
	}
}
.game-container .score-on .score-back .score-button
{
	box-shadow: 1px 1px 1px #939393;
}
.game-container .calendar-content .calendar-list,
.game-container .calendar-content .schedule-titles
{
	float: left;
	height: 50px;
	line-height: 50px;
	box-sizing: border-box;
}
.game-container .schedule-titles .schedule-titles-left,
.game-container .schedule-titles .schedule-titles-right
{
	float: left;
	width: 50%;
	text-align: center;
}
.game-container .schedule-titles .schedule-titles-left a,
.game-container .schedule-titles .schedule-titles-right a
{
	display: inline-block;
	padding: 0 10px;
	line-height: 47px;
	text-decoration: none;
	box-sizing: border-box;
	cursor: pointer;
	font-family: "Roboto-Regular", sans-serif;
	transition: all .3s;
}
.game-container .schedule-titles a:hover
{
	font-family: "Roboto-Bold", sans-serif;
}
.game-container .schedule-titles .schedule-titles-left a.selected,
.game-container .schedule-titles .schedule-titles-right a.selected
{
	border-bottom: 3px solid #1d428a;
	font-family: "Roboto-Bold", sans-serif;
}
.game-container .calendar-list .calendar-list-item
{
	float: left;
	height: 50px;
}
.game-container .calendar-list .calendar-list-item a
{
	position: relative;
	display: inline-block;
	height: 100%;
	font-size: 13px;
	color: #006bb6;
	text-decoration: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.game-container .calendar-list .calendar-list-item a.wddisabled:hover
{
	font-weight: normal;
	color: #006bb6;
}
.game-container .calendar-list .calendar-list-item a div
{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
}
.game-container .calendar-list .calendar-list-item a.weekPrev
{
	width: 30px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("../images/calendar_prev_grey.png");
	background-size: 10px 16px;
	padding: 0;
	cursor: pointer;
}
.game-container .calendar-list .calendar-list-item a.weekNext
{
	width: 30px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("../images/calendar_prev_grey.png");
	background-size: 10px 16px;
	padding: 0;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	cursor: pointer;
}
.game-container .calendar-list .calendar-list-item a.wpdisabled
{
	cursor: not-allowed;
	background-image: url("../images/disabled.png");
}
.game-container .calendar-list .calendar-list-item a:hover
{
	font-weight: bold;
	color: #000000;
}
.game-container .calendar-list .calendar-list-item a.selected
{
	font-weight: bold;
	color: #000000;
}
.game-container .calendar-list .calendar-btn span
{
	text-transform: capitalize;
}
.game-container .calendar-list .calendar-btn .calendar-icon
{
	display: inline-block;
	position: relative;
	top: -2px;
	width: 19px;
	height: 20px;
	margin-right: 5px;
	vertical-align: middle;
	background-repeat: no-repeat;
	background-image: url("../images/calendar_icon_mini.png");
	background-image: image-set(url("../images/calendar_icon_mini.png") 1x, url("../images/calendar_icon_mini@2x.png") 2x);
	background-image: -webkit-image-set(url("../images/calendar_icon_mini.png") 1x, url("../images/calendar_icon_mini@2x.png") 2x);
	background-size: 100% auto;
}
.game-container .schedule-container
{
	overflow: hidden;
	min-height: 196px;
}
.game-container h2.schedule-scoreboard
{
	display: none;
	margin: 40px 0 20px;
	font-size: 18px;
	text-align: center;
}
.game-container .schedule-list
{
	padding-bottom: 57px;
	background-color: #F0F0F0;
	font-size: 0;
}
.game-container .schedule-list .schedule-item
{
	display: inline-block;
	position: relative;
	width: 490px;
	min-height: 240px;
	margin-top: 20px;
	box-sizing: border-box;
	vertical-align: top;
	background-color: #FFFFFF;
	color: #000;
	overflow: hidden;
}
.game-container .schedule-list .schedule-item:nth-child(odd)
{
	margin-right: 18px;
}
.game-container .schedule-list .schedule-item .item-round
{
	text-align: center;
	line-height: 24px;
	border-bottom: 1px solid #dddddd;
	color: #586066;
	font-size: 16px;
}
.game-container .schedule-list .schedule-item .team-info
{
	position: relative;
	float: left;
	width: 26%;
	height: 240px;
	text-align: center;
}
.game-container .schedule-list .schedule-item .game-item-wrap
{
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
}
.game-container .schedule-item .team-info .game-item-wrap .team-logo
{
	width: 100%;
	height: 108px;
	background-size: auto 90%;
	background-repeat: no-repeat;
	background-position: center center;
}
.game-container .schedule-list .schedule-item .team-name
{
	font-size: 15px;
	font-weight: bold;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.game-container .schedule-list .schedule-item .team-record
{
	margin-top: 10px;
	font-size: 13px;
	color: #586066;
}
.game-container .schedule-list .schedule-item .team-left .team-favorite,
.game-container .schedule-list .schedule-item .team-right .team-favorite
{
	display: none;
	position: absolute;
	top: -20px;
	width: 15px;
	height: 15px;
	background: url("../images/icon_fav.png") no-repeat;
	background-size: 100%;
}
.game-container .schedule-list .schedule-item .team-left .team-favorite
{
	left: 12px;
}
.game-container .schedule-list .schedule-item .team-right .team-favorite
{
	right: 12px;
}
.game-container .schedule-list .schedule-item .team-right .team-favorite.team-favorite-on,
.game-container .schedule-list .schedule-item .team-left .team-favorite.team-favorite-on
{
	display: block;
}
.game-container .schedule-list .schedule-item .game-info
{
	position: relative;
	float: left;
	display: inline-block;
	width: 48%;
	height: 240px;
	text-align: center;
}
.game-container .schedule-list .schedule-item .game-info .team-league
{
	position: absolute;
	left: 50%;
	top: 15px;
	width: 360px;
	height: 28px;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	color: #586066;
	font-size: 14px;
	line-height: 14px;
	overflow: hidden;
}
.game-container .schedule-list .schedule-item .game-info .team-result,
.all-star-item .blocked
{
	position: absolute;
	left: 50%;
	bottom: 65px;
	width: 100%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	font-size: 16px;
	color: #586066;
}
.game-container .schedule-list .schedule-item .game-info .team-result.blocked,
.all-star-item .blocked
{
	display: none;
	bottom: 20px;
	color: #586066;
}
.game-container .schedule-list .schedule-item .game-info .team-result.playoff
{
	bottom: 45px;
}
.all-star-item .blocked
{
	text-align: center;
}
.game-container .schedule-list .schedule-item .game-info .game-upcoming,
.game-container .schedule-list .schedule-item .game-info .game-archive,
.game-container .schedule-list .schedule-item .game-info .game-playing
{
	position: absolute;
	top: 45%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
}
.game-container .schedule-list .schedule-item .game-info .game-upcoming .team-time
{
	font-size: 28px;
}
.game-container .schedule-list .schedule-item .game-info .game-upcoming .team-time span
{
	font-size: 18px;
}
@media (max-width: 768px)
{
	.game-container .schedule-list .schedule-item .game-info .game-upcoming .team-time
	{
		font-size: 24px;
	}
	.game-container .schedule-list .schedule-item .game-info .game-upcoming .team-time span
	{
		font-size: 14px;
	}
	.game-container .schedule-list .schedule-item .game-info .team-league
	{
		width: 310px;
	}
}
.game-container .schedule-list .schedule-item .game-info .game-upcoming .team-date
{
	font-size: 15px;
	font-weight: bold;
}
.game-container .schedule-list .schedule-item .game-info .game-archive .game-situation
{
	position: relative;
	top: 2px;
	display: inline-block;
	vertical-align: middle;
	padding: 10px 5px;
	font-weight: bold;
	text-transform: capitalize;
	font-size: 16px;
	box-sizing: border-box;
}
.game-container .schedule-list .schedule-item .game-info .game-archive .team-score,
.game-container .schedule-list .schedule-item .game-info .game-playing .team-score
{
	display: inline-block;
	vertical-align: middle;
	font-size: 34px;
}
.game-container .schedule-list .schedule-item .game-info .game-playing .game-situation
{
	display: inline-block;
	vertical-align: middle;
	padding: 10px;
	font-size: 14px;
	color: #ff0000;
	box-sizing: border-box;
}
.game-container .schedule-list .schedule-item .game-info .game-playing .game-situation .desc
{
	text-transform: uppercase;
	font-weight: bold;
}
.game-container .schedule-list .schedule-item .game-info .game-playing .game-situation .team-phase
{
	font-size: 15px;
	font-weight: bold;
}
.game-container .schedule-list .schedule-item .game-info .game-playing .game-situation .game-length
{
	font-size: 15px;
	font-weight: bold;
}
/* game schedule end*/

/* no schedule end*/
.favorite-team-pop
{
	display: none;
	width: 317px;
	height: auto;
	overflow: hidden;
	background: #ffffff;
	border-radius: 6px;
}
.favorite-team-pop .favorite-team-header
{
	position: relative;
	width: 100%;
	height: 48px;
	line-height: 48px;
	border-bottom: 1px solid #e6e8ea;
	text-align: center;
}
.favorite-team-pop .favorite-team-header p
{
	margin: 0;
}
.favorite-team-pop .favorite-team-header a.close
{
	position: absolute;
	right: 20px;
	top: 15px;
	display: block;
	width: 18px;
	height: 18px;
	background: url("../images/favorite_cloes.png") no-repeat center center;
}
.favorite-team-pop .favorite-team-list .favorite-team-list-item
{
	display: inline-block;
	vertical-align: top;
	width: 32%;
	padding: 11px;
	overflow: hidden;
	box-sizing: border-box;
	color: #006bb6;
	text-align: center;
}
.favorite-team-pop .favorite-team-list .favorite-team-list-item > div:first-child
{
	position: relative;
	width: 78px;
	height: 78px;
	background: url("../../site/images/teams/MIL_p.png") no-repeat center center;
	background-size: 80% 100%;
	border: 1px solid #006bb6;
	border-radius: 50%;
}
.favorite-team-pop .favorite-team-list-item > div:first-child .item_fav
{
	position: absolute;
	right: -4px;
	top: -2px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff url('../images/icon_fav.png') no-repeat center center;
}
.favorite-team-pop .favorite-team-list-item .list-item-desc
{
	width: 100%;
	word-break: break-all;
}
.video-carousel
{
	max-width: 1000px !important;
	margin: 0 auto
}
.schedule-week
{
	display: none;
	float: left;
	padding: 0 10px;
	font-family: 'Roboto-Medium', sans-serif;
}
@media (min-width: 453px)
{
	.game-container .schedule-container,
	.game-container .schedule-list .schedule-item,
	.game-container .calendar-content .schedule-titles
	{
		width: 100%;
	}
	.game-container .calendar-content .schedule-titles
	{
		border-right: none;
		background: #002f50;
		color: #ffffff;
	}
	.game-container .schedule-titles .schedule-titles-left a,
	.game-container .schedule-titles .schedule-titles-right a
	{
		width: 100%;
		color: #b3c1ca;
	}
	.game-container .schedule-titles .schedule-titles-left a.selected,
	.game-container .schedule-titles .schedule-titles-right a.selected
	{
		color: #ffffff;
	}
	.game-container .calendar-content
	{
		overflow: hidden;
	}
	.game-container .schedule-list .schedule-item:nth-child(odd)
	{
		margin-right: 0;
	}
	.game-container .schedule-list .schedule-item .team-info .team-logo img
	{
		width: 72px;
	}
	.game-container .schedule-list .schedule-item .game-info .team-result
	{
		padding: 15px 0 0;
		color: #586066;
		font-size: 15px;
	}
	.game-container .schedule-list .schedule-item .team-info .team-logo
	{
		padding: 0;
	}
	.game-container .schedule-list .schedule-item .game-info .team-score
	{
		font-size: 26px;
	}
	.game-container .schedule-list .schedule-item .team-info
	{
		width: 27%;
	}
	.game-container .schedule-list .schedule-item .game-info
	{
		width: 46%;
	}
	.game-container .schedule-list .schedule-item.game-status-archive .game-info .game-archive .team-score,
	.game-container .schedule-list .schedule-item.game-status-playing .game-info .game-playing .team-score
	{
		font-size: 18px;
		width: 25%;
	}
	.game-container .schedule-list .schedule-item.game-status-playing .game-info .game-playing .game-situation,
	.game-container .schedule-list .schedule-item.game-status-archive .game-info .game-archive .game-situation
	{
		width: 50%;
		font-size: 12px;
		position: relative;
		top: 1px;
	}
	.game-container .schedule-list .schedule-item.game-status-upcoming .game-info .game-archive .game-situation
	{
		font-size: 12px;
	}
	.game-container h2.schedule-titles
	{
		margin: 20px 0 0;
	}
	.game-container .calendar-list
	{
		position: relative;
		width: 100%;
	}
	.game-container .calendar-list .mask
	{
		display: none;
		position: absolute;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.6);
		z-index: 102;
		top: 0;
		left: 0;
	}
	.game-container .calendar-list .calendar-list-item
	{
		display: none;
	}
	.game-container .calendar-list .calendar-btn
	{
		float: left;
		width: 100%;
		color: #ffffff;
		text-align: center;
		margin-right: 0;
		background: #072840;
		cursor: pointer;
	}
	.game-container .calendar-list .calendar-btn .games-number
	{
		display: inline-block;
		color: #b3c1ca;
	}
	.game-container .calendar-list span.next,
	.game-container .calendar-list span.prev
	{
		display: inline-block;
		position: absolute;
		z-index: 100;
		width: 48px;
		height: 50px;
		text-align: center;
		cursor: pointer;
		background: url("../images/calendar_prev.png") no-repeat center center;
		background-size: 10px 18px;
	}
	.game-container .calendar-list span.prev
	{
		left: 0;
	}
	.game-container .calendar-list span.next
	{
		right: 0;
		transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-webkit-transform: rotate(180deg);
		-o-transform: rotate(180deg);
	}
	.game-container .calendar-list .calendar-list-item a
	{
		padding: 0 5px 0 0;
	}
	.game-container .calendar-list .calendar-btn span.game-date
	{
		display: inline-block;
	}
	.game-container .calendar-list .calendar-btn span:nth-child(2)
	{
		display: none;
	}
	.game-container .schedule-list .schedule-item .team-name
	{
		font-size: 12px;
	}
	.game-container .schedule-score
	{
		width: 100%;
		margin-right: 10px;
	}
}
@media (min-width: 768px)
{
	.game-container .calendar-content
	{
		width: 100%;
		height: 50px;
		color: #000;
		background: #ffffff;
	}
	.game-container .calendar-content .schedule-titles
	{
		width: 320px;
		border-right: 1px solid #dcdcdc;
		background: #ffffff;
	}
	.game-container .schedule-titles .schedule-titles-left a,
	.game-container .schedule-titles .schedule-titles-right a,
	.game-container .schedule-titles .schedule-titles-left a.selected,
	.game-container .schedule-titles .schedule-titles-right a.selected
	{
		color: #000000;
	}
	.game-container .calendar-list
	{
		width: calc(100% - 320px);
	}
	.game-container .calendar-list .calendar-list-item a
	{
		width: 80px;
		line-height: 16px;
		text-align: center;
	}
	.game-container .schedule-list .schedule-item .game-info .team-score
	{
		font-size: 26px;
	}
	.game-container .schedule-list .schedule-item
	{
		width: calc(50% - 9px);
	}
	.game-container .schedule-list .schedule-item .game-info
	{
		width: 42%;
	}
	.game-container .schedule-list .schedule-item:nth-child(odd)
	{
		margin-right: 18px;
	}
	.game-container .schedule-list .schedule-item .game-info .game-archive .team-score,
	.game-container .schedule-list .schedule-item .game-info .game-playing .team-score
	{
		font-size: 24px;
	}
	.game-container .schedule-list .schedule-item.game-status-playing .game-info .game-playing .team-score,
	.game-container .schedule-list .schedule-item.game-status-archive .game-info .game-archive .team-score
	{
		width: 25%;
		font-size: 20px;
	}
	.game-container .schedule-list .schedule-item.game-status-playing .game-info .game-playing .game-situation,
	.game-container .schedule-list .schedule-item.game-status-archive .game-info .game-archive .game-situation
	{
		width: 50%;
		font-size: 13px;
	}
	.game-container .schedule-list .schedule-item.game-status-upcoming .game-info .game-archive .game-situation
	{
		font-size: 13px;
	}
	.game-container .schedule-list .schedule-item .team-info
	{
		width: 29%;
	}
	.game-container .schedule-list .schedule-item .game-info .game-playing .game-situation
	{
		padding: 10px 4px;
	}
	.game-container .calendar-list .calendar-btn
	{
		float: right;
		background: #ffffff;
	}
	.game-container .calendar-list span.next,
	.game-container .calendar-list span.prev,
	.game-container .calendar-list .calendar-btn .games-number,
	.mobile-team-select
	{
		display: none;
	}
	.game-container .calendar-list .calendar-btn span
	{
		color: #006bb6;
	}
	.game-container .calendar-list .calendar-btn span:nth-child(2)
	{
		display: inline-block;
	}
	.game-container .calendar-list .calendar-btn span.game-date
	{
		display: none;
	}
	.game-container .schedule-list .schedule-item .team-name
	{
		font-size: 14px;
	}
}
@media (min-width: 1024px)
{
	.game-container .schedule-container
	{
		width: 1000px;
		margin: 0 auto;
	}
	.game-container .calendar-list .calendar-btn span
	{
		color: #006bb6;
	}
	.game-container .calendar-list .calendar-btn span.game-date
	{
		display: none;
	}
	.game-container .schedule-list .schedule-item .game-info .game-archive .team-score,
	.game-container .schedule-list .schedule-item .game-info .game-playing .team-score
	{
		font-size: 34px;
	}
	.game-container .schedule-list .schedule-item.game-status-playing .game-info .game-playing .team-score,
	.game-container .schedule-list .schedule-item.game-status-archive .game-info .game-archive .team-score
	{
		width: 29%;
		font-size: 34px;
	}
	.game-container .schedule-list .schedule-item.game-status-playing .game-info .game-playing .game-situation,
	.game-container .schedule-list .schedule-item.game-status-archive .game-info .game-archive .game-situation
	{
		width: 42%;
		padding: 10px 0;
		font-size: 16px;
	}
	.game-container .schedule-list .schedule-item.game-status-upcoming .game-info .game-archive .game-situation
	{
		font-size: 16px;
	}
	.game-container .schedule-list .schedule-item .team-name
	{
		font-size: 16px;
	}
	.game-container .schedule-score
	{
		width: 1000px;
		margin: 0 auto;
	}
}
@media (min-width: 1230px)
{
	.game-container .calendar-list .calendar-list-item
	{
		display: block;
	}
	.game-container .calendar-list .calendar-btn
	{
		width: auto;
		margin-right: 0;
	}
	.schedule-week
	{
		display: inline-block;
	}
	.game-container .calendar-content
	{
		width: 1230px;
	}
	.game-container .calendar-list .calendar-btn
	{
		margin-right: 10px;
	}
	.no-schedule-content
	{
		display: table;
		height: 415px;
		width: 100%;
		text-align: center;
		margin: 30px auto 0;
	}
	.game-container .calendar-list .calendar-list-item a
	{
		width: 85px;
	}
	.game-container .calendar-list .calendar-btn
	{
		width: auto;
		margin-right: 10px;
	}
}
@media (max-width: 453px)
{
	.game-container,
	.game-container .schedule-container,
	.game-container .schedule-list .schedule-item,
	.game-container .calendar-content .schedule-titles
	{
		width: 100%;
	}
	.game-container .calendar-content .schedule-titles
	{
		border-right: none;
	}
	.game-container .calendar-content
	{
		width: 100%;
		height: auto;
		overflow: hidden;
		background: #fff;
		box-shadow: 0 2px 2px #dcdcdc;
	}
	.game-container .schedule-list .schedule-item:nth-child(odd)
	{
		margin-right: 0;
	}
	.game-container .schedule-list .schedule-item .game-info .game-archive .team-score,
	.game-container .schedule-list .schedule-item .game-info .game-playing .team-score
	{
		font-size: 20px;
	}
	.game-container .schedule-list .schedule-item.game-status-archive .game-info .game-archive .team-score,
	.game-container .schedule-list .schedule-item.game-status-playing .game-info .game-playing .team-score
	{
		font-size: 18px;
		width: 25%;
	}
	.game-container .schedule-list .schedule-item.game-status-playing .game-info .game-playing .game-situation,
	.game-container .schedule-list .schedule-item.game-status-archive .game-info .game-archive .game-situation
	{
		width: 50%;
		font-size: 12px;
		position: relative;
		top: 0;
	}
	.game-container .schedule-list .schedule-item.game-status-upcoming .game-info .game-archive .game-situation
	{
		font-size: 12px;
	}
	.game-container .schedule-list .schedule-item.game-status-playing .game-info .game-playing .game-situation
	{
		padding: 10px 0;
	}
	.game-container .schedule-list .schedule-item .team-info
	{
		width: 30%;
	}
	.game-container .schedule-list .schedule-item .game-info
	{
		width: 40%;
	}
	.game-container h2.schedule-titles
	{
		margin: 20px 0 0;
	}
	.game-container .calendar-content
	{
		color: #ffffff;
		background: #002f50;
	}
	.game-container .calendar-list
	{
		position: relative;
		width: 100%;
	}
	.game-container .calendar-list .mask
	{
		display: none;
		position: absolute;
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.6);
		z-index: 101;
		top: 0;
		left: 0;
	}
	.game-container .calendar-list .calendar-list-item
	{
		display: none;
	}
	.game-container .calendar-list .calendar-btn
	{
		float: left;
		width: 100%;
		text-align: center;
		margin-right: 0;
		background: #072840;
	}
	.game-container .calendar-list span.next,
	.game-container .calendar-list span.prev
	{
		display: inline-block;
		position: absolute;
		z-index: 100;
		width: 35px;
		height: 50px;
		text-align: center;
		cursor: pointer;
		background: url("../images/calendar_prev.png") no-repeat center center;
		background-size: 10px 18px;
	}
	.game-container .calendar-list span.prev
	{
		left: 0;
	}
	.game-container .calendar-list span.next
	{
		right: 0;
		transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		-moz-transform: rotate(180deg);
		-webkit-transform: rotate(180deg);
		-o-transform: rotate(180deg);
	}
	.game-container .calendar-list .calendar-btn .games-number
	{
		display: inline-block;
		color: #b3c1ca;
	}
	.game-container .calendar-list .calendar-list-item a
	{
		padding: 0 5px 0 0;
	}
	.game-container .schedule-titles .schedule-titles-left a,
	.game-container .schedule-titles .schedule-titles-right a
	{
		width: 100%;
		color: #b3c1ca;
	}
	.game-container .schedule-titles .schedule-titles-left a.selected,
	.game-container .schedule-titles .schedule-titles-right a.selected
	{
		color: #ffffff;
	}
	.game-container .calendar-list .calendar-btn span.game-date
	{
		display: inline-block;
	}
	.game-container .calendar-list .calendar-btn span:nth-child(2)
	{
		display: none;
	}
	.game-container .schedule-list .schedule-item .team-name
	{
		font-size: 12px;
	}
	.game-container .schedule-score
	{
		width: 100%;
		margin-right: 10px;
	}
}
.schedule-list .schedule-item .team-favorite.fav-team-icon.on
{
	display: block !important;
}
.all-star-item
{
	font-size: 0;
}
div.all-star-item > div
{
	min-height: 240px;
	width: 100%;
	height: 100%;
}
div.all-star-item .over
{
	top: 0;
}
div.all-star-item .team-league
{
	position: absolute;
	top: 18px;
	width: 100%;
	color: #586066;
	font-size: 14px;
	text-align: center;
}
.all-star-item > .stargame-info .stargame-states.stargame-live
{
	color: red;
}
.all-star-item > .stargame-info .stargame-states .stargame-time
{
	font-size: 28px;
}
.all-star-item > .stargame-info .stargame-states .stargame-date
{
	font-size: 18px;
}
.stargame-logo, .stargame-info
{
	vertical-align: middle;
	display: inline-block;
	font-size: 24px;
}
.stargame-logo
{
	position: relative;
	width: 30%;
	height: 100%;
	min-height: 240px;
	margin: 0 10px;
}
.event-logo
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	height: 108px;
	background-size: auto 72%;
	background-repeat: no-repeat;
	background-position: center center;
}
.stargame-info
{
	width: calc(70% - 20px);
}
.stargame-name,
.stargame-states
{
	font-family: Flama-Medium;
	font-size: 20px;
	margin: 15px 0;
	padding-right: 10px;
}
.stargame-desc
{
	font-size: 18px;
	font-family: "Flama-Medium";
	color: #979797;
	margin: 15px 0;
	padding-right: 10px;
}
.stargame-live
{
	color: red;
}
.game-container .schedule-list .schedule-item .over .over-content
{
	width: 100%;
}
.game-container .schedule-list .schedule-item .over .over-content .watchgame.live-overlay,
.game-container .schedule-list .schedule-item .over .over-content .watchbegin.live-overlay
{
	width: 50%;
}
.game-container .schedule-list .schedule-item .over .over-content .watchbegin,
.game-container .schedule-list .schedule-item .over .over-content .watchgame.live-overlay
{
	background-size: 35%;
}
.game-container .schedule-list .schedule-item .over .over-content .watchbegin.live-overlay
{
	background-size: 28%;
	background-position: center 10px;
}
@media (max-width: 768px)
{
	.game-container .schedule-list .schedule-item .over .over-content .watchbegin.live-overlay,
	.game-container .schedule-list .schedule-item .over .over-content .watchgame.live-overlay
	{
		background-size: 20%;
	}
	.game-container .schedule-list .schedule-item .over .over-content .watchbegin.live-overlay
	{
		background-size: 16%;
		background-position: center 10px;
	}
}
