*{
	font-family: Lato,sans-serif;
}

html{
	margin: 0;
	padding: 0;
	overflow-y: scroll;
}


h1,h3{
	font-family: Lato,sans-serif;
}

body{
	color: #333;
}

a, a:hover{
	text-decoration: none;
	color: inherit;
}



#masterGrid{
	display: grid;
	grid-gap: 20px;

	grid-template-columns: 27fr 10fr;
	grid-template-areas: 	"weekTime masterSearch"
	"content panelsWide"
	"content panelsWide"
	"wide wide";



}

#addTaskGrid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	/*grid-gap: 20px;*/
	grid-template-areas: 
	"title title"
	"project subscribers"
	"subject assignees"
	"body body"
	"comment time"
	"buttons buttons";
}

.noselect {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently
	supported by Chrome and Opera */
}

input[type=text], input[type=password] {
	border: none;
	border: 1px solid lightgray;
	/*border-top: 1px solid transparent;*/
	padding: 9px;
	/* 	width: 100%; */
	outline: none;
	transition: .25s;
	border-radius: 5px;
}

.taskSubtasks input[type=checkbox].checked ~ .subtasktext{
	text-decoration: line-through;
}

textarea{
	border: none;
	border: 1px solid lightgray;
	/*border-top: 1px solid transparent;*/
	padding: 9px;
	/* 	width: 100%; */
	outline: none;
	border-radius: 5px;
}

.mce-statusbar>.mce-container-body .mce-path{
	display: none;
}

.mce-tinymce{
	display: block;
	-webkit-box-shadow: unset;
	-moz-box-shadow: unset;
	box-shadow: unset;
	font-family: Lato,sans-serif;
}

input[type=text]:focus, input[type=password]:focus {
	border: none;
	border: 1px solid #999;
	/*border-top: 2px solid transparent;*/
	outline: none;
}

input[type=submit] {
	background-color: #ff9800;
	color: white;
	border: none;
	/*border-top: 1px solid transparent;*/
	padding: 10px 20px;
	/* 	width: 100%; */
	outline: none;
	transition: .25s;
	border-radius: 5px;
}

input[type=submit]:hover{
	background-color: #ffaf38;
}

select {
	border: none;
	background-color: #eee;
	border-radius: 0 !important;
	padding: 5px;
	height: 30px;
	width: 100%;
}

#content{
	padding-top: 100px;
	padding-bottom: 100px;

}

#content, #headerContent{
	min-width: 970px !important;
}

.container{
	width: 90vw;
	padding-left: unset;
	padding-right: unset;
}

.row{
	margin-left: unset;
	margin-right: unset;
}

.select2-container{
	margin-bottom: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered{
	line-height: unset;
}

.select2-container .select2-selection--single .select2-selection__rendered{
	padding: 0
}

.select2-container .select2-selection--single{
	padding: 9px;
	height: unset;
}

.select2-container--default .select2-selection--single{
	border: 1px solid lightgray;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
	height: 40px;
	right: 5px;
}

#taskAdd .inputs{
	width: 100%;
	margin-bottom: 20px;
}

#taskView{
	grid-area: content;
}

#taskAdd{
	display: flex;
}

.taskBody, .taskSubtasks, .taskSubtasksAddButton{
	margin-bottom: 20px;
}

