.formerror {
	color: #d92550;
}

.calendar-wrapper {
	margin: 60px 0 0 0;
	max-height: calc(100vh - 160px);
	overflow: auto;
}

.not-available {
	color: red;
	text-align: center;
	margin-top: 40px;
}

.day-table {
	display: table;
	width: 100%;
}

.day-table .day-table-row {
	display: table-row;
	width: 100%;
}

.day-table .day-table-row .day-table-cell {
	display: table-cell;
	padding: 10px;
	border-bottom: solid 1px #ddd;
	color: rgba(0, 0, 0, .54);
}

.day-table .day-table-row.detail-row:first-child .day-table-cell {
	border-top: solid 1px #ddd;
}

.day-table .day-table-row.detail-row .day-table-cell:first-child {
	width: 70px;
	border-right: solid 1px #ddd;
	text-align: center;
}

.day-table .day-table-row.day-cell .day-table-cell:last-child {
	width: calc(100% - 70px);
	background: #f7f7f7;
}

.day-table .day-table-row .day-table-cell.current-day {
	background: #f7f7f7;
}

.day-table .day-table-row .day-table-cell.blocked-day {
	background: #fff2f2;
}

.day-table .day-table-row .day-table-cell.selected a {
	color: #fff !important;
}

.day-table .day-table-row .day-table-cell.selected {
	background: #0288d1 !important;
	color: #fff !important;
}

.day-table.week-table .day-table-row .day-table-cell {
	text-align: center;
	border-right: solid 1px #ddd;
}

.day-table.week-table .day-table-row .day-table-cell:last-child {
	border-right: 0;
}

.day-table .day-table-row.header-row .day-table-cell {
	font-size: 16px;
	font-weight: 500;
	border-right: 0;
	padding-bottom: 2px;
	vertical-align: baseline;
	line-height: 15px;
}

.day-table .day-table-row.header-row .day-table-cell .block-date {
	font-size: 12px;
	font-weight: normal;
}

.month-table {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.month-table>div,
.month-table>a {
	width: 14.28%;
	padding: 10px;
	border-bottom: solid 1px #ddd;
	border-right: solid 1px #ddd;
	color: rgba(0, 0, 0, .54);
	text-align: center;
	min-height: 120px;
}

.month-table>a:hover {
	text-decoration: none;
}

.month-table>div.header-cells {
	border-right: solid 0px #ddd;
	font-size: 16px;
	font-weight: 500;
	border-right: 0;
	padding-bottom: 2px;
	min-height: 0;
}

.month-table .date-text {
	text-align: right;
	font-size: 12px;
	color: rgba(0, 0, 0, .38);
	margin-bottom: 5px;
}

.month-table .app-det {
	color: #0288d1;
}

.month-table>a.selected {
	background: #f7f7f7;
}

.month-table>a.blocked {
	background: #fff2f2;
}

.month-table>a.blocked .date-text {
	color: #c70e0e;
}

.doc-name {
	width: 100%;
	color: #9c9c9c;
	font-size: 14px;
	font-weight: normal;
	margin-top: 7px;
}

.dashboard-counter a {
	display: block;
	color: #fff;
	text-decoration: none;
	width: 100%;
}

.p-app-det {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: dashed 1px #ccc;
}

.card-content .p-app-det:last-child {
	border-bottom: 0;
}

.p-app-det .doc-name {
	font-size: 1.1em;
	font-weight: bold;
	color: #000;
}

.p-app-det .app-date {
	font-size: 0.9em;
	color: #8c8c8c;
}

.p-app-det .doc-det {
	margin-top: 10px;
}

.fixed-sidebar .app-main .app-main__outer {
	padding-left: 0;
}

.request-form {
	padding: 20px;
	max-height: calc(100vh - 100px);
	overflow: auto;
}

.not-allowed {
	cursor: not-allowed;
}

.imp-msg{
	background: #730c06;
	color: #fff;
	padding: 1.25rem;
	font-weight: bold;
	border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
	display: flex;
	align-items: center;
}

.imp-msg svg{
	width: 24px;
	height: 24px;
	fill: #fff;
}

.imp-msg svg + span{
	width: calc(100% - 30px);
	padding-left: 10px;
}