html {
	height: 100%;
}
Body {
	height: 100%;
	font-size: 9pt;
}
/*Login*/

.main {
	max-width: 520px;
	margin: 0 auto;
	margin-bottom: 30px;
	
}
.login-or {
	position: relative;
	font-size: 18px;
	color: #aaa;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.span-or {
	display: block;
	position: absolute;
	left: 50%;
	top: -2px;
	margin-left: -25px;
	background-color: #fff;
	width: 50px;
	text-align: center;
}
.hr-or {
	background-color: #cdcdcd;
	height: 1px;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}
h3 {
	text-align: center;
	line-height: 300%;
}
.bgLogin {
	background: url(../img/bgLogin-form.png) no-repeat;
	background-position: -215px -126px;
}
h1 {
	font-size: 12px;
	font-weight: normal;
}
a, a:hover {
	color: #084181;
	text-decoration: none;
}
/*Padding*/

.padding0 {
	padding: 0;
}
.padding10 {
	padding: 10px;
}
.padding20 {
	padding: 20px;
}
.padding30 {
	padding: 30px;
}
.padding40 {
	padding: 40px;
}
.padding50 {
	padding: 50px;
}
.paddingT10 {
	padding-top: 10px;
}
.paddingRight9 {
	padding-right: 9px;
}
.paddingLeft {
	padding-left: 14px;
}
/*Margin*/
.marginTop {
	margin-top: -60px;
}
.mTop10 {
	margin-top: 10px;
}
.mTop20 {
	margin-top: 20px;
}
.mTop30 {
	margin-top: 30px;
}
.mTop40 {
	margin-top: 40px;
}
.mBot10 {
	margin-bottom: 10px;
}
.mBot20 {
	margin-bottom: 20px;
}
.mBot30 {
	margin-bottom: 30px;
}
.mBot40 {
	margin-bottom: 40px;
}
.mBot50 {
	margin-bottom: 50px;
}
.mTop5{margin-top: 5px;}
/*Form */
.form-group label {
	color: #084181;
	font-size: 14px;
	font-weight: 500
}
.form-control {
	border-bottom: 1px solid #dcdbdb !important;
	border: 0;
	border-radius: 0;
	text-indent: 25px;
}
.input-group-addon {
	padding: 0 12px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: #555;
	/* text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;*/
	border-radius: 4px;
}
.input-group-addon, .input-group-btn {
	width: 1%;
	white-space: nowrap;
	vertical-align: middle;
}
.input-group-addon, .input-group-btn, .input-group .form-control {
	display: table-cell;
}
.input-group .form-control {
	position: relative;
	z-index: 2;
	float: left;
	width: 100%;
	margin-bottom: 0;
}
/*Font Css */

.fa-user, .fa-eye {
	position: absolute;
	top: 10px;
	color: #cccbcc;
	font-size: 20px;
}
.fa-arrow-circle-o-left, .fa-arrow-circle-o-right {
	font-size: 19px;
	padding: 0 7px;
}

.fa-plus-circle{ font-size: 14px;     padding-right: 5px;}

/*button */
.btn-primary {
	background: #084181;
	border-radius: 25px;
	border: 0;
	width: 45%;
	text-align: center;
	text-transform: uppercase;
	font-weight: 400;
	padding: 10px 0;
}


/*animation */

@keyframes spin {
 100% {
transform: rotate(1turn);
}
}
@keyframes animation-name {
 keyframes-selector: {
css styles
}
 keyframes-selector: {
css styles
}
}
@-webkit-keyframes swinging {
 0% {
-webkit-transform: rotate(10deg);
}
 50% {
-webkit-transform: rotate(-5deg)
}
 100% {
-webkit-transform: rotate(10deg);
}
}
 @keyframes swinging {
 0% {
transform: rotate(10deg);
}
 50% {
transform: rotate(-5deg)
}
 100% {
transform: rotate(10deg);
}
}
.swingimage {
	-webkit-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-animation: swinging 2.5s ease-in-out forwards infinite;
	animation: swinging 2.5s ease-in-out forwards infinite;/*float: left;*/
}
.container-box {
	width: 320px;
	margin: 0 auto;
}
.container-box img:hover {
}
@keyframes circle {
 from {
transform:rotate(0deg);
}
 to {
transform:rotate(360deg);
}
}
 @keyframes inner-circle {
 from {
transform:rotate(0deg);
}
 to {
transform:rotate(-360deg);
}
}
.scaling {
	float: left;
	-webkit-animation-name: scalex;
	-webkit-animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
	-moz-animation-name: scale;
	-moz-animation-duration: 3s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: ease-in-out;
}
 @-webkit-keyframes scalex {
 from {
-webkit-transform: scale(0.9);
}
 65% {
-webkit-transform: scale(1.0);
}
 to {
-webkit-transform: scale(0.9);
}
}
 @-moz-keyframes scale {
 from {
-moz-transform: scale(0.9);
}
 65% {
-moz-transform: scale(1.0);
}
 to {
-moz-transform: scale(0.9);
}
}
div.container-box-img {
	width: 100px;
	height: 100px;
	margin: 20px auto 0;
	color: orange;
	font-size: 100px;
	line-height: 1;
	animation: circle 5s linear infinite;
	transform-origin: 50% 200px;
}
div.container-box-img > div {
	animation: inner-circle 5s linear infinite;
}