.subtaskAddPanel{
	background-color: #f5f5f5;
	border-radius: 5px;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.subtaskAddPanel input{
	width: 100%;
}

.subtaskAddPanel .button{
	width: 100px;
	margin-left: 10px;
}

.taskBody img{
	display: block;
}

.taskBody a{
	text-decoration: underline;
	color: orange;
}

.taskAddSubscribers{
	margin-bottom: 20px;	
	display: none;
}

.taskAddSubscribers .subs{
	display: flex;
	flex-wrap: wrap;
}

.taskAddSubscribers .subs .checkboxAndLabel{
	width: 30%;
}

.taskAddAssignees{
	margin-bottom: 20px;	
	display: none;
}

.taskAddAssignees .assi{
	display: flex;
	flex-wrap: wrap;
}

.taskAddAssignees .assi .radioAndLabel{
	width: 30%;
}

.inputFieldLabel{
	text-transform: uppercase;
	color: #555;
	font-size: 1.1rem;
}

a.gray:hover{
	color: #111;
	cursor: pointer;
}


hr{
	border-top: 1px solid #eeeeee;
}

.icHeader{
	display: flex;
	align-items: center;
	padding: 10px 0;
	justify-content: space-between;
	height: 80px;
}

.moreAppsButton{
	color: white;
	position: absolute;
	margin-left: -50px;
	font-size: 20px;
	opacity: .5;
	width: 50px;
	height: 80px;
	cursor: pointer;
	align-items: center;
	display: flex;
	justify-content: center;
	transition: .25s;
}

.moreAppsButton:hover{
	opacity: 1;
}

.moreAppsPanel{
	display: none;
	z-index: 1000;
	background-color: #ff9800;
	height: 80px;
	position: fixed;
	width: 100%;
}

.icHeader .mobileBarsMenu{
	color: white;
	font-size: 3rem;
	cursor: pointer;
	padding: 10px;
}

.icHeader .logo{
	background-image: url(https://inter-concept.co.uk/site/img/logo.png);
	width: 40px;
	height: 40px;
	background-size: contain;
	background-repeat: no-repeat;
}

.icHeader .logoTextGroup{
	margin-left: 10px;
}

.icHeader .logoText{
	color: #ff9800;
	font-weight: 800;
	font-size: 1.2rem;
}

.icHeader .logoSubtext{
	color: white;
	font-size: 2rem;
	font-weight: 800;
}

.icHeaderBg .mobileMenu{
	display: flex;
	flex-direction: column;
	color: white;
}

.icHeaderBg{
	background-image: url(https://inter-concept.co.uk/site/img/bannerbg1.jpg);
	background-origin: border-box;
	background-position: 0 20%;
}

.icHeaderBg .mobileMenu a{
	padding: 20px 0;
	border-top: 1px solid #444;
	color: #aaa;
}

.icHeaderBg .mobileMenu a.active{
	font-weight: 800;
	color: white;
}

.icHeaderBg .mobileMenu a:hover{
	color: #ff9800;
}

.headerButton{
	color: white;
	padding: 10px 0;
	margin-left: 20px;
	transition: .25s;
}

.headerButton:hover{
	cursor: pointer;
	color: white;
	text-shadow: 0 0 10px #fff;
}

.headerButton i{
	margin-right: 5px;
}

.headerSpacer{
	background-color: white;
	width: 1px;
	height: 30px;
	margin: 0 20px;
	opacity: .5;
}


.clientTopButtons .button{
	margin: 0 10px;
	font-size: 1.75rem;
}

.clientTopButtons .button:first-child{
	margin-left: 0;
}

.clientTopButtons .button:last-child{
	margin-right: 0;
}


.viewerContent{
	background-color: white;
	padding: 20px ;
	/*box-shadow: 0 0 10px lightgrey;*/
	border-radius: 10px;
	/*width: 100%;*/
	flex-grow: 1;
}

.viewerContent h2{
	transition: .25s;
	cursor: pointer;
}

.viewerContent h2 .fas{
	margin-right: 5px;
	/*transition: .25s;*/
}

.viewerContent .title{
	font-weight: 900;
	font-size: 2.5rem;
	margin-bottom: 20px;
	text-transform: uppercase;
}


.viewerContent .smallTitle{
	font-weight: 900;
	font-size: 1.75rem;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.viewerContent .smallSubTitme{
	font-size: 1.25rem;
	margin-bottom: 20px;
	color: gray;
} 

.viewerContent h1:nth-child(1){
	margin-top: 0;
}

.viewerContent h2:nth-child(1){
	margin-top: 0;
}

.retractedPanel{
	align-self: start;
	padding: 5px 20px;
}

.retractedPanel h2{
	margin: 0;
	color: lightgray;
}

.retractedPanel h2 .fas{
	transform: rotate(-90deg);
	margin-right: 10px;
}

.retractedPanel table, .retractedPanel .flexTable, .retractedPanel .textfieldGroup{
	display: none;
}

.header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	margin-top: 20px;
}

.header h1{
	margin: 0;
}

.marginLeft{
	margin-left: 20px;
}

.marginRight{
	margin-right: 20px;
}

.badgeBox{
	border-radius: 5px;
	background-color: #555;
	color: white;
	padding: 2px 10px;
	transition: .25s;
	width: 35px;
	text-align: center;
}

.s_taskRow.lastselected{
	border: 1px solid lightgray;
}

.s_taskRow.selected:hover{
	background-color: #ffefd9;
}

.s_taskRow.closed td{
	color: #cacaca;
	text-decoration: line-through;
}

.s_taskRow.important{
	/*font-weight: 900;*/
	background-color: #ffeded;
}

.s_taskRow.important + .extendablePanel .panelFooter{
	background-color: #ffd2d2;
}

.s_taskRow.important + .extendablePanel{
	border-bottom: 1px solid #F44336;
}

.s_taskRow.important + .extendablePanel .important{
	display: block;
}

.s_taskRow.important:hover{
	background-color: #ffd2d2;
}

.s_taskRow.dfn.important{
	color: #ffeded;
	background-color: unset;
}

.s_taskRow.dfn{
	color: #eee;
}

.s_taskRow.dfn:hover{
	color: #111;
	background-color: unset;
}

.s_taskRow.dfn.important:hover{
	color: #ea5858;
}

.s_taskRow.important.selected, .s_taskRow.important.dfn.selected{
	background-color: #ffd2d2;
	border-top: 1px solid #F44336;
	color: #111;
}

.s_taskRow.selected, .s_taskRow.dfn.selected{
	background-color: #ffefd9;
	border-top: 1px solid #ff9800;
	color: #111;
}

.clientside{
	content: "";
	width: 10px;
	height: 10px;
	background-color: #4CAF50;
	display: block;
	border-radius: 20px;
	color: transparent;
}

.clientsideHeader{
	transform: rotate(270deg);
	height: 15px;
	/* height: 100px; */
	width: 10px;
	margin-top: 35px;
	font-size: 10px;
}

.extendablePanel .important{
	display: none;
	text-align: center;
	text-transform: uppercase;
	color: #ff4141;
	/*margin-bottom: 20px;*/
	font-weight: 900;
	letter-spacing: 10px;
	font-size: 10px;
}

a:hover .badgeBox{
	background-color: #999;
	cursor: pointer;
}

a .badgeBox{
	padding: 3px 10px;
}

.clickable-row{
	cursor: pointer;
	transition: .25s;
}


.textfieldGroup{
	display: flex;
	align-items: center;
}

.searchBar input[type=text]{
	width: 200px;
	border-radius: 5px;
}
.searchNoteBar input[type=text]{
	width: 150px;
	border-radius: 5px;
}

.textfieldIcon{
	margin-left: -35px;
	padding: 10px;
}

.textfieldGroup .fa-search{
	width: 35px;
	margin-left: -35px;
	padding: 10px;
}

.textfieldGroup .fa-times{
	width: 35px;
	margin-left: -35px;
	padding: 12px;
	display: none;
	cursor: pointer;
}

.extendablePanel{
	border-bottom: 1px solid #ff9800;
	border-top: 1px solid lightgray;
	display: none;
	/*background-color: #eee;*/
}

.extendablePanel .panelFooter{
	content: '';
	width: 100%;
	height: 20px;
	background-color: #ffefd9;
	border-top: 1px solid lightgray;
	display: flex;
	justify-content: center;
	align-items: center;
}

.panelFooter:hover{
	cursor: pointer;
}

.panelFooter .fa-caret-up{
	color: #ff9800;
}

.extendablePanel td{
	padding: 0;
}

.extendablePanel .buttonSmall{
	margin: 0 10px;
}

.extendablePanel .title{
	margin-bottom: 20px;
	/* font-style: italic; */
	text-transform: uppercase;
	font-weight: 900;
	font-size: 1.25em;
}

.avatar{
	width: 30px;
	height: 30px;
	overflow: hidden;
	border-radius: 30px;
	margin-right: 10px;
	display: flex;
}

.avatar.small{
	width:15px;
	height:15px;
}

.avatarAndText{
	display: flex;
	align-items: center;
}

.avatarAndText p{
	margin: 0;
	padding: 0;
}

.mention{
	background-color: #ffd597;
	border-radius: 5px;
	border: 1px solid #ff9800;
	padding: 1px 3px;
	display: inline;
}

.mention:before{
	content: '@';
}

table{
	width: 100%;
}

th{
	text-align: left;
	padding: 10px 5px;
	border-bottom: 1px solid lightgrey;
}


td{
	padding: 10px 5px;
}

#panelGrid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
	grid-area: panelsNarrow;
}

#focus{
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: black;
	opacity: .25;
	display: none;
	z-index: 990;
}

#notepopup, #addonpopup, #servicepopup{
	display: none;
	position: fixed;
	z-index: 997;
	left: 50%;
	top: 50%;
	width: 800px;
	height: 70%;
	background-color: white;
	padding: 40px;
	background-color: white;
	/*box-shadow: 0 0 20px lightgray;*/
	transform: translateY(-50%) translateX(-50%);
	border-radius: 5px;
}

