:root{--mainColor:#1c3c77;--mainColorRGB:28, 60, 119;--accentColor:#ca2130;--accent2Color:#fff;--textColor:#444;--headlineColor:#666;--bordersColor:#d9d9d9;--calendarLinesColor:#c2c2c2;--timeslotColor:#818FA6;--inactiveElementColor:#ccc;--buttonHoverColor:#3e64a8;--buttonBackgroundColor:#eee;--popupButtonsColor:#aaa;--agent1color:213,0,0;--agent2color:124,179,66;--agent3color:240,147,0;--agent1InactiveColor:213,134,134;--agent2InactiveColor:124,179,134;--agent3InactiveColor:240,201,159}

.material-symbols-outlined {
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

.material-symbols-outlined.filled {
	font-variation-settings:
		'FILL' 1,
		'wght' 400,
		'GRAD' 0,
		'opsz' 24
}html {
	font-size: 1rem;
	transition: all 0s ease 0s;
	
	height: 100%;
	
	-webkit-text-size-adjust: none;
}

body {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;

	color: var(--textColor);

	padding: 0;
	margin: 0;
	transition: all 0s ease 0s;
	
	height: 100%;
}

* {
	box-sizing: border-box;
	
	transition: all 0.1s ease-in-out;
}

a {
	color: inherit;
}

strong {
	font-weight: 700;
}

#centerFlexWrap {
	display: flex;
	
	min-width: 100vw;
	min-height: 100vh;
}

#centerBox {
	width: 28.1rem;

	border-radius: 0.8rem;

	border: 1px solid var(--bordersColor);

	text-align: center;

	padding: 0 0 3.8rem 0;
	margin: auto;
	
	position: relative;
}

#langSwitcher {
	display: block;
	position: absolute;
	top: 0.5rem;
	right: 0.75rem;
	
	color: var(--textColor);
	
	font-size: 0.9rem;
}

#langSwitcher a {
	text-decoration: none;
}

#centerBox #logo {
	display: block;

	width: 40%;
	height: auto;

	position: relative;
	left: 50%;

	margin: 2.8rem 0 2.6rem 0;

	transform: translateX(-50%);
}

#centerBox #logo img {
	width: 100%;
	height: auto;
}

#centerBox #title {
	font-size: 160%;

	color: var(--headlineColor);

	width: 80%;

	transform:translateX(-50%);

	position: relative;
	left: 50%;
}

#centerBox #subtitle {
	width: 80%;

	transform:translateX(-50%);

	position: relative;
	left: 50%;

	font-size: 92%;
	line-height: 3ex;
	
	margin: 2.5rem 0 3rem 0;
}

#centerBox .text {
	width: 80%;

	transform:translateX(-50%);

	position: relative;
	left: 50%;

	line-height: 3ex;

	margin-top: 45px;
}

#centerBox .text.smaller {
	color: #777;
	font-size: 80%;
}

#centerBox .text.hint {
	color: #777;
	font-size: 70%;
	
	margin-top: 0.2rem;
}

#centerBox .text.spaced {
	letter-spacing: 0.075rem;
}

#centerBox .text.bigger {
	font-size: 120%;
}

#centerBox .spacer {
	display: block;
	width: 100%;
	
	height: 1.25rem;
}

#centerBox .text.verificationCodeResend {
	margin-top: 1.8rem;
	
	font-size: 85%;
	font-weight: 500;
}

#centerBox .form {
	width: 80%;
	height: auto;

	transform: translateX(-50%);

	position: relative;
	left: 50%;
}

#centerBox .form table {
	width: 100%;

	position: relative;
}

#centerBox .form .tField {
	display: block;

	width: 100%;
	height: auto;

	position: relative;

	margin-bottom: 1.8rem;
}

#centerBox .form .tField.verificationCode {
	width: 11rem;
	
	display: inline-block;
}

#centerBox .form .tLabel {
	pointer-events: none;

	display: block;

	width: auto;
	height: auto;

	position: absolute;
	left: 1.25rem;
	top: 50%;

	transform: translateY(-50%);

	text-align: left;
}

#centerBox .form .tField .errorMessage {
	color: #f00;

	padding-top: 0;
	height: 0;

	font-size: initial;

	clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
	
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	white-space: nowrap;
}

#centerBox .form input[type=text].error ~ div.errorMessage,
#centerBox .form input[type=password].error ~ div.errorMessage{
	padding-top: 0.3rem;
	height: 1.9rem;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

#centerBox .form input[type=text].radio:not(.selected) + .tLabel {
	font-size: initial !important;

	left: 1.25rem !important;
	top: 50% !important;

	padding: initial !important;
}

#centerBox .form input[type=text]:focus + .tLabel,
#centerBox .form input[type=text]:valid + .tLabel,
#centerBox .form input[type=text]:autofill + .tLabel,
#centerBox .form input[type=password]:focus + .tLabel,
#centerBox .form input[type=password]:valid + .tLabel,
#centerBox .form input[type=password]:autofill + .tLabel,
#centerBox .form input[type=text].radio.selected + .tLabel
{
	background-color: #fff;
	
	font-size: 82%;

	left: 0.6rem;
	top: 0;
	
	white-space: nowrap;
	max-width: 90%;
	text-overflow: ellipsis;
	overflow: hidden;

	padding: 0 0.45rem 0 0.45rem;
}

