/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */
/*AGENDA TABLE AND TABS*/
ul.tabs {
	display: grid;
	grid-gap: 20px;
    padding: 0;
    list-style-type: none;
    margin: 0;
}
ul.tabs li {
   margin: 0;
}
ul.tabs .library-button {
	margin: 0;
}
table {
	width: 100%;
}
td {
	padding: 10px !important;
}
.panel-header {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    padding: 15px 8px !important;
	text-transform: uppercase;
    background-color: #f9f9f9;
}
tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 0, 0, .15);
    overflow: hidden;
}
th.time {
    padding: 1rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    display: block;
    width: 100%;
}
/*NEW CSS*/
tr.panel-header th {
    font-weight: 600 !important;
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    padding: 15px 8px !important;
    background-color: #185c33;
    color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}
tr.panel-header th span.text-lato {
	font-size: 16px;
	font-weight: 500;
}

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	
	/*AGENDA TABLE AND TABS*/
	ul.tabs {
		grid-template-columns: 1fr 1fr;
	}
	tr {
		display: table-row;
        margin-bottom: 0;
        border: 0;
        overflow: visible;
	}
	th.time, td.session {
		display: table-cell;
        width: auto;
		    border-bottom: 1px solid rgba(0, 0, 0, .15);
	}
	
}
/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	/*AGENDA TABLE AND TABS*/
	ul.tabs {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
	
}
/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {


}
/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/