#addonpopup, #servicepopup{
	width: 1000px;
	height: auto;
}

#notepopup .text strong{
	font-size: 2rem;
	margin-bottom: 20px;
}

#notepopup .buttonIcon, #addonpopup .buttonIcon,  #servicepopup .buttonIcon{
	position: fixed;
	left: 10px;
	top: 10px;
}

#addonpopup .head, #servicepopup .head{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;

}

#addonpopup .head h2, #servicepopup .head h2{
	margin: 0;
}

#servicepopup .middle table td{
	padding: 10px 0;
}

#servicepopup .middle{
	margin-bottom: 20px;
}

#servicepopup .tableOverflow{
	max-height: 400px;
	overflow-y: scroll;
	margin-bottom: 20px;
}

#timepopup{
	display: none;
	position: fixed;
	z-index: 999;
	left: 50%;
	top: 50%;
	width: 450px;
	background-color: white;
	padding: 40px;
	background-color: white;
	box-shadow: 0 0 20px lightgray;
	transform: translateY(-50%) translateX(-50%);
	border-radius: 5px;
}

#timepopup .time, #timepopup .message{
	width: 100%;
	margin-bottom: 20px;
}

#timepopup .daywarning{
	margin-bottom: 20px;
	background-color: #F44336;
	border-radius: 5px;
	color: white;
	padding: 0 10px;
	text-align: center;
	display: none;
}

