.hover-hand {
    cursor: pointer;
}


/* Have to set height explicity on ui-view 
to prevent collapsing during animation*/
.ui-view-container {
    position: relative;
    height: 65px;
}

[ui-view].ng-enter, [ui-view].ng-leave {
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

[ui-view].ng-enter {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    -moz-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
}

[ui-view].ng-enter-active {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

[ui-view].ng-leave {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

[ui-view].ng-leave-active {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    -moz-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
}

.page-header-fixed .page-container {
    margin-top: 42px;
}

.page-header.navbar .top-menu .navbar-nav > li.dropdown {
    height: 42px;
}


.change {
    background-color: rgb(180, 244, 180);
}

.change-add, .change-remove {
    background-color: white;
    transition: all 1s;
    -webkit-transition: all 1s ease-in-out;
}

.change-add-active {
    background-color: rgb(180, 244, 180);
}

.change-remove {
    background-color: rgb(180, 244, 180);
}

.change-remove-active {
    background-color: white;
}


.navbar-nav img.avatar {
    height: 28px;
    width: 28px;
}


.error {
    color: rgb(247, 117, 78);
}

.scaled-eye-points {
    max-width: 200px;
}

.border-red {
    border: 2px solid red;
}

.border-green {
    border: 2px solid green;
}

.border-orange {
    border: 2px solid orange;
}


.date-picker {
    display: inline;
    visibility: collapse;
    width: 0px;
    height: 0px;
    top: 16px;
    left: 89px;
    position: absolute;

}

.logo-default {
    height: 38px;
    -ms-border-top-right-radius: 10px !important;
    border-top-right-radius: 10px !important;
    -ms-border-top-left-radius: 10px !important;
    border-top-left-radius: 10px !important;
}

.page-header.navbar .page-logo .logo-default {
    margin: 4px 0 0 0;
}

.vert-align-middle {
    vertical-align: middle !important;
}

tr.selected {
    background-color: khaki;
}


span.date-picker-wrapper{
    color: black
}

.login-form .form-actions {
    
}

.login-form .form-actions .checkbox {
    display:inline
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}