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

/* Controls
---------------------------------------------------------------------- */

.controls {
    padding: 1rem 0;
}

.control {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: background 150ms;
}

.control:hover {
    background: #ccc;
}


.mixitup-control-active {
    background: #ccc;
}

.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;
}


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

.container {
    padding: 1rem;
    text-align: justify;

}

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

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

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

.mix {
    background: #fff;
    border-top: 0;
    border-radius: 2px;
    margin-bottom: 1rem;
    position: relative;
}

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

.mix.green {
    color: #91e6c7;
}

.mix.pink {
    color: #d595aa;
}

.mix.blue {
    color: #5ecdde;
}

/* 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));
    } */
}


