/* CSS Document */

html {
  min-height: 100%;
  /*min-width: 1010px;*/
}

body {
  background: url('../images/bg.png') no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  color: #2d2d2d;
  font-family: Verdana;
  font-size: 13px;
}

#wrapper {
  margin-left: 15px;
  margin-right: 15px;
}

#pageContainer {
  background-color: #fff;
  box-shadow: 0px 0px 10px 4px rgba(119, 119, 119, 0.75);
  -moz-box-shadow: 0px 0px 10px 4px rgba(119, 119, 119, 0.75);
  -webkit-box-shadow: 0px 0px 10px 4px rgba(119, 119, 119, 0.75);
  border-left: 1px solid #9ed561;
  border-right: 1px solid #9ed561;
  border-bottom: 1px solid #9ed561;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  -moz-border-radius-bottomright: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  padding: 25px;
}

.header-area {
  width: 100%;
  overflow: hidden;
}

.header-left {
  float: left;
  width: 50%;
}

.header-right {
  float: right;
  width: 50%;
  text-align: right;
}

.main-logo {
  max-width: 100%;
  max-height: 80px;
  border: 0;
}

@media only screen and (max-width: 767px) {
  #pageContainer {
    padding: 15px 20px;
  }

  .header-left,
  .header-right {
    float: none;
    width: 100%;
    text-align: left;
  }

  .header-right {
    margin: 15px 0;
  }

  .main-logo {
    max-height: 60px;
  }
}

footer {
  text-align: center;
  margin-top: 10px;
}

a:link,
a:visited,
a:active {
  text-decoration: none;
  color: #4682b1;
}

a:hover,
a:focus {
  color: #48b848;
}

/**********************************
NAV
***********************************/
#menuHolder {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  min-width: 1200px;
}

nav {
  text-align: center;
  padding: 0;
  background: #1f586c;
  margin: 25px -25px 0 -25px;
}

nav ul ul {
  display: none
}