.errorPop{
	background-color: #F44336;
	top: -20px;
	left: 50%;
	position: fixed;
	z-index: 998;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	box-shadow: 0 0 20px #F44336;
	color: white;
	transform: translateX(-50%);
}

.errorPop{
	margin: 10px 0;
}

.errorPop .icon{
	padding: 20px;
	transition: .25s;
}

.errorPop .fa-times:hover{
	cursor: pointer;
	opacity: .75;
}

.preloader{
	background-color: #ff9800;
	top: 90px;
	left: 50%;
	position: fixed;
	z-index: 998;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	/*box-shadow: 0 0 20px #ff9800;*/
}

.preloader .spin{
	animation: spin .75s linear infinite;
	font-size: 25px;
	color: white;
}

@keyframes spin{
	0%{
		transform: rotate(0deg);
	}
	100%{
		transform: rotate(360deg);
	}
}

.preloader2{
	top: 0px;
	z-index: 1000;
	width: 100%;
	height: 5px;
	position: fixed;
	background: linear-gradient(90deg, transparent, #ff9800, transparent);
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: -150% 0;
	animation: barMarq 1.5s infinite;
	animation-timing-function: cubic-bezier(0, 0.9, 1, 0.1);
}

@keyframes barMarq{
	0%{
		background-position: -150% 0;
	}
	100%{
		background-position: 250% 0;
	}
}

.actionsPanel{
	margin-bottom: 20px;
}

.actionsPanel .button{
	margin-bottom: 10px;
}

.actionsPanel .spacer{
	height: 1px;
	width: 100%;
	background-color: #ddd;
	margin: 10px 0;
}

.assignedPanel{
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.projectPanel .projectSelect{
	width: 100%;
}

.titleAndButton{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.titleAndButton .title{
	margin-bottom: 0;
}

.editButton{
	font-size: 15px;
}

.assignedPanel .editButton, .titleAndButton .editButton{
	color: #dedede;
	transition: .25s;
}

.doneEditSubscribers{
	display: none;
	color: #ffc678;
	cursor: pointer;
	transition: .25s;
	font-size: 20px;
}

.doneEditSubscribers:hover{
	color: #ff9800;
}

.editButton:hover{
	cursor:pointer;
	color: #111;
}

.editAssignedList{
	position: absolute;
	box-shadow: 0px 0px 20px #9e9e9e;
	background-color: white;
	z-index: 999;
	display: none;
}

.editAssignedList .avatarAndText{
	padding: 10px 20px;
	transition: .25s;
}

.editAssignedList .avatarAndText:hover{
	background-color: lightgray;
	cursor: pointer;
}

.checkboxAndLabel{
	display: flex;
	align-items: center;
	height: 40px;
}

.checkboxAndLabel .check{
	margin-right: 10px;
}

.radioAndLabel{
	display: flex;
	align-items: center;
	height: 40px;
}

.radioAndLabel .radio{
	margin-right: 10px;
}

.rich_text_inline_image_wrapper img{
	max-width: 100%;
}

#quickTimeButtons form{
	width: 100%;
}

#quickTimeButtons .item, .flexTable .item{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	align-items: center;
}

#quickTimeButtons .item:last-child, .flexTable .item:last-child{
	margin-bottom: unset;
}


