
/* Brands Filter */


.brand-list.container{
    padding: 130px 0;
}

.alphabet-filter {
    text-align: center;
    font-size: 25px;
    padding: 3%;
}
.alphabet-filter a {
    padding: 0.2%;
    color: #004a98;
}

a.show-all{
    padding-left: 1%;
}
.active-letter{
    background-color: #004a98;
    font-weight: bold;
    color: white !important;
    border-radius: 5px;
}

h3 a, h3 a:focus{
    color: white !important;
}

.pesquisa-categoria .select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #808080 !important;
}

.brand-search form {
    width: 20%;
    margin-inline: 1%;
    text-align: left;
}

.brand-search {
    display: flex;
    justify-content: center;
    text-align: center;
}

h3{
    background-color: #004a98;
    text-align: center;
    margin: 0;
    padding: 1% !important;
    font-size: 16px !important;
}

/* NEW */
@media (max-width: 768px) {
    .brand-list-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .brand-search input{
        margin-bottom: 8%;
    }
    
    .brand-item {
        width: calc(50% - 10px); /* 2 itens por linha */
        margin-bottom: 20px;
        display: flex;
        flex-direction: column-reverse;
    }
    
    
    .brand-list ul{
        padding: 5% !important;
    }
    
    .brand-search{
        padding: 5%;
        flex-direction: column;
        align-items: center;
    }
    
    .brand-search form {
    width: 85%;
    }
    
    .alphabet-filter{
        padding: 3%;
        line-height: 1.5em;
    }
    
    .alphabet-filter a {
        padding: 1%;
    }
}

/* Estilos para desktop */
@media (min-width: 769px) {
    .brand-list-items {
        display: flex;
        flex-wrap: wrap;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }
    
    .brand-item {
        width: 21%;
        margin-bottom: 5%;
        margin: 2%;
        min-height: 150px;
        display: flex;
        align-items: stretch;
        flex-direction: column-reverse;
    }

}

.brand-image img{
    width: 65%;
}

li::marker {
    content: none;
}

.brand-image {
    text-align: center;
    margin-bottom: 10%;
    min-height: inherit;
    line-height: 130px;
}

.brand-list ul{
    margin-bottom: 5% !important;
}

/* Ajax */


.brand-list{
    position: relative;
}


.loading-overlay{
    display: none;
    z-index: 1000;
    border: none;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: rgb(255, 255, 255);
    opacity: 0.6;
    cursor: wait;
    position: absolute;
}   

.loading-overlay:before{
    background: none;
    z-index: 99999;
    margin: 0;
    content: "" !important;
    left: 50%;
    top: 50%;
    margin: -11px 0 0 -11px;
    right: inherit;
    z-index: 9;
    text-align: center;
    position: absolute;
    opacity: 1 !important;
    border: 3px solid hsla(0, 0%, 0%, 0.4);
    border-top-color: #000;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    animation: spin 1s linear infinite;
    -webkit-animation: spin 1s linear infinite;
}

.alphabet-filter a:focus{
    color: white !important;
}

.alphabet-filter a.show-all:focus{
    color: #004a98 !important;
}

li.brand-item:hover {
    filter: opacity(0.6);
}

form.pesquisa-categoria select {
    padding: 9px 15px 10px;
}