/*media Query */

@media only screen and (width:320px)
{
	.col-lg-12 { padding: 0 !important; margin-top:20px;}
	.col-12{ padding: 0 !important}
	.rounded{width:100%;}
	#location p, #location_out p{font-size: 11px !important;}
	.box{padding: 0 !important}
	.paddingLeft{padding-left: 4px;}
}
@media only screen and (width:768px){
header.masthead .intro-text{padding-top:20px !important; padding-bottom: 20px!important;}
	header.masthead .intro-text .intro-heading{ margin-bottom: 10px !important}
	header.masthead {
    height: 295px !important;
}
}
@media only screen and (width:812px){
header.masthead .intro-text{padding-top:15px !important; padding-bottom: 20px!important;}
	header.masthead .intro-text .intro-heading{ margin-bottom: 10px !important}
	header.masthead {
    height: 245px !important;
}
}
@media only screen and (min-width:1000px)
{header.masthead .intro-text {
    padding-top: 97px !important;
    padding-bottom: 0 !important;
}}

@media only screen and (min-width: 767px){
	.nav-item .fa-clock-o, .fa-search, .fa-line-chart, .fa-pencil-square-o, .fa-sign-out{ font-size: 16pt;}

	header.masthead .intro-text .intro-lead-in{font-size: 23px; font-style: normal; margin-bottom: 0}
	header.masthead .intro-text .intro-heading{font-size: 20px; line-height:0; font-weight: 400; padding-top:10px; }
	header.masthead{height: 370px;}
	.p-lg-5{padding: 7px !important}
	#mainNav{padding: 0 !important}
	#mainNav .navbar-nav .nav-item .nav-link{font-size: 12px !important;}
	.container{width:570px;}
}


@media only screen and (min-width:1000px) {
footer {
	position: fixed;
	left: 0px;
	bottom: 0px;
	height: 51px;
	width: 100%;
}
}

@media only screen and (width:320px) {
.paddingRight9 {
	padding-right: 0;
}
}

@media only screen and (max-device-width:768px) 
{
    .modal {
    background: #084181;
}
header.masthead {
	height: 252px;
}
.nav-item .fa-clock-o, .fa-search, .fa-line-chart, .fa-pencil-square-o, .fa-sign-out {
	font-size: 33pt;
	margin-bottom: 10px;
}
}
/*nav */

.fixed-top {
	text-align: center;
	font-size: 12pt; position: absolute !important; right: 0;
}
.navbar {
	padding: 0;
}
/*header */
.count {
	color: #a7d0ff;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
}
.col-4 span {
	color: #fff;
	font-size: 16px;
}
.rounded {
	border-radius: 50% !important;
}
/*User*/
h1 {
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
	padding: 0;
	margin: 10px 0 0;
}
.col-10 span {
	color: #fff;
}
span.email {
	color: #a7d0ff;
	font-size: 11px;
}
.status_user {
	
	width: 15px;
	height: 15px;
}
.col-3 .position-absolute {
	right: 5px;
	bottom:5px
}
.col-3 {
	width: 77px;
}
.col_half {
	width: 49%;
}
.col_third {
	width: 32%;
}
.col_fourth {
	width: 23.5%;
}
.col_fifth {
	width: 18.4%;
}
.col_sixth {
	width: 15%;
}
.col_three_fourth {
	width: 74.5%;
}
.col_twothird {
	width: 66%;
}
.col_half, .col_third, .col_twothird, .col_fourth, .col_three_fourth, .col_fifth {
	position: relative;
	display: inline;
	display: inline-block;
	float: left;
	margin-right: 2%;
	margin-bottom: 20px;
}
.end {
	margin-right: 0 !important;
}
/* Column Grids End */