.commentArea, .commentAreaMce{
	width: 100%;
	max-width: 100%;
	margin-right: 10px;
	height: 50px;
	min-height: 90px;
	border-radius: 5px;
	border: 1px solid lightgray;
	padding: 10px;
	resize: vertical;
}

.commentTable{
	table-layout: fixed;
	word-wrap: break-word;
}

.commentTable td{
	padding: 1px 1px;
	border-top: 1px solid lightgray;
}


.subscriberTable td{
	padding: 1px 1px;
}

.buttonConnectedGroup{
	display: flex;
}

.buttonConnectedGroup .button{
	border-radius: 0;
	border-right: 1px solid lightgray;
	padding: 7px 10px;
}

.buttonConnectedGroup .button:first-child{
	border-radius: 5px 0 0 5px;

}

.buttonConnectedGroup .button:last-child{
	border-radius: 0 5px 5px 0;
	border-right: none;
}

.weekTimeTable{
	/*width: 100%;*/

}

.weekTimeTable th{
	border-bottom: none;
	font-weight: 300;
	font-size: 1.1rem;
	color: lightgrey;
	padding: 0 5px;
	width: 150px;
	text-transform: uppercase;
}

.weekTimeTable td{
	padding: 0 5px;
}

.weekTimeTable th.today{
	font-size: 1.5rem;
}

.weekTimeTable td.today{
	font-size: 3rem;
	font-weight: 900;
}

#weekTime{
	grid-area: weekTime;
}

#weekTime .viewerContent{
	padding: 10px 5px;
}

.weekTimeTable2{
	/*display: flex;
	justify-content: space-evenly;
	align-items: center;
	width: 100%; */
	width: 100%;
	display: grid;
	grid-template-columns: 50px repeat(5,1fr);
	justify-items: stretch;
}

.weekTimeTable2 .day{
	display: flex;
	align-items: center;
	/*justify-content: center;*/
	min-height: 60px;
	/*width: 100%;*/
	cursor: pointer;
}



.weekTimeTable2 .spacer{
	height: 20px;
	background-color: lightgray;
	width: 1px;
	/*margin: 0 40px;*/
}

.weekTimeTable2 .day .label{
	text-transform: uppercase;
	font-size: 1.1rem;
	color: lightgray;
	transition: .25s;
}

.weekTimeTable2 .day .hours{
	font-size: 16px;
	transition: .25s;
	line-height: 13px;
	color: grey;
}


