.workTimeBox {
  text-align: center;
  white-space: normal;
  padding: 10px;
}

.workTimeBox .task-name {
  padding: 10px 20px;
  font-size: small;
  color: #7194a4;
}

.workTimeBox .task-name.active {
  color: white;
  background-color: #3e5159;
  border-radius: 3px;
}

#currentWorkTimer {
  vertical-align: middle;
  margin-top: 15px;
}

.currentWorkActions {
  padding: 10px 20px;
}

.timer {
  color: white;
  font-size: large;
  display: inline-block;
  width: 55%;
}

.timer small {
  color: #a4a9af;
  margin-left: -3px;
}

.clock-dots {
  margin: 0 -4px;
}

.clock-dots-white.counting {
  animation: blinkingText 1.2s infinite;
}

@keyframes blinkingText {
  0% {
    color: white;
  }

  49% {
    color: white;
  }

  60% {
    color: transparent;
  }

  99% {
    color: transparent;
  }

  100% {
    color: white;
  }
}

.clock-dots-black.counting {
  animation: blinkingTextBlack 1.2s infinite;
}

@keyframes blinkingTextBlack {
  0% {
    color: black;
  }

  49% {
    color: black;
  }

  60% {
    color: transparent;
  }

  99% {
    color: transparent;
  }

  100% {
    color: black;
  }
}


.nowrap {
  white-space: nowrap;
}

.checkbox-label {
  font-size: normal;
  vertical-align: text-bottom;
}

form.form-no-label-column .col-sm-3.control-label {
  display: none;
}

form.form-no-label-column .field-column {
  width: 100%;
}

.label {
  padding: .3em .6em .2em;
}

.content-wrapper.fullscreen {
  margin-left: 0 !important;
  background-color: transparent;
}

.monitor-stats {
  padding: 30px;
}




.monitor-employee-panel {
  max-width: 100%;
  margin: 0 !important;
  padding: 10px;
}