#centerBox .form input[type=text],
#centerBox .form input[type=password]{
	font-size: 100%;
	font-family: 'Roboto', sans-serif;

	display: block;

	width: 100%;
	height: 3.2rem;

	position: relative;

	padding-left: 1.25rem;

	border-radius: 0.3rem;
	border: 1px solid var(--bordersColor);
}

#centerBox .form input[type=text]#fVerificationCode {
	font-size: 185%;
	letter-spacing: 0.4rem;
}

#centerBox .form input[type=text].error,
#centerBox .form input[type=password].error {
	border: 1px solid #f00;
}

#centerBox .form input[type=text].error + .tLabel,
#centerBox .form input[type=password].error + .tLabel{
	color: #f00;
}

#centerBox .form input[type=text]:focus,
#centerBox .form input[type=password]:focus,
#centerBox .form input[type=text].radio.selected
{
	border: 2px solid var(--mainColor);

	outline: none !important;
}

#centerBox .form input[type=text]:focus + .tLabel,
#centerBox .form input[type=password]:focus + .tLabel,
#centerBox .form input[type=text].radio.selected + .tLabel
{
	color: var(--mainColor);
}

#centerBox .form input[type=text]:invalid,
#centerBox .form input[type=password]:invalid{
	box-shadow: none;
}

#centerBox .form .tField input[type=radio] {
	position: absolute;
	width: 0;
	opacity: 0;
}

#centerBox .form .tField input[type=radio] + label {
	cursor: pointer;
	
	display: block;
	
	position: relative;
	
	width: 100%;
	height: 3.2rem;
	border-radius: 0.3rem;
	border: 1px solid var(--bordersColor);
	
	padding-left: 1.25rem;
	
	text-align: left;
}

#centerBox .form .tField input[type=radio] + label span {
	pointer-events: none;

	display: block;

	width: auto;
	height: auto;

	position: absolute;
	left: 1.25rem;
	top: 50%;

	transform: translateY(-50%);

	text-align: left;
}

#centerBox .form .tField input[type=radio]:checked + label {
	color: var(--mainColor);
	border: 2px solid var(--mainColor);
}

#centerBox .form #tSubmit {
	display: block;

	position: relative;

	margin-top: 1.25rem;

	text-align: right;
}

#centerBox .form #tSubmit #submitBtn {
	margin: 0;
}

#resendTimer.disabled {
	display: none;
}


.verificationCodeResend a.disabled {
	display: none;
}

#calendarFlexContainer {
	display: flex;
	width: 100%;
	height: 100%;
	
	position: relative;
	
	flex-direction: column;
	
	padding-bottom: 1.25rem;
}

#calendarFlexContainer .backBtn {
	margin-left: 10vw;
}

#header {
	display: block;
	position: relative;

	width: 100%;
	height: 50px;

	margin-bottom: 25px;

	border-bottom: 1px solid #c2c2c2;
	
	box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.15);
}

#header #headerContent {
	width: 80%;
	height: 100%;
	position: absolute;
	top: 0%;
	left: 50%;
	transform: translateX(-50%);

	white-space: nowrap;

	text-align: center;
}

#header #headerContent .logo {
	display: inline-block;
	height: 65%;
	width: auto;

	position: relative;
	margin-right: 1.25rem;
	top: 50%;
	transform: translateY(-50%);
}

#header #headerContent .title {
	display: inline-block;
	height: auto;
	width: auto;

	position: relative;

	font-size: 140%;
	font-weight: 700;
	letter-spacing: 3px;

	color: var(--mainColor);
}

#header #langSwitcher {
	top: 25px;
	transform: translate(0, -50%);
}

#intro {
	display: inline-block;

	width: 50%;
	margin-bottom: 1.25rem;

	position: relative;
	left: 50%;
	transform: translateX(-50%);

	color: var(--headlineColor);
	text-align: center;
	
	display: none;
}

.weekSwitcher {
	padding-left: 0.8rem;
}

.weekSwitcher a {
	display: inline-block;
	
	background-color: #dfdfdf;
	
	text-align: center;
	text-decoration: none;
	border-radius: 10rem;
	
	line-height: 1.7rem;
	
	width: 1.7rem;
	height: 1.7rem;
	
	margin-top: 0.1rem;
}

.headerLine {
	display: flex;
	
	margin-bottom: 0.6rem;
}

#monthIndicator {
	display: inline-block;
	
	flex-grow: 1;

	color: var(--headlineColor);
	font-size: 165%;
	font-weight: 400;
	
	padding-left: 2rem;
}

#monthIndicator .weekIndicator {
	display: inline-block;
	font-size: 60%;

	margin-left: 0.3rem;

	transform: translate(0, -0.2rem);
}

#scheduleAppointmentForm {
	display: flex;
	position: relative;
	
	flex-direction: column;
	flex-grow: 1;
}

#calendarWrapper {
	display: inline-block;
	width: 80%;
	height: 65vh;

	position: relative;
	left: 10%;
	
	overflow: hidden;
	
	flex-grow: 1;
}

#calendar {
	display: block;
	width: auto;
	height: 100%;

	position: absolute;
	left: 0%;
	
	transition: all 0.3s ease-in-out;
}

#calendar .week {
	height: 100%;
	
	display: flex;
	flex-direction: column;
	
	position: absolute;
}

table#timeslotSelectionTable {
	border-collapse: collapse;

	width: 100%;
	height: 1px;
	
	flex-grow: 1;
	
	position: relative;
}

#timeslotSelectionTable tr {
	height: 100%;
	position: relative;
}

#timeslotSelectionTable td.td_day {
	height: 100%;
	border-right: 1px solid var(--calendarLinesColor);
	
	position: relative;
}

