.k9cf {
		--k9-blue: #176cf6;
		--k9-blue-dark: #0d56cf;
		--k9-navy: #0b1b3a;
		--k9-text: #3f4d66;
		--k9-muted: #768198;
		--k9-line: #e7ebf2;
		--k9-soft: #f7f9fc;
		--k9-purple: #7447e8;
		--k9-purple-bg: #f3ecff;
		--k9-radius: 16px;
		background: #fff;
		color: var(--k9-navy);
		font-family: "Plus Jakarta Sans", Sans-serif;
		padding: 64px 20px 80px;
	}

	.k9cf * {
		box-sizing: border-box;
	}

	.k9cf-container {
		width: min(1240px, 100%);
		margin: 0 auto;
	}

	.k9cf-intro {
		text-align: center;
		max-width: 860px;
		margin: 0 auto 28px;
	}

	.k9cf-eyebrow {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		color: var(--k9-blue);
		font-weight: 700;
		font-size: 14px;
		margin-bottom: 12px;
	}

	.k9cf-title {
		margin: 0;
		font-size: clamp(34px, 4vw, 56px);
		line-height: 1.08;
		letter-spacing: -0.035em;
		color: var(--k9-navy);
	}

	.k9cf-subtitle {
		margin: 14px auto 0;
		max-width: 720px;
		font-size: 17px;
		line-height: 1.65;
		color: var(--k9-text);
	}

	.k9cf-search {
		max-width: 850px;
		margin: 30px auto 18px;
		display: grid;
		grid-template-columns: 1fr auto;
		gap: 10px;
	}

	.k9cf-search-field {
		position: relative;
		min-width: 0;
	}

	.k9cf-search-field svg {
		position: absolute;
		left: 18px;
		top: 50%;
		transform: translateY(-50%);
		width: 20px;
		height: 20px;
		color: #8390a6;
		pointer-events: none;
	}

	.k9cf-search input {
		width: 100%;
		height: 58px;
		border: 1px solid #dce2ec;
		border-radius: 12px;
		padding: 0 18px 0 52px;
		font: inherit;
		font-size: 16px;
		color: var(--k9-navy);
		outline: none;
		background: #fff;
		transition: border-color .2s ease, box-shadow .2s ease;
	}

	.k9cf-search input:focus {
		border-color: var(--k9-blue);
		box-shadow: 0 0 0 4px rgba(23,108,246,.1);
	}

	.k9cf-search button {
		height: 58px;
		border: 0;
		border-radius: 12px;
		padding: 0 30px;
		background: var(--k9-blue);
		color: #fff;
		font: inherit;
		font-weight: 800;
		cursor: pointer;
		transition: background .2s ease, transform .2s ease;
	}

	.k9cf-search button:hover {
		background: var(--k9-blue-dark);
	}

	.k9cf-search {
		position: relative;
	}

	.k9cf-search button.is-loading {
		pointer-events: none;
		opacity: .92;
	}

	.k9cf-search-button-loader {
		display: none;
		width: 18px;
		height: 18px;
		border: 2px solid rgba(255,255,255,.45);
		border-top-color: #fff;
		border-radius: 50%;
		animation: k9cf-spin .7s linear infinite;
	}

	.k9cf-search button.is-loading .k9cf-search-button-label {
		display: none;
	}

	.k9cf-search button.is-loading .k9cf-search-button-loader {
		display: inline-block;
	}

	.k9cf-search-progress {
		position: absolute;
		left: 0;
		right: 0;
		top: calc(100% + 8px);
		z-index: 8;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		min-height: 38px;
		padding: 8px 14px;
		border: 1px solid #e1e7f0;
		border-radius: 10px;
		background: rgba(255,255,255,.97);
		box-shadow: 0 10px 25px rgba(31,50,87,.08);
		color: #52617a;
		font-size: 12px;
		font-weight: 700;
	}

	.k9cf-search-progress[hidden] {
		display: none !important;
	}

	.k9cf-search-progress-spinner {
		width: 15px;
		height: 15px;
		border: 2px solid #dbe4f2;
		border-top-color: var(--k9-blue);
		border-radius: 50%;
		animation: k9cf-spin .7s linear infinite;
	}


