@import url("bootstrap.min.css");

.ergodent-progress {
	width: 300px;
	max-width: 300px;
	height: 10px;
	background: #e5e7eb;
	/* helles Grau */
	border-radius: 999px;
	overflow: hidden;
}

.ergodent-progress-bar {
	height: 100%;
	width: 100%;
	background: linear-gradient(90deg, #73bee7, #73bee7);
	border-radius: 999px;
	overflow: hidden;
	transition: width 0.4s ease;
}

.digit-container {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.digit-container input {
	width: 50px;
	height: 50px;
	text-align: center;
	font-size: 1.8rem;
	border: 2px solid #ccc;
	border-radius: 5px;
}

.digit-container input:focus {
	border-color: #007bff;
	outline: none;
	box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.day-content {
	display: inline-block;
	/* shrink to slots width */
	text-align: left;
}

.day-title {
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 1.2em;
}

.slots {
	display: grid;
	grid-template-columns: repeat(4, 130px);
	/* max 4 per row */
	gap: 10px;
	justify-content: start;
}

@media (max-width: 600px) {
	.slots {
		grid-template-columns: repeat(2, 130px);
	}
}

.slot-button {
	all: unset;
	padding: 10px 15px;
	background-color: #73bee7;
	color: #4d4d4d;
	border: none;
	font-weight: 500;
	border-radius: 8px;
	cursor: pointer;
	text-align: center;
	transition:
		background-color 0.2s,
		transform 0.1s;
}

.slot-button:hover {
	background-color: #6eb5dc;
	transform: scale(1.05);
}

.slot-button.show-more {
	background-color: #e5e7eb;
	/* light gray for distinction */
	color: #111827;
	/* dark text for readability */
	font-weight: 600;
	/* optional, make it stand out */
	text-align: center;
	transition:
		background-color 0.2s,
		transform 0.1s;
}

.slot-button.show-more:hover {
	background-color: #d1d5db;
	/* slightly darker on hover */
	transform: scale(1.05);
}

.divider {
	height: 1px;
	background-color: #e5e7eb;
	margin: 22px 0;
}

@font-face {
	font-family: "Haas Neue Round";
	src: url("/assets/fonts/NeueHaasGrotDispRound-65Medium-Web.woff2") format("woff2"),
		url("/assets/fonts/NeueHaasGrotDispRound-65Medium-Web.woff") format("woff"),
		url("/assets/fonts/NeueHaasGrotDispRound-65Medium.otf") format("opentype");
	font-display: swap;
}


/* Global */
.ergodent {
	font-family: Haas Neue Round, sans-serif;
	font-size: calc(4.5 * var(--dr-unit));
	letter-spacing: calc(var(--dr-unit) * -0.15);
	line-height: 1.02;
	max-width: 800px;
	margin: 0;
	background-color: pink;

}

/* Breadcrumb (navigation) */
.ergodent .registrationProgress {
	font-family: Haas Neue Round, sans-serif;
	font-size: calc(2.4 * var(--dr-unit));
	letter-spacing: calc(var(--dr-unit) * 0);
	line-height: 0.9;
	color: #999999;
}

.ergodent .registrationProgress .markedItem {
	color: #000;
	font-weight: bold;
}

.ergodent .error {
	color: #c00;
}

.ergodent .yourchoice {
	position: relative;
	clear: both;
	float: left;
	margin-bottom: 3px;
	background-color: #eee;
	padding: 2px 0 2px 3px;
	width: 100%;
}

.ergodent .bookingSummary {
	display: inline-block;
	/* fit content */
	background: #f4f8fc;
	padding: 14px 18px;
	border-radius: 12px;
	/* soft corners */
	border: 1px solid #e5e7eb;
	/* soft border */
	margin-bottom: 12px;
}

/* spacing + typography */
.ergodent .bookingSummary p {
	margin: 0 0 6px 0;
	font-size: 14px;
	line-height: 1.4;
	color: #374151;
	/* soft dark */
}

/* last line no extra margin */
.ergodent .bookingSummary p:last-child {
	margin-bottom: 0;
}

/* highlight the most important info */
#BookingSummary_PatientName {
	font-size: 18px;
	font-weight: 500;
}

#BookingSummary_AppointmentStartDateAndTime {
	font-size: 18px;
	font-weight: 500;
	color: #1e40af;
	/* accent color */
}

/* textFormate */
.ergodent h1 {
	font-family: Haas Neue Round, sans-serif;
	font-size: calc(4.5 * var(--dr-unit));
	letter-spacing: calc(var(--dr-unit) * -0.15);
	line-height: 1.02;
	margin-bottom: 25px;
}

.ergodent h2 {
	font-family: Haas Neue Round, sans-serif;
	font-size: calc(4.5 * var(--dr-unit));
	letter-spacing: calc(var(--dr-unit) * -0.15);
	line-height: 1.02;
}

.ergodent h3 {
	margin: 0 0 10px 0;
	font-size: 11pt;
}

.ergodent p {
	font-family: Haas Neue Round, sans-serif;
	font-size: calc(2.4 * var(--dr-unit));
	letter-spacing: calc(var(--dr-unit) * 0);
	line-height: 0.9;

	margin: 0 0 10px 0;
}

.ergodent a {
	color: #4d4d4d;

	text-decoration: underline;
}

.ergodent a:hover,
.ergodent a p:hover,
.ergodent a:hover p {
	background-color: #6eb5dc;
	text-decoration: none;
}

.ergodent a:active,
.ergodent a p:active,
.ergodent a:active p {
	background-color: #67aacf;
	text-decoration: none;
}

.ergodent a img {
	border-style: none;
}

.ergodent .input {
	border-radius: 4px;
	padding: 0 0 0 12px;
	border: 1px solid rgb(204, 204, 204);
	width: 100%;
	height: 34px;
	color: rgb(85, 85, 85);
	font-size: 12pt;
	display: block;
	font-weight: normal;
	line-height: 1.4285 !important;
	background-color: rgb(255, 255, 255);
	-webkit-appearance: button;
}

.ergodent .input:focus {
	outline: 0px;
	/*
    border-color: #73bee7;
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075), 0px 0px 8px rgba(102,175,233,0.6); 
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    */
	background: #f1f9fd;
}

.ergodent .input:hover {
	outline: 0px;
	background: #eaf5fb;
}

.ergodent .stylizedButtonSmall {
	border-radius: 4px;
	padding-right: 10px;
	width: 57px;
	height: 40px;
	text-align: center;
	font-weight: bold;
	border: none;
	background-color: #eee;
	margin: 0 5px 17px 0;
	background-position: 0px 0px;
	padding: 0px;
	color: #4d4d4d;
}

.ergodent .stylizedButton,
.ergodent .stylizedButton_next {
	border-radius: 4px;
	padding-right: 10px;
	height: 40px;
	min-width: 110px;
	text-align: center;
	font-weight: bold;
	border: none;
	margin: 17px 5px 5px 0;
	background-position: 0px 0px;
	padding: 0px 15px;
	color: #4d4d4d;
}

.ergodent .stylizedButton_next {
	background-color: #73bee7;
}

.ergodent .stylizedChoosePersonButton {
	color: #4d4d4d;
	border: none;
	display: block;
	margin: 10px;
	width: 90%;
	height: 30px;
	padding: 0px;
}

.ergodent .stylizedButton_next:hover {
	background-color: #6eb5dc;
}

.ergodent .stylizedButton_next:active {
	background-color: #67aacf;
}

.ergodent .stylizedButton {
	background-color: #ebebeb;
	display: inline-flex;
	align-items: center;
	/* vertical centering */
	justify-content: center;
	/* horizontal centering */
}

.ergodent .stylizedButton:hover {
	background-color: #e5e5e5;
}

.ergodent .stylizedButtonSmall:hover {
	background-color: #e5e5e5;
}

.ergodent .stylizedButton:active {
	background-color: #d9d9d9;
}

.ergodent .calendar {
	width: 100%;
	padding: 0px;
	margin: 0px;
}

.ergodent table {
	border: 1px solid #e5e5e5 !important;
	padding: 0px !important;
}

.ergodent table td,
.ergodent table th {
	padding: 0px !important;
	border: 0px solid #e5e5e5 !important;
}

.ergodent .calendar td {
	color: #999999;
	padding: 0px !important;
	border: 1px solid #dddddd !important;
	width: 13%;
	margin: 0px;
	vertical-align: top;
}

.ergodent .calendar th {
	color: #666666;
	padding: 0px !important;
	border: 1px solid #dddddd !important;
	text-align: center;
	margin: 0px;
	vertical-align: top;
}

.ergodent .calendar .timeLine {
	text-align: right;
	font-weight: normal;
	padding-right: 7px;
	padding: 0px;
	margin: 0px;
}

.ergodent .calendar .bookable {
	background: #9dd1ee;
	background-position: center;
	cursor: pointer;
	padding: 0px;
	margin: 0px;
}

.ergodent .calendar .bookable:hover {
	background: #73bee7;
	background-position: center;
	cursor: pointer;
	padding: 0px;
	margin: 0px;
}

.ergodent .calendar .bookable a:link {
	text-decoration: none;
	padding: 0px;
	margin: 0px;
}

.ergodent .appointmentdetailnormal {
	color: #dddddd;
	padding: 0px;
	border-right: 1px solid #dddddd !important;
	border-left: 1px solid #dddddd !important;
	border-top: 0px !important;
	border-bottom: 0px !important;
	margin: 0px;
}

.ergodent .appointmentdetailnormalhead {
	border-top: 1px solid #dddddd !important;
	border-right: 1px solid #dddddd !important;
	border-left: 1px solid #dddddd !important;
	border-bottom: 0px !important;
	padding: 0px;
	margin: 0px;
}

.ergodent .appointmentdetailnormalbottom {
	border-bottom: 1px solid #dddddd !important;
	border-right: 1px solid #dddddd !important;
	border-left: 1px solid #dddddd !important;
	border-top: 0px !important;
	padding: 0px !important;
	margin: 0px !important;
}

.ergodent .appointmentdetailheader {
	color: #666666;
	border-top: 1px solid #dddddd !important;
	border-left: 1px solid #dddddd !important;
	border-bottom: 0px !important;
	border-right: 0px !important;
	text-align: center;
	padding: 0px;
	margin: 0px;
}

.ergodent .appointmentdetailbottom {
	color: #666666;
	border-top: 1px solid #dddddd !important;
	border-bottom: 1px solid #dddddd !important;
	border-left: 1px solid #dddddd !important;
	border-right: 0px !important;
	text-align: center;
	padding: 0px;
	margin: 0px;
}

.ergodent .appointmentdetailright {
	color: #666666;
	border-top: 1px solid #dddddd !important;
	border-left: 1px solid #dddddd !important;
	border-right: 1px solid #dddddd !important;
	border-bottom: 0px !important;
	text-align: center;
	padding: 0px;
	margin: 0px;
}

.ergodent .appointmentdetailbookable a:link {
	text-decoration: none;
	color: #4d4d4d;
	padding: 0px;
	margin: 0px;
}

.ergodent .appointmentdetailbookable {
	background: #9dd1ee;
	border: 1px solid black !important;
	text-align: center;
	overflow: hidden;
	padding: 0px;
	margin: 0px;
}

.ergodent .appointmentdetailbookable a:hover {
	background: #73bee7;
}

.ergodent .appointmentdetailbookable:hover {
	background: #73bee7;
}

.ergodent .inputError {
	background-color: #ffcccc !important;
	border: 1px solid #c00 !important;
	color: #c00;
}

.ergodent img {
	display: inline;
}

.ergodent td {
	vertical-align: middle;
}

.container-fluid {
	padding: calc(3.75 * var(--dr-unit));
}