@charset "UTF-8";
/* Will be compiled down to a single stylesheet with your sass files
Please do not edit the main.css file directly.
 */
/*@import "foundation/foundation";*/
/*  utils.scss  */
/* heading and primary txt color */
/* secondary txt color  */
/* utility classes  */
.align-right {
  text-align: right; }

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

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

.clear {
  clear: both; }

body {
  background-color: #f2f2f2;
  color: #454545;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif; }

.loadingIndicator {
  position: fixed;
  height: 30px;
  width: 30px;
  top: 25px;
  left: 50%;
  z-index: 10; }
  .loadingIndicator.active {
    display: block; }
  .loadingIndicator i {
    position: absolute;
    left: -25px;
    top: 0;
    height: 30px;
    width: 30px;
    background: transparent url("/images/loading.png") 0px 0px no-repeat;
    background-size: 30px 30px;
    -webkit-animation-name: spinner;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spinner;
    -moz-animation-duration: 1s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    animation-name: spinner;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear; }
    @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
      .loadingIndicator i {
        background-image: url("/images/loading@2x.png"); } }

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg); }
  3% {
    -webkit-transform: rotate(0deg); }
  12% {
    -webkit-transform: rotate(45deg); }
  15% {
    -webkit-transform: rotate(45deg); }
  25% {
    -webkit-transform: rotate(90deg); }
  28.5% {
    -webkit-transform: rotate(90deg); }
  37% {
    -webkit-transform: rotate(135deg); }
  40% {
    -webkit-transform: rotate(135deg); }
  50% {
    -webkit-transform: rotate(180deg); }
  53% {
    -webkit-transform: rotate(180deg); }
  62% {
    -webkit-transform: rotate(225deg); }
  65% {
    -webkit-transform: rotate(225deg); }
  75% {
    -webkit-transform: rotate(270deg); }
  78% {
    -webkit-transform: rotate(270deg); }
  87% {
    -webkit-transform: rotate(315deg); }
  90% {
    -webkit-transform: rotate(315deg); }
  100% {
    -webkit-transform: rotate(360deg); } }

@-moz-keyframes spinner {
  0% {
    -moz-transform: rotate(0deg); }
  3% {
    -moz-transform: rotate(0deg); }
  12% {
    -moz-transform: rotate(45deg); }
  15% {
    -moz-transform: rotate(45deg); }
  25% {
    -moz-transform: rotate(90deg); }
  28.5% {
    -moz-transform: rotate(90deg); }
  37% {
    -moz-transform: rotate(135deg); }
  40% {
    -moz-transform: rotate(135deg); }
  50% {
    -moz-transform: rotate(180deg); }
  53% {
    -moz-transform: rotate(180deg); }
  62% {
    -moz-transform: rotate(225deg); }
  65% {
    -moz-transform: rotate(225deg); }
  75% {
    -moz-transform: rotate(270deg); }
  78% {
    -moz-transform: rotate(270deg); }
  87% {
    -moz-transform: rotate(315deg); }
  90% {
    -moz-transform: rotate(315deg); }
  100% {
    -moz-transform: rotate(360deg); } }

@keyframes spinner {
  0% {
    transform: rotate(0deg); }
  3% {
    transform: rotate(0deg); }
  12% {
    transform: rotate(45deg); }
  15% {
    transform: rotate(45deg); }
  25% {
    transform: rotate(90deg); }
  28.5% {
    transform: rotate(90deg); }
  37% {
    transform: rotate(135deg); }
  40% {
    transform: rotate(135deg); }
  50% {
    transform: rotate(180deg); }
  53% {
    transform: rotate(180deg); }
  62% {
    transform: rotate(225deg); }
  65% {
    transform: rotate(225deg); }
  75% {
    transform: rotate(270deg); }
  78% {
    transform: rotate(270deg); }
  87% {
    transform: rotate(315deg); }
  90% {
    transform: rotate(315deg); }
  100% {
    transform: rotate(360deg); } }

.overlayContainer {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 5; }
  .overlayContainer .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8); }
  .overlayContainer .overlayContentContainer {
    position: relative;
    margin: 15% auto 0;
    width: 70%;
    max-width: 800px;
    background-color: #f2f2f2; }
    .overlayContainer .overlayContentContainer.login {
      width: 400px; }
    .overlayContainer .overlayContentContainer .exitOverlay {
      width: 12px;
      height: 12px;
      position: absolute;
      top: 20px;
      right: 20px;
      z-index: 10;
      cursor: pointer;
      background: transparent url("/images/close.png") right top no-repeat; }
      .overlayContainer .overlayContentContainer .exitOverlay:hover {
        background-position: right -24px; }
      @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
        .overlayContainer .overlayContentContainer .exitOverlay {
          background-position: left top;
          background-size: 18px 24px; }
          .overlayContainer .overlayContentContainer .exitOverlay:hover {
            background-position: left -12px; } }
    .overlayContainer .overlayContentContainer .overlayContent {
      padding: 20px; }
      .overlayContainer .overlayContentContainer .overlayContent.errorMessage {
        padding-right: 50px; }
    @media screen and (max-width: 600px) {
      .overlayContainer .overlayContentContainer {
        width: 90%; }
        .overlayContainer .overlayContentContainer .overlayContent {
          padding: 10px 5px; }
          .overlayContainer .overlayContentContainer .overlayContent.errorMessage {
            padding: 30px 50px 30px 30px; }
          .overlayContainer .overlayContentContainer .overlayContent .row {
            margin: 0 !important; } }

