body {
    background: #FFF;
}


.block .header .header-text {
    margin-bottom: 0px;
}

.block .header .header-text > .title {
    padding: 9px 10px;
    font-size: 15px;
    text-shadow: none; 
}

/* remove container padding */
#main.container { padding: 0px; }
#main .row { margin: 0px; }

#titlebar {
	position: relative;
}


#titlebar a.go-back {
    width: 60px;
    height: 40px;
    font-size: 24px;
    padding: 2px 18px;
    border: none;
    border-radius: 0px;
    background: none;
    float: left;
    color: #000;
    text-decoration: none;
}

#titlebar a.go-back:hover {
    animation-name: leftShake;
    animation-duration: .3s;
    animation-iteration-count: 1;
}

#titlebar .title {
    font-size: 20px;
    padding: 5px 10px;
    font-weight: bold;
}


/* shared general style */
.glyphicon {
	/*font-size: 0.8em;*/
	/*margin: 0px 2px;*/
	/*color: #777;*/
}

.no-data-msg {
    height: 300px;
    padding: 135px 0px;
    color: #BBB;
    font-size: 16px;
    text-align: center;
}


@media (min-width: 768px) { /* larger than 768 */
    .block .header .header-text > .title {
        padding: 5px 10px;
        font-size: 20px;
    }

	#titlebar {
	}

    #titlebar .title {
        font-size: 24px;
        padding: 2px 10px;
    }
}

@keyframes leftShake {
    0%      { transform: translate(0px, 0); }
    25%     { transform: translate(-4px, 0); }
    50%     { transform: translate(0px, 0); }
    75%     { transform: translate(-2px, 0); }
    100%    { transform: translate(0px, 0); }
}