body.candidates:not(.confirm-booking) .wrapper.main {
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
	height: 100vh;
	overflow-y: scroll;
}
body.candidates .actions {
	display: flex;
	align-items: center;
}
body.candidates .actions h1 {
	margin-bottom: 0;
}
body.candidates .actions .ctrls i {
	font-size: 30px;
	color: #cada35;
}
body.candidates .actions .ctrls a {
	margin-left: 15px;
}
body.candidates .actions .ctrls a:hover i {
	color: #8b8c8d;	
}
body.candidates .actions select#selectMonth {
	background: #fff url(/assets/images/select-arrow.png) no-repeat right 10px top 55%;
	background-size: 11px 10px;
	font-size: 25px;
	text-transform: uppercase;
	width: 250px;
	display: inline-block;
	-moz-appearance: none; 
	-webkit-appearance: none; 
	appearance: none;
	border-radius: 0;
	border: 1px solid #cada35;
}
body.candidates .actions select#selectMonth::-ms-expand {
	display: none;
}
body.candidates .actions select#selectMonth:hover {
	border-color: #222;
}
body.candidates .actions select#selectMonth:focus {
	border: 1px solid #222;
	outline: none;
}
body.candidates .actions select#selectMonth option {
	font-size: 14px;
	font-weight:normal;
	text-transform: none;
}
.candidateCal {
	display: flex;
	flex-wrap: wrap;
}
.candidateCal .day {
	width: 16.66666667%;
	min-height: 200px;
	box-sizing: border-box;
	padding: 10px;
	border-bottom: 1px solid #fff;
	border-left: 1px solid #fff;
	position: relative;
}
.candidateCal .day:last-child {
	border-right: 1px solid #ccc;
}
.candidateCal .day.cancelled {
	background-color: #ff4729;
	color: #fff;
}
.candidateCal .day.confirmed {
	background-color: #c1d033;
	color: #fff;
}
.candidateCal .day.pending {
	background-color: #ffa500;
	color: #fff;
}
body.availability .candidateCal .day.current {
	background-color: #efefef;
}
body.my-shifts .candidateCal .day.current:before {
	content: "";
	border: 2px solid #4cc1ed;
	position: absolute;
	left: 0;
	top: 0;
	right: -1px;
	bottom: -1px;
	z-index: 1;
}
.candidateCal .date {
	display: inline-block;
	text-align: center;
}
.candidateCal .date span:first-child {
	display: block;
	font-size: 25px;
}
.candidateCal .date span + span {
	font-size: 9px;
	text-transform: uppercase;
}

/*Availability select buttons*/
.availability-select {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	margin-top: 10px;
	min-height: 117px;
}
.availability-select input[type="radio"] {
	display: none;
}
.availability-select label {
	border: 1px solid #cada35;
	display: inline-block;
	padding: 10px;
	margin: -1px 0 0 -1px;;
	flex: 1 1 auto;
	cursor: pointer;
	text-align: center;
	background-color: #fff;
	transition: background 0.5s ease;
	min-width: 37px;
}

.availability-select input[type="radio"]:checked + label {
	background-color: #8b8c8d;
	color: #fff;
}
.availability-select label:hover {
	background-color: #cada35;
}

.availability-select-past {
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	margin-top: 10px;
	min-height: 117px;
}
.availability-select-past label {
	border: 1px solid #cada35;
	display: inline-block;
	padding: 10px;
	margin: -1px 0 0 -1px;;
	flex: 1 1 auto;
	text-align: center;
	background-color: #8b8c8d;
	transition: background 0.5s ease;
	min-width: 37px;
	color:  #ffffff;
}

/*My Shifts*/
ul.shift-info, .main ul.shift-info {
	list-style-type: none;
	margin: 10px 0 0 0;
	padding: 0;
}
ul.shift-info li, .main ul.shift-info li {
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}
ul.shift-info li span {
	width: 60%;
	padding: 5px 0;
	box-sizing: border-box;
	display: inline-block;
}
ul.shift-info li span:first-child {
	text-transform: uppercase;
	width: 40%;
	padding-right: 10px;
	font-weight: bold;
}
ul.shift-info li + li span {
	border-top: 1px solid rgba(255,255,255,0.31);
}

.modal-content ul.shift-info li + li span {
	border-color: rgba(0,0,0,0.12);
}

ul.shift-info li.comments span, ul.shift-info li.comments span:first-child {
	width: 100%;
	padding-right: 0;
}
ul.shift-info li.comments span + span, .modal-content ul.shift-info li.comments span + span {
	border-color: transparent;
}

.shift-modal {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 2;
}
.shift-modal i {
	font-size: 16px;
	color: #fff;
	width: 23px;
	height: 23px;
	line-height: 25px;
	text-align: center;
	background-color: #8b8c8d;
	border-radius: 50%;
}
.shift-modal:hover i {
	background-color: #fff;
	color: #8b8c8d;
}