.k9cf-location-tools {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	max-width: 860px;
	margin: -7px auto 16px;
}

.k9cf-location-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 15px;
	border: 1px solid #d8e2f0;
	border-radius: 999px;
	background: #fff;
	color: var(--k9-blue);
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 5px 16px rgba(31, 50, 87, .05);
	transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.k9cf-location-btn:hover {
	border-color: var(--k9-blue);
	background: #f7faff;
	transform: translateY(-1px);
}

.k9cf-location-btn:disabled {
	opacity: .72;
	cursor: wait;
	transform: none;
}

.k9cf-location-btn svg {
	width: 16px;
	height: 16px;
}

.k9cf-location-btn.is-loading svg {
	animation: k9cf-location-pulse 1s ease-in-out infinite;
}

@keyframes k9cf-location-pulse {
	0%, 100% { opacity: .45; transform: scale(.9); }
	50% { opacity: 1; transform: scale(1.08); }
}

.k9cf-location-active {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 42px;
	padding: 6px 7px 6px 13px;
	border: 1px solid #d6e6db;
	border-radius: 999px;
	background: #f4faf6;
	color: #325946;
	font-size: 12px;
	font-weight: 800;
}

.k9cf-location-active[hidden] {
	display: none !important;
}

.k9cf-location-active-copy {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.k9cf-location-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #2e9b5f;
	box-shadow: 0 0 0 4px rgba(46,155,95,.11);
}

.k9cf-remove-location {
	min-height: 30px;
	padding: 0 10px;
	border: 1px solid #d7e4da;
	border-radius: 999px;
	background: #fff;
	color: #496656;
	font: inherit;
	font-size: 10px;
	font-weight: 900;
	cursor: pointer;
}

.k9cf-remove-location:hover {
	border-color: #9fbaa9;
	color: #244a36;
}

.k9cf-location-feedback {
	max-width: 660px;
	padding: 8px 11px;
	border-radius: 8px;
	background: #f5f7fa;
	color: #59677d;
	font-size: 11px;
	font-weight: 700;
	text-align: center;
}

.k9cf-location-feedback[hidden] {
	display: none !important;
}

