@import url('https://fonts.googleapis.com/css?family=Roboto');

body{
    margin:0px;
    padding:0px;
}

.subtitle{
    margin-top:30px;    
    text-align: center;
    font-weight: 900;
    font-size: 300%;
}

#counter-box{
    height: 100vh;
    padding:40vh 0 0 0;
    background:url(../../images/quote-banner-1.png) center center;
    background-size:cover;
}

.counter-title{
    font-weight: bold;
    font-size:400%;
    text-align: center;
}

.digit{
    display:inline-block;
    background:rgba(0, 0, 0, 0.7);
    border-radius:10px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#counter-box h2{
    padding: 5px 10px 0 10px;
    font-size: 300%;
    color:white;
    font-family: 'Roboto', monospace;
}

#quote{
    text-align: center;
    color:white;
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display:inline-block;
    padding:10px;
    width:100%;
    font-size:300%;
}

#table-section:before{
    content:"";
    margin-top:20px;
    content: '';
    position: absolute;
    left:-2px;
    width: 2px;
    height: 100%;
    background:#f1f1f1;
}

table{
    margin-right:auto;
    margin-left:auto;
    text-align: center;
    width: 100%;
}

th{
    font-size:140%;
}

#first-place{
    font-size:140%;
    color:rgba(255, 217, 0, 0.7);
}
#second-place{
    font-size:120%;
    color:rgba(192, 192, 192, 0.7);
}
#third-place{
    font-size:100%;
    color:#cd8032c5;
}

.collapsible-content {
    display: none;
    overflow: hidden;
  }


#btn-showMore{
    margin-top:-20px;
    font-size: 90%;
    margin-bottom: 20px;;
}

#extendedTable th{
    padding-left:10px;
    padding-right:10px;
}



.progress{
    height:50px;
    border-radius:10px;
}

#progress-bar{
    margin-top:30px;
    width:90%;
}

.progress-bar{
    font-size:150%;
    color:black;
    font-weight: bold;
}

#progress-remaining{
    background:black;
    opacity: 0.7;
    color:white;
}


.description-main{
    font-size:150%;
    font-weight: bold;
}

.description-main h1{
    margin-top:20px;
    font-weight: bold;
    margin-bottom:20px;
}

.description-secondary{
    margin-top:50px;
    font-size:150%;
    font-weight: bold;
}

.description-secondary h1{
    margin-top:20px;
    margin-bottom:20px;
    text-align: center;
    font-weight: 900;
    font-size: 200%;
}


/* TimeLine */
.timeline{
    position: relative;
}

.timeline:before{
    margin-top:20px;
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background:#dfdede;
}

.timeline ul{
    margin: 0;
    padding: 0;
}

.timeline ul li{
    font-size:150%;
    font-weight: bold;
    list-style:none;
    position:relative;
    width: 50%;
    padding:50px 30px 0 30px;
}

.timeline ul li:nth-child(odd){
    float:left;
    text-align:right;
    clear:both;
}

.timeline ul li:nth-child(even){
    float:right;
    text-align:left;
    clear:both;
}

.timeline ul li h3{
    background: var(--color-primary-light);
    display:inline-block;
    padding:10px 20px 10px 20px;
    border-radius:10px;
    font-weight: bold;
}

.timeline ul li i{
    font-size:130%;
    color:var(--color-primary);

}

.timeline ul li:nth-child(odd) i{
    position:absolute;
    top:60px;
    right:-19px;
}

.timeline ul li:nth-child(even) i{
    position:absolute;
    left:-17px;
    top:60px;
}

@media (max-width: 767px){
    .timeline ul li{
        font-size:150%;
        font-weight: bold;
        list-style:none;
        position:relative;
        width: 50%;
        padding:50px 30px 0 30px;
    }

    .timeline ul li h3{
        font-size: 100%;
        background: var(--color-primary-light);
        display:inline-block;
        padding:10px 20px 10px 20px;
        border-radius:10px;
        font-weight: bold;
    }

    #quote{
        text-align: center;
        color:white;
        background: rgba(0, 0, 0, 0.7);
        box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        display:inline-block;
        padding:10px;
        width:100%;
        font-size:150%;
    }

    #extendedTable th{
        font-size: 90%;
    }

}