#timeslotSelectionTable td#td_timeIndicatorTable {
	position: relative;
	width: 5%;
	height: 100%;
}

#timeIndicatorTable {
	border-collapse: collapse;
	
	position: relative;
	
	width: 100%;
	height: 100%;
}

#timeIndicatorTable td.td_timeIndicator {
	margin: 0px;
	padding: 0px 0.62rem 0px 0px;

	vertical-align: top;
}

#timeIndicatorTable .timeIndicator {
	display: block;
	position: relative;
	
	text-align: right;
	font-size: 69%;

	padding-right: 5px;

	transform: translateY(calc(-50% - 1px));
	
	white-space: nowrap;
	
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#timeIndicatorTable td {
	border-bottom: 1px solid rgba(0, 0, 0, 0);
}

#timeIndicatorTable tr:last-child td {
	border-bottom: none;
}

#timeslotSelectionTable td.td_dayIndicator {
	vertical-align: top;
	text-align: center;

	padding: 0px;
	margin: 0px;
	
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#timeslotSelectionTable td.td_dayIndicator div {
	display: inline-flex;
	width: auto;
	
	height: auto;
	min-height: 0%;
	
	flex-direction: column;
	
	padding: 0.3rem 0.6rem 0.2rem 0.6rem;
}

#timeslotSelectionTable td.td_dayIndicator div span {
	flex-shrink: 5;
}

#timeslotSelectionTable td.td_dayIndicator.today div {
	border: 1px solid var(--calendarLinesColor);
	border-radius: 0.4rem;
}

#timeslotSelectionTable td.td_dayIndicator.today span {
	font-weight: bold !important;
}

#timeslotSelectionTable td.td_dayIndicator.last {
	border-right: none !important;
}

#timeslotSelectionTable .td_dayIndicator .dow {
	position: relative;

	background-color: #fff;

	font-size: 80%;
	font-weight: 500;

	display: block;
	position: relative;

	width: 101%;

	padding-bottom: 0.1rem;
}

#timeslotSelectionTable .td_dayIndicator .day {
	display: block;
	position: relative;

	background-color: #fff;

	font-size: 150%;
	font-weight: 300;

	width: 101%;
}

.dayWrapper {
	position: relative;
	height: 100%;
}

.dayTimeslotWrapper {
	position: absolute;
	bottom: 0px;
	width: 100%;
}

.dayTimeslotWrapper.grid {
	position: absolute;
	bottom: 0px;
	width: 100%;
	
	display: grid;
}

#timeIndicator {
	position: absolute;
	top: 0%;
	left: 0%;
	
	width: 100%;
	height: 0.75rem;
	
	margin-top: -0.375rem;
}

#timeIndicator #tiBall {
	background-color: red;
	
	position: absolute;
	left: 0;
	top: 0;
	
	width: 0.75rem;
	height: 0.75rem;
	
	margin-left: -0.49rem;
	
	border-radius: 1rem;
}

#timeIndicator #tiLine {
	background-color: red;
	
	position: absolute;
	left: 0;
	top: 50%;
	
	width: 100%;
	height: 2px;
	
	margin-top: -1px;
}

table.dayTable {
	width: 100%;
	height: 100%;
	
	border-collapse: collapse;
	
	table-layout: fixed;
}

.dayTable tr {
}

.dayTable td {
	border-bottom: 1px solid var(--calendarLinesColor);

	padding: 0px;
	margin: 0px;

	text-align: left;
}

.dayTable tr:last-child td {
	border-bottom: none;
}


.dayTable td.hour {
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	
}

.dayWrapper .l_timeslot {
	display: block;
	width: calc(100% - 3px);
	height: calc(6vh - 3px);

	position: absolute;
	
	user-select: none;
}

/*
.dayWrapper .l_timeslot.passed {
	filter: saturate(75%);
	filter: grayscale(50%);
}*/

.dayWrapper .l_timeslot.grid {
	position: relative;
	
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	
	overflow: hidden;
}

.dayWrapper .l_timeslot > input {
	visibility: hidden;
	position: absolute;
}

.dayWrapper .l_timeslot > input + .timeslot {
	cursor:pointer;
	display: block;

	position: relative;

	font-size: 80%;
	font-weight: 500;

	border: 3px solid var(--timeslotColor);
	background-color: var(--timeslotColor);
	color: #fff;

	width: 100%;
	height: 100%;

	padding: 4px;

	border-radius: 5px;
	
	overflow: hidden;

	z-index: 1000;
}


.dayWrapper .l_timeslot > input + .timeslot .fullDesc{
	display: inline;
	pointer-events: none;
}
.dayWrapper .l_timeslot > input + .timeslot .shortDesc{
	display: none;
	pointer-events: none;
}

.dayWrapper .l_timeslot > input:checked + .timeslot,
.dayWrapper .l_timeslot.active > input + .timeslot {
	border: 3px solid var(--mainColor) !important;
	background-color: var(--mainColor) !important;
	
	color: #fff !important;
}




.btn {
	cursor: pointer;
	text-decoration: none;
	
	border: 2px solid var(--inactiveElementColor);
	border-radius: 0.3rem;
	
	color: var(--inactiveElementColor);

	font-family: 'Roboto', sans-serif;
	font-size: 94%;
	font-weight: 500;
	letter-spacing: 0.06em;
	
	padding: 0.5rem 1.5rem !important;

	box-shadow: 1px 1px 6px 0px rgba(0,0,0,0);
	align-self: start;
	
	-webkit-appearance: none
}

