/* ----- Time Tracking Custom CSS ----- */
.text-shadow {
    text-shadow: 0 5px 10px rgba(0,0,0,0.5);
}
.font-size-lg {
    font-size: 72px !important;
}
.demo-bg {
    background-image: url(../images/RT-DemoBG.png);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: contain;
}
.disabled {
    cursor: not-allowed !important;
}
.jumbotron {
    margin-bottom: 0 !important;
}
.anim-bg {
    background-image: url(../images/jumb-bg.gif) !important;
}
input[type=date]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none;
}
.infoBtn {
    border-radius: 150px !important;
    padding: 0 10px 0 10px !important;
}
.editBtn { color: white !important; cursor: pointer !important; }
/* ----- Dashboard ----- */

/* ----- Custom Utilities ----- */
.inner-shadow {
    box-shadow: 0 0 10px rgba(0,0,0,0.25) inset;
}
/* ----- Switch CSS ----- */
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider-danger {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider-danger:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider-danger {
  background-color: #dc3545;
}

input:focus + .slider-danger {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider-danger:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
