

html {
	font-family: "Lato", Arial, sans-serif !important;
	font-size: 13px !important;
	color: #212121;
	margin: 0;
	padding: 0;
	text-decoration: none;
	width: 100% !important;
	display: flex;
	height: 100%;
	flex-direction: column;
}

body {
	font-family: "Lato", Arial, sans-serif !important;
	font-size: 13px !important;
	color: #212121;
	margin: 0;
	padding: 0;
	text-decoration: none;
	width: 100% !important;
	display: flex;
	height: 100%;
	flex-direction: column;
	overflow-y: scroll;
}

main {
	flex: 1 0 auto;
}

a {
	text-decoration: none !important;
}

/* Header */
.scocareLogoDiv {
	width: 116px !important;
	height: 53px !important;
	margin-left: -1px;
	background: url(../images/scocare-logo.png) transparent 0 14px no-repeat;
}

.scocareHeader {
	width: 100%;
	background-color: #0461BE !important;
}

.scocareHeader .navbar{
	padding-top: 0;
	padding-bottom: 0;
}

.navbar li {
	margin-left: 15px;
}

.navbar li a {
	font-size: 15px;
	color: #FFFFFF !important;
}

.navbar li a:hover,
.navbar li a:focus {
	background-color: transparent !important;
	color: #FFFFFF;
}

#collapsibleNavbar {
	justify-content: flex-end;
}

@media (min-width: 768px) {
	.scocareHeader {
		height: 53px;
	}
}

@media (max-width: 768px) {
	.menuBtn {
		border: 0;
	}

	.menuBtn:focus {
		outline: 0 !important;
	}

	.menuBtnIcon {
		font-size: 24px;
		color: #FFFFFF;
	}

	.navbar-nav {
		margin-top: 5px;
	}

	.navbar li {
		margin-top: 10px;
		margin-left: 0;
	}
}

/********************/

/* Footer */
.page-footer {
	font-size: 14px;
	color: #FFFFFF;
	background-color: #0461BE !important;
	width: 100%;
	height: 30px;
	padding: 5px;
	text-align: center;
}

/********************/

/* Form */
.form-control:focus{
	outline: none;
	box-shadow:none !important;
	border-color: #80BDFF !important;
}

.formTitle{
	font-size: 20px;
	font-weight: bold;
}

.titleSep {
	height: 20px;
}

.formContainer {
	border: 1px solid #CED4DA;
	padding: 10px 10px 0 10px;
	margin-bottom: 20px;
}

label {
	font-size: 14px;
}

.row {
	margin-left: 0;
	margin-right: 0;
}

.formSep {
	height: 10px;
}

.formSep2 {
	height: 20px;
}

.colSep {
    height: 10px;
    display: none;
}

.dropdown-toggle{
	background-color: #FFFFFF;
	border-color: #CED4DA;
	height: 30px !important;
}

.dropdown-toggle:hover{
	background-color: #FFFFFF;
	outline: 0 !important;
}

.dropdown-toggle:focus{
	background-color: #FFFFFF;
	border-color: #80BDFF !important;
	outline: 0 !important;
}

.bootstrap-select .dropdown-toggle:focus {
	outline: 0 !important;
}

.datepicker-dropdown{
	z-index: 999 !important;
}

.dueDateBtn {
	font-size: 16px !important;
	cursor: pointer;
}

.note-editable p{
	margin: 0 0 !important;
}

.note-editor{
	border: 1px solid #CED4DA !important;
}

.displayRemarkBtn {
	margin-left: 5px;
	font-size: 16px;
	cursor: pointer;
	color: rgb(38,140,228);
}

#remarkDiv {
	display: none;
}

@media (max-width: 992px) {
    .colSep {
        display: block;
    }
}

.hiddenSubmitBtn {
	visibility: hidden;
}

.hiddenAttBtn {
	visibility: hidden;
	width: 0;
}

.resetBtn{
	background-color: #D10000;
	color: #FFFFFF;
}

.btn:focus,
.btn:active {
	outline: none !important;
	box-shadow: none;
}

.submitBtn{
	background-color: rgb(38,140,228);
	color: #FFFFFF;
}

.resetBtn:hover,
.submitBtn:hover {
	color: #FFFFFF;
}

.whiteBg{
	background-color: #FFFFFF !important;
}
/********************/

/* Attachments */
#attachmentsTable thead td {
	border-bottom-width: 1px;
}

.table-bordered td {
	border: 1px solid #CED4DA;
}

.attLabel {
    font-size: 16px;
}

.attBtn{
	color: rgb(38,140,228);
	cursor: pointer;
}

.deleteAttIcon{
	color: #D10000;
	font-size: 16px;
}

.tmpFileName{
	margin-left: 20px;
}

.fileSize{
	color: #D10000;
	font-size: 12px;
}
/********************/