.btn.primary {
	color: var(--accent2Color);
	border: 2px solid var(--mainColor);
	background-color: var(--mainColor);
	
	padding: 0.5rem 1.5rem;
}

.btn.transparent {
	border: 2px solid rgba(1, 1, 1, 0);
	background-color: rgba(1, 1, 1, 0);
	
	color: var(--inactiveElementColor);
	
	padding: 0.5rem 0.5rem !important;
}

.btn.invalid {
	color: var(--inactiveElementColor);
	border: 2px solid var(--inactiveElementColor);
	background-color: rgba(1, 1, 1, 0);
	
	pointer-events: none;
}

.btn.invalid:hover {
	cursor: default;
	box-shadow: none;
}

.btn.backBtn {
	position: absolute;
	
	bottom: 0px;
	left: 0px;
}



.btn.calPage {
	position: relative;
	left: 50%;
	transform: translateX(-50%);

	margin-top: 1.25rem;
}

.btn.calPage:hover {
	box-shadow: 1px 1px 6px 0px rgba(0,0,0,0.2);
}

#ppTextCenter {
	display: block;

	width: 75%;
	position: relative;
	left: 50%;
	transform: translateX(-50%);

	margin-top: 50px;
	margin-bottom: 100px;
}




.errorWrapper {
	display: inline-block;
	width: 100%;
	
	text-align: center;
	
	margin-top: 1rem;
}

.errorWrapper .errorMessage {
	display: inline-block;
	
	border: 1px solid red;
	border-radius: 0.2rem;
	
	color: red;
	
	padding: 0.5rem 1.75rem;
	
	clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

.errorWrapper .errorMessage.error {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

#fileInputs input[type=file] {
	display: none;
}

#fileInputs .fileCaptureContainer, #fileInputs .filePickContainer {
	border: 2px solid var(--mainColor);
	display: inline-block;
	
	color: var(--mainColor);
	font-weight: 500;
	
	width: auto;
	height: 5rem;
	
	padding: 0 0.1rem;
	
	text-align: center;
	
	position: relative;
	
	border-radius: 0.75rem;
}

#fileInputs .fileCaptureContainer i, #fileInputs .filePickContainer i {
	width: 100%;
	
	font-size: 1.75rem;
	
	margin-top: 10%;
	margin-bottom: 8%;
}

#fileInputs .fileCaptureContainer:hover, #fileInputs .filePickContainer:hover {
	box-shadow: 0.1rem 0.1rem 0.5rem 0 rgba(0, 0, 0, 0.4);
}

#fileInputs .fileCaptureContainer {
	display: none;
}

#fileInputs label {
	display: block;
	
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	
	cursor: pointer;
}

#thumbnailContainer {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

#thumbnailContainer .thumbnail {
	min-width: 0;
	min-height: 0;
	overflow: hidden;
}

#thumbnailContainer .thumbnail img {
	width: 100%;
	height: auto;
	
	display: block;
}

/* MEDIUM */
@media ( max-width: 999px ) {
	#fileInputs .fileCaptureContainer {
		display: inline-block;
	}
}



/* Media Queries */

/* NORMAL */
@media ( max-width: 1400px ) {
	/*body::before{content:"NORMAL"}*/
	.weekSwitcher {
		padding-left: 0.8rem;
	}

	.weekSwitcher a {
		width: 1.45rem;
		height: 1.45rem;
		line-height: 1.45rem;

		-webkit-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}

	#monthIndicator {
		text-align: left;
		font-size: 130%;

		padding-left: 2rem;
	}

	#calendarWrapper {
		width: 98%;
		height: auto;

		left: 1%;
	}

	#header #headerContent .logo {
		margin-right: 0.75rem;
	}

	#timeslotSelectionTable td.td_dayIndicator div{
		padding: 0;
		border: none !important;
	}

	#timeslotSelectionTable .td_dayIndicator .dow {
		font-size: 70%;
		padding-bottom: 0;
	}

	#timeslotSelectionTable .td_dayIndicator .day {
		font-size: 115%;
	}

	.dayWrapper .l_timeslot > input + .timeslot {
		font-size: 78%;
	}

	.dayWrapper .l_timeslot > input + .timeslot .fullDesc{
		display: none;
	}
	.dayWrapper .l_timeslot > input + .timeslot .shortDesc{
		display: inline;
	}

	.btn.calPage {
		margin-top: 0.6rem;
	}
}

