@import url('https://fonts.googleapis.com/css?family=Raleway:700&display=swap');

body{
    margin: 0;
}
input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

h2{
    font-family: 'Raleway', sans-serif;
}
form .login {
    text-align: center;
}
form .login .logo{
    margin-top: 5em;
    margin-bottom: 2em;
}
form .login .input-group-label {
    background-color: #E97200;
    border-color: #E97200;
}
form .login .input-group-field {
    border-color: #E97200;
}
form .login .fa {
    color: white;
    width: 1rem;
}
form .button {
    background-color: #E97200;
}
form .button:focus {
    background-color: #c76100;
}
form .button:hover {
    background-color: #c76100;
}
form .button:disabled {
    background-color: #E97200;
}
form .button:disabled:hover {
    background-color: #c76100;
}
.button {
    background-color: #E97200;
}
.button:focus {
    background-color: #c76100;
}
.button:hover {
    background-color: #c76100;
}
.callout h5{
    font-family: 'Raleway', sans-serif;
}
.dashboxes{
    text-align: center;
    color: #fff;
    padding: 30px;
}
.dashnumberspace{
    background-color: #E97200;
}
#dashnumber{
    font-size: 3em;
    margin-bottom: 0;
    padding-bottom: 0;
    line-height: 1em;
}
.extheader{
    text-align: center;
    margin-top: 5em;
    margin-bottom: 2em;
}
.footer{
    font-size: 0.8em;
}
.loadingoverlay{
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 2;
    cursor: pointer;
}
.loadingicon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 6px solid #EEEEEE;
    border-top-color: #BFBFBF;
    border-bottom-color: #BFBFBF;
    -webkit-animation: loadingicon 2.5s infinite ease-in-out;
    animation: loadingicon 2.5s infinite ease-in-out;
    position: fixed;
    top: 50%;
    left: 50%;
}

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

@keyframes loadingicon {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(540deg);
        transform: rotate(540deg);
    }
}
#ajaxmessages{
    position: fixed;
    top: 0;
    margin-top: 58px;
    width: 300px;
    z-index: 100000;
}
.fader{
    animation-delay: 2s;
    -webkit-animation-delay: 2s;

    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

@keyframes fadeOut {
    0% {opacity: 1;}
    100% {opacity: 0;}
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}
.not-vacant{
    background: #8a8a8a;
}