.shownt {
	display: none !important;
}

.aops-panel {
	padding: 10px;
}
.grey-panel {
	margin-bottom: 10px;
}
.grey-panel .header {
	margin-top: 0;
	cursor: pointer;
}

.dropdown-filter {
	float: right;
}

.school .course {
	display: table;
	width: 100%;
	margin-bottom: 10px;
	table-layout: fixed;
}

/* Name of course and number of lessons */
.school .title-tr {
	position: relative;
	/*	display : table-row;*/
	background-color: #009fad;
}

.school .title-tr:hover .course-name {
	text-decoration: underline;
}

.school .course-title {
	font-weight: bold;
	font-size: 16px;
	display: table-cell;
	/*	position : relative;*/
	padding: 5px 0 0 10px;
	color: #333;
}

.school .course-lessons {
	font-size: 15px;
	font-weight: normal;
}

/*
.school .course-title a {
	display : block;
	font-size : 16px;
	font-weight : bold;
	color : #333;
}
*/

.school .schedule-tr {
	display: table-row;
}

.school .schedule-table {
	/*	display : table;
	table-layout : fixed; */
	width: 100%;
}

.school .schedule-table .schedule-row {
	display: table;
	background-color: #e5e5e5;
	width: 100%;
}

.school .schedule-table .schedule-row:nth-child(even) {
	background-color: #f0f0f0;
}

.school .schedule-table .schedule-row > div {
	padding: 5px;
	vertical-align: middle;
	width: 36%;
	max-width: 36%;
}

.school .schedule-table .schedule-row > div.date-time {
	position: relative;
	display: table-cell;
}

/* Despite the name, `.schedule-row` is a cell and not a row! Refactoring it could be messy. */
.schedule-row {
	/* Ensures that each of these cells are at least as high as the course name cells to their lefts */
	min-height: 72px;
}

.tall-schedule-row {
	min-height: 96px;
}

.flag {
	text-transform: uppercase;
	line-height: 1;
	user-select: none;
	font-weight: 500;
	letter-spacing: 0.6px;
	padding: 4px 0 0;

	/* #region Necessary to conform to the current table layout */
	display: table-caption;
	flex: 1 0 100%;
	background: #e5e5e5;
	/* #endregion Necessary to conform to the current table layout */
}
.schedule-row:nth-child(even) .flag {
	background: #f0f0f0;
}
.flag-content {
	display: inline-block;
	margin: 0;
	padding: 4px 32px 4px 16px;
	border-radius: 0 16px 16px 0;
	background: #8ae7e4;
	color: #000;
}

.school .schedule-table .schedule-row > div.date {
	display: none;
}
.school .schedule-table .schedule-row > div.time {
	position: relative;
	display: none;
}
.school .schedule-table .schedule-row > div.instructor {
	display: none;
}
.school .schedule-table .schedule-row > div.instructor-books {
	display: table-cell;
}
.school .schedule-table .schedule-row > div.cost {
	display: none;
}
.school .schedule-table .schedule-row > div.enroll {
	display: none;
}
.school .schedule-table .schedule-row > div.cost-enroll {
	display: table-cell;
	width: 28%;
	max-width: 28%;
}

.school .schedule-table .schedule-row > div.cost-enroll > div {
	font-weight: bold;
	margin-bottom: 5px;
}

.school .schedule-table .schedule-row > div.info {
	font-weight: bold;
	display: table-cell;
}

.school .schedule-table .schedule-row > div.text {
	display: table-cell;
	width: 72%;
	max-width: 72%;
}

.school .schedule-table .schedule-row > div.cost > .extra {
	color: #888;
	font-size: 12px;
}

.school .schedule-table .schedule-row > div.cost > .per-week {
	font-size: smaller;
}

@media (min-width: 8px) {
	.school .schedule-table .schedule-row > div {
		width: 25%;
		max-width: 25%;
	}
	.school .schedule-table .schedule-row > div.cost {
		display: table-cell;
		width: 20%;
	}
	.school .schedule-table .schedule-row > div.instructor-books {
		display: none;
	}
	.school .schedule-table .schedule-row > div.instructor {
		width: 30%;
		display: table-cell;
	}

	.school .schedule-table .schedule-row > div.enroll {
		display: table-cell;
	}

	.school .schedule-table .schedule-row > div.cost-enroll {
		display: none;
	}
}

@media (min-width: 10px) {
	.school .schedule-table .schedule-row > div.date-time {
		display: none;
	}
	.school .schedule-table .schedule-row > div.info,
	.school .schedule-table .schedule-row > div.date {
		width: 22%;
		display: table-cell;
		overflow: hidden;
	}
	.school .schedule-table .schedule-row > div.time {
		width: 18%;
		display: table-cell;
	}
	.school .schedule-table .schedule-row > div.instructor {
		width: 22%;
		display: table-cell;
	}

	.school .schedule-table .schedule-row > div.cost {
		width: 20%;
	}
	.school .schedule-table .schedule-row > div.enroll {
		width: 18%;
	}
	.school .schedule-table .schedule-row > div.text {
		width: 78%;
		max-width: 78%;
	}
}