/* MEDIUM */
@media ( max-width: 999px ) {
	/*body::before{content:"MEDIUM"}*/
	
	html{
		/*font-size: 2.5rem;*/
	}
	
	#centerFlexWrap {
		min-height: -webkit-fill-available;
		padding: 2.5vw;
	}
	
	#centerBox {
		width: 100vw;
		margin: auto;
	}
	
	#centerBox #logo {
		width: 40%;
		
		margin: 2rem 0 1.8rem 0;
	}
	
	#centerBox #subtitle {
		margin: 0.7rem 0 1.6rem 0;
	}
	
	#centerBox .form input[type="text"].radio:not(.selected) + .tLabel {
		font-size: 1rem !important;
	}
	
	#calendarFlexContainer {
		padding-bottom: 0.6rem;
	}
	
	#calendarFlexContainer .backBtn {
		margin-left: 0.8rem;
	}
	
	#header {
		height: 2.5rem;
		border-width: 2px;
		margin-bottom: 0.6rem;
	}
	
	#header #headerContent {
		width: 90%;
		text-align: left;
	}
	
	#header #headerContent .logo {
		height: 65%;
	}
	
	#header #headerContent .title {
		font-size: 115%;
	}
	
	#header #langSwitcher {
		top: 1.25rem;
	}
	
	#intro {
		width: 95%;
		font-size: 85%;
		margin-bottom: 0.6rem;
	}
	
	
	
	#centerBox,
	#centerBox .form input[type=text],
	#centerBox .form input[type=text].error,
	#centerBox .form input[type=password],
	#centerBox .form input[type=password].error,
	#centerBox .form .tField input[type=radio] + label,
	#timeslotSelectionTable td.td_dayIndicator.today div,
	.errorWrapper .errorMessage
	{
		border-width: 2px;
	}
	
	#centerBox .form input[type=text]:focus,
	#centerBox .form input[type=password]:focus,
	#centerBox .form input[type=text].radio.selected,
	#centerBox .form .tField input[type=radio]:checked + label,
	.btn,
	.btn.primary,
	.btn.transparent,
	.btn.invalid
	{
		border-width: 4px;
	}
}

/* SMALL */
@media ( max-width: 699px ) {
	/*body::before{content:"SMALL"}*/
}

/* TINY */
@media ( max-width: 576px ) {
	/*body::before{content:"TINY"}*/
}

#loadingIndicator {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;

	background-color: rgba(255, 255, 255, 0.5);
}

#loadingIndicator.shown {
	display: block;
}

#loadingIndicator .loader {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -0.5em;
	margin-top: -0.5em;
}

.loader {
	color: var(--mainColor);
	font-size: 45px;
	text-indent: -9999em;
	overflow: hidden;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	position: relative;
	transform: translateZ(0);
	animation: mltShdSpin 1.7s infinite ease, round 1.7s infinite ease;
}

@keyframes mltShdSpin {
	0% {
		box-shadow: 0 -0.83em 0 -0.4em,
			0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
			0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	5%,
	95% {
		box-shadow: 0 -0.83em 0 -0.4em,
			0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em,
			0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
	10%,
	59% {
		box-shadow: 0 -0.83em 0 -0.4em,
			-0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em,
			-0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
	}
	20% {
		box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em,
			-0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em,
			-0.749em -0.34em 0 -0.477em;
	}
	38% {
		box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em,
			-0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em,
			-0.82em -0.09em 0 -0.477em;
	}
	100% {
		box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em,
			0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
	}
}

@keyframes round {
	0% {
		transform: rotate(0deg)
	}
	100% {
		transform: rotate(360deg)
	}
}.upb_wrapper {
	display: block;

	background-color: rgba(0, 0, 0, 0.25);

	position: absolute;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;

	opacity: 0;

	pointer-events: none;

	z-index: 10000;
}

.upb_box {
	display: inline-flex;

	background-color: rgba(255, 255, 255, 1);

	width: 35vh;
	height: auto;

	position: absolute;
	left: 50%;
	top: 50%;

	transform: translate(-50%, -50%) scale(0.8);

	flex-direction: column;

	border-radius: 1rem;
	padding: 1rem;
	
	transition-duration: 250ms;
}

.upb_box hr{
	border: none;
	border-top: 1px solid var(--inactiveElementColor);
	height: 1px;
	width: 100%;
}

.upb.shown .upb_wrapper {
	opacity: 1;

	pointer-events: auto;
}

.upb.shown .upb_box {
	transform: translate(-50%, -50%) scale(1);
}

.upb_title {
	display: block;

	color: var(--mainColor);
	font-size: 1rem;
	font-weight: bold;
}

.upb_message {
	display: block;

	color: rgba(130, 130, 130, 1);
	font-size: 0.9rem;
	font-weight: normal;

	margin-top: 1rem;
	margin-bottom: 1.5rem;

	flex-grow: 10;
}

.upb_buttons {
	display: inline-block;
	
	margin-top: 1.5rem;

	text-align: right;
}

.upb_checkbox {
	display: flex;
	
	width: 100%;
	
	color: rgba(130, 130, 130, 1);
	font-size: 0.9rem;
	font-weight: normal;
	
	justify-content: left;
	align-items: center;
}

.upb_checkbox label {
	margin-left: 0.25rem;
}

.upb_btn {
	display: inline-block;

	background-color: rgba(220, 220, 220, 0);
	border: 2px solid rgba(220, 220, 220, 1);
	border-radius: 0.5rem;

	padding: 0.6rem 0.8rem;

	color: rgba(220, 220, 220, 1);
	font-size: 0.8rem;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;

	margin-left: 1rem;
}

.upb_btn:hover {
	background-color: rgba(220, 220, 220, 1);
	color: rgba(255, 255, 255, 1);
}

.upb_btn_main {
	border-color: var(--mainColor);
	background-color:var(--mainColor);
	color: var(--accent2Color);
}

.upb_btn_main:hover {
	border-color: var(--buttonHoverColor);
	background-color:var(--buttonHoverColor);
	color: var(--accent2Color);
}#ap_sideBar {
	display: flex;
	
	position: absolute;
	left: 0;
	top: 0;
	
	width: 21rem;
	height: 100vh;
	
	background-color: #f3f3f3;
	
	flex-direction: column;
}

.apsb_category1 {
	border-bottom: 1px solid var(--calendarLinesColor);
	padding: 1rem;
	
	font-size: 1.4rem;
	font-weight: bold;
}

.apsb_category2 {
	border-bottom: 1px solid var(--calendarLinesColor);
	margin: 0 1rem 0 1.75rem;
	padding: 0.5rem 0 0.5rem 0;

	font-size: 1.2rem;
	font-weight: bold;
}

.apsb_item {
	display: flex;
	
	border: 1px solid rgba(0, 0, 0, 0);
	
	border-radius: 0.75rem;
	
	padding: 0.75rem 0.75rem;
	
	margin: 0.2rem 1rem 0.2rem 1.75rem;
	font-size: 1.2rem;
	
	cursor: pointer;
	
	gap: 0.75rem;
}

.apsb_item:hover {
	background-color: var(--inactiveElementColor);
	
	padding-left: 1.25rem;
}

.apsb_item:hover .apsbi_label {
	
}

.apsb_item.active {
	border: 1px solid var(--textColor);
	background-color: var(--inactiveElementColor);
	
	font-weight: bold;
	
	padding-left: 1.25rem;
	
	box-shadow: 0.15rem 0.15rem 0.2rem 0 rgba(0,0,0,0.2);
}

#ap_content {
	display: block;
	
	width: calc(100vw - 21rem);
	height: 100vh;
	
	position: absolute;
	left: 21rem;
	top: 0;
	
	overflow-y: auto;
	overflow-x: hidden;
}