nav ul li:hover>ul {
  display: block
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

nav ul:after {
  content: "";
  clear: both;
  display: block;
}

nav ul li {
  float: left;
}

/*nav ul li:hover,
nav ul li.active,
nav ul li a.selected,
nav ul li.active a.selected {
  background: #a3d26c;
}*/

nav ul li:hover a,
nav ul li a.selected {
  background: #a3d26c;
  color: #1f586c !important;
}

nav ul li a {
  display: block;
  padding: 10px 20px;
  color: #a3d26c !important;
  text-decoration: none;
}

nav ul ul {
  background: #a3d26c;
  padding: 0;
  position: absolute;
  top: 100%;
  border-left: 1px solid #a3d26c;
  border-right: 1px solid #a3d26c;
  border-bottom: 1px solid #a3d26c;
  margin-left: -1px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  -moz-border-radius-bottomright: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-box-shadow: 0px 4px 6px 1px rgba(158, 213, 97, 0.5);
  -moz-box-shadow: 0px 4px 6px rgba(158, 213, 97, 0.5);
  box-shadow: 0px 4px 6px 1px rgba(158, 213, 97, 0.5);
  z-index: 99999999999;
}

nav ul ul li {
  float: none;
  position: relative;
}

nav ul ul li a {
  padding: 5px 40px;
  color: #1f586c !important;
}

nav ul ul li a:hover {
  background: #4db848;
}

nav ul ul ul {
  position: absolute;
  left: 100%;
  top: 0;
}

@media only screen and (max-width: 767px) {
  nav {
    margin: 15px -20px 0 -20px;
  }
}

.messageContainer {
  font-size: 14px;
  background-color: #fff;
  box-shadow: 0px 0px 10px 4px rgba(119, 119, 119, 0.75);
  -moz-box-shadow: 0px 0px 10px 4px rgba(119, 119, 119, 0.75);
  -webkit-box-shadow: 0px 0px 10px 4px rgba(119, 119, 119, 0.75);
  border: 1px solid #9ed561;
  border-radius: 10px;
  -moz-radius: 10px;
  -webkit-border-radius: 10px;
  padding: 50px;
  margin: 0 auto;
  width: 600px;
  position: absolute;
  left: 50%;
  top: 50%;
}

#loginUsername,
#loginPassword,
#newPassword,
#confirmPassword,
#paymentDate,
textarea {
  font-size: 18px;
  border: 1px solid #aaa;
  border-radius: 10px;
  -moz-radius: 10px;
  -webkit-border-radius: 10px;
  padding: 10px;
  width: 300px;
  color: #999;
}

/**********************************
Utilities
***********************************/

.text-sm {
  font-size: 0.85em !important;
}

.text-md {
  font-size: 1em !important;
}

.text-lg {
  font-size: 1.25em !important;
}

.text-xl {
  font-size: 1.5em !important;
}

.text-2xl {
  font-size: 2em !important;
}

.text-semibold {
  font-weight: 600;
}

.text-bold {
  font-weight: 800;
}

.text-primary {
  color: #235F6C;
}

/* Minimum width medium */
.w-min-md {
  min-width: 200px !important;
}

.w-400px {
  width: 400px !important;
}

@media only screen and (max-width: 767px) {
  .w-400px {
    width: 200px !important;
  }
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50% !important;
}

.h-100 {
  height: 100%;
}

.p-0 {
  padding: 0px;
}

.p-3 {
  padding: 1em;
}

.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.px-1 {
  padding-left: 0.25em !important;
  padding-right: 0.25em !important;
}

.px-2 {
  padding-left: 0.5em !important;
  padding-right: 0.5em !important;
}

.px-3 {
  padding-left: 1em !important;
  padding-right: 1em !important;
}

.py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-label {
  margin-top: 23px !important;
}

.m-0 {
  margin: 0px !important;
}

.mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.mt-auto {
  margin-top: auto !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pt-1 {
  padding-top: 0.25em !important;
}

.pt-2 {
  padding-top: 0.5em !important;
}

.pt-3 {
  padding-top: 1em !important;
}

.pt-5 {
  padding-top: 2em !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pl-1 {
  padding-left: 0.25em !important;
}

.pl-3 {
  padding-left: 1em !important;
}

.pl-5 {
  padding-left: 2em !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pr-1 {
  padding-right: 0.25em !important;
}

.pr-2 {
  padding-right: 0.5em !important;
}

.pr-3 {
  padding-right: 1em !important;
}

.pb-3 {
  padding-bottom: 1em !important;
}


.pb-6 {
  padding-bottom: 2em !important;
}

.pb-8 {
  padding-bottom: 3em !important;
}

.pb-10 {
  padding-bottom: 5em !important;
}

.mr-1 {
  margin-right: 0.5em !important;
}

.mr-2 {
  margin-right: 0.75em !important;
}

.mr-3 {
  margin-right: 1em !important;
}

.ml-1 {
  margin-left: 0.5em !important;
}

.ml-2 {
  margin-left: 0.75em !important;
}

.ml-3 {
  margin-left: 1em !important;
}

.my-2 {
  margin-top: 0.75em !important;
  margin-bottom: 0.75em !important;
}

.my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.5em !important;
}

.mb-2 {
  margin-bottom: 0.75em !important;
}

.mb-3 {
  margin-bottom: 1em !important;
}

.mb-4 {
  margin-bottom: 1.25em !important;
}

.mb-5 {
  margin-bottom: 1.5em !important;
}

.mb-6 {
  margin-bottom: 2em !important;
}

.mt-2 {
  margin-top: 0.5em;
}

.mt-2 {
  margin-top: 0.75em;
}

.mt-3 {
  margin-top: 1em;
}

.mt-5 {
  margin-top: 1.5em !important;
}

.mt-6 {
  margin-top: 2em !important;
}

.m-auto {
  margin: auto;
}

.bb-1 {
  border-bottom: #e3e3e3 1px solid;
}

.w-timestamp {
  min-width: 150px;
}

.date.w-sm {
  width: 140px;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-end {
  justify-content: flex-end;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.relative {
  position: relative;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.align-bottom {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-end {
  justify-content: end;
}

.align-end {
  align-items: end;
}

.flex-self-end {
  align-self: flex-end;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center;
}

.btn-blue {
  background-color: #4169E2;
  border: solid 1px #4169E2;
}

.btn-grey {
  background-color: #5b5c60;
  border: solid 1px #5b5c60;
}

.bg-white {
  background-color: #fff;
}

.block {
  display: block;
}

.cursor-hover:hover {
  cursor: pointer;
}

.divided-list li {
  border-bottom: 1px solid #ccc;
}

.divided-list li:last-of-type {
  border-bottom: 0px;
}

.border-radius-0 {
  border-radius: 0px;
}

.none {
  display: none !important;
}

.nodeco {
  text-decoration: none;
  list-style-type: none;
}

.flash {
  animation: flash 2s linear infinite;
}

@keyframes flash {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}



@media only screen and (max-width: 767px) {
  .messageContainer {
    position: static !important;
    top: 0 !important;
    left: 0 !important;
    margin-top: 50px;
    width: 90%;
  }

  .login-logo {
    max-width: 100%;
  }

  #loginUsername,
  #loginPassword,
  #newPassword,
  #confirmPassword {
    width: 100%;
  }
}

@media only screen and (max-width: 420px) {
  .messageContainer {
    padding: 25px;
  }
}


input[type=text] {
  border: 1px solid #aaa;
  border-radius: 4px;
  -moz-radius: 4px;
  -webkit-border-radius: 4px;
  padding: 4px;
  color: #999;
}

#errorMsg {
  color: red;
}



input[type=text]:active,
input[type=text]:focus,
input[type=text]:hover,
textarea:active,
textarea:focus,
textarea:hover {
  outline: 0px !important;
  -webkit-appearance: none;
  /*box-shadow: 0px 0px 2px 2px rgba(119, 119, 119, 0.50);
  -moz-box-shadow: 0px 0px 2px 2px rgba(119, 119, 119, 0.50);
  -webkit-box-shadow: 0px 0px 2px 2px rgba(119, 119, 119, 0.50);
  border-color: #9ed561 !important;*/
}

.form-control:focus {
  border-color: #ccc;
  outline: 0 !important;
  box-shadow: none;
}

textarea {
  resize: none;
}


input[type="text"],
input[type="email"],
textarea {
  background-color: #fff;
  color: #999;
}

.select2-search__field {
  color: #999 !important;
}


.ui-widget-overlay {
  background: #000;
  opacity: .90;
  filter: Alpha(Opacity=90);
}

.ui-widget-content.ui-dialog {
  border-radius: 10px;
  border: 2px solid #4682b1;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  font-weight: normal;
  font-size: 12px;
  box-shadow: 0px 0px 2px 2px rgba(119, 119, 119, 0.50);
  -moz-box-shadow: 0px 0px 2px 2px rgba(119, 119, 119, 0.50);
  -webkit-box-shadow: 0px 0px 2px 2px rgba(119, 119, 119, 0.50);
  overflow: hidden;
}

.ui-dialog-titlebar {
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  margin: -3px;
  background: #4682b1;
  border: none;
  font-weight: normal;
  background-image: url(../images/alertIcon_15.png);
  background-repeat: no-repeat;
  background-position: 5px center;
}

.ui-dialog-title {
  padding-left: 15px;
}

.ui-widget-header .ui-icon {
  background-color: #FF0004;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

.ui-dialog .ui-dialog-titlebar-close {
  background-color: #FF0004;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

.ui-dialog-titlebar-close:before {
  content: "\e014";
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 20%;
  position: absolute;
  left: 20%;
  color: #FFF;
}

#loginEmail {
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 10px;
  width: 370px;
}

#changedOkay,
#mismatchOkay,
#blankPasswordOkay,
#forgotOkay,
#forgotCancel,
#invalidUserOkay,
#buttonUpdatePassword,
#cancelNewReport,
#okayNewReport,
#yesApprove,
#noApprove,
#yesDelete,
#noDelete,
#yesSubmit,
#noSubmit,
#yesOpen,
#noOpen,
#confirmReportApproval,
#cancelReportApproval,
#cancelRename,
#confirmRename,
#confirmReject,
#cancelReject,
#confirmNewJob,
#cancelNewJob,
#confirmNewCostCode,
#cancelNewCostCode,
#confirmNewJobType,
#cancelNewJobType,
#confirmNewSite,
#cancelNewSite,
#confirmNewClient,
#cancelNewClient,
#confirmNewBillTo,
#cancelNewBillTo {
  width: 90px;
  color: #999;
  padding: 10px;
  border: 1px solid #ccc;
  margin-right: 10px;
  background-image: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(0.47, #F2F2F2),
      color-stop(1, #CCCCCC));
  background-image: -o-linear-gradient(bottom, #F2F2F2 47%, #CCCCCC 100%);
  background-image: -moz-linear-gradient(bottom, #F2F2F2 47%, #CCCCCC 100%);
  background-image: -webkit-linear-gradient(bottom, #F2F2F2 47%, #CCCCCC 100%);
  background-image: -ms-linear-gradient(bottom, #F2F2F2 47%, #CCCCCC 100%);
  background-image: linear-gradient(to bottom, #F2F2F2 47%, #CCCCCC 100%);
}

#newReportButton,
#clearDates,
#clearFilters,
#fullScreen,
#refreshData,
#minScreen,
#submitReportButton,
#approveReportButton,
#rejectReportButton,
#closeWindowButton,
#newJobButton,
#newSite,
#newCostCodeButton,
#newBillTo,
#newJobTypeButton,
#newJobBillToButton,
#newJobSiteButton,
#newJobClientButton {
  color: #999;
  padding: 5px;
  border: 1px solid #ccc;
  background-image: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(0.47, #F2F2F2),
      color-stop(1, #CCCCCC));
  background-image: -o-linear-gradient(bottom, #F2F2F2 47%, #CCCCCC 100%);
  background-image: -moz-linear-gradient(bottom, #F2F2F2 47%, #CCCCCC 100%);
  background-image: -webkit-linear-gradient(bottom, #F2F2F2 47%, #CCCCCC 100%);
  background-image: -ms-linear-gradient(bottom, #F2F2F2 47%, #CCCCCC 100%);
  background-image: linear-gradient(to bottom, #F2F2F2 47%, #CCCCCC 100%);
}

#newReportButton {
  font-size: 12px;
}

input[type="button"]:hover,
input[type="button"]:focus {
  color: #fff;
  box-shadow: 0px 0px 2px 2px rgba(119, 119, 119, 0.50);
  -moz-box-shadow: 0px 0px 2px 2px rgba(119, 119, 119, 0.50);
  -webkit-box-shadow: 0px 0px 2px 2px rgba(119, 119, 119, 0.50);
  border-color: #9ed561 !important;
}

.buttonSelected {
  color: #4682b1 !important;
}


#hiddenDiv {
  display: none;
}

#topMenu {
  background-color: #f2f2f2;
  margin: 0 -25px 25px -25px;
  padding: 25px 15px 25px 15px;
  border-bottom: 1px solid #9ed561;
}

#workDaysContainer,
#localTimesContainer {
  display: none;
}

.addonHeading {
  color: #4682b1;
  font-size: 14px;
}

.select2-container--default .select2-selection--single {
  padding: 6px;
  height: 38px !important;
  font-size: 12px !important;
  position: relative;
  margin-top: -1px;
}

.select2-container--default .select2-selection--multiple {
  padding: 3px 6px;
  /*padding:6px;*/
  /*min-height: 38px !important;*/
  font-size: 12px !important;
  position: relative;
  margin-top: -1px;
}

.select2-container--default:hover .select2-selection--single:hover,
.select2-container--default:hover .select2-selection--multiple:hover {
  /* box-shadow: 0px 0px 2px 2px rgba(119, 119, 119, 0.50);
  -moz-box-shadow: 0px 0px 2px 2px rgba(119, 119, 119, 0.50);
  -webkit-box-shadow: 0px 0px 2px 2px rgba(119, 119, 119, 0.50);
  border-color: #9ed561 !important;*/
  border-color: #aaaaaa;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid #aaaaaa 1px !important;
}

.chosen-container-active .chosen-choices {
  border: 1px solid #aaaaaa !important;
  box-shadow: none !important;
}

*:not([class^="datepicker-"])>table {
  width: 100%;
  /*border: 1px solid #4682b1;*/
}

*:not([class^="datepicker-"])>table th {
  background-color: #4682b1;
  padding: 5px;
  color: #fff;
  font-weight: normal;
  padding: 5px 0 5px 0;
  margin: 0;
}

*:not([class^="datepicker-"])>table td {
  padding: 5px 0 5px 0;
}

tfoot {
  background-color: #9ED561;
  color: #FFF;
  border-top: 1px solid #4682b1;
}

#loadingSection {
  height: 240px;
  width: 500px;
  border: 1px solid #93d561;
  margin: 50px auto 50px auto;
  padding: 25px;
  text-align: center;
  color: #4682b1;
  background-color: #f2f2f2;
  border-radius: 10px;
  font-size: 18px;
  display: none;
}

*:not([class^="datepicker-"])>table tbody tr:hover {
  /*background-color: #9ED561 !important;*/
  background-color: #5cb85c;
  /*color: #4682b1;*/
  color: #fff;
  cursor: pointer;
}

/**********************************
PAGE: DASHBOARD
***********************************/

#introSpiel a,
#introSpiel a:visited {
  color: #48b848;
}

#introSpiel a:hover {
  color: #F05A5D;
}

.clockBox {
  background: url(../images/Watch-30.png) no-repeat 5px;
  background-size: 30px 30px;
  border: 1px solid #ccc;
  height: 50px;
  width: 105px;
  padding: 7px 5px 5px 45px;
  font-size: .75em;
  background-color: #F4F4F4;
  margin: 0 5px 0 0;
  /*float:left;*/
  display: inline-block;
}

.clockBox:hover {
  background-color: #FFF;
  cursor: pointer;
  border-color: #48b848;
}

#clockSection {
  clear: both;
}

.timeSpan {
  font-size: 1.22em;
}

.location {
  color: #48B848;
}

#hiddenDiv {
  display: none;
}

.newJobs {
  background: url(../images/New-50.png) no-repeat 5px 11px;
}

.openJobs {
  background: url(../images/FilledBox-50.png) no-repeat 5px 11px;
}

.overdueJobs {
  background: url(../images/Curriculum-50.png) no-repeat 5px 11px;
}

.completedJobs {
  background: url(../images/Box-50.png) no-repeat 5px 11px;
}

.newJobs,
.openJobs,
.overdueJobs,
.completedJobs {
  background-size: 50px 50px;
  border: 1px solid #ccc;
  height: 50px;
  width: 100.5px;
  padding: 20px 5px 5px 70px;
  font-size: 1.9em;
  background-color: #F4F4F4;
  margin: 0 20px 20px 0;
  float: left;
  color: #258673;
}

.newJobs:hover,
.openJobs:hover,
.overdueJobs:hover,
.completedJobs:hover {
  background-color: #FFF;
  border-color: #48b848;
  cursor: pointer;
}

.awaitingItem,
.jobItem {}

.awaitingItem2,
.jobItem2 {
  background-color: #F4FCFF;
}



.awaitingItem:hover,
.awaitingItem2:hover,
.jobItem:hover,
.jobItem2:hover {
  cursor: pointer;
  background-color: #999;
  color: #fff;
}

.newJobs2,
.openJobs2,
.overdueJobs2,
.completedJobs2 {
  background-color: #FFF;
  border-color: #48b848;
  cursor: pointer;
}

.myNewJobsTable,
.myOpenJobsTable,
.myOverdueJobsTable,
.myCompletedJobsTable {
  display: inline-block;
  width: 12%;
  margin-right: 1%;
  vertical-align: top;
}

.myNewJobsHeading,
.myOpenJobsHeading,
.myOverdueJobsHeading,
.myCompletedJobsHeading {
  border: 1px solid #ccc;
  background-color: #4682b1;
  color: #FFF;
  padding: 5px;
  min-width: 940px;
}

.myNewJobsResults,
.myOpenJobsResults,
.myOverdueJobsResults,
.myCompletedJobsResults {
  border: 1px solid #ccc;
  border-top: none;
  border-bottom: none;
  padding: 5px;
  min-width: 940px;
  font-size: 0.90em;
  vertical-align: top;
  cursor: pointer;
}

.myNewJobsResults2,
.myOpenJobsResults2,
.myOverdueJobsResults2,
.myCompletedJobsResults2 {
  border: 1px solid #ccc;
  border-top: none;
  border-bottom: none;
  padding: 5px;
  min-width: 940px;
  font-size: 0.90em;
  vertical-align: top;
  background-color: #F4FCFF;
  cursor: pointer;
}

.splitReceipts2 {
  border: 1px solid #ccc;
  border-top: none;
  border-bottom: none;
  padding: 5px;
  min-width: 940px;
  font-size: 0.90em;
  vertical-align: top;
  background-color: #f7fdf8;
}

.splitReceipts {
  border: 1px solid #ccc;
  border-top: none;
  border-bottom: none;
  padding: 5px;
  min-width: 940px;
  font-size: 0.90em;
  vertical-align: top;
}


.myNewJobsResults:hover,
.myNewJobsResults2:hover,
.myOpenJobsResults:hover,
.myOpenJobsResults2:hover,
.myOverdueJobsResults:hover,
.myOverdueJobsResults2:hover,
.myCompletedJobsResults:hover,
.myCompletedJobsResults2:hover {
  color: #FFF;
  background-color: #999;


}

.myNewJobsLine1,
.myOpenJobsLine1,
.myOverdueJobsLine1,
.myCompletedJobsLine1,
.splitReceiptLine {
  display: inline-block;
  width: 12%;
  margin-right: 1%;
  vertical-align: top;
}

#myNewJobs,
#myOpenJobs,
#myOverdueJobs,
#myCompletedJobs {
  display: none;
}

.myNewJobsHeading img,
.myOpenJobsHeading img,
.myOverdueJobsHeading img,
.myCompletedJobsHeading img {
  cursor: pointer;
}

.myNewJobsHeading img:hover,
.myOpenJobsHeading img:hover,
.myOverdueJobsHeading img:hover,
.myCompletedJobsHeading img:hover {
  opacity: 0.4;
  filter: alpha(opacity=40);
}

/**********************************
PAGE: LOGIN
***********************************/
/*#loginForm input[type="text"],#loginForm input[type="password"] {
  padding:8px;
  width:300px;
  margin:12px 0;
  border:1px solid #48b848;
}

#loginForm input[type="submit"] {
  padding:8px;
  width:80px;
  margin:12px 0;
  border:1px solid #48b848;
  color:#FFF;
}

#loginForm input[type="password"], #password {
  background:url(../images/pwd_field_icon.png) no-repeat 6px 6px,#FFF;
  padding-left:35px;
}

#loginForm input[type="text"], #username {
  background:url(../images/username_field.png) no-repeat 6px 6px,#FFF;
  padding-left:35px;
}


#loginForm input[type="submit"] {
  background:url(../images/submit_field_icon.png) no-repeat 52px 6px,#48b848;
  padding-right:35px;
  margin-left:260px;
}

#loginForm input[type="submit"]:hover {
  background-color:#848484;
  border-color:#848484;
}

.formLine {
  text-align:center;
  margin-left:auto;
}

#loginForm input[type=checkbox] {
  display:none;
}*/

/* SLIDE THREE */
.slideThree {
  width: 80px;
  height: 26px;
  background: #48b848;
  margin: 20px auto;
  position: relative;
  border: 1px solid #48b848;
}

.slideThree:after {
  content: 'OFF';
  font: 12px/26px normal;
  color: #FFF;
  position: absolute;
  right: 10px;
  z-index: 0;
}

.slideThree:before {
  content: 'ON';
  font: 12px/26px normal;
  color: #FFF;
  position: absolute;
  left: 10px;
  z-index: 0;
}

.slideThree label {
  display: block;
  width: 34px;
  height: 20px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  -ms-transition: all .4s ease;
  transition: all .4s ease;
  cursor: pointer;
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 1;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  background: #fcfff4;
  background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -moz-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -o-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -ms-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfff4', endColorstr='#b3bead', GradientType=0);
}

.slideThree input[type=checkbox]:checked+label {
  left: 43px;
}

#rememberField {
  margin: -10px 0 0 -260px;
}

#rememberLabel {
  margin-top: -40px;
  width: 50%;
  padding-left: 210px;
}

.formLine a,
.formLine a:visited {
  color: #48b848;
}

.formLine a:hover {
  color: #258673;
}

.loginError {
  text-align: center;
  color: #F05A5D;
}

/**********************************
PAGE: FORGOTTEN LOGIN
***********************************/
#fogotLoginForm input[type="text"] {
  padding: 8px;
  width: 290px;
  margin: 12px 0;
  border: 1px solid #48b848;
}

#fogotLoginForm input[type="submit"] {
  padding: 8px;
  width: 80px;
  margin: 12px 0;
  border: 1px solid #48b848;
  color: #FFF;
}

#fogotLoginForm input[type="text"] {
  background: url(../images/email_field.png) no-repeat 6px 6px, #FFF;
  padding-left: 45px;
}

#fogotLoginForm input[type="submit"] {
  background: url(../images/submit_field_icon.png) no-repeat 52px 6px, #48b848;
  padding-right: 35px;
  margin-left: 260px;
}

#fogotLoginForm input[type="submit"]:hover {
  background-color: #848484;
  border-color: #848484;
}

/**********************************
PAGE: UNDER CONSTRUCTION ERROR PAGE
***********************************/

#pageUnderConstruction input[type="button"] {
  padding: 8px;
  width: 80px;
  margin: 25px 0;
  border: 1px solid #48b848;
  color: #FFF;
}

