#no-more-clubs{
    display: none;
}
.clubes-container .header{
    display: flex;
    justify-content: space-between;
}

.clubes-container section:not(.navigation) .selection_menu {
    justify-content: flex-end;
    align-items: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.clube:not(.visible){
    display: none;
}

.clube.lastElem{
    display: block!important;
}

.clubes-wrapper > .clube.visible{
    border-top: none;
}

.clubes-wrapper > .clube.visible ~ .clube.visible{
    border-top: 1px solid #eee;
}

.club-search-wrapper{
    width: calc(100% - 95px);
    position: relative;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding-left: 6.67%;
}

.club-search-wrapper .inner-search-wrapper {
    position: relative;
}

.club-search-wrapper input {
    width: 100%;
    padding: 20px 0px 7px;
    font-size: 16px;
    font-family: 'Rajdhani', sans-serif;
    border: none;
    height: 48px;
    font-weight: 600;
    position: relative;
    transition: all 300ms ease-in-out;
}

.club-search-wrapper label {
    color: #ACABAB;
    position: absolute;
    left: 0px;
    font-size: 10px;
    font-weight: 600;
    top: 9px;
}

.club-search-wrapper input + label[placeholder]::before {
    position: absolute;
    font-family: 'Rajdhani', sans-serif;
    margin: 0;
    pointer-events: none;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    transform-origin: top left;
    transition: height 200ms ease-in-out;
    height: 0;
}

.club-search-wrapper input + label[placeholder]::before {
    width: 80px;
    top: 5px;
    content: attr(placeholder);
    padding: 0;
    height: 15px;
    display: inline-block;
    color: #ACABAB;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 10px;
    font-weight: normal;
    line-height: 1.5em;
    transition: all 200ms ease-in-out;
    opacity: 1;
}

.club-search-wrapper .submit-search-be {
    position: absolute;
    right: 20px;
    padding: 0;
    padding-right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    border-right: 1px solid #eee;
}

.club-search-wrapper .submit-search-be svg {
    stroke: #000;
    fill: #fff;
    width: 20px;
    height: 15px;
    stroke-width: 2px;
    transition: all 200ms ease-in-out;
}

.club-search-wrapper + .selection_menu {
    padding-left: 0;
}

.clubes-wrapper{
    display: flex;
    flex-wrap: wrap;
    padding: 0px 6.67% 25px;
    justify-content: space-between;
}

.clubes-wrapper .clube{
    width: 100%;
    border-top: 1px solid #eeeeee;
}


.clubes-wrapper .clube:first-child{
    border-top: none;
}

.clubes-wrapper .clube .clube-body{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 80px;
}

.clubes-wrapper .clube .clube-head{
    display: none;
}

.clubes-wrapper .clube .clube-body .clube-name{
    display:none;
    text-transform: uppercase;
}

.clubes-wrapper .clube .clube-body .clube-shortname{
    padding-left: 20px;
    font-size: 6.4vw;
    font-weight: 600;
    text-transform: uppercase;
}

.clubes-wrapper .clube .clube-body .logo{
    height: auto; 
    width: 50px;
}

.clubes-wrapper .clube .clube-local{
    display: none;
}

.clubes-wrapper .clube .clube-region{
    display: none;
}
@media only screen and (max-width: 768px){
    .clubes-wrapper .clube .clube-body{
        background-color: #ffffff!important;
    }
}
@media only screen and (min-width: 768px){
    .clubes-container .header{
        padding-bottom: 30px;
    }

    .clubes-wrapper > .clube.visible ~ .clube.visible{
        border-top: none;
    }
    
    .club-search-wrapper {
        padding-left: 3.16%;
    }
    .clubes-wrapper .clube{
        width: calc(50% - 20px);
        border-top: none;
        margin-bottom: 40px;
        /* margin-right: 40px; */
    }

    .clubes-wrapper .clube:nth-child(3n){
        margin-right: 0;
    }

    .clubes-wrapper .clube .clube-head{
        display: block;
        height: 150px;
        background-size: cover;
        background-position: center;
    }

    .clubes-wrapper .clube .clube-body{
        flex-direction: column;
        justify-content: center;
        height: 190px;
        background-color: #000000;
    }

    .clubes-wrapper .clube .clube-body .logo{
        background-color: #fff;
        border-radius: 50%;
        height: 80px;
        padding: 10px;
        width: 80px;
        object-fit: cover;
        object-position: center;
        transform: translateY(-50px);
    }

    .clubes-wrapper .clube .clube-body .logo.default{
        padding: 0px;
        border-radius: 0;
        background-color: transparent;
    }

    .clubes-wrapper .clube .clube-body .clube-shortname{
        padding: 0px 15px;
        text-align: center;
        font-size: 26px;
        font-weight: 500;
        color: #fff;
        transform: translateY(-40px);
    }

    .clubes-wrapper .clube .clube-body .clube-name{
        display: block;
        padding: 0px 15px;
        text-align: center;
        font-size: 18px;
        font-weight: 500;
        color: #fff;
        transform: translateY(-15px);
        min-height: 35px;
    }

    .clubes-wrapper .clube .clube-body .clube-local{
        display: block;
        transform: translateY(-10px);
        color: #fff;
        min-height: 20px;
        text-align: center;
        padding: 0 10px;
        font-weight: 500;
        font-size: 16px;
    }

    .clubes-wrapper .clube .clube-region{
        display: block;
        /*transform: translateY(-20px);*/
        color: #fff;
        padding: 0 10px;
        text-align: center;
        font-weight: 500;
        font-size: 16px;
    }
 
    .clubes-wrapper {
        padding: 0px 3.16%;
    }

}


@media only screen and (min-width: 992px){
    .clubes-wrapper .clube{
        width: calc(33.33% - 25px);
    }
}


@media only screen and (min-width: 1024px){

    .club-search-wrapper{
        width: calc(100% - 332px);
    }
}