body {
    background: #242424;
    transition: background-color .5s ease;
    color: #d6d6d6;
}

body.blue {
    background: #082b42;
}

body.orange {
    background: #831e00;
}

body.white {
    background: #f0f0f0;
    color: #1d1d1d;
}

#logo {
    width: 100%;
    height: 100%;
    background: url(/static/public/img/logo_white.png) no-repeat center 25px;
    transition: all .5s ease;
}

body.white #logo {
    filter: invert(.8);
}

#login_form {
    max-width: 600px;
    margin: 150px auto;
}

#login_form .left {
    background: url(/static/public/img/login_shadow_bg.png) no-repeat right top;
    background-size: 50px auto;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    color: #6b6b6b;
    padding: 20px 0;
    font-size: 0.8em;
    background-color: rgba(0,0,0,.5);
}

body.white footer {
    color: #ffffff;
    background-color: rgba(0,0,0,.8);
}

#css_quick_selector {
    margin: 0;
    padding: 0;
    position: fixed;
    right: 10px;
    top: 10px;
    list-style: none;
}

#css_quick_selector li {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 3px;
}

#css_quick_selector li.white {
    background: #f0f0f0;
}

#css_quick_selector li.dark {
    background: #242424;
}

#css_quick_selector li.blue {
    background: #082b42;
}

#css_quick_selector li.orange {
    background: #831e00;
}

#Loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 200px;
    height: 30px;
    background: #FFC107;
    text-align: center;
    padding: 3px;
    border-radius: 0 0 5px 5px;
    display: none;
}



/* DARK THEME */
#css_quick_selector li.dark {
    background: #242424;
}

/* BLUE THEME */
#css_quick_selector li.blue {
    background: #082b42;
}

html.blue {
    background: #222222;
}

html.blue header {
    background: #082b42;
}

html.blue {
    background: #082b42;
}

html.blue header {
    background: #114467;
}

html.blue #navbar ul.nav > li > a  {
    color: white;
}

html.blue #navbar ul.nav > li > a:hover,
html.blue #navbar ul.nav > li > a:active,
html.blue #navbar ul.nav > li > a:focus,
html.blue #navbar ul.nav > li.active > a {
    color: #ccecff;
}

html.blue ul.nav.nav-tabs > li.active > a {
    border-top: 2px solid #004268;
    box-shadow: inset 0 10px 10px #2882ca1c;
}


/* RED THEME */
#css_quick_selector li.red {
    background: #831e00;
}

html.red {
    background: #222222;
}

html.red header {
    background: #831e00;
}

html.red #navbar ul.nav > li > a  {
    color: white;
}

html.red #navbar ul.nav > li > a:hover,
html.red #navbar ul.nav > li > a:active,
html.red #navbar ul.nav > li > a:focus,
html.red #navbar ul.nav > li.active > a {
    color: #fff4f4;
}

html.red ul.nav.nav-tabs > li.active > a {
    border-top: 2px solid #8F0000;
    box-shadow: inset 0 10px 10px rgba(255, 0, 0, 0.05);
}


/* WHITE THEME */
#css_quick_selector li.white {
    background: #f0f0f0;
    border: 1px solid #3171ab;
}

html.white {
    background: #daedff;
}

html.white header {
    background: #f0f0f0;
    border-bottom: 1px solid #fff;
    box-shadow: 0 10px 10px #3170ab21;
}

html.white #navbar ul.nav > li > a  {
    color: #525252;
}

html.white #navbar ul.nav > li > a:hover,
html.white #navbar ul.nav > li > a:active,
html.white #navbar ul.nav > li > a:focus {
    color: #1d1d1d;
}

html.white #navbar ul.nav > li.active > a  {
    color: #3171ab;
    background: #e6e6e6;
    box-shadow: inset 0px -10px 10px rgba(0,0,0,.1);
}

html.white #Logo {
    filter: invert(.8);
}

html.white #login_user > li > a,
html.white #login_user > li > a:hover,
html.white #login_user > li > a:active,
html.white #login_user > li > a:focus {
    background: #3171ab;
}

html.white ul.nav.nav-tabs > li.active > a {
    border-top: 2px solid #3171ab;
    box-shadow: inset 0 10px 10px rgba(49, 112, 171, 0.05);
}

@media (max-width: 767px) {
    #login_form {
        margin: 25px auto;
    }

    #login_form .left {
        height: 150px;
        background: none;
        border-bottom: 1px solid #353535;
    }

    .input-group .form-control, button {
        height: 40px;
    }

}