* {-moz-box-sizing:border-box; box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box;}
* {white-space-collapse: discard; }

#requestLoader{
	display: block;
	width: 40px;
	float:left;
}
.sideDialog{
	input, select{
		outline: none;
	}
	.flex{
		display: flex;
		width: 100%;
		gap: 15px 20px;
	}
	.flexwrap{
		flex-wrap: wrap;
	}
	.flexgrow{
		flex-grow:1;
	}
	input[type=checkbox]{
		display: none;
	}
	input[type=checkbox] + label{
		color: #727272;
		font-weight: 600;
		font-size: 12px;
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 8px;
		margin: 0;
		line-height: 22px;
	}
	input[type=checkbox] + label::before{
		content: "";
		display: inline-block;
		width: 14px;
		height: 14px;
		min-width: 14px;
		border-radius: 14px;
		border: solid 1px #434343;
		background-color: #FFF;	
	}
	input[type=checkbox].Error + label::before{
		border: solid 1px #F00;
	}	
	input[type=checkbox]:checked + label::before{
		background-color: #434343;	
	}	
	input[type=checkbox]:checked + label{
		color: #434343;
	}	
	input[type=text], select{
		width:100%;
		height: 40px;
		line-height: 38px;
		border-radius: 8px;
		border: solid 1px #000;
		background-color: #FFF;
		padding-left: 10px;
	}
	label[for]{
		display: inline-block;
		width:100%;
		color: 14px;
		font-size: 12px;
		font-weight: 600;
		line-height: 1.5;
		margin-bottom: 5px;
	}
	.doxHref{
		display: block;
		padding: 10px 30px;
		border-radius: 13px;
		text-decoration: none;
		border: 2px solid #000;
		width: max-content;
		color: #000;
		align-self: center;
		margin-top: 200px;		
	}
}
.hidden{
	display: none !important;
}
.sampleButton{
	position: absolute;
	left: 50%;
	top: 310px;
	color: #FFF;
	z-index: 300;
	background-color: transparent;
	border: 2px #FFF solid;
	border-radius: 40px;
	cursor: pointer;
	transform: translate(-50%,0);
	display: block;
	width: 220px;
	line-height: 49px;
	font-size: 20px;
}
.sampleoverlay {
	position: fixed;
	width:100%;
	height: 100%;
	left:0;
	top: 0;
	background-color:  rgba(33, 36, 39, 0.3);
}
@keyframes sideMenu {
  0% {left: 100%;}
  100% {left: 50%;}
}
@keyframes sideMenuBack {
  0% {left: 50%;}
  100% {left: 100%;}
}
.sideDialog{
	position: fixed;
	top: 0;
	left: 100%;
	width: 50%;
	height: 100%;
	background-color: #fff;
	animation-name: sideMenu;
	animation-duration: 500mS;
	animation-timing-function: ease-in-out;
	animation-play-state: paused;
	animation-iteration-count: 1;
	padding: 28px 28px 15px 28px;
	color: #434343;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	gap:0;
	.actions:empty, .top:empty{
		display: none;
	}
	.content{
		flex-grow: 1;
		overflow: hidden;
		overflow-y: auto;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		gap:15px;
		padding: 24px;
		padding-bottom: 60px;
	}
	.actions{
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		gap: 10px;
		button{
			width: initial;
			padding: 0 24px;
		}
	}
	.CloseAct{
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		height: 24px;
		gap: 12px;
		color: #000;
		text-decoration: none;
	}
	h2{
		font-size: 24px;
		font-weight: bold;
		margin:0;
	}
	.submit{
		color: #FFF;
		background-color: #000;
		font-size: 12px;
		border-radius: 24px;
		line-height: 36px;
		height: 36px;
		min-width: 100px;
		cursor: pointer;
		text-transform: uppercase;
		font-weight: 600;
		display:inline-flex;
		justify-content: center;
	}
	.Error{
		color: #F00;
		border-color: #F00 !important;
	}
	.actions{
		justify-content: space-between;
	}
}
.sideDialog.opened{
	animation-play-state: running;
	left: 50%;
}
.sideDialog.opened.closed{
	animation-name: sideMenuBack;
	animation-play-state: running;
	left: 100%;
}
.Icon{
	display: inline-block;
	cursor: pointer;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;	
	mask-position: center;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;		
	background-color: #000;
	width: 24px;
	height: 24px;
}
.Icon.Close{-webkit-mask-image: url(./i/Close.svg); mask-image: url(./i/Close.svg);}

input.datePicker{
	padding-left: 35px !important;
	background-image: url("./i/calendar.svg");
	background-repeat: no-repeat;
	background-position: 12px center;
}
.Icon.Close[for=datePicker]{
	position: absolute;
	z-index:2;
	right: 10px;
	top: 50%;
	transform: translate(0,-50%);
}
input.datePicker:placeholder-shown + .Icon.Close[for=datePicker]{
	display: none;
}
.uiCalendar {
	display:block;
	background-color: #FFF;
	position: absolute;
	z-index:5;
	-webkit-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.28);
	-moz-box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.28);
	box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.28);	
	border-radius: 8px;
	.header{
		width:100%;
		display: inline-flex;
		flex-direction: row;
		justify-content: space-between;
		padding: 12px;
		font-size: 12px;
		font-weight: 600;
	}	
	table{
		border-spacing: 0px;
		border-collapse: separate;
		thead th{
			background-color: #000;
			font-size: 12px;
			font-weight: 600;
			color: #AEAEAE;
			padding: 12px;
		}	
		thead th:first-child{
			border-top-left-radius: 1vh; 
			border-bottom-left-radius: 1vh; 
		}		
	}	
	thead th:last-child{
		border-top-right-radius: 1vh; 
		border-bottom-right-radius: 1vh; 
	}
	tbody td{
		height: aut0;
		padding:0;
		min-width: 4.8vh;
		min-height: 4.8vh;
		a{
			display: block;
			font-size: 12px;
			font-weight: 600;
			width: 4.4vh;
			height: 4.4vh;	
			line-height: calc(4.4vh - 4px);	
			border-radius: 4.4vh;
			border: 2px #FFF solid;
			color: #000;
			margin:0;
			text-align: center;
			text-decoration: none;
		}		
		a.today{
			background-color: #AEAEAE;
		}
		a.disabled{
			color: #E3E8F2;
		}		
		a.selected{
			border: 2px #000 solid;
		}
	}
	#prevMonth, #nextMonth{
		display: inline-block;
		background-repeat: no-repeat;
		background-size: contain;
		width: 0.8vh;
		height: 1.3vh;
	}
	#prevMonth{
		background-image: url("./i/prev.svg");
	}
	#nextMonth {
		background-image: url("./i/next.svg");
		margin-left: 4vh;
	}	
}