body {
    height: 100%;
    position: relative;
    min-height: 100%;
    padding-bottom: 100px;
    font-family: 'Open Sans', sans-serif;
    background-color: #fbfbfb;
}
.navbar-fixed-top {
    background-color: rgba(0,0,0,0.9);
    box-shadow: 0px 0px 55px -4px rgba(0,0,10,0.5);
    border-bottom: 1px solid #111;
}

/* START django-tables2 */
.table-container th.asc:after {
  content: '\0000a0\0025b2';
}
.table-container th.desc:after {
  content: '\0000a0\0025bc';
}
.pagination {
  text-align: center;
}
/* END django-tables2 */

td.task_status {
    font-size: 0.8em;
}

header {
    padding-top: 60px;
    background-color: #eee;
    margin-bottom: 30px;

    background: 0 0/300% 300% linear-gradient(300deg, #e5e5ef 40%, #fff 50%, #e5e5ef 60%);
    background-size: 300% 300%;
}

header.animatedbg {
  -webkit-animation: gradient-slide 10s ease infinite;
  -moz-animation: gradient-slide 10s ease infinite;
  animation: gradient-slide 10s ease infinite;    
}

header .page-header {
    border-bottom: none;
}
body main {
    z-index: 1;
}
.conectivity {
    margin-top: -30px;
    margin-bottom: 30px;
    background-color: rgba(0,0,0,0.02);
    color: #666;
    padding: 6px 0px 0px;
    text-align: right;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0px -4px 29px -3px rgba(0,0,0,0.2);
}

.conectivity span.label {
    cursor: pointer;
}

footer {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    padding: 10px;
    background-color: #000;
    color: #eee;
    text-align: center;
    z-index: 0;
    font-size: 0.9em;
    font-family: monospace;
}
footer a {
    font-weight: 800;
    text-shadow: 0px 1px 1px #333;
}
main > div.container::after {
    content:" ";
    position: relative;
    left: 20%;
    bottom: -40px;
    background: url(/static/woodysbg.png) no-repeat;
    width: 520px;
    height: 160px;
    z-index: 0;
    background-size: 520px 160px;
    opacity: 0.3;
    transition: all ease-in-out 0.3s;
}
main > div.container:hover::after {
    opacity: 0.6;
}

.panel-info a.list-group-item:hover {
    background-color: #428bca;
    color: white;
}

.panel-success a.list-group-item:hover {
    background-color: #42ca8b;
    color: white;
}
.panel-warning a.list-group-item:hover {
    background-color: #EDC635;
    color: white;
}
.panel-default a.list-group-item:hover {
    background-color: #333;
    color: white;
}

a.list-group-item:hover h4 {
    color: white;
}
a.list-group-item .list-group-item-text {
    color: #666;
}
a.list-group-item:hover .list-group-item-text {
    color: #eee;
}
.panel {
    box-shadow: 0px 0px 30px rgba(0,0,0,0.1);
    transition: all 0.5s ease-in-out;
}

.panel:hover {
    box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
}

.navbar-inverse a.navbar-brand {
    color: rgba(255,255,255,0.9);
}

.navbar-brand>img {
    display: inline-block;
    margin-right: 5px;
}

.request-detail-box {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40vh;
    background: white;
    padding: 10px 30px;
    box-shadow: 0px 0px 91px -13px;
    border-top: 4px solid red;
    transition: all 0.3s ease-out;
}

textarea.xml-content {
    width: 100%;
    height: 100px;
    transition: height 0.3s ease-out;
}

.request-detail-box.maximized {
    top: 50px;
    height: 100vh;
}
.request-detail-box.maximized textarea.xml-content {
    height: 65vh;
}
.progress {
    margin-bottom: 5px;
}


@-webkit-keyframes gradient-slide {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
@-moz-keyframes gradient-slide {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
@keyframes gradient-slide { 
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}

#prestasap-logo {
    height: 24px;
    width: 50px;
    position: relative;
    top: -2px;
}
a.navbar-brand em {
    position: relative;
    top: -7px;
}

@keyframes logo-blue-animation { 
    0%{transform: translateX(0px);}
    25%{transform: translateX(90px); }
    50%{transform: translateX(0px);z-index:2;}
    75%{transform: translateX(90px);z-index:2;}
    100%{transform: translateX(0px);}
}
@keyframes logo-orange-animation { 
    0%{transform: translateX(0px);}
    25%{transform: translateX(-90px); }
    50%{transform: translateX(0px);z-index:0;}
    75%{transform: translateX(-90px);z-index:0;}
    100%{transform: translateX(0px);}
}

@keyframes logo-blue-animation-subtle { 
    0%{transform: translateX(0px);}
    20%{transform: translateX(10px);}
    30%{transform: translateX(0px);}
    100%{transform: translateX(0px);}
}
@keyframes logo-orange-animation-subtle { 
    0%{transform: translateX(0px);}
    20%{transform: translateX(-10px);}
    30%{transform: translateX(0px);}
    100%{transform: translateX(0px);}
}

@keyframes zoom-in { 
    0%{transform: scale(1.6); opacity: 0.1;}
    100%{transform: scale(1); opacity: 0.9;}
}

@keyframes logo-hover { 
    0%{transform: scale(1);}
    30%{transform: scale(1.5) rotate(-45deg); opacity: 0.7;  }
    35%{transform: scale(1.1) rotate(-30deg); opacity: 1; }
    50%{transform: scale(1.07) rotate(0deg);}
    60%{transform: scale(1.02);}
    100%{transform: scale(1) rotate(0deg); }
}

.navbar-brand:hover #prestasap-logo {
    animation: logo-hover 1s ease;
}

.navbar-brand #prestasap-logo #bluepart{
    animation: logo-blue-animation-subtle 10s ease infinite;
}
.navbar-brand #prestasap-logo #orangepart{
    animation: logo-orange-animation-subtle 10s ease infinite;
}

.navbar-brand.animated #prestasap-logo #bluepart{
    z-index: 0;
    animation: logo-blue-animation 6s ease infinite;
}
.navbar-brand.animated #prestasap-logo #orangepart{
    z-index: 2;
    animation: logo-orange-animation 6s ease infinite;
}

