html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    background-color: #f5f7ff;
}

body {
    background-color: #f5f7ff;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.container-scroller {
    background-color: #f5f7ff;
    margin: 0;
    padding-bottom: 25px;
}

.user-avatar-xxl {
    height: 128px;
    width: 128px;
}

.user-avatar-xl {
    height: 90px;
    width: 90px;
}

.user-avatar-lg {
    height: 48px;
    width: 48px;
}

.user-avatar-md {
    height: 32px;
    width: 32px;
}

.user-avatar-sm {
    height: 24px;
    width: 24px;
}

.user-avatar-xs {
    height: 18px;
    width: 18px;
}

.user-avatar {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 10px;
}

.avatar-badge {
    position: absolute;
    right: 3px;
    bottom: 4px;
    display: block;
    width: 8px;
    height: 8px;
    line-height: 1.6;
    text-align: center;
    font-size: 8px;
    color: #fff;
    background-color: #a9acb0;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 0 2px #fff;
    box-shadow: 0 0 0 2px #fff;
    z-index: 2;
}

    .avatar-badge.online {
        background-color: #00a28a;
    }

    .avatar-badge.idle {
        background-color: #ec935e;
    }

    .avatar-badge.busy {
        background-color: #ea6759;
    }

    .avatar-badge.offline {
        color: #a9acb0;
        background-color: #a9acb0;
    }

    .avatar-badge.has-indicator {
        width: 10px;
        height: 10px;
    }

.avatar-group {
    display: inline-block;
}

    .avatar-group .user-avatar img {
        -webkit-box-shadow: 0 0 0 2px #fff;
        box-shadow: 0 0 0 2px #fff;
    }

    .avatar-group .user-avatar + .user-avatar {
        display: inline-block;
        margin-left: -10px;
    }

    .avatar-group .user-avatar:focus,
    .avatar-group .user-avatar:hover {
        z-index: 2;
    }

.user-avatar-floated {
    margin-top: -50px;
    z-index: 2;
}