#ap_loadingIndicator {
	background-color: rgba(255, 255, 255, 0.85);

	width: calc(100vw - 21rem);
	height: 100vh;

	position: absolute;
	left: 21rem;
	top: 0;

	display: none;
	
	z-index: 99999;
}

#ap_loadingIndicator.shown {
	display: block;
}

#ap_loadingIndicator .loader {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -0.5em;
	margin-top: -0.5em;
}




.ap_agentSelectorWrapper {
	position: relative;
	display: inline-block;
}

.ap_agentSelectorWrapper .ap_agentSelector {
	appearance: none;
	-webkit-appearance: none;
	
	border: 2px solid rgb(var(--mainColorRGB));
	border-radius: 0.4rem;
	
	color: var(--mainColor);
	background-color: #fff;
	
	font-size: 100%;
	padding: 0.5rem 0.8rem;
	padding-right: 2.5rem;
}

.ap_agentSelectorWrapper::after {
	content: "▼";
	display: flex;
	position: absolute;
	right: 0;
	top: 0;
	
	height: 100%;
	width: 2.5rem;
	
	justify-content: center;
	align-items: center;
	
	pointer-events: none;
}






/* Calendar Moficiations */

#header #headerContent {
	display: flex;
	justify-content: center;
	align-items: center;
}

.l_timeslot.hidden {
	display: none;
}

.dayWrapper .l_timeslot > input + .timeslot.ap_schedule{
	background-color: #f5f5f5;
	color: var(--timeslotColor);
	border: 2px dotted var(--timeslotColor);
}

.dayWrapper .l_timeslot.ap_multiAgent > input + .timeslot.ap_schedule{
	border: 3px dashed var(--timeslotColor);
}

.dayWrapper .l_timeslot > input:checked + .timeslot.ap_schedule {
	background-color: var(--timeslotColor);
	color: #fff;
}

.multiTimeslotWrapper {
	display: flex;
	
	position: absolute;
	
	width: 100%;
	
	gap: 0.1rem;
}

.multiTimeslotWrapper .l_timeslot {
	height: 100%;
	
	width: auto;
	
	position: relative;
	
	flex-grow: 1;
	
	overflow: hidden;
}

.l_timeslot .clientName {
	white-space: nowrap;
}

.l_timeslot .clientPhoneNumber {
	white-space: nowrap;
}


.dayWrapper .l_timeslot > input + .timeslot .bookedByClientInd {
	background-color: rgba(255, 255, 255, 1);
	border-radius: 1rem;
	
	position: absolute;
	
	bottom: 0.1rem;
	right: 0.1rem;
	
	width: 0.35rem;
	height: 0.35rem;
}

.dayWrapper .l_timeslot > input + .timeslot .bookedByClientInd span{
	width: 100%;
	height: 100%;
	display: none;
}

/* Client Appointment Detail Popup */

#clientAppointmentDetails {
	visibility: hidden;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.4);
	border-radius: 5px;
	
	position: absolute;
	width: 25rem;
	height: 30rem;
	
	left: 50%;
	top: 50%;
	
	box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
	
	pointer-events: none;
	
	z-index: 9999;
	
	transition-duration: 400ms;
	transition-timing-function: ease-in-out;
	transition-property: none;
	
}

#clientAppointmentDetails.open {
	pointer-events: all;
}

#clientAppointmentDetails.open #cad_whiteout {
	background-color: rgba(255,255,255,0);
	pointer-events: none;
}

#clientAppointmentDetails #cad_whiteout {
	background-color: rgba(255,255,255,1);
	
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
	z-index: 99999;
	
	transition: all 250ms ease-in-out;
}

#clientAppointmentDetails #cad_closeBtn {
	position: absolute;
	top: 0.2rem;
	right: 0.2rem;
	
	width: 2rem;
	height: 2rem;
}

#clientAppointmentDetails #cad_closeBtn button {
	background-color: rgba(255, 255, 255, 0);
	border: none;
	
	width: 100%;
	height: 100%;
	
	margin: 0;
	padding: 0;
	
	border-radius: 5rem;
}

#clientAppointmentDetails #cad_closeBtn button span {
	color: var(--popupButtonsColor);
	
	font-size: 150%;
	font-weight: 600;
	
	width: 2rem;
	height: 2rem;
	line-height: 2rem;
}

