fieldset.datepicker.tour-date-picker-field input[type="text"] {
	cursor: pointer;
	background-image: url("/local/templates/main/images/datepicker_calendar.svg");
	background-repeat: no-repeat;
	background-position: calc(100% - 12px) center;
	background-size: 20px 20px;
	padding-right: 40px;
}

.tour-date-picker-popup {
	position: absolute;
	z-index: 1000;
	width: 280px;
	padding: 16px;
	background: #fff;
	border: 1px solid rgba(75, 105, 221, 0.2);
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(52, 58, 96, 0.12);
	box-sizing: border-box;
	overflow: hidden;
}

.tour-date-picker-popup *,
.tour-date-picker-popup *::before,
.tour-date-picker-popup *::after {
	box-sizing: border-box;
}

.tour-date-picker-popup__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.tour-date-picker-popup__title {
	font-size: 15px;
	font-weight: 600;
	color: #343a60;
	text-transform: capitalize;
}

.tour-date-picker-popup__nav {
	display: flex;
	gap: 4px;
}

.tour-date-picker-popup__nav-btn {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 28px !important;
	min-width: 0 !important;
	max-width: 28px;
	height: 28px !important;
	min-height: 0 !important;
	padding: 0 !important;
	border: none !important;
	border-radius: 6px !important;
	background: transparent !important;
	box-shadow: none !important;
	color: #3068f7 !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	cursor: pointer;
}

.tour-date-picker-popup__nav-btn:hover {
	background: #f2f5ff !important;
}

.tour-date-picker-popup__nav-btn:disabled {
	opacity: 0.35;
	cursor: default;
}

.tour-date-picker-popup__weekdays,
.tour-date-picker-popup__days {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 2px;
	width: 100%;
}

.tour-date-picker-popup__weekday {
	padding: 4px 0;
	font-size: 12px;
	font-weight: 500;
	color: rgba(52, 58, 96, 0.5);
	text-align: center;
}

.tour-date-picker-popup__day {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100%;
	height: auto !important;
	min-height: 0 !important;
	aspect-ratio: 1;
	padding: 0 !important;
	margin: 0;
	border: 1px solid transparent !important;
	border-radius: 8px !important;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	color: #343a60 !important;
	cursor: pointer;
}

.tour-date-picker-popup__day:hover:not(:disabled):not(.is-empty) {
	background: #f2f5ff !important;
}

.tour-date-picker-popup__day.is-empty {
	visibility: hidden;
	pointer-events: none;
}

.tour-date-picker-popup__day.is-today {
	font-weight: 600 !important;
}

.tour-date-picker-popup__day.is-selected {
	background: #3068f7 !important;
	border-color: #3068f7 !important;
	color: #fff !important;
}

.tour-date-picker-popup__day.is-available:not(.is-selected) {
	border-color: #3068f7 !important;
	background: #f2f5ff !important;
	color: #3068f7 !important;
}

.tour-date-picker-popup__day:disabled {
	color: rgba(52, 58, 96, 0.25) !important;
	cursor: default;
}