/*Confirm Booking both*/
.booking-info ul.shift-info {
	margin-bottom: 20px;
	padding-left: 10px;
}
.booking-info textarea {
	height: auto;
	margin: 0 0 20px 0;
}
.booking-info button {
	margin: 0px 20px 10px 0;
}
.booking-info button + button {
	margin-right: 0;
	margin-left: 0;
}
.booking-info button.btn-primary {
	color: #333;
}
.booking-info button.btn-primary:hover {
	color: #fff;
}
.apply-to-all {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	right: 10px;
	top: 10px;
	cursor: pointer;
	background-color: #cada35;
	padding: 3px;
	transition: all 0.5s ease;
}
.apply-to-all:hover {
	background-color: #fff;
}
.beingApplied + .apply-to-all {
	display: block;
	visibility: visible;
	opacity: 1;
}

/*Confirm Booking PAGE not modal & some cscs for login pg*/
body.confirm-booking .wrapper.main,
body.login .wrapper.main {
	display: flex;
	align-items: center;
}
body.confirm-booking .booking-info,
body.login .login-form {
	margin: 0 auto;
	background-color: #fff;
    width: 90%;
    max-width: 600px;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 10px;
}
body.confirm-booking #close {
	display: none;
}
body.login #sidebar-collapse {
	display: none;
}

.hide_desktop {
	display: none;
}

/*RESPONSIVE*/
@media (max-width: 1699px) {
	.availability-select label {
		font-size: 13px;
		padding: 10px 5px;
	}
}
@media (min-width: 1025px) and (max-width: 1299px) {
	.availability-select label {
		font-size: 12px;
		min-width: 32px;
	}
}
@media (max-width: 1199px) {
	.candidateCal .day {
		width: 20%;
	}
}
@media (max-width: 1024px) {
	.candidateCal .day {
		width: 25%;
	}
}
@media (max-width: 999px) {
	.candidateCal .day {
		width: 33.33333333%;
	}
}
@media (max-width: 999px) and (orientation: portrait){
	.candidateCal .day {
		width: 50%;
	}
}
@media (max-width: 767px) {
	body.candidates .actions {
		padding: 0px;
		display: flex;
		align-items: center;
		position:fixed;
		left:0;
		right:0;
		top:56px;
	}
	body.candidates .actions + h1 {
		position:fixed;
		left:0;
		right:0;
		top:92px;
		background-color: #fff;
		margin:0;
		padding:10px;
		z-index: 3;
		font-size: 16px;
	}
	body.candidates .wrapper.main {
		padding-top: 130px;
	}
	.candidateCal .day {
		width: 50%;
		min-height: 5px;
	}
	body.candidates .actions {
		margin: 0;
	}
	.candidateCal .date {
		width: 30px;
		vertical-align: top;
	}
	.candidateCal .date + form {
		display: inline-block;
		width: calc(100% - 45px);
		vertical-align: top;
		margin-left: 10px;
	}
	.availability-select {
		min-height: 40px;
		margin-top: 0;
	}
	body.candidates .actions select#selectMonth {
		font-size: 16px;
	}

	.hide_desktop {
		display: block;
	}

	/*Tables*/
	table#my-compliance.mobile-optimise. {
		margin-top: 20px;
	}
	table#my-compliance.mobile-optimise th {
		 display: none;
	}
	table#my-compliance.mobile-optimise td, table#my-compliance.mobile-optimise td.center {
		display: table-cell;
		text-align: left;
	}
	.box-border table th, .box-border td {
		padding-left: 0;
		padding-right: 0;
	}
	table#my-compliance.mobile-optimise td:before {
		content: attr(data-label);
		font-weight: bold;
	}
	table#my-compliance.mobile-optimise tr {
		border-bottom: 1px solid #ccc;
	}
	table#bookings.mobile-optimise td:before {
		display: block;
	}
	table#my-compliance.tablesorter.mobile-optimise thead, table#my-compliance.tablesorter.mobile-optimise thead {
		display: none;
	}
}
@media (max-width: 500px) {
	.candidateCal .day {
		width: 100%;
	}

	.hide_desktop {
		display: block;
	}

	.candidateCal .day {
		box-sizing: border-box;
		padding: 10px;
		border-bottom: 1px solid #fff;
		border-left: 0px;
		position: relative;
	}

	.availability-select-past {
		min-height: 40px;
	}
}

h1, h2, p {
	padding-left: 10px;
}

a.nav-noformat-link, a.nav-noformat-link:visited, a.nav-noformat-link:link {
	padding: 0px;
	border-left: none;
	transition: none;
	color: #fff;
	text-decoration: underline;
}