#clientAppointmentDetails #cad_closeBtn button:hover {
	background-color: var(--buttonBackgroundColor);
	
	cursor: pointer;
}

#clientAppointmentDetails #cad_closeBtn button:active {
	background-color: var(--inactiveElementColor);
}

#clientAppointmentDetails #cad_content {
	margin: 1.3rem;
}

#clientAppointmentDetails #cad_content .text {
	display: block;
	
	text-align: center;
	
	width: 100%;
	
	margin-top: 0.7rem;
	margin-bottom: 0.7rem;
}

#clientAppointmentDetails #cad_content .btn.active {
	border-color: var(--inactiveElementColor);
	background-color: var(--inactiveElementColor);
}

#clientAppointmentDetails #cad_content .btn.multiAgent {
	display: block;
	
	margin-left: auto;
	margin-right: auto;
	
	margin-bottom: 0.5rem;
}

.cad_infos_template {
	display: none;
}

.cad_infos {
	/*display: none;*/
	max-width: 26.4rem;
	
	font-size: 90% !important;
}

.cad_infos .bookedByClientInd {
	color: var(--popupButtonsColor);
	width: 100%;
	text-align: center;
	
	font-size: 85%;
	
	margin-bottom: 0.7rem;
	
	margin-top: -0.5rem;
}

.cad_infos div > .material-symbols-outlined {
	margin-right: 0.7rem;
	
	text-align: center;
	
	width: 1.6rem;
	height: 1.2rem;
	
	font-size: 1.2rem;
}

.cad_infos div > div {
	line-height: 100%;
}

#cad_content .cad_infos {
	display: block;
}

.cad_infos .cadi_name {
	display: flex;
	align-items: center;
	font-size: 150%;
}
.cad_infos .cadi_name > .material-symbols-outlined {
	height: 1.6rem;
	font-size: 1.6rem;
}


.cad_infos .cadi_datetime {
	display: flex;
	align-items: center;
	margin-bottom: 0.3rem;
}

.cad_infos .cadi_datetime > .material-symbols-outlined {
	visibility: hidden;
}

.cad_infos .cadi_agent {
	display: flex;
	align-items: center;
	margin-bottom: 1.3rem;
}

.cad_infos .cadi_phone {
	display: flex;
	align-items: center;
	
	margin-bottom: 0.2rem;
}

.cad_infos .cadi_email {
	display: flex;
	align-items: center;
}

.cad_infos .cadi_notes {
	display: flex;
	
	margin-top: 2rem;
}

.cad_infos .cadi_notes div > p:first-of-type{
	margin-top: 0;
}

.cad_infos .cadi_datesep {
	margin: 0 0.3rem;
	
	font-size: 130%;
}

.cad_infos .btn_cadi_cancelAppointment {
	margin-top: 1rem;
	margin-left: 2.3rem;
}

#cad_backgroundBlocker {
	background-color: #fff;
	
	opacity: 0;
	
	position: absolute;
	left: 0;
	top: 0;
	
	width: 100%;
	height: 100%;
	
	z-index: 9998;
	
	pointer-events: none;
}

#cad_backgroundBlocker.open {
	opacity: 0.5;
	pointer-events: auto;
}



/* FORMS */

.cadForm {
	width: 100%;
	height: auto;

	transform: translateX(-50%);

	position: relative;
	left: 50%;
}

.cadForm .cad_agent, .cadForm .cad_date {
	border-bottom: 1px solid rgba(225, 225, 225, 1);
	
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 1rem;
	
	padding-bottom: 0.5rem;
	margin-bottom: 0.5rem;
}

.cadForm .cad_dateTime {
	font-size: 90%;
}

.cadForm table {
	width: 100%;

	position: relative;
}

.cadForm .tField {
	display: block;

	width: 100%;
	height: auto;

	position: relative;

	margin-bottom: 1.8rem;
}

.cadForm > .tField {
	margin-top: 1.25rem;
}

.cadForm > .tField ~ .tField {
	margin-top: initial;
}

.cadForm .tField.verificationCode {
	width: 11rem;

	display: inline-block;
}

.cadForm .tLabel {
	pointer-events: none;

	display: block;

	width: auto;
	height: auto;

	position: absolute;
	left: 1.25rem;
	top: 50%;

	transform: translateY(-50%);

	text-align: left;
}

.cadForm .tField .errorMessage {
	color: #f00;

	padding-top: 0;
	height: 0;

	font-size: initial;

	clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);

	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	white-space: nowrap;
}

.cadForm input[type=text].error ~ div.errorMessage,
.cadForm input[type=password].error ~ div.errorMessage{
	padding-top: 0.3rem;
	height: 1.9rem;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.cadForm input[type=text].radio:not(.selected) + .tLabel {
	font-size: initial !important;

	left: 1.25rem !important;
	top: 50% !important;

	padding: initial !important;
}

.cadForm input[type=text]:focus + .tLabel,
.cadForm input[type=text]:valid + .tLabel,
.cadForm input[type=password]:focus + .tLabel,
.cadForm input[type=password]:valid + .tLabel,
.cadForm input[type=text].radio.selected + .tLabel
{
	background-color: #fff;

	font-size: 82%;

	left: 0.6rem;
	top: 0;

	white-space: nowrap;
	max-width: 90%;
	text-overflow: ellipsis;
	overflow: hidden;

	padding: 0 0.45rem 0 0.45rem;
}

.cadForm input[type=text],
.cadForm input[type=password]{
	font-size: 100%;
	font-family: 'Roboto', sans-serif;

	display: block;

	width: 100%;
	height: 3.2rem;

	position: relative;

	padding-left: 1.25rem;

	border-radius: 0.3rem;
	border: 1px solid var(--bordersColor);
}

.cadForm input[type=text]#fVerificationCode {
	font-size: 185%;
	letter-spacing: 0.4rem;
}

