/* Schedule --------------------------------------------------------------- */

.schedule-item-list {
	width: calc(100% - 80px);
    margin: 0 auto;
	box-shadow: 4px 4px 12px rgba(0,0,0,0.07);
}
a.schedule-item {
	display: block;
	background-color: white;
	padding: 18px 10px;
	text-align: center;
	text-decoration: none;
	color: #656262;
	line-height: 1.5em;
	font-weight: 500;
	/*transition: all .2s ease;*/
	border-right: solid 1px #eaeaea;
}
a.schedule-item.disabled {
	color: #b3b3b3;
	pointer-events: none;
}
a.schedule-item.active {
	pointer-events: none;
	background-color: #381d9e;
}
a.schedule-item:hover {
	background-color: #edeaf4;
}
.schedule-item .date-btn-label {
	display: block;
	font-size: 1.4em;
	font-weight: 500;
	margin-bottom: .15em;
	letter-spacing: 2px;
}
.schedule-item .sevenday-label {
	display: block;
	font-size: .95em;
	font-weight: 400;
}
.schedule-item.active * { color: white; }

.year-label, .date-label {
	color: #381d9e;
	text-align: center;
	font-family: 'Roboto';
	font-size: 2.5em;
	margin-left: 10px;
	margin-bottom: .5em;
	margin-top: .5em;
	transform: skewX(-5deg) scaleY(1.1);
}
.match-item-list {
	display: flex;
    flex-direction: column;
}
.match-item-list:first {
	/*
	justify-content-center: center;
	display: flex;
	*/
}
.match-item-detail { }
.match-info-date { }
.match-info-txt { font-size: 1.1em; }

.match-item {
	background: linear-gradient(to top, #F0F0F0 0%, #FFFFFF 100%);
	border-radius: 15px;
	padding: 8px 2%;
	/* margin: 5px 7px; */
	margin: 5px 0;
	display: block;
}
a.match-item {
	text-decoration: none;
	transition: all .1s ease;
	box-shadow: 4px 4px 8px rgba(0,0,0,0.07);
}
a.match-item:hover {
	transform: scale(1.03);
}
.match-item-detail {
	display: flex;
}
.match-item-detail .match-info-date {
	text-align: center;
	color: #999999;
	display: flex;
	/* width: 15%; */
	width: 70px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: .85em;
	line-height: 1.5em;
}
.match-item-detail .match-info-date * { 
	display: block;
	/* margin-bottom: .15em; */
	font-family: 'Roboto Condensed';
	font-weight: 400;
}
.match-date {
	color: #C1AD56;
	display: block;
	letter-spacing: 0;
	font-size: 1.8em;
}
.match-timestamp {
	letter-spacing: 0em;
	color: #5c46af;
	display: block;
	font-size: 1.4em;
	line-height: 1.3em;
}
.match-player {
	color: #A8943E;
	margin-top: 5px;
	display: block;
	line-height: 1.4em;
}
.match-item-detail .match-info-txt {
	display: flex;
    justify-content: center;
    align-items: flex-start;
	flex-direction: column;
	
	margin-left: 10px;
	padding-left: 3%;
	padding-top: 8px;
    padding-bottom: 8px;
	width: calc(100% - 125px);
	min-height: 4em;
	
	font-size: .9em;
	color: #222222;
	line-height: 1.6em;
	border-left: solid 1px #d8d8d8;
}
.match-item-detail .match-info-txt.wide {
	width: calc(100% - 65px);
}
.match-item-detail .match-info-txt {
	font-size: 1.05em;
	font-weight: 400;
	line-height: 1.5em;
}
.match-item-detail .match-info-txt b {
	font-size: 1.1em;
}
.match-item-detail .match-info-channel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	width: 60px;
}
.match-info-channel .tv-ch-icon {
	font-family: 'Roboto Condensed';
	font-weight: 300;
	font-size: .9em;
	background-color: #c93d87;
	border-radius: 12px;
	color: white;
	padding: 8px 6px;
	line-height: 1em;
	letter-spacing: .05em;
}
@media only screen and (max-width: 991px){
	a.schedule-item {
		padding: 12px 10px;
	}
	.schedule-item .date-btn-label {
		font-size: 1.2em;
	}
	.schedule-item .sevenday-label {
		font-size: .9em;
	}
	.match-item-detail .match-info-txt {
		font-size: 1em;
	}
}
@media only screen and (max-width: 767px){
	
}
@media only screen and (max-width: 576px){
	
}