body{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.container{
    overflow: hidden;
}
.sidebar{
    height: 100%;
    position: fixed;
    left: 0;
    width: 280px;
    float: left;
    padding-top: 6px;
    background: #f5f5f5;
    box-shadow: 0 0 6px #ccc;
    overflow-y: auto;
    height: calc(100% - 52px);
}
.sidebar.hide{
    left: -280px;
}
.content{
    margin-left: 280px;
    padding: 10px 12px;
}
.content.full-width{
    margin-left: 0;
}

.header{
    background: #020b7b;
    padding: 14px;
    display: flex;
    align-items: center;
}

.header .title{
    width: 100%;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

#lines{ 
    border-bottom: 7px double;
    border-top: 2px solid;
    border-color: rgba(255, 255, 255, 0.9);
    content: "";
    height: 3px;
    width: 20px;
    box-sizing: content-box;
    cursor: pointer;
}

.transition{
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.info{
    overflow: hidden;
}
.info img{
    float: left;
    margin-right: 10px;
}
.info .details {
    display: table-cell;
}
.info .details p{
    margin-top: 0;
}