#pageUnderConstruction input[type="button"] {
  background: url(../images/back_icon.png) no-repeat 6px 6px, #48b848;
  padding-left: 32px;
}

#pageUnderConstruction input[type="button"]:hover {
  background-color: #848484;
  border-color: #848484;
}

/**********************************
PAGE: SUPPORT TICKETS
***********************************/
.buttonCreateNewSupport {
  background: url(../images/CreateNew-50.png) no-repeat 5px 11px;
}

.buttonMyTickets {
  background: url(../images/OpenedFolder-50.png) no-repeat 5px 11px;
}

.buttonAllTickets {
  background: url(../images/SelectAll-50.png) no-repeat 5px 11px;
}


.buttonCreateNewSupport,
.buttonMyTickets,
.buttonAllTickets {
  background-size: 50px 50px;
  border: 1px solid #ccc;
  height: 50px;
  width: 100.5px;
  padding: 20px 5px 5px 70px;
  font-size: 1.05em;
  background-color: #F4F4F4;
  margin: 0 20px 20px 0;
  float: left;
  color: #258673;
}

.buttonCreateNewSupport:hover,
.buttonMyTickets:hover,
.buttonAllTickets:hover,
.buttonCreateNewSupport2,
.buttonMyTickets2,
.buttonAllTickets2 {
  background-color: #FFF;
  border-color: #48b848;
  cursor: pointer;
}