.wrapper {
	width: 980px;
	margin: 30px auto;
	position: relative;
}
.counter {
	background-color: #ffffff;
	padding: 20px 0;
	border-radius: 5px;
}
.count-title {
	font-size: 20px;
	font-weight: normal;
	margin-top: 10px;
	margin-bottom: 0;
	text-align: center;
}
.count-text {
	font-size: 13px;
	font-weight: normal;
	margin-top: 10px;
	margin-bottom: 0;
	text-align: center;
}
.fa-2x {
	margin: 0 auto;
	float: none;
	display: table;
	color: #4ad1e5;
}
/*button*/

.btn-sm{ background:none; color:#fff; font-size:12px; font-weight:400; border:1px solid #e4e4e4}
.text-secondary{color:#bababa !important;}
.btn-light{    border: 1px solid #e4e4e4;
    color: #616161;
    font-size: 12px;
    line-height: 28px; width:135px; text-align: center;  margin-right: 5px;
   }
.iconStart{ background:#f6f6f6 url(../img/icon_break.png) no-repeat; background-position: 11px 7px; text-indent: 29px;}
.iconEnd{ background:#f6f6f6 url(../img/icon_break_end.png) no-repeat;     background-position: 13px 11px;  }
.iconStart_active{ background:#fff url(../img/icon_break_active.png) no-repeat; background-position: 11px 7px; text-indent: 29px;}
.iconEnd_active{ background:#fff url(../img/icon_break_end_active.png) no-repeat;     background-position: 13px 11px;  }
.Date{ color:#616161; font-size:24px;     line-height: 17px; margin-top: 8px;}
.month{font-size:11px; font-weight: 800;}
.borderVertical{ background: url(../img/border-img.png) no-repeat;  height: 40px;     width: 10px; position: relative; margin-left:10px;}
.status_in{top:0px; left:-6px;}
.status_out{top:36px; left:-4px;}

#location p, #location_out p{padding:0; margin:0; line-height: 14px; color:#369743; font-weight:700; padding-right:5px; font-size: 12px;}
#location p span, #location_out p span{ color:#545454}
#location_out p{color:#f28486;}
#location_out{margin-top:20px;}

.pre-scrollable{max-height:200px !important;}



.borderStatusBusy{ background: #e4323d;
float: left;
width: 100%;
text-align: center;
padding: 4PX 0;
COLOR: #fff;
margin-top: -25px;font-weight:600;}

.borderStatusActive{background: #1f882c;
float: left;
width: 100%;
text-align: center;
padding: 4PX 0;
COLOR: #fff;
margin-top: -25px;font-weight:600;}

.borderStatusOut{background: #e3e3e3;
float: left;
width: 100%;
text-align: center;
padding: 4PX 0;
COLOR: #666;
margin-top: -25px;
font-weight:600;}


.row{ margin-bottom:2%;}  /*15%*/

.get-location
        {
   text-align: CENTER;
    WIDTH: 84%;
    MARGIN-LEFT: 8%;
    padding: 5px 0px 5px 0px;
    color: red;
    font-weight: bold;
        margin-top: 10px;
        }

/* Model Content */

.modal-content {
	background: #084181;
	border-radius: 0 !important;
	text-align: center;
	border: 0 !important;
}
.close:focus, .close:hover {
	color: #fff !important
}
.close {
	color: #fff;
}
textarea {
	overflow: auto;
	resize: vertical;
	border-bottom: 1px solid #ccc !important;
	background: url(../img/chat.png) no-repeat;
	border: 0;
	border-bottom-width: 0px;
	border-bottom-style: none;
	border-bottom-color: currentcolor;
	resize: none;
	color: #fff;
	font-size: 12pt;
	text-indent: 46px;
	width: 90%;
	margin: 20% 0 5%;
}

textarea::placeholder {
  color: #fff;  
}

.modal-body {
	padding: 10px 0 200px 0;
}

 .text-secondary_active{ color:#747474; font-weight:600; cursor:pointer;}
 
 .browsebutton{background-color:transparent;border:1px solid #e6e6e6;color:#959595;cursor:pointer;font-size:11px;margin:1px;padding:2px}
 
 
 .loader {
     border: 4px solid #0d4583;
    border-radius: 50%;
    border-top: 4px solid #f7f7f7;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
    z-index: 2;
       top: 22px;
    left: 39%;
 }
 
 .opacity
 {
     opacity : 0.5;
 }  

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



img.position{position:relative;}

#imgUser img.user{ max-width:77px; width:100%; height:77px; background:#fff}


/* Forgot password css added */
h2{font-size:15pt; padding:20px 0 10px 0; margin:0; font-weight:600; color: #000}

.fa-at {
	position: absolute;
	top: 5px;
	color: #cccbcc;
	font-size: 25px;
	left:20px;

}

.fontSize{ font-size:14px;  padding-bottom:10px;}
.paddingT20 {
	padding-top: 20px !important;
}

.paddingTB {
	padding: 30px 0;
}


/*timesheet */
.timesheet {
	margin-bottom: 10px;
}
.timesheet h2 {
	color: #515151;
	font-size: 18px;
	font-weight: 400;
	padding: 15px 0 5px;
	margin: 0;
}
.timesheet span {
	font-size: 14px;
	coloe: #000000;
	font-weight: 400
}
.col-4 span.text-sm-left {
	font-size: 12px !important;
}
.col-6 span {
	color: #fff
}
header.timesheetH {
	height: 100px !important;
}

textarea {
	overflow: auto;
	resize: vertical;
	border-bottom: 1px solid #ccc !important;
	background: url(../img/chat.png) no-repeat;
	border: 0;
	border-bottom-width: 0px;
	border-bottom-style: none;
	border-bottom-color: currentcolor;
	resize: none;
	color: #fff;
	font-size: 12pt;
	text-indent: 46px;
	width: 90%;
	margin: 20% 0 5%;
}

.paddingBT0 {
	padding-bottom: 0 !important;
}
.paddingLR {
	padding: 0 20px;
}

@media only screen and (max-width: 500px) {
footer {
	padding: 10px;
	text-align: center;
	background: url(../img/fotter.png) no-repeat center;
	height: 51px;
	position: fixed !important;
	bottom: 0!important;
	width: 100%;
}
}
/*timesheet */



/*timesheet */

.calendar {
	background: #f2f2f2;
	border-top: 1px solid #b6b6b6;
}
.borderVerticalLong {
	background: url(../img/borderLong.png) no-repeat;
	height: 138px;
}
.borderVerticalLong p {
	margin: 0;
	line-height: 1;
}
#location {
	/*margin-bottom: 10px;*/
    width: 85%;
    float: left;
    text-align: left;
}
.status_out_time {
	bottom: 0;
	left: -6px;
}
/*map */
#map_container.container {
	width: 100%;
	margin: 0 auto;
	margin-top: 50px;
}
#map_container {
	position: relative;
	    margin-bottom: 4px;
    padding-top: 18px;
}
#map {
	height: 0;
	overflow: hidden;
	padding-bottom: 22.25%;
	padding-top: 30px;
	position: relative;
}
.paddingTB {
	padding: 30px 0;
}
.paddingR0 {
	padding-right: 0 !important
}
/**
 * Zabuto Calendar
 */

div.zabuto_calendar {
	margin: 0;
	padding: 0;
}
div.zabuto_calendar .table {
	width: 100%;
	margin: 0;
	padding: 0;
}
div.zabuto_calendar .table th, div.zabuto_calendar .table td {
	padding: 4px 2px;
	text-align: center;
}
div.zabuto_calendar .table tr th, div.zabuto_calendar .table tr td {
/* background-color: #ffffff;*/
}
div.zabuto_calendar .table tr.calendar-month-header th {
/* background-color: #fafafa;*/
}
div.zabuto_calendar .table tr.calendar-month-header th span {
	cursor: pointer;
	display: inline-block;
	padding-bottom: 10px;
	color: #084181;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600
}
div.zabuto_calendar .table tr.calendar-dow-header th {
	text-transform: uppercase;
	color: #848484;
}
div.zabuto_calendar .table tr:last-child {
}
div.zabuto_calendar .table tr.calendar-month-header th {
	padding-top: 12px;
	padding-bottom: 4px;
}
div.zabuto_calendar .table-bordered tr.calendar-month-header th {
	border-left: 0;
	border-right: 0;
}
div.zabuto_calendar .table-bordered tr.calendar-month-header th:first-child {
	border-left: 1px solid #dddddd;
}
div.zabuto_calendar div.calendar-month-navigation {
	cursor: pointer;
	margin: 0;
	padding: 0;
	padding-top: 5px;
}
div.zabuto_calendar tr.calendar-dow-header th, div.zabuto_calendar tr.calendar-dow td {
	width: 14%;
}
div.zabuto_calendar .table tr td div.day {
	margin: 0;
	padding-top: 7px;
	padding-bottom: 7px;
}
/* actions and events */
div.zabuto_calendar .table tr td.event div.day, div.zabuto_calendar ul.legend li.event {
	background-color: #fff0c3;
}
div.zabuto_calendar .table tr td.dow-clickable, div.zabuto_calendar .table tr td.event-clickable {
	cursor: pointer;
}
/* badge */
div.zabuto_calendar .badge-today, div.zabuto_calendar div.legend span.badge-today {
	background-color: #357ebd;
	color: #ffffff;
	text-shadow: none;
}
div.zabuto_calendar .badge-event, div.zabuto_calendar div.legend span.badge-event {
	background-color: #ff9b08;
	color: #ffffff;
	text-shadow: none;
}
div.zabuto_calendar .badge-event {
	font-size: 0.95em;
	padding-left: 8px;
	padding-right: 8px;
	padding-bottom: 4px;
}
/* legend */
div.zabuto_calendar div.legend {
	margin-top: 5px;
	text-align: right;
	display: none;
}
div.zabuto_calendar div.legend span {
	color: #999999;
	font-size: 10px;
	font-weight: normal;
}
div.zabuto_calendar div.legend span.legend-text:after, div.zabuto_calendar div.legend span.legend-block:after, div.zabuto_calendar div.legend span.legend-list:after, div.zabuto_calendar div.legend span.legend-spacer:after {
	content: ' ';
}
div.zabuto_calendar div.legend span.legend-spacer {
	padding-left: 25px;
}
div.zabuto_calendar ul.legend > span {
	padding-left: 2px;
}
div.zabuto_calendar ul.legend {
	display: inline-block;
	list-style: none outside none;
	margin: 0;
	padding: 0;
}
div.zabuto_calendar ul.legend li {
	display: inline-block;
	height: 11px;
	width: 11px;
	margin-left: 5px;
}
div.zabuto_calendar ul.legend div.zabuto_calendar ul.legend li:first-child {
	margin-left: 7px;
}
div.zabuto_calendar ul.legend li:last-child {
	margin-right: 5px;
}
div.zabuto_calendar div.legend span.badge {
	font-size: 0.9em;
	border-radius: 5px 5px 5px 5px;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 2px;
	padding-bottom: 3px;
}

.popup-fields label{text-align:left;color: #fff;float: left;}
.popup-fields label:after{content: "*"; color: red;}
.popup-fields .form-control{text-indent:0 !important}
.height .modal-body{ padding:0 !important}
.height .modal-header, .height .modal-footer{border:none !important}
.question-modal {background: transparent;}

/* responsive */
@media (max-width: 979px) {
div.zabuto_calendar .table th,  div.zabuto_calendar .table td {
	padding: 2px 1px;
}
}
.zabuto_calendar table td, table th {
	border: none !important;    text-align: center; font-size: 14px;
}
.datepaginator {
	font-size: 12px;
	height: 50px
}
.datepaginator-sm {
	font-size: 10px;
	height: 40px
}
.datepaginator-lg {
	font-size: 14px;
	height: 80px
}
.pagination {
	margin: 0;
	padding: 0;
	white-space: nowrap
}
.dp-nav {
	height: 60px;
	padding: 22px 0!important;
	width: 20px;
	margin: 0!important;
	text-align: center
}
.dp-nav-square-edges {
	border-radius: 0!important
}
.dp-item {
	height: 60px;
	padding:10px;
	width: 35px;
	margin: 0!important;
	border-left-style: hidden!important;
	text-align: center
}
.dp-item-sm {
	height: 40px!important;
	padding: 5px!important
}
.dp-item-lg {
	height: 80px!important;
	padding: 22px 0!important
}
.dp-nav-sm {
	height: 40px!important;
	padding: 11px 0!important
}
.dp-nav-lg {
	height: 80px!important;
	padding: 33px 0!important
}
a.dp-nav-right {
	border-left-style: hidden!important
}
.dp-divider {
	/*border-left: 2px solid #ddd!important*/
}
.dp-off {
	/*background-color: #F0F0F0!important*/
}
.dp-no-select {
	color: #ccc!important;
	
}
.dp-no-select:hover {
	
}
.dp-today {
	
	color: #187325!important
}
.dp-selected {
	
	color: #0d4583!important;
	width: 140px; font-weight: 700 !important;
}
#dp-calendar {
	padding: 3px 5px 0 0!important;
	margin-right: 14px;
	position: absolute;
	right: 0;
	top: 10
}


.pagination {
	padding-left: 3px;
	    margin: 5px 0;
	border-radius: 4px
}
.pagination>li {
	display: inline
}
.pagination>li>a, .pagination>li>span {
	position: relative;
	float: left;
	padding: 6px 0;
	text-transform: uppercase;
	text-decoration: none;
	color: #bdbdbd; font-size: 11px;
	/*background-color: #fff;
	border: 1px solid #ddd; line-height: 1.42857;*/
	margin-left: -1px;
	font-weight: 500;
}
.pagination>li:first-child>a, .pagination>li:first-child>span {
	margin-left: 0;
	border-bottom-left-radius: 4px;
	border-top-left-radius: 4px;  background: url(../img/arrowLeft.png) no-repeat;    background-position: 1px 12px;
}
.pagination>li:last-child>a, .pagination>li:last-child>span {
	border-bottom-right-radius: 4px;
	border-top-right-radius: 4px; background: url(../img/arrowRight.png) no-repeat;    background-position: 1px 12px;
}
.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
	z-index: 2;
	color: #23527c;

	border-color: #ddd
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
	z-index: 3;
	color: #fff;
	background-color: #337ab7;
	border-color: #337ab7;
	cursor: default
}
.pagination>.disabled>a, .pagination>.disabled>a:focus, .pagination>.disabled>a:hover, .pagination>.disabled>span, .pagination>.disabled>span:focus, .pagination>.disabled>span:hover {
	color: #777;
	background-color: #fff;
	border-color: #ddd;
	cursor: not-allowed
}
.pagination-lg>li>a, .pagination-lg>li>span {
	padding: 10px 16px;
	font-size: 18px;
	line-height: 1.33333
}
.pagination-lg>li:first-child>a, .pagination-lg>li:first-child>span {
	border-bottom-left-radius: 6px;
	border-top-left-radius: 6px
}
.pagination-lg>li:last-child>a, .pagination-lg>li:last-child>span {
	border-bottom-right-radius: 6px;
	border-top-right-radius: 6px
}
.pagination-sm>li>a, .pagination-sm>li>span {
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1.5
}
.badge, .label {
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	text-align: center
}
.pagination-sm>li:first-child>a, .pagination-sm>li:first-child>span {
	border-bottom-left-radius: 3px;
	border-top-left-radius: 3px
}
.pagination-sm>li:last-child>a, .pagination-sm>li:last-child>span { 
	border-bottom-right-radius: 3px;
	border-top-right-radius: 3px
}
.dropdown-menu{ font-size:12px; width:240px;}
.datepicker-days table td{ padding:10px;}
#imgUser img.user{ max-width:77px; width:100%; height:77px; background:#fff}

/* css added */
h2{font-size:15pt; padding:20px 0 10px 0; margin:0; font-weight:600; color: #000}

.fa-at {
	position: absolute;
	top: 5px;
	color: #cccbcc;
	font-size: 25px;
	left:20px;

}

.fontSize{ font-size:14px;  padding-bottom:10px;}


.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 1; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: #0d4583; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}

/* The navigation menu links */
.sidenav a {
    padding: 10px 8px;
    text-decoration: none;
    font-size: 15px;
    color: #fff !important;
    display: block;
    transition: 0.3s;
    line-height: normal;
}
	
.sidenav a i {
    font-size: 16px;
    width: 35px;
    text-align: center;
    float: left;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #f9f9f9;
	background: #0d4583 !important; opacity: 0.60
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.white {
 color: #fff;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */


/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 15px;}
}
.leftAlign{text-align:left; margin-left:15px; font-size:20pt;     padding-top: 7px; cursor: pointer;}


#mainNav{ background:#0d4583 !important;}