
*,
*:before,
*:after {
    box-sizing: border-box;
}

/* Controls
---------------------------------------------------------------------- */
h1.catalogo{
    font-size: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}
.controls {
    padding: 1rem;
    display: flex;
    flex-direction: row;

    font-size: 0.1px;
}

.control {
    position: relative;
    display: inline-block;
    width: 2.7rem;
    height: 2.7rem;
    cursor: pointer;
    font-size: 0.1px;
    color: white;
    transition: background 150ms;
}

.control:hover {
 
}

.control[data-filter]:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: calc(50% - 6px);
    left: calc(50% - 6px);
    border: 2px solid currentColor;
    border-radius: 2px;
    background: currentColor;
    transition: background-color 150ms, border-color 150ms;
}

.control[data-sort]:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-left: 2px solid;
    top: calc(50% - 6px);
    left: calc(50% - 6px);
    transform: translateY(1px) rotate(45deg);
}

.control[data-sort*=":desc"]:after {
    transform: translateY(-4px) rotate(-135deg);
}

.mixitup-control-active {

}

.mixitup-control-active[data-filter]:after {
    background: transparent;
}

.control:first-of-type {
    border-radius: 3px 0 0 3px;
}

.control:last-of-type {
    border-radius: 0 3px 3px 0;
}

.checkbox-group {
    display: inline-block;
    padding: .5rem;
     display: flex;
    flex-direction: row;

    margin-right: .75rem;
    vertical-align: top;
}

.checkbox {
    text-align: justify;
    
}

.checkbox:after {
    content: '';
    display: inline-block;
    width: 100%;
}

.checkbox-input,
.checkbox-label {
    display: inline-block;
}

.checkbox-label {
    color: #ffffff;
    font-family: 'helvetica-neue', arial, sans-serif;
    font-size: .9rem;
    margin-right: .5rem;
}

#colormujeres{
    background-color: #f2778c;
    padding: 0.3rem;
    margin-right: 0.5rem;
}

#colorhombres{
    background-color: #1cc3dd;
    padding: 0.3rem;
    margin-right: 0.5rem;
}

#colornobinario{
    background-color: #58af44;
    padding: 0.3rem;
    margin-right: 0.5rem;
}

/* Container
---------------------------------------------------------------------- */

.container {
    padding: 0.5rem;
    text-align: justify;
    font-size: 0.1px;
}

.container:after {
    content: '';
    display: inline-block;
    width: 100%;
}

/* Target Elements
---------------------------------------------------------------------- */

.mix,
.gap {
    display: inline-block;
    vertical-align: top;
}

.mix {
    background: #fff;
    border-top: .5rem solid currentColor;
    border-radius: 2px;
    margin-bottom: 1.2rem;
    position: relative;
    margin-left: 0.9rem;
    margin-right: 0.9rem

}

.mix:before {
    content: '';
    display: inline-block;
    padding-top: 56.25%;
}

.mix.mujeres {
    color: #f2778c;
     max-width: 9.4rem;
    
}

.mix.nobinario {
    color: #58af44;
     max-width: 9.4rem
}

.mix.hombres {
    color: #1cc3dd;
    max-width: 9.4rem
}

/* Grid Breakpoints
---------------------------------------------------------------------- */

/* 2 Columns */

.mix,
.gap {
    width: calc(100%/2 - (((2 - 1) * 1rem) / 2));
}

/* 3 Columns */

@media screen and (min-width: 541px) {

    .mix,
    .gap {
        width: calc(100%/3 - (((3 - 1) * 1rem) / 3));
    }
}

/* 4 Columns */

@media screen and (min-width: 961px) {

    .mix,
    .gap {
        width: calc(100%/4 - (((4 - 1) * 1rem) / 4));
    }
}

/* 5 Columns */

@media screen and (min-width: 1281px) {

    .mix,
    .gap {
        width: calc(100%/5 - (((5 - 1) * 1rem) / 5));
    }
}