.monitor-employee-panel .employee-monitor {
  margin-bottom: 5px;
  padding: 20px 40px;
  font-size: 1.5vw;
  color: white;
  vertical-align: middle;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.monitor-employee-panel .employee-monitor .name {
  font-weight: bolder;
  white-space: nowrap;
  margin-right: 40px;
}

.monitor-employee-panel .employee-monitor .work {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.monitor-employee-panel .employee-monitor .work .taskDescription {
  margin-left: 2vw;
  font-size: 1.3vw;
}

.monitor-employee-panel .employee-monitor .work .taskProjectName {
  margin-left: 2vw;
  font-size: 1.1vw;
}

.monitor-employee-panel .employee-monitor .taskTime {
  white-space: nowrap;
  font-size: 1.3vw;
}

.monitor-employee-panel .employee-monitor .workdayTime {
  margin-left: 4vw;
  text-align: right;
  white-space: nowrap;
}

.monitor-employee-panel .employee-monitor.active {
  background-color: #00a65a;
}

.monitor-employee-panel .employee-monitor.inactive {
  background-color: #dd4b39;
}

.monitor-employee-panel .employee-monitor.out {
  background-color: #46474b;
}

.monitor-employee-panel .employee-monitor div {
  display: inline-block;
  ;

}

body>.wrapper>.control-sidebar {
  display: none;
}

.control-sidebar {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
  min-height: inherit;
}

html,
body {}

.wrapper {
  display: flex;
  flex-flow: column;
  height: 100%;
  overflow: auto;

}

.main-header {
  flex: 0 1 auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;

  /* The above is shorthand for:
  flex-grow: 0,
  flex-shrink: 1,
  flex-basis: auto
  */
}

.content-wrapper {
  flex: 1 1 auto;
  min-height: calc(100vh - 110px) !important;
  z-index: 150;
  margin-top: 50px;
  background-color: #fbf7f0;
}


@media (max-width: 767.99px) {
  .content-wrapper {
    margin-top: 100px;
  }
}


.content {
  margin: 0;
}

.main-footer {
  flex: 0 1 30px;
  padding: 15px 15px 0px 15px;
  z-index: auto;
}

.spinner {
  margin: 0;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}


.spinner.main {
  position: fixed;
  top: 5px;
  left: 50%;
}

.spinner.main>div {
  background-color: white;
}

.spinner>div {
  background-color: #f39c12;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4)
  }

  20% {
    -webkit-transform: scaleY(1.0)
  }
}

@keyframes sk-stretchdelay {

  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}


.control-bar {
  margin-bottom: 15px;

}

.select2-container {
  width: 100% !important;
}

.message-shadow {
  -webkit-box-shadow: 6px 5px 20px -12px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 6px 5px 20px -12px rgba(0, 0, 0, 0.75);
  box-shadow: 6px 5px 20px -12px rgba(0, 0, 0, 0.75);
}

.message-fixed {
  position: fixed;
  top: 10px;
  left: 50%;
  z-index: 9999;
  transform: translateX(-50%);
}

.pagination .title a,
.pagination .title span {
  border: none;
}

.pagination>li:nth-child(2)>a,
.pagination>li:nth-child(2)>span {
  margin-left: 0;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.header .header-button {
  margin-top: -5px;
  margin-bottom: -5px;
}

i.fa-fw {
  vertical-align: inherit;
}

.dropdown {
  box-shadow: initial !important;
}

li.filter-preset,
li.icon-dropdown-item {
  display: flex;
  flex-wrap: nowrap;
  align-content: stretch;
  padding: 0px 20px 0px 19px;
  box-shadow: inherit;
}

li.filter-preset:hover,
li.icon-dropdown-item:hover {
  background-color: #e1e3e9;
  color: #333;
}

li.filter-preset a,
li.icon-dropdown-item a {
  padding: 3px 0;

}


li.filter-preset a.title,
li.icon-dropdown-item:hover a.title {
  flex-grow: 1;
  flex-shrink: 0;
  padding-left: 10px;
}

li.filter-preset a.action,
li.icon-dropdown-item:hover a.action {
  flex-shrink: 1;
}

li.filter-preset a.action .fa,
li.icon-dropdown-item:hover a.action .fa {
  margin: 0;
}


li.filter-preset .fa,
li.icon-dropdown-item .fa {
  margin-right: 5px !important;
}


.main-sidebar,
.left-side {
  z-index: unset !important;
}

.select2-container {
  z-index: unset;
}


.modal-header.no-padding {
  padding: 0;
}

.content {
  min-height: 0px;
}


.modal-header .spinner {
  position: absolute;
  top: 7px;
  right: 50px;
}

.up-bounds {
  z-index: 300;
}

.navbar-static-top {
  z-index: unset;
}

.main-sidebar {
  top: 50px;
  padding-top: 0;
  position: fixed;
}

@media (max-width: 767.99px) {
  .main-sidebar {
    top: 100px;
  }
}

tr.inactive-employee-row {
  background-color: #eebdb7;
}

.user-header>img {
  border: none !important;
}

ul.list-group-condensed {
  margin-bottom: 0;
  margin-top: 0;
}

ul.list-group-condensed .list-group-item {
  padding-top: 2px !important;
  padding-bottom: 2px !important;

}

ul.list-group-condensed .list-group-item>b {
  display: inline-block;
  /*width: 150px;*/
}

ul.list-group-condensed .list-group-item>.label {
  white-space: normal;
}

ul.list-group-condensed .list-group-item:first-child {
  border-top: none;
}

ul.list-group-condensed .list-group-item:last-child {
  border-bottom: none;
}

.box>.box-header {
  display: flex;
}

.box>.box-header>.box-title {
  flex-grow: 1;
}

.box>.box-header>.box-tools {
  position: initial;
  margin-left: 15px;
}

i.fa-fw {
  vertical-align: unset;
}

.modal-body .form-action-buttons {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  margin-bottom: 0;
}

.modal-body .form-action-buttons button,
.modal-body .form-action-buttons a {
  float: right;
  margin-left: 10px;
}

#scroll-top {
  display: none;
  position: fixed;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f39c126e;
  position: fixed;
  bottom: 30px;
  right: 35px;
  cursor: pointer;
  box-shadow: 0px 2px 5px #6666665e;
  color: white;
  padding: 9px;
  font-size: 1.3em;

}

#scroll-top:hover {
  background: #f39c12;
  box-shadow: 0px 2px 5px #666;
}


.btn-group .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  line-height: 22px;
  padding-left: 10px;
}



.signature-pad canvas {
  border: black 1px solid;
  background-color: white;
  border-style: dashed;
  max-width: 600px;
  height: 300px;
  width: -moz-available;
  max-width: -webkit-fill-available;
}


th.detail-title {
  text-align: right;
  width: 180px;
}

.btn-group-xs .btn {
  width: 28px;
}


ul.list-group-condensed {
  margin-bottom: 0;
  margin-top: 0;
}

ul.list-group-condensed .list-group-item {
  padding-top: 2px !important;
  padding-bottom: 2px !important;

}

ul.list-group-condensed .list-group-item>b {
  display: inline-block;
  width: 150px;
}


ul.list-group-condensed .list-group-item:first-child {
  border-top: none;
}

ul.list-group-condensed .list-group-item:last-child {
  border-bottom: none;
}

.box>.box-header {
  display: flex;
}

.box>.box-header>.box-title {
  flex-grow: 1;
}

.box>.box-header>.box-tools {
  position: initial;
  margin-left: 15px;
}