@media (min-width: 1021px) {
	.school .title-tr {
		display: table-cell;
		width: 150px;
		background-color: #e5e5e5;
		vertical-align: top;
	}

	.school .title-tr:hover {
		background-color: #f0f0f0;
	}
	.school .title-tr:hover .course-title {
		color: #009fad;
	}

	.school .schedule-tr {
		display: table-cell;
	}
}

.school .time .timezones,
.school .date-time .timezones {
	display: none;
	position: absolute;
	width: 200px;
	height: 125px;
	top: 20px;
	left: 30px;
	background-color: white;
	border-radius: 5px;
	border: 2px solid black;
	padding: 10px;
	line-height: 1.2em;
	z-index: 100;
	opacity: 0.9;
}
.school .time:hover .timezones,
.school .time.clicked .timezones {
	display: block;
}
.school .date-time:hover .timezones,
.school .date-time.clicked .timezones {
	display: block;
}

@media (max-width: 1020px) {
	.school .course-title {
		padding: 5px;
		color: white;
	}

	.school .course-title a {
		color: white;
	}
}

@media (max-width: 420px) {
	.school .schedule-table .schedule-row {
		display: flex;
		flex-wrap: wrap;
		height: auto !important;
		font-size: 0.9em;
	}

	.school .schedule-table .schedule-row > div {
		flex-basis: auto;
		flex-grow: 1;
		flex-shrink: 0;
	}

	.school .schedule-table .schedule-row > div.date {
		display: block;
		max-width: 100%;
		width: 50%;
	}

	.school .schedule-table .schedule-row > div.date strong {
		margin-right: 10px;
	}
	.school .schedule-table .schedule-row > div.time {
		display: block;
		text-align: right;
		max-width: 100%;
		width: 50%;
	}

	.school .schedule-table .schedule-row > div.instructor {
		display: flex;
		max-width: 100%;
		flex-shrink: 0;
		align-items: center;
	}

	.school .schedule-table .schedule-row > div.enroll {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		max-width: 100%;
		width: 33%;
		min-width: 33%;
		flex-grow: 0;
		flex-shrink: 0;
	}

	.school .schedule-table .schedule-row > div.enroll .btn {
		width: 100%;
		height: 31px;
		padding: 4px;
	}

	.school .schedule-table .schedule-row > div.enroll .action {
		font-weight: bold;
	}

	.school .schedule-table .schedule-row > div.cost {
		display: flex;
		max-width: 100%;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
	}

	.school .schedule-table .schedule-row > div.info {
		display: block;
		width: 100%;
		max-width: 100%;
	}

	.school .schedule-table .schedule-row > div.text {
		display: block;
		width: 100%;
		max-width: 100%;
	}
}

.infobar-summer {
	display: none;
}

.school__schedule__panel {
	margin-bottom: 10px;
	box-sizing: border-box;
	font-size: 15px;
	line-height: 1.43;
	font-family: "Roboto", sans-serif;
}

.school__schedule__panel__content {
	padding: 10px;
	background-color: white;
}

.school__schedule__panel__summary {
	background-color: #1b365d;
	transition: background-color 200ms cubic-bezier(0.45, 0.05, 0.55, 0.95) !important;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	margin-top: 0;
	padding: 10px;
	cursor: pointer;
	user-select: none;
	font-size: 18px;
	font-weight: 700;
}
.school__schedule__panel__summary:hover {
	background-color: #46648f;
}
.school__schedule__panel__summary__grade-levels {
	padding-left: 5px;
	text-align: right;
	font-size: 13px;
	text-transform: capitalize;
}
.school__schedule__panel__summary__left-side {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}
.school__schedule__panel__summary__title {
	padding-left: 42px;
}
.school__schedule__panel__summary__left-side--icon {
	margin: 0px 10px;
	padding: 0;
	position: absolute;
}
.school__schedule__panel__summary__left-side--icon.open {
	transform: translateY(-2px) rotateZ(0deg);
}

.chevron {
	transform: translateY(-2px) rotateZ(-180deg);
	transform-origin: center 10.5px;
	transition: transform 200ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.chevron.open {
	transform: translateY(-2px) rotateZ(0deg);
}

.schedule-closed-filter {
	margin-top: 5px;
	margin-right: 8px;
	float: right;
}
.schedule-closed-filter label,
.schedule-closed-filter input {
	cursor: pointer;
}

.aops-panel__title {
	float: left;
}

.schedule-closed-filter {
	margin-top: 5px;
	margin-right: 8px;
	float: right;
}

.schedule-closed-filter label,
.schedule-closed-filter input {
	cursor: pointer;
}

.dropdown-filter {
	float: right;
}

.dropdown-filter > #form-season {
	margin-top: 4px;
}

.dropdown-filter > #form-timezone {
	margin-top: 4px;
	margin-right: 10px;
}

@media screen and (max-width: 500px) {
	.dropdown-filter {
		margin-bottom: 4px;
	}
	.dropdown-filter > #form-timezone {
		margin-right: 0;
	}
	.schedule-closed-filter {
		margin-right: 0;
		width: 100%;
		margin-bottom: 4px;
		text-align: right;
	}
}
