

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

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

.controls {
    padding: 1rem;
    font-size: 18px;
	text-align:center;
}
.control {
    position: relative;
    display: inline-block;
    background: none;
	border:none;
    cursor: pointer;
    font-size: 18px;
    color: #999999;
    transition: background 150ms;
	font-family:"Play",sans-serif;
}
.control:hover {
   color: #333333;
}
.mixitup-control-active {
	color:#333333;
}
.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;
}

.control[data-filter] + .control[data-sort] {
    margin-left: .75rem;
}

.control[data-filter=".green"] {
    color: #91e6c7;
}

.control[data-filter=".blue"] {
    color: #5ecdde;
}

.control[data-filter=".pink"] {
    color: #d595aa;
}

.control[data-filter="none"] {
    color: #2f2f2f;
}

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

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

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

/* Grid Items
---------------------------------------------------------------------- */

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

.item {
    margin-bottom: 1rem;
    position: relative;
	text-align: center;
}

.item:before {
    content: '';
    display: inline-block;
    padding-top: 1%;
}

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

.item.pink {
    color: #d595aa;
}

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

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

/* 2 Columns */

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

/* 3 Columns */

@media screen and (min-width: 541px) {
    .item,
    .gap {
        width: calc(100%/1 - (((1 - 1) * 1rem) / 3));
    }
}

/* 4 Columns */

@media screen and (min-width: 961px) {
    .item,
    .gap {
        width: calc(100%/2 - (((2 - 1) * 1rem) / 4));
    }
}

/* 5 Columns */

@media screen and (min-width: 1281px) {
    .item,
    .gap {
        width: calc(100%/2 - (((2 - 1) * 1rem) / 5));
    }
}


