body {
    font-family: 'Open Sans', sans-serif;
}

.avatar-sm {
    width: 36px !important;
    height: 36px !important;
    font-size: .875rem;
}

table.avatar {
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: .75rem;
    height: 48px;
    width: 48px;
    transition: all .2s ease-in-out;
}

.loading-indicator {
    transform: translateZ(0);
    -webkit-animation: load 1.1s infinite linear;
    animation: load 1.1s infinite linear;
}

@-webkit-keyframes load {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes load {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.right-0 {
    right: 0;
}

.employee-payroll input {
    max-width: 80px;
    background-color: #f5f1f3;
    border-radius: 2px;
    border: none;
    padding: 3px 8px;
}

.employee-payroll input:read-only {
    background-color: white;
    border: none;
    outline: none;

}