/* Spinner */
.loader{
	width: 64px;
	height: 64px;
	margin: auto;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	display: none;
}

.loader i{
	font-size: 38px;
}
/********************/

.managedServices,
.clientNoticesContainer{
	color: red;
	-webkit-animation: glowing 1500ms infinite;
	-moz-animation: glowing 1500ms infinite;
	-o-animation: glowing 1500ms infinite;
	animation: glowing 1500ms infinite;
	display: none;
	float: right;
	font-size: 16px;
}

@keyframes glowing {
    0% {
        color: red;
    }
    50% {
        color: #E3E6EA;
    }
    100% {
        color: red;
    }
}

@-webkit-keyframes glowing {
	0% {
		color: red;
    }
	50% {
		color: #E3E6EA;
    }
	100% {
		color: red;
	}
}

@-moz-keyframes glowing {
    0% {
		color: red;
    }
	50% {
		color: #E3E6EA;
    }
	100% {
		color: red;
	}
}

@-o-keyframes glowing {
	0% {
		color: red;
    }
	50% {
		color: #E3E6EA;
    }
	100% {
		color: red;
	}
}

.height-20px {
	height: 20px;
}

.height-50px {
	height: 50px;
}

.display-none{
	display: none;
}

.display-contents{
	display: contents;
}

.valign-middle {
	vertical-align: middle;
}


/* Time Entry */
@media (max-width: 575px){
	.dropdownContainerWidth{
		width: 40%;
	}
}
/*************/

/* Modal */
.modal-header {
	height: 42px !important;
	padding: 11px 1rem !important;
	width: 99.95% !important;
}

.modal-title {
	font-size: 14px;
}

.modal-title i {
	margin-right: 10px; 
	font-size:16px; 
	color:#3498DB;
}

.closeModal{
	padding: 10px 1rem !important;
	margin: -1rem -1rem -1rem auto;
	color: red !important;
	font-size: 29px !important;
	opacity: 1 !important;
}

.closeModal:hover{
	color: red !important;
}

.closeModal:focus {
	outline: 0 !important;
}

.errorModalBody,
.deleteFileModalBody{
	font-size: 14px;
}

.scocareStyleOutlineBtnBlue,
.scocareStyleOutlineBtnBlue:hover {
   	color: rgb(38, 140, 228) !important;
    border-color: rgb(38, 140, 228) !important;
}

.scocareStyleOutlineBtnRed,
.scocareStyleOutlineBtnRed:hover {
    color: red !important;
    border-color: red !important;
}

.scocareStyleOutlineBtnGreen,
.scocareStyleOutlineBtnGreen:hover {
    border-color: darkgreen !important;
    color: darkgreen !important;
}

.modalCloseBtn,
.modalCloseBtn:hover{
	color: red;
	border-color: red;
}

.deleteTmpFileBtn,
.deleteTmpFileBtn:hover{
	color: red;
	border-color: red;
}
/********************/

.form-control-sm {
	font-size: 13px !important;
	height: 30px !important;
}

.bs-searchbox {
    padding: 0!important;
}
 
.bs-searchboxinput {
    padding: 2px 4px;
    margin-bottom: 2px;
}
 
div.dropdown-menu {
    margin-top: 0px!important;
	padding: 0px!important;
	min-width: auto !important;
	width: 334px !important;
	transform: translate3d(0px, 0px, 0px) !important;
	border: 0 !important;
}

div.dropdown-menu div.inner {
	overflow-x: hidden !important;
}




.container {
	width:80%;
	max-width: 1300px;;
}
.handleRequestDropdownContainer {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.handleRequestDropdownContainer #tck_handle_request {
	width: 200px;
	margin-left: 10px;
}


.supportFormBtnsContainer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.supportFormBtnsContainer p {
	font-size: 17px;
}




.checklistModalBtn {
	margin-left: 10px;
    font-size: 17px;
    color: #2ECC71;
}

.checklistModalBtn:hover {
	color: #2ECC71;
}


.checklistTaskInnerContainer {
	display: flex;
	align-items: center;
}

.checklistTaskBtn {
	font-size: 17px;
}

.checklistSeparator {
	border-bottom: 1px solid #3498DB; 
	margin-top: 10px; 
	width: 250px;
}

.checklistSeparator2 {
	border-bottom: 1px solid #3498DB; 
	margin-top: 17px; 
	width: 250px;
}

.greyChecklistColor,
.greyChecklistColor:hover {
	color: #989898;
}

.greenChecklistColor,
.greenChecklistColor:hover {
	color: #2ECC71;
}

.yellowChecklistColor,
.yellowChecklistColor:hover {
	color: #D4BB00;
}

#checklistModalBody {
	max-height: 450px;
	overflow-y: auto;
}