.cs-datepicker {
	cursor: text;
	background-image: none;
}
.cs-dp-wrap {
	position: relative;
	display: inline-block;
	max-width: 100%;
	min-width: 11em;
	vertical-align: middle;
}
.cs-dp-wrap-block {
	display: block;
	width: 100%;
}
.cs-dp-wrap .cs-datepicker {
	width: 100%;
	box-sizing: border-box;
	padding-right: 2.6em;
}
.cs-dp-toggle {
	position: absolute;
	right: 4px;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	border: 0;
	background: transparent;
	color: #1a8494;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	padding: 0;
}
.cs-dp-toggle:hover,
.cs-dp-toggle:focus {
	background: rgba(26, 132, 148, 0.12);
	outline: none;
}
.cs-dp-pop {
	position: absolute;
	z-index: 100000;
	width: 272px;
	padding: 12px;
	background: #f6f2ea;
	border: 1px solid #1a8494;
	border-radius: 12px;
	box-shadow: 0 10px 28px rgba(26, 132, 148, 0.18);
	font-family: Outfit, "Segoe UI", sans-serif;
	color: #2a241c;
}
.cs-dp-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
	gap: 6px;
}
.cs-dp-head button {
	background: #fff;
	border: 1px solid #d9d0c3;
	border-radius: 8px;
	min-width: 32px;
	min-height: 32px;
	cursor: pointer;
	color: #1a8494;
	font-weight: 600;
}
.cs-dp-title {
	font-weight: 600;
	font-size: 14px;
}
.cs-dp-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
	text-align: center;
}
.cs-dp-dow {
	font-size: 11px;
	color: #7a7166;
	padding: 4px 0;
}
.cs-dp-day {
	border: 0;
	background: transparent;
	border-radius: 8px;
	min-height: 32px;
	cursor: pointer;
	font-size: 13px;
}
.cs-dp-day:hover {
	background: rgba(26, 132, 148, 0.12);
}
.cs-dp-day.is-today {
	box-shadow: inset 0 0 0 1px #1a8494;
}
.cs-dp-day.is-selected {
	background: #1a8494;
	color: #fff;
}
.cs-dp-day.is-muted {
	color: #b5ada3;
}
.cs-dp-time {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 10px;
}
.cs-dp-time input {
	width: 64px;
	padding: 6px 8px;
	border: 1px solid #d9d0c3;
	border-radius: 8px;
}
.cs-dp-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 12px;
}
.cs-dp-ok {
	background: #1a8494;
	color: #fff;
	border: 0;
	border-radius: 24px;
	min-width: 88px;
	min-height: 40px;
	padding: 8px 20px;
	cursor: pointer;
	font-weight: 700;
	font-size: 15px;
}