.cadForm input[type=text].error,
.cadForm input[type=password].error {
	border: 1px solid #f00;
}

.cadForm input[type=text].error + .tLabel,
.cadForm input[type=password].error + .tLabel{
	color: #f00;
}

.cadForm input[type=text]:focus,
.cadForm input[type=password]:focus,
.cadForm input[type=text].radio.selected
{
	border: 2px solid var(--mainColor);

	outline: none !important;
}

.cadForm input[type=text]:focus + .tLabel,
.cadForm input[type=password]:focus + .tLabel,
.cadForm input[type=text].radio.selected + .tLabel
{
	color: var(--mainColor);
}

.cadForm input[type=text]:invalid,
.cadForm input[type=password]:invalid{
	box-shadow: none;
}

.cadForm .tField input[type=radio] {
	position: absolute;
	width: 0;
	opacity: 0;
}

.cadForm .tField input[type=radio] + label {
	cursor: pointer;

	display: block;

	position: relative;

	width: 100%;
	height: 3.2rem;
	border-radius: 0.3rem;
	border: 1px solid var(--bordersColor);

	padding-left: 1.25rem;

	text-align: left;
}

.cadForm .tField input[type=radio] + label div {
	pointer-events: none;

	display: block;

	width: auto;
	height: auto;

	position: absolute;
	left: 1.25rem;
	top: 50%;

	transform: translateY(-50%);

	text-align: left;
}

.cadForm .tField input[type=radio]:checked + label {
	color: var(--mainColor);
	border: 2px solid var(--mainColor);
}

.cadForm #tSubmit {
	display: block;

	position: relative;

	margin-top: 1.25rem;

	text-align: right;
}

.cadForm #tSubmit #submitBtn {
	margin: 0;
}

.cadForm .cad_generalError {
	display: flex;
	
	justify-content: center;
	align-items: center;
	
	background: #fff;
	
	color: red;
	text-decoration: underline;

	position: absolute;
	bottom: 0rem;
	
	width: 100%;
	height: 3rem;

	clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
	
	z-index: 1000;
}

.cadForm .cad_generalError.shown {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

#cad_step2TemplateForm {
	display: none;
}

#cad_loadingIndicator {
	background-color: rgba(255, 255, 255, 0.85);
	
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	
	display: none;
}

#cad_loadingIndicator.shown {
	display: block;
}

#cad_loadingIndicator .loader {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -0.5em;
	margin-top: -0.5em;
}
.dayWrapper .l_timeslot.agent_1 > input + .timeslot.ap_schedule {
	background-color: rgba(var(--agent1color), 0.04);
	border-color: rgba(var(--agent1color), 0.6); 
	color: rgba(var(--agent1color), 1); 
}

.dayWrapper .l_timeslot.agent_1 > input:checked + div.ap_schedule {
	background-color: rgba(var(--agent1color), 1.0);
	color: #fff;
}

 .l_timeslot.calendar.agent_1 .timeslot {
	background-color: rgba(var(--agent1color), 1.0) !important;
	color: #fff !important;
}

 .l_timeslot.calendar.passed.agent_1 .timeslot {
	border-color: rgba(var(--agent1InactiveColor), 0.6) !important; 
	background-color: rgba(var(--agent1InactiveColor), 1.0) !important;
	color: #fff !important;
}
		
.dayWrapper .l_timeslot.agent_2 > input + .timeslot.ap_schedule {
	background-color: rgba(var(--agent2color), 0.04);
	border-color: rgba(var(--agent2color), 0.6); 
	color: rgba(var(--agent2color), 1); 
}

.dayWrapper .l_timeslot.agent_2 > input:checked + div.ap_schedule {
	background-color: rgba(var(--agent2color), 1.0);
	color: #fff;
}

 .l_timeslot.calendar.agent_2 .timeslot {
	background-color: rgba(var(--agent2color), 1.0) !important;
	color: #fff !important;
}

 .l_timeslot.calendar.passed.agent_2 .timeslot {
	border-color: rgba(var(--agent2InactiveColor), 0.6) !important; 
	background-color: rgba(var(--agent2InactiveColor), 1.0) !important;
	color: #fff !important;
}
		
.dayWrapper .l_timeslot.agent_3 > input + .timeslot.ap_schedule {
	background-color: rgba(var(--agent3color), 0.04);
	border-color: rgba(var(--agent3color), 0.6); 
	color: rgba(var(--agent3color), 1); 
}

.dayWrapper .l_timeslot.agent_3 > input:checked + div.ap_schedule {
	background-color: rgba(var(--agent3color), 1.0);
	color: #fff;
}

 .l_timeslot.calendar.agent_3 .timeslot {
	background-color: rgba(var(--agent3color), 1.0) !important;
	color: #fff !important;
}

 .l_timeslot.calendar.passed.agent_3 .timeslot {
	border-color: rgba(var(--agent3InactiveColor), 0.6) !important; 
	background-color: rgba(var(--agent3InactiveColor), 1.0) !important;
	color: #fff !important;
}
		