#schedule-month, #schedule-week, #schedule-day {
	width: 100%;
	min-height: 100%;
	display: table;
	font-size: 0.9em;
	border-collapse: collapse;
	table-layout: fixed;
}

.schedule-title {
	font-size: 1.7em;
	font-weight: bolder;
}

.schedule-month-row, .schedule-week-row,.schedule-day-row {
	display: table-row;
}

.schedule-week-row{
	overflow: visible;
}

.schedule-week-time-header,.schedule-day-time-header{
	height: auto !important;
	width: 50px !important;
	max-width: 50px !important;
	background: #eee;
	display: table-cell;
}
.schedule-month-header {
	width: 14.28%;
	padding: 5px;
	border: 1px solid #eee;
	background: #eee;
	display: table-cell;
	font-weight: bolder;
	text-align: center;
	vertical-align: top;
}

.schedule-week-header,.schedule-week-time,.schedule-day-header,.schedule-day-time {
	padding: 5px;
	border: 1px solid #eee;
	background: #eee;
	display: table-cell;
	font-weight: bolder;
	text-align: center;
	vertical-align: top;
}

.schedule-week-time,.schedule-day-time{
	width: 50px !important;
	max-width: 50px !important;
	height: 50px;
}

.schedule-month-day {
	width: 14.28%;
	padding: 5px;
	border: 1px solid #eee;
	display: table-cell;
	height: 150px;
	vertical-align: top;
}

.schedule-week-hour,.schedule-day-hour {
	display: table-cell;;
	padding: 5px;
	border: 1px solid #eee;
	vertical-align: top;
	overflow: visible;
}

.schedule-month-today {
	background: #fffbf5;
}


.text-blue {
	color: #029aff;
}

.tag-appointment {
	font-size: 0.8em;
	font-weight: bold !important;
	color: white;
	border-radius: 5px;
	padding: 3px;
	display: inline-block;
}

.tag-appointment-user {
	background: #eaeaea;
	color: #545454;
}

.tag-appointment-user-me {
	color: red;
}

.tag-appointment-repair {
	background: #008ed0;
}
.tag-appointment-diagnostic {
	background: #dd0000;
}
.tag-appointment-equipment-move {
	background: #ec9802;
}
.tag-appointment-install {
	background: #7f00eb;
}
.tag-appointment-drop-shop {
	background: #d9d401;
}
.tag-appointment-preventative-maintenance {
	background: #00c304;
}

.appointment {
	display: inline-block;
	width: auto;
	padding: 2px;
	margin: 3px 0;
	box-sizing: border-box;
	box-shadow: 2px 2px 2px #eee;
	background: #fff;
	color: #444444;
}

.appointment-hour {
	background: white;
	border: 1px solid #eee;
	min-height: 25px;
	position: absolute;
	overflow: hidden;
	transition: transform 0.5s;
	-webkit-transition: transform 0.5s;
}

.appointment-mobile{
	width: 100%;
}

.appointment-hour:hover {
	z-index: 9999 !important;
	background: #fff !important;
}

#unscheduledwo .appointment-hour {
	position: relative;
}

.appointment-repair {
	border-left: 4px solid #008ed0;
}
.appointment-diagnostic {
	border-left: 4px solid #dd0000;
}
.appointment-equipment-move {
	border-left: 4px solid #ec9802;
}
.appointment-install {
	border-left: 4px solid #7f00eb;
}
.appointment-drop-shop {
	border-left: 4px solid #d9d401;
}
.appointment-preventative-maintenance {
	border-left: 4px solid #00c304;
}

.appointment-complete {
	opacity: 0.5;
}

.ui-resizable-s {
    height: 15px;
}


.modal-header {
	border-bottom: 0 !important;
}

.close {
	font-size: 2em; 
	color: red;
	opacity: 0.9;
}

.workorder-photo {
	display: inline-block;
	margin: 3px;
	border: 1px solid #eee;
	box-shadow: 2px 2px 2px #eee;
	width: 150px;
	height: 150px;
	background-size: cover;
	-webkit-background-size: cover;
	background-position: center;
}

@media screen and (max-width: 1025px){
	.schedule-month-header,.schedule-week-header{
		display: none;
		width: 100%;
	}
	.schedule-month-day{
		display: inline-block;
		width: 100%;
		height: auto;
		padding: 10px;
	}
	.appointment {
		margin-left: 10px;
		clear: both;
	}
}