.createTicketsPanel,
.myTicketsPanel,
.allTicketsPanel {
  display: none;
}

.myTicketsHeading {
  border: 1px solid #ccc;
  background-color: #48b848;
  color: #FFF;
  padding: 5px;
  min-width: 940px;
}

.myTicketsTable {
  display: inline-block;
  width: 12%;
  margin-right: 1%;
  vertical-align: top;
}

#filterTableResults {
  padding: 8px;
  width: 300px;
  margin: 12px 0;
  border: 1px solid #48b848;
}

#filterTableResults {
  background: url(../images/search.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}

#hideMyTicketsPanel:hover,
#hideAllTicketsPanel:hover {
  opacity: 0.4;
  filter: alpha(opacity=40);
  cursor: pointer;
}


#newTicketForm input[type="text"] {
  padding: 8px;
  margin: 12px 0;
  border: 1px solid #48b848;
}

#newTicketForm input[type="submit"] {
  padding: 8px;
  width: 90px;
  margin: 12px 0;
  border: 1px solid #48b848;
  color: #FFF;
  background-color: #48b848;
}

#newTicketForm input[type="submit"] {
  background: url(../images/submit_field_icon.png) no-repeat 62px 6px, #48b848;
  padding-right: 35px;
  margin-left: 80%;
}

#newTicketForm input[type="submit"]:hover {
  border: 1px solid #999;
  background-color: #999;
}



#newTicketForm #briefDescription {
  background: url(../images/topic.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}

#newTicketForm #fullDescription {
  padding: 8px;
  width: 85%;
  height: 400px;
  margin: 12px 0;
  border: 1px solid #48b848;
  background: url(../images/description.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
  resize: none;
}

#newTicketForm div {
  margin-bottom: 10px;
}

#select2-priority-container {
  background: url(../images/priority.png) no-repeat 6px 6px;
  padding: 1px 0 1px 35px;
}


#select2-category-container {
  background: url(../images/category.png) no-repeat 6px 6px;
  padding: 1px 0 1px 35px;
}

#ticketSubmitted img {
  vertical-align: middle;
}

#ticketSubmitted img:hover {
  cursor: pointer;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

#ticketSubmitted {
  margin-top: 15px;
}

/**********************************
PAGE: ADMINISTRATION
***********************************/
.siteAdministration,
.administration {
  margin-bottom: 50px;
}

.siteStatistics {
  max-width: 550px;
  overflow: hidden;
}

.administration-area,
.report-area {
  max-width: 912px;
  overflow: hidden;
}

.administration-area h2,
.report-area h2,
.siteStatistics h2 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  color: #4682b1;
  font-size: 20px;
  border-bottom: 1px solid #dddddd;
}

.siteStatistics p {
  line-height: 25px;
}

.administration-left,
.administration-right {
  float: left;
  width: 270px;
}

.administration-center {
  float: left;
  margin: 0 50px;
  width: 270px;
}

.report-left,
.report-center,
.report-right {
  float: left;
  width: 270px;
}

.report-all {
  float: left;
  width: 270px;
}

.report-center {
  margin: 0 50px;
}

.report-all {
  margin-top: 10px !important;
  margin-left: 160px;
  margin-right: 50px;
}

.administration-left ul,
.administration-center ul,
.administration-right ul,
.report-left ul,
.report-center ul,
.report-right ul,
.report-all ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.administration-left a,
.administration-center a,
.administration-right a,
.report-left a,
.report-center a,
.report-right a,
.report-all a {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px 15px;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #dddddd;
  /* border-top: 0; */
  border-left: 5px solid #4cae4c;
  box-shadow: 2px 2px 2px 0 #cccccc;
  -webkit-box-shadow: 2px 2px 2px 0 #cccccc;
  -moz-box-shadow: 2px 2px 2px 0 #cccccc;
  -ms-box-shadow: 2px 2px 2px 0 #cccccc;
}

.report-left a {
  border-left: 5px solid #c50000;
}

.report-right a {
  border-left: 5px solid #0070c0;
}

.report-all a {
  clear: both;
  text-align: center;
  border-left: 5px solid #ff9c00;
  border-right: 5px solid #ff9c00;
}

.administration-left a:hover,
.administration-left a:active,
.administration-left a:focus,
.administration-center a:hover,
.administration-center a:active,
.administration-center a:focus,
.administration-right a:hover,
.administration-right a:active,
.administration-right a:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #4cae4c;
  border-left: 5px solid #1f586c;
  cursor: pointer;
}

.report-left a:hover,
.report-left a:active,
.report-left a:focus,
.report-center a:hover,
.report-center a:active,
.report-center a:focus,
.report-right a:hover,
.report-right a:active,
.report-right a:focus,
.report-all a:hover,
.report-all a:active,
.report-all a:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #4cae4c;
  cursor: pointer;
}

.report-left a:hover,
.report-left a:active,
.report-left a:focus {
  background-color: #c50000;
  border-left: 5px solid #c50000;
}

.report-center a:hover,
.report-center a:active,
.report-center a:focus {
  background-color: #4cae4c;
  border-left: 5px solid #4cae4c;
}

.report-right a:hover,
.report-right a:active,
.report-right a:focus {
  background-color: #0070c0;
  border-left: 5px solid #0070c0;
}

.report-all a:hover,
.report-all a:active,
.report-all a:focus {
  background-color: #ff9c00;
  border-left: 5px solid #ff9c00;
  border-right: 5px solid #ff9c00;
}

.text-green {
  color: #4cae4c;
}

.font-bold {
  font-weight: bold;
}

.SupportTickets {
  background: url(../images/Ticket-50.png) no-repeat 5px 11px;
}

.changePassword {
  background: url(../images/ChangePwd-50.png) no-repeat 5px 11px;
}

.emergencyContact {
  background: url(../images/DoctorsBag-50.png) no-repeat 5px 11px;
}

.travelDocuments {
  background: url(../images/Airport-50.png) no-repeat 5px 11px;
}

.createUser {
  background: url(../images/AddUser-50.png) no-repeat 5px 11px;
}

.userRecord {
  background: url(../images/findUser-50.png) no-repeat 5px 11px;
}

.userAdmin {
  background: url(../images/ContactCard-50.png) no-repeat 5px 11px;
}

.clientsAdmin {
  background: url(../images/clientsadmin.png) no-repeat 5px 11px;
}

.sitesAdmin {
  background: url(../images/sitesadmin.png) no-repeat 5px 11px;
}

.costcodesAdmin {
  background: url(../images/costcodes.png) no-repeat 5px 11px;
}

.citiesAdmin {
  background: url(../images/City-50.png) no-repeat 5px 11px;
}

.expenseTypesAdmin {
  background: url(../images/eType-50.png) no-repeat 5px 11px;
}

.jobTypesAdmin {
  background: url(../images/jobTypes-50.png) no-repeat 5px 11px;
}

.merchantsAdmin {
  background: url(../images/merchants-50.png) no-repeat 5px 11px;
}

.invoicing {
  background: url(../images/invoicing.png) no-repeat 5px 11px;
}

.billto {
  background: url(../images/billto.png) no-repeat 5px 11px;
}

.quotes {
  background: url(../images/quotes.png) no-repeat 5px 11px;
}

.ownRecord {
  background: url(../images/jobTypes-50.png) no-repeat 5px 11px;
}

/*.changePassword, .emergencyContact, .travelDocuments, .createUser, .SupportTickets, .userAdmin, .userRecord, .clientsAdmin, .sitesAdmin, .costcodesAdmin, .expenseTypesAdmin, .jobTypesAdmin, .citiesAdmin, .invoicing, .billto, .quotes, .merchantsAdmin {
  background-size:50px 50px;
  border:1px solid #ccc;
  height:50px;
  width:94.5px;
  padding:20px 5px 5px 70px;
  font-size:0.95em;
  background-color:#F4F4F4;
  margin:0 20px 20px 0;
  float:left;
  color:#258673;
}

.changePassword:hover, .emergencyContact:hover, .travelDocuments:hover, .createUser:hover, .userRecord:hover, .SupportTickets:hover, .userAdmin:hover, .clientsAdmin:hover, .sitesAdmin:hover, .costcodesAdmin:hover, .invoicing:hover, .billto:hover, .quotes:hover, .citiesAdmin:hover, .expenseTypesAdmin:hover, .jobTypesAdmin:hover, .merchantsAdmin:hover {
  background-color:#FFF;
  border-color:#48b848;
  cursor:pointer;
}
*/

/**********************************
PAGE: CHANGE PASSWORD
***********************************/
.changePasswordForm {
  text-align: center;
}

.changePasswordForm input[type="submit"] {
  padding: 8px;
  width: 95px;
  margin: 12px 0;
  border: 1px solid #48b848;
  color: #FFF;
  background: url(../images/submit_field_icon.png) no-repeat 62px 6px, #48b848;
  padding-right: 35px;
  margin-left: 249px;
}

.changePasswordForm input[type="submit"]:hover {
  background-color: #848484;
  border-color: #848484;
}


