#header {
background-color: #505250;
margin-bottom: 20px;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05),
inset 0 -1px 0 rgba(0, 0, 0, 0.1);
padding: 17px 0;
color: #fff;
}

#header a {
color: #fff;
font-size: 16px;
-webkit-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;
}

#header a:hover {
color: #2ea3f2;
}

#content {
padding-bottom: 40px;
}

#body {
background-color: #f4f4f4;
}

.username {
margin-right: 20px;
}

ul{
list-style-type: none !important;
}

a.is-busy:hover {
    color: inherit !important;
    cursor: inherit;
}

.state-element .spinner__main {
    display: none;
}

.state-element.is-busy .spinner__main {
    display: block;
}

.spinner__main--forText {
    left: 10px;
    top: -10px;
}
.spinner__main,
.spinner__main:after {
    border-radius: 50%;
    width: 2em;
    height: 2em;
}
.spinner__main {
    display: block;
    margin: 10px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #ffffff;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}