/* ORA Course Calendar */

.ora-course-calendar,
.ora-course-calendar * {
	box-sizing: border-box;
}

.ora-course-calendar {
	width: 100%;
	background: #eef1f1;
	border-radius: 6px;
	padding: 44px 64px 28px;
	color: #173f3b;
	font-family: inherit;
}

.ora-course-calendar a {
	color: inherit;
}

.ora-cc-head {
	margin: 0 0 28px;
}

.ora-cc-title-main {
	margin: 0 0 7px;
	color: #173f3b;
	font-size: 28px;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: .01em;
}

.ora-cc-subtitle {
	color: #173f3b;
	font-size: 15px;
	line-height: 1.4;
	font-weight: 500;
	opacity: .86;
}

.ora-cc-month {
	margin: 0 0 20px;
}

.ora-cc-month:last-child {
	margin-bottom: 0;
}

.ora-cc-month-toggle {
	display: inline-flex;
	align-items: center;
	gap: 17px;
	min-height: 20px;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	color: #173f3b;
	font: inherit;
	font-size: 18px;
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.ora-cc-month-toggle:hover,
.ora-cc-month-toggle:focus {
	color: #0f2f2c;
}

.ora-cc-month-toggle:focus-visible {
	outline: 2px solid rgba(23, 63, 59, .35);
	outline-offset: 4px;
	border-radius: 3px;
}

.ora-cc-arrow {
	display: inline-block;
	width: 9px;
	height: 9px;
	border: solid currentColor;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg) translateY(-2px);
	transform-origin: 50% 50%;
	transition: transform .18s ease;
}

.ora-cc-month.is-open .ora-cc-arrow {
	transform: rotate(225deg) translateY(-2px);
}

.ora-cc-panel {
	padding-top: 16px;
}

.ora-cc-row {
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr) auto 22px;
	align-items: center;
	column-gap: 22px;
	min-height: 27px;
	margin: 0 0 12px;
}

.ora-cc-row:last-child {
	margin-bottom: 0;
}

.ora-cc-date {
	font-size: 13px;
	line-height: 1.25;
	font-weight: 500;
	color: #173f3b;
	opacity: .95;
}

.ora-cc-course {
	font-size: 14px;
	line-height: 1.35;
	font-weight: 500;
	color: #173f3b;
}

.ora-cc-button {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	text-decoration: none;
	white-space: nowrap;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 800;
	color: #173f3b;
	transition: opacity .15s ease;
}

.ora-cc-button:hover,
.ora-cc-cart:hover {
	opacity: .72;
}

.ora-cc-cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px;
	height: 18px;
	color: #173f3b;
	text-decoration: none;
	transition: opacity .15s ease;
}

.ora-cc-cart svg {
	display: block;
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.ora-cc-empty {
	display: none;
}

@media (max-width: 767px) {
	.ora-course-calendar {
		border-radius: 3px;
		padding: 18px 13px 17px;
	}

	.ora-cc-head {
		margin-bottom: 20px;
	}

	.ora-cc-title-main {
		font-size: 18px;
		line-height: 1.18;
	}

	.ora-cc-subtitle {
		font-size: 11px;
		line-height: 1.35;
	}

	.ora-cc-month {
		margin-bottom: 15px;
	}

	.ora-cc-month-toggle {
		gap: 10px;
		font-size: 13px;
		line-height: 1.1;
		letter-spacing: .055em;
	}

	.ora-cc-arrow {
		width: 7px;
		height: 7px;
		border-width: 0 1.6px 1.6px 0;
	}

	.ora-cc-panel {
		padding-top: 12px;
	}

	.ora-cc-row {
		grid-template-columns: minmax(0, 1fr) 18px;
		grid-template-rows: auto auto auto;
		column-gap: 8px;
		row-gap: 3px;
		align-items: end;
		min-height: 0;
		padding: 0 0 11px;
		margin: 0 0 11px;
		border-bottom: 1px solid rgba(23, 63, 59, .14);
	}

	.ora-cc-row:last-child {
		margin-bottom: 0;
	}

	.ora-cc-date {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
		font-size: 9px;
		line-height: 1.15;
		font-weight: 800;
		letter-spacing: .01em;
	}

	.ora-cc-course {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
		font-size: 10.5px;
		line-height: 1.18;
		font-weight: 500;
		padding-right: 4px;
	}

	.ora-cc-button {
		grid-column: 1 / 2;
		grid-row: 3 / 4;
		font-size: 11px;
		line-height: 1.1;
		font-weight: 800;
		margin-top: 5px;
		white-space: normal;
	}

	.ora-cc-cart {
		grid-column: 2 / 3;
		grid-row: 3 / 4;
		width: 15px;
		height: 15px;
		align-self: center;
	}

	.ora-cc-cart svg {
		width: 14px;
		height: 14px;
	}
}
