/*

 //    /////   //    /////   ///// 
|||   ||||||  |||/  ||||||/ ||||||
|||   |||/// ||/||/ |||  ||/|||///
|||   |||||| |||||/ |||  |||||||||
|||///|||///|||/|||/|||//||/|||/// 
|||||||||||||||/||||||||||/ ||||||

LEADERBOARD CSS

*/

    .boardWrap {
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        padding: 15px;
        background:#333;
        width: 100%;
        margin: 0 auto;
    }

    .boardWrap li {
        display: flex;
    }

    .attendee {
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding:5px;
        width:100%;
        background:#E9E9E9;
        margin-bottom:8px;
        position:relative;
        line-height:60px;
    }

    .num,
    .name,
    .photo,
    .pts {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding:0 5px;
        float:left;
        
        font-size: 16px;
        
    }

    .num {
        background-color:#F6F6F6;
        -webkit-border-top-left-radius: 5px;
        -webkit-border-bottom-left-radius: 5px;
        -moz-border-radius-topleft: 5px;
        -moz-border-radius-bottomleft: 5px;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
        width:10%;
        text-align: center;

    }

    .name {
        width:40%;
    }

    .photo {
        width:30%;
        text-align:right;
    }

    .photo > img {
        height: 50px !important;
    }

    .pts {
        background-color: #F6F6F6;
        -webkit-border-top-right-radius: 5px;
        -webkit-border-bottom-right-radius: 5px;
        -moz-border-radius-topright: 5px;
        -moz-border-radius-bottomright: 5px;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        line-height: 1.25;
        color: #999;
        text-align: center;
        width: 20%;
        padding: 4px;

    }

    #body li.mar-btm {
        margin-bottom:80px;
    }

    .mar-no {
        margin:0;
    }

    #sponsorList {
        width: 200px;
    }

    .section{
        margin: 0 auto 50px auto;
        max-width: 600px;
    }

    .mar-btm-sm {
        margin-bottom: 7.5px;
    }

    .base-text{
        color: #004040;
        font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
        font-size: 14px;
        margin: 15px;
    }

    #footer {
        position: fixed;
        z-index: 5;
        width: 100%;
        max-width: 800px;
        height: 100px;
        bottom: 0px;
        background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
    }

    #footer>img{
        height: 100px;
        position: absolute;
        right: 0;
    }

    @media ( max-width: 767px ) {

        .num, 
        .name, 
        .photo, 
        .pts {
           
            line-height: 1.5;
            
        }

        .pts {
            padding: 8px 0;
        }

        .name, 
        .photo {
            padding: 7px;
        }

        .num {
            padding: 20px 0;
        }

        .content-wrap > .container {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        #body {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

    }

    @media ( min-width: 525px ) {

        .photo {
            width: 15%;
        }

        .name {
            width: 55%;
        }

    }

    @media ( min-width: 768px ) {

        #footer {
            bottom: 60px;
        }

        #footer > img{
            right: 65px;
        }

        .num, 
        .name, 
        .photo, 
        .pts {
            font-size: 21px;
            
        }

        .photo > img {
            height: 60px !important;
        }

    }

    @media ( min-width: 992px ) {
    
        #footer > img {
            height: 150px;
            bottom: 0;
            position: absolute;
        }

    }

    @media ( min-width: 1024px ) {

        #footer > img{
            right: 0;
        }

    }