

* {
    box-sizing: border-box;
}

.hide {
    display: none;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: Tahoma, Arial, sans-serif;
    position: relative;
    min-height: 100%;
}

body {
    padding: 0 0 40px;
    color: #333;
}

h1,
h2,
h3,
h4 {
    font-family: monospace;
    font-weight: 300;
    color: #444;
}

small {
    color: #555;
}

header {
    background: #555757;
    border-bottom: 5px solid #8a8a8a;
}

nav {
    padding: 15px;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
}

nav #menu {
    margin-top: 20px;
    float: right;
}

a {
    text-decoration: none;
}

#menu li {
    float: left;
    margin: 0 10px;
}

#menu li a,
#logout {
    background: transparent;
    cursor: pointer;
    border: 0;
    font-size: 16px;
    display: inline-block;
    color: #ababab;
    text-align: center;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    text-decoration: none;
}

#logo {
    max-height: 50px;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 15px;
}

#content {
    padding: 15px;
    background: #fff;
}

nav ul,
nav li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#menu li {
    position: relative;
}

#menu li a::after,
#logout:after {
    position: absolute;
    top: 28px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

#logout:hover::after,
#logout:focus::after,
#menu li a:hover::after,
#menu li a:focus::after {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.row {
    width: 100%;
    overflow: auto;
}

.row>* {
    float: left;
}

.row-2 .col {
    width: 49%
}

.row-2 .col:nth-child(odd) {
    margin: 0% 1% 0% 0%
}

.row-2 .col:nth-child(even) {
    margin: 0% 0% 0% 1%
}

.row-3 .col {
    width: 32%
}

.row-3 .col:nth-child(3n+1) {
    margin: 0% 1% 0% 0%
}

.row-3 .col:nth-child(3n+2) {
    margin: 0% 1% 0% 1%
}

.row-3 .col:nth-child(3n+3) {
    margin: 0% 0% 0% 1%
}

@media screen and (max-width: 550px) {
    .row .col:nth-child(n) {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

.col img {
    display: block;
    width: 100%;
}

#loginForm,
.raven-form {
    max-width: 400px;
    margin: 0 auto;
}

#loginForm label,
.raven-form label {
    display: block;
    width: 100%
}

#loginForm input,
.raven-form input {
    border: 1px solid #ddd;
    padding: 8px 12px;
    width: 100%;
    border-radius: 3px;
    margin: 2px 0 20px 0;
}

#loginForm input[type="submit"],
.raven-form input[type="submit"] {
    color: #dbdbdb;
    background: #555757;
    border: 0;
    cursor: pointer;
}

.right {
    float: right;
}

.progress {
    display: block;
}

#bar p {
    position: absolute;
    text-align: center;
    width: 100%;
    margin: 0;
    line-height: 30px;
}

.error {
    /* These styles are arbitrary */
    background-color: #fceabb;
    padding: 1em;
    font-weight: bold;
    color: red;
    border: 1px solid red;
}

.notification {
    padding: 10px;
    background: #333;
    color: white;
    border-radius: 3px;
}

.good.notification {
    background: #008900;
}

.bad.notification {
    background: #bb0000;
}

.users-table.ui.inverted.table.users-table .ui.progress {
    margin: 0px;
    float: left;
    width: 90%;
    background: #5d5a57;
}

.users-table .ui.progress .bar {
    background-size: 30px 30px;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.08) 75%, transparent 75%, transparent);
}

.users-table .ui.progress .xp-progress {
    color: rgba(0, 0, 0, 0.87);
    text-align:center;
    position:absolute;
    top: 3px;
    left: 50%;
    width: 100px;
    margin-left: -50px;
}

#active-users-table .owner td {
    border-bottom: 8pt solid rgb(251, 189, 8);;
}

#active-users-table .users-table {
    margin: 0px;
}

#user-table-header {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.users-table span.circle {
    background: rgb(255, 222, 77);
    border-radius: 0.8em;
    color: rgba(0, 0, 0, 0.87);
    -moz-border-radius: 0.8em;
    -webkit-border-radius: 0.8em;
    display: inline-block;
    font-weight: bold;
    line-height: 1.6em;
    margin-right: 5px;
    text-align: center;
    width: 2.2em;
    float: left;
}

#inactive-users-table span.circle {
    background-color: #888;
}
