@charset "UTF-8";

#class-schedule h1 {
	padding-bottom: 60px;
	color: var(--black);
}

#class-schedule .background-text {
	position: absolute;
	top: 50%;
	width: auto;
	padding: 0 10px;
	overflow: hidden;
	transform-origin: -.5em center;
	transform: rotate(-90deg) translate(calc(-50%),82%);
	font-weight: 900;
	line-height: 1;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(104,104,104,0.4);
	font-family: Montserrat,sans-serif;
	font-size: 190px;
	color: transparent;
	text-transform: uppercase;
	font-size: 190px;
}

/* TABLE */

#class-schedule-table {
	font-size: 14px;
}

#class-schedule-table .dayweek {
	background-color: var(--yellow);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-family: Montserrat,sans-serif;
}

#class-schedule-table > tbody > tr {
	line-height: 1.25;
}

#class-schedule-table > tbody > tr > td {
	vertical-align: middle;
	width: 13%;
}

#class-schedule-table > tbody > tr:nth-child(odd) {

}

#class-schedule-table > tbody > tr:nth-child(even) {
	background-color: var(--yellow-25);
}

#class-schedule-table .time {
	text-align: center;
	vertical-align: middle;
	font-family: Montserrat,sans-serif;
	text-transform: uppercase;
	width: 5%;
}

#class-schedule-table .modality-table tr td {
	cursor: pointer;
}

#class-schedule-table .modality-info {
	position: absolute;
	top: 0;
	opacity: 0;
	transform: translateY(-120%);
	z-index: 0;
	visibility: hidden;
	transition: all 0.3s ease-in;
	width: 100%;
}

#class-schedule-table .modality-table tr td:hover .modality-info {
	opacity: 1;
	display: block;
	z-index: 5;
	visibility: visible;
}

#class-schedule-table .modality-info .media {
	background-color: var(--yellow);
	padding: 10px 5px;
	position: relative;
	box-shadow: 0 0 5px 0 var(--black);
}

#class-schedule-table .modality-info .media:after { 
	content: ''; 
	position: absolute; 
	bottom: 0; 
	left: 50%; 
	width: 0;
	height: 0; 
	border: 8px solid transparent; 
	border-top-color: var(--yellow); 
	border-bottom: 0; 
	margin-left: -8px; 
	margin-bottom: -8px; 
}

#class-schedule-table .modality-info .image {
	width: 35px;
}

#class-schedule-table .modality-info p {
	margin: 0;
	line-height: 1.25;
	letter-spacing: .1em;
}

/* XS */
@media only screen and (min-width : 0px) {
	
	#class-schedule-table {
	    font-size: 10px;
	}
	
	#class-schedule {
		padding: 30px 0;
		min-height: 0;
	}
		
	#class-schedule .background-text {
		display: none;
	}
	
	#class-schedule-table .modality-info p {
		font-size: 7px;
	}
}

/* SM (landscape phones, 576px and up) */
@media (min-width: 576px) { 
	
	#class-schedule-table .modality-info p {
		font-size: 8px;
	}
	
}

/* MD (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* LG (desktops, 992px and up) */
@media (min-width: 992px) {
	
}

/* XL (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	
	#class-schedule-table {
	    font-size: 14px;
	}
	
	#class-schedule {
		padding: 120px 0;
		min-height: 900px;
	}
		
	#class-schedule .background-text {
		display: inline-block;
	}
	
	#class-schedule-table .modality-info p {
		font-size: 12px;
	}
}






