
.modal#modal-sorting {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0);
	transition: background-color 0.2s ease;
	z-index: 999;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 100%;
}

.modal-content#modal-sorting {
	padding: 20px;
	border-radius: 10px 10px 0 0;
	width: 100%;
	max-width: 600px;
	color: white;
	transform: translateY(100%);
	box-sizing: border-box;
	transition: transform 0.2s ease;
}

.sort-buttons {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
	background-color: rgba(6, 29, 25, 1);
	border-radius: 15px;
}

.sort-button {
	background: none;
	/* Полупрозрачный фон */
	color: #b0b0b0;
	/* Светло-серый цвет текста */
	border: none;
	border-bottom: 0.5px solid #072c25;
	padding: 15px;
	/* Закругленные углы */
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 2vh;
	text-align: center;
	justify-content: center;
}

.sort-button img {
	margin-right: 10px;
	width: 20px;
	height: 20px;
}

.sort-button.active {
	background-color: rgba(255, 255, 255, 0.06);
	/* Непрозрачный фон для активной кнопки */
	color: white;
	/* Белый текст для активной кнопки */
}

.sort-button.active#top {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
}

.sort-button.active#bottom {
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}

.cancel-button {
	background-color: rgba(6, 29, 25, 1);
	color: white;
	/* Белый текст на кнопке "Скасувати" */
	border: none;
	padding: 15px;
	cursor: pointer;
	font-size: 16px;
	text-align: center;
	width: 100%;
	margin-top: 10px;
	border-radius: 15px;
}

.cancel-button:hover {
	color: #098256;
}