.loginDiv {
  width: 300px;
  margin: 40px auto 0;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif; }
  .loginDiv h1 {
    font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif; }
  .loginDiv i.basecampLogo {
    width: 40px;
    height: 34px;
    margin: 0 auto;
    display: block;
    background: transparent url("/images/basecampLogo.png") center 0 no-repeat;
    background-position: right top; }
    @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
      .loginDiv i.basecampLogo {
        background-position: left top;
        background-size: 60px 34px; } }
  @media screen and (max-width: 600px) {
    .loginDiv {
      margin-top: 20px; } }
  .loginDiv .errMsg {
    margin: 10px 0;
    padding: 10px;
    background-color: #FFE9E9;
    border: 1px solid #FFB3C4;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    font-family: Helvetica;
    font-size: .9em;
    line-height: 20px;
    color: #ED1C24; }
  .loginDiv h1 {
    font-size: 1.4em;
    text-align: center;
    font-weight: 300;
    margin-top: 0.5em;
    margin-bottom: 1em; }
  .loginDiv .submitRow .left {
    font-size: .9em;
    height: 33px;
    line-height: 33px;
    margin-right: 10px; }
  .loginDiv h4 {
    font-size: .9em;
    clear: both;
    text-align: center;
    margin-top: 50px; }
    .loginDiv h4 a {
      color: #8CC640;
      font-weight: 300; }

/*	Navbar stuff */
#top-bar {
  background-color: #8CC640;
  height: 4px; }

#logo {
  width: 275px;
  height: 39px;
  margin-top: 28px;
  margin-left: 15px;
  cursor: pointer;
  background: url("/images/merc-logo.png") no-repeat top left; }
  @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
    #logo #logo {
      /* on retina, use image that's scaled by 2 */
      background-image: url("/images/merc-logo2x.png");
      background-size: 175px 39px; } }
  #logo div {
    width: 80px;
    height: 28px;
    line-height: 28px;
    position: absolute;
    right: 0px;
    top: 8px;
    font-size: 1.1em;
    font-weight: 200;
    border-left: 1px solid #8CC640;
    padding-left: 15px; }
  @media screen and (max-width: 600px) {
    #logo {
      margin: 28px auto 30px !important;
      float: none; } }

#account-bottom {
  display: none; }
  @media screen and (max-width: 600px) {
    #account-bottom {
      display: block;
      margin: 15px 0px;
      font-weight: thin;
      font-size: 0.7em;
      color: #B2B2B2;
      text-align: center; }
      #account-bottom div {
        margin: 3px 0; }
      #account-bottom a {
        color: #333;
        font-size: 1.1em; }
      #account-bottom img {
        vertical-align: middle;
        border-radius: 34px;
        border: 1px solid #ccc;
        width: 34px;
        height: 34px; } }

#right-section {
  margin-right: 10px;
  margin-bottom: 15px;
  text-align: right;
  float: right; }
  @media screen and (max-width: 600px) {
    #right-section {
      display: none; } }
  #right-section #account {
    height: 34px;
    margin: 10px 0px 10px 10px;
    font-weight: thin;
    font-size: 0.7em;
    color: #B2B2B2; }
    #right-section #account a {
      color: #333;
      content: '';
      border-left: 1px solid #999;
      margin-left: 4px;
      padding-left: 6px; }
    #right-section #account img {
      vertical-align: middle;
      border-radius: 34px;
      border: 1px solid #ccc;
      width: 34px;
      height: 34px;
      margin-right: 10px; }
  #right-section #nav {
    margin-top: 10px;
    font-size: .9em; }
    #right-section #nav nav ul li {
      display: inline;
      list-style-type: none;
      margin-left: 20px; }
      #right-section #nav nav ul li.adminLnk {
        padding-bottom: 5px; }
        #right-section #nav nav ul li.adminLnk ul {
          height: 150px;
          border: 1px solid #8CC640;
          background-color: white; }
      #right-section #nav nav ul li ul {
        padding: 5px 10px 0;
        margin-top: 0px;
        position: absolute;
        right: 15px;
        height: 0px;
        overflow: hidden;
        z-index: 100;
        -ms-border-radius: 3px;
        -o-border-radius: 3px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px; }
        #right-section #nav nav ul li ul li {
          padding-bottom: 1px; }
          #right-section #nav nav ul li ul li.active {
            border: none; }
            #right-section #nav nav ul li ul li.active a {
              border-bottom: 2px solid #8CC640; }
    #right-section #nav nav ul li ul li {
      display: block; }
    #right-section #nav nav a {
      text-transform: uppercase;
      color: #333;
      font-size: 0.95em;
      border-bottom: 2px solid transparent; }
    #right-section #nav .active {
      padding-bottom: 5px;
      border-bottom: 2px solid #8CC640; }