.weekTimeTable2 .day.active .label{
	text-transform: uppercase;
	font-size: 1.5rem;
	color: lightgray;
}

.weekTimeTable2 .day.active .hours{
	font-size: 30px;
	font-weight: 900;
	line-height: 23px;
	color: #111;
}

.weekTimeTable2 .day.active .today{
	margin-bottom: -2px;
	font-size: .8rem;
}

.weekTimeTable2 .day.today .label{
	color: #ff9800;
}

.weekTimeTable2 .day.today .hours{
	color: #111;
}

.weekTimeTable2 .day .events div{
	/*height: 10px;*/
	font-size: 10px;
	color: #ff7777;
	transition: .25s;
}

.weekTimeTable2 .day .events div:hover{
	color: red;
	cursor: pointer;
}

.weekTimeTable2GlobalEvents{
	width: 100%;
	display: grid;
	grid-template-columns: 50px repeat(5,1fr);
	justify-items: stretch;
	display: none;
	margin-top: 20px;
	grid-row-gap: 10px;
}

.weekTimeTable2GlobalEvents .events div{
	/*height: 10px;*/
	font-size: 10px;
	transition: .25s;
	cursor: pointer;
}

.weekTimeTable2GlobalEvents .events{
	/*width: 100px;*/
}

.weekTimeTable2GlobalEvents .name{
	color: lightgray;
	font-size: 10px;
	align-self: center;
	text-align: center;
}

.globalCalendarSwitch{
	/*position: absolute;*/
	/*margin-left: 15px;*/
	color: #aaa;
	font-size: 20px;
	cursor: pointer;
	align-self: center;
	text-align: center;
}

.globalCalendarSwitch .icon{
	transition: .25s;
}

.globalCalendarSwitch:hover .icon{
	color: #111;
}

.globalCalendarSwitch .iconTimes{
	display: none;
}

.weekPicker{
	display: flex;
	justify-content: space-between;
	align-items: center;
	/*    width: 200px;
	margin-left: 20px;*/
	height: 100%;

}

.weekPicker .week{
	font-size: 2rem;
	font-weight: 900;
}

.weekPicker .week.smallred{
	font-size: 1.4rem;
	color: #F44336;
}

.weekPicker .week.red{
	color: #F44336;
}

#masterSearch{
	grid-area: masterSearch;
}

#masterSearchInput{
	width: 100%;
	height: 100%;
}

.masterSearchGroup{
	height: 100%;
}

.masterSearchGroup .fas{
	padding:20px;
	margin-left: -65px;
	font-size: 2rem;
	color: gray;
}

.masterSearchGroup .fa-times{
	padding:20px;
	margin-left: -60px;
	font-size: 2rem;
	color: black;
}


#masterSearchInput{
	height: 100%;
	width: 100%;
	font-size: 2.3rem;
	padding: 20px 0 20px 20px;
	border-radius: 10px;
	border: unset;
}

.button{
	width: 100%;
	padding: 10px 10px;
	background: #eee;
	border-radius: 5px;
	color: #3a3a3a;
	/* font-weight: 700; */
	text-align: center;
	transition: .25s;
}

.button.gray:hover{
	background-color: #ddd;
}

.button.gray{
	color: #aaa;
	background-color: #f5f5f5;
}

.button.gray .fas{
	color: #aaa;
}

.button.small{
	padding: 2px 10px;
}

.button .fas{
	color: #3a3a3a;
	margin-right: 5px;
}

.button .far{
	color: #3a3a3a;
	margin-right: 5px;
}

.button.withicon, .button.withiconcenter{
	display: flex;
	align-items: center;
}

.button.withiconcenter{
	justify-content: center;
}

.button.withicon .fas, .button.withicon .far{
	margin: 0 20px 0 10px;
	width: 15px;
}

.button.withiconcenter .fas, .button.withiconcenter .far{
	margin: 0 10px 0 0;
	width: 15px;
}

.button.red{
	background: #F44336;
	color: white;
}

.button.red:hover{
	background: #E57373;
	color: white;
}

.buttonIcon.red{
	color: #F44336;
}

.buttonIcon.red:hover{
	color: #E57373;
}

