/* Заголовок */
.playbill--flex-title {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 3rem;
	margin-bottom: 30px;
}
.playbill--flex-title h1 {
	width: fit-content;
	margin: 0 !important;
}
.playbill--flex-title h1 a:hover {
	opacity: 60%;
}
.playbill--flex-title .nice-select {
	width: fit-content;
}

/* Навигация */
.playbill--month-nav {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
}
.playbill--month-nav--button {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	background-color: white;
	height: 60px;
	padding: 0 16px;
	border: 1px solid #dddddd;
	border-radius: 12px;
	cursor: pointer;
}
.playbill--month-nav button {
	background: none;
	font-weight: bold;
}
.playbill--month-nav button:hover {
	color: #ed9d6f;
}
.playbill--month-nav--button-icon {
	width: 16px;
	height: 16px;
}
.playbill--month-nav--button-icon--active {
	transform: rotate(180deg);
}
.playbill--month-nav ul {
	position: absolute;
	z-index: 10;
	display: none;
	flex-direction: column;
	gap: 12px;
	top: 59px;
	left: 0;
	padding: 16px;
	border: 1px solid #dddddd;
	border-radius: 12px;
	background-color: white;
}
.playbill--month-nav--active {
	display: flex !important;
}
.playbill--month-nav ul li:hover {
	color: #ed9d6f;
}

@media (max-width: 1024px) {
	.playbill--flex-title {
		flex-direction: column;
		gap: 20px;
		margin-bottom: 20px;
	}
	.playbill--month-nav {
		width: 100%;
	}
	.playbill--month-nav--button {
		width: 100%;
		justify-content: center;
		border-radius: 8px;
		font-size: 20px;
		height: 44px;
	}
	.playbill--month-nav ul {
		font-size: 20px;
		gap: 12px;
		top: 43px;
		left: 0;
		border-radius: 8px;
		width: 100%;
	}
}