/* main content */
.container {
  margin-right: auto;
  margin-left: auto; }
  .container.header, .container .row.time {
    max-width: 1000px; }

.top-bar {
  background-color: #181818; }

.top-bar-section li a:not(.button) {
  background: #181818; }

.top-bar-section li.active a:not(.button) {
  background: #313131; }

input[type="text"], input[type="password"], textarea {
  font-family: Helvetica, Arial, sans-serif !important;
  /*font-size: 1.2em !important;   */
  background-color: white !important;
  border-style: solid;
  color: black !important;
  outline: none !important;
  -webkit-appearance: none;
  border: 1px solid #d9d9d9 !important;
  height: 36px !important;
  box-shadow: none !important;
  border-radius: 2px;
  padding: 0.5em 1em !important; }

input:focus, textarea:focus {
  border: 1px solid black !important; }

::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #B2B2B2; }

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #B2B2B2; }

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #B2B2B2; }

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #B2B2B2; }

ul {
  list-style-type: none; }

ul.users {
  min-height: 80px;
  padding: 10px; }

li.user {
  font-size: 0.8em;
  text-decoration: none !important;
  font-weight: bold;
  padding: 2px;
  cursor: pointer;
  width: 120px; }

li.user img {
  border-radius: 30px;
  /*border: 1px solid #999;*/
  width: 55px;
  height: 55px;
  margin-left: auto;
  margin-right: auto;
  display: block; }

li.user div {
  width: 100%;
  text-align: center; }

.users-placeholder {
  height: 20px;
  width: 80px;
  background-color: red; }

.ui-state-active {
  background-color: #6fe471;
  border-color: 2px solid #666;
  border-radius: 10px; }

.syncing a {
  color: blue !important; }

/** Calendar **/
#calendar {
  width: 305px !important;
  position: absolute;
  padding: 0 0.9375em; }
  @media screen and (max-width: 600px) {
    #calendar {
      width: 100% !important;
      position: relative; } }

.timeEntryContainer {
  width: 100%;
  padding-right: 0.9375em;
  padding-left: 315px; }
  @media screen and (max-width: 600px) {
    .timeEntryContainer {
      padding-left: .9375em; } }
  .timeEntryContainer .form {
    padding: 10px; }
  @media only screen and (min-width: 48em) {
    .timeEntryContainer .timeProjRow .timeCol {
      padding-right: 10px; }
    .timeEntryContainer .timeProjRow .projCol {
      padding-left: 0; } }

.form {
  background-color: #E6E6E6;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border-bottom: 1px solid white;
  padding: 10px 0px; }

.userTable {
  display: table;
  padding: 10px; }
  .userTable .userRow {
    display: table-row; }
  .userTable .userCell {
    display: table-column;
    float: left; }

.projecttable {
  display: table;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.2); }
  .projecttable .projectRow {
    display: table-row; }
  .projecttable .projectTitleCell {
    display: table-column;
    float: left;
    font-weight: bold;
    font-size: 32px;
    text-align: left; }
  .projecttable .projectSectionTitleCell {
    display: table-column;
    float: left;
    font-weight: bold;
    font-size: 18px;
    text-align: left;
    padding: 4px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5); }
  .projecttable .projectLabelCell {
    display: table-column;
    float: left;
    padding: 4px;
    font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
    font-weight: bold;
    width: 80px;
    background-color: rgba(255, 255, 255, 0.5); }
  .projecttable .projectContentCell {
    display: table-column;
    float: left;
    padding: 4px; }

.ui-helper-hidden-accessible {
  display: none; }

ul.ui-autocomplete {
  border: 1px solid #838383;
  background-color: white;
  width: 30%;
  height: 300px;
  overflow: scroll;
  padding: 5px;
  z-index: 1000;
  font-size: .875em; }
  ul.ui-autocomplete li {
    padding: 5px 10px 5px 10px; }
    ul.ui-autocomplete li.category {
      font-weight: 600; }

.ui-menu-item a {
  color: #454545;
  cursor: pointer; }
  .ui-menu-item a.projectOption {
    margin-left: 10px; }
    .ui-menu-item a.projectOption.all {
      margin-left: 0;
      font-weight: 600; }
  .ui-menu-item a.groupOption {
    font-weight: 600; }
  .ui-menu-item a.personOption {
    margin-left: 10px; }
    .ui-menu-item a.personOption .boxLabel {
      display: none; }

.ui-state-active {
  background-color: #f2f2f2;
  border-radius: 2px; }

.dropdown {
  position: relative;
  float: right;
  margin-top: -48px;
  width: 32px;
  height: 31px;
  cursor: pointer;
  margin-right: 10px; }
  .dropdown i {
    background: transparent url("/images/dd_arrow.png") right top no-repeat;
    height: 5px;
    width: 8px;
    position: absolute;
    top: 14px;
    left: 20px; }
    @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
      .dropdown i {
        background-position: left top;
        background-size: 12px 10px; } }
  .dropdown:hover i {
    background-position: right -10px; }
    @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
      .dropdown:hover i {
        background-position: left -5px; } }

