section{
    padding-bottom: 60px;
}

section #banner{
    /*padding: 40px;*/
    margin-bottom: 40px;
/*    color: #004f17;   
    background-image: url('../../../../images/inicioFront/banner.jpg');
    background-position: center center;
    background-size: cover;*/
}
/*section #banner h2{
    font-family: 'Holtwood One SC', serif;
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: 1px;
}
section #banner h2 span{
    display: block;
}
section #banner h2 span:nth-of-type(2){
    font-family: 'Holtwood One SC', serif;
    font-size: 34px;
}
section #banner h2 span:last-of-type{
    font-family: 'Holtwood One SC', serif;
    font-size: 25px;
}*/

section #div-select{    
    padding-bottom: 10px;
    margin-left: -15px;
    margin-right: -15px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
section #div-select > *{
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
}

/* SELECT */
.select-group{
    position: relative;
    box-shadow: none;    
}
.select-group .form-control{
    height: 54px;
    padding: 10px;
    padding-right: 30px;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background-color: transparent;
    border: none;
    border-bottom: 12px solid #004f17;
    border-radius: 0;   
    border-color: transparent;
    box-shadow: none;
    color: #868686;
    font-family: 'proxima-nova',sans-serif;
    font-size: 20px;    
}
.select-group .form-control:focus,
.select-group .form-control:active{
    box-shadow: none;
    outline: none;
}
.select-group .form-control option{
    padding-top: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d5d5d5;
    color: #4d4d4d;
    font-size: 16px;
}
.select-group:after{
    content: '\f0dd';
    width: 20px;
    height: 100%;
    color: #004f17;;
    font-family: FontAwesome;
    font-size: 30px;
    line-height: 1.0;
    text-align: right;
    position: absolute;
    right: 0;
    top: 5px;
    z-index: -1;
}

section .temporada-tit{
    width: 622px;
    padding-bottom: 20px;
    margin-bottom: 40px;
    color: #004f17;
    font-family: 'proxima-nova',sans-serif; font-weight: 600;
    font-size: 36px;
    line-height: 42px;    
    text-align: left;
    display: inline-block;
    position: relative;
}
section .temporada-tit span{
    display: block;
}
section .temporada-tit:before{
    content: '';
    width: 357px;
    height: 55px;
    padding: 5px 10px;
    border: 12px solid #fed400;
    position: absolute;
    right: 0;
    bottom: 15px;
    z-index: -1;
}

section #posts .post{    
    border-top: 1px solid #868686;
    padding-top: 20px;
    padding-bottom: 10px;
    margin-left: -10px;
    margin-right: -10px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
section #posts .post > *{
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}
section #posts .post .post-tit{
    padding-right: 60px;
    margin-bottom: 0;
    font-family: 'proxima-nova',sans-serif; font-weight: 600;
    font-size: 20px;
    line-height: 1.1;
}
section #posts .post .post-tit a{
    color: #868686;
}
section #posts .post .post-tit a:hover{
    color: black;
}
section #posts .post .post-categoria span{
    width: 180px;
    max-width: 100%;
    margin-bottom: 10px;
    background-color: #fed400;
    color: black;
    font-family: 'proxima-nova',sans-serif; font-weight: 600;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
    display: inline-block;
}

section #paginador{
    padding-top: 100px;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
section #paginador > *{
    width: 35px;
    height: 35px;
    padding: 9px;
    border: 1px solid #4d4d4d;
    color: #4d4d4d;
    font-family: 'proxima-nova',sans-serif;
    font-size: 14px;
    line-height: 17px;
    text-align: center;
    margin-left: -1px;
}
section #paginador .fa{
    font-family: 'FontAwesome';
}
section #paginador > a:hover{
    background-color: #ffee99;
}
section #paginador > span{
    border: 1px solid #d5d5d5;
    color: #d5d5d5;
    position: relative;
    z-index: -1;
}
section #paginador .paginador-act{
    background-color: #ffee99;
}
section #paginador .primeira,
section #paginador .ultima{
    width: auto;
    border-radius: 3px;
}
section #paginador .primeira{
    margin-right: 4px;    
}
section #paginador .ultima{
    margin-left: 3px;
}
section #paginador .anterior{
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;    
}
section #paginador .seguinte{
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;    
}

@media(max-width: 767px){
    section #div-select{
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .select-group .form-control{
        font-size: 16px;
    }
    .select-group:after{
        font-size: 20px;
    }
    
    section .temporada-tit{
        width: 300px;
    }    
    section .temporada-tit:before{
        width: 200px;
    }
    
    section #posts .post{
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    section #posts .post .post-tit{
        padding-right: 0;
        font-size: 16px;
    }    
    
    section #paginador .primeira,
    section #paginador .ultima{
        width: 35px;
    }
}

@media (max-width: 500px){
    section #div-select{
        -webkit-flex-direction: column;
        flex-direction: column;
    }    
    
}
@media(max-width: 400px){
    section .temporada-tit{
        width: 200px;
    }    
    section .temporada-tit:before{
        width: 100px;
    }
}