html,body{
    font-family: 'Lato', sans-serif;
}
nav.navbar-default{
    background:#fff;
}
.navbar-default 
.navbar-nav>.active>a, 
.navbar-default .navbar-nav>.active>a:focus, 
.navbar-default .navbar-nav>.active>a:hover {
    color: #ce0058;
    border-bottom: 2px solid #ce0058;
    background-color: #fff;
}
.navbar-default .navbar-nav>.open>a:focus, 
.navbar-default .navbar-nav>.open>a:hover {
    background-color: #fff;
}
.dropdown-menu>.active>a, 
.dropdown-menu>.active>a:focus, 
.dropdown-menu>.active>a:hover {
    background-color: #ce0058;
}

body > .container:not(.embedded){
    margin-top:50px;
}

.container{
    max-width:730px;
}
h1{
    font-weight:900;
    color:#ce0058;
}
h1.alt{
    font-weight: 700;
}
h2,h3{
    font-weight:700;
    margin-top:40px;
}
.alert.alert-default{
    background:#eee;
}
img.screenshot{
    max-width:100%;
    margin: 24px 0;
    padding:8px;
    box-shadow: 0 0 16px #ddd;
    border-radius:4px;
}
img.logo{
    width:150px;
    max-width:100%;
}
.shadow {
    width: 50px;
    margin: 20px auto;
    height: 5px;
    background: #ddd;
    display: block;
    border-radius: 50%;
}
img.logo-small{
    height: 40px;
    margin-bottom: 10px;
}

.label-default {
    background-color: rgba(0,0,0,0.08);
    color: inherit;
    font-size: 85%;
    font-weight: 700;
    margin: 0 3px;
}

.container-404{
    margin: 20px 0 100px;
    text-align: center;
    background: #eee;
    padding: 50px;
    border-radius: 9px;
    font-size: 200%;
}

pre{padding:0;}
code.hljs{padding:8px 16px;}
footer{
    margin-top:40px;
    border-top:1px solid #ddd;
}
footer > .footer{
    padding:16px;
}
/* bounce effect */
@keyframes bounce {
    from{ transform: translate(0px,0px); }
    to { transform: translate(0px,-10px); }
}

@keyframes grow {
    from{ width: 70px;opacity:1; }
    to { width: 75px; opacity:0.5 }
}
.bounce, .grow{
    animation-duration:.9s;
    animation-direction:alternate;
    animation-timing-function:linear;
    animation-delay:0s;
    animation-iteration-count:infinite;

}
.bounce{
    animation-name: bounce;
}
.grow{
    animation-name: grow;
}

span.before-after{
    margin-bottom: -10px;
    margin-left:10px;
    margin-top: 40px;
    display: block;
    color: #777;
    text-align: center;
}
/* stats */
.container.stats{
    max-width: 1600px;
    width:auto;
}

.stats_chart_line{
    width:100%;
    height:250px;
}
.stats_chart_pie, .stats_chart_bar{
    width:50%;
    float:left;
    clear:none;
    max-width:850px;
    height:450px;
    margin: 30px auto 0;
}

select.team_select{
    font-size: 18px;
    border-color: #eee;
    background: white;
    margin: 0 auto 40px;
}

span.avatar{
    display:inline-block;
    border-radius: 4px;
    background-size: cover;
    width:30px;
    height: 30px;
    margin-right: 12px;
    line-height: 30px;
    background-color:#eee;
    float:left;
    margin-top: -3px;
}

div.row.podium{
    max-width:700px;
    margin:auto;
    margin-top:30px;
}

.podium-avatar {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 1px 1px 3px #ccc;
    background: #f9f9f9;
}
.podium-avatar > img {
    width: 100px;
}
.podium-1{
    transform: scale(1.2);
}

.podium-2, .podium-3 {
    transform: scale(.8);
}
.podium-name {
    font-size: 16px;
    font-weight: bold;
    margin: 12px auto 8px;
}
.podium-position {
    font-size: 30px;
    font-weight: 700;
    border-top: 2px solid #ccc;
    padding: 12px;
    margin: 0 40px;
    color:gold;
}
.podium-2 .podium-position{
    color:#aaa;
}
.podium-3 .podium-position{
    color: rosybrown;
}

.podium-avatar img.crown {
    position: absolute;
    width: 48px;
    margin-top: -24px;
    margin-left: 40px;
    transform: rotate(24deg);
}

.progress-bar{
    background-color:#555;
}