.changePasswordForm input[type="password"] {
  padding: 8px;
  width: 290px;
  margin: 12px 0;
  border: 1px solid #48b848;
}

.changePasswordForm input[type="password"] {
  background: url(../images/ChangePwd-20.png) no-repeat 6px 6px, #FFF;
  padding-left: 45px;
}

/**********************************
PAGE: EMERGENCY CONTACT
***********************************/

.updateEmergencyDetails {}

.updateEmergencyDetails input[type="submit"] {
  padding: 8px;
  width: 95px;
  margin: 12px 0;
  border: 1px solid #48b848;
  color: #FFF;
  background: url(../images/submit_field_icon.png) no-repeat 62px 6px, #48b848;
  padding-right: 35px;
  margin-left: 259px;
}

.updateEmergencyDetails input[type="text"],
.updateEmergencyDetails input[type="tel"],
.updateEmergencyDetails input[type="email"],
.updateEmergencyDetails input[type="date"],
#paymentDate,
#leaveStart,
#leaveEnd,
#leaveReason {
  padding: 8px;
  width: 300px;
  margin: 12px 0;
  border: 1px solid #48b848;
}

.updateEmergencyDetails textarea {
  padding: 8px;
  width: 300px;
  height: 100px;
  margin: 12px 0;
  border: 1px solid #48b848;
  resize: none;
}

/*#emergencyContactName, #physicianName, #fullName {
   background: url(../images/nameContact.png) no-repeat 6px 6px,#FFF;
   padding-left:45px;
}

#physicianPhone, #emergencyContactPhone, #homePhone {
   background: url(../images/landPhone.png) no-repeat 6px 6px,#FFF;
   padding-left:45px;
}

#mobilePhone {
   background: url(../images/cellPhone.png) no-repeat 6px 6px,#FFF;
   padding-left:45px;
}

#emergencyContactEmail {
   background: url(../images/email.png) no-repeat 6px 6px,#FFF;
   padding-left:45px;
}

#address {
   background: url(../images/address.png) no-repeat 6px 6px,#FFF;
   padding-left:45px;
}

#leaveReason {
   background: url(../images/description.png) no-repeat 6px 6px,#FFF;
   padding-left:45px;
}


#emergencyContactRelationship {
   background: url(../images/relationship.png) no-repeat 6px 6px,#FFF;
   padding-left:45px;
}

#dateOfBirth, #paymentDate, #leaveStart, #leaveEnd {
   background: url(../images/Calendar.png) no-repeat 6px 6px,#FFF;
   padding-left:45px;
}


#medicalConditions {
   background: url(../images/conditions.png) no-repeat 6px 6px,#FFF;
   padding-left:45px;
}

#allergies {
   background: url(../images/allergy.png) no-repeat 6px 6px,#FFF;
   padding-left:45px;
}

#medications {
   background: url(../images/medicine.png) no-repeat 6px 6px,#FFF;
   padding-left:45px;
}
*/
.SupportTicketSubmittedMessage {
  display: none;
}

/**********************************
PAGE: TRAVEL DOCUMENTS
***********************************/
.myVisas {
  background: url(../images/Visa-50.png) no-repeat 5px 11px;
}

.myPassports {
  background: url(../images/Passport-50.png) no-repeat 5px 11px;
}

.myPassports,
.myVisas {
  background-size: 50px 50px;
  border: 1px solid #ccc;
  height: 50px;
  width: 100.5px;
  padding: 20px 5px 5px 70px;
  font-size: 1.05em;
  background-color: #F4F4F4;
  margin: 0 20px 20px 0;
  float: left;
  color: #258673;
}

.myPassports:hover,
.myVisas:hover {
  background-color: #FFF;
  border-color: #48b848;
  cursor: pointer;
}


/**********************************
PAGE: USER ADMIN
***********************************/
#createNewUserForm #username,
#createNewUserForm #password,
#createNewUserForm #email,
#createNewUserForm #firstName,
#createNewUserForm #surname,
#createNewUserForm #cell,
#editUserForm #username,
#editUserForm #password,
#editUserForm #email,
#editUserForm #firstName,
#editUserForm #surname,
#editUserForm #cell,
#colorpickerField1,
#colorpickerField2 {
  padding: 8px;
  width: 328px;
  margin: 12px 0;
  border: 1px solid #48b848;
}

#createNewUserForm div,
#editUserForm div {
  margin-bottom: 15px;
}

#createNewUserForm #password,
#editUserForm #password {
  background: url(../images/pwd_field_icon.png) no-repeat 6px 6px, #FFF;
  padding-left: 45px;
}

#createNewUserForm #username,
#editUserForm #username {
  background: url(../images/username_field.png) no-repeat 6px 6px, #FFF;
  padding-left: 45px;
}

#createNewUserForm #email,
#editUserForm #email {
  background: url(../images/email.png) no-repeat 6px 6px, #FFF;
  padding-left: 45px;
}

#createNewUserForm #cell,
#editUserForm #cell {
  background: url(../images/cellPhone.png) no-repeat 6px 6px, #FFF;
  padding-left: 45px;
}

#createNewUserForm #firstName,
#createNewUserForm #surname,
#editUserForm #firstName,
#editUserForm #surname {
  background: url(../images/question.png) no-repeat 6px 6px, #FFF;
  padding-left: 45px;
}

#createNewUserForm #colorpickerField1,
#editUserForm #colorpickerField1 {
  background: url(../images/textColor.png) no-repeat 6px 6px, #FFF;
  padding-left: 45px;
}

#createNewUserForm #colorpickerField2,
#editUserForm #colorpickerField2 {
  background: url(../images/bgColor.png) no-repeat 6px 6px, #FFF;
  padding-left: 45px;
}


#createNewUserForm input[type="submit"],
#editUserForm input[type="submit"] {
  padding: 8px;
  width: 95px;
  margin: 12px 0;
  border: 1px solid #48b848;
  color: #FFF;
  background: url(../images/submit_field_icon.png) no-repeat 62px 6px, #48b848;
  padding-right: 35px;
  margin-left: 290px;
}

#createNewUserForm input[type="submit"]:hover,
#editUserForm input[type="submit"]:hover {
  background-color: #848484;
  border-color: #848484;
}

#colorpickerField1,
#colorpickerField2 {
  width: 95px;
}

#ganttExample {
  padding: 8px;
  color: #fff;
  background-color: #4682b4;
}

#createNewUserForm #select2-userLevel-container,
#editUserForm #select2-editUserLevel-container {
  background: url(../images/userLevel.png) no-repeat 6px 6px;
  padding: 1px 0 1px 45px;
}


#select2-selectUser-container {
  background: url(../images/findUser.png) no-repeat 6px 6px;
  padding: 1px 0 1px 45px;

}


#createUserForm,
#userRecord {
  display: none;
}

#selectedUserDetails {
  margin-top: 55px;
}

.createUser2,
.userRecord2 {
  background-color: #FFF;
  border-color: #48b848;
  cursor: pointer;
}

/**********************************
PAGE: Schedule
***********************************/
#fromDate,
#toDate {
  padding: 8px;
  width: 55px;
  margin: 12px 0;
  border: 1px solid #48b848;
}

#quickFilter {
  padding: 8px;
  width: 325px;
  margin: 12px 0;
  border: 1px solid #48b848;
}

#fromDate {
  background: url(../images/Calendar.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}

#toDate {
  background: url(../images/Calendar.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}

#quickFilter {
  background: url(../images/search.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}

.filterMenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline;
  background-color: #f2eded;
}

.filterMenu li {
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
  background-color: #4682b1;
  /*#6D9EC5;*/
  margin: 0 0 5px 0;
}

.filterMenu li:hover {
  background-color: #9ed561;
  cursor: pointer;
  color: #fff;
}

label {
  color: #48b848;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.myClass {
  background-color: #9ed561 !important;
  color: #fff !important;
}

.myClass:hover {
  background-color: #48b848;
  color: #fff;
  cursor: pointer;
}

#refreshGantt {
  width: 25px;
  background: url(../images/refresh-w.png) no-repeat 6px 4px, #48b848;
}

#clearDates,
#refreshGantt,
#newJob,
#print,
#max,
#mini {
  padding: 7.5px;
  border: 1px solid #48b848;
  color: #FFF;
  padding-left: 25px;
}

#clearDates {
  width: 25px;
  background: url(../images/clear-w.png) no-repeat 6px 4px, #48b848;
}

#print {
  width: 25px;
  background: url(../images/print-w.png) no-repeat 6px 4px, #48b848;
}

#max {
  width: 25px;
  background: url(../images/maxw.png) no-repeat 6px 4px, #48b848;
}

#mini {
  width: 25px;
  background: url(../images/minw.png) no-repeat 6px 4px, #48b848;
}

#newJob {
  width: 85px;
  background: url(../images/plus-w.png) no-repeat 6px 4px, #48b848;
}


#refreshGantt:hover,
#clearDates:hover,
#newJob:hover,
#print:hover,
#mini:hover,
#max:hover {
  background-color: #4682b1;
  cursor: pointer;
  border-color: #4682b1;
}


