/* =========================================================
   FILTRO MIRA STILOS
========================================================= */

#filtro {
    width: 100%;
    font-family: inherit;
}


/* =========================================================
   GRUPOS
========================================================= */

#filtro .filtro-grupo {
    margin-bottom: 28px;
}

#filtro .filtro-grupo h3 {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.2px;
}


/* =========================================================
   ESCONDER CHECKBOX ORIGINAL
========================================================= */

#filtro input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}


/* =========================================================
   TAMANHOS
========================================================= */

#filtro .filtro-tamanhos {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

#filtro .filtro-tamanho-item {
    position: relative;
    cursor: pointer;
    margin:0px;
}

#filtro .filtro-tamanho-item .nome {
    min-width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 8px;

    border: 1px solid #d8d8d8;
    border-radius: 4px;

    background: #fff;

    color: #333;
    font-size: 13px;
    font-weight: 500;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}


/* Hover */

#filtro .filtro-tamanho-item:hover .nome {
    border-color: #222;
}


/* Selecionado */

#filtro
.filtro-tamanho-item
input[type="checkbox"]:checked
~ .nome {

    background: #222;
    border-color: #222;
    color: #fff;
}


/* =========================================================
   QUEBRA ENTRE INFANTIL E ADULTO
========================================================= */

#filtro .filtro-tamanho-quebra {
    flex-basis: 100%;
    height: 1px;
}


/* =========================================================
   PÚBLICO
========================================================= */

#filtro .filtro-publico {
    display: flex;
    flex-direction: column;
}

#filtro .filtro-publico h3 {
    margin-bottom: 12px;
}

#filtro .filtro-publico .filtro-item {
    position: relative;
    cursor: pointer;

    display: block;
    margin-bottom: 7px;
}

#filtro .filtro-publico .nome {
    display: block;

    padding: 9px 11px;

    border: 1px solid #ddd;
    border-radius: 5px;

    background: #fff;

    color: #333;
    font-size: 13px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

#filtro .filtro-publico .filtro-item:hover .nome {
    border-color: #222;
}

#filtro
.filtro-publico
input[type="checkbox"]:checked
~ .nome {

    background: #222;
    border-color: #222;
    color: #fff;
}


/* =========================================================
   TIPO
========================================================= */

#filtro .filtro-tipo {
    display: flex;
    flex-direction: column;
}

#filtro .filtro-tipo .filtro-item {
    position: relative;
    cursor: pointer;

    display: block;
    margin-bottom: 3px;
}

#filtro .filtro-tipo .nome {
    display: block;

    padding: 7px 2px;

    color: #444;
    font-size: 13px;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

#filtro .filtro-tipo .filtro-item:hover .nome {
    color: #000;
    padding-left: 5px;
}

#filtro
.filtro-tipo
input[type="checkbox"]:checked
~ .nome {

    color: #000;
    font-weight: 600;
}


/* =========================================================
   CUSTOM CHECK
========================================================= */

#filtro .custom-check {
    display: none;
}


/* =========================================================
   CARREGANDO
========================================================= */

#filtro-carregando {
    opacity: 0.5;
}

#filtro .filtro-titulo {
    margin: 0 0 24px;
    font-size: 30px;
    font-weight: 600;
    color: #222;
}

#filtro .filtro-titulo::after {
    content: ' ';
    background-color:black;
    display:block;
    padding:1px;
    width:100%;
    
}