.k9cf-location-feedback[data-type="error"] {
	background: #fff5f5;
	color: #a13b3b;
}

	.k9cf-notes {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
		margin: 0 0 30px;
	}

	.k9cf-note {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		padding: 9px 13px;
		border-radius: 999px;
		background: #edf5ff;
		color: #2160c7;
		font-size: 13px;
		font-weight: 700;
	}

	.k9cf-note.is-purple {
		background: var(--k9-purple-bg);
		color: var(--k9-purple);
	}

	.k9cf-result-summary {
		min-height: 20px;
		margin: -16px 0 18px;
		text-align: center;
		color: #647189;
		font-size: 12px;
		font-weight: 700;
	}

	.k9cf-result-summary:empty {
		display: none;
	}

	.k9cf-main {
		display: grid;
		grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
		gap: 26px;
		align-items: start;
	}

	.k9cf-results {
		min-width: 0;
		display: grid;
		gap: 12px;
	}

	.k9cf-card {
		display: grid;
		grid-template-columns: 78px minmax(0, 1fr) auto;
		align-items: center;
		gap: 20px;
		min-height: 128px;
		padding: 18px 20px;
		border: 1px solid var(--k9-line);
		border-radius: var(--k9-radius);
		background: #fff;
		box-shadow: 0 8px 24px rgba(31, 50, 87, .06);
		transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
	}

	.k9cf-card.is-active {
		border-color: rgba(23,108,246,.55);
		box-shadow: 0 12px 32px rgba(23,108,246,.12);
	}

	.k9cf-card[hidden] {
		display: none !important;
	}

	.k9cf-date {
		align-self: stretch;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		border-right: 1px solid var(--k9-line);
		padding-right: 18px;
		text-align: center;
	}

	.k9cf-date-icon {
		width: 22px;
		height: 22px;
		margin-bottom: 4px;
		color: var(--k9-blue);
	}

	.k9cf-month,
	.k9cf-weekday {
		font-size: 11px;
		line-height: 1.1;
		font-weight: 800;
		color: #56647c;
	}

	.k9cf-day {
		font-size: 31px;
		line-height: 1.05;
		font-weight: 900;
		color: var(--k9-blue);
		margin: 2px 0;
	}

	.k9cf-info {
		min-width: 0;
	}

	.k9cf-name-row {
		display: flex;
		align-items: center;
		gap: 9px;
		flex-wrap: wrap;
		margin-bottom: 8px;
	}

	.k9cf-name {
		margin: 0;
		font-size: 18px;
		line-height: 1.3;
		font-weight: 800;
		color: var(--k9-navy);
	}

	.k9cf-badge {
		display: inline-flex;
		align-items: center;
		gap: 5px;
		border-radius: 999px;
		padding: 5px 9px;
		background: var(--k9-purple-bg);
		color: var(--k9-purple);
		font-size: 11px;
		font-weight: 800;
		white-space: nowrap;
	}

	.k9cf-address {
		display: flex;
		gap: 8px;
		align-items: flex-start;
		color: var(--k9-text);
		font-size: 13px;
		line-height: 1.55;
	}

	.k9cf-address svg {
		flex: 0 0 auto;
		width: 16px;
		height: 16px;
		margin-top: 2px;
		color: #65748d;
	}

	.k9cf-distance {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		margin-top: 9px;
		padding: 6px 9px;
		border-radius: 999px;
		background: #eef5ff;
		color: #1764d6;
		font-size: 11px;
		font-weight: 800;
	}

	.k9cf-distance[hidden] {
		display: none !important;
	}

	.k9cf-distance svg {
		width: 13px;
		height: 13px;
		flex: 0 0 auto;
	}

	.k9cf-nearby-message {
		max-width: 920px;
		margin: -8px auto 22px;
		padding: 12px 16px;
		border: 1px solid #dae6f7;
		border-radius: 12px;
		background: #f6f9ff;
		color: #40516d;
		text-align: center;
		font-size: 13px;
		font-weight: 700;
		line-height: 1.5;
	}

	.k9cf-nearby-message[hidden] {
		display: none !important;
	}

	.k9cf-nearby-message strong {
		color: var(--k9-blue);
	}

	.k9cf-nearby-message.is-error {
		border-color: #f0c9c9;
		background: #fff6f6;
		color: #8d3535;
	}

	.k9cf-nearby-message.is-error strong {
		color: #a62d2d;
	}

	.k9cf-actions {
		min-width: 185px;
		text-align: right;
	}

	.k9cf-book {
		width: 100%;
		min-height: 46px;
		border: 0;
		border-radius: 9px;
		padding: 0 18px;
		background: var(--k9-blue);
		color: #fff;
		font: inherit;
		font-size: 13px;
		font-weight: 800;
		cursor: pointer;
		transition: background .2s ease, transform .2s ease;
	}

	.k9cf-book:hover {
		background: var(--k9-blue-dark);
		transform: translateY(-1px);
	}

	.k9cf-book:disabled {
		background: #aab4c4;
		cursor: not-allowed;
		transform: none;
	}

	.k9cf-next {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 6px;
		margin-top: 10px;
		font-size: 11px;
		font-weight: 700;
		color: #68758d;
		white-space: nowrap;
	}

	button.k9cf-next {
		width: 100%;
		padding: 0;
		border: 0;
		background: transparent;
		font: inherit;
		color: #58677f;
		cursor: pointer;
	}

	button.k9cf-next:hover {
		color: var(--k9-blue);
	}

	.k9cf-next svg {
		width: 14px;
		height: 14px;
		flex: 0 0 auto;
	}

	.k9cf-next-chevron {
		transition: transform .2s ease;
	}

	.k9cf-next-toggle[aria-expanded="true"] .k9cf-next-chevron {
		transform: rotate(180deg);
	}

	.k9cf-next-dates {
		margin-top: 9px;
		padding: 9px 11px;
		border: 1px solid #e4e9f1;
		border-radius: 9px;
		background: #f8faff;
		text-align: left;
	}

	.k9cf-next-dates[hidden] {
		display: none !important;
	}

	.k9cf-next-date-row {
		display: flex;
		align-items: baseline;
		gap: 6px;
		font-size: 11px;
		line-height: 1.45;
		color: #52617a;
	}

	.k9cf-next-date-row + .k9cf-next-date-row {
		margin-top: 5px;
		padding-top: 5px;
		border-top: 1px solid #e7ebf2;
	}

	.k9cf-next-date-row.is-nearest {
		padding: 7px 8px;
		margin: -2px -3px 4px;
		border-radius: 7px;
		background: #edf5ff;
	}

	.k9cf-next-date-number {
		flex: 0 0 22px;
		width: 22px;
		height: 22px;
		display: grid;
		place-items: center;
		border-radius: 50%;
		background: #eaf2ff;
		color: var(--k9-blue);
		font-size: 10px;
		font-weight: 900;
	}

	.k9cf-next-date-content {
		min-width: 0;
		display: flex;
		flex-direction: column;
		gap: 1px;
	}

	.k9cf-next-date-label {
		color: var(--k9-blue);
		font-weight: 800;
	}

	.k9cf-next-date-row strong {
		color: var(--k9-navy);
		font-weight: 800;
	}

	.k9cf-next-date-row {
		align-items: center;
	}

	.k9cf-empty {
		padding: 32px;
		border: 1px dashed #ccd4e1;
		border-radius: var(--k9-radius);
		text-align: center;
		color: var(--k9-text);
		background: var(--k9-soft);
	}

	.k9cf-footnote {
		display: flex;
		align-items: center;
		gap: 8px;
		margin: 16px 3px 0;
		color: #627088;
		font-size: 12px;
	}

	.k9cf-footnote strong {
		color: var(--k9-blue);
	}

	.k9cf-map-wrap {
		position: sticky;
		top: 24px;
		min-width: 0;
	}

	#k9cf-map {
		width: 100%;
		height: 468px;
		border: 1px solid var(--k9-line);
		border-radius: var(--k9-radius);
		overflow: hidden;
		box-shadow: 0 8px 24px rgba(31, 50, 87, .06);
		background: #eef3f7;
	}

	.k9cf-map-label {
		display: inline-flex;
		align-items: center;
		gap: 7px;
		margin-top: 10px;
		padding: 8px 11px;
		border: 1px solid var(--k9-line);
		border-radius: 10px;
		background: #fff;
		color: #33415a;
		font-size: 12px;
		font-weight: 700;
	}

	.k9cf-map-label svg {
		width: 15px;
		height: 15px;
		color: var(--k9-blue);
	}

	/* Leaflet location marker */
	.k9cf-map-pin-wrap {
		background: transparent !important;
		border: 0 !important;
	}

	.k9cf-map-pin {
		display: block;
		width: 34px;
		height: 42px;
		filter: drop-shadow(0 5px 8px rgba(23,108,246,.24));
	}

	.k9cf-popup {
		min-width: 210px;
		max-width: 250px;
		padding: 2px;
	}

	.k9cf-popup-title {
		font-weight: 800;
		color: var(--k9-navy);
		margin-bottom: 4px;
	}

	.k9cf-popup-meta {
		color: #647189;
		font-size: 12px;
		line-height: 1.45;
	}

	.k9cf-popup-date {
		display: inline-flex;
		align-items: center;
		margin-bottom: 5px;
		color: var(--k9-blue);
		font-size: 11px;
		font-weight: 800;
	}

	.k9cf-popup-book {
		width: 100%;
		min-height: 40px;
		margin-top: 10px;
		border: 0;
		border-radius: 8px;
		padding: 0 12px;
		background: var(--k9-blue);
		color: #fff;
		font: inherit;
		font-size: 12px;
		font-weight: 800;
		cursor: pointer;
	}

	.k9cf-popup-book:hover {
		background: var(--k9-blue-dark);
	}

	.k9cf-popup-book:disabled {
		background: #aab4c4;
		cursor: not-allowed;
	}

	/* Modal */
	.k9cf-modal {
		position: fixed;
		inset: 0;
		z-index: 999999;
		display: none;
		align-items: center;
		justify-content: center;
		padding: 22px;
		background: rgba(8, 19, 38, .66);
		backdrop-filter: blur(6px);
	}

	.k9cf-modal.is-open {
		display: flex;
	}

	.k9cf-modal-dialog {
		width: min(1180px, 96vw);
		max-height: 94vh;
		display: flex;
		flex-direction: column;
		background: #fff;
		border-radius: 18px;
		overflow: hidden;
		box-shadow: 0 30px 90px rgba(0,0,0,.28);
	}

	.k9cf-modal-head {
		flex: 0 0 auto;
		padding: 18px 22px 15px;
		border-bottom: 1px solid var(--k9-line);
		background: #fff;
	}

	.k9cf-modal-top {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 18px;
	}

	.k9cf-modal-kicker {
		color: var(--k9-blue);
		font-size: 12px;
		font-weight: 800;
		text-transform: uppercase;
		letter-spacing: .08em;
	}

	.k9cf-modal-title {
		margin: 3px 0 0;
		font-size: 22px;
		line-height: 1.25;
		color: var(--k9-navy);
	}

	.k9cf-modal-tools {
		display: flex;
		align-items: center;
		gap: 10px;
		flex: 0 0 auto;
	}

	.k9cf-new-tab {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 42px;
		padding: 0 14px;
		border: 1px solid #dfe4ec;
		border-radius: 999px;
		background: #fff;
		color: var(--k9-blue);
		font-size: 12px;
		font-weight: 800;
		text-decoration: none;
	}

	.k9cf-new-tab:hover {
		border-color: var(--k9-blue);
		color: var(--k9-blue-dark);
	}

	.k9cf-close {
		width: 42px;
		height: 42px;
		border: 1px solid #dfe4ec;
		border-radius: 50%;
		background: #fff;
		color: #283750;
		font-size: 24px;
		line-height: 1;
		cursor: pointer;
	}

	.k9cf-steps {
		display: flex;
		align-items: center;
		margin-top: 15px;
	}

	.k9cf-step {
		display: flex;
		align-items: center;
		gap: 8px;
		color: #8a95a7;
		font-size: 12px;
		font-weight: 700;
		white-space: nowrap;
	}

	.k9cf-step-dot {
		width: 25px;
		height: 25px;
		display: grid;
		place-items: center;
		border-radius: 50%;
		border: 1px solid #cfd6e1;
		background: #fff;
		font-size: 11px;
	}

	.k9cf-step.is-done,
	.k9cf-step.is-active {
		color: var(--k9-blue);
	}

	.k9cf-step.is-done .k9cf-step-dot,
	.k9cf-step.is-active .k9cf-step-dot {
		border-color: var(--k9-blue);
		background: var(--k9-blue);
		color: #fff;
	}

	.k9cf-step-line {
		flex: 1 1 70px;
		height: 1px;
		margin: 0 10px;
		background: #dfe4ec;
	}

	.k9cf-modal-body {
		min-height: 0;
		flex: 1 1 auto;
		background: #f4f7fb;
		padding: 12px;
	}

	.k9cf-frame-shell {
		position: relative;
		height: min(720px, 72vh);
		min-height: 560px;
		border-radius: 12px;
		overflow: hidden;
		background: #fff;
	}

	.k9cf-frame-loader {
		position: absolute;
		inset: 0;
		z-index: 2;
		display: grid;
		place-items: center;
		background: #fff;
		color: #52617a;
		font-size: 14px;
		font-weight: 700;
	}

	.k9cf-frame-loader.is-hidden {
		display: none;
	}

	.k9cf-spinner {
		width: 34px;
		height: 34px;
		margin: 0 auto 10px;
		border: 3px solid #e5eaf2;
		border-top-color: var(--k9-blue);
		border-radius: 50%;
		animation: k9cf-spin .8s linear infinite;
	}

	@keyframes k9cf-spin {
		to { transform: rotate(360deg); }
	}

	#k9cf-frame {
		width: 100%;
		height: 100%;
		border: 0;
		background: #fff;
	}

	body.k9cf-modal-open {
		overflow: hidden;
	}

	@media (max-width: 980px) {
		.k9cf-main {
			grid-template-columns: 1fr;
		}

		.k9cf-map-wrap {
			position: static;
		}

		#k9cf-map {
			height: 390px;
		}
	}

	@media (max-width: 720px) {
		.k9cf {
			padding: 42px 14px 60px;
		}

		.k9cf-search {
			grid-template-columns: 1fr;
		}

		.k9cf-search button {
			width: 100%;
		}

		.k9cf-card {
			grid-template-columns: 64px minmax(0, 1fr);
			gap: 14px;
			padding: 16px;
		}

		.k9cf-date {
			padding-right: 12px;
		}

		.k9cf-actions {
			grid-column: 1 / -1;
			min-width: 0;
			width: 100%;
		}

		.k9cf-next {
			justify-content: flex-start;
			margin-left: 78px;
			width: calc(100% - 78px);
		}

		.k9cf-next-dates {
			margin-left: 78px;
		}

		.k9cf-location-active {
		width: 100%;
		justify-content: space-between;
		border-radius: 12px;
	}

	.k9cf-location-active-copy {
		min-width: 0;
	}

	#k9cf-location-label {
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.k9cf-remove-location {
		flex: 0 0 auto;
	}

	.k9cf-modal {
			padding: 0;
			align-items: stretch;
		}

		.k9cf-modal-dialog {
			width: 100%;
			max-height: none;
			min-height: 100%;
			border-radius: 0;
		}

		.k9cf-modal-head {
			padding: 14px;
		}

		.k9cf-modal-title {
			font-size: 18px;
		}

		.k9cf-new-tab {
			min-height: 38px;
			padding: 0 10px;
			font-size: 10px;
		}


		.k9cf-step {
			font-size: 10px;
		}

		.k9cf-step-line {
			margin: 0 5px;
		}

		.k9cf-modal-body {
			padding: 0;
		}

		.k9cf-frame-shell {
			height: calc(100vh - 142px);
			min-height: 600px;
			border-radius: 0;
		}

		#k9cf-map {
			height: 320px;
		}
	}

	@media (prefers-reduced-motion: reduce) {
		.k9cf *,
		.k9cf *::before,
		.k9cf *::after {
			scroll-behavior: auto !important;
			animation-duration: .01ms !important;
			animation-iteration-count: 1 !important;
			transition-duration: .01ms !important;
		}
	}
	
	
	
	
	.k9-shortcode-clinic-search {
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
}

.k9-shortcode-clinic-search__inner {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 86px;
	padding: 8px;
	border: 2px solid #e0e7ef;
	border-radius: 999px;
	background: #fff;
}

.k9-shortcode-clinic-search input {
	flex: 1;
	min-width: 0;
	height: 66px;
	padding: 0 34px;
	border: 0 !important;
	outline: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	font-size: 22px;
	color: #263448;
}

.k9-shortcode-clinic-search input::placeholder {
	color: #72767c;
	opacity: 1;
}

.k9-shortcode-clinic-search button {
	flex: 0 0 auto;
	min-width: 170px;
	height: 66px;
	padding: 0 30px;
	border: 0;
	border-radius: 999px;
	background: #28628b;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}

.k9-shortcode-clinic-search button:hover {
	background: #1f5175;
	transform: translateY(-1px);
}

@media (max-width: 600px) {
	.k9-shortcode-clinic-search__inner {
		min-height: 68px;
		padding: 6px;
	}

	.k9-shortcode-clinic-search input {
		height: 54px;
		padding: 0 18px;
		font-size: 16px;
	}

	.k9-shortcode-clinic-search button {
		min-width: 105px;
		height: 54px;
		padding: 0 18px;
		font-size: 15px;
	}
}