/**********************************
PAGE: Create job
***********************************/

#newJobForm #startDate,
#newJobForm #endDate,
#newJobForm #site,
#newJobForm #costCode,
#newJobForm #rid,
#newJobForm #address1,
#newJobForm #address2,
#newJobForm #address3,
#newJobForm #city,
#newJobForm #state,
#newJobForm #zip,
#newJobForm #country,
#newJobForm #contactName,
#newJobForm #contactEmail,
#newJobForm #contactPhone,
#newJobForm #clientName,
#newJobForm #comments {
  padding: 8px;
  margin: 0 0 12px 0;
  border: 1px solid #48b848;
}

#newJobForm #comments {
  resize: none;
  height: 300px;
  width: 600px;
  background: url(../images/description.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}

#newJobForm #startDate,
#newJobForm #endDate {
  width: 100px;
  background: url(../images/Calendar.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}


#newJobForm #address1,
#newJobForm #address2,
#newJobForm #address3 {
  width: 500px;
  background: url(../images/address.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}

#newJobForm #contactPhone {
  width: 200px;
  background: url(../images/landPhone.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}

#newJobForm #contactEmail {
  width: 400px;
  background: url(../images/email.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}

#newJobForm #city {
  width: 300px;
  background: url(../images/f-city.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}

#newJobForm #state {
  width: 200px;
  background: url(../images/state.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}

#newJobForm #clientName {
  width: 500px;
  background: url(../images/nameContact.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}



#newJobForm #country {
  width: 200px;
  background: url(../images/f-country.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}

#newJobForm #contactName {
  width: 200px;
  background: url(../images/username_field.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}

#newJobForm #zip {
  width: 100px;
  background: url(../images/zip.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}

#newJobForm #costCode,
#newCC {
  width: 100px;
  background: url(../images/f-costcodes.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}


#newJobForm #rid {
  width: 100px;
  background: url(../images/sap.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
}


#newJobForm #site {
  width: 100px;
  background: url(../images/f-sites.png) no-repeat 6px 6px, #FFF;
  padding-left: 35px;
  text-transform: capitalize;
}


#newJobForm #select2-assignedTo-container {
  background: url(../images/findUser.png) no-repeat 6px 6px;
  padding: 1px 0 1px 35px;
}

#newJobForm #select2-existingClient-container {
  background: url(../images/findUser.png) no-repeat 6px 6px;
  padding: 1px 45px 1px 35px;
}


#newJobForm #select2-jobType-container {
  background: url(../images/category.png) no-repeat 6px 6px;
  padding: 1px 0 1px 35px;
}

#newJobForm #select2-paymentTerms-container {
  background: url(../images/question.png) no-repeat 6px 6px;
  padding: 1px 0 1px 35px;
}

#newJobForm #select2-currency-container {
  background: url(../images/f-costcodes.png) no-repeat 6px 6px;
  padding: 1px 0 1px 35px;
}

#newJobForm #select2-repeat-container {
  background: url(../images/repeat.png) no-repeat 6px 6px;
  padding: 1px 0 1px 35px;
}


#newJobForm input[type="submit"] {
  padding: 8px;
  width: 115px;
  margin: 12px 0;
  border: 1px solid #48b848;
  color: #FFF;
  background: url(../images/submit_field_icon.png) no-repeat 82px 6px, #48b848;
  padding-right: 35px;
}

#newJobForm input[type="submit"]:hover {
  background-color: #848484;
  border-color: #848484;
}




#b1,
#b2,
#b3,
#b4,
#b5,
.b1,
.b2,
.b3,
.b4,
.b5 {
  padding: 12px;
  margin: 12px 0;
  color: #FFF;
}

#b1,
.b1 {
  border: 1px solid #F35355;
  background-color: #F35355;
}

#b2,
.b2 {
  border: 1px solid #4682b1;
  background-color: #4682b1;
}

#b3,
.b3 {
  border: 1px solid #60CB29;
  background-color: #60CB29;
}

#b4,
.b4 {
  border: 1px solid #000;
  background-color: #000;
}

#b5,
.b5 {
  border: 1px solid #F35355;
  background-color: #F35355;
  cursor: pointer;
}

#b1:hover,
#b2:hover,
#b3:hover,
#b4:hover,
#b5:hover,
.b1:hover,
.b2:hover,
.b3:hover,
.b4:hover,
.b5:hover {
  background-color: #848484;
  border-color: #848484;
}


/**********************************
PAGE: job card
***********************************/

#jobCard #rid:hover,
#jobCard #scheduledStartDate:hover,
#jobCard #scheduledEndDate:hover,
#jobCard #comment1:hover {
  cursor: pointer;
}

#jobCard #jobNumber,
#jobCard #sap,
#jobCard #rid,
#jobCard #siteName,
#jobCard #address1,
#jobCard #address2,
#jobCard #address3,
#jobCard #city,
#jobCard #state,
#jobCard #zip,
#jobCard #country,
#jobCard #contactName,
#jobCard #contactEmail,
#jobCard #contactPhone,
#jobCard #scheduledStartDate,
#jobCard #scheduledEndDate,
#jobCard #scheduledDuration,
#jobCard #comment1,
#jobCard #comment2,
#jobCard #comment3,
#actualStartDate,
#actualEndDate,
#actualDuration,
#jobCard #costCode {
  font-size: 0.95em;
  border: none;
  color: #999;
  background-color: #fff;
}


#jobCard #actualStartDate,
#jobCard #actualEndDate,
#jobCard #comment2,
#jobCard #comment3,
#jobCard #actualDuration {
  border: 1px solid #48b848;
  padding: 8px;
  background-color: #F2F2F2;
}


#jobCard hr {
  color: #48b848;
  border: none;
  border-bottom: 1px solid #48b848;
}

#jobCard .select2-selection {
  background-color: #F2F2F2;
  border: none;
  color: #999;
}

#jobCard .select2-selection__arrow {
  background: none;
  border: none;
}

#jobCard .select2-selection__rendered {
  color: #999;
  padding: 0;
  margin-top: -5px;
}


#acceptJob,
#startJob,
#finishJob,
#approveJob,
#reopenJob,
#proceedPlease,
#cancelPlease,
#closeWindow,
#closeWindow2,
#invoiceJob,
#partialInvoiceJob {
  padding: 12px;
  margin: 12px 0;
  color: #FFF;
}

#addInvItem {
  padding: 5px;
  color: #FFF;
}

#acceptJob,
#cancelPlease {
  border: 1px solid #F35355;
  background-color: #F35355;
}

#startJob,
#proceedPlease,
#addInvItem {
  border: 1px solid #4682b1;
  background-color: #4682b1;
}

#finishJob,
#invoiceJob {
  border: 1px solid #60CB29;
  background-color: #60CB29;
}

#partialInvoiceJob {
  border: 1px solid #8862f5;
  background-color: #8862f5;
}

#approveJob {
  border: 1px solid #000;
  background-color: #000;
}

#reopenJob {
  border: 1px solid #DB7EDE;
  background-color: #DB7EDE;
}

#closeWindow,
#closeWindow2 {
  border: 1px solid #E7C746;
  background-color: #E7C746;
}


#acceptJob:hover,
#startJob:hover,
#finishJob:hover,
#approveJob:hover,
#reopenJob:hover,
#partialInvoiceJob:hover,
#proceedPlease:hover,
#cancelPlease:hover,
#closeWindow:hover,
#closeWindow2:hover,
#invoiceJob:hover,
#addInvItem:hover {
  background-color: #848484;
  border-color: #848484;
}


.modal_jobcard {
  width: 80%;
}


/* SLIDE THREE */
.slideFour {
  width: 80px;
  height: 26px;
  background: #48b848;
  margin: 20px auto;
  position: relative;
  border: 1px solid #48b848;
}

.slideFour:after {
  content: 'NO';
  font: 12px/26px normal;
  color: #FFF;
  position: absolute;
  right: 10px;
  z-index: 0;
}

.slideFour:before {
  content: 'YES';
  font: 12px/26px normal;
  color: #FFF;
  position: absolute;
  left: 10px;
  z-index: 0;
}

.slideFour label {
  display: block;
  width: 34px;
  height: 20px;
  -webkit-transition: all .4s ease;
  -moz-transition: all .4s ease;
  -o-transition: all .4s ease;
  -ms-transition: all .4s ease;
  transition: all .4s ease;
  cursor: pointer;
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 1;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
  background: #fcfff4;
  background: -webkit-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -moz-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -o-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -ms-linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(top, #fcfff4 0%, #dfe5d7 40%, #b3bead 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfff4', endColorstr='#b3bead', GradientType=0);
}

.slideFour input[type=checkbox]:checked+label {
  left: 43px;
}


/**********************************
PAGE: expenses
***********************************/
#select2-newReportDate-container {
  background: url(../images/Calendar.png) no-repeat 6px 6px;
  padding: 1px 0 1px 35px;
}

#myExpenseReports,
#allExpenseReports,
#awaitingApprovalReports {
  display: none;
}

.awaitingApprovalButton {
  background: url(../images/awaitingAprroval-50.png) no-repeat 5px 11px;
}