.button.green{
	background: #4CAF50;
	color: white;
}

.button.green:hover{
	background: #66BB6A;
	color: white;
}

.button.blue{
	background: #2196F3;
	color: white;
}

.button.blue:hover{
	background: #42A5F5;
	color: white;
}

.button:hover, .buttonSmall:hover{
	background-color: #ccc;
	cursor: pointer;
} 

.button.selected{
	background-color: #ff9800;
	cursor: default;
	color: white;
}

.button.yellow{
	color: #111;
	background: #ffeb3b;
}

.button.yellow:hover{
	background: #fff176;
}

.button.orange, .buttonSmall.orange{
	background: #ff9800;
	color: white;
}

.button.orange:hover, .buttonSmall.orange:hover{
	background: #ffac33;
	color: white;
}				

.button.withicon.red .fas, .button.withicon.red .far,
.button.withicon.green .fas, .button.withicon.green .far,
.button.withicon.blue .fas, .button.withicon.blue .far{
	color: white;
}

.button.disabled{
	color: gray;
	background: lightgray;
	cursor: default;
}

.button.disabled:hover{
	color: gray;
	background: lightgray;
}

.buttonSmall{
	min-width: 100px;
	padding: 5px 10px;
	background: #555;
	border-radius: 5px;
	color: white;
	font-weight: 700;
	text-align: center;
	transition: .25s;
}

.buttonIcon{
	width: 30px;
	height: 30px;
	display: flex; 
	align-items: center;
	color: #aaa;
	cursor: pointer;
	transition: .25s;
	justify-content: center;
}

.buttonIcon:hover{
	color: #111;
}

.badge{
	font-size: 13px;
	border-radius: 20px;
	padding: 0 8px;
	/*height: 20px;*/
	line-height: 20px;
	display: inline-block;
	color: #fff;
	background: #8e8e93;
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
}

.badge.blue{
	background-color: #2196f3;
}

.badge.red{
	background-color: #F44336;
}

.badge.orange{
	background-color: #ff9800;
}

.badge.green{
	background-color: #4caf50;
}

.clickable-row:hover{
	cursor: pointer;
	background-color: #eee;
}

#emailQueue .topButtons{
	display: flex;
	justify-content: space-between;
}

#emailQueue .topButtons .button{
	margin-left: 20px;
}


.emailExtendablePanel{
	display: none;
}

.emailrow{
	cursor: pointer;
}

.emailrow.selected{
	background-color: #ffefd9;
	border-top: 1px solid #ff9800;
	color: #111;
}

.emailExtendablePanel.selected{
	border-bottom: 1px solid #ff9800;
}

.colsizer td{
	padding: 0;
}

.daySheetPopup{
	position: absolute;
    background-color: white;
    box-shadow: 0 0 10px grey;
    padding: 20px;
    border-radius: 5px;
    width: 400px;
    top: 180px;
    z-index: 998;
    display: flex;
    flex-direction: column;
}

.daySheetPopup__project{
	color: #ff9800;
    text-transform: uppercase;
}

.daySheetPopup__task{
	    display: grid;
    margin-left: 10px;
    grid-column-gap: 20px;
    grid-auto-flow: column;
    justify-content: space-between;
}

@media (min-width: 800px){
	./*container {
		width: 1000px;

		}*/
		#masterGrid{
			grid-template-columns: 27fr 10fr;
			grid-template-areas: 	"weekTime masterSearch"
			"content panelsWide"
			"content panelsWide"
			"wide wide";
		}
		#panelGrid{
			display: block;
			grid-area: panelsWide;
		}
		#panelGrid .viewerContent{
			margin-bottom: 20px;
		}
		#masterSearch{
			display:block;
		}
	}
	/*	@media (min-width: 1300px){
		.container{
			width: 1200px;
		}
	}
	@media (min-width: 1400px){
		.container{
			width: 1300px;
		}
		}*/
		/*	@media (min-width: 1500px){
			.container{
				width: 1400px;
			}
		}
		*/
		@media (min-width: 1650px){
			.container{
				width: 1550px;
			}
		}

		@media (min-width: 1800px){
			.container{
				width: 1700px;
			}
		}


