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: 300px;
	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 button {
	min-width: 0 !important;
	width: auto;
	height: auto !important;
	padding: 0 !important;
	box-shadow: none !important;
	font-weight: inherit !important;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.tour-date-picker-popup button:hover {
	filter: none !important;
	-webkit-filter: none !important;
}

.tour-date-picker-popup__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.tour-date-picker-popup__title {
	font-size: 16px;
	font-weight: 600;
	color: #343a60;
	text-transform: capitalize;
}

.tour-date-picker-popup__nav {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.tour-date-picker-popup__nav-btn svg {
	display: block;
	width: 12px;
	height: 18px;
}

.tour-date-picker-popup__nav-btn {
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 40px !important;
	min-width: 40px !important;
	max-width: 40px;
	height: 40px !important;
	min-height: 40px !important;
	border: 1px solid rgba(48, 104, 247, 0.3) !important;
	border-radius: 8px !important;
	background: #f2f5ff !important;
	color: #3068f7 !important;
	font-size: 26px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	cursor: pointer;
}

.tour-date-picker-popup__nav-btn:hover:not(:disabled) {
	background: #3068f7 !important;
	border-color: #3068f7 !important;
	color: #fff !important;
}

.tour-date-picker-popup__nav-btn:disabled {
	opacity: 0.35;
	cursor: default;
	background: #f7f8fc !important;
	border-color: rgba(48, 104, 247, 0.12) !important;
}

.tour-date-picker-popup__weekdays,
.tour-date-picker-popup__days {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 4px;
	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;
	margin: 0;
	border: 1px solid transparent !important;
	border-radius: 8px !important;
	background: transparent !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	color: #343a60 !important;
	cursor: pointer;
}

.tour-date-picker-popup__day:not(.is-empty):not(:disabled):not(.is-selected):hover {
	background: rgba(48, 104, 247, 0.12) !important;
	border-color: rgba(48, 104, 247, 0.35) !important;
	color: #3068f7 !important;
}

.tour-date-picker-popup__day.is-empty {
	visibility: hidden;
	pointer-events: none;
}

.tour-date-picker-popup__day.is-today:not(.is-selected) {
	font-weight: 700 !important;
	color: #d819a3 !important;
	background: rgba(216, 25, 163, 0.1) !important;
	box-shadow: inset 0 0 0 2px #d819a3;
}

.tour-date-picker-popup__day.is-today:not(.is-selected):hover {
	background: rgba(216, 25, 163, 0.18) !important;
	border-color: #d819a3 !important;
	color: #d819a3 !important;
}

.tour-date-picker-popup__day.is-selected {
	background: #3068f7 !important;
	border-color: #3068f7 !important;
	color: #fff !important;
	box-shadow: none;
}

.tour-date-picker-popup__day.is-selected:hover {
	background: #2556d6 !important;
	border-color: #2556d6 !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.is-available:not(.is-selected):hover {
	background: #3068f7 !important;
	border-color: #3068f7 !important;
	color: #fff !important;
}

.tour-date-picker-popup__day.is-today.is-available:not(.is-selected) {
	color: #3068f7 !important;
	background: #f2f5ff !important;
	box-shadow: inset 0 0 0 2px #d819a3;
}

.tour-date-picker-popup__day.is-today.is-available:not(.is-selected):hover {
	background: #3068f7 !important;
	border-color: #3068f7 !important;
	color: #fff !important;
	box-shadow: none;
}

.tour-date-picker-popup__day:disabled {
	color: rgba(52, 58, 96, 0.25) !important;
	background: transparent !important;
	border-color: transparent !important;
	cursor: default;
}

.tour-date-picker-popup__day:disabled:hover {
	background: transparent !important;
	border-color: transparent !important;
	color: rgba(52, 58, 96, 0.25) !important;
}