.ui-autocomplete {
  max-height: 400px;
  overflow: auto; }
  .ui-autocomplete .boxLabel {
    margin-left: 8px;
    color: #B2B2B2;
    border-radius: 2px;
    font-size: 0.75em; }

/** Time Entries **/
h2.entryHeading {
  text-transform: uppercase;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
  font-size: 0.9em;
  font-weight: 300;
  color: #333; }
  @media screen and (max-width: 600px) {
    h2.entryHeading {
      margin: 15px 0 10px !important; } }

#timeEntries {
  padding: 10px; }
  #timeEntries h3 {
    font-size: 1em;
    font-weight: 400;
    margin-bottom: 0px;
    font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif; }
  #timeEntries h4 {
    font-size: 0.7em;
    font-weight: 400;
    color: #a6a6a6;
    text-transform: uppercase;
    font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif; }
  #timeEntries hr {
    margin: 0 5px 6px;
    border-top: 1px solid #d9d9d9; }
  #timeEntries .project {
    margin-bottom: 30px; }
  #timeEntries .entry {
    margin-bottom: 10px;
    font-size: .95em;
    line-height: 1.6em;
    padding-right: 30px;
    cursor: pointer;
    font-family: Helvetica, Arial, sans-serif; }
    @media screen and (max-width: 600px) {
      #timeEntries .entry {
        font-size: .8em; }
        #timeEntries .entry .large-1 {
          width: 35px !important; }
        #timeEntries .entry .large-11 {
          width: 220px !important; } }
  #timeEntries i.edit {
    position: absolute;
    right: 0;
    top: 5px;
    width: 15px;
    height: 15px;
    cursor: pointer;
    background: transparent url("../images/edit_pencil.png") no-repeat -30px 0; }
    @media screen and (max-width: 600px) {
      #timeEntries i.edit {
        background-position: -30px -30px; } }
  #timeEntries i.edit.hover {
    background-position: -30px -30px; }
  #timeEntries .editing i.edit {
    background-position: -30px -30px; }
  #timeEntries .ng-scope {
    position: relative; }
  #timeEntries .lbl {
    text-align: left;
    color: #666; }
  #timeEntries .nums {
    color: #999; }
  #timeEntries .alert {
    color: #ED1C24; }
  @media screen and (max-width: 360px) {
    #timeEntries .estimateMeter {
      display: none; } }

