* {
    margin: 0;
    padding: 0;
}

*,
::after,
::before {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
}

h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto slab', serif;
    font-size: 21px;
    margin-bottom: 40px;
    text-align: center;    
}
h1 img{
    margin-right: 5px;
}

p {
    margin: 0;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #C4C4C4;
}

header span:first-child {
    font-size: 20px;
    font-weight: 700;
}

header span {
    margin: 0 10px;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-4,
.col-6,
.col-xs-12,
.col-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.wrapperGanador {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapperGanador img {
    max-width: 100%;
    height: 100px;
    width: 100px;
    border-radius: 50%;
}

.wrapperGanador article {
    margin-left: 10px;
}

.wrapperGanador article h2 {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 5px;
}

.wrapperGanador article p {
    font-size: 22px;
    font-weight: 700;
}

.podio {
    display: flex;
    align-items: center;
    min-height: 60px;
}

.podio span {
    font-size: 16px;
    font-weight: 500;
    margin-right: 5px;
}

.podio img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.podio article {
    margin-left: 5px;
}

.podio article h3 {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.podio article p {
    font-size: 16px;
    font-weight: 700;
}

.divider {
    margin: 10px auto;
    display: block;
    width: 93%;
    border-bottom: 1px solid #C4C4C4;
}

.dividerMobile {
    margin: 5px auto;
    display: block;
    width: 93%;
    border-bottom: 1px solid #C4C4C4;
}
.dividerFullWidth{
    display: block;
    margin: 10px auto;
    width: 100%;
    border-bottom: 1px solid #C4C4C4;
}

/*Progress bar*/

.progress {
    display: -ms-flexbox;
    display: flex;
    height: 18px;
    margin-top: 15px;
    margin-bottom: 25px;
    border-radius: 0;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
}

.progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    background-color: #999;
    text-align: center;
    white-space: nowrap;
    transition: width .6s ease;
    animation-name: progress;
    animation-duration: 1.5s;
    animation-delay: .3s;
    animation-fill-mode: forwards;
}

@media (max-width: 651px) {
    header {
        display: block;
        height: auto;
        text-align: center;
        padding-top: 10px;
        margin-bottom: 10px;
    }
    header span {
        display: block;
        margin-bottom: 10px;
    }
    .container {        
        padding: 0 10px !important;
    }
    .col-12,
    .col-xs-12 {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .col-xs-12 {
        margin-top: 30px;
    }
    .divider {
        display: none;
    }
    .dividerFullWidth{
        display: none;
}
}

@media (min-width: 652px) and (max-width: 953px) {
    .container {        
        padding: 0 10px !important;
    }
    .col-12 {
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .divider {
        display: none;
    }
     .dividerUltimo {
        display: none;
    }
}

@media (min-width: 954px) and (max-width: 1254px) {
    .container {        
        padding: 0 9px!important;
    }  
    .podio {
        min-height: 75px;
    }
     .dividerMobile {
        display: none;
    }
}

@media (min-width: 1255px) {
    .dividerMobile {
        display: none;
    }   
}