.allExpenseReportsButton {
  background: url(../images/SelectAll-50.png) no-repeat 5px 11px;
}

.myExpenseReportsButton {
  background: url(../images/costcodes.png) no-repeat 5px 11px;
}

.awaitingApprovalButton,
.allExpenseReportsButton,
.myExpenseReportsButton {
  background-size: 50px 50px;
  border: 1px solid #ccc;
  height: 50px;
  width: 100.5px;
  padding: 20px 5px 5px 70px;
  font-size: 1.05em;
  background-color: #F4F4F4;
  margin: 0 20px 20px 0;
  float: left;
  color: #258673;
}

.awaitingApprovalButton:hover,
.allExpenseReportsButton:hover,
.awaitingApprovalButton2,
.allExpenseReportsButton2,
.myExpenseReportsButton:hover,
.myExpenseReportsButton2 {
  background-color: #FFF;
  border-color: #48b848;
  cursor: pointer;
}




#myExpenseReportsTableHeader,
#awaitingApprovalTableHeader,
#allExpensesTableHeader {
  background-color: #4682b1;
  color: #FFF;
  padding: 5px;
  border: 1px solid #ccc;
  min-width: 950px;
}

.myExpenseReportHeading,
.awaitingApprovalReportHeading,
.allExpensesReportHeading {
  float: left;
}


.myExpenseReportsItem,
.awaitingApprovalReportsItem,
.allExpensesReportsItem {
  color: #999;
  padding: 5px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  min-width: 950px;
}


.myExpenseReportsItem2,
.awaitingApprovalReportsItem2,
.allExpensesReportsItem2 {
  color: #999;
  padding: 5px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  min-width: 950px;
  background-color: #F4FCFF;

}

.myExpenseReportItems,
.awaitingApprovalReportItems,
.allExpensesReportItems {
  float: left;
}

.allExpensesReportsItem:hover,
.allExpensesReportsItem2:hover,
.myExpenseReportsItem:hover,
.myExpenseReportsItem2:hover,
.awaitingApprovalReportsItem:hover,
.awaitingApprovalReportsItem2:hover {
  background-color: #999;
  color: #FFF;
  cursor: pointer;
}

.myExpenseReportsItem span:hover,
.myExpenseReportsItem2 span:hover,
.awaitingApprovalReportsItem span:hover,
.awaitingApprovalReportsItem2 span:hover {
  cursor: pointer;
}

.smb1,
.smb2,
.smb3,
.smb4 {
  color: #fff;
  font-size: 12px;
  padding: 3px 5px;
  width: 50px;
}

.smb1 {
  border: 1px solid #F35355;
  background-color: #F35355;
}

.smb2 {
  border: 1px solid #FFCC00;
  background-color: #FFCC00;
}

.smb3 {
  border: 1px solid #60CB29;
  background-color: #60CB29;
}

.smb4 {
  border: 1px solid #4682b1;
  background-color: #4682b1;
}


.smb1:hover,
.smb2:hover,
.smb3:hover,
.smb4:hover {
  background-color: #848484;
  border-color: #848484;
  cursor: pointer;
}

#closeAwaitingApproval:hover,
#closeMyJobs:hover,
#closeAllExpenses:hover {
  opacity: 0.4;
  filter: alpha(opacity=40);
  cursor: pointer;
}

/**********************************
PAGE: create expense entry
***********************************/
#newEntryForm #rcptDate,
#newEntryForm #expenseType,
#newEntryForm #expenseType,
#newEntryForm #rcptAmt,
#newEntryForm #merchant,
#newEntryForm #description,
#newEntryForm #billTo,
#newEntryForm #costCode,
#newEntryForm #country,
#newEntryForm #city,
#newEntryForm #audAmt,
#newEntryForm #exchangeRate,
#newEntryForm #uploadFile,
#splitDescription,
#splitAmt {
  padding: 8px;
  margin: 0 0 12px 0;
  border: 1px solid #48b848;
  background-color: #FFF;
  color: #000;
}

#newEntryForm #exchangeRate {
  background-color: #F2F2F2;
}

.highlight {
  background-color: #FFFEE2 !important;
}


/**********************************
PAGE: invoiceCreate
***********************************/
#invCreateOptionsSection,
#invCreateOutstandingSection,
#invCreateQueueSection {
  margin-bottom: 25px;
}

.invLineItemsTable {
  width: 100%;
  border: 1px solid #ccc;
}

.invLineItemsTable td {
  padding: 5px;
  vertical-align: top;
}

.invLineItemsTable a:link,
.invLineItemsTable a:visited,
.invLineItemsTable a:active {
  color: #848484;
}

.invLineItemsTable a:hover {
  color: #4682b1;
}

.rowAlternate {
  background-color: #f5fbff;
}

.clientHeading {
  font-size: 1.5em;
  font-weight: 400;
  color: #48b848;
}


.myInvoiceResults {
  border: 1px solid #ccc;
  border-top: none;
  border-bottom: none;
  padding: 5px;
  min-width: 940px;
  font-size: 0.90em;
  vertical-align: top;
}

.myInvoiceResults2 {
  border: 1px solid #ccc;
  border-top: none;
  border-bottom: none;
  padding: 5px;
  min-width: 940px;
  font-size: 0.90em;
  vertical-align: top;
  background-color: #F4FCFF;
}

.createInvButton {
  background: url(../images/CreateNew-50.png) no-repeat 5px 11px;
}

.printInvButton {
  background: url(../images/Print-50.png) no-repeat 5px 11px;
}

.invJobCardsButton {
  background: url(../images/Print-50.png) no-repeat 5px 11px;
}

.createInvButton,
.printInvButton,
.invJobCardsButton {
  background-size: 50px 50px;
  border: 1px solid #ccc;
  height: 75px;
  width: 244px;
  padding: 20px 5px 5px 69px;
  font-size: 0.95em;
  background-color: #F4F4F4;
  margin: 0 20px 20px 0;
  color: #258673;
}

.createInvButton {
  padding: 26px 5px 5px 69px;
}

.createInvButton:hover,
.printInvButton:hover,
.printInvButton2,
.createInvButton2,
.invJobCardsButton:hover,
.invJobCardsButton2 {
  background-color: #FFF;
  border-color: #48b848;
  cursor: pointer;
}

#addSplitEntry {
  background-color: #F2F2F2;
  padding: 12px;
  padding-top: 20px;
}

/**********************************
PAGE: resources
***********************************/
#resourceHeading {
  background-color: #4682b1;
  color: #FFF;
  padding: 5px;
  border: 1px solid #ccc;
  min-width: 950px;
}

.resourceItem {
  color: #999;
  padding: 5px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  min-width: 950px;
}


.resourceItem2 {
  color: #999;
  padding: 5px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  min-width: 950px;
  background-color: #f7fdf8;
}

.resourceItem:hover,
.resourceItem2:hover {
  background-color: #B9C8AE;
  color: #fff;
}

#clickable {
  cursor: pointer;
}

#category,
#description {
  padding: 8px;
  width: 328px;
  border: 1px solid #48b848;
}

h4 {
  color: #4682b1;
}

/**********************************
PAGE: costCodes Admin
***********************************/
#costCodesTableHeading {
  background-color: #4682b1;
  color: #FFF;
  padding: 5px;
  border: 1px solid #ccc;
  min-width: 940px;
}

.costCodeTableItem {
  border: 1px solid #ccc;
  border-top: none;
  border-bottom: none;
  padding: 5px;
  min-width: 940px;
  font-size: 0.90em;
  vertical-align: top;
}


.costCodeTableItem2 {
  border: 1px solid #ccc;
  border-top: none;
  border-bottom: none;
  padding: 5px;
  min-width: 940px;
  font-size: 0.90em;
  vertical-align: top;
  background-color: #F4FCFF;
}

#newCC {
  padding: 8px 8px 8px 35px;
  margin: 0 0 12px 0;
  border: 1px solid #48b848;
  width: 200px;
  text-transform: uppercase;
}



/**********************************
PAGE: cities, expensetypes, merchants Admin
***********************************/
#citiesTableHeading,
#expenseTypesTableHeading,
#merchantsTableHeading {
  background-color: #4682b1;
  color: #FFF;
  padding: 5px;
  border: 1px solid #ccc;
  min-width: 950px;
}

.citiesTableItem,
.expenseTypeTableItem,
.merchantTableItem {
  color: #999;
  padding: 5px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  min-width: 950px;
}


.citiesTableItem2,
.expenseTypeTableItem2,
.merchantTableItem2 {
  color: #999;
  padding: 5px;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  min-width: 950px;
  background-color: #F4FCFF;
}

#newCIty,
#newExpenseType,
#newMerchant {
  padding: 8px 8px 8px 35px;
  margin: 0 0 12px 0;
  border: 1px solid #48b848;
  width: 200px;
  text-transform: capitalize;
}