input[type='button'], input[type='submit'] {
  background-color: #8CC640 !important;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  height: 28px;
  padding: 0 16px;
  font-size: 1em;
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif !important;
  text-shadow: #93db6b 0px 1px;
  border: none;
  border-bottom: 2px solid #76BB1B;
  line-height: 28px;
  margin: 0;
  cursor: pointer;
  color: #333; }
  input[type='button']:hover, input[type='submit']:hover {
    background-color: #76BB1B !important; }
  input[type='button']:focus, input[type='submit']:focus {
    border-bottom: 1px solid black !important; }
  input[type='button'].redBtn, input[type='submit'].redBtn {
    background-color: #E5001C !important;
    color: #FFF !important;
    border-bottom-color: #CE1C24 !important;
    text-shadow: 0 1px #CE1C24 !important; }
  input[type='button'].greyBtn, input[type='submit'].greyBtn {
    background-color: #CCCCCC !important;
    color: #333 !important;
    border-bottom-color: #BFBFBF !important;
    text-shadow: 0 1px #E5E5E5 !important; }
    input[type='button'].greyBtn:hover, input[type='submit'].greyBtn:hover {
      background-color: #BFBFBF !important; }
    input[type='button'].greyBtn:focus, input[type='submit'].greyBtn:focus {
      border-bottom: 1px solid black !important; }
  input[type='button'].csvBtn, input[type='submit'].csvBtn {
    font-size: .9em;
    padding-left: 30px;
    background: transparent url("/images/download.png") 14px 7px no-repeat;
    background-size: 10px 14px; }
    @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
      input[type='button'].csvBtn, input[type='submit'].csvBtn {
        background-image: url("/images/download@2x.png"); } }

.submitRow {
  font-size: .9em; }
  .submitRow .btnDiv.cancel {
    margin-right: 15px; }
  .submitRow a {
    font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif;
    color: #666;
    line-height: 28px; }
    .submitRow a:focus, .submitRow a:hover {
      color: #333; }

.editEntry h2.entryHeading {
  text-transform: none;
  font-size: 1.1em;
  font-weight: 400;
  color: #333; }

.editEntry div {
  padding-left: 5px !important;
  padding-right: 5px !important; }
  .editEntry div .btnDiv {
    padding: 0 !important; }

.editEntry input[type="text"], .editEntry textarea {
  font-size: .8em;
  padding: 0.5em 0.7em !important; }

@media screen and (max-width: 360px) {
  .editEntry .btnDiv.right, .editEntry .btnDiv.left {
    float: none !important;
    margin: 5px auto;
    width: 140px;
    text-align: center; }
    .editEntry .btnDiv.right input, .editEntry .btnDiv.left input {
      width: 140px; } }

/** Confirmation Switch **/
.confirmLabel {
  margin-right: 15px;
  color: #B2B2B2; }
  .confirmLabel.w320 {
    display: none; }
  @media screen and (max-width: 360px) {
    .confirmLabel {
      display: none; }
      .confirmLabel.w320 {
        display: block; } }

#confirmationSwitch {
  width: 50px;
  float: right; }
  #confirmationSwitch .confirmationDiv div.right {
    margin-right: 10px;
    line-height: 32px; }
  #confirmationSwitch .switch-border {
    height: 32px;
    position: relative;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    border: 3px solid #d9d9d9;
    background-color: #ea212d;
    cursor: pointer; }
  #confirmationSwitch .switch-inner {
    background-color: #FFF;
    float: left;
    -webkit-border-radius: 11px;
    -moz-border-radius: 11px;
    border-radius: 11px;
    height: 22px;
    width: 22px;
    position: relative;
    top: 2px;
    left: 3px;
    -ms-box-shadow: 3px 0 1px rgba(102, 102, 102, 0.4);
    filter: Glow(color=#66666666, strength=numericvalue(1px));
    -ms-filter: glow(color=#66666666, strength=numericvalue(1px));
    -o-box-shadow: 3px 0 1px rgba(102, 102, 102, 0.4);
    -moz-box-shadow: 3px 0 1px rgba(102, 102, 102, 0.4);
    -webkit-box-shadow: 3px 0 1px rgba(102, 102, 102, 0.4);
    box-shadow: 3px 0 1px rgba(102, 102, 102, 0.4);
    -webkit-animation-name: confirmed-slideback;
    -webkit-animation-duration: 1s;
    -moz-animation-name: confirmed-slideback;
    -moz-animation-duration: 1s;
    animation-name: confirmed-slideback;
    animation-duration: 1s; }
  #confirmationSwitch .switch-border.confirmed {
    background-color: #8dc44a; }
  #confirmationSwitch .switch-border.confirmed .switch-inner {
    left: 19px;
    -ms-box-shadow: -3px 0 1px rgba(102, 102, 102, 0.4);
    filter: Glow(color=#66666666, strength=numericvalue(1px));
    -ms-filter: glow(color=#66666666, strength=numericvalue(1px));
    -o-box-shadow: -3px 0 1px rgba(102, 102, 102, 0.4);
    -moz-box-shadow: -3px 0 1px rgba(102, 102, 102, 0.4);
    -webkit-box-shadow: -3px 0 1px rgba(102, 102, 102, 0.4);
    box-shadow: -3px 0 1px rgba(102, 102, 102, 0.4);
    -webkit-animation-name: confirmed-slide;
    -webkit-animation-duration: 1s;
    -moz-animation-name: confirmed-slide;
    -moz-animation-duration: 1s;
    animation-name: confirmed-slide;
    animation-duration: 1s; }

@-webkit-keyframes confirmed-slide {
  from {
    left: 3px; }
  to {
    left: 29px; } }

@-moz-keyframes confirmed-slide {
  from {
    left: 3px; }
  to {
    left: 29px; } }

@keyframes confirmed-slide {
  from {
    left: 3px; }
  to {
    left: 29px; } }

@-webkit-keyframes confirmed-slideback {
  from {
    left: 29px; }
  to {
    left: 3px; } }

@-moz-keyframes confirmed-slideback {
  from {
    left: 29px; }
  to {
    left: 3px; } }

@keyframes confirmed-slideback {
  from {
    left: 29px; }
  to {
    left: 3px; } }

#sumRow div {
  line-height: 32px;
  font-size: 1.0em; }

/** Estimate meter customization **/
.estimateMeter {
  font-size: 0.7em;
  font-weight: 400;
  color: #454545;
  cursor: pointer; }
  .estimateMeter .progress {
    margin-bottom: 8px;
    margin-top: 8px;
    border: none;
    height: 12px;
    background-color: #d9d9d9;
    padding: 0px;
    border-bottom: 1px solid white;
    overflow: hidden; }
  .estimateMeter .progress .meter {
    background-color: #666; }
  .estimateMeter:hover ul {
    display: block; }
  .estimateMeter ul {
    display: none;
    background-color: white;
    border: 1px solid #d9d9d9;
    width: 250px;
    position: absolute;
    bottom: 26px;
    left: -140px;
    padding: 12px; }
  .estimateMeter ul:after, .estimateMeter ul:before {
    content: " ";
    border-left: 6px solid transparent;
    border-top: 6px solid white;
    border-right: 6px solid transparent;
    width: 0;
    height: 0;
    display: block;
    position: absolute;
    left: 80%;
    margin-left: -6px;
    margin-top: 12px; }
  .estimateMeter ul:before {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid;
    border-top-color: inherit;
    bottom: -8px;
    margin-left: -8px; }
  .estimateMeter .totalInfo {
    margin-top: 5px; }
  .estimateMeter .hrs {
    text-align: left;
    color: #999; }

/*
	Reports center stuff (and sub-nav tweaking)
 */
dl.sub-nav {
  margin: 0 auto;
  max-width: 1000px; }
  dl.sub-nav dd {
    font-size: .8em;
    width: 180px;
    height: 58px;
    padding: 10px 20px;
    margin-bottom: 0px;
    color: #999;
    text-transform: uppercase;
    line-height: 16px;
    z-index: 10; }
    @media screen and (max-width: 600px) {
      dl.sub-nav dd {
        width: 100px; } }
    dl.sub-nav dd.active {
      background-color: #ededed;
      border: 1px solid #dadada;
      border-bottom: none;
      color: #333; }
      dl.sub-nav dd.active a {
        -webkit-border-radius: 0px;
        border-radius: 0px;
        font-weight: normal;
        background: none !important;
        padding: 0px;
        color: #333 !important; }
    dl.sub-nav dd a {
      display: block; }
      dl.sub-nav dd a:hover {
        color: #333; }

.sortable {
  cursor: pointer; }

.sorting:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #454545;
  content: "";
  position: relative;
  height: 4px;
  right: -5px;
  top: 10px;
  width: 4px; }

.sorting.ascending:after {
  border-top: none;
  border-bottom: 4px solid #454545;
  top: -11px; }

.container .reports {
  background-color: #f3f3f3;
  margin-top: -1px;
  border-top: 1px solid #dadada; }
  .container .reports:before {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#f3f3f3 64px));
    background-image: -moz-linear-gradient(top, #ededed, #f3f3f3 64px);
    background-image: -ms-linear-gradient(top, #ededed 0%, #f3f3f3 64px);
    background-image: linear-gradient(to bottom, #ededed 0%, #f3f3f3 64px);
    content: '';
    display: block;
    margin-top: 0px;
    margin-left: 0px;
    width: 100%;
    height: 64px; }
  .container .reports .reportsPadding {
    margin-top: -24px;
    padding: 0 20px 20px; }
  .container .reports .row.containerRow {
    max-width: 1000px; }
  .container .reports .row .row {
    margin: 0; }
  .container .reports.projectList .devTemp {
    margin-left: 15px; }
  .container .reports.projectList .project {
    border-bottom: 1px solid #dadada;
    padding: 10px 0;
    cursor: pointer; }
    .container .reports.projectList .project h3 {
      font-size: .9em;
      font-weight: 300;
      margin-bottom: 0px;
      color: #454545; }
    .container .reports.projectList .project h4 {
      font-size: 0.7em;
      font-weight: 400;
      color: #a6a6a6;
      text-transform: uppercase;
      margin: 0; }
    .container .reports.projectList .project .projectProgress .progress {
      margin-bottom: 5px !important; }
    .container .reports.projectList .project .projectProgress h4 {
      text-transform: none; }
    .container .reports.projectList .project .projectProgress.alert h4 {
      color: #E5001C; }
    .container .reports.projectList .project .projectProgress.alert .meter {
      background-color: #E5001C; }
    .container .reports.projectList .project i.chevron {
      height: 14px;
      width: 9px;
      position: absolute;
      right: 10px;
      top: 16px;
      background: transparent url("/images/chevron.png") right top no-repeat; }
      @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
        .container .reports.projectList .project i.chevron {
          background-size: 13.5px 28px;
          background-position: left top; } }
    .container .reports.projectList .project:hover {
      background: transparent url("/images/projectoverview_hilite.png") 0 0 no-repeat;
      background-size: 100% 100%; }
      @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
        .container .reports.projectList .project:hover {
          background-image: url("/images/projectoverview_hilite@2x.png"); } }
      .container .reports.projectList .project:hover i.chevron {
        background-position: right -28px; }
        @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
          .container .reports.projectList .project:hover i.chevron {
            background-position: left -14px; } }
  .container .reports.projectDetail .backNav {
    position: relative;
    padding-left: 30px;
    line-height: 12px;
    margin-bottom: 15px;
    float: left; }
    .container .reports.projectDetail .backNav a {
      font-size: .8em;
      color: #666;
      font-weight: 300; }
    .container .reports.projectDetail .backNav i {
      height: 14px;
      width: 9px;
      position: absolute;
      left: 5px;
      background: transparent url("/images/back.png") right top no-repeat; }
      @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
        .container .reports.projectDetail .backNav i {
          background-size: 13.5px 28px;
          background-position: left top; } }
    .container .reports.projectDetail .backNav:hover a {
      color: #333; }
    .container .reports.projectDetail .backNav:hover i {
      background-position: right -28px; }
      @media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6 / 2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
        .container .reports.projectDetail .backNav:hover i {
          background-position: left -14px; } }
  .container .reports.projectDetail h3 {
    font-size: 1em;
    font-weight: 300;
    margin-bottom: 0px; }
  .container .reports.projectDetail h4 {
    font-size: 0.8em;
    font-weight: 400;
    color: #a6a6a6;
    margin: 0; }
  .container .reports.projectDetail .projectProgress.alert h4 {
    color: #E5001C; }
  .container .reports.projectDetail .projectProgress.alert .meter {
    background-color: #E5001C; }
  .container .reports.projectDetail .projectTotal {
    border-bottom: 1px solid #dadada;
    padding: 10px 0;
    margin-bottom: 20px; }
  .container .reports.projectDetail .departmentTotal {
    padding: 5px 0; }
    .container .reports.projectDetail .departmentTotal .departmentInfo {
      margin-bottom: 20px; }
    .container .reports.projectDetail .departmentTotal h3 {
      font-size: .9em; }
    .container .reports.projectDetail .departmentTotal h4 {
      font-size: .7em; }
    .container .reports.projectDetail .departmentTotal .progress {
      margin-bottom: 4px; }
    .container .reports.projectDetail .departmentTotal .alert h4 {
      color: #E5001C; }
    .container .reports.projectDetail .departmentTotal .alert .meter {
      background-color: #E5001C; }
    .container .reports.projectDetail .departmentTotal [class*="column"] + [class*="column"]:last-child {
      float: left; }
  .container .reports.projectDetail .estimateMeter {
    cursor: default; }
  .container .reports .entryReport .projectEntriesHeader {
    border-bottom: 1px solid #dadada;
    padding: 10px 0;
    margin-top: 20px;
    font-weight: 300;
    font-size: .95em;
    color: #333; }
  .container .reports .entryReport .projectEntry {
    padding: 10px 0;
    font-size: .8em; }
    .container .reports .entryReport .projectEntry .sec {
      color: #B2B2B2;
      font-size: .7em;
      text-transform: uppercase;
      margin-top: 5px; }
  .container .reports .entryReport .entriesTotal {
    border-top: 1px solid #dadada;
    font-size: .9em;
    padding-top: 10px; }
  .container .reports .entryReport .noEntries {
    margin-top: 20px;
    font-size: .9em; }
  .container .reports.custom .formlbl {
    line-height: 36px;
    font-size: .9em;
    padding-left: 20px; }
  .container .reports.custom .filterRange {
    font-size: .9em; }
    .container .reports.custom .filterRange input[type='radio'] {
      margin-left: 25px;
      margin-right: 5px; }
      .container .reports.custom .filterRange input[type='radio']:first-child {
        margin-left: 5px; }
    .container .reports.custom .filterRange .rangeDate {
      width: 105px;
      display: inline; }
  .container .reports.custom .btnDiv {
    margin-left: 10px; }
  .container .reports.myReports .filterSummaryRow {
    margin-top: 25px; }
  .container .reports.myReports .formlbl {
    line-height: 36px;
    font-size: 1em;
    padding-left: 20px; }
  .container .reports.myReports .submitRow input[type='text'] {
    margin-bottom: 0;
    font-size: 1em; }
  .container .reports.myReports .submitRow input[type='button'] {
    height: 28px; }
  .container .reports.myReports .form input[type='button'] {
    height: 34px;
    max-width: 100%; }
  .container .reports.myReports .dropdown {
    margin-top: -34px; }

.manageReportsDialog {
  font-weight: 300; }
  .manageReportsDialog h2 {
    font-size: 1.2em;
    margin-bottom: 25px;
    font-weight: 300;
    color: #333; }
  .manageReportsDialog .reportsList {
    font-size: .9em;
    border-top: 1px solid #D9D9D9;
    padding: 15px 0; }
    .manageReportsDialog .reportsList .sec {
      color: #B2B2B2;
      font-size: .7em;
      margin-top: 8px;
      text-transform: uppercase; }
      .manageReportsDialog .reportsList .sec span {
        text-transform: none; }
  .manageReportsDialog input.redBtn {
    margin-left: 10px; }
  .manageReportsDialog input.defaultBtn {
    width: 133px; }
    .manageReportsDialog input.defaultBtn.isDefault {
      opacity: 0.5;
      filter: alpha(opacity=50);
      zoom: 1; }
      .manageReportsDialog input.defaultBtn.isDefault:hover {
        background-color: #C1C1C1 !important; }
      .manageReportsDialog input.defaultBtn.isDefault:focus {
        border-bottom: 1px solid #BCBCBC !important; }

.filterSummaryRow {
  margin: 15px 0;
  font-weight: 300;
  text-transform: uppercase; }
  .filterSummaryRow .filterSummary {
    line-height: 35px;
    font-size: .9em; }
  .filterSummaryRow span {
    color: #B2B2B2;
    text-transform: none; }

.saveReportDialog h2 {
  font-size: 1.3em;
  margin-bottom: 25px;
  font-weight: 300;
  color: #333; }

.saveReportDialog .filterSummary {
  font-size: .9em;
  margin-bottom: 15px; }
  .saveReportDialog .filterSummary span {
    color: #B2B2B2; }

.saveReportDialog .errMsg {
  padding: 10px;
  margin-bottom: 10px;
  background-color: #FFE9E9;
  border: 1px solid #FFB3C4;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  font-family: Helvetica;
  font-size: .9em;
  line-height: 20px;
  color: #ED1C24; }

.saveReportDialog div.columns {
  padding-left: 15px; }

/*datepicker styles*/
#ui-datepicker-div {
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 5px solid #C1C1C1; }

.ui-datepicker {
  font-family: "Gotham A", "Gotham B", Helvetica, Arial, sans-serif !important;
  background-color: #e6e6e6; }
  .ui-datepicker td.zero a:before {
    content: "0"; }

.ui-datepicker-prev {
  float: left;
  cursor: pointer; }

.ui-datepicker-next {
  float: right;
  cursor: pointer; }

.ui-datepicker-title {
  text-align: center; }

.ui-datepicker-title span {
  color: #404040;
  font-weight: 400;
  font-style: normal; }

.ui-datepicker-prev {
  float: left; }

.ui-datepicker-next {
  float: right; }

.ui-datepicker-prev:before,
.ui-datepicker-next:before {
  content: " ";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #656565;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto; }

.ui-datepicker-next:before {
  border-right: 0;
  border-left: 0.35em solid #656565; }

.ui-datepicker-prev:hover,
.ui-datepicker-next:hover {
  cursor: pointer;
  color: #656565; }

.ui-datepicker-prev:hover:before,
.ui-datepicker-next:hover:before {
  border-left-color: #c3c3c3;
  border-right-color: #c3c3c3; }

.ui-datepicker-header {
  padding-top: 15px;
  padding-left: 10px;
  padding-right: 10px; }

.ui-datepicker-title {
  font-size: 0.8em;
  font-weight: bold;
  color: #2c2c2c;
  text-transform: uppercase; }

a.ui-state-active {
  background-color: white; }

.ui-datepicker-calendar {
  margin: 0px;
  width: 100%;
  background-color: transparent;
  border: none;
  border-radius: 3px;
  border-bottom: 1px solid white;
  padding: 1px; }
  .ui-datepicker-calendar th {
    font-weight: normal;
    color: #b2b2b2;
    font-size: 0.5em;
    background-color: transparent;
    text-transform: uppercase;
    text-align: center; }
  .ui-datepicker-calendar thead {
    background-color: transparent; }
  .ui-datepicker-calendar thead tr th,
  .ui-datepicker-calendar thead tr td,
  .ui-datepicker-calendar tfoot tr th,
  .ui-datepicker-calendar tfoot tr td {
    padding: 1.5em 0.625em 0.625em; }
  .ui-datepicker-calendar tbody {
    /* Declaring this separately because it seems to help with cursor flashing */
    cursor: pointer; }
    .ui-datepicker-calendar tbody tr td {
      background-color: #f2f2f2;
      border-radius: 2px;
      text-align: center; }
    .ui-datepicker-calendar tbody tr td:hover {
      background-color: white; }
  .ui-datepicker-calendar a.ui-state-default {
    color: #191919; }
  .ui-datepicker-calendar a.ui-priority-secondary, .ui-datepicker-calendar .ui-datepicker-week-end a.ui-state-default {
    color: #b2b2b2; }
  .ui-datepicker-calendar td.ui-datepicker-other-month {
    background-color: transparent; }
  .ui-datepicker-calendar td.ui-datepicker-current-day {
    background-color: white; }

#calendar {
  /* The confirmation dot */ }
  #calendar .ui-datepicker-calendar tbody tr td {
    height: 38px; }
  #calendar .ui-datepicker-calendar tbody tr td a {
    display: block; }
  #calendar .ui-datepicker-calendar tbody tr td a:after {
    content: '';
    display: block;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    width: 7px;
    height: 7px;
    border-radius: 7px;
    background-color: #d9d9d9; }
  #calendar .confirmed-true a:after {
    border: 2px solid #7ebe00;
    background-color: transparent !important; }
  #calendar .confirmed-false a:after {
    content: '×' !important;
    margin-top: 0px !important;
    height: 12px !important;
    width: auto !important;
    background-color: transparent !important;
    color: #ea212d; }

.department input[type="text"] {
  height: auto !important; }

.department h2 {
  margin-top: 0.2em; }

.preferences {
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  flex-flow: column wrap;
  font-weight: 100;
  font-family: Helvetica;
  color: #333; }
  .preferences .createbutton {
    font-size: .75em;
    line-height: 1em;
    height: 24px;
    padding: 4px 10px; }

.prefspageheader {
  padding-left: 12px; }

.prefssection {
  height: 28px;
  padding-left: 12px;
  border-bottom: 1px solid #dadada;
  margin-bottom: 8px;
  color: #454545; }

.prefsrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 38px;
  padding-left: 12px;
  color: #666666;
  font-size: .9em; }

.prefssectionfooter {
  padding-left: 12px;
  margin-top: 14px; }

.prefscol1 {
  width: 200px; }

.prefscol2 {
  width: 160px; }

.prefsiconcol {
  width: 40px; }

.prefspace {
  height: 58px; }

.prefsbutton {
  display: inline-block;
  width: 15px;
  height: 15px; }
  .prefsbutton:hover {
    background-position: -30px -30px !important; }
  .prefsbutton.editbutton {
    background: transparent url("../images/edit_pencil.png") no-repeat -30px 0; }
  .prefsbutton.deletebutton {
    background: transparent url("../images/delete_trashcan.png") no-repeat -30px 0; }