#collapseLocalTimes:hover,
#expandLocalTimes:hover,
#collapseMyJobs:hover,
#expandMyJobs:hover,
#collapseWorkDays:hover,
#expandWorkDays:hover,
#collapseAwaitingReview:hover,
#expandAwaitingReview:hover,
#expandLeave:hover,
#collapseLeave:hover {
  opacity: 0.4;
  filter: alpha(opacity=40);
  cursor: pointer;
}

.tableItem1 {
  background-color: #F4FCFF;
}

.tableItem2 {
  background-color: #fff;
}

/**********************************
PAGE: Purchase Orders
***********************************/
#PoHeader #poNumber,
#PoHeader #poDate,
#PoHeader #contractorName,
#PoHeader #supplierAddress,
#PoHeader #reference,
#PoHeader #contactPhone,
#PoHeader #email,
#PoHeader #contactName,
#PoHeader #deliverAddress {
  border: 1px solid #48b848;
  resize: none;
  padding: 6px;
  font-size: 12px;
}

#PoHeader label {
  color: #4682b1;
}

#addNewItems textarea {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border: none;
  resize: none;
  color: #999;
}

.hoverItem:hover {
  cursor: pointer;
  background-color: #999;
  color: #fff !important;
}

.Delete:hover {
  cursor: pointer;
}

.Finalise:hover {
  cursor: pointer;
}

@media print {
  #tagLine {
    display: none;
  }

  footer img {
    display: none;
  }

  #introSpiel {
    display: none;
  }
}

input[type="checkbox"] {
  /*display: none;*/
}

input[type="checkbox"]+label:before {
  border: 1px solid #4682b1;
  content: "\00a0";
  display: inline-block;
  font: 18px/1em sans-serif;
  height: 18px;
  margin: 0 1.5em 0 0;
  padding: 0;
  vertical-align: top;
  width: 18px;
  cursor: pointer;
  font-weight: bold;
  color: #0ED82B;
}

input[type="checkbox"]:checked+label:before {
  color: #0ED82B;
  content: "\2713";
  text-align: center;
  cursor: pointer;
}

input[type="checkbox"]:checked+label:after {
  font-weight: bold;
}

.pinkrow {
  background-color: #E4FFEA;
}

.clearAll {
  background-image: url(../images/clear5.png);
  background-color: #f35355;
  width: 31px;
  background-position: center;
  background-repeat: no-repeat;
  height: 31px;
  border: 1px solid #f35355;
}

.clearAll:hover {
  background-color: #4682b1;
  border-color: #4682b1;
}

#expenseReportsTable {
  width: 100%;
  border: 1px solid #4682b1;
  font-size: 12px;
}

#expenseReportsTable th {
  background-color: #4682b1;
  color: #fff;
  padding: 5px;
  font-weight: normal;
}

#expenseReportsTable td {
  padding: 5px;
}

.custom-menu {
  display: none;
  z-index: 1000;
  position: absolute;
  overflow: hidden;
  border: 1px solid #CCC;
  white-space: nowrap;
  font-family: sans-serif;
  background: #FFF;
  color: #333;
  border-radius: 5px;
  padding: 0;
  width: 250px;
}

/* Each of the items in the list */
.custom-menu li {
  list-style-type: none;
  padding: 8px 12px;
  cursor: pointer;
  transition: all .3s ease;
}

.custom-menu li:hover {
  background-color: #DEF;
}

.highlight2 {
  background-color: #999 !important;
  color: #fff !important;
  cursor: pointer !important;
}

#closeWindow3 {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}

#closeWindow3:hover {
  background-color: #848484;
  border: 1px solid #848484;
}

.b7 {
  background-color: #E7C746;
  border: 1px solid #E7C746;
  color: #fff;
}

.b7:hover {
  background-color: #848484;
  border: 1px solid #848484;
}

#workDaysContainer {
  display: none;
}

.addonHeading {
  color: #4682b1;
  font-size: 14px;
}


#newJobForm,
#newCostCodeForm,
#newJobTypeForm,
#newSiteForm,
#newClientForm {
  border: none;
}

#newJobForm tr:hover,
#newCostCodeForm tr:hover,
#newJobTypeForm tr:hover,
#newSiteForm tr:hover,
#newClientForm tr:hover {
  background-color: #fff !important;
  cursor: default;
  color: inherit;
}

.invoice #item,
.invoice #desc,
.invoice #qty,
.invoice #price,
.invoice #tax,
.invoice #taxamount,
.invoice #total,
.invoice #ref,
.invoice #descrip {
  width: 100%;
  border-radius: 0;
  height: 30px;
  color: #000000;
  font-size: 13px;
  text-align: center;
}

.table-invoice textarea {
  padding: 5px;
}

.invoice #descrip {
  text-align: left;
}

.invoice #item {
  text-transform: uppercase;
}

.invoice #item:focus,
.invoice #desc:focus,
.invoice #qty:focus,
.invoice #price:focus,
.invoice #tax:focus,
.invoice #taxamount:focus,
.invoice #total:focus,
.invoice #ref:focus {
  color: #555555;
  text-align: center;
  background-color: #f5f5f5;
}


.invoice #tax {
  text-transform: uppercase;
}

.table.invoice th {
  text-align: center;
}

.upload_queue {
  margin-bottom: 40px;
}

.upload_progress {
  margin-bottom: 0;
}

.user_records {
  /*height: 100px;*/
  overflow: hidden;
}

.error_msg {
  display: block;
  margin-top: 5px;
  color: #d62626;
}

.accessdenied {
  margin: 75px auto 50px;
  padding: 50px 25px 55px;
  max-width: 750px;
  width: 100%;
  text-align: center;
  border: 1px solid #cccccc;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  box-shadow: 2px 2px 5px #cccccc;
  -webkit-box-shadow: 2px 2px 5px #cccccc;
  -moz-box-shadow: 2px 2px 5px #cccccc;
}

.accessdenied img {
  width: 400px;
  margin-bottom: 20px;
}

.accessdenied-text {
  color: #666666;
  font-size: 30px;
}

.accessdenied-button {
  display: inline-block;
  margin-top: 25px;
  padding: 0 20px;
  max-width: 250px;
  width: 100%;
  height: 40px;
  color: #ffffff !important;
  font-weight: bold;
  text-align: center;
  line-height: 40px;
  background-color: #4cae4c;
  border: 1px solid #4cae4c;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  box-shadow: 2px 2px 3px #333333;
  -webkit-box-shadow: 2px 2px 3px #333333;
  -moz-box-shadow: 2px 2px 3px #333333;
}

.accessdenied-button:hover,
.accessdenied-button:active,
.accessdenied-button:focus {
  color: #ffffff !important;
  background-color: #a3d26c;
  border: 1px solid #a3d26c;
}

/**********************************
PAGE: Table Invoice
***********************************/

.invoice-title {
  margin: 40px 0 15px;
  padding: 10px 0;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  background-color: #4cae4c;
}

.table-invoice {
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.table-invoice th {
  vertical-align: middle !important;
  border-left: 1px solid #ffffff;
}

.table-invoice td {
  vertical-align: middle !important;
  border-left: 1px solid #cccccc;
}

.table-invoice td.valign-top {
  vertical-align: top !important;
}

.btn-invoice {
  padding: 1px 5px;
  font-size: 12px;
}

.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  border-color: #007bff;
  outline: none;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
  outline: none;
}

.green-text {
  color: #48b848;
  font-weight: bold;
}

.ui-autocomplete-category {
  font-weight: bold;
  color: #48b848;
  font-size: 14px;
  margin-left: 5px;
}

.ui-autocomplete {
  font-size: 14px;
}

.spinner {
  margin: 0 auto;
  width: 150px;
  text-align: center;
}

strong.select2-results__group {
  color: #48b848;
}


tbody.input-table tr.inv-item-edit>td {
  padding: 4px;
}

tr.inv-item-edit .form-control {
  border-radius: 0px;
}

@media only screen and (max-width: 767px) {

  .report-left,
  .report-center,
  .report-right,
  .administration-left,
  .administration-center,
  .administration-right {
    float: none;
    margin: 0;
    width: 100%;
  }
}


/* Invoice Admin Edit Status Colors */
tr.inv-item-edit.row-edited td,
tr.inv-item-edit.row-edited input,
tr.inv-item-edit.row-edited select {
  background-color: #dff0d8 !important;
}

tr.inv-item-edit.row-deleted td,
tr.inv-item-edit.row-deleted input,
tr.inv-item-edit.row-deleted select {
  background-color: #f2dede !important;
}


.chart-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  margin: 0 auto;
}

.maintenance-container {
  width: 100%;
  text-align: center;
  padding: 50px;
  color: #555;
}

.maintenance-icon {
  font-size: 48px;
  color: #4682b1;
  margin-bottom: 20px;
}

.maintenance-title {
  color: #4682b1;
  margin-top: 5px;
}

.maintenance-text {
  font-size: 16px;
}

/* Custom Row Selection highlight */
.table-striped>tbody>tr.row-selected>td,
.table>tbody>tr.row-selected>td {
  background-color: #d8ecf8 !important;
}

.table-striped>tbody>tr.row-selected:hover>td,
.table>tbody>tr.row-selected:hover>td {
  background-color: #337ab7 !important;
  color: #ffffff !important;
}